/* ═══════════════════════════════════════════════════
   SMART MEDIA — Surreal Ultra-Modern Landing
   ═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --void:        #020912;
  --space:       #060f1e;
  --deep:        #091526;
  --violet:      #6d28d9;
  --blue:        #2563eb;
  --cyan:        #06b6d4;
  --teal:        #14b8a6;
  --red-live:    #ef4444;
  --star:        #f0f6ff;
  --muted:       rgba(160,185,220,0.75);
  --dim:         rgba(255,255,255,0.07);
  --dim2:        rgba(255,255,255,0.11);
  --glass:       rgba(6,15,30,0.72);
  --glass2:      rgba(6,15,30,0.9);
  --vglow:       rgba(109,40,217,0.38);
  --cglow:       rgba(6,182,212,0.32);
  --bglow:       rgba(37,99,235,0.30);
  --font-sans:   'Inter', system-ui, sans-serif;
  --font-display:'Syne', 'Inter', sans-serif;
  --font-mono:   'Space Mono', monospace;
  --r-xl:        2rem;
  --r-lg:        1.5rem;
  --r-md:        1.25rem;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* iOS Safari: body overflow-x:hidden can make html background visible;
   setting background + overflow on html guarantees the dark viewport */
html {
  scroll-behavior: smooth;
  background-color: #020912;
  background-color: var(--void, #020912);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: #020912;
  background-color: var(--void);
  color: #f0f6ff;
  color: var(--star);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { color: var(--star); }
p { color: var(--muted); line-height: 1.75; }
a { text-decoration: none; }
img, canvas { display: block; }

/* ── Layout ── */
.l-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) { .l-container { padding: 0 2.5rem; } }

/* ── Shared canvas layer ── */
.s-hero__canvas, .s-metrics__canvas, .s-pain__canvas,
.s-benefits__canvas, .s-modules__canvas, .s-how__canvas,
.s-forwhom__canvas, .s-diff__canvas, .s-faq__canvas,
.s-demo__canvas, .s-digital__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
.l-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2,9,18,0.82);
  border-bottom: 1px solid var(--dim);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  transition: background .3s;
}
.l-nav.scrolled {
  background: rgba(2,9,18,0.96);
  border-bottom-color: var(--dim2);
}
.l-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.l-nav__links {
  display: none;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) { .l-nav__links { display: flex; } }
.l-nav__links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.l-nav__links a:hover { color: var(--star); }
.l-nav__cta { display: flex; align-items: center; gap: .75rem; }

/* ── Brand ── */
.l-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--star);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.l-brand__logo {
  width: 44px;
  height: 44px;
  position: relative;
  display: inline-block;
  flex: 0 0 44px;
}
.l-brand__ring {
  position: absolute;
  inset: -3px;
  border-radius: 9999px;
  border: 1.5px solid rgba(109,40,217,.35);
  animation: ringPulse 3s ease-in-out infinite;
}
.l-brand__ring:nth-child(2) { inset: -7px; border-color: rgba(6,182,212,.28); animation-delay: .5s; }
.l-brand__ring:nth-child(3) { inset: -12px; border-color: rgba(255,255,255,.07); animation-delay: 1s; }
.l-brand__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6d28d9, #2563eb 55%, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px var(--vglow);
  overflow: hidden;
  position: relative;
}
.l-brand__icon::after {
  content: '';
  position: absolute;
  top:-50%; left:-50%;
  width:200%; height:200%;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.22) 50%, transparent 60%);
  animation: shimmer 3.5s ease-in-out infinite;
}
.l-brand__name {
  background: linear-gradient(135deg, #f0f6ff 30%, #c4b5fd 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #f0f6ff;
  -webkit-text-fill-color: transparent;
}
.l-soundwave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 20px;
}
.l-soundwave span {
  width: 3px;
  border-radius: 9999px;
  background: rgba(255,255,255,.95);
  display: block;
  animation: barBounce .9s ease-in-out infinite alternate;
}
.l-soundwave span:nth-child(1){ height:8px;  animation-delay:0s; }
.l-soundwave span:nth-child(2){ height:13px; animation-delay:.1s; }
.l-soundwave span:nth-child(3){ height:17px; animation-delay:.2s; }
.l-soundwave span:nth-child(4){ height:11px; animation-delay:.3s; }
.l-soundwave span:nth-child(5){ height:14px; animation-delay:.15s; }
.l-soundwave span:nth-child(6){ height:9px;  animation-delay:.25s; }
.l-soundwave span:nth-child(7){ height:7px;  animation-delay:.05s; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: .65rem 1.4rem;
  font-size: .875rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--violet), var(--blue) 50%, var(--cyan));
  background-size: 200% 200%;
  animation: gradientFlow 5s ease infinite;
  color: #fff;
  border: none;
  box-shadow: 0 6px 28px var(--vglow);
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 44px var(--vglow), 0 0 50px rgba(6,182,212,.22);
  animation-duration: 2s;
}
.btn-primary.btn--lg { padding: 1rem 1.85rem; font-size: 1rem; }

.btn-ghost, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: .65rem 1.4rem;
  font-size: .875rem;
  font-weight: 600;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--dim2);
  color: rgba(220,235,255,.9);
  transition: background .22s, border-color .22s, transform .22s;
  cursor: pointer;
}
.btn-ghost:hover, .btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-1px);
}
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: .75rem 1.5rem;
  font-size: .875rem;
  font-weight: 600;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(220,235,255,.9);
  transition: background .22s, border-color .22s;
  cursor: pointer;
}
.btn-ghost-white:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.07);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: .75rem 1.5rem;
  font-size: .875rem;
  font-weight: 700;
  background: rgba(255,255,255,.95);
  color: #091526;
  border: none;
  transition: background .22s, transform .22s;
  cursor: pointer;
}
.btn-white:hover { background: #fff; transform: translateY(-1px); }
.btn-outline.btn--lg { padding: 1rem 1.85rem; font-size: 1rem; }

/* ── Kicker / Label ── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(196,181,253,.9);
}
.kicker::before {
  content: '';
  width: .5rem;
  height: .5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #6d28d9, #06b6d4);
  box-shadow: 0 0 8px rgba(6,182,212,.75);
  flex-shrink: 0;
}
.kicker--light { color: rgba(196,181,253,.85); }
.kicker--light::before { background: linear-gradient(135deg,#a78bfa,#67e8f9); box-shadow: 0 0 10px rgba(167,139,250,.75); }

/* ── Dot live ── */
.dot-live {
  display: inline-block;
  width: .55rem;
  height: .55rem;
  border-radius: 9999px;
  background: var(--red-live);
  box-shadow: 0 0 8px rgba(239,68,68,.7);
  animation: livePulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Section head shared ── */
.s-section-head {
  max-width: 700px;
  margin-bottom: 3.5rem;
}
.s-section-head h2 {
  margin-top: .75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.s-section-head p {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.s-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh; /* iOS Safari: dynamic viewport height excluding address bar */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.s-hero__scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,.06) 2px,
    rgba(0,0,0,.06) 4px
  );
  pointer-events: none;
  z-index: 1;
  animation: scanMove 8s linear infinite;
}
.s-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(2,9,18,.85) 100%);
  pointer-events: none;
  z-index: 1;
}
.s-hero__layout {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  gap: 3.5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .s-hero__layout {
    grid-template-columns: 1fr minmax(320px, 480px);
  }
}
.s-hero__content { max-width: 640px; }
.s-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border-radius: 9999px;
  border: 1px solid rgba(109,40,217,.35);
  background: rgba(109,40,217,.1);
  padding: .5rem 1.1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(196,181,253,.92);
  box-shadow: 0 0 20px rgba(109,40,217,.15);
  margin-bottom: 1.5rem;
}
.s-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.025em;
  background: linear-gradient(140deg, #f0f6ff 0%, #c4b5fd 45%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #f0f6ff;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}
.s-hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, #a78bfa, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: #a78bfa;
  -webkit-text-fill-color: transparent;
}
.s-hero__sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(165,190,230,.82);
  margin-bottom: 2rem;
}
.s-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.s-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.chip {
  border: 1px solid var(--dim2);
  background: rgba(255,255,255,.04);
  border-radius: 9999px;
  padding: .6rem 1.1rem;
  font-size: .83rem;
  font-weight: 600;
  color: rgba(220,235,255,.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: border-color .25s, background .25s, transform .25s;
}
.chip:hover {
  border-color: rgba(109,40,217,.45);
  background: rgba(109,40,217,.1);
  transform: translateY(-2px);
}
.s-hero__spectrum {
  position: relative;
  z-index: 2;
  height: 80px;
  margin-top: auto;
}
.s-hero__spectrum canvas { width: 100%; height: 100%; }

/* ── Hero Panel ── */
.panel-glass {
  background: rgba(6,15,30,.85);
  border: 1px solid var(--dim);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(109,40,217,.12);
  position: relative;
  overflow: hidden;
}
.panel-glass::after {
  content: '';
  position: absolute;
  inset: auto -18% -18% auto;
  width: 220px; height: 220px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(109,40,217,.22) 0%, transparent 65%);
  pointer-events: none;
}
.panel-glass__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--dim);
  margin-bottom: 1.25rem;
}
.panel-glass__head h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: .35rem;
}
.badge-live {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.3);
  color: #fca5a5;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 9999px;
  padding: .35rem .85rem;
  white-space: nowrap;
}
.panel-glass__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-bottom: 1.25rem;
}
.stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--dim);
  border-radius: var(--r-lg);
  padding: 1rem;
}
.stat-card--dark {
  background: linear-gradient(135deg, rgba(109,40,217,.22), rgba(6,15,30,.9) 55%, rgba(6,182,212,.12));
  border-color: rgba(109,40,217,.3);
}
.stat-card strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--star);
  margin: .4rem 0;
}
.stat-card p { font-size: .78rem; line-height: 1.6; color: var(--muted); }
.panel-flow {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--dim);
  border-radius: var(--r-md);
  padding: .9rem 1rem;
}
.panel-flow > span {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.panel-flow__steps {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
  font-size: .78rem;
  font-weight: 700;
  color: var(--star);
}
.panel-flow__steps .arr { color: var(--cyan); }

/* ══════════════════════════════════
   TICKER
══════════════════════════════════ */
.s-ticker {
  display: flex;
  align-items: center;
  height: 44px;
  background: linear-gradient(90deg, rgba(239,68,68,.9) 0%, rgba(180,30,30,.9) 100%);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative;
  z-index: 10;
}
.s-ticker__label {
  flex-shrink: 0;
  padding: 0 1.25rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: .5rem;
  border-right: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.25);
  height: 100%;
}
.s-ticker__track-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}
.s-ticker__track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
}
.s-ticker__track .sep { color: rgba(255,255,255,.5); font-size: .6rem; }

/* ══════════════════════════════════
   METRICS
══════════════════════════════════ */
.s-metrics {
  position: relative;
  padding: 2.5rem 0;
  overflow: hidden;
  background: var(--void);
}
.s-metrics__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) { .s-metrics__grid { grid-template-columns: repeat(4, 1fr); } }
.metric-card {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--dim);
  background: rgba(6,15,30,.8);
  padding: 1.4rem;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6,182,212,.28);
  box-shadow: 0 16px 44px rgba(0,0,0,.5), 0 0 0 1px rgba(6,182,212,.12);
}
.metric-card__glow {
  position: absolute;
  inset: auto auto -30% -20%;
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(109,40,217,.1) 0%, transparent 70%);
  pointer-events: none;
}
.metric-card__value {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #c4b5fd, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: #c4b5fd;
  -webkit-text-fill-color: transparent;
  margin-bottom: .5rem;
}
.metric-card p { font-size: .85rem; line-height: 1.6; color: var(--muted); }

/* ══════════════════════════════════
   CRED BAR
══════════════════════════════════ */
.s-cred {
  background: rgba(6,15,30,.45);
  border-top: 1px solid var(--dim);
  border-bottom: 1px solid var(--dim);
  padding: 2rem 0;
}
.s-cred__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2,1fr);
}
@media (min-width: 900px) { .s-cred__grid { grid-template-columns: repeat(4,1fr); } }
.cred-item {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  border-radius: var(--r-md);
  border: 1px solid var(--dim);
  background: rgba(255,255,255,.025);
  padding: 1.1rem;
  transition: border-color .25s, background .25s, transform .25s;
}
.cred-item:hover {
  border-color: rgba(6,182,212,.22);
  background: rgba(6,182,212,.05);
  transform: translateY(-2px);
}
.cred-item strong { font-size: .9rem; color: var(--star); font-weight: 700; }
.cred-item span { font-size: .83rem; line-height: 1.6; color: var(--muted); }

/* ══════════════════════════════════
   PAIN
══════════════════════════════════ */
.s-pain {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.s-pain__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3.5rem;
}
@media (min-width: 960px) { .s-pain__layout { grid-template-columns: .9fr 1.1fr; align-items: start; } }
.s-pain__text h2 {
  margin-top: .75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem,3.5vw,2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.s-pain__text p { margin-top: 1rem; font-size: 1.05rem; }
.s-pain__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pain-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--dim);
  background: var(--glass);
  padding: 1.5rem;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 42px rgba(0,0,0,.4);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109,40,217,.6), rgba(6,182,212,.6), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.pain-card:hover::before { opacity: 1; }
.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(109,40,217,.22);
  border-color: rgba(109,40,217,.28);
}
.pain-card h3 { font-size: 1rem; font-weight: 700; color: var(--star); }
.pain-card p { margin-top: .6rem; font-size: .875rem; line-height: 1.7; }

/* ══════════════════════════════════
   BENEFITS
══════════════════════════════════ */
.s-benefits {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, #060f1e 0%, #040a14 100%);
}
.s-benefits__overlay {
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 100%;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(109,40,217,.15) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.s-benefits > .l-container { position: relative; z-index: 1; }
.s-benefits__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .s-benefits__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .s-benefits__grid { grid-template-columns: repeat(3,1fr); } }
.benefit-card {
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.035);
  padding: 1.75rem;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: transform .3s, box-shadow .3s, border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
}
.benefit-card__num {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  color: rgba(167,139,250,.7);
  letter-spacing: .2em;
  margin-bottom: .85rem;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109,40,217,.55), rgba(6,182,212,.55), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.benefit-card:hover::before { opacity: 1; }
.benefit-card:hover {
  background: rgba(255,255,255,.058);
  border-color: rgba(6,182,212,.22);
  transform: translateY(-5px);
  box-shadow: 0 22px 56px rgba(0,0,0,.4);
}
.benefit-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--star); }
.benefit-card p { margin-top: .75rem; font-size: .9rem; line-height: 1.75; color: rgba(200,222,255,.72); }

/* ══════════════════════════════════
   MODULES
══════════════════════════════════ */
.s-modules {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.s-modules > .l-container { position: relative; z-index: 1; }
.s-modules__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .s-modules__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .s-modules__grid { grid-template-columns: repeat(4,1fr); } }
.module-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--dim);
  background: var(--glass);
  padding: 1.5rem;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 42px rgba(0,0,0,.4);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.module-card__icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  filter: grayscale(.3);
}
.module-card:nth-child(even) { border-color: rgba(6,182,212,.1); }
.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109,40,217,.6), rgba(6,182,212,.6), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.module-card:hover::before { opacity: 1; }
.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(109,40,217,.22);
  border-color: rgba(109,40,217,.28);
}
.module-card:nth-child(even):hover { border-color: rgba(6,182,212,.3); }
.module-card h3 { font-size: 1rem; font-weight: 700; color: var(--star); }
.module-card p { margin-top: .6rem; font-size: .875rem; line-height: 1.7; }

/* ── Digital Module ── */
.s-digital {
  position: relative;
  border-radius: var(--r-xl);
  padding: 2.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(109,40,217,.18) 0%, rgba(6,15,30,.88) 55%, rgba(6,182,212,.1) 100%);
  border: 1px solid rgba(109,40,217,.28);
  box-shadow: 0 10px 48px rgba(0,0,0,.45), 0 0 50px rgba(109,40,217,.08);
}
.s-digital__body { position: relative; z-index: 1; }
.s-digital__badge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.badge-module {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: .4rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: rgba(109,40,217,.22);
  border: 1px solid rgba(109,40,217,.45);
  color: #c4b5fd;
}
.s-digital__badge span:last-child { font-size: .875rem; color: var(--muted); }
.s-digital__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem,2.5vw,1.85rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.s-digital__body > p { font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }
.s-digital__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .s-digital__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .s-digital__grid { grid-template-columns: repeat(3,1fr); } }
.dmodule-card {
  border-radius: var(--r-md);
  border: 1px solid rgba(109,40,217,.18);
  background: rgba(255,255,255,.04);
  padding: 1.25rem;
  transition: transform .3s, border-color .3s;
}
.dmodule-card:hover {
  transform: translateY(-3px);
  border-color: rgba(109,40,217,.35);
}
.dmodule-card h4 { font-size: .9rem; font-weight: 700; color: var(--star); margin-bottom: .5rem; }
.dmodule-card p { font-size: .83rem; line-height: 1.65; }

/* ══════════════════════════════════
   SEGMENTS — Video sticky sections
══════════════════════════════════ */
.s-segments { position: relative; }

/* Each panel */
.seg-panel {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
}
.seg-panel--radio   { border-bottom: 1px solid rgba(109,40,217,.2); }
.seg-panel--tv      { border-bottom: 1px solid rgba(37,99,235,.2);  }
.seg-panel--digital { border-bottom: 1px solid rgba(6,182,212,.2);  }

/* Sticky video background */
.seg-panel__bg-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  margin-bottom: -100vh;
  margin-bottom: -100dvh;
  overflow: hidden;
  z-index: 0;
}
.seg-panel__bg-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.seg-panel__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(2,9,18,.88) 0%, rgba(2,9,18,.65) 50%, rgba(2,9,18,.88) 100%);
}

/* Content layer — sits above the sticky video */
.seg-panel__inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 7rem 0 5rem;
  display: flex;
  align-items: center;
}
.seg-panel__content { width: 100%; }

/* Panel header */
.seg-panel__header { max-width: 660px; margin-bottom: 3rem; }
.seg-panel__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.025em;
  margin-top: 1rem;
  margin-bottom: .9rem;
}
.seg-panel__header p {
  font-size: 1.05rem;
  line-height: 1.82;
  color: rgba(200,222,255,.8);
}

/* Segment badge */
.seg-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem 1.1rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.seg-badge--radio   { color: #c4b5fd; background: rgba(109,40,217,.14); border: 1px solid rgba(109,40,217,.42); }
.seg-badge--tv      { color: #93c5fd; background: rgba(37,99,235,.14);  border: 1px solid rgba(37,99,235,.42);  }
.seg-badge--digital { color: #67e8f9; background: rgba(6,182,212,.14);  border: 1px solid rgba(6,182,212,.42);  }

/* Module grid */
.seg-panel__grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .seg-panel__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .seg-panel__grid { grid-template-columns: repeat(3, 1fr); } }

/* Module card */
.seg-mod-card {
  border-radius: var(--r-lg);
  background: rgba(6,15,30,.6);
  border: 1px solid rgba(255,255,255,.07);
  padding: 1.6rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .28s cubic-bezier(.16,1,.3,1), border-color .28s, box-shadow .28s, background .28s;
}
.seg-mod-card:hover {
  transform: translateY(-4px);
  background: rgba(6,15,30,.76);
}
.seg-panel--radio   .seg-mod-card:hover { border-color: rgba(109,40,217,.38); box-shadow: 0 10px 36px rgba(109,40,217,.18); }
.seg-panel--tv      .seg-mod-card:hover { border-color: rgba(37,99,235,.38);  box-shadow: 0 10px 36px rgba(37,99,235,.18);  }
.seg-panel--digital .seg-mod-card:hover { border-color: rgba(6,182,212,.38);  box-shadow: 0 10px 36px rgba(6,182,212,.18);  }
.seg-mod-card__icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: .875rem;
}
.seg-mod-card h4 {
  font-size: .975rem;
  font-weight: 700;
  color: var(--star);
  margin-bottom: .5rem;
}
.seg-mod-card p {
  font-size: .875rem;
  line-height: 1.72;
  color: var(--muted);
}

/* ══════════════════════════════════
   HOW IT WORKS
══════════════════════════════════ */
.s-how {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: rgba(6,15,30,.45);
}
.s-how > .l-container { position: relative; z-index: 1; }
.s-how__steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .s-how__steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .s-how__steps { grid-template-columns: repeat(4,1fr); } }
.step-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--dim);
  background: var(--glass);
  padding: 1.75rem;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 42px rgba(0,0,0,.4);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(109,40,217,.22);
  border-color: rgba(109,40,217,.28);
}
.step-card__num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #6d28d9, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: #6d28d9;
  -webkit-text-fill-color: transparent;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--star); margin-bottom: .6rem; }
.step-card p { font-size: .875rem; line-height: 1.7; }
.step-card__bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.step-card:hover .step-card__bar { transform: scaleX(1); }

/* ══════════════════════════════════
   FOR WHOM
══════════════════════════════════ */
.s-forwhom {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.s-forwhom > .l-container { position: relative; z-index: 1; }
.s-forwhom__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 960px) { .s-forwhom__grid { grid-template-columns: 1fr 1fr; } }
.forwhom-card {
  border-radius: var(--r-xl);
  padding: 2.5rem;
}
.forwhom-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem,2.8vw,2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-top: .75rem;
  margin-bottom: 1.75rem;
}
.forwhom-card--light {
  border: 1px solid var(--dim);
  background: rgba(6,15,30,.8);
}
.forwhom-card--dark {
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
  border: 1px solid var(--dim);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
.area-list { display: flex; flex-direction: column; gap: .85rem; }
.area-item {
  border-radius: var(--r-md);
  border: 1px solid var(--dim);
  background: rgba(255,255,255,.035);
  padding: 1rem 1.25rem;
  transition: border-color .25s, background .25s, transform .25s;
}
.area-item:hover {
  border-color: rgba(109,40,217,.28);
  background: rgba(109,40,217,.06);
  transform: translateX(4px);
}
.area-item h3 { font-size: .95rem; font-weight: 700; color: var(--star); margin-bottom: .3rem; }
.area-item p { font-size: .85rem; line-height: 1.65; }
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.check-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(200,222,255,.82);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5rem;
  width: .6rem;
  height: .6rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #a78bfa, #06b6d4);
  box-shadow: 0 0 8px rgba(167,139,250,.75);
}

/* ══════════════════════════════════
   DIFF
══════════════════════════════════ */
.s-diff {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(4,10,20,.98) 0%, rgba(6,15,30,.95) 100%);
}
.s-diff__scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 3px,
    rgba(255,255,255,.012) 3px, rgba(255,255,255,.012) 4px
  );
  pointer-events: none;
  z-index: 0;
}
.s-diff > .l-container { position: relative; z-index: 1; }
.s-diff__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .s-diff__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .s-diff__grid { grid-template-columns: repeat(5,1fr); } }
.diff-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--dim);
  background: var(--glass);
  padding: 1.6rem;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 42px rgba(0,0,0,.4);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.diff-card__line {
  height: 2px;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  margin-bottom: 1.25rem;
  width: 2.5rem;
  transition: width .4s cubic-bezier(.16,1,.3,1);
}
.diff-card:hover .diff-card__line { width: 100%; }
.diff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(109,40,217,.22);
  border-color: rgba(109,40,217,.28);
}
.diff-card h3 { font-size: 1rem; font-weight: 700; color: var(--star); margin-bottom: .6rem; }
.diff-card p { font-size: .875rem; line-height: 1.7; }
.diff-card:nth-child(1) { border-color: rgba(109,40,217,.14); }
.diff-card:nth-child(2) { border-color: rgba(37,99,235,.12); }
.diff-card:nth-child(3) { border-color: rgba(6,182,212,.13); }
.diff-card:nth-child(4) { border-color: rgba(20,184,166,.12); }
.diff-card:nth-child(5) { border-color: rgba(109,40,217,.11); }

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.s-faq {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.s-faq > .l-container { position: relative; z-index: 1; }
.s-faq__layout {
  display: grid;
  gap: 4rem;
}
@media (min-width: 960px) { .s-faq__layout { grid-template-columns: .8fr 1.2fr; } }
.s-faq__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem,3.5vw,2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-top: .75rem;
}
.s-faq__list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  border-radius: var(--r-lg);
  border: 1px solid var(--dim);
  background: var(--glass);
  padding: 1.25rem 1.5rem;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0,0,0,.5), 0 0 0 1px rgba(109,40,217,.22);
  border-color: rgba(109,40,217,.28);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--star);
  padding-right: 2.5rem;
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  background: linear-gradient(135deg, #a78bfa, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: #a78bfa;
  -webkit-text-fill-color: transparent;
  transition: transform .25s;
  line-height: 1;
}
details.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { margin-top: .85rem; line-height: 1.82; }

/* ══════════════════════════════════
   DEMO CTA
══════════════════════════════════ */
.s-demo {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.s-demo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3,8,16,.98) 0%, rgba(9,21,38,.96) 45%, rgba(6,182,212,.08) 100%);
  z-index: 0;
  pointer-events: none;
}
.s-demo > .l-container { position: relative; z-index: 1; }
.s-demo__layout {
  display: grid;
  gap: 3.5rem;
}
@media (min-width: 960px) { .s-demo__layout { grid-template-columns: .95fr 1.05fr; align-items: start; } }
.s-demo__left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem,3.5vw,2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-top: .75rem;
  margin-bottom: 1rem;
}
.s-demo__left > p { font-size: 1rem; line-height: 1.8; color: rgba(200,222,255,.8); margin-bottom: 2rem; }
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 2rem;
}
.hl-item {
  font-size: .83rem;
  font-weight: 600;
  color: rgba(200,222,255,.82);
  padding: .7rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--dim2);
  background: rgba(255,255,255,.035);
  position: relative;
  padding-left: 1.6rem;
}
.hl-item::before {
  content: '';
  position: absolute;
  left: .7rem;
  top: 50%;
  transform: translateY(-50%);
  width: .5rem;
  height: .5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #a78bfa, #06b6d4);
  box-shadow: 0 0 8px rgba(167,139,250,.75);
}
.s-demo__btns { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── Demo Form ── */
.demo-form-wrap {
  background: rgba(6,15,30,.94);
  border: 1px solid rgba(109,40,217,.2);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.demo-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--star);
  margin-bottom: .4rem;
}
.demo-form-wrap > p { font-size: .875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.demo-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.demo-form label {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  font-size: .83rem;
  font-weight: 600;
  color: rgba(200,218,248,.88);
}
.demo-form input,
.demo-form select,
.demo-form textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: .8rem 1rem;
  font-size: .875rem;
  color: var(--star);
  font-family: var(--font-sans);
  transition: border-color .22s, box-shadow .22s, background .22s;
  outline: none;
  width: 100%;
}
.demo-form input::placeholder { color: rgba(155,178,220,.4); }
.demo-form input:focus,
.demo-form select:focus {
  border-color: rgba(109,40,217,.55);
  box-shadow: 0 0 0 3px rgba(109,40,217,.14);
  background: rgba(109,40,217,.06);
}
.demo-form select option { background: #060f1e; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--dim);
  border-radius: var(--r-md);
  padding: .85rem 1rem;
  font-size: .83rem;
  line-height: 1.65;
  color: var(--muted);
  cursor: pointer;
}
.consent-label input { flex-shrink: 0; margin-top: .25rem; accent-color: var(--violet); }
.btn-submit {
  width: 100%;
  border-radius: 9999px;
  padding: 1rem;
  font-size: .95rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--violet), var(--blue) 50%, var(--cyan));
  background-size: 200% 200%;
  animation: gradientFlow 5s ease infinite, glowPulse 3.5s ease-in-out infinite;
  border: none;
  color: #fff;
  box-shadow: 0 6px 30px var(--vglow);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 44px var(--vglow), 0 0 50px rgba(6,182,212,.2);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.l-footer {
  background: rgba(2,9,18,.95);
  border-top: 1px solid var(--dim);
  padding: 3rem 0;
}
.l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 900px) {
  .l-footer__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.l-footer .l-brand { margin-bottom: .75rem; }
.l-footer p {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(155,178,215,.65);
  max-width: 500px;
}
.l-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.l-footer__nav a {
  font-size: .875rem;
  color: rgba(155,178,215,.65);
  transition: color .22s;
}
.l-footer__nav a:hover { color: rgba(196,181,253,.95); }

/* ══════════════════════════════════
   SCROLLBAR
══════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #020912; }
::-webkit-scrollbar-thumb { background: rgba(109,40,217,.45); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(109,40,217,.65); }

/* ══════════════════════════════════
   KEYFRAMES
══════════════════════════════════ */
@keyframes ringPulse {
  0%,100% { opacity:.38; transform:scale(1); }
  50% { opacity:.88; transform:scale(1.07); }
}
@keyframes barBounce {
  0% { transform:scaleY(.38); }
  100% { transform:scaleY(1); }
}
@keyframes shimmer {
  0% { transform:translateX(-100%) rotate(25deg); }
  100% { transform:translateX(100%) rotate(25deg); }
}
@keyframes gradientFlow {
  0%,100% { background-position:0% 50%; }
  50% { background-position:100% 50%; }
}
@keyframes glowPulse {
  0%,100% { box-shadow:0 6px 30px var(--vglow); }
  50% { box-shadow:0 10px 50px var(--vglow), 0 0 60px rgba(6,182,212,.22); }
}
@keyframes livePulse {
  0%,100% { opacity:1; box-shadow:0 0 8px rgba(239,68,68,.7); }
  50% { opacity:.4; box-shadow:0 0 3px rgba(239,68,68,.3); }
}
@keyframes tickerScroll {
  0% { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}
@keyframes scanMove {
  0% { background-position:0 0; }
  100% { background-position:0 40px; }
}

/* ══════════════════════════════════
   HAMBURGER BUTTON
══════════════════════════════════ */
.l-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--dim2);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: background .2s;
}
.l-nav__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(220,235,255,.85);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.l-nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.l-nav__hamburger.open span:nth-child(2) { opacity: 0; }
.l-nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════
   MOBILE OVERLAY MENU
══════════════════════════════════ */
.l-nav__links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: rgba(2,9,18,0.97);
  border-bottom: 1px solid var(--dim2);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 1.25rem 1.5rem 1.75rem;
  gap: 0;
  z-index: 99;
  animation: fadeDown .22s ease;
}
.l-nav__links.mobile-open a {
  display: block;
  padding: .85rem 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--dim);
  color: rgba(200,220,255,.85);
}
.l-nav__links.mobile-open a:last-child { border-bottom: none; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════
   RESPONSIVE — ≤ 899px (tablet/mobile)
══════════════════════════════════ */
@media (max-width: 899px) {
  .l-nav__hamburger { display: flex; }

  /* Body / base */
  body { background-color: #020912; background: var(--void, #020912); }

  /* Sections padding */
  .s-metrics, .s-cred, .s-pain, .s-benefits,
  .s-segments, .s-how, .s-forwhom, .s-diff,
  .s-faq, .s-demo, .s-digital { position: relative; }

  /* Hero */
  .s-hero__layout {
    padding-top: 3rem;
    padding-bottom: 3rem;
    gap: 2rem;
  }
  .s-hero__content { max-width: 100%; }

  /* Panel glass in hero */
  .panel-glass {
    padding: 1.5rem;
  }
  .s-hero__panel { display: none; }

  /* Metrics */
  .s-metrics__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* Cred */
  .s-cred__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  /* Segments (seg-panel) */
  .seg-panel__inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .seg-panel__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .seg-panel__header h2 {
    font-size: clamp(1.4rem, 4vw, 2rem);
  }

  /* How steps */
  .s-how__steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  /* Forwhom */
  .s-forwhom__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* FAQ */
  .s-faq__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Demo */
  .s-demo__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ══════════════════════════════════
   RESPONSIVE — ≤ 767px (mobile)
══════════════════════════════════ */
@media (max-width: 767px) {
  /* Container padding */
  .l-container { padding: 0 1rem; }

  /* Sections spacing */
  section, .s-cred, .s-ticker { }

  /* Hero */
  .s-hero__layout {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }
  .s-hero__title {
    font-size: clamp(1.9rem, 7.5vw, 2.5rem);
    margin-bottom: 1.1rem;
  }
  .s-hero__sub {
    font-size: .95rem;
    margin-bottom: 1.5rem;
  }
  .s-hero__actions {
    flex-direction: column;
    gap: .75rem;
  }
  .s-hero__actions .btn-primary,
  .s-hero__actions .btn-outline {
    width: 100%;
    justify-content: center;
    padding: .9rem 1.5rem;
  }
  .s-hero__chips {
    gap: .45rem;
  }
  .chip {
    font-size: .78rem;
    padding: .45rem .85rem;
  }
  .s-hero__spectrum { height: 50px; }

  /* Metrics */
  .s-metrics__grid { grid-template-columns: 1fr; gap: .85rem; }
  .metric-card__value { font-size: clamp(1rem, 4.5vw, 1.3rem); }

  /* Cred bar */
  .s-cred__grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Pain */
  .s-pain__layout { grid-template-columns: 1fr; gap: 2rem; }
  .s-pain__cards { grid-template-columns: 1fr; gap: .85rem; }

  /* Benefits */
  .s-benefits__grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Panel glass */
  .panel-glass__grid { grid-template-columns: 1fr; }
  .panel-flow__steps {
    flex-wrap: wrap;
    gap: .5rem;
  }
  .panel-flow__steps .arr { display: none; }

  /* Segments */
  .seg-panel__grid { grid-template-columns: 1fr; gap: .85rem; }
  .seg-panel__inner { padding-top: 2.5rem; padding-bottom: 2.5rem; }

  /* Section heads */
  .s-section-head { margin-bottom: 2rem; }
  .s-section-head h2 { font-size: clamp(1.4rem, 5.5vw, 2rem); }

  /* How */
  .s-how__steps { grid-template-columns: 1fr; gap: .85rem; }

  /* Forwhom */
  .forwhom-card { padding: 2rem 1.25rem; }
  .area-list { gap: 1rem; }

  /* Diff */
  .s-diff__grid { grid-template-columns: 1fr 1fr; gap: .85rem; }

  /* FAQ */
  .faq-item summary { font-size: .95rem; }

  /* Demo / CTA */
  .highlight-grid { grid-template-columns: 1fr; gap: .65rem; }
  .s-demo__btns { flex-direction: column; gap: .75rem; }
  .s-demo__btns .btn-ghost-white,
  .s-demo__btns .btn-white { width: 100%; justify-content: center; }

  /* Footer */
  .l-footer__inner { flex-direction: column; gap: 1.5rem; }
  .l-footer__nav { flex-wrap: wrap; gap: .75rem 1.25rem; }

  /* Nav CTA compact */
  .l-nav__cta .btn-ghost { display: none; }
}

/* ══════════════════════════════════
   RESPONSIVE — ≤ 479px (small phones)
══════════════════════════════════ */
@media (max-width: 479px) {
  .l-nav__inner { padding: 0 1rem; gap: .75rem; }
  .l-brand__name { font-size: .78rem; }

  .s-hero__title { font-size: clamp(1.65rem, 8vw, 2rem); }
  .s-hero__badge { font-size: .66rem; padding: .4rem .85rem; }

  .s-diff__grid { grid-template-columns: 1fr; }

  .metric-card { padding: 1.5rem 1.1rem; }
  .metric-card__value { font-size: clamp(.9rem, 5vw, 1.1rem); }

  .step-card { padding: 1.25rem 1rem; }
  .seg-mod-card { padding: 1.25rem 1rem; }
  .pain-card { padding: 1.5rem 1.1rem; }
  .benefit-card { padding: 1.5rem 1.1rem; }
  .diff-card { padding: 1.5rem 1.1rem; }

  .form-row { grid-template-columns: 1fr !important; }
  .demo-form-wrap { padding: 1.5rem 1.1rem; }

  .s-ticker { height: auto; min-height: 40px; }
  .s-ticker__label { font-size: .6rem; padding: 0 .75rem; }
}

/* ── Responsive (legacy — kept for specificity) ── */
@media (max-width: 640px) {
  .s-pain__cards { grid-template-columns: 1fr; }
  .panel-glass__grid { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
}
