/* ═════════════════════════════════════════════════════════
   Broadway · Onboarding Landing Page Styles
   ═════════════════════════════════════════════════════════ */

:root {
  --bg: #0a0a0a;
  --bg-2: #131313;
  --bg-3: #1a1a1a;
  --ink: #f4efe6;
  --ink-dim: #8a8278;
  --ink-faint: #4a463f;
  --rule: #1d1d1d;
  --rule-2: #2a2a2a;
  --accent: #b366ff;
  --warm: #f0c674;
  --good: #3ecf8e;
  --shadow-card: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── custom scrollbar ── */
html { scrollbar-width: thin; scrollbar-color: #2a2a2a transparent; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: rgba(10,10,10,0.5); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--warm));
  border-radius: 999px;
  border: 3px solid rgba(10,10,10,0.7);
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
  border: 2px solid rgba(10,10,10,0.6);
  background-clip: padding-box;
}
html, body { background: var(--bg); color: var(--ink); font-family: 'Assistant', system-ui, sans-serif; overflow-x: hidden; }
body { min-height: 100vh; -webkit-font-smoothing: antialiased; direction: rtl; }
main, footer.foot, .stats-strip { position: relative; z-index: 2; }
header.topbar { z-index: 50; }

/* ── full-page video background (scrolls with content) ── */
.video-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.30;
  filter: saturate(0.6) brightness(0.45);
}
.video-overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.15) 30%, rgba(10,10,10,0.15) 70%, rgba(10,10,10,0.3) 100%);
  pointer-events: none;
}

/* ── mouse spotlight ── */
.mouse-spot {
  position: fixed; z-index: 3;
  width: 420px; height: 420px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle at center,
    rgba(255,245,220,0.10) 0%,
    rgba(179,102,255,0.06) 30%,
    transparent 65%);
  transform: translate(-50%, -50%);
  transition: left 0.15s ease-out, top 0.15s ease-out, opacity 0.3s ease;
  opacity: 0;
  mix-blend-mode: screen;
}
.mouse-spot.on { opacity: 1; }

/* ── grain + vignette ── */
.grain {
  pointer-events: none; position: fixed; inset: 0; z-index: 100;
  opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.vignette {
  pointer-events: none; position: fixed; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 50% 55%, transparent 45%, rgba(0,0,0,0.6) 100%);
}

/* ── topbar ── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 28px; gap: 24px;
  background: linear-gradient(180deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0) 100%);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  font-weight: 800; font-size: 22px; letter-spacing: -0.025em;
}
.logo .mark { width: 36px; height: 36px; flex: none; }
.logo small {
  color: var(--ink-dim); font-weight: 500; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-right: 4px; padding-right: 10px; border-right: 1px solid var(--rule-2);
}

nav.toolbar {
  display: flex; gap: 2px;
  background: rgba(20,20,20,0.65); border: 1px solid var(--rule);
  border-radius: 999px; padding: 5px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
nav.toolbar a {
  font-family: 'Assistant', sans-serif; font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; padding: 9px 14px;
  border-radius: 999px; transition: all 0.2s ease; white-space: nowrap;
}
nav.toolbar a:hover { background: var(--ink); color: var(--bg); }

.cta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; background: var(--accent); border: 1px solid var(--accent);
  padding: 10px 18px; border-radius: 999px; cursor: pointer;
  font-family: 'Assistant', sans-serif;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 10.5px;
  text-decoration: none; transition: all 0.2s ease; font-weight: 500;
}
.cta-pill:hover { background: #fff; color: var(--accent); border-color: #fff; }

/* ── BROADWAY hero stage ── */
.stage {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--bg);
  z-index: 2;
}
.skyline-bg {
  display: none;
}
.filled {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  opacity: 0; transition: opacity 0.5s ease;
}
.filled.on { opacity: 1; }
.filled svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.filled text { fill: var(--ink); transition: filter 0.8s ease; }
.filled.glow text {
  filter: drop-shadow(0 0 12px rgba(255, 245, 220, 0.55)) drop-shadow(0 0 30px rgba(255, 220, 160, 0.35));
}
/* ambient glow behind wordmark */
.stage-glow {
  position: absolute; z-index: 3;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60vw; height: 40vh;
  background: radial-gradient(ellipse at center,
    rgba(179,102,255,0.12) 0%,
    rgba(240,198,116,0.06) 40%,
    transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.stage-caption {
  position: absolute; bottom: 28%; left: 50%; transform: translateX(-50%);
  z-index: 6; text-align: center; max-width: 760px; padding: 0 24px;
}
.stage-caption h2 {
  margin: 0 0 20px; font-weight: 400;
  font-size: clamp(18px, 1.7vw, 24px); letter-spacing: -0.01em;
  color: var(--ink); text-wrap: balance; line-height: 1.4;
}
.stage-scroll {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Assistant', sans-serif; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-dim);
  text-decoration: none;
  animation: bobDown 2s ease-in-out infinite;
  transition: color 0.2s ease;
}
.stage-scroll:hover { color: var(--ink); }
@keyframes bobDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ── shared section styling ── */
section.page {
  position: relative; padding: 120px 28px; border-top: 1px solid rgba(255,255,255,0.04);
  background: transparent;
}
section.page .container { max-width: 1280px; margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Assistant', sans-serif;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.eyebrow::after {
  content: ''; width: 28px; height: 1px; background: var(--accent);
}
.section-title {
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.04em;
  line-height: 1.05; margin: 0 0 20px; text-wrap: balance;
}
.section-title em {
  font-family: 'Assistant', sans-serif; font-style: italic;
  font-weight: 500; color: var(--warm);
}
.section-lead {
  font-size: clamp(16px, 1.4vw, 20px); line-height: 1.5;
  color: var(--ink-dim); max-width: 620px; text-wrap: pretty;
}

/* ── hero section ── */
.hero-section {
  position: relative; padding: 140px 28px 100px;
  background: transparent;
}
.hero-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center;
}
.hero-content { display: grid; gap: 28px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(179,102,255,0.12); border: 1px solid rgba(179,102,255,0.25);
  font-family: 'Assistant', sans-serif; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
}
.hero-badge svg { width: 14px; height: 14px; flex: none; }

.hero-title {
  font-weight: 800; font-size: clamp(42px, 5.5vw, 72px);
  letter-spacing: -0.04em; line-height: 0.95; margin: 0;
}
.hero-title .line1 {
  display: inline-block;
  background: linear-gradient(135deg, var(--ink) 60%, var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .line2 {
  font-family: 'Assistant', sans-serif; font-style: italic;
  font-weight: 700; color: var(--warm);
}

.hero-lead {
  font-size: clamp(16px, 1.3vw, 19px); line-height: 1.55;
  color: var(--ink-dim); max-width: 520px; text-wrap: pretty;
}

.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 14px;
  background: var(--accent); color: #fff; border: none;
  font: inherit; font-weight: 600; font-size: 16px;
  cursor: pointer; transition: all 0.2s ease; text-decoration: none;
}
.btn-primary:hover { background: #fff; color: var(--accent); }
.btn-primary svg { width: 16px; height: 16px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 20px; border-radius: 14px;
  background: transparent; color: var(--ink); border: 1px solid var(--rule-2);
  font: inherit; font-weight: 500; font-size: 15px;
  cursor: pointer; transition: all 0.2s ease; text-decoration: none;
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-ghost svg { width: 16px; height: 16px; }

.hero-proof {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding-top: 8px;
}
.hero-avatars { display: flex; }
.hero-avatars .av {
  width: 34px; height: 34px; border-radius: 999px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 12px; color: #fff;
  margin-right: -10px; border: 2.5px solid var(--bg);
  transition: transform 0.2s ease;
}
.hero-avatars:hover .av { margin-right: -4px; }
.hero-avatars .av:last-child { margin-right: 0; }
.hero-stars { color: var(--warm); font-size: 14px; letter-spacing: 2px; }
.hero-proof-text {
  font-size: 13px; color: var(--ink-dim);
  font-family: 'Assistant', sans-serif; font-size: 10px;
  letter-spacing: 0.08em;
}

/* ── dashboard mockup ── */
.dash-mockup {
  background: var(--bg-2); border: 1px solid var(--rule);
  border-radius: 18px; padding: 0; overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.dash-glow {
  position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: 19px; z-index: -1; pointer-events: none;
  background: linear-gradient(135deg, rgba(179,102,255,0.3), rgba(240,198,116,0.15), rgba(76,201,240,0.2));
  filter: blur(20px); opacity: 0.5;
}
.dash-frame {
  display: grid; grid-template-columns: 44px 1fr;
  min-height: 420px; direction: ltr;
}

/* mini sidebar */
.dash-sidebar {
  background: var(--bg-3); border-right: 1px solid var(--rule);
  padding: 12px 0; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.ds-logo { opacity: 0.9; }
.ds-avatar {
  width: 28px; height: 28px; border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffd9a8 0%, #c98a4e 60%, #6b4520 100%);
  display: grid; place-items: center;
  font-family: 'Assistant', sans-serif; font-style: italic;
  color: #1a0a00; font-weight: 700; font-size: 11px;
  box-shadow: inset 0 0 0 1px rgba(255,209,102,0.6);
}
.ds-nav { display: flex; flex-direction: column; gap: 4px; margin-top: 6px; }
.ds-nav-item {
  width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center;
  color: var(--ink-dim); transition: all 0.2s ease;
}
.ds-nav-item svg { width: 14px; height: 14px; }
.ds-nav-item.active {
  background: var(--bg); color: var(--warm);
  box-shadow: inset 0 0 0 1px var(--rule-2);
}

/* mini main area */
.dash-main {
  display: flex; flex-direction: column; gap: 0;
  overflow: hidden;
}

/* mini topbar */
.dash-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 14px; border-bottom: 1px solid var(--rule);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
}
.dash-crumb {
  font-family: 'Assistant', sans-serif;
  font-size: 7px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-dim); display: flex; gap: 4px;
}
.dash-crumb .now { color: var(--ink); }
.dash-crumb .sep { color: var(--ink-faint); }
.dash-top-actions { display: flex; align-items: center; gap: 6px; }
.dash-bell {
  position: relative; width: 20px; height: 20px;
  display: grid; place-items: center;
  border: 1px solid var(--rule-2); border-radius: 999px;
  color: var(--ink-dim);
}
.dash-badge {
  position: absolute; top: -3px; right: -3px;
  min-width: 11px; height: 11px; padding: 0 2px;
  border-radius: 999px; background: var(--accent); color: #fff;
  font-family: 'Assistant', sans-serif; font-size: 6px;
  display: grid; place-items: center; border: 1.5px solid var(--bg-2);
}
.dash-new-btn {
  font-family: 'Assistant', sans-serif;
  font-size: 7px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 999px;
  background: var(--accent); color: #fff;
}

/* mini welcome */
.dash-welcome-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 12px 14px 8px; gap: 12px;
}
.dash-eyebrow {
  font-family: 'Assistant', sans-serif;
  font-size: 7px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--warm); margin-bottom: 4px;
}
.dash-h1 {
  font-weight: 700; font-size: 14px; letter-spacing: -0.03em; line-height: 1.1;
}
.dash-h1 em {
  font-family: 'Assistant', sans-serif; font-style: italic;
  font-weight: 500; color: var(--warm);
}
.dash-lead {
  font-size: 8px; color: var(--ink-dim); line-height: 1.5; margin-top: 4px;
}
.dash-lead strong { color: var(--ink); font-weight: 600; }
.dash-stamp { text-align: right; flex: none; }
.dash-stamp-big {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 22px; line-height: 1; letter-spacing: 0.01em;
}
.dash-stamp-big span { color: var(--ink-dim); font-size: 13px; }
.dash-stamp-lbl {
  font-family: 'Assistant', sans-serif;
  font-size: 6.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-dim); margin-top: 2px;
}

/* mini KPI strip */
.dash-kpi-strip {
  display: grid; grid-template-columns: repeat(5, 1fr);
  margin: 0 14px; border: 1px solid var(--rule); border-radius: 10px;
  background: var(--bg-2); overflow: hidden;
  position: relative;
}
.dash-kpi-strip::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm) 20%, var(--accent) 50%, #4cc9f0 80%, transparent);
  opacity: 0.5;
}
.dash-kpi-cell {
  padding: 8px 8px; border-right: 1px solid var(--rule);
  display: grid; gap: 2px;
}
.dash-kpi-cell:last-child { border-right: none; }
.dash-kpi-cell .k {
  font-family: 'Assistant', sans-serif; font-size: 6px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim);
}
.dash-kpi-cell .v {
  font-weight: 700; font-size: 15px; letter-spacing: -0.03em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.dash-kpi-cell .v .u { font-weight: 500; font-size: 9px; color: var(--ink-dim); margin-left: 1px; }
.dash-kpi-cell .v em {
  font-family: 'Assistant', sans-serif; font-style: italic;
  font-weight: 500; color: var(--warm);
}
.dash-kpi-cell.alert .v { color: var(--accent); }
.dash-kpi-cell .d { font-family: 'Assistant', sans-serif; font-size: 6px; letter-spacing: 0.08em; }
.dash-kpi-cell .d.up { color: var(--good); }
.dash-kpi-cell .d.flag { color: var(--accent); }
.dash-kpi-cell .d.dim { color: var(--ink-dim); }

/* mini cockpit */
.dash-cockpit {
  display: grid; grid-template-columns: 1fr; gap: 8px;
  padding: 10px 14px 14px;
}
.dash-panel {
  background: var(--bg-2); border: 1px solid var(--rule);
  border-radius: 10px; padding: 10px; display: grid; gap: 8px;
}
.dash-panel.sm { gap: 6px; }
.dash-panel-head {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 6px; border-bottom: 1px dashed var(--rule);
}
.dash-panel-icon {
  width: 18px; height: 18px; border-radius: 5px;
  display: grid; place-items: center; font-size: 9px;
  background: var(--bg); border: 1px solid var(--rule-2);
}
.dash-panel-icon.warn { color: var(--warm); }
.dash-panel-title {
  font-size: 10px; font-weight: 700; letter-spacing: -0.01em;
}
.dash-panel-title em {
  font-family: 'Assistant', sans-serif; font-style: italic;
  font-weight: 500; color: var(--warm);
}
.dash-countpill {
  margin-left: auto;
  font-family: 'Assistant', sans-serif; font-size: 6px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 2px 6px; border-radius: 999px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}

/* attention items */
.dash-attn-list { display: grid; gap: 4px; }
.dash-attn {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 7px; border-radius: 6px;
  background: var(--bg); border: 1px solid var(--rule);
  font-size: 8px; line-height: 1.3; color: var(--ink);
}
.dash-attn .icn {
  width: 16px; height: 16px; border-radius: 4px; flex: none;
  display: grid; place-items: center; font-size: 7px;
  background: var(--bg-3);
}
.dash-attn.urgent { border-color: color-mix(in srgb, var(--accent) 35%, var(--rule)); }
.dash-attn.urgent .icn { background: color-mix(in srgb, var(--accent) 20%, var(--bg-3)); color: var(--accent); }
.dash-attn.warn .icn { background: color-mix(in srgb, var(--warm) 20%, var(--bg-3)); color: var(--warm); }
.dash-attn.cool .icn { background: color-mix(in srgb, #4cc9f0 20%, var(--bg-3)); color: #4cc9f0; }

/* campaign health rail */
.dash-health-rail {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px;
}
.dash-hc {
  display: flex; align-items: center; justify-content: space-between;
  padding: 5px 6px; border-radius: 6px;
  background: var(--bg); border: 1px solid var(--rule);
}
.dash-hc .nm {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 7px; letter-spacing: 0.01em; color: var(--ink);
}
.dash-hc .pip { width: 5px; height: 5px; border-radius: 999px; flex: none; }
.dash-hc .pip.live { background: var(--good); box-shadow: 0 0 4px var(--good); }
.dash-hc .pip.gen { background: #4cc9f0; box-shadow: 0 0 4px #4cc9f0; }
.dash-hc .pip.block { background: var(--warm); box-shadow: 0 0 4px var(--warm); }
.dash-hc .pip.pause { background: var(--ink-faint); }
.dash-hc.block { border-color: color-mix(in srgb, var(--warm) 35%, var(--rule)); }

/* ── dashboard mockup interactivity ── */
.dash-mockup { cursor: default; }
.ds-nav-item { cursor: pointer; }
.ds-nav-item:hover { background: var(--bg); color: var(--ink); }
.ds-nav-item:active { transform: scale(0.88); }

.dash-new-btn { cursor: pointer; transition: transform 0.12s ease, box-shadow 0.2s ease, filter 0.2s ease; }
.dash-new-btn:hover { filter: brightness(1.12); box-shadow: 0 6px 18px -6px var(--accent); }
.dash-new-btn:active { transform: scale(0.93); }

.dash-bell { cursor: pointer; transition: transform 0.12s ease, border-color 0.2s ease; }
.dash-bell:hover { border-color: var(--accent); color: var(--ink); }
.dash-bell:active { transform: scale(0.88); }
.dash-bell.cleared { animation: bellRing 0.5s ease; }
@keyframes bellRing {
  0%,100% { transform: rotate(0); } 20% { transform: rotate(-14deg); }
  40% { transform: rotate(11deg); } 60% { transform: rotate(-7deg); } 80% { transform: rotate(4deg); }
}

.dash-kpi-cell { transition: background 0.2s ease; }
.dash-kpi-cell:hover { background: rgba(255,255,255,0.025); }

.dash-attn { cursor: pointer; transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.25s ease; }
.dash-attn:hover { transform: translateX(4px); border-color: var(--rule-2); }
.dash-attn:active { transform: translateX(4px) scale(0.99); }
.dash-attn.done { opacity: 0.45; }
.dash-attn.done > span:last-child { text-decoration: line-through; }
.dash-attn.done .icn { background: rgba(62,207,142,0.2) !important; color: var(--good) !important; }

.dash-hc { cursor: pointer; transition: transform 0.2s ease, border-color 0.2s ease; }
.dash-hc:hover { transform: translateY(-2px); border-color: var(--rule-2); }
.dash-hc:active { transform: translateY(0) scale(0.96); }
.dash-hc .pip { transition: all 0.25s ease; }

/* KPI value pop-in when the mockup first scrolls into view */
@keyframes kpiPop { 0% { opacity: 0; transform: translateY(7px) scale(0.94); } 100% { opacity: 1; transform: none; } }
.dash-mockup.kpi-in .dash-kpi-cell .v { animation: kpiPop 0.5s cubic-bezier(0.22,1,0.36,1) both; }
.dash-mockup.kpi-in .dash-kpi-cell:nth-child(1) .v { animation-delay: 0.05s; }
.dash-mockup.kpi-in .dash-kpi-cell:nth-child(2) .v { animation-delay: 0.12s; }
.dash-mockup.kpi-in .dash-kpi-cell:nth-child(3) .v { animation-delay: 0.19s; }
.dash-mockup.kpi-in .dash-kpi-cell:nth-child(4) .v { animation-delay: 0.26s; }
.dash-mockup.kpi-in .dash-kpi-cell:nth-child(5) .v { animation-delay: 0.33s; }
@media (prefers-reduced-motion: reduce) {
  .dash-mockup.kpi-in .dash-kpi-cell .v { animation: none; }
}

/* ── stats strip ── */
.stats-strip {
  border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 56px 28px;
  background: var(--bg);
}
.stats-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stat-item .num {
  font-weight: 800; font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.03em; color: var(--accent); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-item:nth-child(2) .num { color: var(--warm); }
.stat-item:nth-child(4) .num { color: var(--good); }
.stat-item .label {
  margin-top: 8px;
  font-family: 'Assistant', sans-serif; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-dim); line-height: 1.5;
}

/* ── feature cards ── */
.features-grid {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.feature-card {
  background: var(--bg-2); border: 1px solid var(--rule);
  border-radius: 22px; padding: 32px; text-align: center;
  display: grid; gap: 16px; justify-items: center;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
.feature-card:hover {
  border-color: var(--rule-2); transform: translateY(-4px);
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.5);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h4 {
  font-weight: 700; font-size: 17px; letter-spacing: -0.01em;
  margin: 0;
}
.feature-card p {
  font-size: 14px; line-height: 1.55; color: var(--ink-dim);
  margin: 0; text-wrap: pretty;
}

/* ── steps timeline ── */
.steps-section {
  background: transparent;
}
.steps-timeline {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.steps-timeline::before {
  content: ''; position: absolute;
  top: 36px; left: 60px; right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--rule-2) 30%, var(--rule-2) 70%, var(--accent));
  opacity: 0.5;
}
.step {
  display: grid; gap: 16px; justify-items: center; text-align: center;
  position: relative; z-index: 1;
}
.step-circle {
  width: 72px; height: 72px; border-radius: 999px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 24px; color: #fff;
  border: 2px solid var(--rule-2);
  background: var(--bg-2);
  transition: all 0.3s ease;
}
.step:first-child .step-circle {
  background: var(--accent); border-color: var(--accent);
  box-shadow: 0 0 28px rgba(179,102,255,0.45);
}
.step:nth-child(2) .step-circle { border-color: rgba(179,102,255,0.4); }
.step:nth-child(3) .step-circle { border-color: rgba(179,102,255,0.25); }
.step h4 { font-weight: 700; font-size: 16px; margin: 0; letter-spacing: -0.01em; }
.step p {
  font-size: 13px; line-height: 1.5; color: var(--ink-dim);
  max-width: 220px; margin: 0;
}

/* ── goals ── */
.goals-grid {
  margin-top: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.goal-card {
  background: var(--bg-2); border: 1px solid var(--rule);
  border-radius: 22px; padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
.goal-card:hover {
  border-color: var(--rule-2); transform: translateY(-4px);
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.5);
}
.goal-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; flex: none;
}
.goal-icon svg { width: 22px; height: 22px; }
.goal-text { display: grid; gap: 8px; }
.goal-text h4 { font-weight: 700; font-size: 17px; margin: 0; letter-spacing: -0.01em; }
.goal-text p { font-size: 14px; line-height: 1.55; color: var(--ink-dim); margin: 0; text-wrap: pretty; }

/* ── platforms ── */
.platforms-section {
  background: rgba(10,10,10,0.3);
}
.platforms-grid {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.platform-text { display: grid; gap: 16px; }
.platform-text h3 {
  font-weight: 700; font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.03em; line-height: 1.05; margin: 0;
}
.platform-text p { font-size: 15px; line-height: 1.55; color: var(--ink-dim); margin: 0; }
.platform-pills {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.platform-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 14px;
  background: var(--bg); border: 1px solid var(--rule);
  font-weight: 500; font-size: 14px; color: var(--ink);
  transition: all 0.2s ease;
}
.platform-pill:hover { border-color: var(--rule-2); background: var(--bg-3); }
.platform-pill svg { width: 22px; height: 22px; flex: none; }
.platform-pill.soon { opacity: 0.55; }
.platform-pill.soon:hover { opacity: 0.75; }
.soon-badge {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 2px 6px; border-radius: 999px;
  background: rgba(179,102,255,0.18);
  color: var(--accent);
  border: 1px solid rgba(179,102,255,0.3);
  margin-right: 2px;
}

/* ── trust ── */
.trust-section {
  text-align: center;
  background: transparent;
}
.trust-grid {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  text-align: start;
}
.trust-card {
  background: var(--bg-2); border: 1px solid var(--rule);
  border-radius: 22px; padding: 28px;
  display: grid; gap: 12px;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
.trust-card:hover {
  border-color: var(--rule-2); transform: translateY(-4px);
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.5);
}
.trust-card .top {
  display: flex; align-items: center; gap: 10px;
}
.trust-card .top svg { width: 20px; height: 20px; flex: none; }
.trust-card h4 { font-weight: 700; font-size: 16px; margin: 0; }
.trust-card p { font-size: 14px; line-height: 1.55; color: var(--ink-dim); margin: 0; }

/* ── footer ── */
footer.foot {
  padding: 60px 28px 32px; border-top: 1px solid rgba(255,255,255,0.04);
  background: rgba(10,10,10,0.4);
}
footer.foot .row {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 40px; align-items: end;
}
footer.foot .meta {
  font-family: 'Assistant', sans-serif;
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-dim); line-height: 1.8;
}
footer.foot .meta strong { color: var(--ink); font-weight: 500; }

/* ── agency pain points ── */
section.pain-section {
  background: var(--bg);
  overflow: hidden;
}
.pain-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.pain-blob-1 { width: 600px; height: 600px; background: #b366ff; opacity: 0.18; top: -140px; right: -100px; }
.pain-blob-2 { width: 480px; height: 480px; background: #7c3aed; opacity: 0.14; bottom: -80px; left: -160px; }
.pain-blob-3 { width: 380px; height: 380px; background: #f0c674; opacity: 0.10; top: 40%; right: 25%; }
.pain-head { text-align: center; max-width: 760px; margin: 0 auto; }
.pain-kicker {
  font-family: 'Assistant', sans-serif;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #ff6b8a; margin-bottom: 20px; display: inline-block;
}
.pain-kicker s { text-decoration-color: rgba(255,107,138,0.6); text-decoration-thickness: 2px; }
.pain-title {
  font-weight: 800; font-size: clamp(30px, 4.2vw, 52px);
  letter-spacing: -0.04em; line-height: 1.06; margin: 0 0 18px; text-wrap: balance;
}
.pain-title em {
  font-family: 'Assistant', sans-serif; font-style: italic;
  font-weight: 500; color: var(--warm);
}
.pain-sub {
  font-size: clamp(15px, 1.3vw, 18px); line-height: 1.6;
  color: var(--ink-dim); text-wrap: pretty;
}
.pain-sub strong { color: var(--ink); font-weight: 600; }
.pain-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.pain-card {
  background: rgba(19,19,19,0.55); border: 1px solid var(--rule);
  border-radius: 22px; padding: 32px;
  display: grid; gap: 14px;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
.pain-card:hover { border-color: rgba(255,107,138,0.3); transform: translateY(-4px); }
.pain-x {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,107,138,0.12); color: #ff6b8a;
  border: 1px solid rgba(255,107,138,0.25);
  font-size: 20px; font-weight: 700;
}
.pain-card h4 { font-weight: 700; font-size: 18px; letter-spacing: -0.02em; margin: 0; }
.pain-card p { font-size: 14px; line-height: 1.6; color: var(--ink-dim); margin: 0; text-wrap: pretty; }

/* ── manifesto band ── */
.manifesto {
  text-align: center; padding: 130px 28px;
  position: relative;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}
.manifesto-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
}
.manifesto-blob-1 { width: 560px; height: 560px; background: #b366ff; opacity: 0.13; top: -100px; left: -120px; }
.manifesto-blob-2 { width: 420px; height: 420px; background: #f0c674; opacity: 0.09; bottom: -60px; right: -80px; }
.manifesto-blob-3 { width: 380px; height: 380px; background: #4cc9f0; opacity: 0.07; top: 30%; left: 40%; }
.manifesto .inner { max-width: 880px; margin: 0 auto; }
.manifesto-mark {
  font-family: 'Assistant', sans-serif;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
}
.manifesto h2 {
  font-weight: 800; font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -0.045em; line-height: 1.04; margin: 0 0 12px; text-wrap: balance;
}
.manifesto h2 em {
  font-family: 'Assistant', sans-serif; font-style: italic;
  font-weight: 700; color: var(--warm);
}
.manifesto .tagline {
  font-family: 'Assistant', sans-serif; font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px); color: var(--ink);
  margin: 0 0 32px; opacity: 0.9;
}
.manifesto p {
  font-size: clamp(16px, 1.4vw, 20px); line-height: 1.7;
  color: var(--ink-dim); max-width: 720px; margin: 0 auto; text-wrap: pretty;
}
.manifesto p strong { color: var(--ink); font-weight: 600; }

/* ── comparison table ── */
.compare-wrap {
  margin-top: 64px;
  border: 1px solid var(--rule);
  border-radius: 22px;
  overflow: hidden;
}
.compare-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.1fr;
  background: var(--bg-3);
  border-bottom: 1px solid var(--rule);
}
.compare-label {
  padding: 16px 24px;
  font-size: 13px;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  border-left: 1px solid var(--rule);
}
.compare-col-head {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 1px solid var(--rule);
}
.broadway-head {
  color: var(--warm);
  background: rgba(240,198,116,0.06);
}
.agency-head {
  color: var(--ink-dim);
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.1fr;
  border-bottom: 1px solid var(--rule);
  transition: background 0.2s ease;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(255,255,255,0.02); }
.compare-row .compare-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  border-left: 1px solid var(--rule);
  background: rgba(255,255,255,0.01);
}
.compare-val {
  padding: 16px 24px;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 1px solid var(--rule);
  line-height: 1.4;
}
.compare-val.good {
  color: var(--ink);
  background: rgba(62,207,142,0.04);
}
.compare-val.bad {
  color: var(--ink-dim);
}
.chk {
  flex: none;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: rgba(62,207,142,0.15);
  color: var(--good);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}
.ex {
  flex: none;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: rgba(255,107,138,0.12);
  color: #ff6b8a;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}

/* ── benefits ── */
.benefits-grid {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.benefit-card {
  background: rgba(19,19,19,0.55); border: 1px solid var(--rule);
  border-radius: 22px; padding: 30px;
  display: grid; gap: 14px; align-content: start;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
.benefit-card:hover {
  border-color: var(--rule-2); transform: translateY(-4px);
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.5);
}
.benefit-card.price {
  background: linear-gradient(160deg, rgba(179,102,255,0.16), rgba(240,198,116,0.08));
  border-color: rgba(179,102,255,0.35);
  grid-column: span 1;
}
.benefit-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-card h4 { font-weight: 700; font-size: 18px; letter-spacing: -0.02em; margin: 0; }
.benefit-card p { font-size: 14px; line-height: 1.6; color: var(--ink-dim); margin: 0; text-wrap: pretty; }
.benefit-price {
  display: flex; align-items: baseline; gap: 6px;
}
.benefit-price .amt {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 56px; line-height: 0.9; color: var(--ink); letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}
.benefit-price .per {
  font-family: 'Assistant', sans-serif; font-size: 12px;
  letter-spacing: 0.1em; color: var(--warm);
}
.benefit-card.price p { color: rgba(244,239,230,0.78); }

/* ── CTA section ── */
.cta-section {
  position: relative; z-index: 2;
  padding: 80px 28px 100px;
  background: var(--bg);
}
.cta-section .container { max-width: 1280px; margin: 0 auto; }
.cta-card {
  position: relative; overflow: hidden;
  max-width: 960px; margin: 0 auto;
  background: linear-gradient(150deg, #161650 0%, #1e1268 50%, #161650 100%);
  border: 1px solid rgba(179,102,255,0.25);
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  box-shadow: 0 0 100px rgba(179,102,255,0.12), 0 40px 80px -20px rgba(0,0,0,0.6);
}
.cta-glow-top {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(179,102,255,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-glow-bottom {
  position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(240,198,116,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-weight: 800; font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.04em; line-height: 1.1;
  color: var(--ink); margin: 0 0 18px; position: relative; z-index: 1;
}
.cta-title em {
  font-style: italic; font-weight: 400; color: var(--accent);
}
.cta-lead {
  font-size: clamp(15px, 1.3vw, 18px); color: var(--ink);
  margin: 0 auto 8px; position: relative; z-index: 1;
}
.cta-sub {
  font-size: clamp(13px, 1.1vw, 16px); color: rgba(244,239,230,0.55);
  margin: 0 auto 36px; position: relative; z-index: 1;
}
.cta-card .hero-actions { position: relative; z-index: 1; }
.cta-btn-main { font-size: 17px; padding: 18px 32px; border-radius: 16px; }
.cta-trust {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  margin-top: 28px; position: relative; z-index: 1;
  font-size: 12px; color: rgba(244,239,230,0.45);
}
.cta-trust span::before { content: '✓ '; color: var(--good); }

@media (max-width: 600px) {
  .cta-card { padding: 48px 24px; }
  .cta-trust { gap: 16px; }
}

/* ── FAQ ── */
.faq-list {
  max-width: 840px; margin: 56px auto 0;
  display: grid; gap: 12px;
}
.faq-item {
  border: 1px solid var(--rule); border-radius: 16px;
  background: rgba(19,19,19,0.55); overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item[open] { border-color: var(--rule-2); }
.faq-q {
  display: flex; justify-content: flex-start; align-items: center; gap: 14px;
  padding: 22px 26px; cursor: pointer; list-style: none;
  font-weight: 600; font-size: clamp(15px, 1.4vw, 18px); letter-spacing: -0.01em;
  color: var(--ink); user-select: none; text-align: right;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-toggle {
  flex: none; width: 26px; height: 26px; border-radius: 999px;
  border: 1px solid var(--rule-2); display: grid; place-items: center;
  color: var(--accent); transition: all 0.3s ease; font-size: 16px;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); background: var(--accent); color: #fff; border-color: var(--accent); }
.faq-a {
  overflow: hidden;
  padding: 0 26px 24px;
}
.faq-a p { font-size: 14.5px; line-height: 1.65; color: var(--ink-dim); margin: 0; text-wrap: pretty; text-align: right; direction: rtl; }
.faq-a p strong { color: var(--ink); font-weight: 600; }

/* ── reveal animations ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── responsive ── */

/* disable cursor spotlight on touch devices */
@media (hover: none), (pointer: coarse) {
  .mouse-spot { display: none !important; }
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .dash-mockup { max-width: 560px; margin: 0 auto; }
  .topbar nav.toolbar { display: none; }
  .manifesto { padding: 100px 28px; }
}

@media (max-width: 880px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .steps-timeline { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps-timeline::before { display: none; }
  .platforms-grid { grid-template-columns: 1fr; gap: 36px; }
  .trust-grid { grid-template-columns: 1fr; }
  section.page { padding: 80px 18px; }
  .benefits-grid .benefit-card.price { grid-column: span 2 !important; }
}

/* ── phones ── */
@media (max-width: 600px) {
  /* topbar compaction */
  .topbar { padding: 12px 16px; gap: 12px; }
  .logo { font-size: 18px; gap: 8px; }
  .logo .mark { width: 30px; height: 30px; }
  .logo small { display: none; }
  .cta-pill { padding: 9px 14px; font-size: 9.5px; gap: 6px; }

  /* hero */
  .hero-section { padding: 104px 18px 72px; }
  .hero-grid { gap: 32px; }
  .hero-title { font-size: clamp(34px, 11vw, 46px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { justify-content: center; width: 100%; }
  .hero-proof { justify-content: center; gap: 10px; }

  /* stage caption clears the topbar */
  .stage-caption { bottom: 24%; padding: 0 18px; }
  .stage-caption h2 { font-size: clamp(16px, 4.6vw, 22px); margin-bottom: 16px; }

  /* dashboard mockup — trim to the operational trio so nothing is cramped */
  .dash-frame { min-height: 0; }
  .dash-welcome-row { padding: 12px 12px 8px; }
  .dash-kpi-strip { grid-template-columns: repeat(3, 1fr); margin: 0 12px; }
  .dash-kpi-cell:nth-child(4),
  .dash-kpi-cell:nth-child(5) { display: none; }
  .dash-kpi-cell:nth-child(3) { border-right: none; }
  .dash-cockpit { padding: 10px 12px 14px; }
  .dash-health-rail { grid-template-columns: repeat(3, 1fr); }

  /* sections */
  section.page { padding: 64px 16px; }
  .features-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .goals-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .pain-grid, .benefits-grid, .trust-grid { gap: 14px; }
  .benefits-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .benefits-grid .benefit-card.price { grid-column: span 1 !important; }
  .steps-timeline { grid-template-columns: 1fr; margin-top: 40px; gap: 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .stats-strip { padding: 44px 18px; }
  .platform-pills { flex-direction: column; }
  .platform-pill { width: 100%; }

  /* manifesto */
  .manifesto { padding: 72px 20px; }
  .manifesto .tagline { margin-bottom: 24px; }

  /* feature/benefit/pain cards: tighter padding */
  .feature-card, .benefit-card, .pain-card, .goal-card, .trust-card { padding: 24px; }
  .benefit-price .amt { font-size: 48px; }

  /* FAQ */
  .faq-list { margin-top: 40px; }
  .faq-q { padding: 18px 18px; }
  .faq-item[open] .faq-a, .faq-a { padding-left: 18px; padding-right: 18px; }

  /* footer stacks */
  footer.foot { padding: 44px 18px 28px; }
  footer.foot .row { grid-template-columns: 1fr; gap: 24px; }
  footer.foot .row > div:empty { display: none; }
  footer.foot .meta, footer.foot .meta:last-child { text-align: right !important; }
}

@media (max-width: 380px) {
  .hero-title { font-size: clamp(30px, 12vw, 40px); }
  .stats-grid { gap: 24px 16px; }
  .cta-pill { padding: 8px 12px; font-size: 9px; }
  .logo { font-size: 17px; }
}
