/* FlowSEM landing - v1
   Palette: navy #000537 | slate #3f4368 | deep green #1d7c4e | lime #a5d742
   Type: Signika (self-hosted, OFL 1.1). Data figures use the system mono stack. */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Signika';
  src: url('../fonts/signika-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Signika';
  src: url('../fonts/signika-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Signika';
  src: url('../fonts/signika-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --navy: #000537;
  --navy-raise: #060c4a;
  --navy-card: rgba(180, 192, 255, 0.045);
  --line: rgba(180, 192, 255, 0.14);
  --line-strong: rgba(180, 192, 255, 0.28);
  --ink: #f2f4ff;
  --muted: #a9b0d4;
  --lime: #a5d742;
  --lime-soft: rgba(165, 215, 66, 0.14);
  --green: #1d7c4e;
  --paper: #fcfdf8;
  --paper-ink: #10142e;
  --paper-muted: #5a6076;
  --paper-line: #e3e6d9;
  --mono: ui-monospace, 'Cascadia Code', 'SF Mono', Menlo, Consolas, monospace;
  --radius: 14px;
  --radius-sm: 9px;
  --wrap: 1120px;
  --header-h: 68px;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
html, body { overflow-x: clip; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--ink);
  font-family: 'Signika', 'Trebuchet MS', Verdana, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--lime); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--lime); color: var(--navy); }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.14; margin: 0 0 0.5em; letter-spacing: -0.012em; }
h1 { font-size: clamp(2.1rem, 5.4vw, 3.55rem); }
h2 { font-size: clamp(1.55rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.18rem; }
p { margin: 0 0 1em; }
.muted { color: var(--muted); }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--lime); color: var(--navy); padding: 10px 16px;
  border-radius: 8px; font-weight: 600;
}
.skip-link:focus { left: 8px; }

/* ---------- Atmosphere ---------- */
.backdrop {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(29, 124, 78, 0.28), transparent 62%),
    radial-gradient(900px 480px at -12% 24%, rgba(63, 67, 104, 0.55), transparent 60%),
    radial-gradient(700px 700px at 50% 118%, rgba(165, 215, 66, 0.07), transparent 55%),
    var(--navy);
}
.backdrop::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(180, 192, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 192, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(1200px 700px at 50% 0%, rgba(0,0,0,0.9), transparent 75%);
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
section { padding: clamp(52px, 6vw, 84px) 0; }
section + section { border-top: 1px solid rgba(180, 192, 255, 0.06); }
.section-kicker {
  display: inline-block; font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime);
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 5px 14px; margin-bottom: 18px; background: rgba(0, 5, 55, 0.5);
}
.section-lead { max-width: 780px; color: var(--muted); font-size: 1.06rem; text-wrap: balance; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(0, 5, 55, 0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 18px; width: 100%; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand img { width: 34px; height: 34px; }
.brand span { font-weight: 700; font-size: 1.22rem; letter-spacing: -0.01em; }
.brand b { color: var(--lime); font-weight: 700; }
.main-nav { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.main-nav a {
  color: var(--muted); text-decoration: none; font-weight: 600; font-size: 0.95rem;
  padding: 10px 13px; border-radius: 8px; min-height: 44px; display: inline-flex; align-items: center;
}
.main-nav a:hover { color: var(--ink); background: var(--navy-card); }
.main-nav a.btn-primary, .main-nav a.btn-primary:hover { color: var(--navy); background: var(--lime); }
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 1px solid var(--line-strong);
  color: var(--ink); border-radius: 8px; padding: 9px 13px; font: inherit; font-weight: 600;
  min-height: 44px; cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 700; text-decoration: none; cursor: pointer;
  border-radius: 11px; padding: 13px 24px; min-height: 48px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--lime); color: var(--navy); border: 1px solid var(--lime);
  box-shadow: 0 6px 22px rgba(165, 215, 66, 0.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(165, 215, 66, 0.32); }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn-sm { padding: 9px 16px; min-height: 44px; font-size: 0.93rem; }

/* ---------- Hero ---------- */
.hero { padding: clamp(58px, 8vw, 104px) 0 clamp(48px, 6vw, 84px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero h1 .accent { color: var(--lime); }
.nowrap { white-space: nowrap; }
.e-x { display: none; }
.hero-eyebrow {
  font-family: var(--mono); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--lime);
  margin: 0 0 14px;
}
.hero-sub { color: var(--muted); font-size: 1.13rem; max-width: 580px; text-wrap: pretty; }
.hero-founder-line {
  display: flex; gap: 10px; align-items: baseline; margin: 18px 0 26px;
  font-size: 0.95rem; color: var(--muted);
}
.hero-founder-line::before {
  content: ''; width: 26px; height: 2px; background: var(--green);
  transform: translateY(-4px); flex: none;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-micro { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 18px; padding: 0; list-style: none; }
.hero-micro li {
  font-family: var(--mono); font-size: 0.8rem; color: var(--muted);
  display: flex; align-items: center; gap: 7px;
}
.hero-micro li::before { content: '✓'; color: var(--lime); font-weight: 700; }

/* Staggered load-in. The hidden state lives INSIDE the keyframes (with
   fill-mode both), so if animations are disabled the content is simply
   visible instead of stuck at opacity 0. */
.hero .stagger { animation: rise 0.7s ease both; }
.hero .stagger:nth-child(2) { animation-delay: 0.08s; }
.hero .stagger:nth-child(3) { animation-delay: 0.16s; }
.hero .stagger:nth-child(4) { animation-delay: 0.24s; }
.hero .stagger:nth-child(5) { animation-delay: 0.32s; }
.hero .stagger:nth-child(6) { animation-delay: 0.40s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* Hero product visual = compact paper panel */
.hero-visual { position: relative; }
.hero-visual .paper-panel { transform: rotate(1.4deg); }
.hero-visual::before {
  content: ''; position: absolute; inset: -8% -6% auto auto; width: 62%; height: 78%;
  border: 1px solid var(--line); border-radius: var(--radius); z-index: -1;
  transform: rotate(-2deg) translate(6%, 10%);
}

/* ---------- Paper panels (the deliverable look) ---------- */
.paper-panel {
  background: var(--paper); color: var(--paper-ink);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 3px 14px rgba(0, 0, 0, 0.35);
  font-size: 0.86rem;
}
.paper-head {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-bottom: 1px solid var(--paper-line);
  background: #f3f5ea;
}
.paper-head .dots { display: flex; gap: 5px; }
.paper-head .dots i { width: 9px; height: 9px; border-radius: 50%; background: #d6d9c8; }
.paper-head strong { font-size: 0.8rem; color: var(--paper-muted); font-weight: 600; margin-left: 4px; }
.paper-tag {
  margin-left: auto; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.06em;
  background: var(--lime-soft); color: var(--green); border: 1px solid rgba(29, 124, 78, 0.25);
  padding: 2px 8px; border-radius: 999px; white-space: nowrap;
}
.paper-body { padding: 14px 16px 16px; }

.action-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: start;
  padding: 9px 0; border-bottom: 1px dashed var(--paper-line);
}
.action-row:last-child { border-bottom: 0; }
.prio {
  font-family: var(--mono); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 3px 7px; border-radius: 5px; margin-top: 2px;
}
.prio-high { background: #fdeaea; color: #a02c2c; }
.prio-med { background: #fdf4e0; color: #97690f; }
.prio-low { background: #e8f1ff; color: #2c5aa0; }
.action-row .impact { font-family: var(--mono); font-size: 0.72rem; color: var(--paper-muted); white-space: nowrap; }
.action-row p { margin: 0; line-height: 1.4; }
.action-row small { color: var(--paper-muted); }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.mini-table { width: 100%; border-collapse: collapse; font-family: var(--mono); font-size: 0.68rem; }
.mini-table th, .mini-table td {
  text-align: left; padding: 6px 8px; border-bottom: 1px solid var(--paper-line); white-space: nowrap;
}
.mini-table th { background: #eef1e2; color: var(--paper-muted); font-weight: 600; letter-spacing: 0.04em; }
.mini-table .status-pause { color: #a02c2c; font-weight: 700; }

.evidence-block { border-left: 3px solid var(--lime); padding: 2px 0 2px 12px; margin: 10px 0; }
.evidence-block .ev-label {
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); display: block; margin-bottom: 3px;
}
.evidence-block p { margin: 0 0 6px; line-height: 1.45; }

/* ---------- Problem section ---------- */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.problem-card {
  background: var(--navy-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px;
}
.problem-card h3 { display: flex; gap: 10px; align-items: baseline; font-size: 1.05rem; }
.problem-card h3::before {
  content: attr(data-n); font-family: var(--mono); color: var(--lime); font-size: 0.8rem;
}
.problem-card p { color: var(--muted); font-size: 0.96rem; margin: 0; }
.problem-punch {
  margin-top: 34px; font-size: clamp(1.15rem, 2.4vw, 1.45rem); font-weight: 600;
  max-width: 760px; line-height: 1.4; text-wrap: balance;
}
.problem-punch em { color: var(--lime); font-style: normal; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; counter-reset: step; }
.step {
  position: relative; background: var(--navy-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 22px 22px;
}
.step::before {
  counter-increment: step; content: '0' counter(step);
  position: absolute; top: -14px; left: 18px;
  font-family: var(--mono); font-size: 0.78rem; font-weight: 700; color: var(--navy);
  background: var(--lime); border-radius: 7px; padding: 3px 9px;
}
.step h3 { margin-top: 4px; }
.step p { color: var(--muted); font-size: 0.96rem; margin: 0; }
.step .step-note { display: block; margin-top: 12px; font-family: var(--mono); font-size: 0.72rem; color: var(--lime); }

/* ---------- Proof section ---------- */
.proof-panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.proof-label {
  margin-top: 20px; display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.88rem; color: var(--muted); max-width: 640px;
}
.proof-label::before { content: 'ⓘ'; color: var(--lime); flex: none; }

/* ---------- What you get ---------- */
.get-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.get-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
  background: linear-gradient(180deg, var(--navy-card), transparent);
}
.get-card h3 { font-size: 1.02rem; display: flex; align-items: center; gap: 9px; }
.get-card h3::before { content: '▸'; color: var(--lime); }
.get-card p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ---------- Trust ---------- */
.trust-banner {
  margin-top: 38px; border: 1px solid rgba(165, 215, 66, 0.4); border-radius: var(--radius);
  background: var(--lime-soft); padding: 26px 28px;
  font-size: clamp(1.2rem, 2.6vw, 1.6rem); font-weight: 700; letter-spacing: -0.01em;
}
.trust-banner span { color: var(--lime); }
.trust-list { margin: 30px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; }
.trust-list li { display: flex; gap: 12px; color: var(--muted); font-size: 0.98rem; }
.trust-list li::before { content: '\2192'; color: var(--green); font-weight: 700; flex: none; }
.trust-list li strong { color: var(--ink); font-weight: 600; }

/* ---------- Founder ---------- */
.founder-grid { display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.founder-photo {
  margin: 0; width: clamp(190px, 22vw, 236px);
}
.founder-photo img {
  width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 18px; border: 1px solid var(--line-strong);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.founder-photo figcaption {
  margin-top: 12px; font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--lime);
}
.founder-atwork { margin: clamp(34px, 5vw, 60px) auto 0; max-width: 720px; text-align: center; }
.founder-atwork img {
  width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: 20px; border: 1px solid var(--line-strong);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.founder-atwork figcaption {
  margin-top: 16px; color: var(--muted); font-size: 0.9rem; text-wrap: pretty;
}
.founder-body p { color: var(--muted); max-width: 720px; text-wrap: pretty; }
.founder-body .founder-name { color: var(--ink); font-size: 1.14rem; font-weight: 700; margin-bottom: 2px; }
.founder-cred {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; padding: 0; list-style: none;
}
.founder-cred li {
  font-family: var(--mono); font-size: 0.74rem; color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 5px 12px;
}

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.price-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px;
  background: var(--navy-card); display: flex; flex-direction: column; gap: 6px;
}
.price-card.featured { border-color: var(--lime); background: linear-gradient(180deg, var(--lime-soft), var(--navy-card)); position: relative; }
.price-card.featured::before {
  content: 'NOW OPEN'; position: absolute; top: -12px; left: 20px;
  font-family: var(--mono); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em;
  background: var(--lime); color: var(--navy); border-radius: 6px; padding: 3px 9px;
}
.price-card .tier { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.price-card .amount { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; }
.price-card .amount small { font-size: 0.9rem; font-weight: 400; color: var(--muted); }
.price-card p { color: var(--muted); font-size: 0.93rem; margin: 0; }
.price-note { margin-top: 22px; color: var(--muted); font-size: 0.92rem; max-width: 720px; text-wrap: pretty; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 38px; display: grid; gap: 10px; max-width: 820px; }
.faq-list details {
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--navy-card);
}
.faq-list summary {
  cursor: pointer; list-style: none; padding: 17px 46px 17px 20px; font-weight: 600;
  position: relative; min-height: 44px; display: flex; align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; position: absolute; right: 18px; color: var(--lime); font-size: 1.3rem; font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details > div { padding: 0 20px 18px; color: var(--muted); font-size: 0.97rem; }
.faq-list details > div p { margin: 0 0 0.6em; }
.faq-list details > div p:last-child { margin: 0; }

/* ---------- Forms ---------- */
.form-shell {
  margin: 38px auto 0; max-width: 640px; text-align: left;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(165, 215, 66, 0.06), var(--navy-card));
  padding: clamp(22px, 4vw, 36px);
}
/* Closing CTA form sections read as a centered focal block */
#apply > .wrap, #partner > .wrap { text-align: center; }
#apply .section-lead, #partner .section-lead { margin-left: auto; margin-right: auto; }
.form-meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 0 0 22px; padding: 0; list-style: none; }
.form-meta li { font-family: var(--mono); font-size: 0.76rem; color: var(--muted); display: flex; gap: 7px; align-items: center; }
.form-meta li::before { content: '●'; color: var(--lime); font-size: 0.5rem; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 7px; }
.field label .opt { color: var(--muted); font-weight: 400; font-size: 0.85rem; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field input[type="url"], .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: rgba(0, 5, 55, 0.6); border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 12px 14px; min-height: 48px;
}
.field textarea { min-height: 104px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--lime) 50%), linear-gradient(135deg, var(--lime) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px; background-repeat: no-repeat; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--lime); outline-offset: 1px; border-color: var(--lime);
}
.field-hint { font-size: 0.84rem; color: var(--muted); margin-top: 5px; }
.radio-row { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-pill span {
  display: inline-flex; align-items: center; min-height: 44px; padding: 9px 18px;
  border: 1px solid var(--line-strong); border-radius: 999px; font-size: 0.94rem; cursor: pointer;
}
.radio-pill input:checked + span { background: var(--lime); color: var(--navy); border-color: var(--lime); font-weight: 700; }
.radio-pill input:focus-visible + span { outline: 2px solid var(--lime); outline-offset: 2px; }
.check-field { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.check-field input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--lime); flex: none; }
.check-field label { font-size: 0.92rem; color: var(--muted); font-weight: 400; }
.check-field.founding {
  border: 1px dashed rgba(165, 215, 66, 0.5); border-radius: var(--radius-sm);
  padding: 14px; background: rgba(165, 215, 66, 0.05);
}
.check-field.founding label { color: var(--ink); }
.form-shell .btn { width: 100%; margin-top: 6px; font-size: 1.05rem; }
.hp-field { position: absolute !important; left: -5000px !important; opacity: 0; height: 0; overflow: hidden; }

/* Partner section: lighter weight */
.partner-section { border-top: 1px solid var(--line); }
.partner-section .form-shell { background: var(--navy-card); border-color: var(--line); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 44px 0 60px; font-size: 0.92rem; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 1.05rem; }
.footer-brand img { width: 26px; height: 26px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 22px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: var(--muted); text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.footer-links a:hover { color: var(--lime); }
.footer-copy { width: 100%; color: var(--muted); font-size: 0.82rem; margin-top: 4px; }

/* ---------- Consent banner ---------- */
.consent-banner {
  position: fixed; z-index: 150; left: 16px; right: 16px; bottom: 16px;
  max-width: 560px; margin: 0 auto;
  background: var(--navy-raise); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  display: none;
}
.consent-banner.visible { display: block; }
.consent-banner p { font-size: 0.88rem; color: var(--muted); margin: 0 0 12px; }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Utility pages (thank-you / 404 / privacy) ---------- */
.page-narrow { max-width: 720px; margin: 0 auto; padding: clamp(56px, 9vw, 110px) 22px; }
.page-narrow h1 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); }
.next-steps { margin: 26px 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.next-steps li {
  display: flex; gap: 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--navy-card); padding: 16px 18px; color: var(--muted);
}
.next-steps li strong { color: var(--ink); }
.next-steps .n { font-family: var(--mono); color: var(--lime); font-weight: 700; flex: none; }
.privacy-body h2 { font-size: 1.25rem; margin-top: 2em; }
.privacy-body p, .privacy-body li { color: var(--muted); font-size: 0.97rem; }
.privacy-body strong { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .problem-grid, .steps, .proof-panels, .get-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .trust-list { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .main-nav {
    display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0; padding: 10px 18px 18px;
    background: rgba(0, 5, 55, 0.97); border-bottom: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 10px; }
  .nav-toggle { display: inline-flex; }
  .problem-grid, .steps, .proof-panels, .get-grid, .price-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .radio-row { flex-direction: column; }
  .radio-pill span { width: 100%; justify-content: center; }
}
