/* ============================================================
   Egress — non-custodial DeFi recovery
   Design system: dark, cool, institutional. One emerald accent.
   ============================================================ */

:root {
  /* Cool near-black base */
  --bg:        oklch(0.155 0.008 256);
  --bg-1:      oklch(0.185 0.009 256);   /* raised surfaces / cards */
  --bg-2:      oklch(0.225 0.010 256);   /* nested / inputs */
  --bg-inset:  oklch(0.135 0.008 256);   /* recessed wells, code */

  --line:      oklch(0.30 0.012 256);
  --line-soft: oklch(0.255 0.010 256);
  --line-strong: oklch(0.40 0.014 256);

  --text:      oklch(0.965 0.004 256);
  --text-dim:  oklch(0.74 0.008 256);
  --text-mute: oklch(0.565 0.009 256);

  /* Safe / verified accent — muted emerald */
  --accent:      oklch(0.80 0.135 165);
  --accent-deep: oklch(0.62 0.115 165);
  --accent-ghost: oklch(0.80 0.135 165 / 0.12);
  --accent-line:  oklch(0.80 0.135 165 / 0.30);

  /* Functional only — used in scam comparison */
  --warn:   oklch(0.80 0.12 78);
  --danger: oklch(0.68 0.16 26);
  --danger-ghost: oklch(0.68 0.16 26 / 0.10);

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  --maxw: 1120px;
  --pad: clamp(20px, 5vw, 56px);

  --font-sans: "Rubik", "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --shadow: 0 1px 0 oklch(1 0 0 / 0.03) inset, 0 24px 60px -30px oklch(0 0 0 / 0.7);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

/* Ambient field — extremely subtle, no hype gradients */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 78% -8%, oklch(0.80 0.135 165 / 0.06), transparent 60%),
    radial-gradient(700px 480px at 8% 6%, oklch(0.50 0.04 256 / 0.18), transparent 62%);
}

#root { position: relative; z-index: 1; }

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

::selection { background: var(--accent-ghost); color: var(--text); }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.section-divider { border-top: 1px solid var(--line-soft); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-ghost);
}

h1, h2, h3 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
.h-section { font-size: clamp(28px, 4vw, 44px); max-width: 18ch; }
.lede { color: var(--text-dim); font-size: clamp(16px, 1.6vw, 19px); max-width: 56ch; margin: 16px 0 0; line-height: 1.55; }

.mono { font-family: var(--font-mono); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  border-radius: var(--radius-sm);
  padding: 13px 20px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: oklch(0.18 0.02 165);
  box-shadow: 0 0 0 1px var(--accent-line), 0 10px 30px -12px var(--accent);
}
.btn-primary:hover { background: oklch(0.85 0.14 165); box-shadow: 0 0 0 1px var(--accent-line), 0 14px 34px -12px var(--accent); }

.btn-ghost {
  background: oklch(1 0 0 / 0.02);
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--line-strong); background: oklch(1 0 0 / 0.05); }

.btn-lg { padding: 16px 26px; font-size: 16.5px; }
.btn svg { width: 17px; height: 17px; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.header.stuck {
  background: oklch(0.155 0.008 256 / 0.72);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line-soft);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 600; letter-spacing: -0.02em; font-size: 18px; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--bg-1);
  border: 1px solid var(--line);
  color: var(--accent);
  flex: none;
}
.brand-mark svg { width: 17px; height: 17px; }
.brand b { font-weight: 600; }
.brand .dot { color: var(--accent); }

.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  color: var(--text-dim);
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color .15s ease, background .15s ease;
}
.nav a:hover { color: var(--text); background: oklch(1 0 0 / 0.04); }

.header .btn { padding: 10px 16px; font-size: 14.5px; }

.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav { display: none; }
  .header-actions .btn-label-long { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(56px, 8vw, 110px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em;
  color: var(--text-dim);
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--line); border-radius: 999px;
  background: oklch(1 0 0 / 0.02);
  margin-bottom: 26px; max-width: 100%;
}
.hero-tag .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-ghost); }

h1.hero-title {
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
h1.hero-title .soft { color: var(--text-mute); }
.hero-sub { color: var(--text-dim); font-size: clamp(16px, 1.8vw, 20px); max-width: 46ch; margin: 22px 0 0; line-height: 1.55; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.trust-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 500;
  color: var(--text-dim);
  padding: 9px 14px 9px 11px;
  border: 1px solid var(--line-soft); border-radius: 999px;
  background: var(--bg-1);
}
.chip svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

/* Mock verdict / simulation card — trust device */
.verdict {
  background: linear-gradient(180deg, var(--bg-1), oklch(0.165 0.008 256));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.verdict-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-mono); font-size: 12px; color: var(--text-mute);
  letter-spacing: 0.02em;
}
.verdict-bar .dots { display: flex; gap: 6px; margin-right: 6px; }
.verdict-bar .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.verdict-body { padding: 18px 18px 20px; font-family: var(--font-mono); font-size: 12.5px; line-height: 1.7; }
.vline { display: flex; gap: 12px; align-items: baseline; }
.vline + .vline { margin-top: 6px; }
.vline .k { color: var(--text-mute); width: 70px; flex: none; }
.vline .v { color: var(--text-dim); white-space: nowrap; }
.vline .v { color: var(--text-dim); }
.vline .v.addr { color: var(--text); white-space: nowrap; }
.verdict-status {
  margin-top: 16px; padding: 14px 16px;
  border: 1px solid var(--accent-line);
  background: var(--accent-ghost);
  border-radius: var(--radius-sm);
  display: flex; align-items: flex-start; gap: 12px;
}
.verdict-status .ico { color: var(--accent); margin-top: 2px; flex: none; }
.verdict-status b { color: var(--text); font-family: var(--font-sans); font-weight: 600; display: block; font-size: 14px; }
.verdict-status span { color: var(--text-dim); font-family: var(--font-sans); font-size: 13px; line-height: 1.5; }
.verdict-foot {
  padding: 12px 18px; border-top: 1px solid var(--line-soft);
  font-family: var(--font-mono); font-size: 11.5px; color: var(--text-mute);
  display: flex; justify-content: space-between; gap: 12px;
}

/* ============================================================
   How it works
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 46px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--bg-1);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px 20px 24px;
  position: relative;
  transition: border-color .25s ease, transform .25s ease;
}
.step:hover { border-color: var(--line); transform: translateY(-3px); }
.step-num {
  font-family: var(--font-mono); font-size: 12px; color: var(--accent);
  border: 1px solid var(--accent-line); background: var(--accent-ghost);
  width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
  margin-bottom: 18px; font-weight: 500;
}
.step h3 { font-size: 17px; margin-bottom: 8px; letter-spacing: -0.01em; }
.step p { color: var(--text-dim); font-size: 14.5px; margin: 0; line-height: 1.55; }
.step .step-tag { margin-top: 14px; font-family: var(--font-mono); font-size: 11.5px; color: var(--text-mute); }

/* ============================================================
   Anti-scam comparison
   ============================================================ */
.compare {
  margin-top: 44px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }

.compare-col {
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--bg-1);
  overflow: hidden;
}
.compare-col.bad { background: var(--danger-ghost); border-color: oklch(0.68 0.16 26 / 0.25); }
.compare-head {
  padding: 16px 20px; border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.compare-col.good .compare-head { color: var(--accent); }
.compare-col.bad .compare-head { color: var(--danger); border-bottom-color: oklch(0.68 0.16 26 / 0.2); }
.compare-list { list-style: none; margin: 0; padding: 8px 0; }
.compare-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 20px; font-size: 14.5px; color: var(--text-dim); line-height: 1.5;
}
.compare-list li svg { width: 17px; height: 17px; flex: none; margin-top: 2px; }
.compare-col.good li svg { color: var(--accent); }
.compare-col.bad li svg { color: var(--danger); }

.scam-link {
  margin-top: 26px; display: inline-flex; align-items: center; gap: 8px;
  color: var(--text); font-weight: 500; font-size: 15px;
  border-bottom: 1px solid var(--line-strong); padding-bottom: 3px;
  transition: color .15s ease, border-color .15s ease;
}
.scam-link:hover { color: var(--accent); border-color: var(--accent-line); }
.scam-link svg { width: 15px; height: 15px; }

/* ============================================================
   Coverage
   ============================================================ */
.coverage { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px,4vw,56px); align-items: start; margin-top: 12px; }
@media (max-width: 860px) { .coverage { grid-template-columns: 1fr; } }

.proto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 460px) { .proto-grid { grid-template-columns: 1fr; } }
.proto {
  display: flex; align-items: center; gap: 13px;
  padding: 15px 16px;
  background: var(--bg-1); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  transition: border-color .2s ease;
}
.proto:hover { border-color: var(--line); }
.proto-logo {
  width: 38px; height: 38px; border-radius: 9px; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 600; font-size: 15px;
  background: var(--bg-2); border: 1px solid var(--line); color: var(--text-dim);
}
.proto-name { font-weight: 500; font-size: 15px; }
.proto-meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-mute); }

.coverage-side {
  background: var(--bg-1); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 24px;
}
.coverage-side h3 { font-size: 18px; margin-bottom: 10px; }
.coverage-side p { color: var(--text-dim); font-size: 14.5px; margin: 0 0 18px; }
.chain-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chain-pill {
  font-family: var(--font-mono); font-size: 12.5px; color: var(--text-dim);
  padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg-2);
}
.chain-pill.solana { color: var(--accent); border-color: var(--accent-line); }

/* ============================================================
   Pricing
   ============================================================ */
.pricing-card {
  margin-top: 12px;
  display: grid; grid-template-columns: 1.2fr 1fr;
  background: linear-gradient(180deg, var(--bg-1), oklch(0.165 0.008 256));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
}
@media (max-width: 760px) { .pricing-card { grid-template-columns: 1fr; } }
.pricing-main { padding: clamp(28px,4vw,44px); }
.price-big { font-size: clamp(44px, 7vw, 76px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.price-big small { font-size: 0.3em; color: var(--text-mute); font-weight: 500; letter-spacing: 0; }
.price-sub { color: var(--text-dim); margin: 16px 0 0; font-size: 16px; max-width: 38ch; }
.pricing-side {
  border-left: 1px solid var(--line-soft);
  padding: clamp(28px,4vw,44px);
  display: flex; flex-direction: column; gap: 18px; justify-content: center;
  background: oklch(1 0 0 / 0.012);
}
@media (max-width: 760px) { .pricing-side { border-left: none; border-top: 1px solid var(--line-soft); } }
.price-point { display: flex; gap: 12px; align-items: flex-start; }
.price-point svg { width: 19px; height: 19px; color: var(--accent); flex: none; margin-top: 2px; }
.price-point b { display: block; font-weight: 600; font-size: 15px; }
.price-point span { color: var(--text-dim); font-size: 13.5px; }

/* ============================================================
   Intake form
   ============================================================ */
.form-section { scroll-margin-top: 90px; }
.form-shell {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px,4vw,56px);
  align-items: start; margin-top: 12px;
}
@media (max-width: 920px) { .form-shell { grid-template-columns: 1fr; } }

.form-aside { position: sticky; top: 96px; }
@media (max-width: 920px) { .form-aside { position: static; } }
.form-aside h2 { font-size: clamp(26px, 3.4vw, 38px); }
.form-aside .lede { margin-top: 14px; }
.aside-points { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.aside-points li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-dim); font-size: 14.5px; }
.aside-points li svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 2px; }

.form-card {
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.span-2 { grid-column: 1 / -1; }
@media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } .field.span-2 { grid-column: auto; } }

.label { font-size: 13.5px; font-weight: 500; color: var(--text); display: flex; align-items: center; gap: 7px; }
.label .opt { color: var(--text-mute); font-weight: 400; font-family: var(--font-mono); font-size: 11.5px; }
.label .req { color: var(--accent); }

.input, .select, .textarea {
  font-family: var(--font-sans); font-size: 15px; color: var(--text);
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 12px 14px; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.input::placeholder, .textarea::placeholder { color: var(--text-mute); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--accent-line);
  box-shadow: 0 0 0 3px var(--accent-ghost); background: var(--bg-inset);
}
.input.mono, .textarea.mono { font-family: var(--font-mono); font-size: 14px; letter-spacing: -0.01em; }
.textarea { resize: vertical; min-height: 92px; line-height: 1.5; }
.select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237b8190' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 38px; }

.field.invalid .input, .field.invalid .select, .field.invalid .textarea { border-color: var(--danger); box-shadow: 0 0 0 3px var(--danger-ghost); }
.err { color: var(--danger); font-size: 12.5px; font-family: var(--font-mono); margin: 0; }

.hint { color: var(--text-mute); font-size: 12.5px; margin: 0; }

/* segmented amount control */
.seg { display: flex; flex-wrap: wrap; gap: 8px; }
.seg button {
  font-family: var(--font-mono); font-size: 13px; color: var(--text-dim);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 14px; cursor: pointer; transition: all .15s ease;
}
.seg button:hover { border-color: var(--line-strong); color: var(--text); }
.seg button[aria-pressed="true"] { background: var(--accent-ghost); border-color: var(--accent-line); color: var(--accent); }

/* consent */
.consent {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 16px; border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  background: var(--bg-inset); cursor: pointer; margin-top: 2px;
}
.consent input { position: absolute; opacity: 0; pointer-events: none; }
.consent .box {
  width: 22px; height: 22px; border-radius: 6px; flex: none; margin-top: 1px;
  border: 1.5px solid var(--line-strong); background: var(--bg-2);
  display: grid; place-items: center; transition: all .15s ease; color: transparent;
}
.consent input:checked + .box { background: var(--accent); border-color: var(--accent); color: oklch(0.18 0.02 165); }
.consent input:focus-visible + .box { box-shadow: 0 0 0 3px var(--accent-ghost); }
.consent .box svg { width: 14px; height: 14px; }
.consent span { font-size: 13.5px; color: var(--text-dim); line-height: 1.5; }
.field.invalid .consent { border-color: var(--danger); }

.form-submit { margin-top: 4px; }
.form-submit .btn { width: 100%; }
.form-foot { display: flex; align-items: center; gap: 9px; justify-content: center; margin-top: 16px; color: var(--text-mute); font-size: 12.5px; }
.form-foot svg { width: 14px; height: 14px; color: var(--accent); }

/* thank-you */
.thanks { text-align: center; padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 40px); }
.thanks-badge {
  width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 24px;
  display: grid; place-items: center; color: var(--accent);
  background: var(--accent-ghost); border: 1px solid var(--accent-line);
}
.thanks-badge svg { width: 30px; height: 30px; }
.thanks h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.thanks p { color: var(--text-dim); max-width: 44ch; margin: 0 auto; font-size: 16px; line-height: 1.6; }
.thanks-recap {
  margin: 28px auto 0; max-width: 420px; text-align: left;
  border: 1px solid var(--line-soft); border-radius: var(--radius-sm); overflow: hidden;
}
.thanks-recap .row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 16px; font-size: 13px; border-bottom: 1px solid var(--line-soft); }
.thanks-recap .row:last-child { border-bottom: none; }
.thanks-recap .row .k { color: var(--text-mute); font-family: var(--font-mono); font-size: 12px; }
.thanks-recap .row .v { color: var(--text); font-family: var(--font-mono); font-size: 12.5px; overflow-wrap: anywhere; text-align: right; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 40px; border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 18px; padding: 22px 4px;
  color: var(--text); font-family: var(--font-sans); font-size: clamp(16px,1.8vw,19px); font-weight: 500;
  letter-spacing: -0.01em;
}
.faq-q .qicon { margin-left: auto; flex: none; color: var(--text-mute); transition: transform .25s ease, color .2s ease; }
.faq-q[aria-expanded="true"] .qicon { transform: rotate(45deg); color: var(--accent); }
.faq-q:hover { color: var(--accent); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s cubic-bezier(.2,.7,.2,1); }
.faq-a-inner { padding: 0 44px 24px 4px; color: var(--text-dim); font-size: 15.5px; line-height: 1.65; }
.faq-a-inner a { color: var(--accent); border-bottom: 1px solid var(--accent-line); }

/* ============================================================
   CTA band + Footer
   ============================================================ */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(28px, 4vw, 46px); max-width: 20ch; margin: 0 auto; }
.cta-band .lede { margin: 18px auto 30px; }

.footer { border-top: 1px solid var(--line-soft); padding-block: 52px; color: var(--text-mute); }
.footer-top { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: flex-start; }
.footer-brand { max-width: 34ch; }
.footer-brand p { color: var(--text-mute); font-size: 13.5px; margin: 14px 0 0; line-height: 1.6; }
.footer-cols { display: flex; gap: clamp(32px, 6vw, 72px); flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin: 0 0 14px; font-weight: 500; }
.footer-col a { display: block; color: var(--text-mute); font-size: 14px; padding: 5px 0; transition: color .15s ease; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-size: 12.5px; font-family: var(--font-mono);
}
.disclaimer { color: var(--text-mute); max-width: 70ch; line-height: 1.6; font-size: 12px; margin-top: 18px; font-family: var(--font-mono); }

/* focus visibility */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
button:focus:not(:focus-visible) { outline: none; }
