/* ═══════════════════════════════════════════════════════════════
   Audessa — styles matching VoiceFloat prototype exactly
   CSS values extracted directly from https://voicefloat-te7ayjd9.manus.space/
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,400&display=swap');

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

/* ── Root / tokens ─────────────────────────────────────────────── */
:root {
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-ui:      'DM Sans', system-ui, sans-serif;
  --font-reading: 'Source Serif 4', Georgia, serif;

  /* Page background — exact from prototype */
  --page-bg:      oklch(0.97 0.008 80);

  /* Text — exact from prototype */
  --text-heading: oklch(0.15 0.02 260);
  --text-body:    oklch(0.2 0.02 260);
  --text-secondary: oklch(0.4 0.02 260);
  --text-subtle:  oklch(0.5 0.02 260);
  --text-muted:   oklch(0.45 0.02 260);

  /* Coral gradient — exact from prototype primary button */
  --coral-from:   oklch(0.65 0.2 15);
  --coral-to:     oklch(0.6 0.18 25);
  --coral-gradient: linear-gradient(135deg, oklch(0.7 0.18 20), oklch(0.78 0.12 55));

  /* Icon gradient — exact from prototype How It Works icons */
  --icon-gradient: linear-gradient(135deg, oklch(0.7 0.18 20), oklch(0.78 0.12 55));

  /* Dark section bg — exact from prototype How It Works / Pricing */
  --dark-bg:      oklch(0.2 0.04 260);

  /* Layout */
  --max-w-nav:    1200px;
  --max-w-section: 960px;
  --radius-card:  16px;
}

html { scroll-behavior: smooth; }

section[id] {
  scroll-margin-top: 56px;
}

body {
  font-family: var(--font-ui);
  background: var(--page-bg);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Scroll-reveal ─────────────────────────────────────────────── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s cubic-bezier(.22,1,.36,1), transform 0.6s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Shared icon color ─────────────────────────────────────────── */
.icon-white { color: #fff; }

/* ── Text coral ────────────────────────────────────────────────── */
.text-coral { color: oklch(0.65 0.2 15); }

/* ════════════════════════════════════════════════════════════════
   NAV — exact from prototype: sticky, rgba(246,243,238,0.8),
   blur(16px) saturate(180%), border-bottom 1px rgba(0,0,0,0.04)
   padding 12px 24px, logo 32px, brand 18px/700, links 14px/500
════════════════════════════════════════════════════════════════ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 12px 24px;
  background: rgba(246, 243, 238, 0.8);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.nav-inner {
  max-width: var(--max-w-nav);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand-group {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-brand-name {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: oklch(0.2 0.02 260);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: oklch(0.45 0.02 260);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: oklch(0.2 0.02 260); }

/* ════════════════════════════════════════════════════════════════
   HERO — exact from prototype:
   section: relative overflow-hidden, transparent bg
   bg image: absolute inset-0, cover, center
   content: max-w-[1200px] mx-auto px-6 pt-20 pb-24 (80px 24px 96px)
   pill: rgba(255,255,255,0.6) blur(8px) border rgba(0,0,0,0.06) rounded-full 6px 12px
   h1: DM Serif Display 60px/66px weight 400 color oklch(0.15 0.02 260) left
   desc: 20px oklch(0.4 0.02 260) max-w 560px mb 32px left
   primary btn: coral gradient 14px/600 rounded-xl (16px) 14px 28px
   secondary btn: rgba(255,255,255,0.6) border rgba(0,0,0,0.08) 16px 14px/600 14px 24px
   stats: flex gap-32px mt-48px
════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.webp');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}
/* Exact prototype overlay: washes out saturation to soft muted peach */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(246, 243, 238, 0.6) 0%,
    rgba(246, 243, 238, 0.85) 60%,
    rgb(246, 243, 238) 100%
  );
}
.hero-content-wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max-w-nav);
  margin: 0 auto;
  padding: 80px 24px 56px;
}
.hero-content {
  max-width: 800px;
}

/* Hero pill — exact from prototype */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: oklch(0.2 0.02 260);
  margin-bottom: 24px;
}

/* Hero h1 — exact from prototype */
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  color: oklch(0.15 0.02 260);
  text-align: left;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

/* Hero description — exact from prototype */
.hero-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: oklch(0.45 0.02 260);
  margin-bottom: 32px;
  max-width: 800px; /* Increased to prevent Line 1 from wrapping */
  text-align: left;
}

/* Hero CTA row */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Primary button — exact from prototype */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, oklch(0.7 0.18 20), oklch(0.78 0.12 55));
  color: #fff;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { transform: scale(1.02); opacity: 0.95; }
.btn-primary:active { transform: scale(0.97); }

/* Secondary button — exact from prototype */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #ffffff;
  color: oklch(0.25 0.02 260);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  border-radius: 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.14);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn-secondary:hover { transform: scale(1.02); background: oklch(0.97 0.01 80); border-color: rgba(0,0,0,0.22); }

/* Trust bar — below CTA buttons */
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 7px;
  margin-top: 16px;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 500;
  color: oklch(0.45 0.02 260);
  white-space: nowrap;
}
.hero-trust-item svg {
  color: oklch(0.6 0.18 20);
  flex-shrink: 0;
}
.hero-trust-sep {
  font-size: 12px;
  color: oklch(0.65 0.02 260);
  line-height: 1;
}

/* Hero stats — exact from prototype: flex gap-32px mt-48px */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
}
.hero-stat-num {
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 700;
  color: oklch(0.2 0.02 260);
  line-height: 1.1;
}
.hero-stat-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  color: oklch(0.5 0.02 260);
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════════
   HOW IT WORKS — exact from prototype:
   bg: oklch(0.2 0.04 260), py-20 (80px 0)
   wave bg: absolute inset-0 opacity-20 cover center
   inner: max-w-[960px] mx-auto px-6
   heading: text-center mb-16 (64px)
   h2: DM Serif Display 36px/400 rgba(255,255,255,0.95) center mb-12px
   subtitle: 16px rgba(255,255,255,0.5) center max-w-md (448px)
   grid: grid-cols-3 gap-32px
   card: relative p-24px rounded-2xl rgba(255,255,255,0.04) border rgba(255,255,255,0.06) blur(8px)
   watermark: text-5xl (48px) absolute top-4 right-5 rgba(255,255,255,0.04)
   icon: 44px×44px rounded-xl icon-gradient mb-20px
   h3: DM Sans 18px/700 rgba(255,255,255,0.9) mb-8px
   p: 14px rgba(255,255,255,0.45) leading-relaxed
════════════════════════════════════════════════════════════════ */
.how {
  position: relative;
  background: oklch(0.2 0.04 260);
  padding: 56px 0 64px;
  overflow: hidden;
}
.how-wave-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 127, 94, 0.16), transparent 31%),
    linear-gradient(90deg, rgba(7, 18, 38, 0.34), rgba(7, 18, 38, 0.08) 45%, rgba(7, 18, 38, 0.36)),
    url('sound-wave-pattern.webp');
  background-size: cover;
  background-position: center center;
  opacity: 0.56;
  z-index: 0;
}
.how::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(7, 18, 38, 0.16), rgba(7, 18, 38, 0.34)),
    linear-gradient(90deg, rgba(7, 18, 38, 0.24), transparent 42%, rgba(7, 18, 38, 0.24));
}
.how-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w-section);
  margin: 0 auto;
  padding: 0 24px;
}
.how-heading {
  text-align: center;
  margin-bottom: 40px;
}
.how-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.how-subtitle {
  font-family: var(--font-ui);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.6;
  white-space: nowrap;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.how-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}
.how-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}
/* Watermark number — exact from prototype: 48px absolute top-4 right-5 rgba(255,255,255,0.04) */
.how-card-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-ui);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
/* Icon badge — exact from prototype: 44px×44px rounded-xl icon-gradient mb-20px */
.how-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, oklch(0.7 0.18 20), oklch(0.78 0.12 55));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.how-card-h3 {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  line-height: 1.3;
}
.how-card-p {
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.625;
}

/* ════════════════════════════════════════════════════════════════
   DEMO — light warm bg (inherits page-bg), py-16 (64px)
════════════════════════════════════════════════════════════════ */
.demo {
  padding: 28px 16px 40px;
  background: transparent;
}
.demo-inner {
  max-width: var(--max-w-section);
  margin: 0 auto;
}
.demo-heading {
  text-align: center;
  margin-bottom: 40px;
}
.demo-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  color: oklch(0.18 0.02 260);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.demo-subtitle {
  font-family: var(--font-ui);
  font-size: 16px;
  color: oklch(0.5 0.02 260);
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.6;
}
.demo-cta {
  text-align: center;
  margin-top: 24px;
}

.demo-video-wrap {
  width: min(80vw, 900px);
  margin: 0 auto;
}

.demo-video-frame {
  position: relative;
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 18, 38, 0.5), rgba(7, 18, 38, 0.94)),
    url("sound-wave-pattern.webp");
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.16), 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-video-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 127, 94, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 42%);
}

.demo-video-play {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(135deg, oklch(0.7 0.18 20), oklch(0.78 0.12 55));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 46px rgba(255,107,107,0.34);
}

.demo-video-copy {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 22px;
  right: 24px;
  text-align: center;
}

.demo-video-label {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.94);
  margin-bottom: 4px;
}

.demo-video-desc {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.62);
}

/* Browser mockup */
.browser-wrap {
  width: min(80vw, 900px);
  margin: 0 auto;
  display: none;
}
/* Video placeholder inside browser mockup */
.video-placeholder {
  position: relative;
  width: 100%;
  height: 360px;
  background: linear-gradient(135deg, oklch(0.25 0.04 260), oklch(0.2 0.04 260));
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,107,0.05), rgba(255,180,100,0.05));
}
.video-placeholder-play {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, oklch(0.7 0.18 20), oklch(0.78 0.12 55));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-placeholder-play:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(255,107,107,0.3);
}
.video-placeholder-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-ui);
  font-size: 12px;
  z-index: 2;
}

.browser-mockup {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.16), 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.07);
  background: #fff;
  position: relative;
}
.browser-chrome {
  background: #f0f0f0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #ddd;
}
.browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.browser-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }
.browser-bar {
  flex: 1;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.browser-content {
  height: 480px;
  overflow-y: auto;
  position: relative;
  scroll-behavior: smooth;
}
.browser-content::-webkit-scrollbar { width: 6px; }
.browser-content::-webkit-scrollbar-track { background: #f5f5f5; }
.browser-content::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }

/* Mock article */
.mock-article {
  padding: 32px 40px 48px;
  font-family: var(--font-reading);
  max-width: 680px;
  margin: 0 auto;
}
.mock-tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(0.55 0.18 20);
  background: rgba(255,107,107,0.08);
  border-radius: 9999px;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 16px;
}
.mock-article h1 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: oklch(0.15 0.02 260);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.mock-byline {
  font-family: var(--font-ui);
  font-size: 12px;
  color: oklch(0.55 0.02 260);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.mock-article p {
  font-family: var(--font-reading);
  font-size: 15px;
  line-height: 1.75;
  color: oklch(0.25 0.01 260);
  margin-bottom: 18px;
  transition: background 0.2s;
  border-radius: 4px;
  padding: 2px 4px;
  margin-left: -4px;
}
.mock-article p.active-para {
  background: rgba(255, 107, 107, 0.06);
}

/* Word highlight */
.word-highlight {
  background: rgba(255, 107, 107, 0.25);
  border-radius: 2px;
  transition: background 0.1s;
}

/* Play hint */
.play-hint {
  position: absolute;
  bottom: 90px;
  right: 200px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.4s;
}
.play-hint::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(0,0,0,0.7);
  border-right: none;
}
.play-hint.hidden { opacity: 0; }

/* Audessa player widget */
.audessa-player {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 188px;
  background: linear-gradient(160deg, oklch(0.22 0.04 260), oklch(0.18 0.04 260));
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  z-index: 20;
}
.player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 6px;
}
.player-brand {
  display: flex;
  align-items: center;
  gap: 5px;
}
.player-logo {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  object-fit: contain;
}
.player-brand-name {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
}
.player-counter {
  font-family: var(--font-ui);
  font-size: 10px;
  color: rgba(255,255,255,0.3);
}
.player-title {
  padding: 0 12px 6px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-progress {
  padding: 0 12px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.progress-bar-track {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--coral-gradient);
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s linear;
}
.progress-time {
  font-family: var(--font-ui);
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  min-width: 22px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 2px 12px 8px;
}
.ctrl-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, transform 0.1s;
  flex-shrink: 0;
}
.ctrl-btn:hover { background: rgba(255,255,255,0.1); color: #fff; transform: scale(1.1); }
.ctrl-btn:active { transform: scale(0.92); }
.ctrl-btn-play {
  width: 36px;
  height: 36px;
  background: var(--coral-gradient);
  color: #fff;
  box-shadow: 0 2px 10px rgba(255,107,107,0.4);
}
.ctrl-btn-play:hover { box-shadow: 0 4px 16px rgba(255,107,107,0.55); }
.player-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
  gap: 6px;
}
.voice-select-wrap { flex: 1; }
.voice-select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-ui);
  font-size: 10px;
  padding: 3px 5px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.voice-select option { background: #1a1f36; color: #fff; }
.voice-select:focus { outline: none; border-color: rgba(255,107,107,0.4); }
.speed-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  color: rgba(255,255,255,0.75);
  font-family: ui-monospace, 'SFMono-Regular', monospace;
  font-size: 10px;
  padding: 3px 6px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.speed-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ════════════════════════════════════════════════════════════════
   PRICING — exact from prototype:
   section: py-16 px-4 (64px 16px), transparent bg (warm cream)
   inner: max-w-[960px] mx-auto
   heading: text-center mb-12 (48px)
   h2: DM Serif Display 36px/400 oklch(0.18 0.02 260) center mb-12px
   subtitle: 16px oklch(0.5 0.02 260) center max-w-lg (512px) lh 1.6
   grid: grid-cols-3 gap-20px
   card: rounded-2xl p-24px cursor-pointer transition backdrop-filter blur(12px)
   card icon: 48px×48px rounded-xl mb-16px
   card name: DM Sans 20px/700 oklch(0.2 0.02 260) mb-4px
   card type: 12px/500 mb-12px
   price: 30px/700 mb-16px
   tag: 12px px-12px py-6px rounded-lg inline-block mb-20px font-weight 600
   stars: flex gap-1 mb-8px
   meta: 10px mb-8px
   desc: 14px oklch(0.4 0.02 260) lh 1.6 mb-16px
   divider: 1px rgba(0,0,0,0.06) mb-16px
   features li: 14px gap-8px
   feat-check: 16px×16px rounded-full flex items-center justify-center flex-shrink-0
   cta btn: w-full rounded-xl 12px 16px 14px/600
════════════════════════════════════════════════════════════════ */
.pricing {
  padding: 18px 16px 64px;
  background: transparent;
}
.pricing-inner {
  max-width: var(--max-w-section);
  margin: 0 auto;
}
.pricing-heading {
  text-align: center;
  margin-bottom: 48px;
}
.pricing-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  color: oklch(0.18 0.02 260);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pricing-subtitle {
  font-family: var(--font-ui);
  font-size: 16px;
  color: oklch(0.5 0.02 260);
  text-align: center;
  max-width: 512px;
  margin: 0 auto;
  line-height: 1.6;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Pricing card base */
.pricing-card {
  position: relative;
  border-radius: var(--radius-card);
  padding: 24px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { transform: translateY(-3px); }

/* Basic card — green tint */
.pricing-card-basic {
  background: rgba(52, 211, 153, 0.06);
  border: 1.5px solid rgba(52, 211, 153, 0.2);
  box-shadow: rgba(52, 211, 153, 0.15) 0px 8px 32px, rgba(0,0,0,0.04) 0px 2px 8px;
  transform: scale(1.02);
}
.pricing-card-basic:hover { transform: scale(1.02) translateY(-3px); }

/* Standard card — blue tint */
.pricing-card-blue {
  background: rgba(80, 120, 255, 0.04);
  border: 1px solid rgba(80, 120, 255, 0.12);
  box-shadow: rgba(0,0,0,0.04) 0px 2px 8px;
}

/* Premium card — purple tint */
.pricing-card-purple {
  background: rgba(160, 80, 255, 0.04);
  border: 1px solid rgba(160, 80, 255, 0.12);
  box-shadow: rgba(0,0,0,0.04) 0px 2px 8px;
}

/* Card icon */
.pricing-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* Card name */
.pricing-card-name {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  color: oklch(0.2 0.02 260);
  margin-bottom: 4px;
  line-height: 1.2;
}

/* Card type subtitle */
.pricing-card-type {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

/* Card price */
.pricing-card-price {
  font-family: var(--font-ui);
  font-size: 30px;
  font-weight: 700;
  color: oklch(0.2 0.02 260);
  margin-bottom: 16px;
  line-height: 1;
}

/* Card tag badge */
.pricing-card-tag {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
}

/* Stars row */
.pricing-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
}
.pricing-quality-label {
  font-family: var(--font-ui);
  font-size: 11px;
  color: oklch(0.5 0.02 260);
  margin-left: 4px;
}

/* Meta row (Pitch / Rate) */
.pricing-meta-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.pricing-meta-item {
  font-family: var(--font-ui);
  font-size: 10px;
  color: oklch(0.5 0.02 260);
  background: rgba(0,0,0,0.04);
  border-radius: 4px;
  padding: 2px 6px;
}

/* Card description */
.pricing-card-desc {
  font-family: var(--font-ui);
  font-size: 13px;
  color: oklch(0.4 0.02 260);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

/* Divider */
.pricing-divider {
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin-bottom: 16px;
}

/* Features list */
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: oklch(0.3 0.02 260);
  line-height: 1.5;
}
.feat-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feat-check-green  { background: rgba(52,211,153,0.15); color: oklch(0.55 0.18 155); }
.feat-check-blue   { background: rgba(80,120,255,0.12); color: oklch(0.55 0.18 250); }
.feat-check-purple { background: rgba(160,80,255,0.12); color: oklch(0.55 0.18 300); }

/* Pricing CTA */
.pricing-cta { margin-top: auto; }
.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
}
.pricing-btn:hover { transform: scale(1.02); opacity: 0.92; }
.pricing-btn-green  { background: linear-gradient(135deg, oklch(0.65 0.18 155), oklch(0.55 0.15 155)); color: #fff; }
.pricing-btn-blue   { background: linear-gradient(135deg, oklch(0.55 0.18 250), oklch(0.48 0.18 260)); color: #fff; }
.pricing-btn-purple { background: linear-gradient(135deg, oklch(0.55 0.18 300), oklch(0.48 0.18 310)); color: #fff; }

/* ════════════════════════════════════════════════════════════════
   FOOTER — exact from prototype:
   py-10 px-6 (40px 24px), transparent bg
   border-top: 1px solid rgba(0,0,0,0.04)
   inner: max-w-[960px] mx-auto flex justify-between gap-4
   brand name: 14px/600 oklch(0.3 0.02 260)
   links: 14px oklch(0.5 0.02 260)
════════════════════════════════════════════════════════════════ */
.footer {
  padding: 40px 24px;
  background: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}
.footer-inner {
  max-width: var(--max-w-section);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.footer-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
}
.footer-brand-name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: oklch(0.3 0.02 260);
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  font-family: var(--font-ui);
  font-size: 13px;
  color: oklch(0.5 0.02 260);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: oklch(0.2 0.02 260); }
.footer-copy {
  font-family: var(--font-ui);
  font-size: 12px;
  color: oklch(0.6 0.02 260);
}

/* ════════════════════════════════════════════════════════════════
   EMAIL MODAL
════════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  max-width: 400px;
  width: calc(100% - 32px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: oklch(0.6 0.02 260);
  padding: 4px;
}
.modal-close:hover { color: oklch(0.2 0.02 260); }
.modal-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: oklch(0.18 0.02 260);
  margin-bottom: 8px;
  line-height: 1.2;
}
.modal-desc {
  font-family: var(--font-ui);
  font-size: 14px;
  color: oklch(0.5 0.02 260);
  margin-bottom: 20px;
  line-height: 1.5;
}
.modal-input-row {
  display: flex;
  gap: 8px;
}
.modal-input {
  flex: 1;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 9999px;
  padding: 10px 16px;
  font-family: var(--font-ui);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s;
}
.modal-input:focus { border-color: oklch(0.65 0.2 15); }
.modal-submit { flex-shrink: 0; }
.modal-error {
  font-size: 12px;
  color: oklch(0.55 0.2 15);
  margin-top: 6px;
  font-family: var(--font-ui);
}
.modal-done {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}
.modal-disclaimer {
  font-size: 11px;
  color: oklch(0.5 0.02 260);
  text-align: center;
  margin-top: 8px;
  font-family: var(--font-ui);
  line-height: 1.4;
}
.modal-success {
  display: none;
  text-align: center;
  padding: 12px 0;
}
.modal-success.show { display: block; }
.modal-success-icon {
  width: 44px;
  height: 44px;
  background: var(--coral-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: #fff;
  font-size: 20px;
}

/* ════════════════════════════════════════════════════════════════
   LEGAL PAGES
════════════════════════════════════════════════════════════════ */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: oklch(0.18 0.02 260);
  margin-bottom: 6px;
}
.legal-date {
  font-family: var(--font-ui);
  font-size: 13px;
  color: oklch(0.55 0.02 260);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: oklch(0.18 0.02 260);
  margin: 32px 0 10px;
}
.legal-page p, .legal-page li {
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.75;
  color: oklch(0.4 0.02 260);
  margin-bottom: 12px;
}
.legal-page ul { padding-left: 20px; }
.legal-page a { color: oklch(0.6 0.18 20); }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .how-grid    { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .how-subtitle { white-space: normal; }
  .demo-video-wrap { width: 95vw; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card-basic { transform: none; }
  .pricing-card-basic:hover { transform: translateY(-3px); }
  .browser-wrap { width: 95vw; }
  .mock-article { padding: 24px 20px 36px; }
  .audessa-player { width: 172px; }
  .play-hint { right: 182px; bottom: 76px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-content-wrap { padding: 56px 20px 64px; }
  .hero-h1 { font-size: 34px; }
  .hero-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: oklch(0.45 0.02 260);
  margin-bottom: 32px;
  max-width: 800px; /* Increased to prevent Line 1 from wrapping */
  text-align: left;
}
  .hero-stats { gap: 20px; margin-top: 32px; }
  .browser-content { height: 360px; }
  .audessa-player { width: 160px; bottom: 10px; right: 10px; }
  .play-hint { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-copy { text-align: center; }
  .mock-article { padding: 20px 16px 32px; }
  .mock-article h1 { font-size: 20px; }
  .demo-video-frame { min-height: 280px; }
  .demo-video-play {
    width: 68px;
    height: 68px;
  }
  .demo-video-desc { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   AVAILABLE NOW & COMING SOON SECTIONS
═══════════════════════════════════════════════════════════════ */

.available-now {
  position: relative;
  overflow: hidden;
  background: oklch(0.2 0.04 260);
  padding: 60px 20px;
}

.available-now::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 127, 94, 0.16), transparent 31%),
    linear-gradient(90deg, rgba(7, 18, 38, 0.34), rgba(7, 18, 38, 0.08) 45%, rgba(7, 18, 38, 0.36)),
    url("sound-wave-pattern.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.56;
}

.available-now::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 18, 38, 0.16), rgba(7, 18, 38, 0.34)),
    linear-gradient(90deg, rgba(7, 18, 38, 0.24), transparent 42%, rgba(7, 18, 38, 0.24));
}

.available-now-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.available-now-content {
  text-align: center;
}

.available-now-h2 {
  font-family: "DM Serif Display", serif;
  font-size: 32px;
  font-weight: 400;
  color: oklch(0.95 0.01 80);
  margin-bottom: 16px;
}

.available-now-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: oklch(0.75 0.02 80);
  margin-bottom: 32px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.available-now-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: oklch(0.7 0.02 80);
}

.feature-item svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: oklch(0.7 0.18 20);
  stroke-width: 2.5;
}

.available-now-cta {
  margin-top: 32px;
}

/* Coming Soon Section */
.coming-soon {
  background: oklch(0.97 0.01 80);
  padding: 60px 20px;
}

.coming-soon-inner {
  max-width: 900px;
  margin: 0 auto;
}

.coming-soon-content {
  text-align: center;
}

.coming-soon-h2 {
  font-family: "DM Serif Display", serif;
  font-size: 32px;
  font-weight: 400;
  color: oklch(0.25 0.02 260);
  margin-bottom: 16px;
}

.coming-soon-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: oklch(0.45 0.02 260);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-features .feature-item {
  color: oklch(0.45 0.02 260);
}

.coming-soon-features .feature-item svg {
  color: oklch(0.7 0.18 20);
}

.coming-soon-cta {
  margin-top: 32px;
}

/* Responsive */
@media (max-width: 768px) {
  .available-now-h2,
  .coming-soon-h2 {
    font-size: 24px;
  }

  .available-now-desc,
  .coming-soon-desc {
    font-size: 14px;
  }

  .available-now,
  .coming-soon {
    padding: 40px 20px;
  }
}


/* ══════════════════════════════════════════════════════════════
   DEMO MOCKUP — static article with floating Audessa player
═══════════════════════════════════════════════════════════════ */
.demo-stage {
  position: relative;
  background: #fafaf7;
  overflow: hidden;
}
.demo-article {
  padding: 36px 48px 96px;
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-reading);
}
.demo-article-kicker {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: oklch(0.6 0.18 20);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.demo-article-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  color: oklch(0.15 0.02 260);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.demo-article-byline {
  font-family: var(--font-ui);
  font-size: 12px;
  color: oklch(0.55 0.02 260);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.demo-article-p {
  font-family: var(--font-reading);
  font-size: 15px;
  line-height: 1.78;
  color: oklch(0.25 0.01 260);
  margin-bottom: 16px;
}
.demo-article-p-muted {
  color: oklch(0.5 0.02 260);
}
.demo-article-hl {
  background: linear-gradient(transparent 55%, rgba(255, 140, 90, 0.32) 55%);
  border-radius: 2px;
  padding: 0 2px;
  color: oklch(0.18 0.02 260);
  font-weight: 500;
}

/* Floating Audessa player overlay */
.demo-player {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 32px));
  background: linear-gradient(160deg, oklch(0.22 0.04 260), oklch(0.16 0.04 260));
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.32), 0 4px 14px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 18px 14px;
  color: rgba(255,255,255,0.9);
  z-index: 5;
}
.demo-player-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.demo-player-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.demo-player-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, oklch(0.7 0.18 20), oklch(0.78 0.12 55));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.demo-player-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.demo-player-name {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
}
.demo-player-status {
  font-family: var(--font-ui);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.demo-player-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9999px;
  padding: 4px 10px;
}
.demo-player-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: oklch(0.75 0.18 145);
  box-shadow: 0 0 0 3px rgba(80, 220, 150, 0.18);
}
.demo-player-track {
  margin-bottom: 12px;
}
.demo-player-progress {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.demo-player-progress::after {
  content: '';
  position: absolute;
  inset: 0 70% 0 0;
  background: linear-gradient(135deg, oklch(0.7 0.18 20), oklch(0.78 0.12 55));
  border-radius: 2px;
}
.demo-player-times {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-family: ui-monospace, 'SFMono-Regular', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.45);
}
.demo-player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.demo-pbtn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  flex-shrink: 0;
}
.demo-pbtn-play {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, oklch(0.7 0.18 20), oklch(0.78 0.12 55));
  border: none;
  color: #fff;
  box-shadow: 0 6px 18px rgba(255,107,107,0.32);
}
.demo-pchip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9999px;
  padding: 5px 12px;
  margin-left: auto;
}
.demo-pchip + .demo-pchip { margin-left: 0; }
.demo-pchip-label {
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.demo-pchip-value {
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Demo captions */
.demo-caption {
  font-family: var(--font-ui);
  font-size: 14px;
  color: oklch(0.4 0.02 260);
  text-align: center;
  margin-top: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.demo-secondary-note {
  font-family: var(--font-ui);
  font-size: 13px;
  color: oklch(0.55 0.02 260);
  font-style: italic;
  text-align: center;
  margin-top: 6px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   PRICING CARD STATUS LABELS
═══════════════════════════════════════════════════════════════ */
.pricing-card-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.pricing-card-label-green {
  background: rgba(52, 211, 153, 0.16);
  color: oklch(0.5 0.18 155);
  border: 1px solid rgba(52, 211, 153, 0.25);
}
.pricing-card-label-blue {
  background: rgba(80, 120, 255, 0.12);
  color: oklch(0.5 0.18 250);
  border: 1px solid rgba(80, 120, 255, 0.22);
}
.pricing-card-label-purple {
  background: rgba(160, 80, 255, 0.12);
  color: oklch(0.5 0.18 300);
  border: 1px solid rgba(160, 80, 255, 0.22);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER PRIVACY NOTE
═══════════════════════════════════════════════════════════════ */
.footer-privacy-note {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 12px;
  color: oklch(0.5 0.02 260);
  line-height: 1.5;
  text-align: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 0, 0, 0.06);
}

/* ── Demo mockup responsive ─────────────────────────────────────── */
@media (max-width: 720px) {
  .demo-article { padding: 28px 24px 160px; }
  .demo-article-title { font-size: 22px; }
  .demo-player {
    width: calc(100% - 24px);
    padding: 12px 14px;
  }
  .demo-player-controls { gap: 8px; }
  .demo-pchip { margin-left: 0; }
}
