/* ═══ Apex Speak — Product Page Design System ═══ */

/* ─── Design Tokens ─── */
:root {
  /* Inherited from parent site */
  --radius-card: 18px;
  --radius-pill: 12px;
  --radius-icon: 10px;
  --shadow-card: 0 16px 48px -8px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 24px 64px -8px rgba(0,0,0,0.18), 0 8px 20px rgba(0,0,0,0.06);
  --shadow-pill: 0 6px 20px -4px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.03);
  --shadow-icon: 0 4px 16px rgba(0,0,0,0.06);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-normal: 0.5s;
  --duration-slow: 0.8s;
  --bg-warm: #fafaf8;
  --bg-sand: #f5f0e8;
  --bg-sand-deep: #ede8e0;
  --text-primary: #1a1a1a;
  --text-secondary: #444;
  --text-muted: #888;

  /* Apex Speak brand — blue-indigo accent */
  --as-accent: #4f46e5;
  --as-accent-light: #818cf8;
  --as-accent-bg: #eef2ff;
  --as-accent-border: #c7d2fe;
  --as-green: #22c55e;
  --as-yellow: #eab308;
  --as-red: #ef4444;
  --as-gradient: linear-gradient(135deg, #4f46e5, #7c3aed);
}

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--bg-warm);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; }
a { text-decoration: none; color: inherit; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }
img { max-width: 100%; height: auto; }


/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: var(--as-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(79,70,229,0.25);
}
.btn-primary:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,70,229,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid #d0d0d0;
}
.btn-ghost:hover {
  border-color: #999;
  opacity: 1;
  transform: translateY(-1px);
}

.btn-lg { padding: 18px 40px; font-size: 1rem; }


/* ─── Navigation ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(250,250,248,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06); padding: 12px 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--as-gradient);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-link {
  font-size: 0.9rem; font-weight: 500; color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text-primary); opacity: 1; }


/* ─── Mobile Nav ─── */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 10000;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); transition: all 0.3s;
}
.nav-toggle.open span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:last-child { transform: rotate(-45deg) translate(5px, -5px); }


/* ─── Section Base ─── */
.section { padding: 100px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-label {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--as-accent); margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--text-primary); margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.15rem; color: var(--text-secondary);
  max-width: 600px; line-height: 1.6;
}


/* ─── Scroll Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-spring);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }


/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.section-hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 80px;
  background: linear-gradient(180deg, var(--bg-warm) 0%, #f5f3ff 50%, var(--bg-warm) 100%);
  position: relative; overflow: hidden;
}
.section-hero > * { position: relative; z-index: 1; }

/* Hero orbs */
.section-hero::before,
.section-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.section-hero::before {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79,70,229,0.08) 0%, transparent 70%);
  top: 5%; right: 10%;
  animation: orbDrift 30s ease-in-out infinite;
}
.section-hero::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
  bottom: 10%; left: 5%;
  animation: orbDrift2 35s ease-in-out infinite;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

.hero-text { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--as-accent-bg);
  border: 1px solid var(--as-accent-border);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--as-accent);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  line-height: 1.08;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.65;
  max-width: 460px;
}

.hero-buttons {
  display: flex; gap: 1rem; align-items: center;
  flex-wrap: wrap;
}

/* Hero visual — phone with live timer */
.hero-visual {
  display: flex; justify-content: center;
  position: relative;
}


/* ═══════════════════════════════════════
   PHONE MOCKUP — Live Timer Demo
   ═══════════════════════════════════════ */
.phone-mockup {
  width: 280px;
  height: 560px;
  border-radius: 36px;
  background: #111;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    var(--shadow-card),
    0 40px 80px -20px rgba(0,0,0,0.3);
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

/* Timer App Screen */
.timer-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.8s ease;
  padding: 20px;
}

.timer-screen[data-zone="idle"] {
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
}
.timer-screen[data-zone="green"] {
  background: linear-gradient(180deg, #dcfce7, #bbf7d0);
}
.timer-screen[data-zone="yellow"] {
  background: linear-gradient(180deg, #fef9c3, #fde68a);
}
.timer-screen[data-zone="red"] {
  background: linear-gradient(180deg, #fee2e2, #fecaca);
}
.timer-screen[data-zone="overtime"] {
  background: #ef4444;
}

.timer-preset-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
  margin-bottom: 4px;
  transition: color 0.5s;
}
.timer-screen[data-zone="overtime"] .timer-preset-label { color: rgba(255,255,255,0.7); }

.timer-speaker-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  transition: color 0.5s;
}
.timer-screen[data-zone="overtime"] .timer-speaker-name { color: #fff; }

.timer-display {
  font-size: 56px;
  font-weight: 200;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  transition: color 0.5s;
  line-height: 1;
  margin-bottom: 16px;
}
.timer-screen[data-zone="overtime"] .timer-display { color: #fff; }

.timer-zone-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 14px;
  border-radius: 100px;
  transition: all 0.5s;
}
.timer-zone-label[data-zone="idle"] {
  background: #e2e8f0; color: #64748b;
}
.timer-zone-label[data-zone="green"] {
  background: rgba(34,197,94,0.2); color: #15803d;
}
.timer-zone-label[data-zone="yellow"] {
  background: rgba(234,179,8,0.2); color: #a16207;
}
.timer-zone-label[data-zone="red"] {
  background: rgba(239,68,68,0.2); color: #dc2626;
}
.timer-zone-label[data-zone="overtime"] {
  background: rgba(255,255,255,0.25); color: #fff;
}

.timer-dots {
  display: flex; gap: 12px; margin-top: 24px;
}
.timer-dot {
  width: 10px; height: 10px; border-radius: 50%;
  opacity: 0.3;
  transition: all 0.4s ease;
}
.timer-dot.active {
  opacity: 1;
  box-shadow: 0 0 8px currentColor;
  transform: scale(1.3);
}
.timer-dot-green { background: var(--as-green); color: var(--as-green); }
.timer-dot-yellow { background: var(--as-yellow); color: var(--as-yellow); }
.timer-dot-red { background: var(--as-red); color: var(--as-red); }

/* Phone notch */
.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 28px;
  background: #111;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

/* Phone home indicator */
.phone-home-indicator {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 4px;
  background: rgba(0,0,0,0.15);
  border-radius: 4px;
  z-index: 10;
}


/* ═══════════════════════════════════════
   FEATURE SECTIONS
   ═══════════════════════════════════════ */

/* ─── Features Grid ─── */
.section-features {
  background: var(--bg-warm);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.4s var(--ease-spring);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 24px;
}
.feature-icon-timer { background: #dcfce7; color: #16a34a; }
.feature-icon-meeting { background: var(--as-accent-bg); color: var(--as-accent); }
.feature-icon-ai { background: #fef3c7; color: #d97706; }
.feature-icon-growth { background: #e0e7ff; color: #4338ca; }
.feature-icon-privacy { background: #f1f5f9; color: #475569; }
.feature-icon-record { background: #fee2e2; color: #dc2626; }

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ═══════════════════════════════════════
   MEETING ROLES — Interactive Cards
   ═══════════════════════════════════════ */
.section-meeting {
  background: linear-gradient(180deg, var(--bg-warm), #f5f3ff);
  position: relative; overflow: hidden;
}
.section-meeting::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79,70,229,0.05) 0%, transparent 70%);
  top: 10%; right: 10%;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.section-meeting > * { position: relative; z-index: 1; }

.meeting-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.meeting-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.role-card {
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.3s var(--ease-spring);
  cursor: default;
}
.role-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-pill);
}

.role-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.role-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.role-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}


/* ═══════════════════════════════════════
   AI COACH — Interactive Demo
   ═══════════════════════════════════════ */
.section-coach {
  background: var(--bg-warm);
}

.coach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.coach-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Interactive demo cards */
.coach-demo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Filler Word Counter Card */
.filler-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.filler-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.filler-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex; align-items: center; gap: 8px;
}
.filler-card-title-icon {
  width: 28px; height: 28px;
  background: #fef3c7;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.filler-count {
  font-size: 2rem;
  font-weight: 800;
  color: var(--as-accent);
  font-variant-numeric: tabular-nums;
  transition: transform 0.2s var(--ease-spring);
}
.filler-count.bump {
  transform: scale(1.2);
}

.filler-words {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.filler-word {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
}
.filler-word:hover { transform: scale(1.05); }
.filler-word:active { transform: scale(0.95); }

.filler-word-um { background: #fee2e2; color: #dc2626; }
.filler-word-uh { background: #fef3c7; color: #d97706; }
.filler-word-like { background: #e0e7ff; color: #4338ca; }
.filler-word-so { background: #dcfce7; color: #16a34a; }
.filler-word-right { background: #f3e8ff; color: #7c3aed; }

.filler-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* AI Feedback Card */
.ai-feedback-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.ai-feedback-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.ai-badge {
  background: var(--as-gradient);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.ai-feedback-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.ai-scores {
  display: flex; gap: 12px; margin-bottom: 16px;
}
.ai-score {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  background: #f8fafc;
  border-radius: var(--radius-pill);
}
.ai-score-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--as-accent);
  line-height: 1;
}
.ai-score-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.ai-tip {
  background: var(--as-accent-bg);
  border: 1px solid var(--as-accent-border);
  border-radius: var(--radius-pill);
  padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 10px;
}
.ai-tip-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.ai-tip-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}


/* ═══════════════════════════════════════
   GROWTH TRACKING
   ═══════════════════════════════════════ */
.section-growth {
  background: linear-gradient(180deg, var(--bg-warm), var(--bg-sand));
  position: relative; overflow: hidden;
}
.section-growth::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(234,179,8,0.06) 0%, transparent 70%);
  bottom: 10%; left: 10%;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.section-growth > * { position: relative; z-index: 1; }

.growth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.growth-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.growth-metrics {
  display: flex; flex-direction: column; gap: 16px;
}

/* Mini chart card */
.metric-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 20px 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.metric-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.metric-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}
.metric-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--as-accent);
}
.metric-trend {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
}
.metric-trend-up { background: #dcfce7; color: #16a34a; }
.metric-trend-down { background: #fee2e2; color: #dc2626; }

/* Mini sparkline bar chart */
.sparkline-bars {
  display: flex; align-items: flex-end; gap: 4px; height: 48px;
}
.sparkline-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  transition: height 1s var(--ease-spring);
  min-height: 4px;
}
.sparkline-bar.bar-accent { background: var(--as-accent); opacity: 0.8; }
.sparkline-bar.bar-light { background: var(--as-accent); opacity: 0.3; }


/* ═══════════════════════════════════════
   PRIVACY SECTION
   ═══════════════════════════════════════ */
.section-privacy-brief {
  background: var(--bg-sand);
  text-align: center;
}
.privacy-points {
  display: flex; gap: 2rem; justify-content: center; margin-top: 3rem;
  flex-wrap: wrap;
}
.privacy-point {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  max-width: 200px;
}
.privacy-point-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-pill);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.privacy-point-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}
.privacy-point-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}


/* ═══════════════════════════════════════
   CTA
   ═══════════════════════════════════════ */
.section-cta {
  background: linear-gradient(180deg, var(--bg-sand), var(--bg-sand-deep));
  text-align: center;
  position: relative; overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79,70,229,0.06) 0%, transparent 70%);
  top: 20%; right: 15%;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.section-cta > * { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.cta-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex; gap: 1.5rem;
}
.footer-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--text-primary); opacity: 1; }


/* ═══════════════════════════════════════
   PRIVACY & SUPPORT PAGES
   ═══════════════════════════════════════ */
.content-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}
.content-page h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.content-page .last-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.content-page h2 {
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.content-page p,
.content-page ul {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.content-page ul { padding-left: 24px; }
.content-page li { margin-bottom: 8px; }
.content-page strong { color: var(--text-primary); font-weight: 600; }
.content-page a { color: var(--as-accent); font-weight: 500; }
.content-page a:hover { opacity: 0.7; }

.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--text-primary); opacity: 1; }

/* Support FAQ */
.faq-list { margin-top: 2rem; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 1.5rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.faq-a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ═══════════════════════════════════════
   ORB DRIFT ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.1); }
  50% { transform: translate(-20px, 15px) scale(0.95); }
  75% { transform: translate(15px, 25px) scale(1.05); }
}

@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-25px, 20px) scale(1.08); }
  66% { transform: translate(20px, -15px) scale(0.93); }
}

/* Timer pulse for overtime */
@keyframes overtimePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}


/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-text { max-width: 100%; }
  .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .meeting-layout,
  .coach-layout,
  .growth-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .roles-grid { max-width: 400px; margin: 0 auto; }
  .coach-demo { max-width: 440px; margin: 0 auto; }
  .growth-metrics { max-width: 440px; margin: 0 auto; }
}

/* Mobile */
@media (max-width: 640px) {
  html { font-size: 16px; }
  .section { padding: 60px 0; }

  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(250,250,248,0.97); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 2rem; z-index: 9999;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-link { font-size: 1.2rem; }

  .hero-inner { padding: 0 20px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }

  .phone-mockup {
    width: 240px; height: 480px;
    border-radius: 30px; padding: 10px;
  }
  .phone-screen { border-radius: 22px; }
  .timer-display { font-size: 44px; }

  .features-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; max-width: 100%; }

  .privacy-points { flex-direction: column; align-items: center; }

  .footer-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .footer-links { justify-content: center; }

  .ai-scores { flex-wrap: wrap; }
  .ai-score { min-width: calc(50% - 6px); }
}
