:root {
  color-scheme: dark;
  --ink: #edf7e8;
  --muted: #a9b9ad;
  --deep: #04120e;
  --field: #071a14;
  --field-light: #0c271d;
  --line: rgba(237, 247, 232, 0.15);
  --accent: #c7ff45;
  --header-height: 76px;
  font-family: "Arial Narrow", "Avenir Next Condensed", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  background: var(--deep);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--deep);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 10px clamp(20px, 4vw, 68px);
  border-bottom: 1px solid var(--line);
  background: rgba(4, 18, 14, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(199, 255, 69, 0.5);
  border-radius: 50%;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 19px;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header nav,
.site-footer div {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
}

.site-header nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 150ms ease;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  color: var(--ink);
}

.site-header nav a[aria-current="page"]::after {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 4px;
  background: var(--accent);
  content: "";
}

.site-header .back-link {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - var(--header-height)));
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 32%, rgba(199, 255, 69, 0.12), transparent 25%),
    linear-gradient(120deg, var(--field) 0%, #092219 57%, #051510 100%);
}

.pitch-lines {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(237, 247, 232, 0.3) 50%, transparent calc(50% + 1px)),
    radial-gradient(circle at 50% 50%, transparent 0 112px, rgba(237, 247, 232, 0.24) 113px 114px, transparent 115px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0 9%, rgba(0,0,0,0.03) 9% 18%);
}

.pitch-lines::before {
  position: absolute;
  inset: clamp(34px, 6vw, 88px);
  border: 1px solid rgba(237, 247, 232, 0.2);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: inherit;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0;
}

.eyebrow,
.section-number,
.section-nav > p {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(68px, 11vw, 156px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.8;
  text-transform: uppercase;
}

.hero-summary {
  max-width: 590px;
  margin: 46px 0 0;
  color: #d5e3d7;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.45;
}

.policy-meta {
  display: flex;
  gap: 12px 28px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.policy-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.policy-meta span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.policy-layout {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(50px, 10vw, 150px);
  padding: 110px 0 130px;
}

.section-nav {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  align-self: start;
  display: grid;
}

.section-nav > p {
  margin-bottom: 16px;
}

.section-nav a {
  padding: 7px 0 7px 15px;
  border-left: 1px solid var(--line);
  color: #7f9185;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.section-nav a:hover,
.section-nav a.is-active {
  border-left-color: var(--accent);
  color: var(--ink);
  transform: translateX(3px);
}

.policy-copy section {
  padding: 0 0 82px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.policy-copy section + section {
  padding-top: 82px;
}

.policy-copy h2 {
  margin: 0 0 30px;
  font-size: clamp(39px, 5vw, 64px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.policy-copy h3 {
  margin: 38px 0 8px;
  color: #dce9de;
  font-size: 17px;
  letter-spacing: 0.01em;
}

.policy-copy p,
.policy-copy li {
  color: var(--muted);
}

.policy-copy p {
  margin: 0 0 22px;
}

.policy-copy ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.policy-copy li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-top: 1px solid rgba(237, 247, 232, 0.09);
}

.policy-copy li::before {
  position: absolute;
  top: 22px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.policy-copy a {
  color: var(--ink);
  text-decoration-color: rgba(199, 255, 69, 0.6);
}

.callout {
  margin: 44px 0 0;
  padding: 28px 0 8px 30px;
  border-left: 3px solid var(--accent);
}

.callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 21px;
}

.contact-section {
  border-bottom: 0 !important;
}

.contact-link {
  display: flex;
  margin: 38px 0 28px;
  padding: 22px 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  text-decoration: none;
  transition: color 150ms ease, padding 150ms ease;
}

.contact-link:hover {
  padding-right: 10px;
  padding-left: 10px;
  color: var(--accent);
}

.contact-link span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-link strong {
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: -0.025em;
}

.operator {
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 32px clamp(20px, 4vw, 68px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-inner > * {
    opacity: 0;
    animation: hero-in 650ms cubic-bezier(.2,.7,.2,1) forwards;
  }

  .hero-inner > :nth-child(2) { animation-delay: 70ms; }
  .hero-inner > :nth-child(3) { animation-delay: 140ms; }
  .hero-inner > :nth-child(4) { animation-delay: 210ms; }
}

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    padding: 8px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy small,
  .site-header nav a:not(.back-link),
  .section-nav {
    display: none;
  }

  .site-header .back-link {
    display: inline-block;
    padding: 8px 12px;
  }

  .hero {
    min-height: calc(92svh - var(--header-height));
  }

  .hero-inner,
  .policy-layout {
    width: min(100% - 32px, 700px);
  }

  .hero-inner {
    padding: 48px 0 62px;
  }

  h1 {
    font-size: clamp(58px, 20vw, 92px);
  }

  .hero-summary {
    margin-top: 34px;
  }

  .policy-meta {
    flex-direction: column;
  }

  .policy-layout {
    display: block;
    padding: 76px 0 90px;
  }

  .policy-copy section {
    padding-bottom: 58px;
  }

  .policy-copy section + section {
    padding-top: 58px;
  }

  .contact-link,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-link {
    gap: 8px;
  }

  .site-footer div {
    flex-wrap: wrap;
  }
}

@media print {
  :root { color-scheme: light; }
  body { background: #fff; color: #111; }
  .site-header, .section-nav, .site-footer, .pitch-lines { display: none; }
  .hero { min-height: 0; background: #fff; }
  .hero-inner { min-height: 0; padding: 30px 0; }
  h1, h2, .policy-copy h2, .contact-link strong { color: #111; }
  .hero-summary, .policy-meta, .policy-copy p, .policy-copy li { color: #333; }
  .policy-layout { display: block; padding: 20px 0; }
  .policy-copy section { break-inside: avoid; }
}
