/* ═══════════════════════════════════════════════════════
   Odeon AI — main.css
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --indigo:      #1C1954;
  --indigo-deep: #0D0B2E;
  --indigo-mid:  #2D2A6E;
  --coral:       #F47E60;
  --coral-h:     #E86D4F;
  --lav:         #A78BFA;
  --lav-bg:      #EDE9FE;
  --bg:          #FFFFFF;
  --bg-alt:      #F8FAFC;
  --bg-alt2:     #F1F5F9;
  --text:        #1C1954;
  --text-sec:    #64748B;
  --text-muted:  #94A3B8;
  --border:      #E2E8F0;
  --green:       #10B981;
  --r:           16px;
  --sh-sm: 0 1px 3px rgba(30,27,75,.06),0 1px 2px rgba(30,27,75,.04);
  --sh-md: 0 4px 16px rgba(30,27,75,.08),0 2px 6px rgba(30,27,75,.04);
  --sh-lg: 0 24px 56px rgba(30,27,75,.14),0 8px 18px rgba(30,27,75,.07);
}
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }

/* ── UTILITIES ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 13px; border-radius: 100px;
}
.tag-lav    { background: var(--lav-bg); color: #6D28D9; }
.tag-coral  { background: rgba(244,126,96,.1); color: var(--coral-h); }
.tag-indigo { background: rgba(30,27,75,.07); color: var(--indigo); }
.tag-green  { background: rgba(16,185,129,.1); color: #059669; }
.tag-white  { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.15); }

.section-title {
  font-size: clamp(1.85rem,3.6vw,2.8rem);
  font-weight: 800; letter-spacing: -1.2px; line-height: 1.1;
  color: var(--indigo); margin-bottom: 14px;
}
.section-desc { font-size: 1.05rem; color: var(--text-sec); max-width: 480px; line-height: 1.75; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: #fff;
  padding: 14px 28px; border-radius: 10px;
  font-size: .95rem; font-weight: 700;
  text-decoration: none; cursor: pointer; border: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(244,126,96,.4);
}
.btn-primary:hover { background: var(--coral-h); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(244,126,96,.45); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--indigo);
  padding: 14px 24px; border-radius: 10px;
  font-size: .95rem; font-weight: 600; text-decoration: none;
  border: 1.5px solid rgba(30,27,75,.2);
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--indigo); background: var(--bg-alt); }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.9);
  padding: 10px 20px; border-radius: 9px; font-size: .9rem; font-weight: 600;
  text-decoration: none; border: 1px solid rgba(255,255,255,.18);
  transition: background .2s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.18); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s cubic-bezier(.25,.46,.45,.94), transform .65s cubic-bezier(.25,.46,.45,.94); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }


/* ═══════════════════════════════════════════
   NAV — CLAIRE / LIGHT
   ═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 64px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 44px;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(30, 27, 75, 0.07);
  box-shadow: 0 1px 0 rgba(30,27,75,.04), 0 4px 28px rgba(30,27,75,.07);
  transition: background .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(30,27,75,.08), 0 8px 36px rgba(30,27,75,.09);
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo > div {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
/* Logo image — responsive */
.nav-logo img,
.nav-logo > div img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity .2s;
}
.nav-logo:hover img { opacity: .88; }
/* Legacy icon wrapper */
.nav-logo-icon {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--indigo-mid), var(--lav));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(109,40,217,.2);
}
.nav-logo-icon svg { display: block; }
.nav-logo-text {
  font-size: 1.08rem; font-weight: 800; letter-spacing: -.5px;
  color: var(--indigo);
}

/* Links */
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--text-sec);
  text-decoration: none; padding: 7px 15px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--indigo); background: rgba(30,27,75,.04); }

/* Actions */
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-login {
  font-size: .85rem; font-weight: 600; color: var(--text-sec);
  text-decoration: none; padding: 8px 16px; border-radius: 8px;
  border: 1.5px solid var(--border);
  transition: color .2s, border-color .2s, background .2s;
}
.nav-login:hover { color: var(--indigo); border-color: rgba(30,27,75,.25); background: var(--bg-alt); }
.nav-cta {
  position: relative; overflow: hidden;
  font-size: .85rem; font-weight: 700; color: #fff;
  text-decoration: none; padding: 9px 22px; border-radius: 22px;
  background: linear-gradient(135deg, var(--coral), #F4A060);
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(244,126,96,.35);
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,.15) 50%, transparent 100%);
  transform: translateX(-100%); transition: transform .4s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(244,126,96,.5); }
.nav-cta:hover::before { transform: translateX(100%); }


/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
#hero {
  position: relative;
  background: #07071A;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 50px;
}
.orb { position: absolute; border-radius: 50%; pointer-events: none; will-change: auto; }
.orb-1 { width: 700px; height: 700px; top: -200px; left: -150px; background: radial-gradient(circle at 50% 50%, rgba(45,42,110,.30) 0%, transparent 65%); }
.orb-2 { width: 500px; height: 500px; top: 5%; right: -100px; background: radial-gradient(circle at 50% 50%, rgba(167,139,250,.07) 0%, transparent 65%); }
.orb-3 { width: 450px; height: 450px; bottom: -50px; left: 15%; background: radial-gradient(circle at 50% 50%, rgba(244,126,96,.06) 0%, transparent 65%); }
#hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
#heroWaveCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: .55;
}

.hero-inner {
  position: relative; z-index: 10;
  width: 100%; max-width: 1100px; margin: 0 auto; padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  zoom: 0.80;
}
.hero-left { display: flex; flex-direction: column; align-items: flex-start; }
.hero-badge { animation: fadeUp .7s .1s both; }
.hero-h1    { animation: fadeUp .7s .25s both; }
.hero-desc  { animation: fadeUp .7s .4s both; }
.hero-btns  { animation: fadeUp .7s .55s both; }
.hero-trust { animation: fadeUp .7s .7s both; }
@keyframes fadeUp { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:none} }

.hero-h1 {
  font-size: clamp(2.2rem,4.5vw,3.6rem);
  font-weight: 800; letter-spacing: -1.8px; line-height: 1.08;
  color: #fff; margin: 14px 0 20px;
}
.hero-h1 .grad {
  background: linear-gradient(135deg, #A78BFA 0%, #F47E60 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc-text { font-size: 1.05rem; color: rgba(255,255,255,.58); line-height: 1.75; max-width: 420px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── TRUST PILLS — prominent, frosted glass ── */
.hero-trust { display: flex; gap: 10px; margin-top: 36px; flex-wrap: wrap; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 18px; border-radius: 100px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  font-size: .81rem; font-weight: 600; color: rgba(255,255,255,.9);
  letter-spacing: .1px;
  transition: background .2s, border-color .2s, transform .2s;
}
.trust-pill:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); transform: translateY(-1px); }
.trust-pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,.22), 0 0 10px rgba(16,185,129,.55);
  flex-shrink: 0; animation: trustPulse 2.5s ease-in-out infinite;
}
@keyframes trustPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(16,185,129,.22), 0 0 10px rgba(16,185,129,.55); }
  50%      { box-shadow: 0 0 0 5px rgba(16,185,129,.12), 0 0 16px rgba(16,185,129,.7); }
}
.trust-pill-icon {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(16,185,129,.18); border: 1px solid rgba(16,185,129,.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green);
}

/* ── HERO VISUAL 3D — Phone + Tilt ── */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  animation: fadeUp .8s .35s both;
  perspective: 1200px; perspective-origin: 55% 50%;
  padding: 50px 90px 80px 80px; /* room for phone notif + floating pills */
}
/* 3D tilt wrapper — JS lerp parallax applied here */
.phone-tilt-wrap {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(4deg) rotateY(-12deg);
  will-change: transform; cursor: default;
}
/* Keep cmd-wrap alias for backward compat */
.hero-cmd-wrap {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(5deg) rotateY(-14deg);
  will-change: transform; cursor: default;
}
.hero-cmd {
  width: 320px;
  background: rgba(11, 10, 30, 0.90);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px; padding: 22px;
  box-shadow: 0 48px 110px rgba(0,0,0,.65), 0 0 0 1px rgba(167,139,250,.1),
              inset 0 1px 0 rgba(255,255,255,.08);
  position: relative;
}
.hero-cmd::before {
  content: ''; position: absolute;
  top: 0; left: 28px; right: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,.65), rgba(244,126,96,.4), transparent);
  border-radius: 1px;
}

/* ── Cmd header ── */
.cmd-header {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cmd-brand {
  display: flex; align-items: center; gap: 7px; flex: 1;
  font-size: .79rem; font-weight: 700; color: rgba(255,255,255,.75);
}
.cmd-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,.2), 0 0 8px rgba(16,185,129,.55);
  flex-shrink: 0; animation: trustPulse 2.5s ease-in-out infinite;
}
.cmd-badge {
  font-size: .58rem; font-weight: 800; letter-spacing: .8px;
  text-transform: uppercase; padding: 3px 8px; border-radius: 20px;
  background: rgba(16,185,129,.14); border: 1px solid rgba(16,185,129,.28);
  color: var(--green); white-space: nowrap;
}
.cmd-timer-display {
  font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.32);
  font-variant-numeric: tabular-nums; letter-spacing: 1.5px; white-space: nowrap;
}

/* ── Call row ── */
.cmd-call-row {
  display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 11px 13px; margin-bottom: 14px;
}
.cmd-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo-mid), var(--lav));
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; color: #fff;
  border: 1.5px solid rgba(255,255,255,.12); flex-shrink: 0;
}
.cmd-caller-info { flex: 1; min-width: 0; }
.cmd-caller-name { font-size: .82rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cmd-caller-sub  { font-size: .67rem; color: rgba(255,255,255,.38); margin-top: 1px; }
.cmd-phone-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); flex-shrink: 0;
}
.cmd-lucide-sm { width: 13px !important; height: 13px !important; display: block !important; }

/* ── Waveform ── */
.cmd-wave {
  display: flex; align-items: center; gap: 2.5px; height: 26px; margin-bottom: 14px;
}
.cmd-wave-bar {
  flex: 1; border-radius: 2px;
  background: linear-gradient(180deg, var(--lav), var(--coral));
  animation: barAnim 1.2s ease-in-out infinite;
}
.cmd-wave-bar:nth-child(1){animation-delay:0s}
.cmd-wave-bar:nth-child(2){animation-delay:.10s}
.cmd-wave-bar:nth-child(3){animation-delay:.20s}
.cmd-wave-bar:nth-child(4){animation-delay:.30s}
.cmd-wave-bar:nth-child(5){animation-delay:.40s}
.cmd-wave-bar:nth-child(6){animation-delay:.50s}
.cmd-wave-bar:nth-child(7){animation-delay:.60s}
.cmd-wave-bar:nth-child(8){animation-delay:.70s}
.cmd-wave-bar:nth-child(9){animation-delay:.80s}
.cmd-wave-bar:nth-child(10){animation-delay:.90s}
.cmd-wave-bar:nth-child(11){animation-delay:.15s}
.cmd-wave-bar:nth-child(12){animation-delay:.45s}
@keyframes barAnim { 0%,100%{transform:scaleY(.28)} 50%{transform:scaleY(1)} }

/* ── Transcript ── */
.cmd-transcript { margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.cmd-bubble { display: flex; gap: 7px; align-items: flex-start; }
.cmd-bubble-user { flex-direction: row-reverse; }
.cmd-bub-dot {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .5rem; font-weight: 800; color: #fff;
}
.cmd-bub-dot-ai   { background: linear-gradient(135deg, var(--indigo-mid), var(--lav)); }
.cmd-bub-dot-user { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); }
.cmd-bub-text { font-size: .66rem; line-height: 1.55; padding: 7px 10px; max-width: 82%; color: rgba(255,255,255,.72); }
.cmd-bubble-ai   .cmd-bub-text { background: rgba(45,42,110,.65); border: 1px solid rgba(167,139,250,.14); border-radius: 3px 10px 10px 10px; }
.cmd-bubble-user .cmd-bub-text { background: rgba(244,126,96,.1); border: 1px solid rgba(244,126,96,.18); border-radius: 10px 3px 10px 10px; }

/* ── Stats ── */
.cmd-stats { display: flex; gap: 6px; }
.cmd-stat {
  flex: 1; text-align: center;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px; padding: 8px 4px;
}
.cmd-stat-val { font-size: .92rem; font-weight: 800; }
.cmd-stat-lbl { font-size: .58rem; color: rgba(255,255,255,.3); margin-top: 2px; letter-spacing: .3px; text-transform: uppercase; }

/* ── Floating satellite pills ── */
.float-pill {
  position: absolute;
  display: flex; align-items: center; gap: 9px;
  background: rgba(11, 10, 30, 0.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.13); border-radius: 14px;
  padding: 9px 13px; box-shadow: 0 16px 40px rgba(0,0,0,.45);
  white-space: nowrap; animation: floatBob 3.5s ease-in-out infinite;
}
.float-pill-score { top: -20px; right: -78px; animation-duration: 3.2s; animation-delay: 0s; }
.float-pill-sms   { bottom: 60px; right: -76px; animation-delay: 1.1s; animation-duration: 4s; }
.float-pill-rdv   { bottom: -18px; left: -64px; animation-delay: 2s; animation-duration: 3.7s; }
@keyframes floatBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.float-pill-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.float-pill-text { font-size: .71rem; line-height: 1.4; }
.float-pill-text strong { color: #fff; display: block; font-size: .74rem; font-weight: 700; }
.float-pill-text span   { color: rgba(255,255,255,.42); font-size: .65rem; }


/* Float pill positions tuned for phone form-factor */
.float-pill-score { top: 36px;  right: -86px; animation-duration: 3.2s; animation-delay: 0s; }
.float-pill-sms   { top: 230px; right: -84px; animation-delay: 1.1s; animation-duration: 4s; }
.float-pill-rdv   { top: 160px; left: -82px;  animation-delay: 2s;   animation-duration: 3.7s; }


/* ═══════════════════════════════════════════
   HERO — PHONE MOCKUP (3D-tilted)
   ═══════════════════════════════════════════ */
.phone-hero {
  width: 260px; background: #111128; border-radius: 40px;
  border: 2px solid rgba(255,255,255,.12); padding: 12px;
  box-shadow: 0 48px 120px rgba(0,0,0,.7),
              0 0 0 1px rgba(167,139,250,.18),
              inset 0 1px 0 rgba(255,255,255,.09);
  position: relative;
}
.phone-hero-screen {
  border-radius: 30px; overflow: hidden; background: #0D0D24;
  /* height determined by content — no min-height squish */
  display: flex; flex-direction: column;
}
.ph-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px 8px; font-size: .62rem; font-weight: 600;
  color: rgba(255,255,255,.7); flex-shrink: 0;
}
.ph-call-screen {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 16px 20px; text-align: center;
}
.ph-call-label {
  font-size: .63rem; font-weight: 600; color: rgba(255,255,255,.38);
  margin-bottom: 14px; letter-spacing: 1.2px; text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
}
.ph-call-label svg { width: 10px; height: 10px; color: var(--green); }

/* Avatar + rings
   Rings extend beyond the 88px wrap (inset: -10/-18/-26 = max 26px out).
   Top/bottom margin must clear that extension so text never overlaps. */
.ph-avatar-wrap {
  position: relative; width: 88px; height: 88px;
  /* 30px clears ring extension; gives breathing room on both sides */
  margin: 30px auto 34px;
  flex-shrink: 0;
}
.ph-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(167,139,250,.35);
  animation: ringPulse 2.2s ease-out infinite;
}
/* Reduced inset so rings stay within the space allocated by avatar margins */
.ph-ring-1 { inset: -10px; animation-delay: 0s; }
.ph-ring-2 { inset: -18px; animation-delay: .55s; opacity: .55; }
.ph-ring-3 { inset: -26px; animation-delay: 1.1s; opacity: .28; }
@keyframes ringPulse { 0%{opacity:.8;transform:scale(.92)} 100%{opacity:0;transform:scale(1.18)} }
.ph-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo-mid), var(--lav));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: #fff;
  border: 2px solid rgba(255,255,255,.15); position: relative; z-index: 2;
}
.ph-caller-name { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.ph-caller-sub  { font-size: .7rem; color: rgba(255,255,255,.38); margin-bottom: 18px; }
.ph-waveform { display: flex; align-items: center; gap: 3px; height: 28px; margin-bottom: 12px; }
.ph-bar {
  width: 3px; border-radius: 3px;
  background: linear-gradient(180deg, var(--lav), var(--coral));
  animation: barAnim 1.2s ease-in-out infinite;
}
.ph-bar:nth-child(1){height:9px;animation-delay:0s}
.ph-bar:nth-child(2){height:20px;animation-delay:.15s}
.ph-bar:nth-child(3){height:26px;animation-delay:.3s}
.ph-bar:nth-child(4){height:16px;animation-delay:.45s}
.ph-bar:nth-child(5){height:28px;animation-delay:.6s}
.ph-bar:nth-child(6){height:22px;animation-delay:.75s}
.ph-bar:nth-child(7){height:13px;animation-delay:.9s}
.ph-bar:nth-child(8){height:24px;animation-delay:1.05s}
.ph-bar:nth-child(9){height:18px;animation-delay:.2s}
.ph-bar:nth-child(10){height:11px;animation-delay:.5s}
.ph-timer {
  font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.45);
  font-variant-numeric: tabular-nums; letter-spacing: 1px;
}
.ph-transcript {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px; padding: 9px 12px; margin-top: 10px; text-align: left; width: 100%;
}
.ph-transcript-line { font-size: .66rem; color: rgba(255,255,255,.52); line-height: 1.55; }
.ph-transcript-line strong { color: var(--lav); font-weight: 700; }
/* AI badge top-corner */
.ph-ai-badge {
  position: absolute; top: -13px; right: -13px;
  background: linear-gradient(135deg, var(--coral), #F4A060);
  color: #fff; font-size: .63rem; font-weight: 800;
  padding: 5px 11px; border-radius: 20px; letter-spacing: .5px;
  box-shadow: 0 4px 16px rgba(244,126,96,.55);
  animation: badgeBounce 3.2s ease-in-out infinite;
  display: flex; align-items: center; gap: 4px; white-space: nowrap;
}
.ph-ai-badge svg { width: 9px; height: 9px; }
@keyframes badgeBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
/* SMS notification overlay */
.ph-notif {
  position: absolute; bottom: -22px; left: -44px; right: -44px;
  background: rgba(11,10,32,.92); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 11px 14px;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  animation: notifSlide 1s .8s both;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
@keyframes notifSlide { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:none} }
.ph-notif-inner { display: flex; align-items: center; gap: 10px; }
.ph-notif-icon {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--indigo-mid), var(--lav));
  display: flex; align-items: center; justify-content: center;
}
.ph-notif-icon svg { width: 14px; height: 14px; color: #fff; display: block; }
.ph-notif-text { font-size: .7rem; line-height: 1.5; }
.ph-notif-text strong { color: #fff; display: block; font-size: .72rem; }
.ph-notif-text span   { color: rgba(255,255,255,.5); }


/* ═══════════════════════════════════════════
   INDUSTRY STRIP — attractive marquee
   "Conçu pour les professionnels…"
   ═══════════════════════════════════════════ */
.industry-strip {
  padding: 60px 0 56px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.industry-strip-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 24px;
}
.strip-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral-h);
  margin-bottom: 10px;
}
.industry-strip-header h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  font-weight: 800; letter-spacing: -.7px; line-height: 1.25;
  color: var(--indigo); max-width: 680px; margin: 0 auto;
}
.industry-strip-header h2 .hl {
  background: linear-gradient(135deg, #6D28D9 0%, var(--coral) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Fade edges */
.marquee-outer {
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 32s linear infinite;
  width: max-content;
}
.marquee-track:hover,
.marquee-outer:hover .marquee-track { animation-play-state: paused; }
/* Each set has its own gap + a trailing padding-right equal to gap,
   so the loop junction is pixel-perfect at -50% */
.marquee-set {
  display: flex; gap: 14px;
  padding-right: 14px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* Chip cards */
.industry-chip {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 20px; border-radius: 16px; white-space: nowrap;
  background: var(--bg); border: 1.5px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: default;
}
.industry-chip:hover {
  transform: translateY(-3px); box-shadow: var(--sh-md);
  border-color: rgba(167,139,250,.35);
}
.chip-icon {
  width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chip-text { display: flex; flex-direction: column; }
.chip-name { font-size: .85rem; font-weight: 800; color: var(--indigo); line-height: 1.2; }
.chip-sub  { font-size: .7rem; color: var(--text-muted); margin-top: 2px; }


/* ═══════════════════════════════════════════
   PROBLEM
   ═══════════════════════════════════════════ */
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.problem-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 28px 26px;
  box-shadow: var(--sh-md); transition: transform .3s, box-shadow .3s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.problem-icon-wrap { width: 46px; height: 46px; border-radius: 13px; background: rgba(244,126,96,.08); border: 1.5px solid rgba(244,126,96,.15); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--coral-h); }
.sol-icon-wrap { width: 46px; height: 46px; border-radius: 13px; background: var(--lav-bg); border: 1.5px solid rgba(167,139,250,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: #6D28D9; }
.problem-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--indigo); margin-bottom: 8px; }
.problem-card p  { font-size: .88rem; color: var(--text-sec); line-height: 1.7; }
.problem-stat { display: inline-flex; margin-top: 14px; font-size: .78rem; font-weight: 700; color: #DC2626; background: rgba(220,38,38,.07); padding: 4px 10px; border-radius: 20px; }


/* ═══════════════════════════════════════════
   SOLUTION
   ═══════════════════════════════════════════ */
.solution-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.solution-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 30px 26px;
  box-shadow: var(--sh-sm); position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.solution-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--lav), var(--coral));
  opacity: 0; transition: opacity .3s;
}
.solution-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: rgba(167,139,250,.3); }
.solution-card:hover::before { opacity: 1; }
.sol-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--lav-bg); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 18px; }
.solution-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--indigo); margin-bottom: 8px; }
.solution-card p  { font-size: .88rem; color: var(--text-sec); line-height: 1.7; }
.mode-badge { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 9px; font-size: .8rem; font-weight: 600; }
.mode-badge .mode-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mode-off    { background: var(--bg-alt2); color: var(--text-sec); }
.mode-off .mode-dot    { background: var(--text-muted); }
.mode-relay  { background: rgba(167,139,250,.1); color: #5B21B6; border: 1px solid rgba(167,139,250,.2); }
.mode-relay .mode-dot  { background: var(--lav); box-shadow: 0 0 6px rgba(167,139,250,.6); }
.mode-full   { background: rgba(244,126,96,.08); color: var(--coral-h); border: 1px solid rgba(244,126,96,.15); }
.mode-full .mode-dot   { background: var(--coral); box-shadow: 0 0 6px rgba(244,126,96,.5); }


/* ═══════════════════════════════════════════
   HOW IT WORKS — Horizontal narrative timeline (5 steps)
   ═══════════════════════════════════════════ */
#how {
  background: linear-gradient(180deg, #07071A 0%, #0D0B2E 100%);
  position: relative;
  overflow: hidden;
}
#how::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(167,139,250,.18) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
#how::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,126,96,.14) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
#how > .container { position: relative; z-index: 1; }

/* ── Timeline outer container ── */
.how-timeline {
  margin-top: 60px;
  margin-bottom: 40px;
}

/* ── The track (5-column grid + connective line) ── */
.how-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Connective horizontal line running behind the number badges */
.how-track-line {
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(167,139,250,.4) 15%,
    rgba(167,139,250,.55) 40%,
    rgba(244,126,96,.55) 60%,
    rgba(244,126,96,.4) 85%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
  border-radius: 100px;
}

/* ── Card ── */
.how-card {
  position: relative;
  z-index: 1;
  padding: 24px 20px 22px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.how-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167,139,250,.3);
  background: rgba(255,255,255,.06);
}

/* Featured card — step 2 */
.how-card-featured {
  background: linear-gradient(160deg, rgba(244,126,96,.1) 0%, rgba(167,139,250,.08) 100%);
  border-color: rgba(244,126,96,.35);
  box-shadow: 0 24px 60px rgba(244,126,96,.15), 0 0 0 1px rgba(244,126,96,.15);
  transform: translateY(-8px);
}
.how-card-featured:hover {
  transform: translateY(-12px);
  border-color: rgba(244,126,96,.55);
}

.how-featured-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--coral) 0%, #E86D4F 100%);
  color: #fff;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(244,126,96,.4);
  z-index: 2;
}

/* Card head — number badge + icon side by side */
.how-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

/* Big number badge */
.how-badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo-mid) 0%, var(--lav) 100%);
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: -.5px;
  display: flex; align-items: center; justify-content: center;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 6px 20px rgba(167,139,250,.4), inset 0 1px 1px rgba(255,255,255,.25);
  border: 2px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}
.how-badge-coral {
  background: linear-gradient(135deg, var(--coral) 0%, #E86D4F 100%);
  box-shadow: 0 8px 24px rgba(244,126,96,.5), inset 0 1px 1px rgba(255,255,255,.3);
}

/* Small icon on the right of head */
.how-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(167,139,250,.13);
  color: var(--lav);
  border: 1px solid rgba(167,139,250,.22);
}
.how-icon-coral {
  background: rgba(244,126,96,.14);
  color: var(--coral);
  border-color: rgba(244,126,96,.28);
}

/* Card text */
.how-card h3 {
  font-size: .98rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
  margin-bottom: 6px;
  line-height: 1.3;
}
.how-card p {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ── Mini-visuals (proof-of-concept previews) ── */
.how-visual {
  margin-top: auto;
  padding: 12px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  min-height: 78px;
}

/* Visual 1 — Ringing phone */
.how-visual-ringing {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}
.hv-phone {
  position: relative;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--lav), var(--coral));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  animation: hv-phone-shake 1.4s ease-in-out infinite;
}
@keyframes hv-phone-shake {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(-15deg); }
  30% { transform: rotate(15deg); }
  45% { transform: rotate(-8deg); }
  60% { transform: rotate(8deg); }
  75% { transform: rotate(0deg); }
}
.hv-ring {
  position: absolute;
  top: 50%; left: 12px;
  width: 32px; height: 32px;
  border: 2px solid var(--lav);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: hv-ring-pulse 1.8s ease-out infinite;
  opacity: 0;
  pointer-events: none;
}
.hv-ring-2 { animation-delay: .9s; }
@keyframes hv-ring-pulse {
  0%   { transform: translateY(-50%) scale(.6); opacity: .6; }
  100% { transform: translateY(-50%) scale(2); opacity: 0; }
}
.hv-caller { z-index: 2; }
.hv-caller-name { font-size: .78rem; font-weight: 700; color: #fff; letter-spacing: -.2px; font-variant-numeric: tabular-nums; }
.hv-caller-sub { font-size: .68rem; color: var(--coral); font-weight: 600; letter-spacing: .3px; text-transform: uppercase; }

/* Visual 2 — Compact mode badges */
.how-modes-mini {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-height: unset;
}
.how-modes-mini .mode-badge {
  font-size: .7rem;
  padding: 6px 9px;
  border-radius: 7px;
  gap: 7px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.08);
  line-height: 1.3;
}
.how-modes-mini .mode-badge .mode-dot { width: 6px; height: 6px; }
.how-modes-mini .mode-badge strong { color: #fff; font-weight: 700; margin-right: 2px; }
.how-modes-mini .mode-off {
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.55);
}
.how-modes-mini .mode-off .mode-dot { background: rgba(255,255,255,.4); box-shadow: none; }
.how-modes-mini .mode-relay {
  background: rgba(167,139,250,.12);
  border-color: rgba(167,139,250,.3);
}
.how-modes-mini .mode-full {
  background: rgba(244,126,96,.12);
  border-color: rgba(244,126,96,.3);
}

/* Visual 3 — Audio waveform */
.how-visual-wave {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  padding: 12px;
  height: 78px;
}
.how-visual-wave span {
  flex: 1;
  min-width: 3px;
  border-radius: 100px;
  background: linear-gradient(180deg, var(--lav) 0%, var(--coral) 100%);
  animation: hv-wave 1.4s ease-in-out infinite;
}
@keyframes hv-wave {
  0%, 100% { height: 20%; opacity: .5; }
  50%      { height: 90%; opacity: 1; }
}
.how-visual-wave span:nth-child(1)  { animation-delay: 0.00s; }
.how-visual-wave span:nth-child(2)  { animation-delay: 0.06s; }
.how-visual-wave span:nth-child(3)  { animation-delay: 0.12s; }
.how-visual-wave span:nth-child(4)  { animation-delay: 0.18s; }
.how-visual-wave span:nth-child(5)  { animation-delay: 0.24s; }
.how-visual-wave span:nth-child(6)  { animation-delay: 0.30s; }
.how-visual-wave span:nth-child(7)  { animation-delay: 0.36s; }
.how-visual-wave span:nth-child(8)  { animation-delay: 0.42s; }
.how-visual-wave span:nth-child(9)  { animation-delay: 0.48s; }
.how-visual-wave span:nth-child(10) { animation-delay: 0.54s; }
.how-visual-wave span:nth-child(11) { animation-delay: 0.60s; }
.how-visual-wave span:nth-child(12) { animation-delay: 0.66s; }
.how-visual-wave span:nth-child(13) { animation-delay: 0.72s; }
.how-visual-wave span:nth-child(14) { animation-delay: 0.78s; }
.how-visual-wave span:nth-child(15) { animation-delay: 0.84s; }
.how-visual-wave span:nth-child(16) { animation-delay: 0.90s; }
.how-visual-wave span:nth-child(17) { animation-delay: 0.96s; }
.how-visual-wave span:nth-child(18) { animation-delay: 1.02s; }
.how-visual-wave span:nth-child(19) { animation-delay: 1.08s; }
.how-visual-wave span:nth-child(20) { animation-delay: 1.14s; }

/* Visual 4 — SMS bubble */
.how-visual-sms {
  padding: 10px;
}
.hv-sms-bubble {
  background: linear-gradient(135deg, rgba(16,185,129,.14) 0%, rgba(16,185,129,.08) 100%);
  border: 1px solid rgba(16,185,129,.25);
  border-radius: 10px;
  padding: 9px 12px;
  position: relative;
}
.hv-sms-head {
  display: flex; align-items: center; gap: 5px;
  font-size: .62rem;
  font-weight: 700;
  color: #10B981;
  letter-spacing: .3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hv-sms-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px rgba(16,185,129,.6);
  animation: hv-sms-pulse 1.6s ease-in-out infinite;
}
@keyframes hv-sms-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.3); }
}
.hv-sms-body {
  font-size: .74rem;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
.hv-sms-body strong { color: #fff; font-weight: 700; }

/* Visual 5 — Leads list */
.how-visual-list {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hv-list-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 9px;
  border-radius: 7px;
  background: rgba(255,255,255,.04);
  font-size: .72rem;
}
.hv-list-badge {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.hv-list-hot {
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.25);
}
.hv-list-hot .hv-list-badge { background: rgba(16,185,129,.3); color: #10B981; }
.hv-list-hot .hv-list-name { color: #fff; font-weight: 600; }
.hv-list-warm .hv-list-badge { background: rgba(251,191,36,.2); color: #FBBF24; }
.hv-list-warm .hv-list-name { color: rgba(255,255,255,.75); }
.hv-list-cold .hv-list-badge { background: rgba(255,255,255,.08); color: rgba(255,255,255,.5); }
.hv-list-cold .hv-list-name { color: rgba(255,255,255,.4); text-decoration: line-through; }
.hv-list-name { flex: 1; font-size: .72rem; }
.hv-list-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #10B981;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── Reassurance strip ── */
.how-reassurance {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 40px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.how-reassurance span {
  display: inline-flex; align-items: center; gap: 6px;
}
.how-reassurance i {
  width: 14px; height: 14px;
  color: rgba(167,139,250,.7);
}
.how-reassurance-sep {
  color: rgba(255,255,255,.2);
  font-weight: 400;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .how-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .how-track-line { display: none; }
  .how-card-featured { transform: none; grid-column: 1 / -1; }
  .how-card-featured:hover { transform: translateY(-4px); }
}
@media (max-width: 560px) {
  .how-track {
    grid-template-columns: 1fr;
  }
  .how-card-featured { grid-column: 1; }
  .how-reassurance { font-size: .76rem; gap: 6px 10px; }
  .how-reassurance-sep { display: none; }
}


/* ═══════════════════════════════════════════
   DEMO — PHONE CALL
   ═══════════════════════════════════════════ */
.demo-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 56px; }
.demo-phone-wrap { display: flex; justify-content: center; position: relative; }
.demo-phone {
  width: 300px; background: #111128; border-radius: 44px;
  border: 2px solid rgba(255,255,255,.1); padding: 14px;
  box-shadow: 0 48px 120px rgba(0,0,0,.35), 0 0 0 1px rgba(167,139,250,.1);
  position: relative;
}
.demo-phone-screen {
  border-radius: 34px; overflow: hidden; background: #0A0A20; min-height: 560px;
  display: flex; flex-direction: column;
}
.demo-call-header {
  background: linear-gradient(180deg, rgba(30,27,75,1) 0%, rgba(13,11,46,1) 100%);
  padding: 18px 20px 24px; text-align: center;
}
.demo-call-header .call-status {
  font-size: .65rem; font-weight: 700; color: var(--green); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 16px; display: flex;
  align-items: center; justify-content: center; gap: 6px;
}
.call-status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.demo-avatar-wrap { position: relative; width: 80px; height: 80px; margin: 0 auto 12px; }
.demo-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(16,185,129,.25); animation: demoRing 2.5s ease-out infinite; }
.demo-ring-1 { inset: -12px; }
.demo-ring-2 { inset: -22px; animation-delay: .7s; opacity: .6; }
@keyframes demoRing { 0%{transform:scale(.9);opacity:.8} 100%{transform:scale(1.15);opacity:0} }
.demo-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #2D2A6E, var(--lav));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; color: #fff;
  position: relative; z-index: 2;
}
.demo-caller-name { font-size: 1rem; font-weight: 700; color: #fff; }
.demo-caller-info { font-size: .7rem; color: rgba(255,255,255,.4); margin-top: 3px; }
.demo-waveform-zone { padding: 16px 20px; border-top: 1px solid rgba(255,255,255,.05); }
.demo-wave-label { font-size: .62rem; color: rgba(255,255,255,.3); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.demo-wave-bars { display: flex; align-items: center; gap: 2px; height: 36px; }
.demo-bar { flex: 1; border-radius: 2px; background: linear-gradient(180deg, var(--lav) 0%, var(--coral) 100%); animation: demoBarAnim 1.4s ease-in-out infinite; }
.demo-bar:nth-child(odd)  { animation-delay: 0s; }
.demo-bar:nth-child(even) { animation-delay: .35s; }
@keyframes demoBarAnim { 0%,100%{transform:scaleY(.25);opacity:.5} 50%{transform:scaleY(1);opacity:1} }
.demo-timer { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.4); letter-spacing: 2px; text-align: right; margin-top: 6px; }
.demo-transcript-zone { flex: 1; padding: 14px 16px; overflow: hidden; }
.demo-t-row { display: flex; gap: 8px; margin-bottom: 10px; }
.demo-t-row.ai   { flex-direction: row; }
.demo-t-row.user { flex-direction: row-reverse; }
.demo-t-bubble-ai   { background: rgba(45,42,110,.7); border: 1px solid rgba(167,139,250,.15); color: rgba(255,255,255,.8); padding: 8px 12px; border-radius: 4px 12px 12px 12px; font-size: .68rem; line-height: 1.55; max-width: 80%; }
.demo-t-bubble-user { background: rgba(244,126,96,.12); border: 1px solid rgba(244,126,96,.2); color: rgba(255,255,255,.7); padding: 8px 12px; border-radius: 12px 4px 12px 12px; font-size: .68rem; line-height: 1.55; max-width: 80%; }
.demo-t-dot { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .55rem; font-weight: 800; color: #fff; }
.demo-t-dot.ai   { background: linear-gradient(135deg, var(--indigo-mid), var(--lav)); }
.demo-t-dot.user { background: rgba(255,255,255,.1); color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.15); }
.demo-score-badge {
  margin: 0 14px 6px; padding: 8px 14px;
  background: rgba(167,139,250,.12); border: 1px solid rgba(167,139,250,.25);
  border-radius: 9px; display: flex; align-items: center; gap: 8px;
  font-size: .66rem; font-weight: 700; color: var(--lav);
}
.demo-score-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lav); box-shadow: 0 0 6px rgba(167,139,250,.7); flex-shrink: 0; }
.demo-result { margin: 0 14px 14px; padding: 10px 14px; background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.25); border-radius: 10px; display: flex; align-items: center; gap: 8px; }
.demo-result span { font-size: .68rem; font-weight: 700; color: #10B981; }
.demo-right { display: flex; flex-direction: column; gap: 20px; }
.demo-info-card {
  background: var(--bg-alt); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 22px 24px; box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s;
}
.demo-info-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.demo-info-card h4 { font-size: .88rem; font-weight: 800; color: var(--indigo); margin-bottom: 6px; }
.demo-info-card p  { font-size: .84rem; color: var(--text-sec); line-height: 1.65; }
.sms-preview {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 20px 22px; box-shadow: var(--sh-md);
}
.sms-header { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.sms-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--indigo); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .78rem; font-weight: 800; }
.sms-body { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 10px; padding: 14px; font-size: .8rem; color: var(--text); line-height: 1.75; }


/* ═══════════════════════════════════════════
   USE CASES TABS
   ═══════════════════════════════════════════ */
#usecases { background: var(--bg-alt); }
.tabs-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 40px; }
.tab-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 9px; font-size: .88rem; font-weight: 700;
  background: var(--bg); border: 1.5px solid var(--border);
  color: var(--text-sec); cursor: pointer; transition: all .2s;
}
.tab-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.tab-btn.active { background: var(--indigo); color: #fff; border-color: var(--indigo); box-shadow: 0 4px 14px rgba(30,27,75,.2); }
.tab-btn:hover:not(.active) { border-color: var(--indigo); color: var(--indigo); }
.tab-pane { display: none; }
.tab-pane.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.uc-left h3 { font-size: 1.5rem; font-weight: 800; color: var(--indigo); letter-spacing: -.5px; margin-bottom: 10px; }
.uc-left p  { font-size: .9rem; color: var(--text-sec); line-height: 1.75; margin-bottom: 20px; }
.uc-features { display: flex; flex-direction: column; gap: 10px; }
.uc-feat { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--text); line-height: 1.55; }
.uc-feat::before { content: '✓'; min-width: 20px; height: 20px; border-radius: 50%; background: var(--lav-bg); color: #6D28D9; font-size: .72rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-top: 1px; flex-shrink: 0; }
.call-sim {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 20px; overflow: hidden; box-shadow: var(--sh-md);
}
.call-sim-header { background: var(--indigo); padding: 14px 18px; display: flex; align-items: center; gap: 10px; }
.call-sim-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px rgba(16,185,129,.5); }
.call-sim-title { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.6); }
.call-sim-time  { margin-left: auto; font-size: .75rem; font-weight: 700; color: var(--coral); }
.call-sim-body  { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.sim-msg { display: flex; gap: 9px; }
.sim-msg.user { flex-direction: row-reverse; }
.sim-dot { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 700; color: #fff; }
.sim-dot.ai   { background: var(--coral); }
.sim-dot.user { background: var(--bg-alt2); color: var(--text-sec); border: 1px solid var(--border); }
.sim-bubble.ai   { background: var(--indigo); color: rgba(255,255,255,.88); padding: 9px 13px; border-radius: 4px 12px 12px 12px; font-size: .82rem; line-height: 1.55; }
.sim-bubble.user { background: var(--bg-alt); border: 1px solid var(--border); color: var(--text); padding: 9px 13px; border-radius: 12px 4px 12px 12px; font-size: .82rem; line-height: 1.55; }
.call-sim-footer { padding: 12px 18px; background: var(--bg-alt); border-top: 1px solid var(--border); }
.sim-tag { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 700; color: #059669; background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.2); padding: 5px 12px; border-radius: 7px; }


/* ═══════════════════════════════════════════
   TRUST / SECURITY
   ═══════════════════════════════════════════ */
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.trust-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 26px 22px; text-align: center;
  box-shadow: var(--sh-sm); transition: transform .3s, box-shadow .3s;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.trust-icon-big {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; flex-shrink: 0;
}
.trust-icon-big svg { width: 26px; height: 26px; }
.trust-icon-purple { background: rgba(109,40,217,.1); color: #6D28D9; }
.trust-icon-blue   { background: rgba(14,165,233,.1); color: #0EA5E9; }
.trust-icon-slate  { background: rgba(30,27,75,.08); color: var(--indigo); }
.trust-icon-green  { background: rgba(16,185,129,.1); color: #059669; }
.trust-card h3 { font-size: .95rem; font-weight: 800; color: var(--indigo); margin-bottom: 6px; }
.trust-card p  { font-size: .82rem; color: var(--text-sec); line-height: 1.65; }


/* ═══════════════════════════════════════════
   SOCIAL PROOF
   ═══════════════════════════════════════════ */
/* ── Section : compact rhythm variant ── */
.section-tight { padding: 68px 0; }

/* ── Proof metrics — dense wrapper card with gradient background ── */
.proof-metrics {
  position: relative;
  max-width: 960px;
  margin: 0 auto 40px;
  padding: 32px 28px;
  background: linear-gradient(135deg, #fff 0%, var(--bg) 60%, rgba(167,139,250,.06) 100%);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--sh-md);
  overflow: hidden;
}
.proof-metrics::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(244,126,96,.08) 0%, transparent 60%);
  pointer-events: none;
}

.metrics-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  margin-bottom: 0;
}
.metric-card {
  text-align: center;
  padding: 22px 18px;
  background: transparent;
  border: none;
  border-radius: 16px;
  box-shadow: none;
  position: relative;
  transition: background .2s;
}
.metric-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22%; bottom: 22%; right: -4px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}
.metric-card:hover { background: rgba(255,255,255,.6); }

.metric-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.metric-icon-wrap i { width: 20px; height: 20px; stroke-width: 2.2; }
.metric-icon-green { background: rgba(16,185,129,.12); color: #059669; }
.metric-icon-lav   { background: rgba(167,139,250,.15); color: #6D28D9; }
.metric-icon-coral { background: rgba(244,126,96,.13); color: var(--coral-h); }

.metric-num { font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; letter-spacing: -2px; color: var(--indigo); line-height: 1; }
.metric-num .grad { background: linear-gradient(135deg, var(--lav), var(--coral)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.metric-label { font-size: .82rem; color: var(--text-sec); margin-top: 10px; line-height: 1.5; }

@media (max-width: 720px) {
  .metrics-row { grid-template-columns: 1fr; gap: 0; }
  .metric-card:not(:last-child)::after {
    top: auto; bottom: -4px; right: 15%; left: 15%;
    width: auto; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
  }
}
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 26px; box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.testi-stars { color: #FBBF24; font-size: .9rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text  { font-size: .88rem; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--lav-bg); color: #6D28D9; font-size: .78rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.testi-name  { font-size: .85rem; font-weight: 700; color: var(--indigo); }
.testi-role  { font-size: .75rem; color: var(--text-muted); }


/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
#pricing { background: var(--bg-alt); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; margin-top: 48px; align-items: start; }
.pricing-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 22px; padding: 30px 26px; box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.pricing-card.featured {
  background: var(--indigo); border-color: transparent;
  box-shadow: 0 20px 60px rgba(30,27,75,.3), 0 0 0 2px rgba(167,139,250,.3);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge { font-size: .7rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; background: var(--coral); color: #fff; display: inline-block; margin-bottom: 14px; }
.pricing-name { font-size: 1.1rem; font-weight: 800; color: var(--indigo); margin-bottom: 6px; }
.pricing-card.featured .pricing-name { color: #fff; }
.pricing-price { font-size: 2.4rem; font-weight: 800; letter-spacing: -2px; color: var(--indigo); line-height: 1; }
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-price sub { font-size: 1rem; font-weight: 600; vertical-align: baseline; margin-right: 2px; }
.pricing-price small { font-size: .85rem; font-weight: 500; color: var(--text-muted); }
.pricing-card.featured .pricing-price small { color: rgba(255,255,255,.5); }
.pricing-desc { font-size: .83rem; color: var(--text-sec); margin: 10px 0 20px; line-height: 1.6; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,.55); }
.pricing-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pricing-feats li { font-size: .86rem; display: flex; gap: 9px; align-items: flex-start; color: var(--text); line-height: 1.5; }
.pricing-card.featured .pricing-feats li { color: rgba(255,255,255,.75); }
.pricing-feats li::before { content: '✓'; width: 18px; height: 18px; border-radius: 50%; background: var(--lav-bg); color: #6D28D9; font-size: .68rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.pricing-card.featured .pricing-feats li::before { background: rgba(167,139,250,.2); color: var(--lav); }
.pricing-card.featured .btn-primary { background: var(--coral); }
.pricing-btn-outline {
  display: block; width: 100%; text-align: center;
  padding: 13px; border-radius: 10px; font-size: .9rem; font-weight: 700;
  border: 1.5px solid var(--border); color: var(--indigo); text-decoration: none;
  transition: background .2s, border-color .2s;
}
.pricing-btn-outline:hover { background: var(--bg-alt); border-color: var(--indigo); }


/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-list { max-width: 700px; margin: 48px auto 0; }
.faq-item { border: 1.5px solid var(--border); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: var(--bg); transition: box-shadow .2s; }
.faq-item:hover { box-shadow: var(--sh-sm); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 18px 22px; display: flex; justify-content: space-between; align-items: center;
  font-size: .95rem; font-weight: 700; color: var(--indigo); cursor: pointer;
}
.faq-arrow { font-size: 1rem; color: var(--text-muted); transition: transform .3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 22px 18px; font-size: .9rem; color: var(--text-sec); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 300px; }


/* ═══════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════ */
.cta-box {
  background: linear-gradient(135deg, var(--indigo), #2D2A6E);
  border-radius: 28px; padding: 72px 48px; text-align: center;
  position: relative; overflow: hidden; margin: 80px 0;
}
.cta-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(167,139,250,.15), transparent 60%), radial-gradient(circle at 70% 50%, rgba(244,126,96,.1), transparent 60%); }
.cta-box h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; color: #fff; letter-spacing: -1.2px; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-box p  { font-size: 1.05rem; color: rgba(255,255,255,.55); margin-bottom: 34px; position: relative; z-index: 1; }
.cta-box-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: .88rem; color: var(--text-muted); line-height: 1.75; max-width: 260px; margin: 14px 0; }
.footer-col h4 { font-size: .82rem; font-weight: 800; color: var(--indigo); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: .88rem; color: var(--text-sec); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--indigo); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .82rem; color: var(--text-muted); }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 6px;
  background: var(--bg); border: 1px solid var(--border); color: var(--text-sec);
}
.footer-badge svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ── Lucide icon utility sizes ── */
.icon-sm  svg { width: 14px; height: 14px; }
.icon-md  svg { width: 18px; height: 18px; }
.icon-lg  svg { width: 24px; height: 24px; }
.demo-wave-label svg { width: 11px; height: 11px; display: inline; vertical-align: middle; margin-right: 3px; }

@media (prefers-reduced-motion: reduce) {
  .hero-cmd-wrap, .float-pill, .cmd-live-dot,
  .cmd-wave-bar, .trust-pill-dot { animation: none !important; transition: none !important; }
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner    { grid-template-columns: 1fr; text-align: center; }
  .hero-left     { align-items: center; }
  .hero-visual   { display: none; }
  .hero-trust    { justify-content: center; }
  .problem-grid,.solution-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid,.testi-grid,.metrics-row { grid-template-columns: 1fr 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .demo-layout   { grid-template-columns: 1fr; }
  .tab-pane.active { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  nav { padding: 0 20px; }
  .nav-logo img, .nav-logo > div img { height: 34px; }
  .problem-grid,.solution-grid,.trust-grid,.testi-grid,.metrics-row { grid-template-columns: 1fr; }
  .hero-trust    { gap: 8px; }
  .trust-pill    { font-size: .75rem; padding: 7px 14px; }
  .cta-box { padding: 48px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .industry-strip-header h2 { font-size: 1.2rem; }
}


/* ═══════════════════════════════════════════════════════
   NAVBAR — Play icon in Démo link + active state
   ═══════════════════════════════════════════════════════ */
.nav-icon-play {
  width: 13px; height: 13px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  color: var(--coral);
  stroke-width: 2.4;
}
.nav-links a.active {
  color: var(--indigo);
  background: rgba(30,27,75,.06);
  font-weight: 700;
}


/* ═══════════════════════════════════════════════════════
   NAVBAR — Burger + Mobile overlay
   ═══════════════════════════════════════════════════════ */

/* Burger button — hidden by default (desktop), shown < 900px */
.nav-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(30,27,75,.05);
  border: 1px solid rgba(30,27,75,.08);
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}
.nav-burger:hover {
  background: rgba(30,27,75,.09);
  border-color: rgba(30,27,75,.15);
}
.nav-burger span {
  display: block;
  width: 20px; height: 2px;
  border-radius: 100px;
  background: var(--indigo);
  transition: transform .28s ease, opacity .2s ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 90px 28px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile[aria-hidden="false"] { transform: translateX(0); }
body.nav-mobile-open { overflow: hidden; }

.nav-mobile-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(30,27,75,.05);
  border: 1px solid rgba(30,27,75,.08);
  color: var(--indigo);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s ease;
}
.nav-mobile-close:hover { background: rgba(30,27,75,.09); }

.nav-mobile-logo {
  position: absolute;
  top: 26px; left: 28px;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-mobile-logo img { height: 36px; width: auto; }
.nav-mobile-logo span {
  font-size: 1rem;
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: -.4px;
}

.nav-mobile-content { display: flex; flex-direction: column; gap: 4px; }

/* Cloned .nav-links inside overlay */
.nav-mobile .nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  margin-bottom: 24px;
}
.nav-mobile .nav-links li { list-style: none; }
.nav-mobile .nav-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--indigo);
  text-decoration: none;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
  letter-spacing: -.2px;
}
.nav-mobile .nav-links a:hover,
.nav-mobile .nav-links a:active {
  background: var(--bg-alt);
  border-color: var(--border);
  transform: translateX(4px);
}
.nav-mobile .nav-links a.active {
  background: var(--bg-alt2);
  border-color: rgba(167,139,250,.3);
}
.nav-mobile .nav-links a.active::after { display: none; }
.nav-mobile .nav-links a .nav-icon-play {
  width: 18px; height: 18px;
  margin-right: 2px;
}

/* Cloned .nav-actions inside overlay */
.nav-mobile .nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.nav-mobile .nav-actions .nav-login,
.nav-mobile .nav-actions .nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: 14px;
}
.nav-mobile .nav-actions .nav-cta::before { display: none; }

/* Breakpoint : show burger + hide inline nav < 900px */
@media (max-width: 900px) {
  .nav-links,
  .nav-actions { display: none; }
  .nav-burger  { display: flex; }
}
@media (min-width: 901px) {
  .nav-mobile { display: none; }
}


/* ═══════════════════════════════════════════════════════
   DEMO — Bottom CTA block
   ═══════════════════════════════════════════════════════ */
.demo-cta {
  margin-top: 56px;
  padding: 36px 24px;
  text-align: center;
  border-top: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.demo-cta-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: -.3px;
  line-height: 1.4;
  max-width: 520px;
}


/* ═══════════════════════════════════════════════════════
   PROOF — Founders programme block (DARK premium variant)
   ═══════════════════════════════════════════════════════ */
.founders-box {
  position: relative;
  max-width: 940px;
  margin: 40px auto 0;
  padding: 52px 48px;
  border-radius: 28px;
  text-align: center;
  overflow: hidden;
}

/* Dark premium variant */
.founders-box-dark {
  background: linear-gradient(135deg, #07071A 0%, #1C1954 55%, #0D0B2E 100%);
  border: 1px solid rgba(167,139,250,.28);
  box-shadow:
    0 32px 80px rgba(30,27,75,.35),
    0 0 0 1px rgba(167,139,250,.12),
    inset 0 1px 1px rgba(255,255,255,.05);
}

.founders-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(90px); opacity: .35;
}
.founders-orb-1 { width: 400px; height: 400px; top: -140px; right: -100px; background: radial-gradient(circle, var(--lav) 0%, transparent 70%); }
.founders-orb-2 { width: 320px; height: 320px; bottom: -120px; left: -80px; background: radial-gradient(circle, var(--coral) 0%, transparent 70%); }

.founders-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.founders-inner { position: relative; z-index: 1; }

/* Custom eyebrow badge in the dark card (replaces the light .tag) */
.founders-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--coral) 0%, #E86D4F 100%);
  padding: 7px 15px;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: 0 8px 22px rgba(244,126,96,.4);
}
.founders-badge i { width: 13px; height: 13px; }

.founders-title {
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.founders-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto 34px;
}
.founders-desc strong { color: #fff; font-weight: 700; }

.founders-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 780px;
  margin: 0 auto 36px;
}
.founders-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  text-align: left;
  transition: border-color .2s, transform .2s, background .2s;
}
.founders-perk:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(167,139,250,.35);
  transform: translateY(-2px);
}
.founders-perk-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(167,139,250,.2), rgba(244,126,96,.14));
  color: var(--lav);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(167,139,250,.28);
}
.founders-perk-icon i { width: 18px; height: 18px; }
.founders-perk-title {
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.2px;
  line-height: 1.25;
}
.founders-perk-sub {
  font-size: .76rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

/* CTA + urgency laid out on one line */
.founders-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 20px;
}
.founders-cta {
  display: inline-flex !important;
  align-items: center;
  padding: 15px 28px !important;
  font-size: .98rem !important;
}

/* Urgency chip — prominent, animated */
.founders-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(244,126,96,.14);
  border: 1.5px solid rgba(244,126,96,.4);
  font-size: .88rem;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  letter-spacing: -.1px;
}
.founders-note strong {
  color: var(--coral);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.3px;
}
.founders-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 3px rgba(244,126,96,.3), 0 0 12px rgba(244,126,96,.6);
  animation: founders-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes founders-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(244,126,96,.3), 0 0 12px rgba(244,126,96,.6); transform: scale(1); }
  50%      { box-shadow: 0 0 0 7px rgba(244,126,96,.06), 0 0 20px rgba(244,126,96,.4); transform: scale(1.1); }
}

@media (max-width: 720px) {
  .founders-box { padding: 40px 24px; }
  .founders-perks { grid-template-columns: 1fr; gap: 10px; }
  .founders-actions { flex-direction: column; gap: 14px; }
}


/* ═══════════════════════════════════════════════════════
   DEMO — Custom Audio Player (.dap)
   Placed above the first .demo-info-card in .demo-right
   ═══════════════════════════════════════════════════════ */
.dap {
  position: relative;
  overflow: hidden;
  padding: 22px 22px 20px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0D0B2E 0%, var(--indigo) 60%, #1A175E 100%);
  border: 1px solid rgba(167,139,250,.28);
  box-shadow:
    0 20px 50px rgba(30,27,75,.35),
    0 0 0 1px rgba(167,139,250,.08),
    inset 0 1px 1px rgba(255,255,255,.06);
  color: #fff;
  isolation: isolate;
}
.dap::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  z-index: 0;
}

.dap-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .35;
  pointer-events: none;
  z-index: 0;
}
.dap-orb-1 { width: 220px; height: 220px; top: -80px; right: -60px; background: var(--lav); }
.dap-orb-2 { width: 180px; height: 180px; bottom: -70px; left: -60px; background: var(--coral); opacity: .25; }

.dap-body { position: relative; z-index: 1; }

/* ── Head : play button + title ── */
.dap-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.dap-play-wrap {
  position: relative;
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.dap-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,126,96,.5) 0%, transparent 70%);
  animation: dap-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
.dap-pulse-2 { animation-delay: 1.2s; }
@keyframes dap-pulse {
  0%   { transform: scale(.6); opacity: .9; }
  100% { transform: scale(1.7); opacity: 0; }
}
.dap.is-playing .dap-pulse { display: none; }

.dap-play-btn {
  position: relative;
  z-index: 1;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--coral) 0%, #E86D4F 100%);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 8px 20px rgba(244,126,96,.5),
    inset 0 1px 1px rgba(255,255,255,.3);
  transition: transform .18s ease, box-shadow .2s ease;
}
.dap-play-btn:hover  { transform: scale(1.05); box-shadow: 0 12px 28px rgba(244,126,96,.6), inset 0 1px 1px rgba(255,255,255,.35); }
.dap-play-btn:active { transform: scale(.96); }
.dap-icon-play  { transform: translateX(1px); }
.dap-icon-pause { transform: translateX(0); }

.dap-title-wrap { flex: 1; min-width: 0; }
.dap-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
  line-height: 1.3;
  margin-bottom: 4px;
}
.dap-sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  flex-wrap: wrap;
}
.dap-tag {
  display: inline-flex; align-items: center;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  background: rgba(167,139,250,.18);
  color: var(--lav);
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid rgba(167,139,250,.28);
}
.dap-sep { color: rgba(255,255,255,.25); }

/* ── Waveform (40 bars) ── */
.dap-wave {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  height: 46px;
  margin-bottom: 14px;
  padding: 6px 0;
}
.dap-wave span {
  flex: 1;
  min-width: 2px;
  border-radius: 100px;
  background: linear-gradient(180deg, var(--lav) 0%, var(--coral) 100%);
  opacity: .45;
  transition: opacity .3s ease;
  height: 22%;
}
.dap.is-playing .dap-wave span {
  opacity: 1;
  animation: dap-wave 1.3s ease-in-out infinite;
}
@keyframes dap-wave {
  0%, 100% { height: 22%; }
  50%      { height: 95%; }
}
.dap.is-playing .dap-wave span:nth-child(4n+1)  { animation-delay: 0.00s; }
.dap.is-playing .dap-wave span:nth-child(4n+2)  { animation-delay: 0.12s; }
.dap.is-playing .dap-wave span:nth-child(4n+3)  { animation-delay: 0.24s; }
.dap.is-playing .dap-wave span:nth-child(4n)    { animation-delay: 0.36s; }
.dap.is-playing .dap-wave span:nth-child(7n)    { animation-delay: 0.55s; }
.dap.is-playing .dap-wave span:nth-child(11n)   { animation-delay: 0.72s; }
.dap.is-playing .dap-wave span:nth-child(13n)   { animation-delay: 0.90s; }

/* ── Progress bar + time ── */
.dap-progress-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dap-time {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 30px;
  letter-spacing: -.2px;
}
.dap-time-total { color: rgba(255,255,255,.45); text-align: right; }

.dap-progress {
  flex: 1;
  height: 4px;
  border-radius: 100px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.dap-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--lav) 0%, var(--coral) 100%);
  box-shadow: 0 0 12px rgba(244,126,96,.4);
  transition: width .15s linear;
}

/* Loading/empty state — shake if no audio source loads */
.dap.is-empty .dap-play-btn { animation: dap-shake .45s ease; }
@keyframes dap-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .dap { padding: 18px 18px 16px; }
  .dap-play-wrap, .dap-play-btn { width: 46px; height: 46px; }
  .dap-title { font-size: .88rem; }
  .dap-wave { height: 38px; gap: 1px; }
}
