/* ==========================================================================
   VoiceChill — Strict Stripe.com palette
   Indigo #635BFF · Cyan #00D4FF · Navy #0A2540 · Slate · Pink · Green
   ========================================================================== */

:root {
  /* === STRIPE PALETTE — these are the only brand colors === */
  --indigo:        #635BFF;
  --indigo-light:  #7A73FF;
  --indigo-deep:   #4F3CFF;
  --cyan:          #00D4FF;
  --cyan-light:    #11EFE3;
  --pink:          #FF5996;
  --pink-light:    #FF8DA8;
  --green:         #00D924;
  --navy:          #0A2540;
  --slate-1:       #425466;
  --slate-2:       #697386;
  --slate-3:       #8898AA;
  --slate-4:       #ADBDCC;
  --line-light:    #E3E8EE;
  --bg-light:      #F6F9FC;
  --white:         #FFFFFF;

  /* === Aliases (everything maps to the Stripe palette above) === */
  --primary:       var(--indigo);
  --primary-light: var(--indigo-light);
  --primary-dark:  var(--navy);
  --secondary:     var(--cyan);
  --accent:        var(--cyan);
  --error:         #DF1B41;

  /* Gradients — Stripe-style */
  --g-primary: linear-gradient(135deg, #635BFF 0%, #00D4FF 100%);
  --g-accent:  linear-gradient(135deg, #11EFE3 0%, #00D4FF 100%);
  --g-pink:    linear-gradient(135deg, #FF8DA8 0%, #FF5996 100%);
  --g-mint:    linear-gradient(135deg, #11EFE3 0%, #00D924 100%);
  --g-deep:    linear-gradient(135deg, #635BFF 0%, #0A2540 100%);
  --g-iris:    linear-gradient(135deg, #00D4FF 0%, #635BFF 45%, #FF5996 100%);

  /* Type — Stripe uses Sohne (sans-serif). Inter is the closest free match. */
  --f-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Radii */
  --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-2xl: 40px; --r-full: 9999px;

  /* Space */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  /* === LIGHT theme (default — pure white like Stripe) === */
  --bg: #FFFFFF;
  --bg-2: #F6F9FC;
  --surface: #FFFFFF;
  --surface-2: #F6F9FC;
  --surface-tint: #EEF0FF;           /* indigo wash */
  --surface-blue: #E0F2FE;           /* cyan wash */
  --surface-pink: #FFE4ED;           /* pink wash */
  --surface-mint: #E0FAF6;           /* mint wash */
  --ink: #0A2540;
  --ink-2: #425466;
  --ink-3: #697386;
  --ink-4: #8898AA;
  --ink-5: #ADBDCC;
  --line: rgba(10, 37, 64, 0.08);
  --line-2: rgba(10, 37, 64, 0.14);
  --line-strong: rgba(99, 91, 255, 0.3);
  --sh-1: 0 1px 2px rgba(10,37,64,0.06), 0 1px 3px rgba(10,37,64,0.06);
  --sh-2: 0 7px 14px rgba(60,66,87,0.08), 0 3px 6px rgba(0,0,0,0.05);
  --sh-3: 0 15px 35px rgba(60,66,87,0.12), 0 5px 15px rgba(0,0,0,0.07);
  --glow: 0 12px 40px rgba(99, 91, 255, 0.25);
}

/* === DARK theme scope (hero / CTA / footer) === */
.dark {
  --bg: #0A2540;
  --bg-2: #0A2540;
  --surface: #1A365D;
  --surface-2: #2D4A6B;
  --surface-tint: rgba(99, 91, 255, 0.2);
  --surface-blue: rgba(0, 212, 255, 0.12);
  --surface-pink: rgba(255, 89, 150, 0.12);
  --ink: #FFFFFF;
  --ink-2: #C9D5E0;
  --ink-3: #8898AA;
  --ink-4: #697386;
  --ink-5: #4B5563;
  --line: rgba(255, 255, 255, 0.1);
  --line-2: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(0, 212, 255, 0.4);
  --sh-1: 0 2px 12px rgba(0,0,0,0.3);
  --sh-2: 0 12px 32px rgba(0,0,0,0.4);
  --sh-3: 0 24px 64px rgba(0,0,0,0.55);
  --glow: 0 0 64px rgba(0, 212, 255, 0.35);

  background: var(--bg);
  color: var(--ink);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  font-feature-settings: 'cv11', 'ss01';
}

img, svg { max-width: 100%; display: block; }
a { color: var(--indigo); text-decoration: none; transition: color 0.2s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea, button { font-family: inherit; }
::selection { background: var(--indigo); color: #FFFFFF; }

/* Body bg stays pure white. The hero owns the colorful ribbon. */

/* Sections */
.section { padding: var(--s-9) 0; position: relative; }
.section-tight { padding: var(--s-7) 0; position: relative; }

/* Scroll-reveal — applied to children of .section-head, .bento, .split, .values, .testimonial, .info-card, .faq, .stat-row by JS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.05s; }
.reveal[data-delay="2"] { transition-delay: 0.1s; }
.reveal[data-delay="3"] { transition-delay: 0.15s; }
.reveal[data-delay="4"] { transition-delay: 0.2s; }
.reveal[data-delay="5"] { transition-delay: 0.25s; }
.reveal[data-delay="6"] { transition-delay: 0.3s; }

.dark { position: relative; overflow: hidden; }
/* Standard Stripe dark — Navy base, Indigo + Cyan only, no pink, no mint */
.dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 900px 700px at 14% 12%, rgba(99, 91, 255, 0.32), transparent 60%),
    radial-gradient(ellipse 700px 500px at 86% 28%, rgba(0, 212, 255, 0.16), transparent 60%),
    radial-gradient(ellipse 800px 600px at 50% 100%, rgba(99, 91, 255, 0.22), transparent 60%),
    linear-gradient(180deg, #0A2540 0%, #0A2540 100%);
}
.dark::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.2px 1.2px at 64% 12%, rgba(0,212,255,0.5), transparent),
    radial-gradient(1px 1px at 88% 48%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 32% 78%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 76% 84%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 8% 58%, rgba(99, 91, 255, 0.4), transparent);
  background-size: 1000px 1000px;
  opacity: 0.6;
  animation: twinkle 6s ease-in-out infinite alternate;
}
.dark > * { position: relative; z-index: 1; }

@keyframes twinkle { from { opacity: 0.4; } to { opacity: 1; } }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.5); }
  100% { box-shadow: 0 0 0 22px rgba(0, 212, 255, 0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes wave { 0%,100% { transform: scaleY(0.3); } 50% { transform: scaleY(1); } }
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes gradient-shift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Layout */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--s-7);
}
@media (max-width: 900px) { .container { padding: 0 var(--s-5); } }

/* Eyebrow — single indigo style (Stripe uses one accent for tags) */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--r-full);
  background: rgba(99, 91, 255, 0.08);
  border: 1px solid rgba(99, 91, 255, 0.22);
  color: var(--indigo);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.dark .eyebrow {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--cyan);
}
.eyebrow.pink {
  background: rgba(255, 89, 150, 0.1);
  border-color: rgba(255, 89, 150, 0.28);
  color: #DB1B6B;
}
.dark .eyebrow.pink {
  background: rgba(255, 89, 150, 0.15);
  border-color: rgba(255, 89, 150, 0.32);
  color: var(--pink-light);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  position: relative;
}
.eyebrow .dot::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}

.h-display {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.04;
}
/* Emphasis word — Stripe-standard indigo→cyan gradient (no pink) */
.italic-display {
  font-family: var(--f-display);
  font-weight: 700;
  background: linear-gradient(135deg, #635BFF 0%, #00D4FF 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 10s ease-in-out infinite;
}
/* On dark navy / colored gradient contexts, white-tones read cleanest */
.dark .italic-display,
.b-1 .italic-display,
.footer .italic-display {
  background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: none;
}
.gradient-text {
  background: var(--g-iris);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 10s ease-in-out infinite;
}
.gradient-text-primary {
  background: var(--g-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: var(--s-5);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--g-primary);
  display: grid; place-items: center;
  box-shadow: var(--glow), inset 0 0 0 1px rgba(255,255,255,0.2);
}
.brand-mark svg { width: 20px; height: 20px; color: #fff; }
.dark .brand-mark { background: var(--g-accent); }
.dark .brand-mark svg { color: var(--navy); }

.nav-links {
  display: flex; align-items: center; gap: var(--s-6);
  list-style: none;
}
.nav-links a {
  color: var(--ink-3); font-size: 14.5px; font-weight: 500;
  position: relative; padding: 6px 2px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--g-primary);
  border-radius: var(--r-full);
}
.nav-cta {
  padding: 11px 22px; border-radius: var(--r-full);
  background: var(--indigo);
  color: #FFFFFF;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3);
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--indigo-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(99, 91, 255, 0.4);
}
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  align-items: center; justify-content: center;
  box-shadow: var(--sh-1);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-full);
  font-weight: 600; font-size: 15px;
  letter-spacing: -0.005em;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
/* Stripe-style: arrow slides forward on hover */
.btn svg { transition: transform 0.25s cubic-bezier(0.4,0,0.2,1); }
.btn:hover svg:last-child { transform: translateX(3px); }
.btn-primary {
  background: var(--indigo);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(99, 91, 255, 0.35);
}
.btn-primary:hover {
  background: var(--indigo-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99, 91, 255, 0.45);
}
.dark .btn-primary {
  background: #FFFFFF;
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}
.dark .btn-primary:hover {
  background: var(--cyan);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 212, 255, 0.5);
}
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line-2);
  box-shadow: var(--sh-1);
}
.btn-ghost:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  transform: translateY(-2px);
}
.dark .btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.dark .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* Hero — pure white with animated 3D prismatic ribbon */
.hero {
  padding: var(--s-9) 0 var(--s-8);
  position: relative;
  overflow: hidden;
}
/* Hero ribbon — strictly Stripe palette: indigo + cyan, no pink/mint */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -20%;
  width: 1100px; height: 1100px;
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  background: conic-gradient(
    from 200deg at 50% 50%,
    #635BFF 0deg,
    #7A73FF 80deg,
    #00D4FF 160deg,
    #4F3CFF 260deg,
    #635BFF 360deg
  );
  filter: blur(80px);
  opacity: 0.38;
  pointer-events: none;
  z-index: 0;
  animation: ribbon-spin 24s linear infinite, ribbon-morph 18s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%; left: -10%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.18), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: ribbon-float 14s ease-in-out infinite alternate;
}
.hero > .container { position: relative; z-index: 1; }

@keyframes ribbon-spin { to { transform: rotate(360deg); } }
@keyframes ribbon-morph {
  0% { border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%; }
  50% { border-radius: 60% 40% 45% 55% / 40% 60% 40% 60%; }
  100% { border-radius: 55% 45% 55% 45% / 60% 50% 50% 40%; }
}
@keyframes ribbon-float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, -30px); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-7);
  align-items: center;
}
.hero-copy { animation: fadeUp 0.9s ease backwards; }
.hero h1 {
  font-size: clamp(44px, 6vw, 78px);
  margin: var(--s-5) 0 var(--s-5);
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero h1 .row { display: block; }
.hero p.lead {
  font-size: clamp(17px, 1.6vw, 19.5px);
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: var(--s-6);
  line-height: 1.55;
}
.hero-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; align-items: center; }
.hero-meta {
  margin-top: var(--s-6);
  display: flex; align-items: center; gap: var(--s-4);
  flex-wrap: wrap;
}
.avatars { display: flex; }
.avatars .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--bg);
  margin-left: -10px;
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 13px;
  font-family: var(--f-display);
  box-shadow: var(--sh-1);
}
.avatars .av:nth-child(1) { background: linear-gradient(135deg, #00D4FF, #635BFF); margin-left: 0; }
.avatars .av:nth-child(2) { background: linear-gradient(135deg, #7A73FF, #4F3CFF); }
.avatars .av:nth-child(3) { background: linear-gradient(135deg, #635BFF, #0A2540); }
.avatars .av:nth-child(4) { background: linear-gradient(135deg, #00D4FF, #7A73FF); color: #fff; font-size: 11px; }
.hero-meta-text { font-size: 13.5px; color: var(--ink-3); line-height: 1.45; }
.hero-meta-text strong { color: var(--ink); font-weight: 600; }

/* Phone */
.hero-visual { position: relative; perspective: 1400px; animation: fadeUp 1s ease 0.2s backwards; }
.phone {
  position: relative;
  width: 320px; height: 660px;
  margin: 0 auto;
  border-radius: 48px;
  background: linear-gradient(160deg, #1A365D 0%, #0A2540 100%);
  padding: 12px;
  box-shadow:
    var(--sh-3),
    0 0 0 1.5px rgba(99, 91, 255, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 0 120px rgba(99, 91, 255, 0.25);
  transform: rotate(-6deg) rotateY(8deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.phone:hover { transform: rotate(-3deg) rotateY(4deg) rotateX(1deg); }
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 38px;
  background: linear-gradient(180deg, #0A2540 0%, #1A365D 60%, #2D4A6B 100%);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 28px; border-radius: 18px;
  background: #000; z-index: 2;
}
.phone-status {
  padding: 18px 22px 8px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 600; color: #FFFFFF;
  position: relative; z-index: 3;
}
.phone-status .right { display: flex; gap: 6px; opacity: 0.8; align-items: center; }
.phone-status .right svg { width: 14px; height: 14px; }
.phone-body { padding: 30px 22px 22px; flex: 1; display: flex; flex-direction: column; gap: 14px; color: #fff; }
.phone-room-title {
  font-family: var(--f-display);
  font-size: 22px; line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
  color: #fff;
}
.phone-room-meta { font-size: 12px; color: #8898AA; display: flex; align-items: center; gap: 6px; }
.phone-live {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: var(--r-full);
  background: rgba(0, 212, 255, 0.18);
  color: var(--cyan); font-size: 10px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.phone-live::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
}
.phone-seats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px 8px; margin: 10px 0; }
.seat { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.seat-bubble {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 16px;
  font-family: var(--f-display);
  position: relative;
}
/* Seat bubbles — all variations of indigo / cyan / navy / slate (Stripe palette) */
.seat-bubble.b1 { background: linear-gradient(135deg, #00D4FF, #635BFF); }
.seat-bubble.b2 { background: linear-gradient(135deg, #7A73FF, #4F3CFF); }
.seat-bubble.b3 { background: linear-gradient(135deg, #00D4FF, #635BFF); }
.seat-bubble.b4 { background: linear-gradient(135deg, #635BFF, #0A2540); }
.seat-bubble.b5 { background: linear-gradient(135deg, #8898AA, #2D4A6B); }
.seat-bubble.b6 { background: linear-gradient(135deg, #4F3CFF, #635BFF); }
.seat-bubble.b7 { background: linear-gradient(135deg, #00D4FF, #7A73FF); color: #fff; }
.seat-bubble.b8 {
  background: linear-gradient(135deg, #0A2540, #1A365D);
  border: 1.5px dashed rgba(0, 212, 255, 0.45);
  color: #8898AA; font-weight: 400; font-size: 22px;
}
.seat-bubble.speaking::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid var(--cyan);
  animation: pulse-ring 1.8s ease-out infinite;
}
.seat-name { font-size: 9.5px; color: #C9D5E0; text-align: center; white-space: nowrap; max-width: 60px; overflow: hidden; text-overflow: ellipsis; }
.phone-wave {
  margin-top: auto;
  display: flex; align-items: flex-end; justify-content: center;
  gap: 3px; height: 36px; padding: 0 10px;
}
.phone-wave span {
  width: 3px; border-radius: 3px;
  background: linear-gradient(to top, #635BFF, #00D4FF);
  animation: wave 1.4s ease-in-out infinite;
}
.phone-wave span:nth-child(1)  { height: 60%; }
.phone-wave span:nth-child(2)  { height: 85%; animation-delay: 0.1s; }
.phone-wave span:nth-child(3)  { height: 40%; animation-delay: 0.2s; }
.phone-wave span:nth-child(4)  { height: 70%; animation-delay: 0.3s; }
.phone-wave span:nth-child(5)  { height: 95%; animation-delay: 0.05s; }
.phone-wave span:nth-child(6)  { height: 50%; animation-delay: 0.25s; }
.phone-wave span:nth-child(7)  { height: 80%; animation-delay: 0.15s; }
.phone-wave span:nth-child(8)  { height: 35%; animation-delay: 0.4s; }
.phone-wave span:nth-child(9)  { height: 65%; animation-delay: 0.1s; }
.phone-wave span:nth-child(10) { height: 90%; animation-delay: 0.3s; }
.phone-wave span:nth-child(11) { height: 45%; animation-delay: 0.2s; }
.phone-wave span:nth-child(12) { height: 75%; }
.phone-controls { display: flex; justify-content: space-between; align-items: center; padding: 0 4px; }
.ctrl {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center;
  color: #C9D5E0;
}
.ctrl.primary {
  background: var(--g-accent); color: var(--navy);
  width: 52px; height: 52px;
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.4);
}
.ctrl svg { width: 16px; height: 16px; }

/* Floating chips */
.float-chip {
  position: absolute;
  padding: 10px 14px; border-radius: var(--r-full);
  backdrop-filter: blur(14px);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  box-shadow: var(--sh-2);
  animation: float-y 6s ease-in-out infinite;
}
.float-chip .ico {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.float-chip .ico svg { width: 13px; height: 13px; }
.float-chip.c1 {
  top: 6%; left: -8%; animation-delay: 0s;
  background: var(--white); color: var(--ink);
  border: 1px solid rgba(99, 91, 255, 0.2);
}
.float-chip.c1 .ico { background: var(--g-primary); color: #fff; }
.float-chip.c2 {
  top: 38%; right: -10%; animation-delay: 1s;
  background: rgba(10, 37, 64, 0.92); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.float-chip.c2 .ico { background: var(--g-accent); color: var(--navy); }
.float-chip.c3 {
  bottom: 10%; left: -4%; animation-delay: 2s;
  background: var(--white); color: var(--ink);
  border: 1px solid rgba(255, 89, 150, 0.28);
}
.float-chip.c3 .ico { background: linear-gradient(135deg, #FF8DA8, #FF5996); color: #fff; }

/* Logo row */
.logo-row {
  margin-top: var(--s-8);
  display: flex; align-items: center; gap: var(--s-6);
  flex-wrap: wrap; justify-content: center;
  padding: var(--s-5) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logo-row .label {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-4);
}
.logo-row .marks {
  display: flex; gap: var(--s-7); flex-wrap: wrap;
  color: var(--ink-3); font-weight: 600; font-size: 15px;
  letter-spacing: -0.01em;
  font-family: var(--f-sans);
  opacity: 0.65;
}

/* Section headers */
.section-head { max-width: 760px; margin: 0 auto var(--s-8); text-align: center; }
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 58px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: var(--s-4) 0 var(--s-4);
  color: var(--ink);
}
.section-head p {
  color: var(--ink-3);
  font-size: 18px;
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto;
}

/* Stats */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: var(--s-6);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-2);
}
.stat { text-align: center; padding: var(--s-3) var(--s-2); position: relative; }
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px;
  background: var(--line);
}
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--g-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.stat:nth-child(2) .stat-num { background: var(--g-pink);   -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat:nth-child(3) .stat-num { background: var(--g-mint);   -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat:nth-child(4) .stat-num { background: var(--g-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.dark .stat-num,
.dark .stat:nth-child(n) .stat-num { background: var(--g-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label {
  color: var(--ink-3);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: var(--s-4);
}
.bento-cell {
  position: relative;
  padding: var(--s-6);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.bento-cell:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--line-2); }
.bento-cell h3 {
  font-family: var(--f-display);
  font-weight: 600; font-size: 28px;
  letter-spacing: -0.025em; line-height: 1.08;
  margin: 0 0 10px;
  color: var(--ink);
}
.bento-cell p {
  color: var(--ink-3);
  font-size: 15px; line-height: 1.6;
}
.bento-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--g-primary);
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: var(--s-4);
  box-shadow: var(--glow);
}
.bento-icon svg { width: 22px; height: 22px; }

/* Icon colors — all from Stripe palette */
.bento-cell:nth-child(2) .bento-icon { background: var(--g-primary); color: #fff; }
.bento-cell:nth-child(3) .bento-icon { background: var(--g-pink); color: #fff; }
.bento-cell:nth-child(4) .bento-icon { background: var(--g-accent); color: var(--navy); }
.bento-cell:nth-child(5) .bento-icon { background: var(--g-mint); color: var(--navy); }
.bento-cell:nth-child(6) .bento-icon { background: var(--g-deep); color: #fff; }
.bento-cell:nth-child(7) .bento-icon { background: linear-gradient(135deg, #00D4FF, #11EFE3); color: var(--navy); }
.bento-cell:nth-child(8) .bento-icon { background: linear-gradient(135deg, #635BFF, #FF5996); color: #fff; }

.b-1 {
  grid-column: span 4; grid-row: span 2;
  background: linear-gradient(135deg, #62C2FF 0%, #4F7EFF 30%, #635BFF 60%, #9333EA 100%);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  position: relative;
}
.b-1::after {
  /* soft sheen for depth */
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 500px 400px at 10% 10%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.b-1 > * { position: relative; z-index: 1; }
.b-1 h3 { color: #fff; }
.b-1 p { color: rgba(255, 255, 255, 0.88); }
.b-1 .bento-icon {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.2);
}
.b-1 .visual { display: none; }
/* Waveform bars need to pop on the colorful bg — use white-tone */
.b-1 .wave-art span {
  background: linear-gradient(to top, rgba(255,255,255,0.4), rgba(255,255,255,0.95));
}
.b-2 { grid-column: span 2; }
.b-3 { grid-column: span 2; background: linear-gradient(165deg, #635BFF 0%, #4F3CFF 100%); color: #fff; }
.b-3 h3, .b-3 p { color: #fff; }
.b-3 p { color: rgba(255,255,255,0.85); }
.b-3 .bento-icon { background: rgba(255,255,255,0.18); color: #fff; backdrop-filter: blur(10px); }
.b-4 { grid-column: span 3; }
.b-5 { grid-column: span 3; }
.b-6 { grid-column: span 2; }
.b-7 { grid-column: span 2; }
.b-8 { grid-column: span 2; }

.b-1 .visual {
  position: absolute; right: -30px; bottom: -30px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.45), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
}
.b-1 .wave-art {
  position: absolute; right: var(--s-6); bottom: var(--s-6);
  display: flex; gap: 4px; align-items: flex-end; height: 96px;
}
.b-1 .wave-art span {
  width: 5px; border-radius: 3px;
  background: linear-gradient(to top, var(--indigo), var(--cyan));
  animation: wave 1.8s ease-in-out infinite;
}
.b-1 .wave-art span:nth-child(1) { height: 40%; }
.b-1 .wave-art span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.b-1 .wave-art span:nth-child(3) { height: 90%; animation-delay: 0.2s; }
.b-1 .wave-art span:nth-child(4) { height: 55%; animation-delay: 0.3s; }
.b-1 .wave-art span:nth-child(5) { height: 80%; animation-delay: 0.05s; }
.b-1 .wave-art span:nth-child(6) { height: 45%; animation-delay: 0.4s; }
.b-1 .wave-art span:nth-child(7) { height: 95%; animation-delay: 0.15s; }
.b-1 .wave-art span:nth-child(8) { height: 60%; animation-delay: 0.35s; }
.b-1 .wave-art span:nth-child(9) { height: 75%; animation-delay: 0.2s; }
.b-1 .wave-art span:nth-child(10) { height: 50%; animation-delay: 0.45s; }
.b-1 .wave-art span:nth-child(11) { height: 85%; animation-delay: 0.05s; }
.b-1 .wave-art span:nth-child(12) { height: 35%; animation-delay: 0.3s; }
.b-1 .wave-art span:nth-child(13) { height: 70%; animation-delay: 0.25s; }
.b-1 .wave-art span:nth-child(14) { height: 90%; animation-delay: 0.1s; }
.b-1 .wave-art span:nth-child(15) { height: 50%; animation-delay: 0.4s; }

.orbit-art {
  position: absolute; right: -40px; bottom: -40px;
  width: 200px; height: 200px;
  pointer-events: none;
}
.orbit-art::before, .orbit-art::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(99, 91, 255, 0.3);
  animation: spin-slow 25s linear infinite;
}
.orbit-art::after {
  inset: 20px;
  border-color: rgba(0, 212, 255, 0.35);
  animation-duration: 35s;
  animation-direction: reverse;
}

/* Splits */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split-copy h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--s-4);
  color: var(--ink);
}
.split-copy p {
  color: var(--ink-3);
  font-size: 16.5px;
  line-height: 1.65;
  margin-bottom: var(--s-4);
}
.split-list { list-style: none; margin-top: var(--s-5); }
.split-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0;
  color: var(--ink-2);
  font-size: 15px;
  border-bottom: 1px solid var(--line);
}
.split-list li:last-child { border-bottom: none; }
.split-list a { color: var(--indigo); }
.check {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--g-primary);
  display: grid; place-items: center;
  color: #fff;
  margin-top: 1px;
}
.check svg { width: 12px; height: 12px; stroke-width: 3; }

.split-art {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-2xl);
  background: var(--surface-tint);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid; place-items: center;
  box-shadow: var(--sh-2);
}
.split-art.pink   { background: linear-gradient(165deg, #FFE4ED 0%, #FFCED8 100%); }
.split-art.cyan   { background: linear-gradient(165deg, #E0F2FE 0%, #BAE6FD 100%); }
.split-art.indigo { background: linear-gradient(165deg, #EEF0FF 0%, #C7D2FE 100%); }
.split-art.mint   { background: linear-gradient(165deg, #E0FAF6 0%, #B7F4E8 100%); }
.split-art.dark   { background: linear-gradient(165deg, #0A2540 0%, #1A365D 100%); }
/* legacy class aliases (HTML still uses .peach / .cream / .blue) */
.split-art.peach  { background: linear-gradient(165deg, #FFE4ED 0%, #FFCED8 100%); }
.split-art.cream  { background: linear-gradient(165deg, #EEF0FF 0%, #C7D2FE 100%); }
.split-art.blue   { background: linear-gradient(165deg, #E0F2FE 0%, #BAE6FD 100%); }

/* Room card */
.room-card {
  width: 78%;
  padding: var(--s-5);
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-3);
  position: relative;
  transform: rotate(-3deg);
}
.room-card .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s-3); }
.room-card .pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: var(--r-full);
  background: rgba(99, 91, 255, 0.12);
  color: var(--indigo);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.room-card .pill::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--indigo); box-shadow: 0 0 8px var(--indigo);
}
.room-card h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 20px; line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--ink);
}
.room-card .meta { font-size: 12.5px; color: var(--ink-3); margin-bottom: var(--s-4); }
.room-card .listeners { display: flex; align-items: center; gap: var(--s-2); justify-content: space-between; }
.room-card .listeners .avatars .av { width: 28px; height: 28px; font-size: 11px; border-color: #fff; }
.room-card .listeners .count { font-size: 12.5px; color: var(--ink-3); }

/* Globe — Stripe-standard: indigo dominant with cyan highlight, indigo orbital rings */
.globe-art {
  position: relative;
  width: 80%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #7A73FF 0%, #635BFF 30%, #4F3CFF 55%, #0A2540 85%);
  box-shadow: 0 0 100px rgba(99, 91, 255, 0.55), inset 0 0 80px rgba(0,0,0,0.45);
}
.globe-art::before, .globe-art::after {
  content: ''; position: absolute; inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(99, 91, 255, 0.4);
  animation: spin-slow 25s linear infinite;
}
.globe-art::after {
  inset: -34px;
  border-color: rgba(0, 212, 255, 0.35);
  animation-duration: 40s;
  animation-direction: reverse;
}
.globe-pin {
  position: absolute; width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.globe-pin::after {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  opacity: 0.5;
  animation: pulse-ring 2s ease-out infinite;
}

/* Testimonials marquee (dark) */
.marquee {
  position: relative;
  overflow: hidden;
  padding: var(--s-4) 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex; gap: var(--s-4);
  animation: scroll-x 55s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.testimonial {
  width: 380px; flex-shrink: 0;
  padding: var(--s-5);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-2);
}
.dark .testimonial {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: none;
}
.testimonial .quote-mark {
  font-family: var(--f-display);
  font-size: 56px; color: var(--indigo);
  line-height: 0.5; margin-bottom: var(--s-3);
  font-weight: 400; opacity: 0.6;
}
.dark .testimonial .quote-mark { color: var(--cyan); opacity: 0.75; }
.testimonial p {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: var(--s-4);
}
.dark .testimonial p { color: #fff; }
.testimonial .who { display: flex; gap: var(--s-3); align-items: center; }
.testimonial .av {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-weight: 700;
  font-family: var(--f-display);
  font-size: 16px;
}
.testimonial .who .name { font-size: 14px; color: var(--ink); font-weight: 600; }
.testimonial .who .role { font-size: 12.5px; color: var(--ink-3); }
.dark .testimonial .who .name { color: #fff; }
.dark .testimonial .who .role { color: #8898AA; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: var(--s-5) 0; cursor: pointer; }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-4);
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}
.faq-item .toggle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
  color: var(--ink);
}
.faq-item[open] .toggle {
  transform: rotate(45deg);
  background: var(--indigo);
  color: #fff;
  border-color: transparent;
}
.faq-item .answer {
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.7;
  padding-top: var(--s-4);
  max-width: 680px;
}
.faq-item .answer a { color: var(--indigo); border-bottom: 1px solid rgba(99, 91, 255, 0.3); }

/* CTA — Stripe-style: big serif on light bg, bold indigo button */
.cta { padding: var(--s-10) 0; position: relative; text-align: center; }
.cta-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; }
.cta h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.04em; line-height: 1.02;
  margin-bottom: var(--s-4);
  color: var(--ink);
}
.cta p {
  color: var(--ink-3);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto var(--s-6);
  line-height: 1.5;
}
.cta-actions { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; }
/* Stripe-standard mesh — indigo + cyan only */
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 320px at 18% 40%, rgba(99, 91, 255, 0.16), transparent 60%),
    radial-gradient(ellipse 500px 300px at 82% 60%, rgba(0, 212, 255, 0.14), transparent 60%),
    radial-gradient(ellipse 450px 260px at 50% 100%, rgba(99, 91, 255, 0.10), transparent 60%);
  pointer-events: none;
}

/* Page header */
.page-head { padding: var(--s-9) 0 var(--s-6); text-align: center; }
.page-head h1 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(48px, 6.5vw, 88px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: var(--s-4) 0 var(--s-4);
  color: var(--ink);
}
.page-head .lead {
  color: var(--ink-3);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Prose */
.prose-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--s-7);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--s-6) 0 var(--s-9);
}
.toc {
  position: sticky; top: 100px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: var(--s-5);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
}
.toc-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: var(--s-3);
}
.toc ol { list-style: none; counter-reset: toc; }
.toc li {
  counter-increment: toc;
  margin-bottom: 4px;
  font-size: 13.5px;
  line-height: 1.4;
}
.toc li::before {
  content: counter(toc, decimal-leading-zero);
  display: inline-block;
  font-variant-numeric: tabular-nums;
  color: var(--ink-4);
  margin-right: 8px;
  font-size: 11px;
  font-weight: 600;
}
.toc a {
  color: var(--ink-3);
  display: inline-block;
  padding: 4px 0;
}
.toc a:hover { color: var(--indigo); }

.prose {
  padding: var(--s-7);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-2);
}
.prose .meta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; border-radius: var(--r-full);
  background: rgba(99, 91, 255, 0.08);
  border: 1px solid rgba(99, 91, 255, 0.22);
  color: var(--indigo);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: var(--s-5);
}
.prose h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: var(--s-7) 0 var(--s-3);
  scroll-margin-top: 100px;
  color: var(--ink);
}
.prose h2:first-of-type { margin-top: 0; }
.prose h3 {
  font-size: 18px; font-weight: 600;
  margin: var(--s-5) 0 var(--s-2);
  color: var(--ink);
}
.prose p {
  color: var(--ink-2);
  margin-bottom: var(--s-4);
  line-height: 1.78;
  font-size: 16px;
}
.prose ul, .prose ol {
  margin: 0 0 var(--s-4) var(--s-5);
  color: var(--ink-2);
}
.prose li { margin-bottom: 10px; line-height: 1.7; font-size: 16px; }
.prose li::marker { color: var(--indigo); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--indigo); border-bottom: 1px solid rgba(99, 91, 255, 0.3); }
.prose a:hover { border-bottom-color: var(--indigo); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--s-6);
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--s-6) 0 var(--s-9);
}
.contact-info { display: flex; flex-direction: column; gap: var(--s-3); }
.info-card {
  padding: var(--s-5);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  display: flex; gap: var(--s-4); align-items: flex-start;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-3);
  border-color: var(--line-2);
}
.info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 14px;
  background: var(--g-primary);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: var(--glow);
}
.info-card:nth-child(2) .info-icon { background: var(--g-pink); }
.info-card:nth-child(3) .info-icon { background: var(--g-accent); color: var(--navy); }
.info-card:nth-child(4) .info-icon { background: var(--g-deep); }
.info-card:nth-child(5) .info-icon { background: var(--g-mint); color: var(--navy); }
.info-card:nth-child(6) .info-icon { background: linear-gradient(135deg, #635BFF, #FF5996); }
.info-card h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 21px; letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--ink);
}
.info-card p, .info-card a {
  font-size: 14px; color: var(--ink-3);
  line-height: 1.5; border-bottom: none;
}
.info-card a { color: var(--ink); font-weight: 500; display: inline-block; margin-bottom: 2px; }
.info-card a:hover { color: var(--indigo); }

.form-card {
  padding: var(--s-7);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-2);
}
.form-card h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-2);
  color: var(--ink);
}
.form-card .form-sub {
  color: var(--ink-3);
  font-size: 15px;
  margin-bottom: var(--s-6);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.form-group { margin-bottom: var(--s-3); }
.form-group label {
  display: block;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 8px;
}
.form-control {
  width: 100%; padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--bg);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-control::placeholder { color: var(--ink-5); }
.form-control:focus {
  outline: none;
  border-color: var(--indigo);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.12);
}
textarea.form-control { min-height: 140px; resize: vertical; line-height: 1.6; }
.form-status {
  margin-top: var(--s-3);
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-size: 14px;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(0, 217, 36, 0.12);
  border: 1px solid rgba(0, 217, 36, 0.3);
  color: #00A310;
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-4);
  margin-top: var(--s-6);
}
.value {
  padding: var(--s-6);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.value:hover { transform: translateY(-2px); box-shadow: var(--sh-3); }
.value:nth-child(1) { background: linear-gradient(165deg, #FFFFFF, #EEF0FF); }
.value:nth-child(2) { background: linear-gradient(165deg, #FFFFFF, #FFE4ED); }
.value:nth-child(3) { background: linear-gradient(165deg, #FFFFFF, #E0F2FE); }
.value:nth-child(4) { background: linear-gradient(165deg, #FFFFFF, #E0FAF6); }
.value:nth-child(5) { background: linear-gradient(165deg, #FFFFFF, #F0E6FF); }
.value:nth-child(6) { background: linear-gradient(165deg, #FFFFFF, #EEF0FF); }
.value .num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--s-3);
  color: var(--indigo);
}
.value:nth-child(2) .num { color: #DB1B6B; }
.value:nth-child(3) .num { color: #0284C7; }
.value:nth-child(4) .num { color: #00A310; }
.value:nth-child(5) .num { color: #6D28D9; }
.value:nth-child(6) .num { color: var(--indigo); }
.value h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--ink);
}
.value p { color: var(--ink-3); font-size: 15px; line-height: 1.6; }

.timeline {
  margin-top: var(--s-6);
  position: relative;
  padding-left: var(--s-6);
}
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 8px; bottom: 4px;
  width: 2px;
  background: linear-gradient(to bottom, var(--indigo), var(--cyan), var(--pink), transparent);
}
.t-item { position: relative; padding-bottom: var(--s-6); }
.t-item::before {
  content: ''; position: absolute; left: -28px; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--indigo);
  box-shadow: 0 0 12px rgba(99, 91, 255, 0.35);
}
.t-item .when {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--indigo);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 500;
}
.t-item h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--ink);
}
.t-item p { color: var(--ink-3); font-size: 15.5px; line-height: 1.6; }

/* Footer — bigger, roomier, blue → cyan gradient bg */
.footer {
  padding: var(--s-10) 0 var(--s-7);
  position: relative;
  overflow: hidden;
}
/* Dark indigo gradient — same family as the indigo button */
.footer.dark::before {
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #4338CA 100%);
}
.footer.dark::after {
  /* keep the star sparkle but soften since the bg is now bright */
  opacity: 0.35;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1.2px 1.2px at 64% 12%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 88% 48%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 32% 78%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 76% 84%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 8% 58%, rgba(255,255,255,0.55), transparent);
}
/* Text contrast on the brighter gradient — all white tones */
.footer.dark .footer-brand p { color: rgba(255, 255, 255, 0.9); }
.footer.dark h4 { color: rgba(255, 255, 255, 0.78); }
.footer.dark li a { color: rgba(255, 255, 255, 0.92); }
.footer.dark li a:hover { color: #fff; }
.footer.dark .footer-bottom {
  color: rgba(255, 255, 255, 0.78);
  border-top-color: rgba(255, 255, 255, 0.22);
}
.footer.dark .social-link {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.footer.dark .social-link:hover {
  background: #fff;
  border-color: #fff;
  color: var(--primary);
}
.footer.dark .brand-mark {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 28px rgba(10, 37, 64, 0.2);
}
.footer.dark .brand-mark svg { color: var(--primary); }
.footer.dark .footer-big-mark {
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-9);
}
.footer-brand .brand {
  font-size: 22px;
}
.footer-brand .brand-mark {
  width: 44px; height: 44px;
}
.footer-brand .brand-mark svg { width: 24px; height: 24px; }
.footer-brand p {
  color: #C9D5E0;
  font-size: 16px;
  margin-top: var(--s-4);
  line-height: 1.65;
  max-width: 400px;
}
.footer h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #8898AA;
  margin-bottom: var(--s-4);
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 14px; }
.footer li a { color: #C9D5E0; font-size: 15.5px; transition: color 0.2s; }
.footer li a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8898AA;
  font-size: 13.5px;
  flex-wrap: wrap; gap: var(--s-4);
}
.socials { display: flex; gap: var(--s-2); }
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center;
  color: #C9D5E0;
  transition: all 0.2s;
}
.social-link:hover {
  color: #FFFFFF;
  background: var(--indigo);
  border-color: var(--indigo);
  transform: translateY(-2px);
}

.footer-big-mark {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-display);
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 900;
  font-style: normal;
  line-height: 0.85;
  letter-spacing: -0.07em;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.footer .container { position: relative; z-index: 1; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .b-1 { grid-column: span 4; }
  .b-2, .b-3 { grid-column: span 2; }
  .b-4, .b-5 { grid-column: span 2; }
  .b-6, .b-7, .b-8 { grid-column: span 4; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: var(--s-5); }
  .split.reverse > :first-child { order: 0; }
  .prose-wrap {
    grid-template-columns: 1fr;
    padding: var(--s-5) 0 var(--s-8);
    gap: var(--s-4);
  }
  /* On tablet the TOC becomes a slim collapsible block at top */
  .toc {
    position: static;
    max-height: none;
    padding: var(--s-4);
  }
  .toc ol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--s-4);
  }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .section { padding: var(--s-7) 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 76px; left: 0; right: 0;
    padding: var(--s-4);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(24px);
  }
  .nav-links.open li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links.open a { display: block; padding: 14px 4px; font-size: 16px; }
  .bento { grid-template-columns: 1fr; }
  .bento-cell { grid-column: span 1 !important; grid-row: auto !important; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: var(--s-3); padding: var(--s-4); }
  .stat + .stat::before { display: none; }

  /* Hero — phone area sits in a contained box, chips reposition inside viewport */
  .hero { padding: var(--s-7) 0 var(--s-7); }
  .hero h1 { font-size: clamp(36px, 9vw, 48px); }
  .hero-visual {
    max-width: 320px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .phone { transform: rotate(0deg) scale(0.92); width: 280px; height: 580px; }
  .phone-screen { border-radius: 34px; }
  .float-chip { font-size: 11px; padding: 7px 11px; }
  .float-chip .ico { width: 22px; height: 22px; }
  .float-chip.c1 { top: 2%; left: -8px; }
  .float-chip.c2 { top: 42%; right: -8px; }
  .float-chip.c3 { bottom: 6%; left: -8px; }
  .hero::before { width: 600px; height: 600px; right: -40%; }
  .hero::after { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .prose, .form-card { padding: var(--s-5); }
  .cta { padding: var(--s-8) 0; }
  .footer-big-mark { bottom: -20px; font-size: clamp(80px, 22vw, 140px); }

  /* Legal pages — Terms / Privacy mobile layout */
  .page-head {
    padding: var(--s-6) 0 var(--s-3);
  }
  .page-head h1 {
    font-size: clamp(34px, 9.5vw, 48px);
    letter-spacing: -0.035em;
    line-height: 1.05;
  }
  .page-head .lead {
    font-size: 16px;
    line-height: 1.55;
    padding: 0 var(--s-2);
  }
  .prose-wrap {
    padding: var(--s-4) 0 var(--s-7);
    gap: var(--s-4);
  }
  /* TOC as a collapsible details on mobile — saves space */
  .toc {
    padding: var(--s-3) var(--s-4);
  }
  .toc-title {
    margin-bottom: var(--s-2);
    font-size: 10.5px;
  }
  .toc ol {
    grid-template-columns: 1fr;
    max-height: 180px;
    overflow-y: auto;
  }
  .toc li { font-size: 13px; }
  .prose { padding: var(--s-5) var(--s-4); }
  .prose h2 {
    font-size: 22px;
    line-height: 1.2;
    margin: var(--s-6) 0 var(--s-3);
    letter-spacing: -0.02em;
  }
  .prose h3 {
    font-size: 15.5px;
    margin: var(--s-4) 0 var(--s-2);
  }
  .prose p, .prose li {
    font-size: 15px;
    line-height: 1.7;
  }
  .prose ul, .prose ol { margin-left: var(--s-4); }
  .prose .meta {
    font-size: 11px;
    padding: 4px 10px;
    margin-bottom: var(--s-4);
  }
}
@media (max-width: 420px) {
  /* On very small screens, drop the float chips entirely — Stripe does this too */
  .float-chip { display: none; }
  .phone { width: 260px; height: 540px; }
  .hero-visual { padding: 0; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}
