:root {
  --navy: #0b1f3a;
  --navy-lt: #12305a;
  --orange: #f57c00;
  --orange-dk: #d66700;
  --gold: #c9a227;
  --black: #111111;
  --paper: #f5f1ea;
  --white: #ffffff;
  --ink-soft: rgba(11, 31, 58, .64);
  --paper-soft: rgba(245, 241, 234, .62);
  --line-dark: rgba(245, 241, 234, .11);
  --line-light: rgba(11, 31, 58, .1);
  --shadow: 0 24px 70px rgba(11, 31, 58, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: var(--paper);
  transition: background .25s ease, border-color .25s ease, min-height .25s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(11, 31, 58, .88);
  border-bottom: 1px solid rgba(245, 241, 234, .08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
}

.brand strong {
  display: block;
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(245, 241, 234, .58);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: .22em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(245, 241, 234, .72);
  font-size: 13px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--white);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  background: var(--orange);
  color: var(--white);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  color: var(--paper);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section-dark,
.section-navy {
  background: var(--black);
  color: var(--paper);
}

.section-navy {
  background: var(--navy);
}

.section-paper {
  background: var(--paper);
  color: var(--navy);
}

.section,
.hero {
  padding: clamp(76px, 10vw, 130px) clamp(22px, 5vw, 72px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-areas: "copy product";
  grid-template-columns: minmax(520px, 720px) minmax(340px, 430px);
  gap: clamp(44px, 5vw, 76px);
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 148px;
  padding-bottom: 92px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 76% 18%, rgba(201, 162, 39, .12), transparent 58%),
    radial-gradient(ellipse 46% 60% at 8% 82%, rgba(245, 124, 0, .09), transparent 60%),
    var(--black);
}

.constellation span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(201, 162, 39, .75);
  animation: pulse 4.8s ease-in-out infinite;
  animation-delay: var(--d);
}

@keyframes pulse {
  0%, 100% {
    opacity: .25;
    transform: scale(.8);
  }
  50% {
    opacity: .95;
    transform: scale(1.6);
  }
}

.hero-copy,
.hero-product {
  position: relative;
  z-index: 1;
}

.hero-copy {
  grid-area: copy;
  width: min(100%, 720px);
  justify-self: start;
}

.hero-product {
  grid-area: product;
  justify-self: end;
}

.eyebrow,
.chapter,
.mono {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: .22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow,
.chapter {
  color: rgba(201, 162, 39, .78);
}

.chapter {
  margin: 0 0 18px;
}

h1,
h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin-top: 18px;
  color: var(--paper);
  font-size: 86px;
  font-weight: 900;
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

h2 {
  max-width: 780px;
  font-size: 64px;
  font-weight: 900;
}

h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.hero-sub {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(245, 241, 234, .82);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.75;
}

.hero-mission {
  max-width: 610px;
  margin-top: 16px;
  color: rgba(245, 241, 234, .64);
  font-size: 16px;
  line-height: 1.75;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(201, 162, 39, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: rgba(245, 241, 234, .78);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.waitlist-form {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(245, 241, 234, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

.waitlist-form label {
  display: block;
  color: var(--paper);
  font-weight: 800;
}

.waitlist-form p {
  margin-top: 4px;
  color: rgba(245, 241, 234, .62);
  font-size: 13px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(130px, .45fr) auto;
  gap: 10px;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(245, 241, 234, .16);
  border-radius: 8px;
  background: rgba(0, 0, 0, .22);
  color: var(--paper);
  font: inherit;
  font-size: 14px;
  padding: 0 13px;
}

.waitlist-form input::placeholder {
  color: rgba(245, 241, 234, .44);
}

.waitlist-form select {
  color-scheme: dark;
}

.waitlist-form .form-status {
  min-height: 20px;
  margin: 0;
  color: rgba(201, 162, 39, .86);
}

.access-note {
  max-width: 560px;
  margin-top: 16px;
  color: rgba(245, 241, 234, .64);
  font-size: 13px;
  line-height: 1.65;
}

.button {
  padding: 0 22px;
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(245, 124, 0, .23);
}

.button-primary:hover,
.header-cta:hover {
  background: var(--orange-dk);
}

.button-ghost {
  border: 1px solid rgba(245, 241, 234, .14);
  color: rgba(245, 241, 234, .82);
}

.button-quiet {
  color: rgba(245, 241, 234, .72);
  padding-inline: 4px;
  min-height: 46px;
}

.button-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .18);
}

.button-icon::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg) translate(1px, -1px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 780px;
  margin: 54px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(201, 162, 39, .14);
}

.hero-stats dt {
  margin: 0;
  color: var(--gold);
  font-family: "Fraunces", Georgia, serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: rgba(245, 241, 234, .62);
  font-size: 12px;
  line-height: 1.45;
}

.phone-shell {
  width: min(100%, 390px);
  margin-left: 0;
  border: 1px solid rgba(245, 241, 234, .12);
  border-radius: 34px;
  background: linear-gradient(160deg, #0b1f3a, #071525 62%, #121212);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .46);
  overflow: hidden;
}

.phone-top {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 4px 12px;
  align-items: center;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(245, 241, 234, .08);
}

.phone-top span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(115deg, transparent 44%, var(--orange) 45% 54%, transparent 55%),
    linear-gradient(245deg, transparent 44%, var(--paper) 45% 54%, transparent 55%);
  border: 1px solid rgba(255, 255, 255, .12);
}

.phone-top strong {
  line-height: 1;
}

.phone-top small {
  color: rgba(245, 241, 234, .62);
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.chat-feed {
  padding: 22px;
}

.bubble {
  max-width: 82%;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.45;
}

.bubble.learner {
  margin-left: auto;
  background: rgba(245, 124, 0, .18);
  color: rgba(245, 241, 234, .86);
}

.bubble.vela {
  background: rgba(245, 241, 234, .08);
  color: rgba(245, 241, 234, .72);
}

.roadmap-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(201, 162, 39, .2);
  border-radius: 10px;
  background: rgba(245, 241, 234, .96);
  color: var(--navy);
}

.roadmap-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(11, 31, 58, .1);
}

.roadmap-head .mono {
  color: var(--orange);
}

.match-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 31, 58, .08);
}

.match-row strong,
.match-row small {
  display: block;
}

.match-row small {
  margin-top: 4px;
  color: rgba(11, 31, 58, .52);
  font-size: 11px;
}

.rank {
  color: rgba(11, 31, 58, .24);
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.match-row.trade .rank {
  color: var(--orange);
}

.source-line {
  margin-top: 14px;
  color: rgba(11, 31, 58, .68);
  font-family: "Space Mono", monospace;
  font-size: 10px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(245, 241, 234, .08);
  border-bottom: 1px solid rgba(245, 241, 234, .08);
  background: var(--navy);
}

.trust-strip span {
  min-height: 70px;
  padding: 20px clamp(18px, 3vw, 36px);
  border-right: 1px solid rgba(245, 241, 234, .08);
  color: rgba(245, 241, 234, .72);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: .13em;
  line-height: 1.55;
  text-transform: uppercase;
}

.trust-strip span:last-child {
  border-right: 0;
}

.two-col,
.product-grid,
.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
  justify-content: center;
}

.two-col > *,
.product-grid > *,
.proof-grid > * {
  min-width: 0;
}

.problem h2 {
  color: var(--navy);
}

.text-stack {
  display: grid;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading.wide {
  display: grid;
  grid-template-areas:
    "chapter copy"
    "title copy";
  grid-template-columns: minmax(0, 680px) minmax(280px, 420px);
  column-gap: 48px;
  row-gap: 14px;
  align-items: start;
  justify-content: space-between;
}

.section-heading.wide .chapter {
  grid-area: chapter;
}

.section-heading.wide h2 {
  grid-area: title;
}

.section-heading.wide p:last-child {
  grid-area: copy;
  align-self: end;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.75;
}

.steps-grid,
.pathway-grid,
.audience-grid,
.audience-cards,
.verification-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.step-card,
.audience-grid article,
.pathway-card,
.audience-cards article,
.verification-flow article {
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, .54);
  padding: 24px;
}

.audience-switch {
  padding-top: 0;
}

.audience-cards article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--white);
}

.audience-cards span {
  margin-bottom: auto;
  color: var(--orange);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.audience-cards h3 {
  margin-top: 44px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  line-height: 1.08;
}

.audience-cards p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.72;
}

.step-card span {
  display: block;
  margin-bottom: 38px;
  color: var(--navy);
  font-family: "Fraunces", Georgia, serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.step-card:nth-child(2) span {
  color: var(--navy-lt);
}

.step-card:nth-child(3) span {
  color: var(--orange);
}

.step-card:nth-child(4) span {
  color: var(--gold);
}

.step-card p,
.audience-grid p,
.pathway-card p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.product-section {
  position: relative;
  overflow: hidden;
}

.product-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 86% 20%, rgba(245, 124, 0, .12), transparent 58%);
  pointer-events: none;
}

.product-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.product-copy p:not(.chapter) {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(245, 241, 234, .7);
  font-weight: 300;
  line-height: 1.78;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(245, 241, 234, .72);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--orange);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .16);
}

.dashboard-preview {
  padding: 24px;
  border: 1px solid rgba(245, 241, 234, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.dash-top,
.score-panel,
.source-table {
  display: grid;
  gap: 14px;
}

.dash-top {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 18px;
}

.dash-top .mono {
  color: rgba(201, 162, 39, .75);
}

.dash-top strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.dash-top > span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 162, 39, .14);
  color: var(--gold);
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 900;
}

.score-panel {
  grid-template-columns: repeat(2, 1fr);
}

.score-panel div,
.source-table,
.timeline {
  border: 1px solid rgba(245, 241, 234, .09);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

.score-panel div {
  padding: 18px;
}

.score-panel small {
  color: rgba(245, 241, 234, .62);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.score-panel strong {
  display: block;
  color: var(--gold);
  font-family: "Fraunces", Georgia, serif;
  font-size: 46px;
  line-height: 1;
}

.score-panel p,
.timeline p {
  color: rgba(245, 241, 234, .72);
  font-size: 13px;
}

.timeline {
  display: grid;
  gap: 0;
  margin-top: 14px;
  padding: 8px 18px;
}

.timeline div {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(245, 241, 234, .08);
}

.timeline div:last-child {
  border-bottom: 0;
}

.timeline span {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.timeline strong {
  color: var(--paper);
}

.source-table {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
  padding: 14px;
}

.source-table span,
.source-table strong {
  display: block;
}

.source-table span {
  color: rgba(245, 241, 234, .62);
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.source-table strong {
  margin-top: 4px;
  color: rgba(245, 241, 234, .9);
  font-size: 12px;
}

.pathway-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin-inline: auto;
}

.pathway-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.pathway-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: rgba(11, 31, 58, .28);
}

.pathway-card.skills::before {
  background: var(--orange);
}

.pathway-card.outcomes::before {
  background: var(--gold);
}

.pathway-card .mono {
  margin-bottom: 12px;
  color: rgba(11, 31, 58, .42);
}

.pathway-meta {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(11, 31, 58, .08);
  color: rgba(11, 31, 58, .42);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.proof-grid h2 {
  max-width: 620px;
}

.muted {
  max-width: 570px;
  margin-top: 22px;
  color: rgba(245, 241, 234, .7);
  font-weight: 300;
  line-height: 1.78;
}

.proof-list {
  display: grid;
  gap: 16px;
}

.proof-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 18px;
  padding: 22px;
  border: 1px solid rgba(245, 241, 234, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
}

.proof-list .pilot-proof {
  border-color: rgba(201, 162, 39, .28);
  background: rgba(201, 162, 39, .08);
}

.proof-list .pilot-proof span {
  color: var(--orange);
}

.proof-list span {
  grid-row: span 2;
  color: var(--gold);
  font-family: "Fraunces", Georgia, serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.proof-list p {
  margin-top: 8px;
  color: rgba(245, 241, 234, .68);
  font-size: 14px;
  line-height: 1.7;
}

.verification-section {
  padding-top: 0;
}

.dark-wide p:last-child {
  color: var(--paper);
  font-weight: 400;
}

.verification-flow {
  position: relative;
  max-width: 1120px;
  margin-inline: auto;
}

.verification-flow::before {
  content: "";
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 42px;
  height: 1px;
  background: rgba(201, 162, 39, .24);
}

.verification-flow article {
  position: relative;
  z-index: 1;
  min-height: 250px;
  border-color: rgba(245, 241, 234, .08);
  background: rgba(255, 255, 255, .04);
}

.verification-flow span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 46px;
  border: 1px solid rgba(201, 162, 39, .28);
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-family: "Space Mono", monospace;
  font-size: 10px;
}

.verification-flow h3 {
  color: var(--paper);
}

.verification-flow p {
  margin-top: 12px;
  color: rgba(245, 241, 234, .68);
  font-size: 14px;
  line-height: 1.72;
}

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1120px;
  margin-inline: auto;
}

.audience-grid article {
  background: var(--white);
}

.audience-grid article:nth-child(1) {
  border-top: 4px solid var(--navy);
}

.audience-grid article:nth-child(2) {
  border-top: 4px solid var(--gold);
}

.audience-grid article:nth-child(3) {
  border-top: 4px solid var(--orange);
}

.audience-grid article:nth-child(4) {
  border-top: 4px solid var(--navy-lt);
}

.pricing-clarity {
  padding-top: 0;
}

.clarity-card {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(11, 31, 58, .1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(11, 31, 58, .08);
}

.clarity-card h2 {
  font-size: 48px;
}

.pricing-table {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.pricing-table article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(11, 31, 58, .1);
  border-radius: 8px;
  background: rgba(245, 241, 234, .56);
}

.pricing-table span {
  color: var(--orange);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pricing-table strong {
  color: var(--navy);
  font-family: "Fraunces", Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.pricing-table p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.pricing-table .sponsored-tier {
  background: var(--navy);
}

.pricing-table .sponsored-tier strong,
.pricing-table .sponsored-tier p {
  color: var(--paper);
}

.final-cta {
  padding: clamp(82px, 11vw, 140px) clamp(22px, 5vw, 72px);
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201, 162, 39, .16), transparent 62%),
    var(--navy);
}

.final-cta h2 {
  margin: 0 auto;
}

.final-cta p:not(.chapter) {
  margin: 24px 0 32px;
  color: rgba(245, 241, 234, .72);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(22px, 5vw, 72px);
  border-top: 1px solid rgba(245, 241, 234, .08);
  background: var(--black);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  color: rgba(245, 241, 234, .72);
  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--white);
}

.site-footer p {
  color: rgba(245, 241, 234, .58);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.legal-page {
  background: var(--paper);
  color: var(--navy);
}

.legal-page .site-header {
  background: rgba(11, 31, 58, .88);
  border-bottom: 1px solid rgba(245, 241, 234, .08);
  backdrop-filter: blur(18px);
}

.legal-hero {
  padding-top: 150px;
}

.legal-content {
  max-width: 840px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(11, 31, 58, .1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(11, 31, 58, .08);
}

.legal-content h1 {
  max-width: 720px;
  margin: 14px 0 14px;
  color: var(--navy);
  font-size: clamp(48px, 8vw, 76px);
}

.legal-content h2 {
  margin-top: 34px;
  color: var(--navy);
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
}

.legal-content p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.legal-content a {
  color: var(--orange);
  font-weight: 800;
}

.legal-updated {
  color: rgba(11, 31, 58, .46);
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero,
  .two-col,
  .product-grid,
  .proof-grid,
  .section-heading.wide {
    grid-template-columns: 1fr;
  }

  .section-heading.wide {
    grid-template-areas:
      "chapter"
      "title"
      "copy";
    row-gap: 16px;
  }

  .section-heading.wide p:last-child {
    align-self: start;
  }

  .hero {
    grid-template-areas:
      "copy"
      "product";
    justify-content: stretch;
  }

  .phone-shell {
    margin: 0;
  }

  .hero-product {
    justify-self: start;
  }

  .steps-grid,
  .audience-grid,
  .audience-cards,
  .verification-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open .nav-links {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(245, 241, 234, .1);
    border-radius: 8px;
    background: rgba(11, 31, 58, .96);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav-links a {
    padding: 14px 12px;
  }

  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 50px;
  }

  .clarity-card {
    grid-template-columns: 1fr;
  }

  .pricing-table {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .verification-flow::before {
    display: none;
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero-stats dt {
    font-size: 38px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
    padding: 14px 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .hero-stats dt {
    font-size: 34px;
  }

  .hero-stats,
  .pathway-grid,
  .score-panel,
  .source-table,
  .trust-strip,
  .steps-grid,
  .audience-grid,
  .audience-cards,
  .form-row,
  .pricing-table,
  .verification-flow {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 241, 234, .08);
  }

  .step-card span {
    margin-bottom: 24px;
  }

  .audience-cards article,
  .verification-flow article {
    min-height: auto;
  }

  .audience-cards h3 {
    margin-top: 28px;
  }

  .clarity-card h2 {
    font-size: 36px;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: start;
  }
}
