/* ============================================================
   Caribbean Radio — Landing "ON AIR" (v2)
   A fresh editorial concept built on the Coastal Editorial
   tokens (colors_and_type.css). Real in-app screens are shown as
   transparent PNG exports in mockups/. Light + Dark. Accent swappable.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; }

/* -------------------- LANDING-LAYER VARIABLES -------------------- */
:root {
  --accent:      #e8b422;        /* gold (default) */
  --accent-2:    #d9a017;
  --accent-ink:  #241a02;
  --live:        #d9542a;        /* terracotta = LIVE */

  --lp-bg:       #f7f1e8;        /* warm sand */
  --lp-bg-2:     #fffdf9;
  --lp-panel:    #efe6d6;        /* tinted band */
  --lp-ink:      #173a41;        /* headings — deep teal */
  --lp-ink-2:    #3c4a4c;
  --lp-muted:    #6f7a7b;
  --lp-surface:  #ffffff;
  --lp-surface-2:#f3ebdd;
  --lp-border:   #e6dac6;
  --lp-hairline: rgba(23,58,65,.10);
  --lp-glow: radial-gradient(48% 42% at 86% -4%, rgba(232,180,34,.18), transparent 70%),
             radial-gradient(46% 40% at -6% 6%, rgba(0,119,139,.16), transparent 72%);
  --shadow-lp:   0 24px 60px -26px rgba(31,40,40,.28);
  --shadow-soft: 0 12px 34px -18px rgba(31,40,40,.24);
  --shadow-phone:0 44px 96px -34px rgba(8,21,26,.5);
}
[data-theme="dark"] {
  --lp-bg:       #07141a;
  --lp-bg-2:     #0a1a20;
  --lp-panel:    #0d1f26;
  --lp-ink:      #f6e5d3;
  --lp-ink-2:    #dccdb9;
  --lp-muted:    #8ba0a2;
  --lp-surface:  #102229;
  --lp-surface-2:#0c1c22;
  --lp-border:   rgba(217,190,161,.14);
  --lp-hairline: rgba(217,190,161,.10);
  --lp-glow: radial-gradient(52% 44% at 86% -6%, rgba(232,180,34,.22), transparent 70%),
             radial-gradient(54% 46% at -6% 4%, rgba(0,119,139,.34), transparent 72%);
  --shadow-lp:   0 30px 70px -30px rgba(0,0,0,.7);
  --shadow-soft: 0 16px 40px -22px rgba(0,0,0,.6);
  --shadow-phone:0 54px 120px -34px rgba(0,0,0,.8);
}
html.accent-sage { --accent:#7bcab0; --accent-2:#5fb89b; --accent-ink:#06201a; }
html.accent-teal { --accent:#00a7c2; --accent-2:#0090a8; --accent-ink:#03242a; }

/* -------------------- BASE -------------------- */
body {
  font-family: var(--font-regular);
  background: var(--lp-bg);
  color: var(--lp-ink-2);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
svg { display: block; }
::selection { background: var(--accent); color: var(--accent-ink); }

.wrap { width: min(1200px, 100% - 48px); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-bold); font-weight: 700;
  font-size: 12px; letter-spacing: 2.6px; text-transform: uppercase; color: var(--accent);
}
.eyebrow::before { content:""; width: 22px; height: 2px; border-radius: 2px; background: var(--accent); }
.sec-head--center .eyebrow { justify-content: center; }
h1, h2, h3 { color: var(--lp-ink); font-family: var(--font-bold); margin: 0; line-height: 1.04; }
.grad-word { background: linear-gradient(96deg, var(--accent) 0%, #7bcab0 96%);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { color: var(--lp-muted); font-size: 18px; line-height: 1.62; }
section { position: relative; }

/* reveal */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal[data-d="1"]{ transition-delay:.08s; }
html.js .reveal[data-d="2"]{ transition-delay:.16s; }
html.js .reveal[data-d="3"]{ transition-delay:.24s; }
@media (prefers-reduced-motion: reduce){ html.js .reveal{opacity:1;transform:none;transition:none;} }
.no-anim .marquee-track, .no-anim .float-chip, .no-anim .hero-pill .dot, .no-anim .eq span, .no-anim .on-air-ring { animation: none !important; }

/* -------------------- BUTTONS / STORES -------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 54px; padding: 0 28px; border: 0; border-radius: var(--r-pill);
  font-family: var(--font-bold); font-weight: 700; font-size: 16px; letter-spacing: .2px;
  background: var(--accent); color: var(--accent-ink);
  transition: transform .18s ease, box-shadow .25s ease, filter .2s ease;
  box-shadow: 0 14px 32px -14px color-mix(in srgb, var(--accent) 70%, transparent);
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--lp-ink); box-shadow: inset 0 0 0 1.5px var(--lp-border); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--accent); filter: none; }
.btn--sm { height: 44px; padding: 0 20px; font-size: 14px; }

.stores { display: flex; flex-wrap: wrap; gap: 14px; }
.store {
  display: inline-flex; align-items: center; gap: 12px;
  height: 60px; padding: 0 22px 0 18px; border-radius: 16px;
  background: var(--lp-ink); color: var(--lp-bg);
  box-shadow: var(--shadow-soft); transition: transform .18s ease, filter .2s;
}
[data-theme="dark"] .store { background: #f6e5d3; color: #0c1c22; }
.store:hover { transform: translateY(-2px); }
.store svg { width: 26px; height: 26px; flex: none; }
.store > span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.store .s-top { font-size: 10.5px; letter-spacing: .6px; text-transform: uppercase; opacity: .72; font-family: var(--font-medium); display: block; margin-bottom: 2px; }
.store .s-big { font-family: var(--font-bold); font-weight: 700; font-size: 18px; line-height: 1.05; letter-spacing: .2px; display: block; }
.store-note { font-size: 12.5px; color: var(--lp-muted); margin-top: 14px; display:flex; gap:7px; align-items:center; }
.store-note b { color: var(--accent); }

/* -------------------- TOP BAR -------------------- */
.topbar { position: sticky; top: 0; z-index: 60; transition: background .3s ease, box-shadow .3s ease; }
.topbar.stuck { background: color-mix(in srgb, var(--lp-bg) 82%, transparent); backdrop-filter: blur(16px) saturate(1.2); box-shadow: 0 1px 0 var(--lp-hairline); }
.topbar .wrap { display: flex; align-items: center; gap: 20px; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .blogo { height: 46px; width: auto; display: block; }
.foot-about .blogo, .blogo.foot-logo { height: 56px; }
.brand .wm { line-height: 1; }
.brand .wm b { font-family: var(--font-bold); font-weight: 800; color: var(--lp-ink); font-size: 16px; letter-spacing: .2px; }
.brand .wm span { display: block; font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--lp-muted); margin-top: 3px; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.nav a.navlink { font-family: var(--font-medium); font-weight: 500; font-size: 14.5px; color: var(--lp-ink-2); transition: color .2s; }
.nav a.navlink:hover { color: var(--accent); }
.theme-toggle { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--lp-surface-2); box-shadow: inset 0 0 0 1px var(--lp-border); color: var(--lp-ink); }
.theme-toggle svg { width: 18px; height: 18px; }
@media (max-width: 880px){ .nav .navlink { display: none; } }

/* -------------------- HERO -------------------- */
.hero { padding: 40px 0 60px; }
.hero::before { content:""; position: absolute; inset: -120px 0 auto 0; height: 760px; background: var(--lp-glow); pointer-events: none; z-index: 0; }
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: 40px; align-items: center; }

.hero-pill { display: inline-flex; align-items: center; gap: 9px; height: 34px; padding: 0 15px 0 11px; border-radius: var(--r-pill); background: var(--lp-surface); box-shadow: inset 0 0 0 1px var(--lp-border); font-size: 12.5px; font-family: var(--font-medium); color: var(--lp-ink-2); margin-bottom: 26px; }
.hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 4px color-mix(in srgb, var(--live) 30%, transparent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.35;} }
.hero h1 { font-size: clamp(42px, 6.4vw, 76px); font-weight: 900; letter-spacing: -1.6px; color: var(--lp-ink); }
.hero h1 em { font-style: italic; }
.hero .lead { margin: 24px 0 30px; max-width: 31em; }
.hero .stores { margin-bottom: 14px; }

.hero-proof { display: flex; align-items: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.avatars { display: flex; }
.avatars span { width: 38px; height: 38px; border-radius: 50%; margin-left: -10px; box-shadow: 0 0 0 2.5px var(--lp-bg); background-size: cover; }
.avatars span:first-child { margin-left: 0; }
.stars { color: var(--accent); display: inline-flex; gap: 2px; align-items: center; }
.hero-proof .pf-txt { font-size: 13px; color: var(--lp-muted); }
.hero-proof .pf-txt b { color: var(--lp-ink); font-family: var(--font-bold); }

/* hero stage — single live phone + chips + on-air ring */
.hero-stage { position: relative; height: 640px; display: flex; align-items: center; justify-content: center; }
.hero-stage .halo { position:absolute; width: 480px; height: 480px; border-radius: 50%; background: var(--scene-music); opacity: .42; filter: blur(8px); z-index: 0; }
.on-air-ring { position:absolute; width: 430px; height: 430px; border-radius:50%; border: 1.5px dashed color-mix(in srgb, var(--accent) 55%, transparent); z-index:0; animation: spin 60s linear infinite; }
.on-air-ring::after { content:""; position:absolute; top:-6px; left:50%; width:11px; height:11px; border-radius:50%; background: var(--accent); box-shadow: 0 0 16px var(--accent); transform: translateX(-50%); }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-stage .device { position: relative; z-index: 3; transform: rotate(-2deg); }

/* real app-shot phones (transparent PNG exports of the actual tabs) */
.appshot { position: relative; display: block; line-height: 0; }
.appshot .ph { display: block; width: 100%; height: auto; filter: drop-shadow(0 34px 54px rgba(8,21,26,.55)); }
.appshot .ph-light { display: none; }
html:not([data-theme="dark"]) .appshot .ph-dark { display: none; }
html:not([data-theme="dark"]) .appshot .ph-light { display: block; }
.appshot--hero { position: relative; z-index: 3; width: 264px; transform: rotate(-2deg); }

.float-chip { position: absolute; z-index: 6; background: var(--lp-surface); color: var(--lp-ink); box-shadow: var(--shadow-soft), inset 0 0 0 1px var(--lp-border); border-radius: 16px; padding: 12px 15px; display: flex; align-items: center; gap: 11px; font-size: 13px; font-family: var(--font-medium); }
.float-chip b { font-family: var(--font-bold); }
.float-chip .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; color:#fff; }
.float-chip small { display: block; color: var(--lp-muted); font-size: 11px; }
.float-chip.c1 { top: 58px; left: -6px; animation: floaty 6s ease-in-out infinite; }
.float-chip.c2 { bottom: 150px; right: -18px; animation: floaty 7s ease-in-out infinite reverse; }
.float-chip.c3 { bottom: 48px; left: 10px; animation: floaty 6.6s ease-in-out infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
/* mini equalizer in a chip */
.eq { display:flex; align-items:flex-end; gap:2px; height:18px; }
.eq span { width:3px; background: var(--accent); border-radius:2px; animation: eq 1s ease-in-out infinite; }
.eq span:nth-child(1){ height:40%; animation-delay:0s; }
.eq span:nth-child(2){ height:90%; animation-delay:.2s; }
.eq span:nth-child(3){ height:60%; animation-delay:.4s; }
.eq span:nth-child(4){ height:100%; animation-delay:.1s; }
@keyframes eq { 0%,100%{ transform: scaleY(.4); } 50%{ transform: scaleY(1);} }

/* -------------------- STAT BAND -------------------- */
.statband { border-block: 1px solid var(--lp-hairline); background: var(--lp-bg-2); }
.statband .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.statband .st { padding: 34px 24px; text-align: center; position: relative; }
.statband .st + .st::before { content:""; position:absolute; left:0; top:24px; bottom:24px; width:1px; background: var(--lp-hairline); }
.statband .st b { display:block; font-family: var(--font-bold); font-weight:900; font-size: clamp(30px, 3.4vw, 42px); color: var(--lp-ink); letter-spacing:-1px; }
.statband .st b em { font-style: normal; color: var(--accent); }
.statband .st span { font-size: 12.5px; letter-spacing: .4px; color: var(--lp-muted); margin-top: 4px; display:block; }

/* -------------------- MARQUEE -------------------- */
.marquee { padding: 22px 0; overflow: hidden; }
.marquee .lbl { text-align: center; font-size: 11px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--lp-muted); margin-bottom: 16px; }
.marquee-track { display: flex; gap: 46px; width: max-content; animation: slide 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .country { display: flex; align-items: center; gap: 12px; font-family: var(--font-bold); font-weight: 700; font-size: 21px; color: var(--lp-ink); opacity: .42; white-space: nowrap; }
.marquee-track .country .fl { width: 26px; height: 18px; border-radius: 3px; flex: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.15); }
@keyframes slide { to { transform: translateX(-50%); } }

/* -------------------- SECTION HEADERS -------------------- */
.sec { padding: 100px 0; }
.sec-head { max-width: 760px; margin-bottom: 60px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(32px, 4.6vw, 50px); font-weight: 900; letter-spacing: -.8px; margin-top: 16px; }
.sec-head .lead { margin-top: 20px; }
.sec-head--center .lead { margin-inline: auto; }

/* -------------------- SCENARIOS (device-in-card grid) -------------------- */
.scenarios { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.scn {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  background: var(--lp-surface); box-shadow: var(--shadow-lp), inset 0 0 0 1px var(--lp-border);
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 8px;
  padding: 30px 30px 30px 34px; min-height: 360px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.scn:hover { transform: translateY(-5px); box-shadow: var(--shadow-lp), inset 0 0 0 1px color-mix(in srgb, var(--accent) 40%, var(--lp-border)); }
.scn .scn-copy { position: relative; z-index: 2; }
.scn .tag { display:inline-flex; align-items:center; gap:7px; font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; font-family: var(--font-bold); color: var(--accent); margin-bottom: 14px; }
.scn .tag .d { width:7px; height:7px; border-radius:50%; background: currentColor; }
.scn .tag.live-tag { color: var(--live); }
.scn h3 { font-size: 27px; font-weight: 800; margin-bottom: 10px; }
.scn p { font-size: 14.5px; color: var(--lp-muted); margin: 0 0 18px; max-width: 24em; }
.scn .scn-feats { list-style:none; margin:0; padding:0; display:grid; gap:9px; }
.scn .scn-feats li { display:flex; gap:9px; align-items:center; font-size: 13.5px; color: var(--lp-ink-2); }
.scn .scn-feats .ic { width:20px; height:20px; border-radius:50%; flex:none; display:grid; place-items:center; background: color-mix(in srgb, #7bcab0 22%, transparent); color:#3a8f74; }
[data-theme="dark"] .scn .scn-feats .ic { color:#7bcab0; }
.scn .scn-feats .ic svg { width:11px; height:11px; }
/* real app-shot phone peeking from the right of each card */
.scn .scn-phone { position: relative; height: 440px; display:flex; align-items:center; justify-content:center; }
.scn .scn-phone .appshot { width: 232px; transform: translateY(34px) rotate(3deg); }
.scn:nth-child(even) .scn-phone .appshot { transform: translateY(34px) rotate(-3deg); }
.scn .scn-glow { position:absolute; width: 260px; height: 260px; border-radius:50%; right: -40px; top: -60px; opacity:.5; filter: blur(6px); z-index:0; }

/* -------------------- CONSTELLATION -------------------- */
.constellation { background: var(--lp-bg-2); }
.constellation::before { content:""; position:absolute; inset:0; background: var(--lp-glow); opacity:.7; pointer-events:none; }
.cst-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; position: relative; z-index:1; }
.cst-col { display: grid; gap: 40px; }
.cst-mid { position: relative; display:flex; align-items:center; justify-content:center; }
.cst-mid .halo2 { position:absolute; width: 360px; height: 360px; border-radius:50%; background: var(--scene-sport); opacity:.4; filter: blur(10px); }
.cst-mid .device { position: relative; z-index:2; }
.cst-mid .appshot--cst { position: relative; z-index:2; width: 248px; }
.feat { display:flex; flex-direction: column; gap: 10px; }
.cst-col--r .feat { text-align: right; align-items: flex-end; }
.feat .f-ic { width: 50px; height: 50px; border-radius: 15px; display:grid; place-items:center; color:#fff; box-shadow: var(--shadow-soft); }
.feat .f-ic svg { width: 24px; height: 24px; }
.feat h4 { font-family: var(--font-bold); font-weight: 800; font-size: 18px; color: var(--lp-ink); margin: 0; }
.feat p { font-size: 13.5px; color: var(--lp-muted); margin: 0; max-width: 22em; }

/* -------------------- STEPS TIMELINE -------------------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.steps::before { content:""; position:absolute; top: 34px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--lp-border) 0 8px, transparent 8px 16px); z-index:0; }
.step { position: relative; z-index:1; text-align: center; padding: 0 14px; }
.step .node { width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 22px; display:grid; place-items:center; background: var(--lp-surface); box-shadow: var(--shadow-soft), inset 0 0 0 1.5px var(--lp-border); font-family: var(--font-bold); font-weight:900; font-size: 24px; color: var(--accent); position: relative; }
.step .node::after { content:""; position:absolute; inset:-6px; border-radius:50%; border:1.5px solid color-mix(in srgb, var(--accent) 30%, transparent); }
.step h3 { font-size: 21px; font-weight: 800; margin-bottom: 9px; }
.step p { font-size: 14.5px; color: var(--lp-muted); margin: 0 auto; max-width: 22em; }
@media (max-width: 820px){ .steps::before { display:none; } }

/* -------------------- TESTIMONIALS -------------------- */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.t-card { padding: 30px; border-radius: var(--r-lg); background: var(--lp-surface); box-shadow: var(--shadow-soft), inset 0 0 0 1px var(--lp-border); display: flex; flex-direction: column; }
.t-card .stars { margin-bottom: 16px; }
.t-card blockquote { margin: 0 0 22px; font-size: 16px; line-height: 1.6; color: var(--lp-ink); font-family: var(--font-medium); }
.t-card .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.t-card .who .av { width: 44px; height: 44px; border-radius: 50%; flex: none; }
.t-card .who b { display: block; color: var(--lp-ink); font-family: var(--font-bold); font-size: 15px; }
.t-card .who span { font-size: 12.5px; color: var(--lp-muted); display:flex; align-items:center; gap:5px; }

/* -------------------- PRICING -------------------- */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin-inline: auto; }
.plan { border-radius: var(--r-lg); padding: 40px 36px; background: var(--lp-surface); box-shadow: inset 0 0 0 1px var(--lp-border); position: relative; }
.plan.hot { background: linear-gradient(160deg, color-mix(in srgb, var(--primary) 22%, var(--lp-surface)), var(--lp-surface)); box-shadow: var(--shadow-lp), inset 0 0 0 1.5px var(--accent); }
.plan .badge { position: absolute; top: 22px; right: 24px; background: var(--accent); color: var(--accent-ink); font-family: var(--font-bold); font-weight: 700; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: var(--r-pill); }
.plan .pname { font-family: var(--font-bold); font-weight: 800; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); }
.plan .price { font-family: var(--font-bold); font-weight: 900; font-size: 52px; color: var(--lp-ink); margin: 16px 0 4px; letter-spacing: -1px; }
.plan .price span { font-size: 16px; font-weight: 500; color: var(--lp-muted); letter-spacing: 0; }
.plan .psub { color: var(--lp-muted); font-size: 14px; margin: 0 0 24px; }
.plan ul { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 13px; }
.plan li { display: flex; gap: 11px; font-size: 15px; align-items: flex-start; }
.plan li .ic { width: 22px; height: 22px; border-radius: 50%; flex: none; display: grid; place-items: center; background: color-mix(in srgb, #7bcab0 20%, transparent); color: #3a8f74; margin-top: 1px; }
[data-theme="dark"] .plan li .ic { color:#7bcab0; }
.plan .btn { width: 100%; }
.plan-note { text-align: center; color: var(--lp-muted); font-size: 13.5px; margin-top: 26px; }

/* -------------------- FAQ -------------------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq { border-radius: var(--r-md); background: var(--lp-surface); box-shadow: inset 0 0 0 1px var(--lp-border); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; gap: 16px; font-family: var(--font-bold); font-weight: 700; color: var(--lp-ink); font-size: 16.5px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { margin-left: auto; width: 26px; height: 26px; flex: none; position: relative; color: var(--accent); }
.faq summary .pm::before, .faq summary .pm::after { content:""; position:absolute; background: currentColor; border-radius: 2px; }
.faq summary .pm::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.faq summary .pm::after { left: 12px; top: 4px; bottom: 4px; width: 2px; transition: opacity .3s; }
.faq[open] summary .pm::after { opacity: 0; }
.faq .ans { padding: 0 26px 24px; color: var(--lp-muted); font-size: 15px; line-height: 1.65; }
.faq .ans b { color: var(--lp-ink); }

/* -------------------- FINAL CTA -------------------- */
.final { padding: 30px 0 100px; }
.final-card { border-radius: var(--r-xl); padding: 66px 58px; position: relative; overflow: hidden; background: linear-gradient(135deg, #0c3138 0%, #08151a 70%); box-shadow: var(--shadow-lp); }
[data-theme="dark"] .final-card { box-shadow: var(--shadow-lp), inset 0 0 0 1px var(--lp-border); }
.final-card::before { content:""; position:absolute; inset:0; background:
  radial-gradient(48% 78% at 100% 0%, rgba(232,180,34,.3), transparent 60%),
  radial-gradient(58% 88% at 0% 100%, rgba(0,167,194,.32), transparent 60%); }
.final-card > * { position: relative; }
.final-card h2 { color: #f6e5d3; font-size: clamp(32px, 4.4vw, 50px); font-weight: 900; letter-spacing: -.7px; max-width: 15em; }
.final-card .lead { color: #cdbfae; margin: 18px 0 32px; max-width: 34em; }
.final-card .stores { margin-bottom: 38px; }
.final-card .store { background: #f6e5d3; color: #0c1c22; }
.news { border-top: 1px solid rgba(246,229,211,.14); padding-top: 30px; max-width: 540px; }
.news label { display: block; color: #f6e5d3; font-family: var(--font-bold); font-weight: 700; margin-bottom: 6px; }
.news p { color: #a9b9ba; font-size: 13.5px; margin: 0 0 16px; }
.news form { display: flex; gap: 10px; }
.news input { flex: 1; height: 52px; border: 0; border-radius: var(--r-pill); padding: 0 22px; font: inherit; font-size: 15px; background: rgba(246,229,211,.08); color: #f6e5d3; box-shadow: inset 0 0 0 1px rgba(246,229,211,.18); }
.news input::placeholder { color: #8aa0a3; }
.news input:focus { outline: none; box-shadow: inset 0 0 0 1.5px var(--accent); }
.news .btn { flex: none; }

/* -------------------- FOOTER -------------------- */
footer { border-top: 1px solid var(--lp-hairline); padding: 60px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
.foot-grid .col h4 { font-family: var(--font-bold); font-weight: 700; color: var(--lp-ink); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin: 0 0 16px; }
.foot-grid .col a { display: block; color: var(--lp-muted); font-size: 14.5px; margin-bottom: 11px; transition: color .2s; }
.foot-grid .col a:hover { color: var(--accent); }
.foot-about p { color: var(--lp-muted); font-size: 14px; margin: 16px 0 0; max-width: 30ch; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--lp-hairline); }
.foot-bottom p { color: var(--lp-muted); font-size: 13px; margin: 0; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--lp-surface-2); color: var(--lp-ink-2); box-shadow: inset 0 0 0 1px var(--lp-border); transition: .2s; }
.socials a:hover { color: var(--accent); transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; }

/* -------------------- MOBILE NAV -------------------- */
.menu-btn {
  display: none; width: 44px; height: 44px; border: 0; border-radius: 50%;
  background: var(--lp-surface-2); box-shadow: inset 0 0 0 1px var(--lp-border);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  flex: none; padding: 0;
}
.menu-btn span { display: block; width: 16px; height: 2px; border-radius: 2px; background: var(--lp-ink); transition: transform .25s ease; }
body.menu-open .menu-btn span:first-child { transform: translateY(3.5px) rotate(45deg); }
body.menu-open .menu-btn span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.m-menu { display: none; }

/* -------------------- RESPONSIVE -------------------- */
/* anchored sections clear the sticky topbar */
section[id] { scroll-margin-top: 86px; }

/* ---- tablet ---- */
@media (max-width: 1000px){
  .hero .wrap { grid-template-columns: 1fr; gap: 10px; }
  .hero-stage { height: 560px; margin-top: 6px; }
  .scenarios { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr 1fr; }
  .t-card:last-child { grid-column: 1 / -1; }
  .cst-grid { grid-template-columns: 1fr; }
  .cst-col { grid-auto-flow: row; }
  .cst-col--r .feat { text-align: left; align-items: flex-start; }
  .cst-mid { order: -1; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

/* ---- nav collapses: hamburger + slide-down menu ---- */
@media (max-width: 880px){
  .topbar .wrap { height: 64px; gap: 12px; }
  .topbar.stuck, body.menu-open .topbar { background: color-mix(in srgb, var(--lp-bg) 94%, transparent); backdrop-filter: blur(16px) saturate(1.2); }
  body.menu-open .topbar { box-shadow: 0 1px 0 var(--lp-hairline); }
  .brand .blogo { height: 38px; }
  .brand .wm b { font-size: 15px; }
  .nav { gap: 10px; }
  .btn--sm { height: 40px; padding: 0 16px; font-size: 13px; }
  .menu-btn { display: inline-flex; }
  .m-menu {
    display: grid; position: absolute; top: 100%; left: 0; right: 0;
    padding: 8px 20px 20px; background: var(--lp-bg);
    box-shadow: 0 1px 0 var(--lp-hairline), 0 28px 44px -28px rgba(8,21,26,.4);
    opacity: 0; transform: translateY(-10px); pointer-events: none; visibility: hidden;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .m-menu a:not(.btn) {
    display: flex; align-items: center; min-height: 52px; padding: 0 4px;
    font-family: var(--font-medium); font-weight: 500; font-size: 16px; color: var(--lp-ink);
    border-bottom: 1px solid var(--lp-hairline);
  }
  .m-menu .btn { margin-top: 16px; }
  body.menu-open .m-menu { opacity: 1; transform: none; pointer-events: auto; visibility: visible; }
}

/* ---- small tablet ---- */
@media (max-width: 820px){
  .steps { grid-template-columns: 1fr; gap: 34px; max-width: 480px; margin-inline: auto; }
  .t-grid { grid-template-columns: 1fr; }
  .t-card:last-child { grid-column: auto; }
}

/* ---- phone ---- */
@media (max-width: 660px){
  .wrap { width: calc(100% - 32px); }
  .sec { padding: 64px 0; }
  .sec-head { margin-bottom: 40px; }
  .lead { font-size: 16px; }

  /* hero */
  .hero { padding: 16px 0 36px; }
  .hero h1 { font-size: clamp(36px, 10.5vw, 46px); letter-spacing: -1px; }
  .hero-pill { height: auto; min-height: 34px; padding: 7px 14px 7px 11px; line-height: 1.4; font-size: 12px; margin-bottom: 20px; }
  .hero .lead { margin: 18px 0 24px; }
  .stores { gap: 10px; }
  .store { flex: 1 1 150px; justify-content: center; height: 56px; padding: 0 14px; }
  .hero-proof { margin-top: 24px; gap: 13px; }

  .hero-stage { height: 480px; margin-top: 20px; }
  .hero-stage .halo { width: 320px; height: 320px; }
  .on-air-ring { width: 302px; height: 302px; }
  .appshot--hero { width: 212px; }
  .float-chip { padding: 9px 12px; font-size: 12px; border-radius: 13px; gap: 9px; }
  .float-chip .ic { width: 28px; height: 28px; border-radius: 8px; }
  .float-chip small { font-size: 10.5px; }
  .float-chip.c1 { top: 26px; left: 0; }
  .float-chip.c2 { bottom: 138px; right: 0; }
  .float-chip.c3 { bottom: 18px; left: 4px; }
  .eq { height: 15px; }

  /* stat band */
  .statband .wrap { grid-template-columns: 1fr 1fr; }
  .statband .st { padding: 22px 12px; }
  .statband .st + .st::before { display: none; }
  .statband .st:nth-child(even)::before { display: block; top: 18px; bottom: 18px; }
  .statband .st:nth-child(n+3)::after { content: ""; position: absolute; left: 18px; right: 18px; top: 0; height: 1px; background: var(--lp-hairline); }

  /* marquee */
  .marquee { padding: 16px 0; }
  .marquee-track { gap: 32px; }
  .marquee-track .country { font-size: 17px; gap: 9px; }
  .marquee-track .country .fl { width: 22px; height: 15px; }

  /* scenarios */
  .scenarios { gap: 18px; }
  .scn { grid-template-columns: 1fr; padding: 26px 22px 0; min-height: 0; gap: 6px; }
  .scn h3 { font-size: 23px; }
  .scn p { font-size: 14px; max-width: none; }
  .scn .scn-phone { height: 330px; }
  .scn .scn-phone .appshot, .scn:nth-child(even) .scn-phone .appshot { transform: translateY(30px) rotate(0); width: 208px; }
  .scn .scn-glow { width: 200px; height: 200px; right: -60px; top: -70px; }

  /* constellation features */
  .cst-grid { gap: 36px; }
  .cst-mid .halo2 { width: 280px; height: 280px; }
  .cst-mid .appshot--cst { width: 212px; }
  .cst-col { gap: 22px; }
  .feat { display: grid; grid-template-columns: 42px 1fr; column-gap: 14px; row-gap: 5px; align-items: start; }
  .feat .f-ic { grid-row: 1 / span 2; width: 42px; height: 42px; border-radius: 12px; }
  .feat .f-ic svg { width: 20px; height: 20px; }
  .feat h4 { font-size: 16.5px; }
  .feat p { max-width: none; }

  /* steps */
  .step .node { width: 56px; height: 56px; font-size: 20px; margin-bottom: 14px; }
  .step h3 { font-size: 19px; }

  /* testimonials */
  .t-grid { gap: 14px; }
  .t-card { padding: 24px 22px; }
  .t-card blockquote { font-size: 15px; }

  /* plans */
  .plans { grid-template-columns: 1fr; gap: 18px; }
  .plan { padding: 30px 24px; }
  .plan .price { font-size: 44px; }
  .plan .badge { top: 18px; right: 18px; }
  .plan-note { font-size: 12.5px; }

  /* faq */
  .faq summary { padding: 18px; font-size: 15.5px; gap: 12px; }
  .faq .ans { padding: 0 18px 20px; font-size: 14.5px; }

  /* final cta */
  .final { padding: 10px 0 64px; }
  .final-card { padding: 44px 24px; border-radius: var(--r-lg); }
  .final-card .stores { margin-bottom: 30px; }
  .news form { flex-direction: column; gap: 12px; }
  .news .btn { width: 100%; }

  /* footer */
  footer { padding: 48px 0 32px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
  .foot-about { grid-column: 1 / -1; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 36px; }
}

/* ---- small phone ---- */
@media (max-width: 420px){
  .wrap { width: calc(100% - 28px); }
  .nav .btn--sm { display: none; } /* download lives in the menu + hero right below */
  .hero h1 { font-size: clamp(32px, 11.5vw, 38px); }
  .store { flex-basis: 100%; }
  .hero-stage { height: 450px; }
  .appshot--hero { width: 198px; }
  .hero-stage .halo { width: 280px; height: 280px; }
  .on-air-ring { width: 264px; height: 264px; }
  .float-chip.c2 { bottom: 124px; }
  .statband .st b { font-size: 27px; }
  .final-card h2 { font-size: 28px; }
}
