/* Afterprty — site styles. Colours mirror src/theme.js in the app. */
:root {
  --bg: #0E0B16;
  --bg-2: #120E1D;
  --surface: #1B1526;
  --surface-2: #241C33;
  --accent: #FF3D7F;
  --accent-2: #FFC93D;
  --cyan: #22D3EE;
  --violet: #B980FF;
  --success: #3DDC97;
  --text: #F5F1FA;
  --muted: #948AA8;
  --border: rgba(255, 255, 255, 0.09);
  --radius: 18px;
  --maxw: 1160px;
  --display: "Unbounded", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--accent); color: #fff; }

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

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 11, 22, 0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }
.brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 0 0 1px var(--border), 0 4px 18px rgba(255, 61, 127, .35); }
.brand span b { color: var(--accent); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-links a.btn { color: #fff; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); padding: 8px; cursor: pointer; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 100px;
  font-family: var(--body); font-weight: 700; font-size: 15px; text-decoration: none;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 30px rgba(255, 61, 127, .38); }
.btn-primary:hover { box-shadow: 0 10px 38px rgba(255, 61, 127, .55); }
.btn-ghost { background: rgba(255,255,255,.04); border-color: var(--border); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-sm { padding: 9px 16px; font-size: 13px; }

.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 20px 10px 16px; border-radius: 14px;
  background: #000; border: 1px solid rgba(255,255,255,.22); color: #fff; text-decoration: none;
}
.store-badge svg { width: 26px; height: 26px; }
.store-badge small { display: block; font-size: 10.5px; opacity: .75; line-height: 1.1; letter-spacing: .02em; }
.store-badge strong { display: block; font-size: 17px; line-height: 1.2; font-weight: 600; }
.store-badge .soon { margin-left: 6px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-2); border: 1px solid rgba(255, 201, 61, .45); padding: 3px 7px; border-radius: 100px; }

/* ---------- type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  padding: 7px 14px; border-radius: 100px; background: rgba(255,255,255,.04); border: 1px solid var(--border);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 10px var(--success); animation: blink 2s infinite; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.03em; line-height: 1.05; margin: 0; }
h1 { font-size: clamp(40px, 6.4vw, 76px); font-weight: 700; }
h2 { font-size: clamp(30px, 4.2vw, 48px); font-weight: 700; }
h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; }
.grad { background: linear-gradient(95deg, var(--accent) 0%, #FF7AA8 45%, var(--cyan) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: clamp(17px, 1.6vw, 19px); color: #CFC6DE; max-width: 34em; }
.muted { color: var(--muted); }

section { padding: 110px 0; position: relative; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head p { color: var(--muted); font-size: 18px; margin: 18px 0 0; }
.kicker { font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: block; }

/* ---------- hero ---------- */
.hero { padding: 70px 0 90px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto auto; width: 900px; height: 900px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(255, 61, 127, .22), transparent 70%);
}
.hero::after {
  content: ""; position: absolute; left: -300px; bottom: -300px; width: 700px; height: 700px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(34, 211, 238, .12), transparent 70%);
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.hero h1 { margin: 22px 0 22px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 34px; }
.hero-note { margin-top: 22px; font-size: 14px; color: var(--muted); display: flex; gap: 18px; flex-wrap: wrap; }
.hero-note span { display: inline-flex; align-items: center; gap: 6px; }
.hero-note svg { width: 16px; height: 16px; color: var(--success); }

/* radar */
.radar-wrap { position: relative; width: 100%; max-width: 540px; aspect-ratio: 1; margin-left: auto; }
.radar {
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #251536 0%, #150d22 55%, #0c0814 100%);
  box-shadow: 0 0 0 1px rgba(255, 61, 127, .25), 0 30px 120px rgba(255, 61, 127, .18), inset 0 0 80px rgba(0,0,0,.6);
}
.radar .ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(255, 61, 127, .35); left: 50%; top: 50%; transform: translate(-50%, -50%); }
.radar .r1 { width: 28%; height: 28%; border-color: rgba(255, 61, 127, .6); }
.radar .r2 { width: 52%; height: 52%; }
.radar .r3 { width: 76%; height: 76%; border-color: rgba(255, 61, 127, .25); }
.radar .axis-x, .radar .axis-y { position: absolute; background: rgba(255, 61, 127, .14); }
.radar .axis-x { left: 0; right: 0; top: 50%; height: 1px; }
.radar .axis-y { top: 0; bottom: 0; left: 50%; width: 1px; }
.radar .sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(34, 211, 238, 0) 0deg, rgba(34, 211, 238, 0) 290deg, rgba(255, 61, 127, .28) 330deg, rgba(34, 211, 238, .65) 360deg);
  animation: spin 5s linear infinite;
}
.radar .core { position: absolute; left: 50%; top: 50%; width: 14px; height: 14px; margin: -7px 0 0 -7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan), 0 0 40px var(--cyan); }
.blip { position: absolute; transform: translate(-50%, -50%); font-size: clamp(26px, 4vw, 40px); filter: drop-shadow(0 0 12px rgba(255, 61, 127, .8)); animation: bob 3.2s ease-in-out infinite; }
.blip:nth-child(2n) { animation-delay: -1.2s; }
.blip:nth-child(3n) { animation-delay: -2.1s; }
.ping { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); transform: translate(-50%, -50%); box-shadow: 0 0 12px var(--accent); }
.ping::after { content: ""; position: absolute; inset: -2px; border-radius: 50%; border: 2px solid var(--accent); animation: ping 2.4s ease-out infinite; }
.ping.cyan { background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.ping.cyan::after { border-color: var(--cyan); animation-delay: -1s; }

.float-card {
  position: absolute; z-index: 3;
  background: rgba(27, 21, 38, .88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: 16px; padding: 12px 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.5); font-size: 13px; min-width: 190px;
  animation: bob 5s ease-in-out infinite;
}
.float-card .t { font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.float-card .s { color: var(--muted); font-size: 12px; margin-top: 2px; }
.float-card .pill { font-size: 10.5px; font-weight: 800; padding: 3px 8px; border-radius: 100px; background: rgba(61, 220, 151, .15); color: var(--success); }
.fc-1 { left: -6%; bottom: 14%; }
.fc-2 { right: -4%; top: 8%; animation-delay: -2.5s; }

/* ---------- marquee ---------- */
.marquee { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); overflow: hidden; padding: 18px 0; }
.marquee-track { display: flex; gap: 44px; width: max-content; animation: marquee 38s linear infinite; }
.marquee span { font-family: var(--display); font-size: 20px; font-weight: 600; color: #6E6485; white-space: nowrap; display: inline-flex; align-items: center; gap: 44px; }
.marquee span::after { content: "✦"; color: var(--accent); font-size: 14px; }

/* ---------- steps ---------- */
.how .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.steps { list-style: none; padding: 0; margin: 40px 0 0; display: grid; gap: 14px; counter-reset: step; }
.steps li {
  counter-increment: step; display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start;
  padding: 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border);
}
.steps li::before {
  content: counter(step); width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 20px; color: #fff;
  background: linear-gradient(135deg, var(--accent), #8A2BE2);
}
.steps li:nth-child(2)::before { background: linear-gradient(135deg, #8A2BE2, var(--cyan)); }
.steps li:nth-child(3)::before { background: linear-gradient(135deg, var(--cyan), var(--success)); color: #0E0B16; }
.steps p { margin: 6px 0 0; color: var(--muted); font-size: 15px; }

/* phone mockup */
.phone {
  width: 100%; max-width: 330px; margin: 0 auto; aspect-ratio: 9 / 19.2; border-radius: 48px; padding: 12px;
  background: linear-gradient(160deg, #3a3150, #16111f 40%, #2a2139);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 40px 100px rgba(0,0,0,.6), 0 0 120px rgba(255, 61, 127, .15);
  position: relative;
}
.screen { width: 100%; height: 100%; border-radius: 38px; background: var(--bg); overflow: hidden; position: relative; padding: 48px 14px 14px; }
.screen::before { content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 96px; height: 28px; border-radius: 20px; background: #000; }
.app-h { display: flex; align-items: center; justify-content: space-between; margin: 4px 4px 12px; }
.app-h b { font-family: var(--display); font-size: 20px; letter-spacing: -0.03em; }
.app-h .loc { font-size: 11px; color: var(--muted); background: var(--surface); border: 1px solid var(--border); padding: 5px 10px; border-radius: 100px; }
.pcard { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 12px; margin-bottom: 10px; }
.pcard.going { border-color: rgba(255, 61, 127, .6); box-shadow: 0 0 0 1px rgba(255, 61, 127, .25); }
.pcard .row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.pcard .name { font-weight: 800; font-size: 14px; letter-spacing: -0.01em; }
.pcard .meta { font-size: 11px; color: var(--muted); margin-top: 3px; }
.pcard .star { color: var(--accent-2); font-weight: 700; }
.pcard .you { font-size: 9.5px; font-weight: 800; color: var(--success); background: rgba(61, 220, 151, .14); padding: 3px 7px; border-radius: 100px; white-space: nowrap; }
.tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 9px; align-items: center; }
.tag { font-size: 10px; font-weight: 700; color: #D9CFEA; background: var(--surface-2); padding: 4px 8px; border-radius: 100px; }
.avs { display: flex; margin-left: auto; align-items: center; gap: 6px; font-size: 10px; color: var(--muted); }
.avs i { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--surface); margin-left: -7px; display: inline-block; }
.avs i:first-child { margin-left: 0; }
.mini-map {
  height: 118px; border-radius: 14px; margin-bottom: 10px; position: relative; overflow: hidden; border: 1px solid var(--border);
  background:
    linear-gradient(115deg, transparent 46%, rgba(255,255,255,.06) 46.5%, rgba(255,255,255,.06) 49%, transparent 49.5%),
    linear-gradient(20deg, transparent 60%, rgba(255,255,255,.05) 60.5%, rgba(255,255,255,.05) 62.5%, transparent 63%),
    linear-gradient(170deg, transparent 30%, rgba(255,255,255,.04) 30.5%, rgba(255,255,255,.04) 32%, transparent 32.5%),
    #171224;
}
.fuzz { position: absolute; border-radius: 50%; background: rgba(255, 61, 127, .2); border: 1.5px solid rgba(255, 61, 127, .7); }
.fuzz.gold { background: rgba(255, 201, 61, .18); border-color: rgba(255, 201, 61, .7); }

/* ---------- feature grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  padding: 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border);
  position: relative; overflow: hidden; transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); border-color: rgba(255, 61, 127, .35); }
.card p { margin: 10px 0 0; color: var(--muted); font-size: 15px; }
.icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  background: rgba(255, 61, 127, .12); color: var(--accent); border: 1px solid rgba(255, 61, 127, .25);
}
.icon svg { width: 24px; height: 24px; }
.icon.c { background: rgba(34, 211, 238, .1); color: var(--cyan); border-color: rgba(34, 211, 238, .25); }
.icon.g { background: rgba(61, 220, 151, .1); color: var(--success); border-color: rgba(61, 220, 151, .25); }
.icon.a { background: rgba(255, 201, 61, .1); color: var(--accent-2); border-color: rgba(255, 201, 61, .25); }
.icon.v { background: rgba(185, 128, 255, .1); color: var(--violet); border-color: rgba(185, 128, 255, .25); }

.safety { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 18%, var(--bg-2) 82%, var(--bg) 100%); }
.safety .card.wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.sos {
  border-radius: 16px; background: var(--bg); border: 1px solid var(--border); padding: 18px; font-size: 13px;
}
.sos .bar { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 12px; background: rgba(255, 77, 77, .12); border: 1px solid rgba(255, 77, 77, .4); color: #FF8A8A; font-weight: 800; }
.sos .bar i { width: 10px; height: 10px; border-radius: 50%; background: #FF4D4D; box-shadow: 0 0 10px #FF4D4D; animation: blink 1.2s infinite; }
.sos .share { margin-top: 10px; display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 12px; background: rgba(34, 211, 238, .08); border: 1px solid rgba(34, 211, 238, .3); color: var(--cyan); font-weight: 700; }

/* hosts */
.hosts .wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.checklist { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 16px; }
.checklist li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; }
.checklist li::before { content: "✓"; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-weight: 900; font-size: 14px; background: rgba(255, 61, 127, .15); color: var(--accent); }
.checklist b { display: block; }
.checklist span { color: var(--muted); font-size: 15px; }
.host-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 26px; box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.host-panel .hp-top { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.host-panel .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #8A2BE2, var(--accent)); display: grid; place-items: center; font-weight: 800; }
.host-panel .crown { font-size: 10px; font-weight: 800; letter-spacing: .06em; color: #1a1300; background: var(--accent-2); padding: 3px 8px; border-radius: 100px; margin-left: 6px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.stat { background: var(--surface-2); border-radius: 14px; padding: 14px; }
.stat b { font-family: var(--display); font-size: 24px; display: block; letter-spacing: -0.03em; }
.stat small { color: var(--muted); font-size: 12px; }
.alert-line { display: flex; gap: 10px; align-items: flex-start; background: var(--surface-2); border-radius: 14px; padding: 14px; font-size: 14px; margin-top: 10px; }
.alert-line em { font-style: normal; color: var(--muted); font-size: 12px; display: block; }
.qr { display: flex; align-items: center; gap: 14px; background: var(--surface-2); border-radius: 14px; padding: 14px; margin-top: 10px; font-size: 14px; }
.qr svg { width: 46px; height: 46px; flex: none; }

/* faq */
.faq-list { max-width: 820px; display: grid; gap: 12px; }
details { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 0 24px; transition: border-color .2s; }
details[open] { border-color: rgba(255, 61, 127, .35); }
summary { cursor: pointer; list-style: none; padding: 22px 0; font-weight: 700; font-size: 17px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 24px; font-weight: 400; color: var(--accent); transition: transform .2s; flex: none; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin: 0 0 22px; color: var(--muted); }

/* cta */
.cta-box {
  position: relative; overflow: hidden; border-radius: 32px; padding: 72px 40px; text-align: center;
  background: radial-gradient(120% 140% at 50% 0%, rgba(255, 61, 127, .35), transparent 55%), radial-gradient(90% 120% at 100% 100%, rgba(34, 211, 238, .2), transparent 60%), var(--surface);
  border: 1px solid rgba(255, 61, 127, .3);
}
.cta-box img { width: 84px; height: 84px; border-radius: 22px; margin: 0 auto 26px; box-shadow: 0 16px 50px rgba(255, 61, 127, .45); }
.cta-box p { color: #CFC6DE; max-width: 520px; margin: 18px auto 30px; font-size: 18px; }

/* footer */
footer { border-top: 1px solid var(--border); padding: 48px 0 40px; margin-top: 40px; font-size: 14px; color: var(--muted); }
footer .wrap { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
footer nav { display: flex; gap: 24px; flex-wrap: wrap; }
footer a { text-decoration: none; color: var(--muted); }
footer a:hover { color: var(--text); }
.foot-note { max-width: 360px; margin-top: 12px; }

/* ---------- legal / doc pages ---------- */
.doc { padding: 64px 0 40px; }
.doc .wrap { max-width: 800px; }
.doc h1 { font-size: clamp(34px, 5vw, 52px); margin: 18px 0 10px; }
.doc .updated { color: var(--muted); font-size: 14px; margin-bottom: 40px; }
.doc h2 { font-size: 22px; margin: 44px 0 12px; letter-spacing: -0.02em; }
.doc h3 { font-size: 16px; margin: 24px 0 8px; font-family: var(--body); font-weight: 700; letter-spacing: 0; }
.doc p, .doc li { color: #D3CAE2; }
.doc ul { padding-left: 22px; }
.doc li { margin: 6px 0; }
.doc a { color: var(--accent); }
.doc .callout { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: 12px; padding: 18px 20px; margin: 24px 0; }
.doc .callout p { margin: 0; }
.doc table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 16px 0; display: block; overflow-x: auto; }
.doc th, .doc td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.doc th { color: var(--text); font-weight: 700; background: var(--surface); }
.doc td { color: #D3CAE2; }
.toc { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 20px 24px; }
.toc ol { margin: 8px 0 0; padding-left: 20px; columns: 2; column-gap: 32px; }
.toc a { color: var(--text); text-decoration: none; font-size: 14.5px; }
.toc a:hover { color: var(--accent); }

.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 32px 0; }
.support-grid .card h3 { font-family: var(--body); font-size: 17px; letter-spacing: 0; }
.support-grid .card a { color: var(--accent); font-weight: 700; text-decoration: none; }

/* ---------- motion ---------- */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bob { 0%, 100% { transform: translate(-50%, -50%) translateY(0); } 50% { transform: translate(-50%, -50%) translateY(-8px); } }
.float-card { animation-name: floaty; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes ping { 0% { transform: scale(1); opacity: .9; } 100% { transform: scale(3.4); opacity: 0; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes marquee { to { transform: translateX(-50%); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero .wrap, .how .wrap, .hosts .wrap { grid-template-columns: 1fr; gap: 56px; }
  .radar-wrap { margin: 0 auto; max-width: 460px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .safety .card.wide { grid-column: span 2; }
  section { padding: 84px 0; }
  .how .phone-col { order: 2; }
}
@media (max-width: 720px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(14, 11, 22, .97); border-bottom: 1px solid var(--border); padding: 8px 20px 20px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; width: 100%; font-size: 16px; border-bottom: 1px solid var(--border); }
  .nav-links .btn { margin-top: 16px; width: 100%; border: 0; }
  .nav-toggle { display: block; }
  .grid-3, .support-grid { grid-template-columns: 1fr; }
  .safety .card.wide { grid-column: auto; grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
  .eyebrow { font-size: 11px; letter-spacing: .05em; }
  .fc-1 { left: 0; bottom: 2%; }
  .fc-2 { right: 0; top: 0; }
  .float-card { min-width: 0; font-size: 12px; padding: 10px 12px; }
  .cta-box { padding: 56px 22px; border-radius: 24px; }
  .toc ol { columns: 1; }
  section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
}
