:root {
  --ink: #f3f1e8;
  --muted: #a9b2aa;
  --quiet: #758078;
  --paper: #0c1210;
  --paper-2: #111a16;
  --panel: #16211b;
  --panel-2: #1a2821;
  --line: rgba(232, 239, 232, 0.14);
  --line-strong: rgba(232, 239, 232, 0.24);
  --accent: #c7f36f;
  --accent-dark: #1b2b12;
  --teal: #83d8c0;
  --warm: #f0c98f;
  --danger: #ffb5a9;
  --radius: 20px;
  --shell: min(1160px, calc(100vw - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -20%, rgba(76, 126, 91, 0.18), transparent 38%),
    var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--accent);
  color: var(--accent-dark);
  font-weight: 750;
}

.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 18, 16, 0.88);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand small {
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--quiet);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199, 243, 111, 0.38);
  border-radius: 11px;
  background: rgba(199, 243, 111, 0.1);
  color: var(--accent);
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a {
  color: #c4cbc5;
  font-size: 13px;
  text-decoration: none;
}

nav a:hover { color: var(--ink); }

.nav-cta {
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.hero {
  padding-top: 96px;
  text-align: center;
}

.status-pill {
  width: fit-content;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #cbd0cb;
  font-size: 12px;
}

.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 0 5px rgba(240, 201, 143, 0.1);
}

.eyebrow {
  margin: 28px 0 13px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(50px, 7.5vw, 92px);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

h1 em {
  color: var(--accent);
  font-style: normal;
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 620;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

h3 {
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.hero-copy {
  max-width: 790px;
  margin: 30px auto 0;
  color: #c0c7c1;
  font-size: clamp(18px, 2.2vw, 23px);
  letter-spacing: -0.012em;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 760;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.button:hover:not(:disabled) { transform: translateY(-1px); }

.button.primary {
  background: var(--accent);
  color: #11180d;
}

.button.primary:hover:not(:disabled) { background: #d2ff7d; }

.button.secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  color: var(--ink);
}

.button:disabled {
  cursor: not-allowed;
  background: #344038;
  color: #8d978f;
}

:focus-visible {
  outline: 3px solid rgba(199, 243, 111, 0.48);
  outline-offset: 3px;
}

.claim-note {
  max-width: 690px;
  margin: 17px auto 0;
  color: var(--quiet);
  font-size: 12px;
}

.context-trail {
  margin-top: 66px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 110px minmax(360px, 1.4fr);
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 24px 24px 0 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 45%),
    #101813;
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.38);
  text-align: left;
}

.trail-start {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.trail-label,
.trail-destinations article > span {
  display: block;
  color: var(--quiet);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.trail-start blockquote {
  margin: 18px 0;
  color: #dce1dc;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.trail-reaction {
  color: var(--teal);
  font-size: 11px;
}

.trail-lines {
  display: grid;
  gap: 42px;
}

.trail-lines span {
  height: 1px;
  display: block;
  position: relative;
  background: linear-gradient(90deg, var(--teal), rgba(131, 216, 192, 0.15));
}

.trail-lines span::after {
  width: 7px;
  height: 7px;
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  border-radius: 50%;
  background: var(--teal);
}

.trail-destinations {
  display: grid;
  gap: 11px;
}

.trail-destinations article {
  padding: 15px 17px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.trail-destinations strong { font-size: 13px; }
.trail-destinations small { color: var(--quiet); font-size: 10px; }
.trail-destinations .lost { color: var(--danger); }

.problem-section {
  padding: 108px 0;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}

.two-column {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 82px;
  align-items: start;
}

.large-copy {
  color: #afb7b0;
  font-size: 20px;
  line-height: 1.67;
}

.section-block { padding: 116px 0; }

.section-heading {
  max-width: 800px;
}

.section-heading > p:last-child {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
}

.participant-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.participant-grid article {
  min-height: 235px;
  padding: 24px;
  grid-column: span 2;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.participant-grid article:nth-child(4),
.participant-grid article:nth-child(5) {
  grid-column: span 3;
}

.participant-grid article > span {
  color: #5d6860;
  font-size: 11px;
}

.participant-grid h3 {
  margin: 45px 0 9px;
  font-size: 19px;
}

.participant-grid p {
  margin-bottom: 0;
  color: #8f9991;
  font-size: 14px;
}

.interview-section {
  padding: 112px 0;
  background: var(--accent);
  color: #13200d;
}

.interview-section .eyebrow { color: #355122; }

.interview-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.interview-grid > div > p:not(.eyebrow) {
  color: rgba(19, 32, 13, 0.72);
  font-size: 18px;
}

.interview-note {
  margin-top: 35px;
  padding: 18px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(19, 32, 13, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
}

.interview-note strong { font-size: 13px; }
.interview-note span { color: rgba(19, 32, 13, 0.7); font-size: 13px; }

.coverage-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(19, 32, 13, 0.24);
}

.coverage-list li {
  padding: 19px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  border-bottom: 1px solid rgba(19, 32, 13, 0.24);
}

.coverage-list li > span {
  padding-top: 2px;
  color: rgba(19, 32, 13, 0.5);
  font-size: 11px;
  font-weight: 800;
}

.coverage-list h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.coverage-list p {
  margin: 0;
  color: rgba(19, 32, 13, 0.68);
}

.concept-section { padding-bottom: 124px; }

.concept-card {
  padding: 50px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 20%, rgba(131, 216, 192, 0.1), transparent 34%),
    var(--panel);
}

.concept-copy {
  color: #aeb7af;
  font-size: 17px;
}

.concept-copy a {
  display: inline-block;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 740;
  text-decoration: none;
}

.application-section {
  padding: 116px 0;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}

.application-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 82px;
  align-items: start;
}

.application-grid > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.application-promises {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.application-promises li {
  padding: 11px 0 11px 25px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: #aab3ab;
  font-size: 14px;
}

.application-promises li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}

form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.026);
}

.form-intro {
  margin-bottom: 22px;
  color: var(--quiet);
  font-size: 12px;
}

.form-row { margin-bottom: 17px; }

.form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #d0d5d0;
  font-size: 12px;
  font-weight: 720;
}

label > span {
  color: var(--quiet);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0d1512;
  color: var(--ink);
}

textarea { resize: vertical; }
input::placeholder, textarea::placeholder { color: #5f6962; }

.field-help {
  margin: 7px 0 0;
  color: var(--quiet);
  font-size: 11px;
}

.choice-stack {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.choice {
  margin: 0;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #929c94;
  font-weight: 500;
  line-height: 1.45;
}

.choice input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
}

.choice span {
  color: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.choice strong,
.choice em {
  color: var(--quiet);
  font-size: 9px;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.choice a { color: var(--teal); }

.honeypot {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  left: -10000px;
}

.captcha-panel {
  margin-top: 22px;
  padding: 15px;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
}

.captcha-panel > span {
  display: block;
  margin-bottom: 6px;
  color: #cbd1cc;
  font-size: 11px;
  font-weight: 740;
}

#hcaptcha-container {
  color: var(--quiet);
  font-size: 11px;
}

.form-button {
  width: 100%;
  margin-top: 17px;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--teal);
  font-size: 12px;
}

.form-status.error { color: var(--danger); }

.form-footnote {
  margin: 5px 0 0;
  color: #69746c;
  font-size: 10px;
}

.status-section {
  padding: 98px 0;
  border-top: 1px solid var(--line);
}

.status-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.status-grid > div:last-child {
  color: #aab3ab;
  font-size: 17px;
}

.status-grid a { color: var(--teal); }

footer {
  padding: 55px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 35px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-grid p,
.footer-grid a {
  margin: 8px 0 0;
  color: #7d8880;
  font-size: 12px;
  text-decoration: none;
}

.footer-grid strong {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid small {
  grid-column: 1 / -1;
  padding-top: 28px;
  color: #59645c;
}

.page-hero {
  max-width: 900px;
  padding: 92px 0 50px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 82px);
  text-align: left;
}

.page-hero > p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.prose {
  max-width: 820px;
  padding-bottom: 100px;
}

.prose h2 {
  margin-top: 54px;
  font-size: 36px;
}

.prose h3 {
  margin: 30px 0 8px;
  font-size: 21px;
}

.prose p,
.prose li { color: #aeb6af; }

.prose a {
  color: var(--teal);
  overflow-wrap: anywhere;
}

.prose blockquote {
  margin: 34px 0;
  padding: 10px 0 10px 22px;
  border-left: 3px solid var(--accent);
  font-size: 23px;
  letter-spacing: -0.02em;
}

.notice {
  padding: 16px 18px;
  border: 1px solid rgba(240, 201, 143, 0.25);
  border-radius: 12px;
  background: rgba(240, 201, 143, 0.06);
  color: #d8c9af;
}

@media (max-width: 980px) {
  nav { gap: 14px; }
  nav a:not(.nav-cta) { display: none; }
  .context-trail { grid-template-columns: 1fr; }
  .trail-lines {
    height: 60px;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
  }
  .trail-lines span {
    width: 1px;
    height: 100%;
    justify-self: center;
    background: linear-gradient(180deg, var(--teal), rgba(131, 216, 192, 0.15));
  }
  .trail-lines span::after {
    left: -3px;
    right: auto;
    top: auto;
    bottom: -1px;
  }
  .participant-grid { grid-template-columns: repeat(2, 1fr); }
  .participant-grid article,
  .participant-grid article:nth-child(4),
  .participant-grid article:nth-child(5) { grid-column: span 1; }
  .participant-grid article:last-child { grid-column: 1 / -1; }
  .interview-grid,
  .application-grid { gap: 50px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 1160px); }
  .nav-wrap { min-height: 66px; }
  .brand small { display: none; }
  .hero { padding-top: 66px; }
  h1 { font-size: clamp(46px, 13vw, 68px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .context-trail { margin-top: 48px; padding: 15px; }
  .trail-destinations article {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .two-column,
  .interview-grid,
  .concept-card,
  .application-grid,
  .status-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .problem-section,
  .section-block,
  .interview-section,
  .application-section,
  .status-section { padding-block: 78px; }
  .participant-grid { grid-template-columns: 1fr; }
  .participant-grid article,
  .participant-grid article:last-child { grid-column: 1; }
  .participant-grid article { min-height: auto; }
  .participant-grid h3 { margin-top: 28px; }
  .concept-card { padding: 28px; }
  .form-row.split { grid-template-columns: 1fr; }
  form { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
  .brand-mark { width: 32px; height: 32px; }
  .nav-cta { padding: 8px 11px; }
  .status-pill { font-size: 10px; }
  h1 {
    font-size: clamp(40px, 12vw, 52px);
    letter-spacing: -0.055em;
  }
  .hero-actions .button {
    min-height: 0;
    padding: 14px 16px;
    display: block;
  }
  .context-trail { border-radius: 18px 18px 0 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media print {
  :root {
    --ink: #111;
    --muted: #333;
    --paper: #fff;
    --line: #bbb;
  }

  body {
    background: #fff;
    color: #111;
    font-size: 11pt;
  }

  .site-header,
  .skip-link,
  footer { display: none; }

  .shell { width: 100%; }
  .page-hero { padding: 0 0 20px; }
  .page-hero h1 { font-size: 30pt; }
  .prose { max-width: none; padding: 0; }
  .prose h2 { margin-top: 24px; font-size: 18pt; }
  .prose h3 { font-size: 13pt; }
  .prose p,
  .prose li { color: #111; }
  .prose a { color: #111; text-decoration: underline; }
  .prose a[href^="http"]::after { content: " (" attr(href) ")"; }
  .notice,
  .prose blockquote {
    border-color: #777;
    background: none;
    color: #111;
    break-inside: avoid;
  }
}
