/* AvoProof marketing site — hand-built static, no framework.
   Colour system mirrors the app (docs/THEME.md): role tokens, both schemes,
   measured contrast. Cards are defined by a ring, not a shadow. */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy: #011127;
  --navy-deep: #041a35;
  --brand-solid: #08c095;
  --brand-bright: #33dd9b;
  --on-brand: #011127;

  --bg: #ffffff;
  --surface: #f4f7fb;
  --surface-raised: #ffffff;
  --surface-inset: #eef2f7;
  --line: #e3e8ef;
  --line-strong: #cfd7e2;
  --ink: #0b1220;
  --ink-soft: #374151;
  --ink-faint: #5b6675;      /* 6.5:1 on white */
  --brand: #047857;          /* 5.5:1 on white */
  --brand-hover: #065f46;
  --brand-soft: rgba(8, 192, 149, 0.12);
  --danger: #b91c1c;
  --warning: #b45309;
  --info: #1d4ed8;

  --hero-grad: linear-gradient(160deg, #011127 0%, #041a35 55%, #062a4a 100%);
  --radius-card: 16px;
  --radius-panel: 12px;
  --radius-field: 10px;
  --max: 1120px;
  --gutter: 16px;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #011127;
    --surface: #041a35;
    --surface-raised: #062040;
    --surface-inset: rgba(255, 255, 255, 0.05);
    --line: rgba(255, 255, 255, 0.10);
    --line-strong: rgba(255, 255, 255, 0.16);
    --ink: #ffffff;
    --ink-soft: #cbd5e1;
    --ink-faint: #94a3b8;
    --brand: #08c095;
    --brand-hover: #33dd9b;
    --brand-soft: rgba(8, 192, 149, 0.15);
    --danger: #f87171;
    --warning: #fbbf24;
    --info: #60a5fa;
  }
}
:root[data-theme="dark"] {
  --bg: #011127;
  --surface: #041a35;
  --surface-raised: #062040;
  --surface-inset: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.16);
  --ink: #ffffff;
  --ink-soft: #cbd5e1;
  --ink-faint: #94a3b8;
  --brand: #08c095;
  --brand-hover: #33dd9b;
  --brand-soft: rgba(8, 192, 149, 0.15);
  --danger: #f87171;
  --warning: #fbbf24;
  --info: #60a5fa;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 0.15em; }
a:hover { color: var(--brand-hover); }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -0.015em; text-wrap: balance; }
h1 { font-size: clamp(2.1rem, 5.6vw, 3.5rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.35rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 700; }
code { font-family: var(--mono); font-size: 0.92em; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 8px; top: -60px; z-index: 100; padding: 10px 14px; background: var(--brand-solid); color: var(--on-brand); border-radius: 999px; font-weight: 700; }
.skip-link:focus { top: 8px; }
:focus-visible { outline: 3px solid var(--brand-solid); outline-offset: 3px; border-radius: 6px; }

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.lede { font-size: clamp(1.1rem, 1.9vw, 1.3rem); color: var(--ink-soft); max-width: 60ch; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tint { background: var(--surface); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p { color: var(--ink-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px; padding: 0 1.35rem;
  border-radius: 999px; border: 1px solid transparent;
  font: inherit; font-weight: 700; font-size: 1rem; line-height: 1;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn--primary { background: var(--brand-solid); color: var(--on-brand); }
.btn--primary:hover { background: var(--brand-bright); color: var(--on-brand); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink-faint); color: var(--ink); }
.btn--onnavy { color: #fff; border-color: rgba(255,255,255,.35); }
.btn--onnavy:hover { border-color: #fff; color: #fff; }
.btn svg { width: 18px; height: 18px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: #fff; text-decoration: none; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; }
.brand img { height: 30px; width: auto; }
.nav__list { display: flex; gap: 1.5rem; align-items: center; }
.nav__link { color: rgba(255,255,255,.82); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.nav__link:hover { color: #fff; }
.header__actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: none; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 10px;
  background: transparent; color: #fff; cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; margin: auto; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="false"] .nav-toggle__close { display: none; }
.mobile-nav { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav[hidden] { display: none; }
.mobile-nav__list { padding: 0.5rem var(--gutter) 1rem; display: grid; gap: 0.25rem; }
.mobile-nav__link { display: block; padding: 0.8rem 0.5rem; color: #fff; text-decoration: none; font-weight: 600; border-radius: 10px; }
.mobile-nav__link:hover { background: rgba(255,255,255,.06); color: #fff; }
@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- hero ---------- */
.hero { background: var(--hero-grad); color: #fff; position: relative; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; inset: auto -20% -40% auto; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(closest-side, rgba(8,192,149,.22), rgba(8,192,149,0)); pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding-top: clamp(3rem, 7vw, 5.5rem); padding-bottom: clamp(3rem, 7vw, 5rem);
}
.hero .eyebrow { color: var(--brand-solid); }
.hero h1 { color: #fff; }
.hero .lede { color: rgba(255,255,255,.82); margin-top: 1.25rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.hero__note { margin-top: 1.1rem; color: rgba(255,255,255,.66); font-size: 0.92rem; max-width: 48ch; }
.hero__note strong { color: #fff; }
.hero__visual { display: flex; justify-content: center; }
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: 2; }
}

/* ---------- phone mockup ---------- */
.phone {
  width: 300px; max-width: 100%; aspect-ratio: 300 / 620;
  border-radius: 42px; padding: 12px;
  background: #0a0f1c;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 30px 60px -30px rgba(0,0,0,.55);
  position: relative; flex-shrink: 0;
}
.phone::before {
  content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: #0a0f1c; border-radius: 0 0 16px 16px; z-index: 3;
}
.scr {
  height: 100%; border-radius: 32px; overflow: hidden; position: relative;
  background: linear-gradient(180deg, #011127 0%, #041a35 100%); color: #fff;
  font-size: 12px; line-height: 1.35; display: flex; flex-direction: column;
}
.scr * { min-width: 0; }
.scr__bar { display: flex; align-items: center; justify-content: space-between; padding: 40px 14px 8px; }
.scr__bar img { height: 20px; width: auto; }
.scr__search { flex: 1; margin: 0 10px; height: 30px; border-radius: 999px; background: rgba(255,255,255,.08); display: flex; align-items: center; padding: 0 12px; color: #94a3b8; gap: 6px; }
.scr__avatar { width: 26px; height: 26px; border-radius: 50%; background: #08c095; color: #011127; display: grid; place-items: center; font-weight: 800; font-size: 11px; }
.scr__body { padding: 6px 10px 12px; display: grid; gap: 8px; overflow: hidden; flex: 1; }
.card-d { background: #041a35; border: 1px solid rgba(255,255,255,.10); border-radius: 14px; padding: 10px 11px; }
.card-d--brand { background: rgba(8,192,149,.12); border-color: rgba(8,192,149,.4); }
.card-d__title { font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: #94a3b8; font-weight: 700; margin-bottom: 6px; display: flex; justify-content: space-between; }
.card-d__title .brand-t { color: #08c095; }
.row-d { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-top: 1px solid rgba(255,255,255,.08); }
.row-d:first-of-type { border-top: 0; }
.row-d__ico { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.row-d__ico svg { width: 13px; height: 13px; }
.row-d__main { flex: 1; }
.row-d__t { font-weight: 600; font-size: 11.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.row-d__s { color: #94a3b8; font-size: 10.5px; }
.chip-d { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 10px; font-weight: 700; }
.t-brand { color: #08c095; } .t-blue { color: #60a5fa; } .t-orange { color: #fb923c; } .t-red { color: #f87171; } .t-amber { color: #fbbf24; } .t-faint { color: #94a3b8; }
.bg-brand { background: rgba(8,192,149,.18); } .bg-blue { background: rgba(59,130,246,.2); } .bg-orange { background: rgba(249,115,22,.2); } .bg-red { background: rgba(239,68,68,.22); } .bg-amber { background: rgba(245,158,11,.2); } .bg-pink { background: rgba(236,72,153,.2); } .bg-cyan { background: rgba(14,116,144,.35); }
.big-d { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.bars-d { display: flex; align-items: flex-end; gap: 5px; height: 34px; }
.bars-d span { flex: 1; border-radius: 3px 3px 0 0; background: rgba(255,255,255,.14); }
.bars-d span.on { background: #08c095; }
.scr__nav { display: flex; justify-content: space-around; align-items: center; padding: 8px 6px 14px; border-top: 1px solid rgba(255,255,255,.08); background: #011127; }
.scr__nav span { width: 20px; height: 20px; border-radius: 6px; background: rgba(255,255,255,.14); }
.scr__nav span.sos { width: 34px; height: 34px; border-radius: 50%; background: #e5484d; }
.scr__nav span.on { background: #08c095; }
.btn-d { display: flex; align-items: center; justify-content: center; gap: 6px; height: 34px; border-radius: 999px; background: #08c095; color: #011127; font-weight: 800; font-size: 11.5px; margin-top: 8px; }
.btn-d--ghost { background: transparent; border: 1px solid rgba(255,255,255,.25); color: #fff; }
.safety-d { background: #b91c1c; color: #fff; padding: 40px 14px 12px; }
.safety-d h4 { font-size: 15px; font-weight: 800; margin: 0 0 3px; }
.safety-d p { margin: 0; font-size: 11px; color: rgba(255,255,255,.9); }
.mono-d { font-family: var(--mono); font-size: 11px; }
.fact-d { display: flex; justify-content: space-between; gap: 8px; padding: 5px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: 11px; }
.fact-d:first-child { border-top: 0; }
.fact-d span:first-child { color: #94a3b8; flex-shrink: 0; }
.fact-d span:last-child { text-align: right; font-weight: 600; }
.shield-d { display: flex; align-items: center; gap: 10px; }
.shield-d svg { width: 34px; height: 34px; color: #08c095; flex-shrink: 0; }
.shield-d b { display: block; font-size: 13px; }
.shield-d small { color: #94a3b8; font-size: 10.5px; }
.tbl-d { width: 100%; border-collapse: collapse; font-size: 10.5px; }
.tbl-d td { padding: 4px 0; border-top: 1px solid rgba(255,255,255,.08); }
.tbl-d td:last-child { text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; }
.tbl-d tr.total td { border-top: 1px solid rgba(255,255,255,.25); font-weight: 800; color: #08c095; }
.ready-d { display: flex; gap: 5px; flex-wrap: wrap; }
.ready-d span { padding: 3px 8px; border-radius: 999px; font-size: 9.5px; font-weight: 700; }
.ready-d .ok { background: rgba(8,192,149,.18); color: #08c095; }
.ready-d .amber { background: rgba(245,158,11,.2); color: #fbbf24; }

/* ---------- scenario strip ---------- */
.scenarios { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.scenario { background: var(--surface-raised); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 1.5rem; }
.scenario__when { font-size: 0.85rem; font-weight: 700; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .6rem; }
.scenario h3 { margin-bottom: .5rem; }
.scenario p { color: var(--ink-soft); }
.scenario__answer { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); display: flex; gap: .6rem; color: var(--ink); font-weight: 600; }
.scenario__answer svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; margin-top: .15rem; }
@media (max-width: 860px) { .scenarios { grid-template-columns: 1fr; } }

/* ---------- how it works ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; counter-reset: step; }
.step { position: relative; padding: 1.5rem; background: var(--surface-raised); border: 1px solid var(--line); border-radius: var(--radius-card); }
.step__num { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--brand-solid); color: var(--on-brand); font-weight: 800; margin-bottom: 1rem; }
.step h3 { margin-bottom: .5rem; }
.step p { color: var(--ink-soft); }
.step .addr { display: inline-block; margin-top: .75rem; padding: .35rem .7rem; border-radius: 999px; background: var(--surface-inset); border: 1px solid var(--line); font-family: var(--mono); font-size: .85rem; color: var(--ink); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- feature split ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; padding: clamp(3rem, 7vw, 5.5rem) 0; }
.split + .split { border-top: 1px solid var(--line); }
.split--flip .split__copy { order: 2; }
.split__copy h2 { margin-bottom: 1rem; }
.split__copy p { color: var(--ink-soft); }
.split__visual { display: flex; justify-content: center; }
.checks { display: grid; gap: .65rem; margin-top: 1.25rem; }
.checks li { display: flex; gap: .65rem; align-items: flex-start; color: var(--ink); }
.checks svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; margin-top: .2rem; }
.split__foot { margin-top: 1.25rem; font-size: .92rem; color: var(--ink-faint); }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__copy { order: 0; }
  .split__visual { order: 2; }
}

/* ---------- feature grid ---------- */
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.feature { background: var(--surface-raised); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 1.4rem; }
.feature__ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 1rem; }
.feature__ico svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.08rem; margin-bottom: .45rem; }
.feature p { color: var(--ink-soft); font-size: .98rem; }
.d-green { background: rgba(8,192,149,.14); color: #047857; }
.d-blue { background: rgba(59,130,246,.14); color: #1d4ed8; }
.d-violet { background: rgba(139,92,246,.14); color: #6d28d9; }
.d-cyan { background: rgba(14,116,144,.14); color: #0e7490; }
.d-indigo { background: rgba(67,56,202,.14); color: #4338ca; }
.d-pink { background: rgba(219,39,119,.14); color: #be185d; }
.d-orange { background: rgba(249,115,22,.14); color: #c2410c; }
.d-red { background: rgba(229,72,77,.14); color: #b91c1c; }
.d-olive { background: rgba(77,124,15,.14); color: #4d7c0f; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .d-green { color: #08c095; }
  :root:not([data-theme="light"]) .d-blue { color: #60a5fa; }
  :root:not([data-theme="light"]) .d-violet { color: #c084fc; }
  :root:not([data-theme="light"]) .d-cyan { color: #22d3ee; }
  :root:not([data-theme="light"]) .d-indigo { color: #a5b4fc; }
  :root:not([data-theme="light"]) .d-pink { color: #f472b6; }
  :root:not([data-theme="light"]) .d-orange { color: #fb923c; }
  :root:not([data-theme="light"]) .d-red { color: #f87171; }
  :root:not([data-theme="light"]) .d-olive { color: #a3e635; }
}
:root[data-theme="dark"] .d-green { color: #08c095; }
:root[data-theme="dark"] .d-blue { color: #60a5fa; }
:root[data-theme="dark"] .d-violet { color: #c084fc; }
:root[data-theme="dark"] .d-cyan { color: #22d3ee; }
:root[data-theme="dark"] .d-indigo { color: #a5b4fc; }
:root[data-theme="dark"] .d-pink { color: #f472b6; }
:root[data-theme="dark"] .d-orange { color: #fb923c; }
:root[data-theme="dark"] .d-red { color: #f87171; }
:root[data-theme="dark"] .d-olive { color: #a3e635; }
@media (max-width: 960px) { .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .grid { grid-template-columns: 1fr; } }

/* ---------- trust / security ---------- */
.trust { background: var(--navy); color: #fff; }
.trust .eyebrow { color: var(--brand-solid); }
.trust h2 { color: #fff; }
.trust .section-head p { color: rgba(255,255,255,.78); }
.trust-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.trust-item { display: flex; gap: 1rem; padding: 1.25rem; border-radius: var(--radius-card); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); }
.trust-item svg { width: 26px; height: 26px; color: var(--brand-solid); flex-shrink: 0; margin-top: .1rem; }
.trust-item h3 { font-size: 1.05rem; color: #fff; margin-bottom: .35rem; }
.trust-item p { color: rgba(255,255,255,.78); font-size: .97rem; }
.trust__foot { margin-top: 1.5rem; color: rgba(255,255,255,.66); font-size: .92rem; }
.trust__foot a { color: var(--brand-solid); }
@media (max-width: 760px) { .trust-grid { grid-template-columns: 1fr; } }

/* ---------- faq ---------- */
.faq { max-width: 52rem; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  padding: 1.1rem 0; font-weight: 700; font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--ink-faint); line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq .faq__a { padding: 0 0 1.25rem; color: var(--ink-soft); max-width: 65ch; }

/* ---------- closing cta ---------- */
.closing { text-align: center; }
.closing .lede { margin: 1rem auto 0; }
.closing__ctas { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2rem; }
.closing__note { margin-top: 1rem; color: var(--ink-faint); font-size: .92rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.78); padding: 3rem 0 2rem; border-top: 1px solid rgba(255,255,255,.08); }
.site-footer a { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer__brand img { height: 84px; width: auto; margin-bottom: 1rem; }
.footer__brand p { font-size: .95rem; max-width: 36ch; }
.footer__col h3 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: .75rem; }
.footer__col li { margin-bottom: .45rem; }
.footer__col a { text-decoration: none; }
.footer__col a:hover { text-decoration: underline; }
.footer__legal { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .88rem; color: rgba(255,255,255,.6); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- prose pages (privacy, terms) ---------- */
.prose { max-width: 46rem; padding-top: clamp(2.5rem, 6vw, 4rem); padding-bottom: clamp(2.5rem, 6vw, 4rem); }
.prose h1 { font-size: clamp(1.9rem, 4.5vw, 2.6rem); margin-bottom: .5rem; }
.prose h2 { font-size: 1.35rem; margin: 2.25rem 0 .75rem; }
.prose h3 { font-size: 1.1rem; margin: 1.5rem 0 .5rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { list-style: disc; padding-left: 1.4rem; margin: 0 0 1rem; }
.prose li { margin-bottom: .35rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: .95rem; }
.prose th, .prose td { text-align: left; padding: .6rem .5rem; border-top: 1px solid var(--line); vertical-align: top; color: var(--ink-soft); }
.prose th { color: var(--ink); font-weight: 700; border-top: 0; }
.prose .meta { color: var(--ink-faint); font-size: .95rem; margin-bottom: 2rem; }
.tablewrap { overflow-x: auto; }
.notice { padding: 1rem 1.25rem; border-radius: var(--radius-panel); background: var(--surface); border: 1px solid var(--line); color: var(--ink-soft); font-size: .95rem; }
.notice strong { color: var(--ink); }
.placeholder { background: rgba(245,158,11,.18); border-radius: 4px; padding: 0 .25rem; color: var(--ink); }
