:root {
  --bg: #10110f;
  --surface-raised: #20231f;
  --border: rgba(236, 240, 229, 0.12);
  --text: #f2f4ee;
  --muted: #9ba096;
  --accent: #b8f26d;
  --a: #71b7ff;
  --b: #f2ad5e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 0%, rgba(184, 242, 109, 0.08), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  min-height: 100vh;
}

.siteHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.mark {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--surface-raised);
  box-shadow: inset 0 0 0 1px var(--border);
}

.markArc {
  position: absolute;
  inset: 8px;
  border: 3px solid var(--accent);
  border-right-color: transparent;
  border-radius: 50%;
}

.markA,
.markB {
  position: absolute;
  right: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.markA {
  top: 7px;
  background: var(--a);
}

.markB {
  bottom: 7px;
  background: var(--b);
}

.localBadge {
  padding: 6px 10px;
  border: 1px solid rgba(184, 242, 109, 0.22);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(184, 242, 109, 0.06);
  font-size: 12px;
  font-weight: 650;
}

article {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 72px;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  margin-top: 10px;
  font-size: clamp(42px, 8vw, 68px);
}

h2 {
  font-size: 21px;
}

.effective {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.lede {
  margin: 36px 0 64px;
  color: #d9ddd3;
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.55;
}

.policySections {
  border-top: 1px solid var(--border);
}

.policySections section {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.4fr);
  gap: 42px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}

p,
ul {
  margin: 0;
  color: var(--muted);
}

p + p,
p + ul,
ul + p {
  margin-top: 14px;
}

ul {
  padding-left: 20px;
}

li + li {
  margin-top: 7px;
}

code {
  color: #dceec5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

.contactCard {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.4fr);
  gap: 42px;
  margin-top: 54px;
  padding: 30px;
  border: 1px solid rgba(184, 242, 109, 0.2);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(184, 242, 109, 0.08), rgba(32, 35, 31, 0.72));
}

.contactCard h2 {
  margin-top: 8px;
}

footer {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 38px;
  border-top: 1px solid var(--border);
  color: #858b81;
  font-size: 12px;
}

@media (max-width: 680px) {
  article {
    padding-top: 56px;
  }

  .policySections section,
  .contactCard {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contactCard {
    padding: 24px;
  }
}
