:root {
  --paper: #ffffff;
  --wash: #f3f7f4;
  --wash-deep: #eaf1ec;
  --ink: #080b09;
  --ink-soft: #121814;
  --body: #3f4b43;
  --body-strong: #263129;
  --green: #40ff77;
  --green-hover: #27eb60;
  --green-dark: #087236;
  --line: #d8e2da;
  --line-dark: rgba(255, 255, 255, 0.17);
  --white: #ffffff;
  --black: #080b09;
  --black-soft: #121814;
  --muted: #4a574e;
  --muted-strong: #263129;
  --container: 1180px;
  --radius: 22px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shadow: 0 24px 70px rgba(8, 18, 11, 0.10);
  --shadow-soft: 0 12px 36px rgba(8, 18, 11, 0.07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
h1, h2, h3, h4, p { margin: 0; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -100px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--green);
  color: var(--ink);
  font-weight: 900;
}
.skip-link:focus { top: 18px; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav-shell {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img { width: 44px; height: 44px; border-radius: 10px; }
.brand-copy { display: grid; line-height: 1.08; }
.brand-name {
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.brand-tag { margin-top: 5px; color: var(--body); font-size: 14px; }
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--body-strong);
  font-size: 15px;
  font-weight: 800;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--green-dark); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
}
.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease;
}
.menu-toggle-lines::before { transform: translateY(-7px); }
.menu-toggle-lines::after { transform: translateY(5px); }

.button {
  min-height: 56px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 12px;
  background: var(--green);
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}
.button:hover { background: var(--green-hover); border-color: var(--green-hover); transform: translateY(-2px); }
.button--dark { background: var(--ink); border-color: var(--ink); color: var(--white); }
.button--dark:hover { background: #202820; border-color: #202820; color: var(--white); }
.button--outline { background: var(--paper); border-color: var(--ink); color: var(--ink); }
.button--outline:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.button[disabled] { opacity: 0.52; cursor: not-allowed; transform: none; }
.button[data-checkout-loading="true"] { cursor: progress; }
.nav-cta { min-height: 48px; padding-inline: 20px; white-space: nowrap; font-size: 15px; }
.text-link {
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.button:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid var(--green-dark);
  outline-offset: 4px;
}
.section--dark :focus-visible, .ledger-section :focus-visible, .proof-bar :focus-visible, .alert-card :focus-visible {
  outline-color: var(--green);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}
.section--dark .eyebrow, .ledger-section .eyebrow { color: var(--green); }

.hero { padding: 90px 0 84px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 70px;
  align-items: center;
}
.hero-copy h1 {
  max-width: 790px;
  margin-top: 20px;
  font-size: clamp(50px, 5.5vw, 72px);
  line-height: .98;
  letter-spacing: -.062em;
  text-wrap: balance;
}
.hero-lede {
  max-width: 720px;
  margin-top: 27px;
  color: var(--body-strong);
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.44;
  font-weight: 560;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.offer-note { max-width: 650px; margin-top: 16px; color: var(--body); font-size: 16px; font-weight: 700; }
.micro-proof { margin-top: 13px; color: var(--body); font-size: 15px; }
.hero-newsletter-form { margin-top: 34px; }
.hero-alert-path {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin-top: 20px;
  color: var(--body);
  font-size: 17px;
  font-weight: 700;
}
.hero-alert-path .text-link { font-size: 17px; }

.alert-card {
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}
.alert-card-inner { padding: 31px; }
.alert-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.alert-card-label { font-family: var(--mono); font-size: 14px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.live-dot { color: var(--green); font-size: 14px; font-weight: 900; }
.alert-ticker { margin-top: 36px; font-size: 58px; line-height: .95; font-weight: 950; letter-spacing: -.06em; }
.alert-contract { margin-top: 8px; color: #d8e2da; font-size: 19px; font-weight: 750; }
.alert-data { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; margin-top: 32px; }
.alert-data div { padding-top: 15px; border-top: 1px solid var(--line-dark); }
.alert-data span { display: block; color: #bdc9c0; font-size: 15px; font-weight: 700; }
.alert-data strong { display: block; margin-top: 4px; color: var(--white); font-size: 21px; }
.alert-result { color: var(--green) !important; }
.alert-foot { display: grid; gap: 2px; padding: 15px 30px 17px; background: var(--green); color: var(--ink); font-size: 16px; font-weight: 900; }
.alert-foot small { font-size: 14px; font-weight: 750; line-height: 1.4; }

.proof-bar { background: var(--ink); color: var(--white); }
.proof-bar--contents { padding: 42px 0 32px; }
.proof-label { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding: 0 14px 14px; }
.proof-label > span { color: var(--green); font-family: var(--mono); font-size: 14px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.proof-label h2 { color: var(--white); font-size: clamp(28px, 3vw, 40px); line-height: 1.05; letter-spacing: -.04em; text-align: right; }
.proof-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.proof-item { min-height: 104px; display: grid; place-content: center; padding: 20px 14px; text-align: center; }
.proof-item + .proof-item { border-left: 1px solid var(--line-dark); }
.proof-item strong { font-size: 22px; line-height: 1.15; }
.proof-item span { margin-top: 6px; color: #c9d4cb; font-size: 15px; }

.trade-result-card { min-width: 0; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--wash); box-shadow: var(--shadow-soft); }
.trade-result-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.trade-result-top strong { font-size: 24px; line-height: 1; letter-spacing: -.03em; }
.trade-result-top span { color: var(--body); font-size: 15px; font-weight: 850; }
.trade-result-card > p { margin-top: 8px; color: var(--body); font-size: 15px; font-weight: 700; }
.trade-return { margin-top: 25px; color: var(--green-dark); font-size: 40px; line-height: 1; font-weight: 950; letter-spacing: -.045em; }
.trade-prices { margin-top: 12px; font-family: var(--mono); font-size: 16px; font-weight: 900; }
.trade-meta { margin-top: 6px; color: var(--body); font-size: 15px; }
.record-review { padding: 88px 0; border-bottom: 1px solid var(--line); background: var(--wash); }
.record-review-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr); gap: 48px; align-items: end; }
.record-review-head > p { max-width: 590px; color: var(--body); font-size: 18px; line-height: 1.6; }
.record-review-grid { display: grid; grid-template-columns: minmax(270px, .64fr) minmax(0, 1.36fr); gap: 20px; align-items: stretch; margin-top: 36px; }
.loss-result-card { display: flex; flex-direction: column; border-color: #efb7b7; background: var(--paper); }
.trade-return--loss { color: #b42318; }
.loss-result-label { margin-top: auto; padding-top: 22px; color: #8f1d16; font-size: 15px; font-weight: 900; }
.archive-stats-card { padding: 27px 30px 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); box-shadow: var(--shadow-soft); }
.archive-stats-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.archive-stats-head span { color: var(--green-dark); font-size: 14px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.archive-stats-head strong { font-size: 28px; letter-spacing: -.035em; }
.archive-stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin: 0; }
.archive-stats-grid > div { min-width: 0; padding: 22px 18px 4px 0; }
.archive-stats-grid dt { color: var(--body); font-size: 15px; font-weight: 760; line-height: 1.4; }
.archive-stats-grid dd { margin: 7px 0 0; color: var(--ink); font-size: 29px; font-weight: 950; line-height: 1.05; letter-spacing: -.035em; }
.archive-summary-card { display: flex; flex-direction: column; justify-content: center; }
.archive-summary-line { max-width: 760px; margin-top: 27px; color: var(--body-strong); font-size: clamp(22px, 2.2vw, 30px); line-height: 1.42; letter-spacing: -.02em; }
.archive-summary-card .text-link { align-self: flex-start; margin-top: 25px; }
.record-disclosure { max-width: 1020px; margin-top: 24px; color: var(--body); font-size: 15px; line-height: 1.62; }

.section { padding: 104px 0; }
.section--soft { background: var(--wash); }
.section--white { background: var(--paper); color: var(--ink); }
.section--dark { background: var(--ink); color: var(--white); }
.section-head { max-width: 790px; }
.section-title { margin-top: 15px; font-size: clamp(42px, 4.8vw, 64px); line-height: 1.04; letter-spacing: -.052em; text-wrap: balance; }
.section-lede { max-width: 760px; margin-top: 20px; color: var(--body); font-size: clamp(19px, 1.8vw, 23px); line-height: 1.55; }
.section--dark .section-lede { color: #c9d4cb; }
.section-closing { max-width: 760px; margin-top: 30px; color: var(--body-strong); font-size: 20px; font-weight: 850; }

.track-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 48px; }
.track-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}
.portrait-strip { height: 205px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: end; overflow: hidden; background: var(--wash); border-bottom: 1px solid var(--line); }
.portrait-strip img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.portrait-strip.brand-strip { height: 205px; align-items: stretch; background: var(--ink); }
.portrait-strip.brand-strip img { object-fit: contain; object-position: center; }
.portrait-strip.brand-strip img:nth-child(1) { background: #000000; }
.portrait-strip.brand-strip img:nth-child(2) { background: #203f73; }
.portrait-strip.brand-strip img:nth-child(3) { background: #0a1724; }
.track-copy { padding: 29px 30px 31px; }
.track-copy span { color: var(--green-dark); font-size: 14px; font-weight: 950; letter-spacing: .09em; text-transform: uppercase; }
.track-copy h3 { margin-top: 8px; font-size: 29px; letter-spacing: -.035em; }
.track-copy p { margin-top: 10px; color: var(--body); font-size: 18px; }
.context-note { max-width: 850px; margin-top: 28px; padding-left: 20px; border-left: 5px solid var(--green); color: var(--body-strong); font-size: 20px; font-weight: 800; }

.process-layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(340px, 1.08fr); gap: 58px; align-items: stretch; margin-top: 48px; }
.steps { display: grid; grid-template-rows: repeat(3, minmax(0, 1fr)); gap: 15px; }
.process-layout--compact { display: block; margin-top: 42px; }
.steps--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: none; gap: 16px; }
.steps--compact .step { height: 100%; padding: 28px; }
.step { padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.step-number { color: var(--green-dark); font-size: 14px; font-weight: 950; letter-spacing: .08em; }
.step h3 { margin-top: 10px; font-size: 25px; letter-spacing: -.025em; }
.step p { margin-top: 8px; color: var(--body); font-size: 17px; }
.alert-anatomy { display: flex; flex-direction: column; height: 100%; padding: 30px; border-radius: var(--radius); background: var(--ink); color: var(--white); }
.alert-anatomy h3 { font-size: 29px; letter-spacing: -.035em; }
.alert-anatomy > p { margin-top: 10px; color: #c9d4cb; font-size: 18px; }
.anatomy-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; margin-top: 24px; }
.anatomy-item { padding: 13px 14px; border: 1px solid var(--line-dark); border-radius: 11px; color: #eff5f0; font-size: 16px; font-weight: 800; }
.anatomy-item strong { color: var(--green); }
.anatomy-note { margin-top: auto !important; padding-top: 20px; color: var(--white) !important; font-weight: 800; }
.ledger-section { padding: 104px 0; background: var(--ink); color: var(--white); }
.ledger-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); gap: 65px; align-items: center; }
.ledger-section .section-lede { color: #c9d4cb; }
.ledger-stats { display: flex; gap: 42px; margin-top: 31px; }
.ledger-stats strong { display: block; color: var(--green); font-size: 40px; line-height: 1; }
.ledger-stats span { display: block; margin-top: 7px; color: #c9d4cb; font-size: 15px; }
.ledger-section .button { margin-top: 31px; }
.ledger-table { overflow: hidden; border: 1px solid var(--line-dark); border-radius: 18px; }
.ledger-row { display: grid; grid-template-columns: 1fr 1.35fr .8fr; gap: 14px; align-items: center; min-height: 70px; padding: 14px 20px; }
.ledger-row + .ledger-row { border-top: 1px solid var(--line-dark); }
.ledger-row--head { min-height: 48px; color: #aebcb1; font-size: 14px; font-weight: 900; text-transform: uppercase; }
.ledger-row strong { font-size: 20px; }
.ledger-row span { color: #c9d4cb; font-size: 16px; }
.ledger-row .result { color: var(--green); font-weight: 950; text-align: right; }
.standout-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.standout-card { min-width: 0; padding: 20px; border: 1px solid var(--line-dark); border-radius: 16px; background: rgba(255, 255, 255, .045); }
.standout-head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.standout-head strong { color: var(--white); font-size: 20px; line-height: 1; }
.standout-head span { color: #c9d4cb; font-size: 15px; font-weight: 800; }
.standout-card > p { margin-top: 8px; min-height: 45px; color: #c9d4cb; font-size: 15px; font-weight: 700; line-height: 1.45; }
.standout-return { margin-top: 23px; color: var(--green); font-size: 37px; line-height: 1; font-weight: 950; letter-spacing: -.045em; }
.standout-prices { margin-top: 12px; color: var(--white); font-family: var(--mono); font-size: 15px; font-weight: 900; }
.standout-meta { margin-top: 7px; color: #c9d4cb; font-size: 15px; line-height: 1.45; }
.ledger-caveat { margin-top: 14px; color: #c9d4cb; font-size: 15px; line-height: 1.6; }

.offer-section { padding: 104px 0; background: var(--wash); }
.offer-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(350px, .72fr); gap: 60px; align-items: center; }
.included-list { display: grid; gap: 14px; margin-top: 30px; }
.included-item { display: flex; gap: 12px; align-items: flex-start; color: var(--body-strong); font-size: 18px; }
.included-item::before { content: "✓"; flex: 0 0 auto; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--green); color: var(--ink); font-weight: 950; }
.pricing-card { display: grid; justify-items: center; padding: 38px; border-radius: var(--radius); background: var(--ink); color: var(--white); text-align: center; box-shadow: var(--shadow); }
.pricing-kicker { color: var(--green); font-size: 14px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.pricing-price { margin-top: 13px; font-size: 74px; line-height: .95; font-weight: 950; letter-spacing: -.07em; }
.pricing-card h3 { margin-top: 12px; font-size: 24px; }
.pricing-card p { margin-top: 10px; color: #c9d4cb; font-size: 17px; }
.pricing-card .button { width: 100%; margin-top: 26px; }
.pricing-card .renewal-note { color: #d8e2da; font-size: 15px; }

.faq-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 32px; margin-top: 42px; }
.faq-item { padding: 28px 0; border-top: 1px solid var(--line); }
.faq-item h3 { font-size: 22px; line-height: 1.3; }
.faq-item p { margin-top: 9px; color: var(--body); font-size: 17px; }

.risk-note { padding: 48px 0; border-top: 1px solid var(--line); background: var(--paper); }
.risk-note-inner { display: grid; grid-template-columns: minmax(220px, .38fr) minmax(0, 1.62fr); gap: 42px; align-items: start; }
.risk-note h2 { font-size: 22px; line-height: 1.2; }
.risk-note p { max-width: 980px; color: var(--body); font-size: 15px; line-height: 1.65; }

.site-footer { padding: 48px 0; border-top: 1px solid var(--line); background: var(--paper); }
.footer-row { display: flex; align-items: center; gap: 30px; }
.footer-links { margin-left: auto; display: flex; flex-wrap: wrap; gap: 23px; }
.footer-links a { color: var(--body); font-size: 15px; font-weight: 700; }
.footer-links a:hover { color: var(--green-dark); }
.footer-legal { margin-top: 27px; padding-top: 23px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 30px; color: var(--body); font-size: 14px; }

.page-hero { padding: 84px 0 76px; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(350px, .82fr); gap: 68px; align-items: center; }
.page-hero h1 { margin-top: 17px; font-size: clamp(54px, 6vw, 80px); line-height: .98; letter-spacing: -.058em; text-wrap: balance; }
.page-hero p { max-width: 690px; margin-top: 24px; color: var(--body-strong); font-size: 22px; line-height: 1.5; }
.page-hero .button { margin-top: 29px; }

.signal-inputs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; margin-top: 42px; }
.signal-input { padding: 25px; border: 1px solid var(--line); border-radius: 17px; background: var(--paper); }
.signal-input span { color: var(--green-dark); font-size: 14px; font-weight: 950; }
.signal-input h3 { margin-top: 9px; font-size: 23px; }
.signal-input p { margin-top: 7px; color: var(--body); font-size: 16px; }
.delivery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.delivery-card { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.delivery-card span { color: var(--green-dark); font-size: 14px; font-weight: 950; }
.delivery-card h3 { margin-top: 11px; font-size: 25px; }
.delivery-card p { margin-top: 8px; color: var(--body); font-size: 17px; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 40px; }
.audience-card { padding: 31px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.audience-card h3 { font-size: 26px; }
.audience-card ul { margin: 18px 0 0; padding-left: 21px; color: var(--body); }
.audience-card li + li { margin-top: 8px; }

.purchase-panel { padding: 48px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink); color: var(--white); display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; box-shadow: var(--shadow); }
.purchase-panel h2 { margin-top: 12px; font-size: clamp(38px, 4.4vw, 58px); line-height: 1.02; letter-spacing: -.05em; }
.purchase-panel p { max-width: 680px; margin-top: 15px; color: #c9d4cb; font-size: 18px; }
.purchase-panel .eyebrow { color: var(--green); }
.purchase-panel .button { min-width: 170px; }
.purchase-note { font-size: 15px !important; }

.ledger-block { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: end; }
.ledger-block p { max-width: 710px; margin-top: 20px; color: var(--body); font-size: 21px; }

.checkout-status { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.pricing-card .checkout-status { position: static; width: auto; height: auto; overflow: visible; clip: auto; white-space: normal; margin-top: 14px; color: #d8e2da; font-size: 15px; font-weight: 750; }
.pricing-card .checkout-status:empty { display: none; }
.mobile-checkout { display: none; }

@media (max-width: 1180px) {
  .nav-links {
    position: fixed;
    inset: 81px 0 auto;
    display: none;
    padding: 28px 24px 34px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .menu-open .nav-links { display: flex; }
  .menu-toggle { display: inline-grid; place-items: center; margin-left: 0; }
  .site-header > .container > .nav-cta { margin-left: auto; }
}

@media (max-width: 1000px) {
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { max-width: 850px; }
  .alert-card { max-width: 650px; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-item:nth-child(4) { border-left: 0; }
  .proof-item:nth-child(n+4) { border-top: 1px solid var(--line-dark); }
  .process-layout, .ledger-layout, .offer-layout, .record-review-grid { grid-template-columns: 1fr; }
  .record-review-head { grid-template-columns: 1fr; gap: 22px; }
  .loss-result-card { max-width: 520px; }
  .ledger-table { max-width: 700px; }
  .pricing-card { max-width: 520px; }
  .signal-inputs { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 88px; }
  body { font-size: 17px; }
  .container { width: min(100% - 32px, var(--container)); }
  .brand-tag { display: none; }
  .brand-name { font-size: 14px; }
  .site-header .nav-cta { min-height: 46px; padding-inline: 14px; font-size: 14px; }
  .hero { padding: 64px 0 68px; }
  .hero-grid { gap: 38px; }
  .hero-copy h1 { font-size: clamp(40px, 11.5vw, 52px); }
  .hero-lede { font-size: 20px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-alert-path { display: grid; gap: 8px; }
  .alert-card-inner { padding: 24px; }
  .alert-ticker { font-size: 50px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(3), .proof-item:nth-child(5) { border-left: 0; }
  .proof-item:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
  .proof-item:nth-child(4) { border-left: 1px solid var(--line-dark); }
  .proof-label { display: grid; gap: 8px; padding-inline: 8px; }
  .proof-label h2 { text-align: left; }
  .proof-bar--contents { padding: 36px 0 26px; }
  .section, .ledger-section, .offer-section, .record-review { padding: 78px 0; }
  .section-title { font-size: clamp(39px, 11vw, 54px); }
  .standout-grid, .steps--compact { grid-template-columns: 1fr; }
  .track-grid, .faq-list, .delivery-grid, .audience-grid { grid-template-columns: 1fr; }
  .portrait-strip, .portrait-strip.brand-strip { height: 180px; }
  .ledger-stats { gap: 28px; flex-wrap: wrap; }
  .ledger-row { grid-template-columns: .75fr 1.2fr .7fr; padding-inline: 14px; }
  .offer-layout { gap: 38px; }
  .pricing-card { padding: 30px; }
  .risk-note-inner { grid-template-columns: 1fr; gap: 13px; }
  .footer-row, .footer-legal { align-items: flex-start; flex-direction: column; }
  .footer-links { margin-left: 0; }
  .page-hero { padding: 62px 0 68px; }
  .signal-inputs { grid-template-columns: 1fr; }
  .purchase-panel, .ledger-block { grid-template-columns: 1fr; align-items: start; padding: 31px; }
  .mobile-checkout {
    position: fixed;
    z-index: 45;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    display: block;
  }
  .mobile-checkout .button { width: 100%; box-shadow: 0 12px 45px rgba(0,0,0,.22); }
  body.has-mobile-checkout { padding-bottom: 84px; }
  .has-mobile-checkout .site-header .nav-cta { display: none; }
}

@media (max-width: 560px) {
  .archive-stats-head { align-items: flex-start; flex-direction: column; gap: 7px; }
  .archive-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .archive-stats-card { padding: 24px; }
}

@media (max-width: 520px) {
  .brand-copy { display: none; }
  .nav-shell { gap: 12px; }
}

@media (max-width: 440px) {
  .nav-shell { gap: 10px; }
  .site-header .nav-cta { padding-inline: 11px; }
  .anatomy-list { grid-template-columns: 1fr; }
  .ledger-row { grid-template-columns: .7fr 1fr .7fr; gap: 8px; font-size: 14px; }
  .ledger-row span { font-size: 14px; }
}

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