/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
svg { display: block; }

/* ===== TOKENS ===== */
:root {
  --blue: #1C86FF;
  --blue-faint: #f5f9ff;
  --blue-badge: #e8f2ff;
  --card-bg: #f8faff;
  --card-border: #e4eeff;
  --section-alt: #f8faff;
  --text-1: #111;
  --text-2: #555;
  --text-3: #999;
  --border: #eee;
  --radius-md: 10px;
  --radius-lg: 16px;
}

/* ===== LAYOUT ===== */
.container { max-width: 900px; margin: 0 auto; padding: 0 64px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700;
  border-radius: var(--radius-md); padding: 10px 22px;
  cursor: pointer; border: 2px solid transparent;
  transition: opacity 0.15s, background 0.15s;
  white-space: nowrap;
}
.btn--lg { font-size: 15px; padding: 14px 28px; }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { opacity: 0.88; }
.btn--outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: var(--blue-badge); }
.btn--muted { background: #f2f2f2; color: #555; }
.btn--muted:hover { background: #e8e8e8; }

/* ===== NAV ===== */
.nav__toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 38px; height: 38px; margin-left: 4px;
  background: none; border: 1px solid var(--border); border-radius: 8px;
  cursor: pointer; padding: 0;
}
.nav__toggle span {
  display: block; position: relative;
  width: 17px; height: 2px; border-radius: 2px; background: var(--text-1);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 17px; height: 2px; border-radius: 2px; background: var(--text-1);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }
.nav__toggle[aria-expanded='true'] span { background: transparent; }
.nav__toggle[aria-expanded='true'] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded='true'] span::after  { top: 0; transform: rotate(-45deg); }
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px; height: 64px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-icon { width: 32px; height: 32px; flex-shrink: 0; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__wordmark { font-size: 18px; font-weight: 800; color: var(--text-1); letter-spacing: -0.4px; }
.nav__by { font-size: 10.5px; font-weight: 500; color: var(--text-3); letter-spacing: 0.01em; }
.nav__links { display: flex; gap: 28px; }
.nav__drawer-signin { display: none; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--text-2); transition: color 0.15s; }
.nav__links a:hover { color: var(--blue); }
.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__signin { font-size: 13px; font-weight: 500; color: #555; }
.nav__signin:hover { color: var(--blue); }

/* ===== SECTION SHARED ===== */
.section { padding: 88px 0; }
.section-label {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.section-label::before, .section-label::after {
  content: ''; display: block; width: 36px; height: 1px; background: #c8deff;
}
.section__title {
  font-size: 36px; font-weight: 800; color: var(--text-1);
  text-align: center; letter-spacing: -0.5px; margin-bottom: 12px; line-height: 1.2;
}
.section__sub { font-size: 16px; color: var(--text-2); text-align: center; margin-bottom: 52px; }

/* ===== HERO ===== */
.hero {
  padding: 88px 0 64px;
  background: linear-gradient(180deg, var(--blue-faint) 0%, #fff 100%);
  text-align: center;
}
.badge {
  display: inline-block; background: var(--blue-badge); color: var(--blue);
  font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 20px; margin-bottom: 24px;
}
.hero__title {
  font-size: 52px; font-weight: 800; color: var(--text-1);
  line-height: 1.13; letter-spacing: -1px; margin-bottom: 20px;
  max-width: 620px; margin-left: auto; margin-right: auto;
}
.hero__title em { font-style: normal; color: var(--blue); }
.hero__sub {
  font-size: 18px; color: var(--text-2);
  max-width: 460px; margin: 0 auto 36px; line-height: 1.65;
}
.hero__actions {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.hero__signin-link { font-size: 14px; font-weight: 600; color: var(--blue); }
.hero__signin-link:hover { text-decoration: underline; }
.hero__social { margin-top: 20px; font-size: 12px; color: var(--text-3); }

/* ===== PLAYER WIDGET ===== */
.player-wrap { padding-bottom: 64px; }
.player {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: 16px;
  box-shadow: 0 8px 40px rgba(28,134,255,0.13); border: 1px solid #e0eeff;
  padding: 16px 20px; max-width: 560px; margin: 0 auto;
}
.player__icon {
  width: 40px; height: 40px; background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  cursor: pointer; transition: opacity 0.15s;
}
.player__icon:hover { opacity: 0.85; }
.player__icon svg { width: 20px; height: 20px; }
.player__body { flex: 1; min-width: 0; }
.player__title {
  font-size: 12px; font-weight: 600; color: #333; margin-bottom: 7px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.player__bar-wrap { height: 4px; background: var(--border); border-radius: 2px; }
.player__bar { height: 4px; width: 38%; background: var(--blue); border-radius: 2px; }
.player__meta { display: flex; justify-content: space-between; font-size: 10px; color: #bbb; margin-top: 4px; }
.player__speed {
  font-size: 11px; font-weight: 700; color: var(--blue);
  border: 1.5px solid var(--blue); border-radius: 6px; padding: 4px 9px; flex-shrink: 0;
}

/* ===== FEATURES ===== */
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  padding: 28px; background: var(--card-bg);
  border-radius: var(--radius-lg); border: 1px solid var(--card-border);
}
.feature-card__icon { font-size: 28px; margin-bottom: 16px; line-height: 1; }
.feature-card h3 { font-size: 15px; font-weight: 700; color: var(--text-1); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.how { background: var(--section-alt); }
.steps { display: flex; align-items: flex-start; justify-content: center; }
.step { flex: 1; text-align: center; max-width: 220px; }
.step__num {
  width: 56px; height: 56px; background: var(--blue); border-radius: 50%;
  font-size: 22px; font-weight: 800; color: #fff;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step h3 { font-size: 15px; font-weight: 700; color: var(--text-1); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.step-arrow { flex: 0 0 56px; text-align: center; padding-top: 18px; font-size: 22px; color: #c0d8ff; }

/* ===== PRICING ===== */
.billing-toggle {
  display: flex; gap: 4px; width: fit-content; margin: 0 auto 32px; padding: 4px;
  background: #EAEFF5; border-radius: 11px;
}
.billing-toggle__btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: 0; cursor: pointer; font: inherit; font-size: 13px; font-weight: 700;
  padding: 8px 18px; border-radius: 8px; color: var(--text-2); background: transparent;
  transition: background 150ms ease, color 150ms ease;
}
.billing-toggle__btn.is-active { background: #fff; color: var(--text-1); box-shadow: 0 1px 4px rgba(16,24,40,0.14); }
.billing-toggle__save { font-size: 11px; font-weight: 700; color: #16A34A; }

.pricing__cards { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; align-items: stretch; }
.pricing-card {
  flex: 1 1 240px; max-width: 264px; border-radius: var(--radius-lg); padding: 32px 24px;
  border: 2px solid var(--border); display: flex; flex-direction: column; position: relative;
}
.pricing-card--popular {
  border-color: var(--blue);
  box-shadow: 0 12px 40px rgba(28,134,255,0.15);
  transform: translateY(-8px);
}
.pricing-card--founder { border-color: var(--text-1); }
.pricing-card__hot {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em; padding: 3px 14px; border-radius: 20px; white-space: nowrap;
}
.pricing-card__hot--founder { background: var(--text-1); }
.pricing-card__plan {
  font-size: 12px; font-weight: 700; color: #888;
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 12px;
}
.pricing-card__price { font-size: 38px; font-weight: 800; color: var(--text-1); line-height: 1; margin-bottom: 8px; }
.pricing-card__price span { font-size: 15px; font-weight: 400; color: #888; }
.pricing-card__equiv { font-size: 12px; color: #888; margin-bottom: 6px; }
.pricing-card__equiv strong { color: var(--blue); font-weight: 700; }
.pricing-card__desc { font-size: 13px; color: #777; margin-bottom: 20px; line-height: 1.5; }
.pricing-card__features { flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-card__features li {
  font-size: 13px; color: #444; display: flex; align-items: flex-start; gap: 8px;
}
.pricing-card__features li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.pricing-card__cta { display: flex; width: 100%; justify-content: center; }

/* ===== WALL OF LOVE ===== */
.love { background: var(--section-alt); overflow: hidden; }
.love .section__sub { margin-bottom: 40px; }

.love__marquee-outer {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  overflow: hidden;
}
.love__fade {
  position: absolute; left: 0; right: 0; height: 80px;
  z-index: 2; pointer-events: none;
}
.love__fade--top { top: 0; background: linear-gradient(to bottom, var(--section-alt), transparent); }
.love__fade--bottom { bottom: 0; background: linear-gradient(to top, var(--section-alt), transparent); }
.love__columns { display: flex; gap: 20px; }
.love__col { flex: 1; height: 520px; overflow: hidden; }
.love__col:hover .love__track { animation-play-state: paused; }

@keyframes scrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
.love__track {
  display: flex; flex-direction: column; gap: 16px;
  animation: scrollUp var(--dur, 20s) linear infinite;
}

.testimonial { background: #fff; border-radius: var(--radius-lg); padding: 20px; border: 1px solid var(--border); flex-shrink: 0; }
.testimonial__header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.testimonial__avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--blue);
  color: #fff; font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial__info { flex: 1; min-width: 0; }
.testimonial__name { font-size: 13px; font-weight: 700; color: var(--text-1); }
.testimonial__handle { font-size: 11px; color: var(--text-3); }
.testimonial__x { font-size: 13px; color: #bbb; flex-shrink: 0; }
.testimonial__stars { color: #f59e0b; font-size: 12px; margin-bottom: 8px; }
.testimonial p { font-size: 13px; color: #555; line-height: 1.65; }

/* ===== FINAL CTA ===== */
.final-cta { text-align: center; background: linear-gradient(135deg, var(--blue-faint) 0%, #fff 100%); }
.final-cta .section__sub { margin-bottom: 32px; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--border); padding: 48px 0; }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.footer__brand { display: flex; flex-direction: column; gap: 8px; }
.footer__copy { font-size: 12px; color: #bbb; }
.footer__links { display: flex; gap: 48px; }
.footer__col h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; color: #aaa; margin-bottom: 12px;
}
.footer__col a { display: block; font-size: 13px; color: #555; margin-bottom: 8px; transition: color 0.15s; }
.footer__col a:hover { color: var(--blue); }

/* ===== RESPONSIVE ===== */
@media (max-width: 899px) {
  .container { padding: 0 32px; }
  .nav { padding: 0 32px; }
  /* Below 900px the header links become a toggle-driven drawer. They used to
     be simply hidden, which left Features, Pricing and FAQ unreachable from
     the header on a phone. */
  .nav__toggle { display: flex; }
  /* Reclaim header width for the wordmark, the CTA and the toggle. "Sign In"
     moves into the drawer; the byline is decorative at this size. */
  .nav__signin { display: none; }
  .nav__by { display: none; }
  .nav .btn--primary { padding: 9px 14px; font-size: 13px; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    padding: 8px 0;
  }
  .nav__links:not(.is-open) { display: none; }
  .nav__links a { padding: 12px 20px; font-size: 15px; }
  .nav__drawer-signin { display: block; }
  .nav__links a:hover { background: var(--blue-faint); }
  .hero__title { font-size: 38px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .love__col:nth-child(3) { display: none; }
  .love__marquee-outer { padding: 0 24px; }
  .pricing__cards { flex-direction: column; align-items: center; }
  .pricing-card { max-width: 100%; width: 100%; }
  .pricing-card--popular { transform: none; }
  .steps { flex-direction: column; align-items: center; gap: 8px; }
  .step-arrow { transform: rotate(90deg); padding-top: 0; }
  .footer__inner { flex-direction: column; }
}
@media (max-width: 599px) {
  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .hero__title { font-size: 30px; letter-spacing: -0.5px; }
  .section { padding: 64px 0; }
  .features__grid { grid-template-columns: 1fr; }
  .love__col:nth-child(2), .love__col:nth-child(3) { display: none; }
  .love__marquee-outer { padding: 0 20px; }
  .hero__actions { flex-direction: column; }
  .section__title { font-size: 28px; }
}

/* ===== HERO MICROCOPY ===== */
.hero__micro { margin-top: 18px; font-size: 13px; color: var(--text-3); }
.hero__pricing-teaser {
  display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 600;
  color: var(--blue); text-decoration: none;
}
.hero__pricing-teaser:hover { text-decoration: underline; }

/* ===== SMART CONTENT DETECTION (before / after) ===== */
.scd { background: var(--section-alt); }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 760px; margin: 0 auto; }
.compare__col { background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 24px; }
.compare__col--good { border: 1.5px solid var(--blue); background: linear-gradient(135deg, var(--blue-badge) 0%, var(--blue-faint) 100%); }
.compare__head { font-size: 15px; font-weight: 700; color: var(--text-1); margin-bottom: 16px; }
.compare__head em { font-style: normal; }
.compare__col--bad .compare__head em { color: #d14343; }
.compare__col--good .compare__head em { color: var(--blue); }
.compare__list { display: flex; flex-direction: column; gap: 8px; }
.line { font-size: 13px; padding: 9px 12px; border-radius: 8px; line-height: 1.3; }
.line--read { background: #f4f6fb; border: 1px solid var(--card-border); color: var(--text-1); }
.line--skip { color: var(--text-3); text-decoration: line-through; }
.line--keep { background: var(--blue); color: #fff; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.line__tag { font-size: 11px; font-weight: 700; opacity: 0.9; white-space: nowrap; }

/* ===== WHO IT'S FOR ===== */
.usecases__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.usecase-card { padding: 28px 20px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); text-align: center; }
.usecase-card__icon { font-size: 32px; margin-bottom: 14px; line-height: 1; }
.usecase-card h3 { font-size: 15px; font-weight: 700; color: var(--text-1); margin-bottom: 8px; }
.usecase-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }

/* ===== PRICING NOTE ===== */
.pricing-card__note { color: var(--text-3); font-size: 0.85em; }

/* ===== FAQ ===== */
.container--narrow { max-width: 720px; }
.container--wide { max-width: 1180px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: 0 20px; }
.faq__item summary { cursor: pointer; list-style: none; padding: 18px 0; font-size: 15px; font-weight: 600; color: var(--text-1); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 22px; line-height: 1; color: var(--blue); font-weight: 400; flex-shrink: 0; }
.faq__item[open] summary::after { content: '−'; }
.faq__item p { padding: 0 0 18px; margin: 0; font-size: 14px; color: var(--text-2); line-height: 1.7; }
.faq__item a { color: var(--blue); text-decoration: underline; }

/* ===== PRODUCT SHOT ===== */
.shot-wrap { padding-bottom: 80px; }
.shot { max-width: 760px; margin: 0 auto; }
.shot img { width: 100%; height: auto; display: block; border-radius: 14px; border: 1px solid var(--card-border); box-shadow: 0 24px 64px rgba(28, 134, 255, 0.18); }
.shot__cap { margin: 16px auto 0; max-width: 520px; text-align: center; font-size: 13px; color: var(--text-3); line-height: 1.5; }

/* ===== RESPONSIVE (new sections) ===== */
@media (max-width: 899px) {
  .usecases__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 599px) {
  .compare { grid-template-columns: 1fr; }
  .usecases__grid { grid-template-columns: 1fr; }
  .shot-wrap { padding-bottom: 56px; }
}

/* ===== HERO TRUST BADGES ===== */
.hero__badges { margin-top: 22px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; }
.hero__badge { font-size: 12.5px; font-weight: 500; color: var(--text-2); white-space: nowrap; }

/* ===== SMART CONTENT DETECTION — gently animate the line being read ===== */
.compare__col--good .line--keep { animation: read-pulse 2.4s ease-in-out infinite; }
@keyframes read-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(28, 134, 255, 0.45); }
  50%      { box-shadow: 0 0 0 6px rgba(28, 134, 255, 0); }
}
.compare__col--good .line__tag { animation: read-blink 2.4s ease-in-out infinite; }
@keyframes read-blink {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .compare__col--good .line--keep,
  .compare__col--good .line__tag { animation: none; }
}

/* ===== READ OR LISTEN (AI summary spotlight) ===== */
.readlisten { background: var(--section-alt); }
.readlisten__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: center; max-width: 980px; margin: 0 auto; }
.readlisten__options { display: flex; flex-direction: column; gap: 26px; }
.rl-option { display: flex; gap: 16px; align-items: flex-start; }
.rl-option__time {
  flex-shrink: 0; min-width: 66px; padding-top: 1px;
  font-size: 13px; font-weight: 800; color: var(--blue); letter-spacing: -0.01em;
}
.rl-option h3 { font-size: 15px; font-weight: 700; color: var(--text-1); margin-bottom: 4px; }
.rl-option p { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }
.readlisten__shot { margin: 0; }
.readlisten__shot img { width: 100%; height: auto; display: block; border-radius: 12px; border: 1px solid var(--card-border); box-shadow: 0 18px 50px rgba(28, 134, 255, 0.15); }
@media (max-width: 799px) {
  .readlisten__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ===== VERSUS (why not the browser's reader) ===== */
.versus__table {
  max-width: 600px; margin: 0 auto;
  border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  overflow: hidden; background: #fff;
}
.versus__row {
  display: grid; grid-template-columns: 1fr 124px 124px;
  border-bottom: 1px solid var(--border);
}
.versus__row:last-child { border-bottom: none; }
.versus__feat {
  display: flex; align-items: center;
  padding: 15px 20px; font-size: 14px; font-weight: 600; color: var(--text-1); line-height: 1.35;
}
.versus__cell {
  display: flex; align-items: center; justify-content: center;
  padding: 15px 10px; font-size: 14px; text-align: center;
}
.versus__cell--us { background: var(--blue-faint); }
.versus__cell--them { color: var(--text-3); }
.versus__row--head .versus__cell { font-size: 13px; font-weight: 800; letter-spacing: -0.01em; }
.versus__row--head .versus__cell--us { background: var(--blue); color: #fff; }
.versus__row--head .versus__cell--them { background: #fafafa; color: var(--text-2); }
.versus .tick { color: var(--blue); font-weight: 800; font-size: 17px; line-height: 1; }
.versus .cross { color: #d14343; font-weight: 700; font-size: 15px; line-height: 1; opacity: 0.65; }
.versus__limited { font-size: 12px; font-weight: 700; color: #c08a00; }
@media (max-width: 599px) {
  .versus__row { grid-template-columns: 1fr 66px 66px; }
  .versus__feat { padding: 13px 14px; font-size: 13px; }
  .versus__cell { padding: 13px 6px; }
  .versus__row--head .versus__cell { font-size: 11px; }
}

/* Cookie consent banner */
.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  justify-content: space-between;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.consent-banner__text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.9rem;
  color: #374151;
}
.consent-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* Legal pages (privacy, terms) — readable centered text column */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 20px 64px;
  line-height: 1.7;
  color: #1f2937;
}
.legal h1 { font-size: 2rem; font-weight: 700; margin: 0 0 8px; }
.legal h2 { font-size: 1.25rem; font-weight: 700; margin: 32px 0 10px; }
.legal p, .legal li { font-size: 0.95rem; }
.legal p { margin: 0 0 16px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin: 0 0 8px; }
.legal a { color: #1c86ff; text-decoration: none; }
.legal a:hover { text-decoration: underline; }
.legal__meta { color: #6b7280; font-size: 0.875rem; margin: 0 0 24px; }

/* ===== VOICE A/B ===== */
/* The premium voice is the only thing we charge for, and nothing on the site
   let a visitor hear it. This plays the same sentence two ways: their own
   browser voice (live, local — the free tier they already have) against a real
   Lullula render. */
.vs-voice { padding: 8px 0 40px; }
.vs-voice__card {
  background: #fff; border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 26px 28px;
  box-shadow: 0 6px 24px rgba(28,134,255,0.07);
}
.vs-voice__label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--blue); margin-bottom: 12px;
}
.vs-voice__text {
  font-size: 17px; line-height: 1.65; color: var(--text-1);
  margin-bottom: 20px;
}
.vs-voice__text .is-speaking { background: #fff3c4; border-radius: 3px; }
.vs-voice__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.vs-voice__btn {
  flex: 1 1 220px; display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius-md);
  border: 2px solid var(--border); background: #fff;
  cursor: pointer; text-align: left; font: inherit;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.vs-voice__btn:hover { border-color: #d8d8d8; }
.vs-voice__btn--pro { border-color: var(--blue); background: var(--blue-faint); }
.vs-voice__btn.is-playing { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(28,134,255,0.14); }
.vs-voice__btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.vs-voice__btn:focus-visible { outline: 3px solid rgba(28,134,255,0.45); outline-offset: 2px; }
.vs-voice__ico {
  flex: 0 0 34px; height: 34px; border-radius: 50%;
  background: #eef2f7; color: var(--text-1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.vs-voice__btn--pro .vs-voice__ico { background: var(--blue); color: #fff; }
.vs-voice__name { display: block; font-size: 14px; font-weight: 700; }
.vs-voice__sub { display: block; font-size: 12px; color: var(--text-2); margin-top: 1px; }
.vs-voice__note { margin-top: 14px; font-size: 12.5px; color: var(--text-3); }

@media (max-width: 599px) {
  .vs-voice__card { padding: 20px 18px; }
  .vs-voice__text { font-size: 15.5px; }
  .vs-voice__btn { flex-basis: 100%; }
}
