:root {
  color-scheme: dark;
  --navy-950: #040e1a;
  --navy-900: #040e1a;
  --navy-850: #0a1c2e;
  --navy-800: #0a1c2e;
  --paper: #040e1a;
  --white: #edf5f8;
  --ink: #edf5f8;
  --ink-soft: rgba(237, 245, 248, 0.78);
  --muted: #6ba8bc;
  --teal: #1eb8cc;
  --teal-soft: #5fd4e4;
  --coral: #e8836a;
  --coral-dark: #e8836a;
  --line-dark: rgba(95, 212, 228, 0.22);
  --line-light: rgba(95, 212, 228, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --content: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--paper); line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--teal); color: var(--navy-950); }

.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; background: var(--navy-850); color: var(--ink); padding: .75rem 1rem; border: 2px solid var(--teal); }
.skip-link:focus { top: 1rem; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.shell { width: min(var(--content), calc(100% - (2 * var(--gutter)))); margin-inline: auto; }
.section { padding-block: var(--section); }
.section-dark { background: var(--navy-900); color: var(--white); }
.section-light { background: var(--paper); color: var(--ink); }
.section-white { background: var(--navy-850); color: var(--ink); }
.section-rule { border-top: 1px solid var(--line-light); }
.section-dark.section-rule { border-color: var(--line-dark); }
.kicker { margin: 0 0 .9rem; color: var(--teal); font-family: var(--mono); font-size: .72rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.display { margin: 0; font-size: clamp(3.3rem, 7.2vw, 7.1rem); line-height: .98; letter-spacing: -.06em; font-weight: 700; }
h1, h2, h3, p { overflow-wrap: break-word; }
h2 { margin: 0 0 1.25rem; font-size: clamp(2.35rem, 5vw, 4.8rem); line-height: 1.04; letter-spacing: -.045em; }
h3 { margin: 0; font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.18; }
.serif { font-family: var(--serif); font-style: normal; font-weight: 500; letter-spacing: -.01em; }
.lead { font-family: var(--serif); font-style: normal; font-weight: 500; font-size: clamp(1.25rem, 1.9vw, 1.7rem); line-height: 1.5; }
.measure { max-width: 68ch; }
.muted { color: var(--muted); }
.section-dark .muted { color: var(--muted); }
.rule-accent { width: 68px; height: 3px; margin: 1.25rem 0 2rem; background: var(--coral); border: 0; }
.eyebrow-line { display: flex; gap: 1rem; align-items: center; color: var(--teal); font-family: var(--mono); font-size: .7rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-line::after { content: ""; height: 1px; flex: 1; background: currentColor; opacity: .45; }

/* Shared header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(4, 14, 26, .94); color: var(--white); border-bottom: 1px solid var(--line-dark); backdrop-filter: blur(16px); }
.nav-shell { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.wordmark { display: inline-flex; align-items: center; color: var(--ink); text-decoration: none; font-weight: 600; font-size: 1.15rem; letter-spacing: -.03em; white-space: nowrap; }
.brand-mark { width: 34px; height: 34px; margin-right: .65rem; flex: 0 0 auto; }
.wordmark-accent { color: var(--coral); }
.wordmark-ai { color: var(--ink); }
.primary-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.1rem); }
.primary-nav a { position: relative; color: var(--ink); text-decoration: none; font-size: .86rem; font-weight: 500; white-space: nowrap; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.55rem; height: 2px; background: var(--coral); transition: right .2s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after, .primary-nav a[aria-current="page"]::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; background: transparent; color: var(--white); border: 1px solid var(--line-dark); cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Buttons */
.button-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .8rem; min-height: 52px; padding: .85rem 1.35rem; border: 1px solid var(--coral); border-radius: var(--radius); background: var(--coral); color: var(--navy-950); text-decoration: none; font-weight: 700; line-height: 1.15; transition: transform .2s, background .2s, border-color .2s; }
.button::after { content: "→"; font-size: 1.2em; }
.button:hover { transform: translateY(-2px); background: var(--coral); border-color: var(--coral); filter: brightness(1.08); }
.button-outline { background: transparent; color: var(--white); border-color: var(--teal); }
.button-outline:hover { background: rgba(30,185,200,.12); border-color: var(--teal-soft); }
.button-dark { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }
.text-link { color: var(--teal); font-weight: 700; text-decoration: none; border-bottom: 1px solid currentColor; }
.text-link:hover { color: var(--coral); }

/* Hero */
.home-hero { position: relative; min-height: calc(100svh - 76px); display: grid; align-items: center; color: var(--white); background: var(--navy-950) url('/assets/hero-space-coast.png') center right / cover no-repeat; overflow: hidden; }
.home-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 5px; background: linear-gradient(90deg, transparent 0 6%, var(--paper) 6% 94%, transparent 94%); opacity: .8; }
.hero-content { position: relative; z-index: 1; width: min(720px, 59%); padding-block: clamp(5rem, 10vw, 8rem); }
.hero-content .display span { color: var(--coral); }
.hero-subtitle { margin: 1.8rem 0 0; max-width: 620px; font-family: var(--serif); font-style: normal; font-weight: 500; font-size: clamp(1.15rem, 1.8vw, 1.5rem); line-height: 1.5; }
.hero-philosophy { margin: 2.2rem 0; max-width: 560px; padding-left: 1.4rem; border-left: 3px solid var(--coral); font-family: var(--serif); font-style: normal; font-weight: 500; font-size: clamp(1.2rem, 1.9vw, 1.6rem); line-height: 1.5; }
.hero-note { position: absolute; right: clamp(1rem, 5vw, 6rem); bottom: 12%; z-index: 1; color: var(--coral); font-family: var(--mono); font-size: clamp(.78rem, 1.2vw, 1rem); letter-spacing: .06em; transform: rotate(-3deg); max-width: 210px; line-height: 1.45; }

/* Method */
.method-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr); gap: clamp(3rem, 8vw, 7rem); align-items: start; }
.method-copy { position: sticky; top: 120px; }
.method-copy p { font-size: 1.08rem; color: var(--ink-soft); }
.principles { margin: 0; padding: 0; list-style: none; counter-reset: method; border-top: 1px solid var(--line-light); }
.principle { counter-increment: method; display: grid; grid-template-columns: 42px minmax(130px, .65fr) 1.35fr; gap: 1.25rem; align-items: center; padding: 1.45rem 0; border-bottom: 1px solid var(--line-light); }
.principle::before { content: counter(method, decimal-leading-zero); color: var(--coral); font-family: var(--mono); font-size: 1rem; }
.principle strong { font-size: 1.25rem; }
.principle span { color: var(--ink-soft); }

/* Outcome cards */
.outcome-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.outcome-card { position: relative; min-height: 390px; padding: clamp(1.7rem, 3vw, 2.7rem); display: flex; flex-direction: column; border: 1px solid rgba(131,220,227,.55); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.03), rgba(255,255,255,0)); overflow: hidden; }
.outcome-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 6px; background: var(--teal); }
.outcome-card:nth-child(even)::before { background: var(--coral); }
.outcome-number { color: var(--coral); font-family: var(--mono); font-size: 1rem; }
.outcome-icon { width: 66px; height: 66px; display: grid; place-items: center; margin: .8rem 0 1.4rem; border: 1px solid var(--teal-soft); border-radius: 50%; color: var(--teal-soft); font-size: 1.7rem; }
.outcome-card p { color: var(--ink-soft); }
.outcome-card .button { align-self: flex-start; margin-top: auto; }
.topic-line { margin-top: 1.6rem; padding-top: 1.1rem; border-top: 1px solid var(--line-dark); color: var(--teal-soft); font-size: .78rem; letter-spacing: .03em; }

/* Exploration */
.explore-layout { display: block; }
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.article-card { display: flex; flex-direction: column; min-height: 370px; color: var(--white); text-decoration: none; border: 1px solid var(--line-dark); background: var(--navy-850); transition: transform .2s, border-color .2s; }
.article-card:hover { transform: translateY(-5px); border-color: var(--teal); }
.article-visual { min-height: 150px; display: grid; place-items: center; padding: 1rem; background: radial-gradient(circle at 20% 20%, rgba(30,184,204,.28), transparent 40%), linear-gradient(135deg, var(--navy-850), var(--navy-950)); color: var(--teal-soft); font-family: var(--mono); font-size: 2rem; }
.article-card:nth-child(2) .article-visual { background: radial-gradient(circle at 65% 20%, rgba(232,131,106,.3), transparent 38%), linear-gradient(135deg, var(--navy-850), var(--navy-950)); color: var(--coral); }
.article-card:nth-child(3) .article-visual { background: linear-gradient(160deg, rgba(30,184,204,.22), var(--navy-950) 64%); }
.article-body { display: flex; flex-direction: column; flex: 1; padding: 1.3rem; }
.article-pillar { color: var(--teal); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.article-body h3 { margin-top: .65rem; font-size: 1.2rem; }
.article-meta { margin-top: auto; padding-top: 1rem; color: var(--muted); font-size: .82rem; }

/* FAQ */
.faq-list { border-top: 1px solid currentColor; border-color: var(--line-light); }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-item summary { position: relative; padding: 1.35rem 3rem 1.35rem 0; cursor: pointer; list-style: none; font-weight: 700; font-size: 1.08rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: .5rem; top: 1.15rem; width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--teal); border-radius: 50%; color: var(--teal); font-size: 1.1rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { max-width: 80ch; padding: 0 3rem 1.5rem 0; color: var(--ink-soft); }
.faq-hub-link { margin: 1.75rem 0 0; }

/* About and contact */
.about-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.about-copy p { color: var(--ink-soft); }
.about-copy p:first-of-type { font-size: 1.12rem; color: var(--ink); }
.about-image { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; border-radius: 22px 4px 22px 4px; box-shadow: var(--shadow); }
.credentials { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line-light); }
.credentials .credentials-title { margin: 0 0 1rem; color: var(--teal); font-family: var(--mono); font-size: .7rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
.credential-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
.credential { display: flex; align-items: center; gap: .9rem; min-height: 84px; padding: .85rem; color: var(--ink); text-decoration: none; border: 1px solid var(--line-light); background: var(--navy-850); transition: transform .2s, border-color .2s; }
.credential:hover { transform: translateY(-2px); border-color: var(--teal); }
.credential-badge { width: 56px; height: 56px; object-fit: contain; flex: 0 0 auto; }
.credential span { display: grid; gap: .2rem; }
.credential strong { font-size: .86rem; line-height: 1.25; }
.credential small { color: var(--muted); font-size: .72rem; line-height: 1.35; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(250px, .75fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.contact-form { display: grid; gap: 1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .82rem; font-weight: 700; color: var(--ink); }
.field input, .field textarea { width: 100%; padding: .95rem 1rem; color: var(--white); background: rgba(255,255,255,.045); border: 1px solid var(--line-dark); border-radius: var(--radius); outline: none; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(30,185,200,.18); }
.contact-aside { padding-left: 2rem; border-left: 1px solid var(--line-dark); color: var(--ink-soft); }
.contact-aside a { color: var(--teal-soft); }

/* Footer */
.site-footer { padding: 3.5rem 0 2rem; color: var(--ink-soft); background: var(--navy-950); border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 2fr; gap: 3rem; align-items: start; }
.footer-nav { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.footer-nav a { color: var(--ink-soft); text-decoration: none; font-size: .86rem; }
.footer-nav a:hover { color: var(--teal-soft); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); color: var(--muted); font-size: .78rem; }

/* Authority pages */
.page-hero { padding: clamp(4rem, 8vw, 7rem) 0; color: var(--white); background: var(--navy-900); }
.breadcrumbs { margin-bottom: 1.25rem; color: var(--muted); font-size: .78rem; }
.breadcrumbs a { color: var(--teal-soft); text-decoration: none; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr); gap: clamp(2rem, 6vw, 6rem); align-items: end; }
.page-title { margin: 0; font-size: clamp(3rem, 7vw, 6.4rem); line-height: .98; letter-spacing: -.06em; }
.direct-answer { max-width: 780px; margin: 1.5rem 0 2rem; font-family: var(--serif); font-style: normal; font-weight: 500; font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.5; }
.toc { padding: 1.35rem; border: 1px solid var(--line-dark); background: rgba(255,255,255,.025); }
.toc strong { display: block; margin-bottom: .6rem; }
.toc a { display: block; padding: .3rem 0; color: var(--ink-soft); text-decoration: none; font-size: .84rem; }
.toc a:hover { color: var(--teal-soft); }
.authority-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.authority-content section { padding: 2.5rem 0; border-bottom: 1px solid var(--line-light); }
.authority-content section:first-child { padding-top: 0; }
.authority-content h2 { font-size: clamp(2rem, 3vw, 3rem); }
.authority-content h3 { margin: 2rem 0 .6rem; }
.authority-content p, .authority-content li { color: var(--ink-soft); }
.authority-content a { color: var(--teal-soft); }
.authority-aside { position: sticky; top: 104px; display: grid; gap: 1.25rem; }
.aside-panel { padding: 1.35rem; border-left: 3px solid var(--teal); background: var(--navy-850); box-shadow: 0 12px 36px rgba(0,0,0,.22); }
.aside-panel h2, .aside-panel h3 { margin: 0 0 .8rem; font-family: var(--sans); font-size: 1rem; letter-spacing: 0; }
.aside-panel a { display: block; margin: .55rem 0; color: var(--teal-soft); text-decoration: none; font-size: .86rem; }
.local-callout { padding: 1.3rem 1.5rem; border: 1px solid rgba(232,131,106,.5); background: rgba(232,131,106,.08); }
.process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin: 2rem 0; }
.process-step { position: relative; padding: 1.25rem 1rem; text-align: center; border-top: 3px solid var(--teal); background: var(--navy-850); }
.process-step strong { display: block; margin: .6rem 0; }
.process-step span { color: var(--muted); font-size: .84rem; }
.content-list { padding-left: 1.2rem; }
.content-list li { margin: .65rem 0; }
.updated { margin-top: .8rem; color: var(--muted); font-size: .78rem; }

/* Insights */
.insights-controls { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .45fr); gap: 2rem; align-items: end; margin-top: 2rem; }
.search-field { display: flex; align-items: center; gap: .7rem; padding: .8rem 1rem; border: 1px solid var(--line-light); background: var(--navy-850); }
.search-field input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); }
.filter-bar { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); margin: 2rem 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.filter-button { min-height: 60px; padding: .75rem; border: 0; border-right: 1px solid var(--line-light); background: transparent; color: var(--ink); cursor: pointer; font-weight: 700; }
.filter-button:last-child { border-right: 0; }
.filter-button:hover, .filter-button[aria-pressed="true"] { color: var(--teal-soft); box-shadow: inset 0 -3px var(--teal); }
.featured-insight { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: 2rem; align-items: center; padding: 2rem 0; border-bottom: 1px solid var(--line-light); }
.featured-insight .article-visual { min-height: 260px; }
.featured-insight h2 { font-family: var(--sans); font-weight: 600; font-size: clamp(2rem, 4vw, 3.5rem); }
.insights-list { border-top: 1px solid var(--line-light); }
.insight-row { display: grid; grid-template-columns: minmax(240px, 1.25fr) minmax(130px, .45fr) minmax(100px, .3fr) minmax(250px, 1fr) 30px; gap: 1.2rem; align-items: center; padding: 1.35rem .5rem; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line-light); }
.insight-row:hover { background: var(--navy-850); }
.insight-row h2 { margin: 0; font-family: var(--sans); font-weight: 600; font-size: 1.25rem; letter-spacing: -.01em; }
.insight-row .category { color: var(--teal-soft); font-family: var(--mono); font-size: .72rem; font-weight: 500; }
.insight-row time, .insight-row p { color: var(--muted); font-size: .82rem; }
.insight-row p { margin: 0; }
.empty-state { display: none; padding: 3rem 0; color: var(--muted); }

/* FAQ hub */
.faq-hub-intro { max-width: 820px; }
.faq-controls { position: sticky; top: 76px; z-index: 20; padding: 1.25rem 0; background: rgba(4,14,26,.96); border-bottom: 1px solid var(--line-light); backdrop-filter: blur(14px); }
.faq-control-row { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); gap: 1rem; align-items: center; }
.faq-search { display: flex; align-items: center; gap: .75rem; min-height: 52px; padding: .75rem 1rem; border: 1px solid var(--line-dark); background: var(--navy-850); }
.faq-search svg { width: 20px; height: 20px; color: var(--teal-soft); flex: 0 0 auto; }
.faq-search input { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; }
.faq-search input::placeholder { color: var(--muted); }
.faq-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .55rem; }
.faq-filter { min-height: 42px; padding: .55rem .75rem; border: 1px solid var(--line-dark); background: transparent; color: var(--ink-soft); cursor: pointer; font-family: var(--mono); font-size: .68rem; letter-spacing: .04em; }
.faq-filter:hover, .faq-filter[aria-pressed="true"] { color: var(--navy-950); background: var(--teal-soft); border-color: var(--teal-soft); }
.faq-results { padding: 1rem 0 0; color: var(--muted); font-size: .78rem; }
.faq-groups { display: grid; gap: 4rem; }
.faq-group { scroll-margin-top: 180px; }
.faq-group-header { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 1.25rem; align-items: start; margin-bottom: 1.5rem; }
.faq-group-number { padding-top: .45rem; color: var(--coral); font-family: var(--mono); }
.faq-group h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.6rem); }
.faq-group-description { max-width: 72ch; margin: .65rem 0 0; color: var(--ink-soft); }
.faq-question[hidden], .faq-group[hidden] { display: none; }
.faq-empty { display: none; padding: 2rem; border: 1px solid var(--line-dark); color: var(--ink-soft); background: var(--navy-850); }
.faq-empty a { color: var(--teal-soft); }

/* Beta application */
.offer-compare { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.offer-card { display: flex; flex-direction: column; min-height: 360px; padding: clamp(1.5rem, 3vw, 2.3rem); border: 1px solid var(--line-dark); background: var(--navy-850); }
.offer-card.roadmap { border-color: rgba(232,131,106,.55); }
.offer-label { color: var(--teal-soft); font-family: var(--mono); font-size: .7rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.offer-card.roadmap .offer-label { color: var(--coral); }
.offer-card h2 { margin: .75rem 0 1rem; font-size: clamp(1.8rem, 3vw, 2.75rem); }
.offer-card p, .offer-card li { color: var(--ink-soft); }
.offer-card ul { margin: .5rem 0 1.5rem; padding-left: 1.15rem; }
.offer-card li { margin: .45rem 0; }
.offer-foot { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line-dark); color: var(--teal-soft); font-weight: 700; }
.roadmap .offer-foot { color: var(--coral); }
.application-layout { display: grid; grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.application-intro { position: sticky; top: 110px; }
.application-intro h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.application-intro p { color: var(--ink-soft); }
.application-form { display: grid; gap: 1.15rem; padding: clamp(1.4rem, 4vw, 2.5rem); border: 1px solid var(--line-dark); background: var(--navy-850); }
.application-form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.application-form legend, .application-form label { color: var(--ink); font-size: .84rem; font-weight: 700; }
.application-form legend { margin-bottom: .75rem; }
.required { color: var(--coral); }
.application-form input[type="text"], .application-form input[type="email"], .application-form textarea, .application-form select { width: 100%; padding: .95rem 1rem; border: 1px solid var(--line-dark); border-radius: var(--radius); outline: 0; color: var(--ink); background: rgba(4,14,26,.72); }
.application-form textarea { min-height: 140px; resize: vertical; }
.application-form input:focus, .application-form textarea:focus, .application-form select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(30,185,200,.18); }
.application-form input::placeholder, .application-form textarea::placeholder { color: var(--muted); }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.choice-card { position: relative; display: block; min-height: 150px; padding: 1rem; border: 1px solid var(--line-dark); cursor: pointer; }
.choice-card:has(input:checked) { border-color: var(--teal); background: rgba(30,184,204,.08); }
.choice-card input { position: absolute; top: 1rem; right: 1rem; accent-color: var(--teal); }
.choice-card strong { display: block; max-width: calc(100% - 30px); margin-bottom: .45rem; }
.choice-card span { display: block; color: var(--muted); font-size: .8rem; font-weight: 400; }
.conditional-panel { padding: 1rem; border: 1px solid rgba(232,131,106,.55); background: rgba(232,131,106,.08); }
.conditional-panel[hidden] { display: none; }
.check-row { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: .75rem; align-items: start; cursor: pointer; }
.check-row input { width: 18px; height: 18px; margin-top: .2rem; accent-color: var(--coral); }
.check-row span { color: var(--ink-soft); font-size: .84rem; font-weight: 400; }
.form-note { margin: 0; color: var(--muted); font-size: .76rem; }
.form-note a { color: var(--teal-soft); }
.application-form .button { width: 100%; cursor: pointer; }

/* Confirmation */
.confirmation-section { min-height: calc(100svh - 76px); display: grid; place-items: center; padding: var(--section) 0; }
.confirmation-card { width: min(880px, 100%); padding: clamp(2rem, 6vw, 5rem); border: 1px solid var(--line-dark); background: var(--navy-850); box-shadow: var(--shadow); }
.confirmation-mark { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 1.5rem; border: 1px solid var(--teal); border-radius: 50%; color: var(--teal-soft); font-size: 1.8rem; }
.confirmation-card h1 { margin: 0; font-size: clamp(2.8rem, 7vw, 5.8rem); line-height: 1; letter-spacing: -.055em; }
.confirmation-lead { max-width: 720px; margin: 1.5rem 0 0; font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.65rem); font-style: normal; font-weight: 500; line-height: 1.5; }
.confirmation-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2.5rem 0; }
.confirmation-path { padding: 1.25rem; border-top: 3px solid var(--teal); background: var(--navy-950); }
.confirmation-path:last-child { border-color: var(--coral); }
.confirmation-path h2 { margin: 0 0 .55rem; font-family: var(--sans); font-size: 1.1rem; letter-spacing: 0; }
.confirmation-path p { margin: 0; color: var(--ink-soft); font-size: .88rem; }

/* Cookie banner */
.cookie-banner { position: fixed; left: 50%; bottom: 1rem; z-index: 500; width: min(620px, calc(100% - 2rem)); transform: translateX(-50%); display: none; gap: 1rem; align-items: center; padding: 1rem; color: var(--ink-soft); background: var(--navy-850); border: 1px solid var(--line-dark); box-shadow: var(--shadow); }
.cookie-banner p { flex: 1; margin: 0; font-size: .76rem; }
.cookie-actions { display: flex; gap: .6rem; }
.cookie-actions button { padding: .55rem .8rem; border: 1px solid var(--teal); background: transparent; color: var(--teal-soft); cursor: pointer; font-size: .72rem; }

/* Focus and reveal */
:focus-visible { outline: 3px solid var(--teal); outline-offset: 4px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .primary-nav { position: fixed; inset: 76px 0 auto; display: grid; gap: 0; padding: 1rem var(--gutter) 1.5rem; background: rgba(4,14,26,.99); border-bottom: 1px solid var(--line-dark); transform: translateY(-130%); visibility: hidden; transition: transform .25s ease, visibility .25s; }
  .primary-nav.open { transform: none; visibility: visible; }
  .primary-nav a { padding: .85rem 0; border-bottom: 1px solid var(--line-dark); }
  .home-hero { min-height: auto; background-position: 58% center; }
  .hero-content { width: min(720px, 78%); }
  .method-grid, .about-grid, .contact-grid, .authority-layout { grid-template-columns: 1fr; }
  .method-copy, .authority-aside { position: static; }
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-card:last-child { grid-column: 1 / -1; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .toc { max-width: 520px; }
  .footer-grid { grid-template-columns: 1fr; }
  .insight-row { grid-template-columns: 1fr .45fr .3fr 30px; }
  .insight-row p { display: none; }
  .faq-control-row, .application-layout { grid-template-columns: 1fr; }
  .faq-filters { justify-content: flex-start; }
  .application-intro { position: static; }
}

@media (max-width: 700px) {
  :root { --section: 4.5rem; }
  .nav-shell { min-height: 68px; }
  .primary-nav { inset-block-start: 68px; }
  .home-hero { background-image: linear-gradient(180deg, rgba(3,16,31,.2), var(--navy-950) 62%), url('/assets/hero-space-coast.png'); background-position: 66% top; background-size: auto 53%, auto 53%; background-repeat: no-repeat; padding-top: 15rem; }
  .hero-content { width: 100%; padding-bottom: 4.5rem; }
  .display { font-size: clamp(3.15rem, 16vw, 5rem); }
  .hero-note { display: none; }
  .button-row { align-items: stretch; }
  .button { width: 100%; }
  .principle { grid-template-columns: 36px 1fr; gap: .7rem 1rem; }
  .principle span { grid-column: 2; }
  .outcome-grid, .article-grid, .process, .featured-insight, .insights-controls { grid-template-columns: 1fr; }
  .article-card:last-child { grid-column: auto; }
  .about-image { aspect-ratio: 1 / 1; }
  .contact-aside { padding-left: 0; padding-top: 2rem; border-left: 0; border-top: 1px solid var(--line-dark); }
  .credential-list { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .filter-bar { grid-template-columns: 1fr 1fr; }
  .filter-button { border-bottom: 1px solid var(--line-light); }
  .insight-row { grid-template-columns: 1fr 26px; gap: .5rem; }
  .insight-row .category, .insight-row time { grid-column: 1; }
  .insight-row > span:last-child { grid-column: 2; grid-row: 1 / 4; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
  .faq-controls { top: 68px; }
  .faq-control-row, .offer-compare, .choice-grid, .confirmation-paths { grid-template-columns: 1fr; }
  .faq-group-header { grid-template-columns: 1fr; gap: .35rem; }
  .faq-filter { flex: 1 1 calc(50% - .55rem); }
  .application-form { padding: 1.15rem; }
}

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