/* ============================================================
   GurkanAI – Design System  (Light Theme)
   Primary   : #1a73e8  (brand blue)
   Analogous : #0891b2  (teal)
   Triadic   : #16a34a  (green – health)
   Complement: #f59e0b  (amber – energy / CTA contrast)
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- Design Tokens ---- */
:root {
  /* ── Backgrounds ── */
  --bg-base:      #ffffff;
  --bg-2:         #f8faff;
  --bg-3:         #eef3fc;

  /* ── Surfaces / Cards ── */
  --surface-1:    #ffffff;
  --surface-2:    #f4f7fe;
  --surface-3:    #e8effc;

  /* ── Glass (light glass — frosted white) ── */
  --glass-1:      rgba(255,255,255,0.60);
  --glass-2:      rgba(255,255,255,0.80);
  --glass-3:      rgba(255,255,255,0.95);
  --glass-border: rgba(26,115,232,0.12);
  --glass-border-h:rgba(26,115,232,0.30);

  /* ── Brand Primary – Blue ── */
  --blue:         #1a73e8;
  --blue-light:   #4a90ed;
  --blue-dark:    #1557b0;
  --blue-xdark:   #0d3d7c;
  --blue-glow:    rgba(26,115,232,0.18);
  --blue-tint:    #e8f1fd;
  --blue-tint-2:  #d0e4fb;

  /* ── Analogous – Teal ── */
  --teal:         #0891b2;
  --teal-light:   #22d3ee;
  --teal-dark:    #0e7490;
  --teal-tint:    #e0f7fc;

  /* ── Triadic – Green (health / nature) ── */
  --green:        #16a34a;
  --green-light:  #22c55e;
  --green-dark:   #15803d;
  --green-tint:   #dcfce7;

  /* ── Complementary – Amber (energy / CTA) ── */
  --amber:        #f59e0b;
  --amber-dark:   #d97706;
  --amber-tint:   #fef3c7;

  /* ── Gradients ── */
  --grad-primary: linear-gradient(135deg, #1a73e8 0%, #0891b2 100%);
  --grad-hero:    linear-gradient(135deg, #1a73e8 0%, #0891b2 50%, #16a34a 100%);
  --grad-text:    linear-gradient(135deg, #1a73e8 0%, #0891b2 50%, #16a34a 100%);
  --grad-amber:   linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --grad-surface: linear-gradient(160deg, #f8faff 0%, #eef3fc 100%);

  /* ── Text ── */
  --text-1:       #0f172a;   /* headings – deep navy */
  --text-2:       #334155;   /* body */
  --text-3:       #64748b;   /* muted / meta */
  --text-4:       #94a3b8;   /* placeholder */
  --text-inv:     #ffffff;   /* on colored bg */

  /* ── Shadows ── */
  --shadow-xs:    0 1px 2px rgba(15,23,42,0.06);
  --shadow-sm:    0 2px 8px rgba(15,23,42,0.08), 0 1px 3px rgba(15,23,42,0.06);
  --shadow-md:    0 4px 20px rgba(15,23,42,0.10), 0 2px 8px rgba(15,23,42,0.07);
  --shadow-lg:    0 16px 48px rgba(15,23,42,0.12), 0 8px 24px rgba(15,23,42,0.07);
  --shadow-xl:    0 32px 80px rgba(15,23,42,0.14), 0 16px 40px rgba(15,23,42,0.08);
  --shadow-blue:  0 8px 32px rgba(26,115,232,0.22), 0 2px 8px rgba(26,115,232,0.14);
  --shadow-blue-sm: 0 4px 16px rgba(26,115,232,0.18);
  --shadow-teal:  0 8px 32px rgba(8,145,178,0.20);
  --shadow-green: 0 8px 32px rgba(22,163,74,0.20);

  /* ── Spacing scale (4-pt) ── */
  --sp-1:  4px;  --sp-2:  8px;  --sp-3:  12px; --sp-4:  16px;
  --sp-5:  20px; --sp-6:  24px; --sp-8:  32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  /* ── Typography scale ── */
  --ts-xs:   0.75rem;   /* 12px */
  --ts-sm:   0.875rem;  /* 14px */
  --ts-base: 1rem;      /* 16px */
  --ts-lg:   1.125rem;  /* 18px */
  --ts-xl:   1.25rem;   /* 20px */
  --ts-2xl:  1.5rem;    /* 24px */
  --ts-3xl:  1.875rem;  /* 30px */
  --ts-4xl:  2.25rem;   /* 36px */
  --ts-5xl:  3rem;      /* 48px */
  --ts-6xl:  3.75rem;   /* 60px */
  --ts-7xl:  4.5rem;    /* 72px */

  /* ── Border radius ── */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  20px;
  --radius-2xl: 28px;
  --radius-full:9999px;

  /* ── Motion ── */
  --dur-fast:   150ms;
  --dur-base:   250ms;
  --dur-slow:   400ms;
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:    cubic-bezier(0.64, 0, 0.78, 0);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============================================================
   BASE RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--ts-base);
  line-height: 1.6;
  color: var(--text-2);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  color: var(--text-1);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

/* Gradient text utility */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-amber {
  background: var(--grad-amber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.section {
  padding: var(--sp-24) 0;
}
.section-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}
.section-header h2 {
  font-size: clamp(var(--ts-3xl), 4vw, var(--ts-5xl));
  margin-bottom: var(--sp-4);
}
.section-header p {
  font-size: var(--ts-lg);
  color: var(--text-3);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   BADGE
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: var(--ts-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--blue-tint);
  color: var(--blue-dark);
  border: 1px solid var(--blue-tint-2);
  margin-bottom: var(--sp-5);
}
.badge-green {
  background: var(--green-tint);
  color: var(--green-dark);
  border-color: rgba(22,163,74,0.20);
}
.badge-amber {
  background: var(--amber-tint);
  color: var(--amber-dark);
  border-color: rgba(245,158,11,0.25);
}

/* ============================================================
   GLASS CARD  (light frosted surface)
   ============================================================ */
.glass-card {
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
}
.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
  border-color: var(--glass-border-h);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: var(--ts-sm);
  font-weight: 600;
  transition:
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    background var(--dur-fast);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-blue-sm);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue-tint-2);
}
.btn-outline:hover {
  background: var(--blue-tint);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.btn-amber {
  background: var(--grad-amber);
  color: #fff;
  box-shadow: 0 4px 16px rgba(245,158,11,0.30);
}
.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,158,11,0.36);
}
.btn-lg {
  padding: 15px 32px;
  font-size: var(--ts-base);
  gap: var(--sp-3);
}

/* ============================================================
   VIDEO INTRO SECTION  — fullscreen video hero, light theme
   ============================================================ */

/* ── Section container ── */
.vi-section {
  position: relative;
  width: 100%;
  height: 100dvh;           /* true viewport height, respects mobile chrome */
  overflow: hidden;
  background: #e8f1fd;      /* fallback until video / orbs paint */
}

/* ── Fullscreen video background ── */
.vi-video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;   /* above fallback bg */
  display: block;
}

/* ── Fallback bg (behind the video, visible before first frame loads) ── */
.vi-fallback-bg {
  position: absolute;
  inset: 0;
  z-index: 0;   /* below video */
  background: linear-gradient(155deg, #f0f6ff 0%, #e4effd 55%, #dbeafe 100%);
  pointer-events: none;
}
.vi-fb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}
.vi-fb-orb-1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(26,115,232,0.14) 0%, transparent 60%);
  top: -300px; right: -250px;
}
.vi-fb-orb-2 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(8,145,178,0.10) 0%, transparent 60%);
  bottom: -200px; left: -200px;
}
.vi-fb-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,115,232,0.10) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
}

/* ── Bottom fade: blends section into hero below ── */
.vi-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.95) 100%);
  z-index: 3;
  pointer-events: none;
}

/* ── OVERLAY — sits on top of video, z-index 2 ── */
.vi-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Light frosted glass — brand-tinted */
  background: rgba(240,246,255,0.08);
  backdrop-filter: blur(6px) saturate(1.2);
  -webkit-backdrop-filter: blur(6px) saturate(1.2);
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1),
              visibility 0.5s cubic-bezier(0.4,0,0.2,1);
}
.vi-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* Subtle radial vignette inside overlay */
.vi-overlay-glass {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%,
    transparent 0%,
    rgba(26,115,232,0.04) 100%);
  pointer-events: none;
}

/* ── Eyebrow — top-left anchored ── */
.vi-eyebrow-wrap {
  position: absolute;
  top: calc(68px + var(--sp-8)); /* below fixed navbar */
  left: 50%;
  transform: translateX(-50%);
  animation: vi-fade-in 0.6s ease both;
}
.vi-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--ts-xs);
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(26,115,232,0.22);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 12px rgba(26,115,232,0.12);
  white-space: nowrap;
}
.vi-live-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(22,163,74,0.5);
  animation: vi-pulse 2.2s ease-in-out infinite;
}
@keyframes vi-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(22,163,74,0.5); }
  60%  { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0   rgba(22,163,74,0); }
}

/* ── Centre content ── */
.vi-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-5);
  padding: 0 var(--sp-6);
  animation: vi-fade-up 0.7s 0.1s ease both;
}
@keyframes vi-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes vi-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vi-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
  text-shadow: 0 2px 20px rgba(255,255,255,0.8);
}
.vi-title-grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vi-sub {
  font-size: clamp(var(--ts-base), 2vw, var(--ts-lg));
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
  max-width: 540px;
}
.vi-br-desktop { display: block; }

/* ── Play button ── */
.vi-play-btn {
  position: relative;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid rgba(255,255,255,0.9);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
              background 0.18s ease,
              box-shadow 0.18s ease;
  box-shadow:
    0 0 0 0   rgba(26,115,232,0),
    0 10px 40px rgba(26,115,232,0.4),
    0 4px 16px rgba(0,0,0,0.12);
  touch-action: manipulation;
}
.vi-play-btn:hover {
  transform: scale(1.1);
  background: #1558c0;
  box-shadow:
    0 0 0 6px  rgba(26,115,232,0.15),
    0 14px 48px rgba(26,115,232,0.55),
    0 4px 16px rgba(0,0,0,0.12);
}
.vi-play-btn:active  { transform: scale(0.97); }
.vi-play-btn:focus-visible {
  outline: 3px solid rgba(26,115,232,0.6);
  outline-offset: 6px;
}
.vi-play-btn svg { margin-left: 5px; } /* optical triangle centering */

/* Pulsing rings */
.vi-ring {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px solid rgba(26,115,232,0.28);
  animation: vi-ring-pulse 2.6s ease-out infinite;
}
.vi-ring-2 {
  inset: -32px;
  border-color: rgba(26,115,232,0.13);
  animation-delay: 0.9s;
}
@keyframes vi-ring-pulse {
  0%   { transform: scale(0.78); opacity: 1; }
  100% { transform: scale(1.22); opacity: 0; }
}

.vi-play-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: calc(-1 * var(--sp-2)); /* tighten gap to button */
}

/* ── Bottom bar — doctor + duration + scroll ── */
.vi-bottom-bar {
  position: absolute;
  bottom: calc(var(--sp-10) + 8px); /* above the bottom fade */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  animation: vi-fade-in 0.8s 0.3s ease both;
  z-index: 4; /* above the vi-bottom-fade gradient (z-index: 3) */
}

/* Doctor identity strip */
.vi-doctor-strip {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 10px 18px 10px 12px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(26,115,232,0.18);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(26,115,232,0.12);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.vi-doc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-tint);
  border: 2px solid rgba(26,115,232,0.3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.vi-doc-avatar img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 6px;
}
.vi-doc-text strong {
  display: block;
  color: var(--text-1);
  font-size: var(--ts-sm);
  font-weight: 700;
}
.vi-doc-text span {
  display: block;
  color: var(--text-3);
  font-size: 11px;
  margin-top: 1px;
}
.vi-verified {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue);
  flex-shrink: 0;
  margin-left: var(--sp-1);
}

/* Duration pill */
.vi-duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(26,115,232,0.15);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  box-shadow: 0 4px 14px rgba(26,115,232,0.08);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* Scroll hint */
.vi-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}
.vi-scroll-arrow {
  animation: vi-bounce 2s ease-in-out infinite;
  color: var(--blue);
}
@keyframes vi-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ── Reopen button (shown when video is playing) ── */
.vi-reopen-btn {
  position: absolute;
  top: calc(68px + var(--sp-4));
  right: var(--sp-6);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--ts-xs);
  font-weight: 600;
  color: var(--blue);
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(26,115,232,0.2);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26,115,232,0.15);
  backdrop-filter: blur(8px);
  transition: background 0.18s, box-shadow 0.18s;
  touch-action: manipulation;
}
.vi-reopen-btn:hover {
  background: #fff;
  box-shadow: 0 6px 24px rgba(26,115,232,0.22);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .vi-title  { font-size: clamp(2rem, 10vw, 3rem); }
  .vi-sub    { font-size: var(--ts-base); }
  .vi-br-desktop { display: none; }
  .vi-play-btn { width: 72px; height: 72px; }
  .vi-bottom-bar { flex-direction: column; gap: var(--sp-3); bottom: var(--sp-16); }
  .vi-scroll-hint { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .vi-live-dot, .vi-ring, .vi-ring-2, .vi-scroll-arrow { animation: none; }
  .vi-center, .vi-eyebrow-wrap, .vi-bottom-bar { animation: none; }
  .vi-overlay { transition: opacity 0.2s ease; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--dur-base),
    box-shadow var(--dur-base),
    background var(--dur-base);
}
.navbar.scrolled {
  border-bottom-color: var(--glass-border);
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,0.95);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  height: 68px;
}
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--sp-3);
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-size: var(--ts-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: var(--ts-sm);
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--dur-fast), background var(--dur-fast);
  text-decoration: none;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-tint); }
.nav-links a.active { color: var(--blue); background: var(--blue-tint); font-weight: 600; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}
.nav-login {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: var(--ts-sm);
  font-weight: 600;
  color: var(--blue);
  border: 1.5px solid var(--blue-tint-2);
  background: transparent;
  transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
  text-decoration: none;
}
.nav-login:hover {
  background: var(--blue-tint);
  border-color: var(--blue);
  transform: translateY(-1px);
}
.nav-register {
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: var(--ts-sm);
  font-weight: 600;
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-blue-sm);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
  text-decoration: none;
}
.nav-register:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-md);
  margin-left: auto;
  transition: background var(--dur-fast);
}
.nav-hamburger:hover { background: var(--bg-3); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  background: rgba(255,255,255,0.98);
  border-top: 1px solid var(--glass-border);
}
.nav-mobile a {
  padding: 12px 4px;
  font-size: var(--ts-base);
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--bg-3);
  transition: color var(--dur-fast);
  text-decoration: none;
}
.nav-mobile a:hover { color: var(--blue); }
.nav-mobile-cta {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--glass-border);
}
.nav-mobile-cta .nav-login,
.nav-mobile-cta .nav-register { flex: 1; text-align: center; }

/* ============================================================
   ORBs  (light ambient glows)
   ============================================================ */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,115,232,0.20) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation-delay: 0s;
}
.orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(8,145,178,0.16) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation-delay: -3s;
}
.orb-3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(22,163,74,0.14) 0%, transparent 70%);
  top: 30%; left: 40%;
  animation-delay: -6s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(24px, -18px) scale(1.04); }
  66%       { transform: translate(-16px, 12px) scale(0.97); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #f0f6ff 55%, #e8f1fd 100%);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}
.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(26,115,232,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
  width: 100%;
}
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, var(--ts-7xl));
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text-1);
  margin-bottom: var(--sp-6);
}
.hero-sub {
  font-size: clamp(var(--ts-lg), 2.2vw, var(--ts-2xl));
  color: var(--text-3);
  max-width: 600px;
  margin: 0 auto var(--sp-10);
  line-height: 1.65;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  font-size: var(--ts-sm);
  color: var(--text-3);
}
.proof-avatars {
  display: flex;
}
.proof-avatars span {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.proof-avatars span:first-child { margin-left: 0; }
.proof-star { color: var(--amber); font-size: 13px; }

/* Hero floating chips */
.hero-chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-chip {
  position: absolute;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: var(--ts-xs);
  font-weight: 600;
  color: var(--text-2);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  animation: chipFloat 6s ease-in-out infinite;
}
.hero-chip-1 { top: 22%; left:  8%; animation-delay: 0s;    animation-duration: 6s; }
.hero-chip-2 { top: 30%; right: 7%; animation-delay: -2s;   animation-duration: 7s; }
.hero-chip-3 { bottom: 28%; left: 5%; animation-delay: -4s;  animation-duration: 5.5s; }
.hero-chip-4 { bottom: 32%; right: 6%; animation-delay: -1s; animation-duration: 6.5s; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.chip-dot-blue  { background: var(--blue); }
.chip-dot-green { background: var(--green); }
.chip-dot-teal  { background: var(--teal); }
.chip-dot-amber { background: var(--amber); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--sp-12) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.stat-item {
  text-align: center;
  padding: var(--sp-4);
}
.stat-val {
  font-size: clamp(var(--ts-3xl), 3.5vw, var(--ts-5xl));
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-2);
}
.stat-label {
  font-size: var(--ts-sm);
  color: var(--text-3);
  font-weight: 500;
}

/* ============================================================
   SECTION HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 120px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f8faff 0%, #eef3fc 100%);
  border-bottom: 1px solid var(--glass-border);
}
.page-hero h1 {
  font-size: clamp(var(--ts-4xl), 5.5vw, var(--ts-6xl));
  margin-bottom: var(--sp-4);
}
.page-hero p {
  font-size: var(--ts-xl);
  color: var(--text-3);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   BENTO GRID
   ============================================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }
.bento-full { grid-column: span 3; }

.bento-card {
  padding: var(--sp-8);
  border-radius: var(--radius-xl);
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base),
    border-color var(--dur-base);
  overflow: hidden;
  position: relative;
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
  border-color: var(--glass-border-h);
}
.bento-icon {
  font-size: 2rem;
  margin-bottom: var(--sp-5);
  display: block;
  line-height: 1;
}
.bento-card h3 {
  font-size: var(--ts-xl);
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--text-1);
}
.bento-card p {
  font-size: var(--ts-sm);
  color: var(--text-3);
  line-height: 1.7;
}

/* Chat preview bento card */
.bento-chat {
  background: linear-gradient(135deg, var(--blue-xdark) 0%, #1a3a70 100%);
  border-color: transparent;
  color: #fff;
}
.bento-chat h3 { color: #fff; }
.bento-chat p  { color: rgba(255,255,255,0.70); }
.chat-preview {
  margin-top: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.chat-bubble {
  padding: 10px 16px;
  border-radius: 16px;
  font-size: var(--ts-sm);
  max-width: 85%;
  line-height: 1.5;
}
.chat-bubble-user {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.92);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-bubble-ai {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.80);
  border: 1px solid rgba(255,255,255,0.12);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  width: 60px;
}
.chat-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.50);
  animation: typingDot 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.85); }
  40%            { opacity: 1;   transform: scale(1.15); }
}

/* Accent cards */
.bento-accent-blue  { background: var(--blue-tint);  border-color: var(--blue-tint-2); }
.bento-accent-teal  { background: var(--teal-tint);  border-color: rgba(8,145,178,0.18); }
.bento-accent-green { background: var(--green-tint); border-color: rgba(22,163,74,0.18); }
.bento-accent-amber { background: var(--amber-tint); border-color: rgba(245,158,11,0.22); }
.bento-accent-blue  .bento-card-tag { color: var(--blue-dark);  background: rgba(26,115,232,0.12); }
.bento-accent-teal  .bento-card-tag { color: var(--teal-dark);  background: rgba(8,145,178,0.12); }
.bento-accent-green .bento-card-tag { color: var(--green-dark); background: rgba(22,163,74,0.12); }
.bento-accent-amber .bento-card-tag { color: var(--amber-dark); background: rgba(245,158,11,0.12); }

.bento-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: var(--ts-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

/* Doc count card */
.bento-docs {
  background: linear-gradient(135deg, #f0f6ff 0%, #dbeafe 100%);
  border-color: var(--blue-tint-2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bento-docs-count {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.67% + 30px);
  right: calc(16.67% + 30px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--green));
  opacity: 0.3;
}
.step {
  text-align: center;
  padding: var(--sp-8);
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-size: var(--ts-xl);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  box-shadow: var(--shadow-blue-sm);
}
.step h3 {
  font-size: var(--ts-lg);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}
.step p { font-size: var(--ts-sm); color: var(--text-3); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.testimonial-card {
  padding: var(--sp-8);
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-4);
}
.testimonial-stars svg {
  width: 16px; height: 16px;
  fill: var(--amber);
}
.testimonial-quote {
  font-size: var(--ts-sm);
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: var(--sp-5);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--ts-sm);
  flex-shrink: 0;
  box-shadow: var(--shadow-blue-sm);
}
.testimonial-name { font-size: var(--ts-sm); font-weight: 700; color: var(--text-1); }
.testimonial-role { font-size: var(--ts-xs); color: var(--text-3); margin-top: 2px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  align-items: start;
}
.pricing-card {
  padding: var(--sp-8);
  border-radius: var(--radius-xl);
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}
.pricing-card.featured {
  background: linear-gradient(145deg, var(--blue-xdark) 0%, #1a3670 100%);
  border-color: transparent;
  box-shadow: var(--shadow-blue), 0 0 0 1px rgba(26,115,232,0.3);
  transform: scale(1.03);
  z-index: 1;
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(26,115,232,0.4);
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-amber);
  color: #fff;
  font-size: var(--ts-xs);
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(245,158,11,0.35);
}
.pricing-name {
  font-size: var(--ts-lg);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: var(--sp-2);
}
.pricing-card.featured .pricing-name { color: #fff; }
.pricing-desc {
  font-size: var(--ts-sm);
  color: var(--text-3);
  margin-bottom: var(--sp-6);
  line-height: 1.6;
}
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.65); }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-1);
  margin-bottom: var(--sp-6);
}
.pricing-currency {
  font-size: var(--ts-xl);
  font-weight: 700;
  color: var(--text-1);
}
.pricing-card.featured .pricing-currency { color: rgba(255,255,255,0.80); }
.pricing-amount {
  font-size: var(--ts-6xl);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text-1);
}
.pricing-card.featured .pricing-amount { color: #fff; }
.pricing-period {
  font-size: var(--ts-sm);
  color: var(--text-3);
  margin-left: var(--sp-1);
}
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.55); }
.pricing-divider {
  height: 1px;
  background: var(--glass-border);
  margin: var(--sp-5) 0;
}
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.12); }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--ts-sm);
  color: var(--text-2);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.85); }
.pricing-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card.featured .pricing-check {
  background: rgba(34,197,94,0.20);
  color: #4ade80;
}
.pricing-check svg { width: 10px; height: 10px; }
.pricing-cta { width: 100%; justify-content: center; }
.pricing-card.featured .btn-primary {
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 4px 16px rgba(255,255,255,0.25);
}
.pricing-card.featured .btn-primary:hover {
  box-shadow: 0 8px 28px rgba(255,255,255,0.35);
}
.pricing-note {
  text-align: center;
  font-size: var(--ts-xs);
  margin-top: var(--sp-3);
  color: var(--text-4);
}
.pricing-card.featured .pricing-note { color: rgba(255,255,255,0.40); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.faq-item {
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--dur-base), border-color var(--dur-base);
}
.faq-item.open {
  box-shadow: var(--shadow-blue-sm);
  border-color: var(--glass-border-h);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  font-size: var(--ts-base);
  font-weight: 600;
  color: var(--text-1);
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: inherit;
  gap: var(--sp-4);
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base);
}
.faq-item.open .faq-icon {
  background: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-answer {
  display: none;
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--ts-sm);
  color: var(--text-3);
  line-height: 1.8;
  border-top: 1px solid var(--glass-border);
  padding-top: var(--sp-4);
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-10);
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
}
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label {
  font-size: var(--ts-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: var(--ts-sm);
  font-weight: 500;
  color: var(--text-1);
  line-height: 1.5;
}
.contact-form {
  padding: var(--sp-10);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.form-group label {
  font-size: var(--ts-sm);
  font-weight: 600;
  color: var(--text-1);
}
.req { color: var(--blue); margin-left: 2px; }
.form-control {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--glass-border);
  background: var(--bg-2);
  color: var(--text-1);
  font-size: var(--ts-sm);
  font-family: inherit;
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
  width: 100%;
}
.form-control::placeholder { color: var(--text-4); }
.form-control:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,115,232,0.10);
}
textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
.form-success {
  display: none;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-md);
  background: var(--green-tint);
  border: 1px solid rgba(22,163,74,0.25);
  color: var(--green-dark);
  font-size: var(--ts-sm);
  font-weight: 500;
  margin-bottom: var(--sp-5);
}
.form-success.show { display: flex; align-items: center; gap: var(--sp-3); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--sp-6);
}
.blog-card {
  display: flex;
  flex-direction: column;
  padding: var(--sp-8);
  text-decoration: none;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.blog-category {
  background: var(--blue-tint);
  color: var(--blue-dark);
  border: 1px solid var(--blue-tint-2);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: var(--ts-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.blog-date {
  font-size: var(--ts-xs);
  color: var(--text-3);
}
.blog-card h3 {
  font-size: var(--ts-xl);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: var(--sp-3);
  color: var(--text-1);
  transition: color var(--dur-fast);
}
.blog-card:hover h3 { color: var(--blue); }
.blog-excerpt {
  font-size: var(--ts-sm);
  color: var(--text-3);
  line-height: 1.75;
  flex: 1;
  margin-bottom: var(--sp-5);
}
.blog-read-more {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--ts-sm);
  font-weight: 600;
  color: var(--blue);
  margin-top: auto;
  transition: gap var(--dur-fast);
}
.blog-card:hover .blog-read-more { gap: var(--sp-3); }
.blog-read-more svg { width: 16px; height: 16px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-doctor {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-16);
  align-items: center;
}
.doctor-card {
  aspect-ratio: 1;
  max-width: 360px;
  background: linear-gradient(145deg, var(--blue-tint) 0%, #dbeafe 100%);
  border: 1px solid var(--blue-tint-2);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-blue);
}
.doctor-emoji { font-size: 7rem; line-height: 1; }
.doctor-badge-float {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-6);
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.badge-title { font-size: var(--ts-xs); color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.badge-name  { font-size: var(--ts-sm); font-weight: 700; color: var(--text-1); }
.about-doctor-info h2 {
  font-size: clamp(var(--ts-3xl), 4vw, var(--ts-5xl));
  margin-bottom: var(--sp-2);
}
.about-doctor-role {
  font-size: var(--ts-lg);
  font-weight: 500;
  color: var(--blue);
  margin-bottom: var(--sp-5);
}
.about-doctor-bio {
  font-size: var(--ts-base);
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: var(--sp-8);
}
.doctor-stats {
  display: flex;
  gap: var(--sp-8);
}
.doctor-stat {
  text-align: center;
  padding: var(--sp-4) var(--sp-6);
  background: var(--blue-tint);
  border: 1px solid var(--blue-tint-2);
  border-radius: var(--radius-lg);
  flex: 1;
}
.doctor-stat-val {
  font-size: var(--ts-3xl);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.doctor-stat-label { font-size: var(--ts-xs); color: var(--text-3); font-weight: 600; }

/* Tech grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.tech-card { padding: var(--sp-8); }
.tech-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--sp-5);
}
.tech-card h3 {
  font-size: var(--ts-lg);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}
.tech-card p { font-size: var(--ts-sm); color: var(--text-3); line-height: 1.75; }

/* Mission box */
.mission-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: var(--sp-16);
  background: linear-gradient(135deg, var(--blue-tint) 0%, var(--teal-tint) 100%);
  border: 1px solid rgba(26,115,232,0.15);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-blue);
}
.mission-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--sp-5);
}
.mission-box h2 {
  font-size: var(--ts-4xl);
  margin-bottom: var(--sp-5);
}
.mission-box p {
  font-size: var(--ts-lg);
  color: var(--text-2);
  line-height: 1.75;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(160deg, var(--bg-2) 0%, var(--bg-3) 100%);
}
.cta-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: var(--sp-20);
  background: linear-gradient(145deg, var(--blue-xdark) 0%, #1a3a70 100%);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(26,115,232,0.25);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-icon {
  font-size: 3rem;
  margin-bottom: var(--sp-5);
}
.cta-box h2 {
  font-size: clamp(var(--ts-3xl), 4vw, var(--ts-5xl));
  color: #fff;
  margin-bottom: var(--sp-4);
}
.cta-box p {
  font-size: var(--ts-lg);
  color: rgba(255,255,255,0.70);
  margin-bottom: var(--sp-10);
  line-height: 1.7;
}
.cta-box .btn-primary {
  background: #fff;
  color: var(--blue-dark);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255,255,255,0.20);
}
.cta-box .btn-primary:hover {
  box-shadow: 0 8px 32px rgba(255,255,255,0.30);
}
.cta-note {
  font-size: var(--ts-xs);
  color: rgba(255,255,255,0.40);
  margin-top: var(--sp-4);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--glass-border);
  background: var(--bg-2);
  padding: var(--sp-16) 0 var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.footer-logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand-name {
  font-size: var(--ts-2xl);
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
}
.footer-brand-sub {
  font-size: var(--ts-xs);
  color: var(--text-3);
  letter-spacing: 0.04em;
  display: block;
  margin-top: 3px;
}
.footer-tagline {
  font-size: var(--ts-sm);
  color: var(--text-3);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--sp-6);
}
.footer-socials {
  display: flex;
  gap: var(--sp-3);
}
.footer-social {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--dur-fast), border-color var(--dur-fast),
              background var(--dur-fast), transform var(--dur-fast);
}
.footer-social:hover {
  color: var(--blue);
  border-color: var(--blue-tint-2);
  background: var(--blue-tint);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }
.footer nav h4 {
  font-size: var(--ts-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-1);
  margin-bottom: var(--sp-5);
}
.footer nav ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer nav ul li a {
  font-size: var(--ts-sm);
  color: var(--text-3);
  transition: color var(--dur-fast);
  text-decoration: none;
}
.footer nav ul li a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-copy { font-size: var(--ts-xs); color: var(--text-4); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.26s; }
.reveal-delay-4 { transition-delay: 0.34s; }
.reveal-delay-5 { transition-delay: 0.42s; }

@media (prefers-reduced-motion: reduce) {
  .reveal         { opacity: 1; transform: none; transition: none; }
  .orb            { animation: none; }
  .hero-chip      { animation: none; }
  .chat-typing span { animation: none; }
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin: 0;
}

/* ============================================================
   ACCESSIBILITY UTILITIES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   BLOG POST (detail pages)
   ============================================================ */
.post-hero {
  padding: 120px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f8faff 0%, #eef3fc 100%);
  border-bottom: 1px solid var(--glass-border);
}
.post-hero h1 {
  font-size: clamp(var(--ts-3xl), 5vw, var(--ts-5xl));
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-4);
}
.post-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.post-meta-row .blog-date     { font-size: var(--ts-xs); color: var(--text-3); }
.post-meta-row .post-read-time { font-size: var(--ts-xs); color: var(--text-3); }
.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-6) var(--sp-20);
  font-size: var(--ts-base);
  line-height: 1.85;
  color: var(--text-2);
}
.post-body h2 {
  font-size: var(--ts-2xl);
  font-weight: 700;
  color: var(--text-1);
  margin: var(--sp-12) 0 var(--sp-4);
  letter-spacing: -0.02em;
}
.post-body h3 {
  font-size: var(--ts-xl);
  font-weight: 600;
  color: var(--text-1);
  margin: var(--sp-8) 0 var(--sp-3);
}
.post-body p  { margin-bottom: var(--sp-6); }
.post-body strong { color: var(--text-1); font-weight: 600; }
.post-body ul, .post-body ol {
  margin: var(--sp-4) 0 var(--sp-6) var(--sp-6);
}
.post-body li { margin-bottom: var(--sp-2); }
.post-body blockquote {
  border-left: 3px solid var(--blue);
  padding: var(--sp-5) var(--sp-6);
  margin: var(--sp-8) 0;
  background: var(--blue-tint);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-1);
}
.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--blue);
  font-size: var(--ts-sm);
  font-weight: 600;
  margin-bottom: var(--sp-8);
  text-decoration: none;
  transition: gap var(--dur-fast) var(--ease-out);
}
.post-back-link:hover { gap: var(--sp-3); }
.post-back-link svg   { width: 16px; height: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet: 2-col bento */
@media (max-width: 960px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { grid-column: span 2; }
  .bento-full { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: var(--sp-5); }
  .steps::before { display: none; }
  .about-doctor { grid-template-columns: 1fr; }
  .doctor-card  { max-width: 300px; margin: 0 auto; }
  .tech-grid    { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

/* Mobile: hamburger */
@media (max-width: 860px) {
  .nav-links    { display: none; }
  .nav-cta      { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: flex; }
  .hero-chip-1, .hero-chip-2 { display: none; }
}

/* Mobile: 1-col */
@media (max-width: 600px) {
  .container { padding: 0 var(--sp-4); }
  .section   { padding: var(--sp-16) 0; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide, .bento-full { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .tech-grid  { grid-template-columns: 1fr; }
  .hero-chips { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .doctor-stats { flex-direction: column; gap: var(--sp-3); }
  .contact-form { padding: var(--sp-6); }
}

/* Narrow footer */
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
}

/* ============================================================
   HTML COMPATIBILITY SUPPLEMENT
   Maps HTML class names → design system rules
   ============================================================ */

/* ── Hero layout ── */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-canvas {         /* alias: #hero-canvas */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}
.hero-grid {              /* alias: .hero-dot-grid */
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,115,232,0.14) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-badge { margin-bottom: var(--sp-5); }

.hero-h1 {                /* main h1 in hero */
  font-size: clamp(2.5rem, 6vw, var(--ts-7xl));
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text-1);
  margin-bottom: var(--sp-6);
}
.hero-cta {               /* CTA button row */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}
.hero-social-proof {      /* avatars + proof text row */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.hero-avatars {
  display: flex;
  align-items: center;
}
.hero-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--ts-xs);
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}
.hero-avatar:first-child { margin-left: 0; }
.hero-proof-text {
  font-size: var(--ts-sm);
  color: var(--text-3);
}
.hero-proof-text strong { color: var(--text-1); }

/* ── Badge animated dot ── */
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 2px;
  box-shadow: 0 0 0 0 rgba(22,163,74,0.4);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0   rgba(22,163,74,0.40); }
  70%  { box-shadow: 0 0 0 6px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0   rgba(22,163,74,0); }
}

/* ── Ghost button ── */
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid var(--glass-border);
}
.btn-ghost:hover {
  background: var(--bg-3);
  border-color: var(--glass-border-h);
  color: var(--text-1);
  transform: translateY(-2px);
}

/* ── Chip emoji icon ── */
.chip-icon {
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

/* ── Stats bar ── */
.stats-inner {            /* alias: .stats-grid */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.stat-value {             /* alias: .stat-val */
  font-size: clamp(var(--ts-3xl), 3.5vw, var(--ts-5xl));
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-2);
  display: block;
}

/* ── How it works ── */
.how-steps {              /* alias: .steps */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.67% + 30px);
  right: calc(16.67% + 30px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--green));
  opacity: 0.25;
}
.how-step {               /* alias: .step */
  text-align: center;
  padding: var(--sp-8);
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-blue); }
.how-step .step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  box-shadow: var(--shadow-blue-sm);
  font-size: var(--ts-xl);
  font-weight: 800;
}
.how-step h3 { font-size: var(--ts-lg); font-weight: 700; margin-bottom: var(--sp-3); }
.how-step p  { font-size: var(--ts-sm); color: var(--text-3); line-height: 1.7; }

/* ── Bento label (small chip above card title) ── */
.bento-label {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: var(--ts-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--blue-tint);
  color: var(--blue-dark);
  border: 1px solid var(--blue-tint-2);
  margin-bottom: var(--sp-3);
}

/* ── Bento icon: constrain SVG size ── */
.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
}
.bento-icon svg { width: 22px; height: 22px; }

/* ── Hero bento card (dark navy, chat preview) ── */
.bento-card-hero {
  background: linear-gradient(145deg, var(--blue-xdark) 0%, #1a3a70 100%) !important;
  border-color: transparent !important;
  color: #fff;
}
.bento-card-hero .bento-label {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.80);
  border-color: rgba(255,255,255,0.15);
}
.bento-card-hero h3 { color: #fff; }
.bento-card-hero p  { color: rgba(255,255,255,0.65); }

/* ── Bento visual area ── */
.bento-visual {
  margin-top: var(--sp-6);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ── In-bento chat preview ── */
.bento-chat-preview {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
}
.chat-msg {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-2);
}
.chat-msg.user { flex-direction: row-reverse; }
.chat-msg .chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.chat-msg.ai   .chat-avatar { background: var(--grad-primary); }
.chat-msg.user .chat-avatar { background: rgba(255,255,255,0.20); }
.chat-msg .chat-bubble {
  max-width: 78%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: var(--ts-xs);
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
}
.chat-msg.ai   .chat-bubble {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  border-bottom-left-radius: 3px;
}
.chat-msg.user .chat-bubble {
  background: rgba(26,115,232,0.40);
  border-bottom-right-radius: 3px;
}

/* ── Testimonial: decorative quote character ── */
.testimonial-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--blue-tint-2);
  font-family: Georgia, serif;
  margin-bottom: -var(--sp-2);
  display: block;
  height: 2rem;
  overflow: hidden;
}
.testimonial-text {       /* alias: testimonial body quote */
  font-size: var(--ts-sm);
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: var(--sp-5);
  font-style: italic;
}

/* ── FAQ: .faq-q / .faq-a aliases ── */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  font-size: var(--ts-base);
  font-weight: 600;
  color: var(--text-1);
  cursor: pointer;
  gap: var(--sp-4);
}
.faq-a {
  display: none;
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--ts-sm);
  color: var(--text-3);
  line-height: 1.8;
  border-top: 1px solid var(--glass-border);
  padding-top: var(--sp-4);
}
.faq-item.open .faq-a   { display: block; }
.faq-item.open .faq-icon {
  background: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}

/* ── Pricing: extra aliases ── */
.pricing-badge {          /* alias: .featured-badge */
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-amber);
  color: #fff;
  font-size: var(--ts-xs);
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(245,158,11,0.35);
}
.pricing-tagline {
  font-size: var(--ts-sm);
  color: var(--text-3);
  margin-bottom: var(--sp-4);
}
.pricing-card.featured .pricing-tagline { color: rgba(255,255,255,0.60); }
.pricing-dur {
  font-size: var(--ts-xs);
  color: var(--text-4);
  margin-left: var(--sp-2);
  align-self: flex-end;
  padding-bottom: 6px;
}
.pricing-card.featured .pricing-dur { color: rgba(255,255,255,0.40); }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--ts-sm);
  color: var(--text-2);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.85); }
.pricing-feature svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}
.pricing-card.featured .pricing-feature svg { color: #4ade80; }

/* ── About: doctor visual wrapper ── */
.doctor-visual {
  display: flex;
  justify-content: center;
}

/* ── Responsive: how-steps / stats-inner on small screens ── */
@media (max-width: 960px) {
  .how-steps  { grid-template-columns: 1fr; gap: var(--sp-5); }
  .how-steps::before { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-cta    { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   APP SHOWCASE — Web & Mobile UI Preview
   ============================================================ */

.showcase-section {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(26,115,232,0.025) 30%,
    rgba(8,145,178,0.025) 70%,
    transparent 100%);
  overflow: hidden;
}

/* Scene wrapper */
.showcase-scene {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--sp-12);
  position: relative;
  gap: 0;
}

/* ── Browser/Desktop Mockup ───────────────────────────────── */
.showcase-browser {
  flex: 1;
  max-width: 700px;
  z-index: 2;
  animation: sc-float-browser 6s ease-in-out infinite;
  filter: drop-shadow(0 24px 60px rgba(26,115,232,0.14));
}

@keyframes sc-float-browser {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.browser-outer {
  background: var(--surface-1);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(26,115,232,0.06);
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 10px 14px;
  background: #f0f4f8;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.browser-dots { display: flex; gap: 5px; }
.dot-r, .dot-y, .dot-g {
  width: 10px; height: 10px; border-radius: 50%;
}
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.browser-addressbar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  background: white;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--text-3);
  font-family: inherit;
}

.browser-lock { font-size: 10px; }

.browser-tabs-right { display: flex; gap: 4px; }
.browser-tab-btn {
  width: 20px; height: 20px;
  border-radius: 4px;
  background: rgba(0,0,0,0.07);
}

.browser-body {
  display: flex;
  height: 390px;
  overflow: hidden;
}

/* Sidebar */
.browser-sidebar {
  width: 130px;
  flex-shrink: 0;
  background: #f8fafd;
  border-right: 1px solid rgba(0,0,0,0.06);
  padding: var(--sp-4) var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.bs-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.bs-logo-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--blue);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px;
  flex-shrink: 0;
}

.bs-logo span { font-size: 11px; font-weight: 700; color: var(--text-1); }

.bs-nav { display: flex; flex-direction: column; gap: 2px; }

.bs-nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 11px;
  color: var(--text-2);
  font-weight: 500;
}

.bs-nav-item.bs-active {
  background: rgba(26,115,232,0.09);
  color: var(--blue);
  font-weight: 700;
}

/* Main content area */
.browser-main {
  flex: 1;
  padding: var(--sp-4) var(--sp-5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  background: var(--surface-1);
}

.bm-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.bm-greeting {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-1);
}

.bm-subtitle {
  font-size: 11px;
  color: var(--text-2);
  margin-top: 1px;
}

.bm-date {
  font-size: 11px;
  color: var(--text-3);
  background: var(--surface-2);
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}

/* Stats grid */
.bm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
}

.bm-stat-card {
  padding: var(--sp-3);
  border-radius: 8px;
  border: 1px solid transparent;
}

.bm-blue  { background: rgba(26,115,232,0.06);  border-color: rgba(26,115,232,0.12); }
.bm-teal  { background: rgba(8,145,178,0.06);   border-color: rgba(8,145,178,0.12); }
.bm-green { background: rgba(22,163,74,0.06);   border-color: rgba(22,163,74,0.12); }
.bm-amber { background: rgba(245,158,11,0.06);  border-color: rgba(245,158,11,0.12); }

.bm-stat-icon { font-size: 14px; margin-bottom: 2px; }
.bm-stat-val  { font-size: 13px; font-weight: 800; color: var(--text-1); }
.bm-stat-lbl  { font-size: 10px; color: var(--text-2); margin-bottom: 4px; }

.bm-stat-bar {
  height: 3px;
  background: rgba(0,0,0,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.bm-stat-bar > div { height: 100%; border-radius: 2px; }
.bm-blue  .bm-stat-bar > div { background: var(--blue); }
.bm-teal  .bm-stat-bar > div { background: var(--teal); }
.bm-green .bm-stat-bar > div { background: var(--green); }
.bm-amber .bm-stat-bar > div { background: var(--amber); }

/* Content row: meals + chart */
.bm-content-row {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: var(--sp-4);
  flex: 1;
  overflow: hidden;
}

.bm-section-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: var(--sp-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Meal rows */
.bm-meals { display: flex; flex-direction: column; gap: 4px; }

.bm-meal {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px var(--sp-3);
  background: var(--surface-2);
  border-radius: 6px;
  border: 1px solid var(--glass-border);
}

.bm-meal-pending { opacity: 0.65; }
.bm-meal-icon    { font-size: 14px; flex-shrink: 0; }
.bm-meal > div   { flex: 1; min-width: 0; }
.bm-meal-name    { font-size: 10px; font-weight: 700; color: var(--text-1); }
.bm-meal-items   { font-size: 9px; color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bm-meal-cal     { font-size: 10px; font-weight: 600; color: var(--text-2); flex-shrink: 0; }

.bm-meal-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(22,163,74,0.1);
  border: 1px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px;
  color: var(--green);
  flex-shrink: 0;
}

.bm-meal-pending-badge {
  font-size: 9px;
  color: var(--amber);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  padding: 1px 5px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Bar chart */
.bm-chart-area { display: flex; flex-direction: column; }

.bm-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
  height: 80px;
  padding-bottom: 2px;
}

.bm-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  flex: 1;
}

.bm-bar {
  width: 100%;
  background: rgba(0,0,0,0.05);
  border-radius: 3px;
  overflow: hidden;
}

.bm-bar-fill { height: 100%; width: 100%; border-radius: 3px; display: block; }
.bm-bf-blue  { background: var(--blue);  opacity: 0.75; }
.bm-bf-teal  { background: var(--teal);  opacity: 0.75; }
.bm-bf-green { background: var(--green); opacity: 0.75; }
.bm-bf-gray  { background: var(--text-3); opacity: 0.35; }
.bm-bar-label { font-size: 8px; color: var(--text-3); }

/* ── Phone Mockup ─────────────────────────────────────────── */
.showcase-phone {
  width: 165px;
  flex-shrink: 0;
  z-index: 3;
  position: relative;
}

.showcase-phone-left {
  margin-right: -18px;
  animation: sc-float-phone-l 7s ease-in-out infinite;
}

.showcase-phone-right {
  margin-left: -18px;
  animation: sc-float-phone-r 7s ease-in-out infinite;
}

@keyframes sc-float-phone-l {
  0%, 100% { transform: rotate(-3.5deg) translateY(0px); }
  50%       { transform: rotate(-3.5deg) translateY(-14px); }
}

@keyframes sc-float-phone-r {
  0%, 100% { transform: rotate(3.5deg) translateY(0px); }
  50%       { transform: rotate(3.5deg) translateY(-14px); }
}

.phone-outer {
  background: #1c1c2e;
  border-radius: 30px;
  padding: 10px;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.25),
    0 0 0 2px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 14px;
  background: #0d0d1a;
  border-radius: 0 0 10px 10px;
  z-index: 5;
}

.phone-screen {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  height: 330px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Phone top bar */
.phone-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 20px 10px 8px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  color: white;
}

.phone-header-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 10px;
  color: white; flex-shrink: 0;
}

.phone-header-info { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.phone-header-name  { font-size: 11px; font-weight: 700; color: white; }
.phone-header-status { font-size: 9px; color: rgba(255,255,255,0.7); }

.ph-gradient { justify-content: space-between; }

.ph-macro-ring {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white;
  flex-shrink: 0;
}

/* Phone: chat view */
.phone-chat {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #f7f9ff;
  overflow: hidden;
}

.pc-msg { display: flex; gap: 4px; }
.pc-ai   { align-self: flex-start; max-width: 88%; }
.pc-user { align-self: flex-end; flex-direction: row-reverse; max-width: 75%; }

.pc-bubble {
  padding: 5px 8px;
  border-radius: 10px;
  font-size: 8.5px;
  line-height: 1.45;
  color: var(--text-1);
}

.pc-ai   .pc-bubble { background: white; border: 1px solid rgba(0,0,0,0.07); border-radius: 2px 10px 10px 10px; }
.pc-user .pc-bubble { background: var(--blue); color: white; border-radius: 10px 2px 10px 10px; }

.phone-input-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: white;
}

.phone-input-field {
  flex: 1;
  background: #f0f4f8;
  border-radius: 16px;
  padding: 4px 10px;
  font-size: 8px;
  color: var(--text-4);
}

.phone-send-btn {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
}

/* Phone: plan/nutrition view */
.phone-plan-body {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
}

.pp-macro-row {
  display: flex;
  justify-content: space-around;
  padding: 4px 0 6px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pp-macro { text-align: center; }
.pp-macro-val { font-size: 12px; font-weight: 800; }
.pp-macro-lbl { font-size: 8px; color: var(--text-3); }

.pp-progress-bar {
  height: 6px;
  background: rgba(0,0,0,0.08);
  border-radius: 3px;
  overflow: hidden;
}

.pp-progress-fill { height: 100%; border-radius: 3px; }
.pp-progress-label { font-size: 8px; color: var(--text-2); text-align: right; }

.pp-meals { display: flex; flex-direction: column; gap: 4px; flex: 1; }

.pp-meal {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 6px;
  background: var(--surface-2);
  border-radius: 6px;
  border: 1px solid var(--glass-border);
}

.pp-meal-next { background: rgba(26,115,232,0.04); border-color: rgba(26,115,232,0.12); }
.pp-meal-dot  { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.pp-meal-info { flex: 1; min-width: 0; }
.pp-meal-name { font-size: 9px; font-weight: 700; color: var(--text-1); }
.pp-meal-items { font-size: 8px; color: var(--text-3); }
.pp-meal-cal  { font-size: 9px; font-weight: 600; color: var(--text-2); flex-shrink: 0; }

.pp-check {
  width: 14px; height: 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; flex-shrink: 0;
}

.pp-check.done    { background: rgba(22,163,74,0.1); color: var(--green); }
.pp-check.pending { background: rgba(26,115,232,0.1); color: var(--blue); }

/* ── Showcase Pills ───────────────────────────────────────── */
.showcase-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  margin-top: var(--sp-10);
}

.showcase-pill {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  font-size: var(--ts-sm);
  color: var(--text-2);
  font-weight: 500;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.showcase-pill:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--glass-border-h);
}

.showcase-pill svg { color: var(--blue); flex-shrink: 0; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .showcase-scene    { flex-direction: column; gap: var(--sp-6); }
  .showcase-phone    { width: 200px; }
  .showcase-phone-left  { margin-right: 0; animation: sc-float-device 7s ease-in-out infinite; }
  .showcase-phone-right { margin-left: 0;  animation: sc-float-device 7s ease-in-out infinite 0.5s; }
  .showcase-browser  { width: 100%; }
}

@keyframes sc-float-device {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@media (max-width: 640px) {
  .showcase-phone    { display: none; }
  .browser-sidebar   { display: none; }
  .bm-stats          { grid-template-columns: repeat(2, 1fr); }
  .bm-content-row    { grid-template-columns: 1fr; }
  .bm-chart-area     { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-browser,
  .showcase-phone-left,
  .showcase-phone-right { animation: none !important; }
}

/* ============================================================
   BENTO: Program Table (features section)
   ============================================================ */

.bento-program-table {
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: var(--ts-xs);
}

.bpt-header {
  display: grid;
  grid-template-columns: 70px 1fr 44px 54px;
  background: rgba(26,115,232,0.06);
  border-bottom: 1px solid var(--glass-border);
}

.bpt-th {
  padding: 6px 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bpt-row {
  display: grid;
  grid-template-columns: 70px 1fr 44px 54px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background 0.15s;
}

.bpt-row:last-of-type { border-bottom: none; }

.bpt-row.bpt-done   { background: rgba(22,163,74,0.03); }
.bpt-row.bpt-highlight { background: rgba(26,115,232,0.04); }

.bpt-cell {
  padding: 7px 8px;
  color: var(--text-2);
  font-size: 11px;
  display: flex;
  align-items: center;
}

.bpt-label { font-weight: 600; color: var(--text-1); white-space: nowrap; }
.bpt-num   { font-weight: 700; color: var(--text-1); }

.bpt-gi {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.bpt-gi-low { background: rgba(22,163,74,0.1);  color: var(--green); }
.bpt-gi-mid { background: rgba(245,158,11,0.1); color: var(--amber-dark); }

.bpt-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  padding: 8px 10px;
  background: rgba(26,115,232,0.04);
  border-top: 1px solid var(--glass-border);
  font-size: 11px;
  color: var(--text-2);
}

.bpt-tag {
  background: var(--surface-2);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-2);
}

/* Responsive: bento hero grid on mobile */
@media (max-width: 768px) {
  .bento-card-hero > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   BENTO: Live Avatar Visual
   ============================================================ */

/* Inline LIVE dot next to bento-label */
.bento-live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 5px;
  vertical-align: middle;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.25);
  animation: bav-pulse-dot 2s ease-in-out infinite;
}

@keyframes bav-pulse-dot {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,0.25); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0.08); }
}

/* Avatar scene wrapper */
.bav-wrap {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  background: linear-gradient(135deg, rgba(26,115,232,0.06) 0%, rgba(8,145,178,0.04) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.bav-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,115,232,0.03), transparent);
  pointer-events: none;
}

/* Animated rings + avatar circle */
.bav-scene {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bav-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(26,115,232,0.18);
  animation: bav-ring-expand 3s ease-out infinite;
}

.bav-r1 { animation-delay: 0s; }
.bav-r2 { animation-delay: 1s; }
.bav-r3 { animation-delay: 2s; }

@keyframes bav-ring-expand {
  0%   { transform: scale(1);   opacity: 0.6; }
  80%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

.bav-circle {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(26,115,232,0.30), 0 0 0 3px rgba(255,255,255,0.9);
  z-index: 2;
  flex-shrink: 0;
}

.bav-live-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: #16a34a;
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 8px;
  border: 2px solid white;
  display: flex;
  align-items: center;
  gap: 3px;
  z-index: 3;
  letter-spacing: 0.04em;
}

.bav-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #86efac;
  animation: bav-pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* Info column next to avatar */
.bav-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bav-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-1);
}

.bav-sub {
  font-size: 11px;
  color: var(--text-2);
}

.bav-status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  margin-top: 2px;
}

.bav-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: bav-pulse-dot 2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .bento-live-dot,
  .bav-ring,
  .bav-live-dot,
  .bav-status-dot { animation: none !important; }
}
