:root {
  color-scheme: dark;
  --ink: #111310;
  --panel: #191d18;
  --panel-2: #20251e;
  --paper: #f3f0e7;
  --muted: #a9aea4;
  --line: rgba(255, 255, 255, .14);
  --green: #77c64d;
  --green-soft: #b8ed97;
  --warm: #dbb379;
  --danger-soft: #f4d5a5;
  --radius: 2px;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 85% 8%, rgba(119, 198, 77, .09), transparent 30rem),
    var(--ink);
  color: var(--paper);
  font: 400 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .22em; }
a:hover { color: var(--green-soft); }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }
.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }
.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(17, 19, 16, .88);
  backdrop-filter: blur(18px);
}
.site-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: inline-flex; width: 188px; text-decoration: none; }
.logo img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: 14px; }
.site-nav a { text-decoration: none; color: #d8ddd4; }
.site-nav a:last-child {
  padding: 10px 16px;
  border: 1px solid rgba(119, 198, 77, .7);
  color: var(--green-soft);
}
.hero { padding: clamp(72px, 10vw, 144px) 0 clamp(56px, 8vw, 112px); }
.eyebrow {
  margin: 0 0 18px;
  color: var(--green-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; font-weight: 520; letter-spacing: -.035em; line-height: 1.08; }
h1 {
  max-width: 980px;
  margin-bottom: 26px;
  overflow-wrap: anywhere;
  font-size: clamp(42px, 8vw, 94px);
}
h2 { margin-bottom: 24px; font-size: clamp(30px, 4vw, 52px); }
h3 { margin-bottom: 12px; font-size: clamp(20px, 2.3vw, 28px); }
.lead { max-width: 760px; margin: 0; color: #c8cec4; font-size: clamp(18px, 2vw, 23px); line-height: 1.55; }
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.meta-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.status-note {
  position: relative;
  margin: 0 0 clamp(64px, 8vw, 110px);
  padding: clamp(24px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(219, 179, 121, .48);
  background: linear-gradient(135deg, rgba(219, 179, 121, .12), rgba(255,255,255,.025));
}
.status-note::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--warm);
  content: "";
}
.status-note strong { display: block; margin-bottom: 8px; color: var(--danger-soft); font-size: 18px; }
.status-note p { max-width: 850px; margin: 0; color: #d3d0c8; }
.legal-layout {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 760px);
  gap: clamp(44px, 8vw, 110px);
  align-items: start;
  padding-bottom: 120px;
}
.toc {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 2px;
  border-top: 1px solid var(--line);
}
.toc a {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}
.toc a:hover { color: var(--green-soft); }
.legal-copy section { scroll-margin-top: 110px; padding: 0 0 54px; }
.legal-copy p, .legal-copy li { color: #c8cec4; }
.legal-copy ul, .legal-copy ol { padding-left: 1.25rem; }
.legal-copy li + li { margin-top: 9px; }
.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0;
  background: var(--line);
  border: 1px solid var(--line);
}
.fact {
  min-height: 145px;
  padding: 22px;
  background: var(--panel);
}
.fact small { display: block; margin-bottom: 18px; color: var(--green-soft); letter-spacing: .1em; text-transform: uppercase; }
.fact p { margin: 0; }
.callout {
  padding: 22px;
  border-left: 3px solid var(--green);
  background: var(--panel);
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--green);
  background: var(--green);
  color: #10150d;
  font-weight: 750;
  text-decoration: none;
}
.button:hover { background: var(--green-soft); color: #10150d; }
.button--ghost { border-color: var(--line); background: transparent; color: var(--paper); }
.button--ghost:hover { border-color: var(--green); background: transparent; color: var(--green-soft); }
.thanks {
  min-height: calc(100vh - 75px);
  display: grid;
  place-items: center;
  padding: 64px 0 96px;
}
.thanks-card {
  position: relative;
  width: min(100%, 940px);
  padding: clamp(30px, 6vw, 72px);
  border: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(119,198,77,.11), transparent 38%),
    var(--panel);
}
.success-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green-soft);
  font-size: 28px;
}
.thanks h1 { max-width: 780px; font-size: clamp(40px, 7vw, 78px); }
.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--line);
}
.next-grid article { padding: 24px; background: var(--panel-2); }
.next-grid b { display: block; margin-bottom: 8px; color: var(--green-soft); font-size: 13px; letter-spacing: .1em; }
.next-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.site-footer { border-top: 1px solid var(--line); }
.site-footer__inner {
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
}
.site-footer__links { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer a { color: #d5dbd1; text-decoration: none; }
.mono { font-family: ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: -.02em; }
@media (max-width: 760px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .site-header__inner { min-height: 66px; }
  .logo { width: 154px; }
  .site-nav a:not(:last-child) { display: none; }
  .site-nav a:last-child { padding: 8px 11px; font-size: 12px; }
  .hero { padding-top: 58px; }
  .legal-layout { grid-template-columns: 1fr; gap: 48px; padding-bottom: 80px; }
  .toc { position: static; }
  .fact-grid, .next-grid { grid-template-columns: 1fr; }
  .site-footer__inner { align-items: flex-start; flex-direction: column; padding-block: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
@media print {
  .site-header, .site-footer, .button-row, .toc, .skip-link { display: none !important; }
  body { background: white; color: black; font-size: 11pt; }
  .hero { padding: 0 0 30px; }
  .legal-layout { display: block; padding: 0; }
  .legal-copy p, .legal-copy li, .lead { color: #222; }
  .status-note, .fact, .callout { border: 1px solid #777; background: white; color: black; break-inside: avoid; }
  .fact-grid { background: white; }
}

