/* ===============================================
   Atronics Labs — Jessie · AI Front Door
   Design system: Inter + DM Serif Display
   Palette: blue/teal medical
   =============================================== */

/* -------- RESET / BASE -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0 0 1em; }

:root {
  /* Blues */
  --blue-50: #f0f9ff;
  --blue-100: #e0f2fe;
  --blue-200: #bae6fd;
  --blue-300: #7dd3fc;
  --blue-400: #38bdf8;
  --blue-500: #0ea5e9;
  --blue-600: #0284c7;
  --blue-700: #0369a1;
  --blue-800: #075985;
  --blue-900: #0c4a6e;
  --blue-950: #082f49;

  /* Teals */
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;

  /* Mint accent (ROI / outcome) */
  --mint-100: #d1fae5;
  --mint-500: #10b981;
  --mint-600: #059669;

  /* Risk */
  --red-100: #fee2e2;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --amber-100: #fef3c7;
  --amber-500: #f59e0b;

  /* Neutrals */
  --ink: #0f172a;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-md: 0 6px 16px rgba(15, 23, 42, .08);
  --shadow-lg: 0 20px 48px rgba(2, 132, 199, .15);
  --shadow-xl: 0 30px 80px rgba(2, 132, 199, .22);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --grad-primary: linear-gradient(135deg, var(--blue-500) 0%, var(--teal-600) 100%);
  --grad-soft: linear-gradient(180deg, var(--blue-50) 0%, #ffffff 100%);
  --grad-deep: linear-gradient(135deg, var(--blue-900) 0%, var(--teal-700) 100%);
}

.serif-italic { font-family: 'DM Serif Display', serif; font-style: italic; font-weight: 400; }
.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-weight: 600;
  font-size: .95rem;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(2, 132, 199, .28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(2, 132, 199, .35); }
.btn-ghost {
  background: rgba(255,255,255,.7);
  color: var(--blue-800);
  border: 1px solid var(--slate-200);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: #fff; border-color: var(--blue-300); color: var(--blue-700); }
.btn-lg { padding: 1rem 1.6rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* -------- NAV -------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  border-bottom-color: var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 40px; height: 32px; flex-shrink: 0; display: flex; align-items: center; }
.brand-mark svg { width: 100%; height: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-weight: 700; color: var(--ink); font-size: .95rem; letter-spacing: -.01em; }
.brand-text em { font-style: normal; font-size: .73rem; color: var(--slate-500); }

.nav-links {
  display: flex; gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: .92rem;
  color: var(--slate-700);
  font-weight: 500;
  transition: color .15s;
  position: relative;
}
.nav-links a:hover { color: var(--blue-700); }
.nav-cta { display: flex; gap: 12px; }
.nav-burger {
  display: none;
  font-size: 1.4rem;
  color: var(--slate-700);
  margin-left: auto;
  padding: 8px;
}

@media (max-width: 980px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--slate-200); padding: 16px 24px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--slate-100); }
  .nav-cta { margin-left: auto; }
  .nav-burger { display: block; }
}
@media (max-width: 600px) {
  .nav-cta .btn { padding: .55rem .9rem; font-size: .85rem; }
}

/* -------- HERO -------- */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--grad-soft);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(14,165,233,.18), transparent 70%),
    radial-gradient(45% 40% at 10% 90%, rgba(20,184,166,.15), transparent 70%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(14,165,233,.35) 0%, transparent 70%);
  top: -120px; left: -120px;
}
.hero-glow-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(20,184,166,.30) 0%, transparent 70%);
  bottom: -160px; right: -160px;
}

/* Centered single-column hero stack (reference layout) */
.hero-inner {
  position: relative; z-index: 1;
}
.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(14,165,233,.1);
  color: var(--blue-700);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-500); animation: pulseDot 1.6s infinite; }
@keyframes pulseDot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.8); } }

.hero-stack .display {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 1.4rem;
  color: var(--ink);
}
.hero-stack .display em {
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
}

.hero-stack .lede {
  font-size: 1.15rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin: 0 auto 2rem;
  max-width: 720px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.2rem;
}

/* -------- KIOSK CARD (centered, beneath CTAs) -------- */
.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 3.2rem;
}

/* Stats row — horizontal with dividers (reference layout) */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
  padding: 28px 32px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 130px;
  padding: 6px 18px;
}
.stat-value {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  color: var(--blue-800);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .78rem;
  color: var(--slate-500);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, var(--slate-200), transparent);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .hero-stats { padding: 18px; gap: 18px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1 1 45%; min-width: 0; padding: 4px; }
}

/* -------- TRUST BAR (full-width band beneath hero, reference layout) -------- */
.trust-bar {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-bar .trust-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--slate-500);
  font-weight: 600;
}
.trust-bar .trust-logos {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 22px;
  margin: 0; padding: 0;
}
.trust-bar .trust-logos li {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--slate-700);
  letter-spacing: -.01em;
}
.trust-bar .trust-logos li i { color: var(--blue-600); font-size: .9rem; }
.trust-bar .trust-logos .dot-sep { color: var(--slate-300); font-family: inherit; }
.trust-bar .trust-logos .dot-sep i { display: none; }

/* Original kiosk-card / floating-badge styles below remain unchanged */
.kiosk-card {
  position: relative;
  width: 100%;
  max-width: 720px;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--slate-200);
}
.kiosk-bezel {
  position: relative;
  padding: 16px;
  background: linear-gradient(180deg, var(--slate-100) 0%, #fff 60%);
}
.kiosk-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--slate-100);
}
.kiosk-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.kiosk-glow {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,47,73,.25));
  pointer-events: none;
}

/* Floating UI badges over kiosk image */
.float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(15,23,42,.18);
  backdrop-filter: blur(8px);
}
.fb-live { top: 28px; left: 28px; color: var(--blue-900); }
.fb-live .live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 0 0 0 rgba(239,68,68,.6);
  animation: livePulse 1.6s infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(239,68,68,.55); }
  70% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}
.fb-mat {
  bottom: 30px; left: 28px;
  background: var(--blue-50);
  color: var(--blue-800);
  border: 1px solid var(--blue-200);
}
.fb-voice {
  top: 28px; right: 28px;
  background: var(--blue-700); color: #fff;
}
.fb-voice .mini-wave { display: inline-flex; gap: 2px; align-items: center; height: 14px; }
.fb-voice .mini-wave span {
  display: block; width: 2px; background: #fff; border-radius: 2px;
  animation: miniWave 1s infinite ease-in-out;
}
.fb-voice .mini-wave span:nth-child(1) { height: 6px; animation-delay: .0s; }
.fb-voice .mini-wave span:nth-child(2) { height: 10px; animation-delay: .12s; }
.fb-voice .mini-wave span:nth-child(3) { height: 14px; animation-delay: .24s; }
.fb-voice .mini-wave span:nth-child(4) { height: 9px; animation-delay: .36s; }
.fb-voice .mini-wave span:nth-child(5) { height: 5px; animation-delay: .48s; }
@keyframes miniWave { 0%,100% { transform: scaleY(.5); } 50% { transform: scaleY(1); } }

.float-card {
  position: absolute;
  background: rgba(255,255,255,.97);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 14px 40px rgba(15,23,42,.18);
  font-size: .82rem;
  min-width: 200px;
  border: 1px solid var(--slate-200);
}
.fb-esi { right: 22px; bottom: 80px; }
.fc-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.fc-label { color: var(--slate-500); font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; }
.fc-value { font-weight: 700; color: var(--blue-800); font-size: 1rem; }
.fc-bar { background: var(--slate-100); height: 5px; border-radius: 4px; overflow: hidden; margin-bottom: 6px; }
.fc-bar span { display: block; height: 100%; background: var(--grad-primary); border-radius: 4px; }
.fc-foot { color: var(--teal-700); font-size: .72rem; font-weight: 600; }
.fc-foot-sm { font-size: .68rem; color: var(--slate-500); font-weight: 500; }

.fb-lang { left: 22px; top: 50%; transform: translateY(-30%); padding: 10px 12px; min-width: 0; display: none; }
.lang-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-bottom: 6px; }
.lang-grid span {
  font-size: .68rem; font-weight: 700;
  background: var(--blue-50); color: var(--blue-800);
  padding: 4px 6px; border-radius: 6px; text-align: center;
}

.fb-greet {
  left: 22px; bottom: 80px;
  max-width: 270px;
}
.greet-line { font-size: .8rem; color: var(--slate-700); margin-bottom: 6px; line-height: 1.4; }
.greet-line .greet-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-500); margin-right: 6px; vertical-align: middle; }
.greet-resp { color: var(--slate-500); padding-left: 14px; font-style: italic; }
.greet-meta {
  font-size: .68rem; font-weight: 600; color: var(--blue-700);
  background: var(--blue-50); padding: 4px 8px; border-radius: 6px; display: inline-block; margin-top: 4px;
}

.kiosk-caption {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: #fff;
  border-top: 1px solid var(--slate-100);
  gap: 12px;
}
.kiosk-caption strong { display: block; font-size: .95rem; color: var(--ink); }
.kiosk-caption span { font-size: .8rem; color: var(--slate-500); }
.caption-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .73rem; font-weight: 600;
  background: var(--blue-50); color: var(--blue-700);
  padding: 6px 12px; border-radius: 999px;
  white-space: nowrap;
}
.caption-pill-mint { background: var(--mint-100); color: var(--mint-600); }

.kiosk-card-lg { max-width: 620px; }
.kiosk-card-lg .kiosk-photo { aspect-ratio: 4/3; }

@media (max-width: 980px) {
  .fb-greet { display: none; }
}

/* -------- TRUST STRIP -------- */
.trust-strip {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid var(--slate-200);
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.trust-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate-500);
  font-weight: 600;
}
.trust-logos {
  display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center;
}
.trust-logos li {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--slate-700);
  letter-spacing: -.01em;
}
.trust-logos .dot-sep { color: var(--slate-300); font-family: inherit; }

/* -------- SECTIONS -------- */
.section {
  padding: 96px 0;
  position: relative;
}
.section-head { max-width: 820px; margin: 0 auto 60px; text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal-600);
  margin-bottom: 1rem;
}
.section-eyebrow.light { color: var(--blue-200); }
.display-2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 1.1rem;
}
.display-3 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -.022em;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.08rem;
  color: var(--slate-600);
  line-height: 1.65;
}
.section-sub.light { color: var(--blue-100); }
.section-foot {
  text-align: center;
  margin-top: 50px;
  font-size: .9rem;
  color: var(--slate-500);
  font-style: italic;
}

/* -------- CRISIS -------- */
.section-crisis { background: var(--slate-50); }
.crisis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.crisis-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.crisis-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.crisis-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--blue-700);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.crisis-num span { font-size: 1rem; color: var(--slate-500); margin-left: 6px; font-family: 'Inter', sans-serif; }
.crisis-num strong { color: var(--red-600); font-family: 'DM Serif Display', serif; font-weight: 400; }
.crisis-num.small { font-size: 1.4rem; }
.crisis-num.small span { display: block; margin-left: 0; font-size: 1rem; color: var(--slate-500); }
.crisis-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--ink); }
.crisis-card p { font-size: .9rem; color: var(--slate-600); margin: 0; }

@media (max-width: 980px) {
  .crisis-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .crisis-grid { grid-template-columns: 1fr; }
}

/* -------- PERSONAS -------- */
.section-personas { background: #fff; }
.persona-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.persona-card {
  background: linear-gradient(180deg, #fff 0%, var(--blue-50) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.persona-card header {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}
.persona-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid #fff;
  box-shadow: 0 6px 18px rgba(2,132,199,.16);
}
.persona-sarah { background: linear-gradient(135deg, #fbcfe8 0%, #f9a8d4 60%, #ec4899 100%); position: relative; }
.persona-sarah::after, .persona-ahmed::after {
  content: ''; position: absolute; inset: 6px;
  border-radius: 50%; background: rgba(255,255,255,.25);
}
.persona-ahmed { background: linear-gradient(135deg, #c7d2fe 0%, #818cf8 60%, #6366f1 100%); position: relative; }
.persona-card header h3 { font-size: 1.3rem; margin: 0 0 4px; }
.persona-card header span { font-size: .85rem; color: var(--slate-600); }
.risk-tag {
  font-size: .7rem; font-weight: 700;
  padding: 5px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .04em; white-space: nowrap;
}
.risk-red { background: var(--red-100); color: var(--red-600); }
.risk-amber { background: var(--amber-100); color: var(--amber-500); }
.risk-mint { background: var(--mint-100); color: var(--mint-600); }

.persona-card p { color: var(--slate-700); font-size: .98rem; }
.persona-bullets li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0; border-top: 1px solid var(--slate-200);
  font-size: .92rem; color: var(--slate-700);
}
.persona-bullets li i { color: var(--blue-600); margin-top: 4px; flex-shrink: 0; width: 18px; }
.persona-bullets.bullets-mint li i { color: var(--mint-600); }
.persona-after { background: linear-gradient(180deg, #fff 0%, #f0fdfa 100%); border-color: var(--mint-100); }

@media (max-width: 768px) {
  .persona-grid { grid-template-columns: 1fr; }
  .persona-card header { grid-template-columns: 56px 1fr; }
  .persona-card header .risk-tag { grid-column: 1 / -1; }
}

/* -------- VOICES -------- */
.section-voices { background: var(--slate-50); }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.voice-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--slate-200);
  margin: 0;
}
.voice-leader {
  grid-column: span 1;
  background: linear-gradient(180deg, var(--blue-900) 0%, var(--blue-800) 100%);
  color: #fff;
  border-color: var(--blue-800);
  box-shadow: 0 12px 28px rgba(8,47,73,.3);
}
.voice-card blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.08rem;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 18px;
  position: relative;
  padding-left: 0;
}
.voice-leader blockquote { color: #fff; font-size: 1.18rem; }
.voice-card figcaption strong { display: block; font-size: .92rem; color: var(--ink); }
.voice-card figcaption span { font-size: .8rem; color: var(--slate-500); }
.voice-leader figcaption strong { color: #fff; }
.voice-leader figcaption span { color: var(--blue-200); }

@media (max-width: 900px) { .voice-grid { grid-template-columns: repeat(2, 1fr); } .voice-leader { grid-column: span 2; } }
@media (max-width: 560px) { .voice-grid { grid-template-columns: 1fr; } .voice-leader { grid-column: span 1; } }

/* -------- BLINDSPOT (Slide 5) -------- */
.section-blindspot { background: #fff; }
.blindspot-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 18px;
  position: relative;
}
.phase {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
}
.phase-num {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue-700);
  background: var(--blue-50);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.phase h3 { font-size: 1.3rem; margin-bottom: 10px; }
.phase-desc { color: var(--slate-600); font-size: .95rem; }
.phase ul { display: flex; flex-direction: column; gap: 6px; padding-top: 12px; border-top: 1px solid var(--slate-100); }
.phase ul li { font-size: .9rem; color: var(--slate-700); padding-left: 18px; position: relative; }
.phase ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-500);
}
.phase-2 {
  background: linear-gradient(180deg, #fff5f5 0%, #fff 100%);
  border-color: var(--red-100);
  box-shadow: 0 18px 40px rgba(239,68,68,.12);
}
.phase-2 .phase-num { background: var(--red-100); color: var(--red-600); }
.text-danger { color: var(--red-600); }
.bullets-danger li::before { background: var(--red-500) !important; }

.blindspot-callout {
  margin-top: 50px;
  background: var(--grad-deep);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  box-shadow: var(--shadow-lg);
}
.blindspot-callout i {
  font-size: 1.6rem;
  color: var(--teal-400);
}
.blindspot-callout p {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 900px) { .blindspot-grid { grid-template-columns: 1fr; } }

/* -------- JESSIE / FEATURES -------- */
.section-jessie { background: var(--slate-50); }
.jessie-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}
.jessie-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feat-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--slate-200);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.feat-card .fc-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.feat-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feat-card p { font-size: .88rem; color: var(--slate-600); margin: 0 0 14px; }
.feat-stat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: rgba(20,184,166,.1);
  padding: 4px 10px;
  border-radius: 999px;
}

@media (max-width: 980px) {
  .jessie-grid { grid-template-columns: 1fr; }
  .jessie-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .jessie-features { grid-template-columns: 1fr; } }

/* -------- AUDIO DEMO -------- */
.section-demo {
  background: linear-gradient(180deg, var(--blue-950) 0%, var(--blue-900) 100%);
  color: #fff;
}
.section-demo .display-2 { color: #fff; }
.section-demo .section-sub { color: var(--blue-100); }
.section-demo .section-eyebrow { color: var(--teal-400); }

.demo-player {
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  backdrop-filter: blur(12px);
}
.demo-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.demo-meta { display: flex; flex-direction: column; gap: 6px; }
.demo-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--teal-400);
}
.demo-tag .live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red-500); animation: livePulse 1.6s infinite; }
.demo-meta strong { font-size: 1.05rem; color: #fff; }
.demo-sub { font-size: .82rem; color: var(--blue-200); }
.demo-times { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: #fff; letter-spacing: .04em; }
.demo-times .sep { color: var(--blue-300); margin: 0 6px; }

.wave-canvas {
  display: block;
  width: 100%;
  height: 130px;
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  cursor: pointer;
  margin-bottom: 22px;
}

.demo-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.ctrl {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: .9rem;
  font-weight: 600;
  transition: background .15s, transform .15s;
}
.ctrl:hover { background: rgba(255,255,255,.16); transform: translateY(-1px); }
.ctrl-secondary span { font-size: .72rem; color: var(--blue-200); }
.ctrl-play {
  width: 56px; height: 56px;
  background: var(--grad-primary);
  font-size: 1.2rem;
  padding: 0;
  box-shadow: 0 10px 30px rgba(14,165,233,.45);
}
.ctrl-play:hover { background: var(--grad-primary); transform: scale(1.05); }
.ctrl-pill { background: rgba(255,255,255,.08); padding: 8px 14px; }
.ctrl-icon { width: 40px; height: 40px; padding: 0; }
.ctrl-spacer { flex: 1; }
.ctrl-volume { display: flex; align-items: center; gap: 8px; }
.ctrl-volume input[type=range] {
  width: 90px;
  -webkit-appearance: none;
  background: transparent;
}
.ctrl-volume input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  background: rgba(255,255,255,.18);
  border-radius: 4px;
}
.ctrl-volume input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--teal-400);
  margin-top: -5px;
  cursor: pointer;
}
.ctrl-volume input[type=range]::-moz-range-track { height: 4px; background: rgba(255,255,255,.18); border-radius: 4px; }
.ctrl-volume input[type=range]::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: var(--teal-400); border: none; cursor: pointer; }

.demo-transcript {
  max-height: 240px;
  overflow-y: auto;
  background: rgba(0,0,0,.18);
  border-radius: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.05);
}
.demo-transcript::-webkit-scrollbar { width: 6px; }
.demo-transcript::-webkit-scrollbar-track { background: transparent; }
.demo-transcript::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); border-radius: 6px; }

.tr-line {
  display: grid;
  grid-template-columns: 50px 100px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  opacity: .55;
  transition: opacity .2s, background .2s;
  border-radius: 6px;
  padding-left: 6px;
  padding-right: 6px;
}
.tr-line.active { opacity: 1; background: rgba(20,184,166,.12); }
.tr-time { font-family: 'DM Serif Display', serif; color: var(--blue-300); font-size: .85rem; }
.tr-speaker {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 3px 9px; border-radius: 999px;
  text-align: center;
}
.tr-jessie { background: rgba(20,184,166,.18); color: var(--teal-400); }
.tr-patient { background: rgba(244,114,182,.16); color: #f9a8d4; }
.tr-anabella { background: rgba(56,189,248,.15); color: var(--blue-200); }
.tr-narrator { background: rgba(255,255,255,.08); color: var(--slate-300); }
.tr-text { color: #fff; font-size: .92rem; line-height: 1.4; }

.demo-foot {
  text-align: center;
  margin-top: 28px;
  font-size: .85rem;
  color: var(--blue-200);
}
.demo-foot kbd {
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: .75rem;
  font-family: monospace;
  margin: 0 2px;
}

@media (max-width: 700px) {
  .demo-player { padding: 22px; }
  .tr-line { grid-template-columns: 1fr; gap: 4px; }
  .tr-time, .tr-speaker { font-size: .7rem; }
  .ctrl-volume input[type=range] { width: 60px; }
}

/* -------- OUTCOMES PERSONAS (Slide 7) -------- */
.section-outcomes-personas { background: #fff; }

/* -------- ROLLOUT -------- */
.section-rollout { background: var(--slate-50); }
.rollout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: phase;
}
.rollout-step {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 26px;
  border: 1px solid var(--slate-200);
  position: relative;
}
.rollout-step:nth-child(1) { background: linear-gradient(180deg, #fff 0%, var(--blue-50) 100%); border-color: var(--blue-200); }
.rollout-step:nth-child(2) { background: linear-gradient(180deg, #fff 0%, #f0fdfa 100%); border-color: var(--mint-100); }
.rollout-step:nth-child(3) { background: linear-gradient(180deg, #fff 0%, #eff6ff 100%); border-color: var(--blue-300); }
.rollout-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--teal-700);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.rollout-step h3 { font-size: 1.4rem; margin-bottom: 10px; }
.rollout-step p { color: var(--slate-600); font-size: .95rem; }
.rollout-step ul { display: flex; flex-direction: column; gap: 8px; padding-top: 12px; border-top: 1px solid var(--slate-200); }
.rollout-step ul li { font-size: .9rem; color: var(--slate-700); padding-left: 22px; position: relative; }
.rollout-step ul li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--teal-600); font-weight: 700; }

@media (max-width: 900px) { .rollout-grid { grid-template-columns: 1fr; } }

/* -------- ROI -------- */
.section-roi { background: #fff; }
.roi-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 50px;
}
.roi-stat {
  background: linear-gradient(180deg, var(--blue-50) 0%, #fff 100%);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.roi-stat strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2.6rem;
  color: var(--blue-800);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.roi-stat span { display: block; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.roi-stat em { font-style: normal; font-size: .85rem; color: var(--slate-600); }

.roi-table {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 32px;
}
.roi-table h3 { font-size: 1.2rem; margin-bottom: 18px; }
.roi-table table { width: 100%; border-collapse: collapse; }
.roi-table th, .roi-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--slate-200);
  font-size: .95rem;
}
.roi-table th { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--slate-500); font-weight: 700; }
.roi-table td:last-child { text-align: right; font-weight: 600; color: var(--blue-800); }
.roi-table .row-total { background: rgba(14,165,233,.06); }
.roi-table .row-total td { border-bottom: none; padding-top: 18px; padding-bottom: 18px; font-size: 1.05rem; }
.roi-table .row-total td:last-child { color: var(--teal-700); }
.roi-foot { font-size: .8rem; color: var(--slate-500); margin: 18px 0 0; font-style: italic; }

@media (max-width: 900px) { .roi-stats { grid-template-columns: 1fr; } }

/* -------- PRICING -------- */
.section-pricing { background: var(--slate-50); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.price-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-featured {
  border-color: var(--teal-500);
  box-shadow: 0 22px 50px rgba(20,184,166,.18);
}
.price-tier {
  font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--teal-700);
  margin-bottom: 12px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--slate-200);
}
.price-amount strong {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--blue-900);
  line-height: 1;
  letter-spacing: -.02em;
}
.price-amount span { font-size: .85rem; color: var(--slate-500); }
.price-card ul { display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 22px; }
.price-card ul li { font-size: .92rem; color: var(--slate-700); display: flex; gap: 10px; align-items: flex-start; }
.price-card ul li i { color: var(--teal-600); margin-top: 4px; }
.price-note {
  font-size: .82rem; font-weight: 600; color: var(--blue-700);
  background: var(--blue-50); padding: 10px 14px; border-radius: 10px;
  text-align: center;
}

.pricing-anchor {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.pricing-anchor > div { display: flex; flex-direction: column; }
.pricing-anchor strong {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--teal-400);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.pricing-anchor span { font-size: .85rem; color: var(--blue-100); }

@media (max-width: 900px) { .pricing-grid, .pricing-anchor { grid-template-columns: 1fr; } }

/* -------- TRUST GRID (integration / security) -------- */
.section-trust { background: #fff; padding: 96px 0 48px; }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.trust-col p { color: var(--slate-600); font-size: 1rem; margin-bottom: 18px; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: .95rem; color: var(--slate-700);
}
.check-list li i { color: var(--teal-600); font-size: 1.05rem; }

@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr; } }

/* -------- CONTACT -------- */
.section-contact {
  background: linear-gradient(135deg, var(--blue-950) 0%, var(--teal-700) 120%);
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.contact-copy { max-width: 480px; }
.contact-copy .display-2.light { color: #fff; }
.contact-points {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 22px;
}
.contact-points li {
  display: flex; align-items: center; gap: 12px;
  font-size: .98rem; color: var(--blue-100);
}
.contact-points li i { color: var(--teal-400); }
.contact-mail {
  margin-top: 26px;
  font-size: .92rem;
  color: var(--blue-200);
}
.contact-mail a { color: var(--teal-400); font-weight: 600; border-bottom: 1px dashed currentColor; }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}
.contact-form h3 { font-size: 1.4rem; margin-bottom: 20px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: .82rem; font-weight: 600; color: var(--slate-700);
  margin-bottom: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit;
  padding: 11px 14px;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  background: var(--slate-50);
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .15s, background .15s, box-shadow .15s;
  font-weight: 400;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(14,165,233,.12);
}
.contact-form textarea { resize: vertical; min-height: 90px; }
.form-success, .form-error {
  display: none;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: .9rem;
  margin-top: 14px;
  margin-bottom: 0;
}
.form-success { background: var(--mint-100); color: var(--mint-600); }
.form-error { background: var(--red-100); color: var(--red-600); }
.form-success.show, .form-error.show { display: block; }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

/* -------- FOOTER -------- */
.footer {
  background: var(--blue-950);
  color: var(--blue-100);
  padding: 60px 0 24px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 50px;
}
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text em { color: var(--blue-300); }
.footer-tag { color: var(--blue-300); font-size: .9rem; margin-top: 14px; max-width: 320px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-links h4 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: 14px;
}
.footer-links a, .footer-links span {
  display: block;
  font-size: .9rem;
  color: var(--blue-200);
  padding: 5px 0;
  transition: color .15s;
}
.footer-links a:hover { color: var(--teal-400); }
.footer-base {
  max-width: 1240px;
  margin: 36px auto 0;
  padding: 18px 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: var(--blue-300);
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  .footer-links { grid-template-columns: 1fr 1fr; }
}

/* -------- REVEAL ANIMATIONS -------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
