:root {
  --ink: #07111f;
  --navy: #0d1b2a;
  --navy-2: #12263a;
  --paper: #f4f1ea;
  --paper-2: #e7e3db;
  --white: #fffefa;
  --gold: #c9a84c;
  --gold-soft: #e8cf86;
  --aqua: #55dfca;
  --sky: #8ed9ff;
  --muted: #6f7b86;
  --line-dark: rgba(255, 255, 255, .12);
  --line-light: rgba(7, 17, 31, .14);
  --display: "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --max: 1260px;
  --shadow: 0 28px 80px rgba(4, 11, 20, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 16px clamp(22px, 4vw, 64px);
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}

.wordmark { text-decoration: none; display: inline-flex; flex-direction: column; gap: 3px; justify-self: start; }
.wordmark-main { font-family: var(--display); font-size: 21px; letter-spacing: .015em; }
.wordmark-sub { color: rgba(255, 255, 255, .52); font-family: var(--mono); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 3vw, 38px); }
.site-nav a {
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-nav a:hover { color: var(--white); }
.header-cta {
  justify-self: end;
  padding: 12px 17px;
  border: 1px solid rgba(201, 168, 76, .52);
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr);
  align-items: center;
  gap: clamp(32px, 4vw, 68px);
  min-height: 680px;
  padding: clamp(64px, 7vw, 100px) max(24px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 82% 40%, rgba(85, 223, 202, .13), transparent 26%),
    radial-gradient(circle at 65% 80%, rgba(142, 217, 255, .08), transparent 28%),
    linear-gradient(135deg, #07111f 0%, #0b1a2a 54%, #0d2334 100%);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, transparent 4%, #000 55%, #000 100%);
}
.hero-grid {
  position: absolute;
  inset: auto -8% -24% 48%;
  z-index: -1;
  width: 70%;
  aspect-ratio: 1.3;
  border: 1px solid rgba(85, 223, 202, .12);
  transform: perspective(500px) rotateX(67deg) rotateZ(-8deg);
  background-image: linear-gradient(rgba(85,223,202,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(85,223,202,.12) 1px, transparent 1px);
  background-size: 36px 36px;
  animation: grid-breathe 7s ease-in-out infinite;
}

.hero-copy { position: relative; z-index: 2; max-width: 680px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--aqua);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow span { width: 30px; height: 1px; background: currentColor; }
.eyebrow.dark { color: #576b72; }
.hero h1,
.section-intro h2,
.results-heading h2,
.method-section h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.035em;
}
.hero h1 {
  max-width: 660px;
  color: var(--white);
  font-size: clamp(54px, 5.5vw, 82px);
  line-height: .96;
  text-wrap: balance;
  text-shadow: 0 4px 34px rgba(0,0,0,.28);
}
.hero h1 em {
  display: block;
  color: var(--gold-soft);
  font-weight: 400;
  text-shadow: 0 5px 38px rgba(232,207,134,.16);
}
.hero-lede { max-width: 660px; margin: 30px 0 0; color: rgba(255,255,255,.86); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.62; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; margin-top: 36px; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--ink); }
.button-primary:hover { background: var(--gold-soft); }
.button-outline { border-color: var(--line-light); background: transparent; color: var(--ink); }
.button-outline:hover { border-color: var(--ink); }
.button-outline.light { border-color: rgba(255,255,255,.28); color: var(--white); }
.button-quiet { background: transparent; border-color: var(--line-light); color: #4a5965; }

.text-link { color: var(--white); font-size: 12px; letter-spacing: .04em; text-decoration-color: rgba(255,255,255,.28); text-underline-offset: 6px; }
.text-link span { color: var(--aqua); }
.trust-line { max-width: 600px; margin: 26px 0 0; padding-left: 18px; border-left: 2px solid var(--aqua); color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.6; }
.trust-line strong { color: rgba(255,255,255,.86); }

.future-map {
  position: relative;
  isolation: isolate;
  justify-self: center;
  width: min(38vw, 480px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(7,17,31,.54) 0 28%, rgba(7,17,31,.22) 52%, transparent 74%);
  color: var(--white);
  filter: drop-shadow(0 24px 52px rgba(3,12,22,.3));
}
.future-map::before, .future-map::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}
.future-map::before {
  inset: 13%;
  border: 1px solid rgba(142,217,255,.34);
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(255,255,255,.11) 50%, transparent calc(50% + .5px)),
    linear-gradient(0deg, transparent calc(50% - .5px), rgba(255,255,255,.11) 50%, transparent calc(50% + .5px));
  box-shadow: inset 0 0 34px rgba(142,217,255,.04), 0 0 38px rgba(85,223,202,.06);
  animation: scope-pulse 6s ease-in-out infinite;
}
.future-map::after {
  inset: 22%;
  border: 1px dashed rgba(142,217,255,.52);
  background: conic-gradient(from 0deg, transparent 0deg 298deg, rgba(85,223,202,.28) 338deg, transparent 360deg);
  filter: drop-shadow(0 0 16px rgba(85,223,202,.18));
  animation: slow-spin 9s linear infinite;
}
.future-map > * { position: absolute; z-index: 1; }
.map-rings, .ring { position: absolute; border-radius: 50%; }
.map-rings { inset: 4%; }
.ring { border: 1px solid rgba(142,217,255,.3); box-shadow: inset 0 0 28px rgba(142,217,255,.025); }
.ring-one { inset: 12%; border-color: rgba(142,217,255,.25); }
.ring-two { inset: 27%; border-color: rgba(142,217,255,.42); border-style: dashed; animation: slow-spin 35s linear infinite; }
.ring-three { inset: 41%; border-color: rgba(85,223,202,.62); box-shadow: 0 0 34px rgba(85,223,202,.12); }
.map-rings::before, .map-rings::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(255,255,255,.15), transparent);
}
.map-rings::after { transform: rotate(90deg); }
.map-scan {
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg 304deg, rgba(85,223,202,.3) 344deg, transparent 360deg);
  filter: drop-shadow(0 0 14px rgba(85,223,202,.16));
  animation: slow-spin 8s linear infinite;
}
.map-core {
  position: absolute;
  inset: 38%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.map-core::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: rotate(45deg);
  border: 1px solid rgba(85,223,202,.58);
  background: rgba(7,17,31,.86);
  box-shadow: 0 0 60px rgba(85,223,202,.18);
  animation: core-glow 5s ease-in-out infinite;
}
.map-core > * { position: relative; z-index: 1; }
.map-core span, .map-core small { font-family: var(--mono); font-size: 7px; letter-spacing: .18em; color: rgba(255,255,255,.5); }
.map-core strong { font-family: var(--display); font-size: clamp(14px, 2vw, 23px); color: var(--gold-soft); font-weight: 400; }
.map-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid rgba(85,223,202,.28);
  background: rgba(7,17,31,.88);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.75);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .09em;
  text-transform: uppercase;
  box-shadow: 0 9px 26px rgba(3,12,22,.2);
  animation: node-breathe 4s ease-in-out infinite;
}
.map-node span { color: var(--aqua); }
.node-one { left: 4%; top: 20%; }
.node-two { right: 1%; top: 28%; animation-delay: -1s; }
.node-three { left: -1%; bottom: 26%; animation-delay: -2s; }
.node-four { right: 6%; bottom: 17%; animation-delay: -3s; }
.map-result {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  min-width: 175px;
  padding: 15px 18px;
  transform: translateX(-50%);
  border-top: 1px solid var(--gold);
  background: rgba(201,168,76,.13);
  box-shadow: 0 14px 36px rgba(3,12,22,.22);
  text-align: center;
}
.map-result span { font-family: var(--mono); font-size: 7px; letter-spacing: .18em; color: var(--gold-soft); }
.map-result strong { margin-top: 4px; font-family: var(--display); font-size: 17px; font-weight: 400; }

.proof-strip {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -35px auto 0;
  background: var(--white);
  box-shadow: var(--shadow);
}
.proof-strip > div { position: relative; padding: 28px 30px; border-right: 1px solid var(--line-light); }
.proof-strip > div:last-child { border-right: 0; }
.proof-strip span { position: absolute; top: 28px; right: 24px; color: rgba(7,17,31,.22); font-family: var(--mono); font-size: 10px; }
.proof-strip strong { display: block; padding-right: 34px; font-family: var(--display); font-size: 19px; font-weight: 500; }
.proof-strip p { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.builder-section, .atlas-section, .method-section { padding: clamp(90px, 10vw, 150px) max(24px, calc((100vw - var(--max)) / 2)); }
.section-intro { max-width: 790px; margin-bottom: 50px; }
.section-intro.split { max-width: none; display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; }
.section-intro h2, .results-heading h2, .method-section h2 { font-size: clamp(42px, 5vw, 70px); line-height: 1; }
.section-intro > p, .section-intro.split > p { margin: 22px 0 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.section-intro.split > p { margin: 0; }

.builder-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  align-items: start;
  background: var(--white);
  box-shadow: var(--shadow);
}
.builder-readiness {
  width: min(var(--max), calc(100% - 48px));
  margin: -22px auto 28px;
  padding: 15px 18px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.builder-main { min-height: 700px; padding: clamp(30px, 5vw, 70px); }
.builder-progress { margin-bottom: 42px; }
.progress-meta { display: flex; justify-content: space-between; margin-bottom: 10px; color: #5f6f79; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.progress-track { overflow: hidden; height: 2px; background: var(--paper-2); }
.progress-track span { display: block; width: 20%; height: 100%; background: linear-gradient(90deg, var(--gold), var(--aqua)); transition: width .35s ease; }
.builder-error { margin: 0 0 24px; padding: 13px 16px; border-left: 3px solid #a84232; background: #fff3ef; color: #7b3025; font-size: 13px; }

.builder-step { min-width: 0; margin: 0; padding: 0; border: 0; }
.builder-step legend { max-width: 780px; margin: 0; padding: 0; font-family: var(--display); font-size: clamp(33px, 4vw, 52px); font-weight: 400; line-height: 1.08; }
.builder-step legend > span { display: block; margin-bottom: 12px; color: #75848d; font-family: var(--mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.question-help { margin: 15px 0 30px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.answer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.answer-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.answer-card {
  position: relative;
  min-height: 90px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line-light);
  background: #fbfaf6;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.answer-card:hover { transform: translateY(-2px); border-color: rgba(7,17,31,.35); box-shadow: 0 10px 28px rgba(7,17,31,.07); }
.answer-card:has(input:checked) { border-color: #1d887b; background: #effbf8; box-shadow: inset 4px 0 0 var(--aqua); }
.answer-card:focus-within { outline: 3px solid var(--aqua); outline-offset: 3px; }
.answer-card input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.answer-index { flex: 0 0 auto; min-width: 24px; color: #798890; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; }
.answer-card strong { display: block; font-family: var(--display); font-size: 18px; font-weight: 600; line-height: 1.15; }
.answer-card small { display: block; margin-top: 7px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.builder-controls { display: flex; justify-content: space-between; gap: 12px; margin-top: 34px; }
.builder-controls .button-primary { margin-left: auto; }

.vision-preview {
  position: sticky;
  top: 0;
  min-height: 700px;
  padding: clamp(30px, 4vw, 52px);
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--ink);
  background-size: 30px 30px;
  color: var(--white);
}
.vision-preview::after { content: ""; position: absolute; width: 230px; height: 230px; right: -100px; bottom: -100px; border: 1px solid rgba(85,223,202,.2); border-radius: 50%; box-shadow: 0 0 0 38px rgba(85,223,202,.03), 0 0 0 76px rgba(85,223,202,.02); }
.preview-signal { height: 42px; display: flex; align-items: end; gap: 5px; margin-bottom: 44px; }
.preview-signal span { width: 4px; background: var(--aqua); opacity: .38; animation: signal 1.8s ease-in-out infinite; }
.preview-signal span:nth-child(1) { height: 10px; }
.preview-signal span:nth-child(2) { height: 28px; animation-delay: -.5s; }
.preview-signal span:nth-child(3) { height: 18px; animation-delay: -1s; }
.preview-signal span:nth-child(4) { height: 38px; animation-delay: -1.4s; }
.preview-label { margin: 0 0 12px; color: var(--aqua); font-family: var(--mono); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.vision-preview h3 { margin: 0; font-family: var(--display); font-size: 34px; font-weight: 400; line-height: 1.05; }
.vision-preview > p:not(.preview-label):not(.privacy-note) { color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.65; }
.vision-preview dl { margin: 36px 0; }
.vision-preview dl div { display: grid; grid-template-columns: 86px 1fr; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line-dark); }
.vision-preview dt { color: rgba(255,255,255,.35); font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.vision-preview dd { margin: 0; color: rgba(255,255,255,.82); font-size: 12px; line-height: 1.4; }
.privacy-note { position: relative; z-index: 2; margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(85,223,202,.25); color: rgba(255,255,255,.42); font-size: 10px; line-height: 1.6; }

.results-section {
  padding: clamp(80px, 9vw, 130px) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
}
.results-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; margin-bottom: 46px; }
.results-heading > div > p { max-width: 760px; color: rgba(255,255,255,.58); line-height: 1.7; }
.results-heading .button-outline { border-color: rgba(255,255,255,.25); color: var(--white); }
.match-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.match-card { position: relative; display: flex; flex-direction: column; min-height: 550px; padding: 30px; border: 1px solid rgba(255,255,255,.13); background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025)); }
.match-card:first-child { border-color: rgba(201,168,76,.54); box-shadow: inset 0 3px 0 var(--gold); }
.match-rank { display: flex; justify-content: space-between; gap: 12px; color: rgba(255,255,255,.42); font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.match-rank .status { color: var(--aqua); }
.match-card h3 { margin: 34px 0 4px; font-family: var(--display); font-size: 37px; font-weight: 400; }
.match-region { color: var(--gold-soft); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.match-reasons { margin: 28px 0; padding: 0; list-style: none; }
.match-reasons li { position: relative; margin: 0 0 10px; padding-left: 18px; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.5; }
.match-reasons li::before { content: "+"; position: absolute; left: 0; color: var(--aqua); font-family: var(--mono); }
.tradeoff-box, .future-box { padding: 16px 0; border-top: 1px solid var(--line-dark); }
.tradeoff-box strong, .future-box strong { display: block; margin-bottom: 7px; color: rgba(255,255,255,.4); font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.tradeoff-box p, .future-box p { margin: 0; color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.55; }
.future-box a { color: var(--sky); text-underline-offset: 3px; }
.match-actions { display: grid; gap: 8px; margin-top: auto; padding-top: 24px; }
.match-actions a { min-height: 45px; display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; border: 1px solid rgba(255,255,255,.16); color: var(--white); font-size: 10px; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.match-actions a.primary { border-color: var(--gold); background: var(--gold); color: var(--ink); font-weight: 800; }
.results-next { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; margin-top: 28px; padding: 34px; border: 1px solid rgba(85,223,202,.28); background: rgba(85,223,202,.045); }
.next-label { color: var(--aqua); font-family: var(--mono); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.results-next h3 { margin: 9px 0; font-family: var(--display); font-size: 29px; font-weight: 400; }
.results-next p { max-width: 800px; margin: 0; color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.6; }
.noscript-note { margin: 40px auto; width: min(var(--max), calc(100% - 48px)); padding: 18px 20px; border-left: 4px solid var(--gold); background: var(--white); }

.atlas-section { background: #e9e6df; }
.status-legend { display: flex; flex-wrap: wrap; gap: 22px; margin: -10px 0 34px; padding: 18px 20px; border: 1px solid var(--line-light); background: rgba(255,255,255,.42); }
.status-legend > span { display: inline-flex; align-items: center; gap: 7px; color: #5c6972; font-size: 10px; }
.status-legend strong { color: var(--ink); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #71808a; }
.status-dot.approved { background: var(--gold); }
.status-dot.underway { background: var(--aqua); }
.status-dot.proposed { background: #6c86cf; }
.atlas-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.atlas-card { position: relative; display: flex; flex-direction: column; min-height: 390px; padding: clamp(24px, 3vw, 38px); background: var(--white); border: 1px solid transparent; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.atlas-card:hover { transform: translateY(-3px); border-color: rgba(7,17,31,.2); box-shadow: 0 18px 45px rgba(7,17,31,.08); }
.atlas-top { display: flex; justify-content: space-between; align-items: center; gap: 14px; color: #6d7b84; font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.atlas-top .status { padding: 5px 7px; border: 1px solid var(--line-light); }
.atlas-top .status.approved { border-color: rgba(201,168,76,.5); color: #826d27; }
.atlas-top .status.underway { border-color: rgba(29,136,123,.42); color: #176f65; }
.atlas-top .status.proposed { border-color: rgba(74,100,171,.4); color: #40588f; }
.atlas-card h3 { margin: 32px 0 14px; font-family: var(--display); font-size: 38px; font-weight: 500; }
.atlas-copy { margin: 0; color: #56636b; font-size: 13px; line-height: 1.7; }
.future-note { margin: 22px 0 10px; padding-top: 18px; border-top: 1px solid var(--line-light); color: #34434c; font-size: 11px; line-height: 1.6; }
.source-link { color: #516974; font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-underline-offset: 3px; text-transform: uppercase; }
.atlas-actions { display: grid; grid-template-columns: 1fr 1fr; margin-top: auto; padding-top: 28px; }
.atlas-actions a { min-height: 44px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line-light); color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.atlas-actions a:last-child { border-left: 0; background: var(--ink); color: var(--white); }

.method-section { background: var(--white); }
.method-grid { display: grid; grid-template-columns: 1fr .85fr; gap: clamp(50px, 8vw, 110px); }
.method-grid > div:first-child > p { color: var(--muted); font-size: 14px; line-height: 1.75; }
.method-list { border-top: 1px solid var(--line-light); }
.method-list > div { display: grid; grid-template-columns: 46px 1fr; gap: 10px; padding: 20px 0; border-bottom: 1px solid var(--line-light); }
.method-list span { color: #72818a; font-family: var(--mono); font-size: 9px; }
.method-list p { margin: 0; color: #55636b; font-size: 12px; line-height: 1.6; }
.method-list strong { color: var(--ink); }
.source-panel { margin-top: 80px; padding: clamp(26px, 4vw, 46px); background: var(--paper); }
.source-panel h3 { margin: 0; font-family: var(--display); font-size: 28px; font-weight: 500; }
.source-panel > p { color: var(--muted); font-size: 12px; line-height: 1.6; }
.source-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 30px; margin-top: 24px; border-top: 1px solid var(--line-light); }
.source-grid a { padding: 15px 0; border-bottom: 1px solid var(--line-light); color: #344852; font-size: 11px; text-underline-offset: 4px; }

.final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 50px;
  padding: clamp(70px, 8vw, 120px) max(24px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(135deg, #102235, var(--ink));
  color: var(--white);
}
.final-cta::after { content: ""; position: absolute; width: 380px; height: 380px; right: -190px; top: -190px; border: 1px solid rgba(85,223,202,.2); border-radius: 50%; box-shadow: 0 0 0 70px rgba(85,223,202,.03), 0 0 0 140px rgba(85,223,202,.02); }
.cta-number { color: rgba(255,255,255,.25); font-family: var(--mono); font-size: 9px; letter-spacing: .16em; writing-mode: vertical-rl; }
.final-cta h2 { max-width: 720px; font-size: clamp(42px, 5vw, 68px); line-height: 1; }
.final-cta h2 em { color: var(--gold-soft); font-weight: 400; }
.final-cta p:not(.eyebrow) { max-width: 760px; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.7; }
.final-actions { position: relative; z-index: 2; display: grid; gap: 10px; min-width: 210px; }

.site-footer {
  display: grid;
  grid-template-columns: .7fr 1.5fr .8fr;
  gap: 38px;
  padding: 54px max(24px, calc((100vw - var(--max)) / 2));
  background: #050c15;
  color: rgba(255,255,255,.56);
  font-size: 11px;
  line-height: 1.65;
}
.site-footer > div { display: flex; flex-direction: column; }
.site-footer strong { color: var(--white); font-family: var(--display); font-size: 22px; font-weight: 400; }
.site-footer > div span { color: var(--gold-soft); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.site-footer p { margin: 0; }
.site-footer nav { display: flex; flex-direction: column; gap: 6px; }
.site-footer nav a { color: rgba(255,255,255,.72); text-underline-offset: 3px; }
.site-footer small { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); line-height: 1.6; }

@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes scope-pulse { 0%,100% { opacity: .58; transform: scale(.985); } 50% { opacity: 1; transform: scale(1.015); } }
@keyframes node-breathe { 0%,100% { border-color: rgba(255,255,255,.13); } 50% { border-color: rgba(85,223,202,.45); } }
@keyframes signal { 0%,100% { opacity: .28; transform: scaleY(.75); } 50% { opacity: .8; transform: scaleY(1); } }
@keyframes grid-breathe { 0%,100% { opacity: .58; } 50% { opacity: 1; } }
@keyframes core-glow {
  0%,100% { border-color: rgba(85,223,202,.5); box-shadow: 0 0 48px rgba(85,223,202,.12); }
  50% { border-color: rgba(142,217,255,.78); box-shadow: 0 0 72px rgba(85,223,202,.24); }
}

@media (max-width: 1060px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 780px; }
  .future-map { width: min(78vw, 520px); margin: 0 auto; }
  .builder-shell { grid-template-columns: 1fr; }
  .vision-preview { position: relative; min-height: 0; }
  .match-grid { grid-template-columns: 1fr; }
  .match-card { min-height: 0; }
  .final-cta { grid-template-columns: 70px 1fr; }
  .final-actions { grid-column: 2; display: flex; flex-wrap: wrap; }
}

@media (max-width: 760px) {
  html { scroll-behavior: auto; }
  .site-header { min-height: 74px; padding: 14px 20px; }
  .wordmark-sub { display: none; }
  .header-cta { padding: 10px 12px; font-size: 8px; }
  .hero { padding: 70px 24px 92px; gap: 65px; }
  .hero h1 { font-size: clamp(50px, 15vw, 70px); }
  .hero-lede { font-size: 16px; }
  .future-map { width: min(100%, 420px); }
  .map-node { font-size: 6px; padding: 7px; }
  .map-result { min-width: 145px; }
  .proof-strip { grid-template-columns: 1fr; margin-top: -24px; }
  .proof-strip > div { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .proof-strip > div:last-child { border-bottom: 0; }
  .builder-section, .atlas-section, .method-section { padding: 82px 24px; }
  .section-intro.split, .method-grid { grid-template-columns: 1fr; gap: 30px; }
  .builder-main, .vision-preview { padding: 28px 20px; }
  .builder-main { min-height: 0; }
  .answer-grid, .answer-grid.compact { grid-template-columns: 1fr; }
  .answer-card { min-height: 78px; }
  .builder-controls { position: sticky; bottom: 0; z-index: 5; margin: 28px -20px -28px; padding: 14px 20px; background: rgba(255,254,250,.96); border-top: 1px solid var(--line-light); backdrop-filter: blur(10px); }
  .results-section { padding: 78px 24px; }
  .results-heading, .results-next { grid-template-columns: 1fr; align-items: start; }
  .results-heading .button { justify-self: start; }
  .atlas-grid { grid-template-columns: 1fr; }
  .atlas-card { min-height: 0; }
  .status-legend { display: grid; }
  .source-grid { grid-template-columns: 1fr; }
  .final-cta { grid-template-columns: 1fr; gap: 24px; padding: 75px 24px; }
  .cta-number { writing-mode: horizontal-tb; }
  .final-actions { grid-column: auto; display: grid; }
  .site-footer { grid-template-columns: 1fr; padding: 48px 24px; }
  .site-footer small { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .site-header, .hero-actions, .builder-controls, .header-cta, .final-cta { display: none !important; }
  .hero, .results-section { background: #fff; color: #000; }
  .hero { min-height: 0; padding: 30px; }
  .future-map, .hero-grid { display: none; }
  .proof-strip, .builder-shell, .match-card, .atlas-card { box-shadow: none; }
  .atlas-grid, .match-grid { display: block; }
  .atlas-card, .match-card { break-inside: avoid; margin-bottom: 18px; color: #000; }
}
