/* DPDPA.support — marketing site styles. Mobile-first. */

:root {
  --bg: #0a0e1a;
  --bg-alt: #0d1322;
  --panel: #121a2e;
  --ink: #eef2fb;
  --muted: #9aa6c2;
  --line: rgba(255,255,255,.08);
  --brand: #3ad1c4;
  --brand-2: #5b8cff;
  --accent: #8b5cff;
  --warn: #ffb84d;
  --radius: 16px;
  --maxw: 1140px;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video, canvas { max-width: 100%; display: block; }

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--brand); color: #04121a; padding: 10px 16px; border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Focus visibility for keyboard users */
a:focus-visible, button:focus-visible, [role="switch"]:focus-visible {
  outline: 3px solid var(--brand-2); outline-offset: 2px; border-radius: 6px;
}

/* ---------- WebGL fallback gradient ---------- */
.webgl-fallback {
  position: fixed; inset: 0; z-index: -2; display: none;
  background:
    radial-gradient(900px 600px at 20% -10%, rgba(58,209,196,.18), transparent 60%),
    radial-gradient(800px 600px at 90% 10%, rgba(91,140,255,.18), transparent 60%),
    var(--bg);
}
body.no-webgl .webgl-fallback { display: block; }
body.no-webgl canvas { display: none !important; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,14,26,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 22px; height: 22px; border-radius: 6px;
  background: conic-gradient(from 180deg, var(--brand), var(--brand-2), var(--accent), var(--brand));
  box-shadow: 0 0 18px rgba(58,209,196,.5);
}
.brand-text { font-size: 1.15rem; letter-spacing: -.01em; }
.brand-dot { color: var(--brand); }

.nav-menu {
  list-style: none; display: flex; align-items: center; gap: 6px; margin: 0; padding: 0;
}
.nav-menu a { color: var(--muted); font-size: .92rem; padding: 8px 12px; border-radius: 8px; font-weight: 500; }
.nav-menu a:hover { color: var(--ink); background: rgba(255,255,255,.05); text-decoration: none; }
.nav-cta {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #04121a !important; font-weight: 700 !important;
}
.nav-cta:hover { filter: brightness(1.08); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: transparent; border: 1px solid var(--line);
  border-radius: 10px; cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 24px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  cursor: pointer; border: 1px solid transparent; transition: transform .15s, filter .15s, background .2s;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #04121a; box-shadow: 0 10px 30px rgba(58,209,196,.28); }
.btn-primary:hover { filter: brightness(1.07); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 72px 0 80px; overflow: hidden; min-height: 88vh; display: flex; align-items: center; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,14,26,.35) 0%, rgba(10,14,26,.65) 70%, var(--bg) 100%);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }

.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--brand);
  background: rgba(58,209,196,.1); border: 1px solid rgba(58,209,196,.25);
  padding: 6px 12px; border-radius: 999px; margin: 0 0 18px;
}
.hero-headline {
  font-family: var(--font-head); font-weight: 800; line-height: 1.05; letter-spacing: -.02em;
  font-size: clamp(2.1rem, 6vw, 3.6rem); margin: 0 0 18px;
  background: linear-gradient(120deg, #fff 30%, var(--brand) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-subhead { color: var(--muted); font-size: clamp(1rem, 2.5vw, 1.15rem); margin: 0 0 28px; max-width: 56ch; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-ctas.center { justify-content: center; }
.hero-trust { margin: 22px 0 0; color: var(--muted); font-size: .85rem; }

.hero-media {
  margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--panel), #0b1120); box-shadow: var(--shadow); aspect-ratio: 16/11;
}
.hero-video, .how-video { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Sections ---------- */
.section { position: relative; padding: 84px 0; overflow: hidden; }
.section-alt { background: var(--bg-alt); }
.bg-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .9; pointer-events: none; }
.section .container { position: relative; z-index: 2; }

.section-title {
  font-family: var(--font-head); font-weight: 800; letter-spacing: -.02em; line-height: 1.12;
  font-size: clamp(1.6rem, 4.5vw, 2.5rem); margin: 0 0 18px; max-width: 22ch;
}
.section-copy { color: var(--muted); font-size: 1.05rem; max-width: 70ch; margin: 0 0 8px; }

.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }

/* ---------- Deadline / countdown ---------- */
.countdown { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 40px; }
.countdown-node {
  background: linear-gradient(160deg, var(--panel), #0b1224); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
}
#node-may { border-color: rgba(255,184,77,.3); box-shadow: 0 16px 40px rgba(255,184,77,.12); }
.countdown-label { font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--brand); margin: 0 0 4px; font-weight: 600; }
#node-may .countdown-label { color: var(--warn); }
.countdown-date { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; margin: 0 0 18px; }
.countdown-clock { display: flex; gap: 10px; }
.cd-unit {
  flex: 1; text-align: center; background: rgba(255,255,255,.04); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 6px;
}
.cd-unit b { display: block; font-family: var(--font-head); font-size: clamp(1.3rem, 4vw, 2rem); font-weight: 800; font-variant-numeric: tabular-nums; }
.cd-unit small { display: block; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }

/* ---------- Flow diagram ---------- */
.flow-diagram {
  list-style: none; margin: 44px 0 0; padding: 0; display: grid; gap: 16px;
  grid-template-columns: repeat(5, 1fr);
}
.flow-step {
  position: relative; background: linear-gradient(160deg, var(--panel), #0b1120);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 18px; text-align: center;
}
.flow-step h3 { font-family: var(--font-head); font-size: 1.05rem; margin: 12px 0 6px; }
.flow-step p { margin: 0; color: var(--muted); font-size: .85rem; }
.flow-num {
  display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px;
  border-radius: 50%; font-family: var(--font-head); font-weight: 800;
  background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #04121a;
}
.flow-step:not(:last-child)::after {
  content: "→"; position: absolute; right: -12px; top: 50%; transform: translateY(-50%);
  color: var(--brand); font-size: 1.1rem; z-index: 3;
}

.how-media {
  margin: 40px 0 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--panel), #0b1120); box-shadow: var(--shadow); aspect-ratio: 16/8;
}

/* ---------- Ledger ---------- */
.ledger-visual { display: grid; gap: 12px; }
.slab {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 8px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 12px; padding: 14px;
}
.slab span {
  font-family: var(--font-head); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--brand); text-align: center; background: rgba(58,209,196,.08); border-radius: 8px; padding: 8px 4px;
}

/* ---------- Stat row ---------- */
.stat-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 34px; }
.stat {
  flex: 1; min-width: 140px; text-align: center; background: linear-gradient(160deg, var(--panel), #0b1120);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 18px;
}
.stat b { display: block; font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--brand); }
.stat span { color: var(--muted); font-size: .9rem; }

/* ---------- Device frame ---------- */
.device-frame {
  position: relative; max-width: 320px; margin: 0 auto; background: #060912;
  border: 2px solid rgba(255,255,255,.12); border-radius: 36px; padding: 18px 14px 22px;
  box-shadow: var(--shadow);
}
.device-notch { width: 110px; height: 22px; background: #060912; border-radius: 0 0 14px 14px; margin: -18px auto 12px; }
.device-screen { background: linear-gradient(180deg, #0e1626, #0a101c); border-radius: 22px; padding: 18px; }
.device-title { font-family: var(--font-head); font-weight: 700; margin: 0 0 16px; font-size: 1rem; }
.toggle-row {
  width: 100%; min-height: 48px; display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 14px; margin-bottom: 10px; color: var(--ink); font-size: .95rem; cursor: pointer;
}
.switch { width: 42px; height: 24px; border-radius: 999px; background: rgba(255,255,255,.15); position: relative; transition: background .2s; flex: none; }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform .2s; }
.switch.on { background: var(--brand); }
.switch.on::after { transform: translateX(18px); }
.device-actions { display: flex; gap: 10px; margin-top: 6px; }
.mini-btn {
  flex: 1; min-height: 44px; border-radius: 10px; border: 1px solid var(--line); cursor: pointer;
  font-family: var(--font-head); font-weight: 600; background: var(--brand); color: #04121a;
}
.mini-btn.ghost { background: transparent; color: var(--ink); }

/* ---------- Source grid ---------- */
.source-grid {
  list-style: none; margin: 36px 0 0; padding: 0; display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.source-grid li {
  background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px; font-family: var(--font-head); font-weight: 600; font-size: .95rem;
}
.source-grid li::before { content: "● "; color: var(--brand); }

/* ---------- Tray row ---------- */
.tray-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px; }
.tray { background: linear-gradient(160deg, var(--panel), #0b1120); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.tray h3 { font-family: var(--font-head); margin: 0 0 8px; font-size: 1.2rem; }
.tray p { margin: 0; color: var(--muted); }

/* ---------- Trust grid ---------- */
.trust-grid { list-style: none; margin: 36px 0 0; padding: 0; display: grid; gap: 16px; grid-template-columns: repeat(2,1fr); }
.trust-grid li { background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.trust-grid b { display: block; font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 4px; color: var(--brand); }
.trust-grid span { color: var(--muted); }

/* ---------- Pricing ---------- */
.currency-toggle { display: inline-flex; gap: 0; border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin: 28px 0 36px; background: rgba(255,255,255,.04); }
.cur-btn { min-height: 44px; padding: 8px 22px; border: 0; background: transparent; color: var(--muted); font-family: var(--font-head); font-weight: 700; border-radius: 999px; cursor: pointer; }
.cur-btn.active { background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #04121a; }

.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(160deg, var(--panel), #0b1120); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 22px; box-shadow: var(--shadow);
}
.tier-popular { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand), 0 24px 60px rgba(58,209,196,.22); }
.tier-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #04121a;
  font-family: var(--font-head); font-weight: 800; font-size: .72rem; letter-spacing: .04em;
  padding: 6px 14px; border-radius: 999px;
}
.tier-name { font-family: var(--font-head); font-size: 1.3rem; margin: 0 0 8px; }
.tier-price { margin: 0 0 18px; }
.tier-price .price { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; }
.tier-price .per { color: var(--muted); font-size: 1rem; margin-left: 4px; }
.tier-features { list-style: none; margin: 0 0 22px; padding: 0; flex: 1; }
.tier-features li { position: relative; padding: 0 0 12px 24px; color: var(--muted); font-size: .92rem; }
.tier-features li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 800; }
.tier-cta { width: 100%; }
.pricing-note { margin: 26px 0 0; color: var(--muted); font-size: .88rem; text-align: center; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 30px; display: grid; gap: 12px; }
.faq-item { background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-q {
  width: 100%; min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: transparent; border: 0; color: var(--ink); font-family: var(--font-head); font-weight: 600;
  font-size: 1.02rem; text-align: left; padding: 16px 20px; cursor: pointer;
}
.faq-q .chev { transition: transform .25s; color: var(--brand); flex: none; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 20px 18px; color: var(--muted); }

/* ---------- Final CTA ---------- */
.section-final { text-align: center; background: radial-gradient(800px 400px at 50% 0%, rgba(58,209,196,.12), transparent 60%), var(--bg-alt); }
.section-final .section-title { margin-left: auto; margin-right: auto; max-width: 26ch; }
.section-final .section-copy { margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: #070b16; padding: 56px 0 100px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-company { color: var(--muted); font-size: .88rem; margin: 14px 0 10px; }
.footer-contact { font-size: .88rem; }
.footer-contact a { color: var(--muted); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-family: var(--font-head); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); margin: 0 0 4px; }
.footer-col a { color: var(--muted); font-size: .9rem; }
.footer-col a:hover { color: var(--ink); }
.footer-network a[aria-disabled="true"] { display: flex; align-items: center; gap: 8px; cursor: not-allowed; }
.soon-badge {
  display: inline-block; font-family: var(--font-head); font-size: .62rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--warn);
  border: 1px solid rgba(255,184,77,.4); border-radius: 999px; padding: 1px 7px; line-height: 1.4;
}
.footer-fineprint { max-width: var(--maxw); margin: 36px auto 0; padding: 24px 20px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .8rem; }

/* ---------- Trust / compliance strip ---------- */
/* Uses the logo palette (navy card + red accent). Token names resolve in
   css/site.css; literal fallbacks keep it correct on this stylesheet too. */
.trust-strip { max-width: var(--maxw); margin: 36px auto 0; padding: 0 20px; }
.trust-badges {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.trust-badge {
  display: flex; align-items: flex-start; gap: 12px;
  background: linear-gradient(135deg, var(--navy-700, #22387f), var(--navy-900, #101d4a));
  border: 1px solid rgba(227,38,59,.28); border-left: 3px solid var(--red-500, #e3263b);
  border-radius: var(--radius); padding: 14px 16px;
}
.trust-badge-icon {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(227,38,59,.14); color: var(--red-500, #e3263b);
}
.trust-badge-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.trust-badge-title { font-family: var(--font-head); font-size: .95rem; color: var(--white, #fff); letter-spacing: .01em; }
.trust-badge-sub { font-size: .8rem; color: var(--muted); }
.cert-id { font-size: .72rem; color: var(--muted); font-style: normal; }
a.cert-id { color: var(--red-500, #e3263b); }
a.cert-id:hover { color: var(--red-600, #c81f31); text-decoration: underline; }
.trust-caption { color: var(--muted); font-size: .8rem; margin: 12px 0 0; }
@media (min-width: 720px) {
  .trust-badges { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Legal pages ---------- */
.legal-page main { padding: 110px 0 64px; }
.legal-page .legal-prose { max-width: 760px; margin: 0 auto; }
.legal-page .legal-prose h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.4rem); line-height: 1.15; letter-spacing: -.02em; margin: 0 0 8px; }
.legal-page .legal-updated { color: var(--muted); font-size: .85rem; margin: 0 0 36px; }
.legal-page .legal-prose h2 { font-family: var(--font-head); font-size: 1.25rem; margin: 36px 0 10px; }
.legal-page .legal-prose h3 { font-family: var(--font-head); font-size: 1.02rem; margin: 24px 0 8px; }
.legal-page .legal-prose p,
.legal-page .legal-prose li { color: var(--muted); font-size: .98rem; }
.legal-page .legal-prose ul { padding-left: 22px; }
.legal-page .legal-prose li { margin: 6px 0; }
.legal-page .legal-prose a { color: var(--brand); }
.legal-page .legal-callout {
  border: 1px solid var(--line); border-left: 3px solid var(--brand);
  background: rgba(58,209,196,.06); border-radius: var(--radius);
  padding: 16px 20px; margin: 24px 0;
}
.legal-page .legal-callout p { color: var(--ink); margin: 0; font-size: .92rem; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  min-height: 52px; align-items: center; justify-content: center;
  background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #04121a;
  font-family: var(--font-head); font-weight: 800; border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0,0,0,.5);
}
.sticky-cta:hover { text-decoration: none; }

/* reveal animation default state */
[data-flow] { opacity: 1; }

/* =========================================================
   RESPONSIVE — tablet
   ========================================================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-media { order: 2; max-width: 520px; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .flow-diagram { grid-template-columns: repeat(2,1fr); }
  .flow-step:not(:last-child)::after { display: none; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =========================================================
   RESPONSIVE — phone (test at 375px)
   ========================================================= */
@media (max-width: 720px) {
  .nav-menu {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch;
    background: rgba(10,14,26,.98); backdrop-filter: blur(14px); padding: 16px;
    gap: 4px; border-bottom: 1px solid var(--line); transform: translateY(-120%);
    transition: transform .28s ease; max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { min-height: 48px; display: flex; align-items: center; font-size: 1rem; }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding: 48px 0 56px; }
  .hero-ctas .btn { flex: 1; }
  .countdown { grid-template-columns: 1fr; }
  .flow-diagram { grid-template-columns: 1fr; }
  .stat-row { gap: 12px; }
  .stat { min-width: calc(50% - 6px); }
  .tray-row { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }

  /* sticky CTA only on phones, with safe-area inset */
  .sticky-cta { display: flex; bottom: calc(16px + env(safe-area-inset-bottom)); }
  /* avoid the sticky CTA covering the in-page CTAs */
  .section-final { padding-bottom: 96px; }
  .nav-cta { display: none; } /* sticky bar already covers conversion on mobile */
}

/* =========================================================
   Reduced motion: kill transitions/animations
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .switch::after { transition: none; }
}
