:root {
  color-scheme: dark;
  --bg: #1d1e26;
  --bg-elevated: #22232c;
  --bg-deeper: #181922;
  --panel: #1a1a1f;
  --border: #2a2a31;
  --border-soft: #2f3038;
  --border-strong: #44567a;
  --text: #ecedf2;
  --text-soft: #c9cad2;
  --muted: #8fa0bf;
  --muted-deep: #6d7c98;
  --accent-blue: #5d7daa;
  --accent-blue-soft: rgba(93, 125, 170, 0.20);
  --accent-blue-soft-2: rgba(93, 125, 170, 0.10);
  --accent-gold: #d9a23f;
  --accent-gold-deep: #b9871f;
  --good: #6db17a;
  --good-bg: rgba(109, 177, 122, 0.10);
  --bad: #cf6f72;
  --bad-bg: rgba(207, 111, 114, 0.10);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text-soft);
  font: 16px/1.6 -apple-system, system-ui, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* Soft radial accents that live behind the page content. The first glow
   anchors the hero and gives the dark page some depth at first paint;
   the second sits much further down so as the user scrolls past the
   pricing section the page still has visual energy instead of fading
   to flat black. */
body::before,
body::after {
  content: '';
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
body::before {
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 720px;
  background: radial-gradient(closest-side, rgba(93,125,170,0.35), transparent 70%);
}
body::after {
  bottom: -240px;
  right: -160px;
  width: 540px;
  height: 540px;
  background: radial-gradient(closest-side, rgba(217,162,63,0.18), transparent 70%);
  opacity: 0.45;
}
.wrap { position: relative; z-index: 1; }

/* Scroll-reveal: elements with .fade-in start translated and faded,
   IntersectionObserver in index.html flips them to .visible. Honor
   reduced-motion preferences. */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

a { color: var(--text); text-decoration: none; }
a:hover { color: #fff; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 760px) { .wrap { padding: 0 22px; } }

/* --- Top nav ---------------------------------------------------------- */

.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 72px;
}
.topnav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: opacity 180ms ease;
}
.topnav .brand:hover { opacity: 0.8; color: var(--text); }
.topnav .brand svg { width: 22px; height: 22px; fill: var(--text); }
.topnav .nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}
.topnav .nav-links a {
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color 180ms ease;
}
.topnav .nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}
.topnav .nav-links a:hover { color: var(--text); }
.topnav .nav-links a:hover::after { transform: scaleX(1); }

@media (max-width: 760px) {
  .topnav { margin-bottom: 48px; padding: 22px 0 18px; }
  .topnav .nav-links { gap: 16px; font-size: 13px; }
}

/* --- Buttons ---------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font: 600 14px/1 inherit;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 140ms ease, border-color 140ms ease, opacity 140ms ease;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(180deg, #e1b04d 0%, #c89230 100%);
  color: #1d1e26;
  border-color: var(--accent-gold-deep);
  box-shadow: 0 6px 22px rgba(217, 162, 63, 0.22);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #ecbe5f 0%, #d3a13c 100%);
  color: #1d1e26;
  box-shadow: 0 8px 28px rgba(217, 162, 63, 0.30);
  transform: translateY(-1px);
}
.btn-secondary {
  background: #2a2c38;
  color: var(--text);
  border-color: #44567a;
}
.btn-secondary:hover { background: #313445; color: var(--text); }
.btn[disabled], .btn.disabled { opacity: 0.55; cursor: not-allowed; }
.btn svg { width: 16px; height: 16px; fill: currentColor; }

/* --- Hero ------------------------------------------------------------- */

.hero {
  text-align: center;
  padding: 16px 0 64px;
}
.hero h1 {
  margin: 0 auto 18px;
  max-width: 880px;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero h1 .tail {
  color: var(--muted);
  font-weight: 500;
}
@media (max-width: 760px) { .hero h1 { font-size: 32px; } }
.hero .subtag {
  margin: 0 auto 32px;
  max-width: 680px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.6;
}
/* Three-part sentence colored to map to the three beats of the
   product flow. Hues pulled from the same palette the extension's
   settings page uses, all dialled to a similar muted lightness so
   the sentence still reads as one flowing line, not three chopped
   fragments. */
.hero .subtag .phrase { transition: color 200ms ease; }
/* Three hues spread across the color wheel so each beat stands clearly
   apart from the title (which is white + muted blue-gray) and from
   each other. All dialled to a similar muted-pastel lightness so the
   sentence still reads as one cohesive line. */
.hero .subtag .phrase-1 { color: #b89dd1; }  /* soft violet — the instruction */
.hero .subtag .phrase-2 { color: #dab06a; }  /* warm amber  — the human moment */
.hero .subtag .phrase-3 { color: #87c897; }  /* soft green  — the extension's move */
.hero .subtag .phrase-4 { color: var(--text-soft); }  /* neutral gray-white — the result spec */
.hero .cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.hero .cta-note {
  margin: 0 0 48px;
  font-size: 13px;
  color: var(--muted-deep);
}
.hero .typing-demo { text-align: left; margin-top: 0; }

/* Hero product video. Autoplay-muted-loop with a soft gold-tinted
   glow that picks up the page's existing palette so it doesn't read
   as a floating rectangle. */
.hero-video {
  width: 100%;
  max-width: 920px;
  margin: 8px auto 0;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #000;
  box-shadow:
    0 18px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(93, 125, 170, 0.18);
}

@media (max-width: 760px) {
  .hero { padding-bottom: 48px; }
  .hero h1 { font-size: 34px; }
  .hero .subtag { font-size: 16px; }
  .hero .cta-note { margin-bottom: 36px; }
}

/* --- Trust strip ------------------------------------------------------ */

.trust-strip {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 4px 0 24px;
}
.trust-strip .pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 500;
  background: rgba(34, 35, 44, 0.65);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 180ms ease, background 180ms ease;
}
.trust-strip .pill:hover {
  background: rgba(34, 35, 44, 0.85);
  border-color: rgba(109, 177, 122, 0.4);
}
.trust-strip .pill svg {
  width: 15px;
  height: 15px;
  fill: var(--good);
  flex-shrink: 0;
}

@media (max-width: 760px) { .trust-strip { gap: 10px; padding: 4px 0 16px; } }

/* --- Section blocks --------------------------------------------------- */

section.block {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
section.block:first-of-type { border-top: none; padding-top: 0; }
section.block h2 {
  margin: 0 0 14px;
  font-size: 30px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.015em;
}
section.block .section-lead {
  max-width: 640px;
  color: var(--muted);
  margin: 0 0 36px;
  font-size: 16px;
  line-height: 1.6;
}
section.block .body p { margin: 0 0 16px; font-size: 16px; line-height: 1.7; max-width: 720px; }
section.block .body p:last-child { margin-bottom: 0; }

@media (max-width: 760px) {
  section.block { padding: 48px 0; }
  section.block h2 { font-size: 24px; margin-bottom: 12px; }
  section.block .section-lead { margin-bottom: 28px; }
}

/* --- Three-step ------------------------------------------------------- */

.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.three-up .item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 26px;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease, box-shadow 220ms ease;
}
.three-up .item:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.three-up .item .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  /* Muted teal — same palette the extension's settings-page step
     markers use. Distinct from blue (sign-in callout) and gold
     (Unlimited plan) so the steps read as "informational guide". */
  background: rgba(95, 165, 165, 0.14);
  border: 1px solid #4a7878;
  color: #88c0c0;
  font: 600 14px/1 ui-monospace, 'SF Mono', Menlo, monospace;
  font-variant-numeric: tabular-nums;
  margin-bottom: 16px;
}
.three-up .item h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}
.three-up .item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.55;
}
.three-up .item kbd {
  display: inline-block;
  min-width: 28px;
  padding: 3px 9px;
  text-align: center;
  background: #2a2c38;
  color: var(--text);
  border: 1px solid #44567a;
  border-bottom-width: 2px;
  border-radius: 5px;
  font: 13px/1 ui-monospace, 'SF Mono', Menlo, monospace;
  vertical-align: middle;
}
.three-up .item .plus {
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
  padding: 0 1px;
}
.three-up .item p .hint {
  color: var(--muted);
  font-size: 13.5px;
}

/* Vertical numbered step list, ported from the extension's
   settings page how-to-dictate section. Single column, generous
   line height, real <kbd> chips inline with the instruction
   text. Reads like a recipe instead of three competing boxes. */
.how-to-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 760px;
}
.how-to-steps li {
  display: flex;
  /* Circle's vertical center is pinned to the main-line text center
     (not the whole body's center), so on steps with a sub-line the
     circle sits next to the main action instead of floating mid-block. */
  align-items: flex-start;
  gap: 18px;
  color: var(--text-soft);
}
.how-to-steps .step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(95, 165, 165, 0.14);
  border: 1px solid #4a7878;
  color: #88c0c0;
  font: 600 15px/1 ui-monospace, 'SF Mono', Menlo, monospace;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Offset so the circle's center sits at the main-line text center
     (line-height ≈ 25.6 / 2 = 12.8 vs circle center 19, delta -6.2). */
  margin-top: -6px;
}
.how-to-steps .step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.how-to-steps .step-main {
  font-size: 16.5px;
  line-height: 1.55;
}
.how-to-steps .step-sub {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}
.how-to-steps kbd {
  display: inline-block;
  min-width: 28px;
  padding: 3px 9px;
  text-align: center;
  background: #2a2c38;
  color: var(--text);
  border: 1px solid #44567a;
  border-bottom-width: 2px;
  border-radius: 5px;
  font: 13.5px/1 ui-monospace, 'SF Mono', Menlo, monospace;
  vertical-align: middle;
}
.how-to-steps .plus {
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
  padding: 0 1px;
}
.how-to-steps .hint {
  color: var(--muted);
  font-size: 14.5px;
}
/* Key-action highlights inside each step. Four distinct colors so
   each step's primary action pops uniquely, all dialled to a similar
   muted-pastel lightness so the list reads as one cohesive recipe. */
.how-to-steps .key-blue   { color: #9bb4d4; font-weight: 500; }
.how-to-steps .key-violet { color: #b89dd1; font-weight: 500; }
.how-to-steps .key-amber  { color: #dab06a; font-weight: 500; }
.how-to-steps .key-coral  { color: #d99290; font-weight: 500; }
.how-to-steps .key-green  { color: #87c897; font-weight: 500; }
@media (max-width: 760px) {
  .how-to-steps li { font-size: 15px; }
  .how-to-steps .step-num { width: 30px; height: 30px; font-size: 13px; }
}


@media (max-width: 760px) {
  .three-up { grid-template-columns: 1fr; gap: 16px; }
  .steps-cancel { margin-top: 24px; flex-wrap: wrap; }
}

/* --- Live typing demo ------------------------------------------------- */

.typing-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.typing-demo .panel {
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px 18px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
}
.typing-demo .panel.vox    { border-color: rgba(109, 177, 122, 0.75); }
.typing-demo .panel.others { border-color: rgba(207, 111, 114, 0.65); }
.typing-demo .panel-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.typing-demo .panel-name { font-weight: 600; font-size: 16px; color: var(--text); }
.typing-demo .panel-mark { width: 30px; height: 30px; flex-shrink: 0; }
.typing-demo .panel.vox    .panel-mark { fill: var(--good); }
.typing-demo .panel.others .panel-mark { fill: var(--bad); }
.typing-demo .panel-text {
  flex: 1; font-size: 16px; line-height: 1.6;
  font-family: -apple-system, system-ui, sans-serif;
  min-height: 130px; word-break: break-word;
  /* Inset text-field appearance: darker recessed surface inside
     the panel, hairline border, soft inner shadow at the top so
     it reads as a real input field where text is being entered. */
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 14px 16px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.35);
}
.typing-demo .panel.vox    .panel-text { color: #e8e8ec; }
.typing-demo .panel.others .panel-text { color: var(--bad); }
.typing-demo .panel.vox .panel-text .hl {
  border-bottom: 3px solid var(--good);
  padding-bottom: 1px;
}
.typing-demo .panel-text::after {
  content: ''; display: inline-block; width: 8px; height: 16px;
  margin-left: 2px; vertical-align: text-bottom;
  background: currentColor;
  animation: typing-cursor 1s steps(2, start) infinite;
}
.typing-demo .panel-text.is-speaking::after { display: none; }
.typing-demo .panel-text.in-failure::after { display: none; }

/* Failure-mode indicators on the Others panel.
   Two states: a spinner ("Still transcribing...") and an X
   ("Transcription failed"). Both occupy the panel-text area
   in place of the typed transcript on cycles where the JS
   randomly chooses a failure mode instead of the normal type-
   out. The spinner respects prefers-reduced-motion. */
.others-failure {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-style: italic;
  color: var(--bad);
}
.others-spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(207, 111, 114, 0.25);
  border-top-color: var(--bad);
  border-radius: 50%;
  animation: others-spin 0.9s linear infinite;
  flex-shrink: 0;
}
@keyframes others-spin { to { transform: rotate(360deg); } }
.others-failure .failure-icon {
  width: 22px;
  height: 22px;
  fill: var(--bad);
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .others-spinner { animation: none; }
}
@keyframes typing-cursor { to { opacity: 0; } }

/* Speaking-phase indicator: mic glyph + "Speaking" + bouncing dots.
   Shown in both panels before any text renders, so visitors understand
   the flow: user speaks first, THEN the text appears. */
.speaking {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}
.speaking-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  animation: speaking-pulse 1.3s ease-in-out infinite;
}
.typing-demo .panel.vox    .speaking-icon { fill: var(--good); }
.typing-demo .panel.others .speaking-icon { fill: var(--bad); }
.speaking-label {
  letter-spacing: 0.01em;
  color: var(--text-soft);
}
.speaking-dots {
  display: inline-flex;
  gap: 4px;
  align-items: flex-end;
  height: 8px;
}
.speaking-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
  animation: speaking-dot 1.2s infinite ease-in-out;
}
.speaking-dots span:nth-child(1) { animation-delay: 0s; }
.speaking-dots span:nth-child(2) { animation-delay: 0.15s; }
.speaking-dots span:nth-child(3) { animation-delay: 0.30s; }
.typing-demo .panel.vox    .speaking-dots span { background: var(--good); color: var(--good); }
.typing-demo .panel.others .speaking-dots span { background: var(--bad); color: var(--bad); }

@keyframes speaking-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.15); opacity: 0.75; }
}
@keyframes speaking-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%           { transform: translateY(-5px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .speaking-icon, .speaking-dots span { animation: none; }
}
.typing-demo .panel-footer {
  margin-top: 16px; font-size: 11px; letter-spacing: 0.09em;
  text-transform: uppercase; font-weight: 600;
}
.typing-demo .panel.vox    .panel-footer { color: var(--good); }
.typing-demo .panel.others .panel-footer { color: var(--bad); }
@media (max-width: 760px) {
  .typing-demo { grid-template-columns: 1fr; gap: 14px; }
  .typing-demo .panel { min-height: 0; padding: 18px 18px 14px; }
}

/* --- Accuracy section: intro + strength list + transformations ------ */

.accuracy-intro {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 720px;
  margin: 0 0 28px;
}
.accuracy-intro strong {
  color: var(--text);
  font-weight: 600;
}
.num-highlight {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-weight: 600;
  color: #dab06a;
  font-variant-numeric: tabular-nums;
  background: rgba(218, 176, 106, 0.08);
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: -0.005em;
}

.accuracy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 44px;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.accuracy-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-soft);
}
.accuracy-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #87c897;
}
.accuracy-list .strength {
  color: var(--text);
  font-weight: 600;
}

.xform-lead {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
}
.xform-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
}
.xform {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.xform-spoken {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14.5px;
  font-style: italic;
}
.xform-spoken svg {
  width: 16px;
  height: 16px;
  fill: var(--muted);
  flex-shrink: 0;
}
.xform-arrow {
  width: 22px;
  height: 22px;
  fill: #88c0c0;
  flex-shrink: 0;
}
.xform-text {
  font-size: 15.5px;
  color: var(--text);
  font-weight: 500;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  text-align: left;
}
.xform-text .hl {
  border-bottom: 2px solid #87c897;
  padding-bottom: 1px;
}
@media (max-width: 760px) {
  .xform { grid-template-columns: 1fr; gap: 8px; }
  .xform-spoken { justify-content: flex-start; }
  .xform-arrow { transform: rotate(90deg); margin: 0; }
}

/* --- Audience grid ---------------------------------------------------- */

.audience {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.audience .card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 24px 22px;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease, box-shadow 220ms ease;
}
.audience .card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.audience .card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.audience .card h3 svg {
  width: 18px; height: 18px; fill: var(--accent-blue); flex-shrink: 0;
}
.audience .card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-soft);
}
@media (max-width: 760px) { .audience { grid-template-columns: 1fr; gap: 14px; } }

/* --- Comparison table ------------------------------------------------ */

.compare {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td {
  padding: 14px 18px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--border);
}
.compare tr:last-child th, .compare tr:last-child td { border-bottom: none; }
.compare thead th {
  background: var(--bg-deeper);
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.compare thead th.col-vox    { color: var(--good); }
.compare thead th.col-others { color: var(--muted); }
.compare tbody th {
  font-weight: 500;
  color: var(--muted);
  width: 36%;
}
.compare tbody td { color: var(--text-soft); }
.compare tbody tr { transition: background 180ms ease; }
.compare tbody tr:hover { background: rgba(93, 125, 170, 0.06); }
.compare .y { color: var(--good); font-weight: 600; }
.compare .n { color: var(--bad); font-weight: 500; }
.compare .meh { color: var(--muted); }
@media (max-width: 760px) {
  .compare th, .compare td { padding: 11px 12px; font-size: 13.5px; }
  .compare tbody th { width: 44%; }
}

/* --- Feature grid ---------------------------------------------------- */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.features .feat {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 22px 20px;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease, box-shadow 220ms ease;
}
.features .feat:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.features .feat .icon { transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1); }
.features .feat:hover .icon { transform: scale(1.08); }
.features .feat .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--accent-blue-soft);
  margin-bottom: 14px;
}
.features .feat .icon svg {
  width: 20px;
  height: 20px;
  fill: #b6c3d9;
}
.features .feat h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.features .feat p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
}
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; gap: 14px; } }

/* --- Pricing ---------------------------------------------------------- */

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
}
.pricing .plan {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.pricing .plan {
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease, box-shadow 220ms ease;
}
.pricing .plan:hover {
  transform: translateY(-4px);
}
.pricing .plan.featured {
  border-color: var(--accent-gold-deep);
  background: linear-gradient(180deg, #2a2620 0%, #22232c 100%);
  box-shadow:
    0 0 0 1px rgba(217, 162, 63, 0.25),
    0 14px 44px rgba(217, 162, 63, 0.14);
}
.pricing .plan.featured:hover {
  box-shadow:
    0 0 0 1px rgba(217, 162, 63, 0.40),
    0 20px 56px rgba(217, 162, 63, 0.22);
}
.pricing .plan-name {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); margin-bottom: 10px;
}
.pricing .plan.featured .plan-name { color: var(--accent-gold); }
.pricing .plan-price {
  font-size: 36px; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
  letter-spacing: -0.02em; line-height: 1.05;
}
.pricing .plan-price .per { font-size: 15px; color: var(--muted); font-weight: 500; }
.pricing .plan-sub { color: var(--muted); font-size: 13.5px; margin: 0 0 22px; line-height: 1.5; }
.pricing .plan ul { list-style: none; margin: 0 0 22px; padding: 0; flex: 1; }
.pricing .plan li {
  padding: 7px 0; font-size: 14.5px;
  color: var(--text-soft);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.55;
}
.pricing .plan li svg {
  width: 16px; height: 16px;
  fill: var(--good); flex-shrink: 0; margin-top: 4px;
}
@media (max-width: 760px) { .pricing { grid-template-columns: 1fr; max-width: none; } }

/* --- FAQ (native <details>) ------------------------------------------ */

.faq { display: flex; flex-direction: column; gap: 8px; }
.faq details {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0;
}
.faq details[open] { border-color: var(--border-strong); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  width: 12px; height: 12px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 180ms ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .answer {
  padding: 0 24px 22px;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.65;
}
.faq .answer p { margin: 0 0 10px; }
.faq .answer p:last-child { margin-bottom: 0; }

.faq-more {
  margin: 24px 0 0;
  font-size: 14.5px;
  color: var(--muted);
  text-align: center;
}
.faq-more a {
  color: #a8c0e6;
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 192, 230, 0.3);
  transition: color 180ms ease, border-color 180ms ease;
}
.faq-more a:hover { color: #c4d4f0; border-bottom-color: #c4d4f0; }

/* --- Mid-page CTA ----------------------------------------------------- */

/* Quiet centered CTA between How it works and the rest of the page.
   Visitors who already decided after watching the demo get a button
   right there instead of having to scroll to pricing or footer. */
.mid-cta {
  text-align: center;
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.mid-cta .btn { margin: 0 auto; }
.mid-cta-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted-deep);
}

/* --- Final CTA -------------------------------------------------------- */

.final-cta {
  background: linear-gradient(180deg, var(--accent-blue-soft) 0%, var(--accent-blue-soft-2) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 44px 44px;
  text-align: center;
  margin-top: 48px;
}
.final-cta h2 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
}
.final-cta p {
  margin: 0 0 26px;
  color: var(--text-soft);
  font-size: 16px;
}
@media (max-width: 760px) { .final-cta { padding: 32px 22px; } .final-cta h2 { font-size: 22px; } }

/* --- Footer ----------------------------------------------------------- */

footer.site-footer {
  margin-top: 80px;
  padding: 36px 0 56px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer.site-footer .links { display: flex; gap: 24px; }
footer.site-footer a { color: var(--muted); }
footer.site-footer a:hover { color: var(--text); }

/* --- Legal pages ------------------------------------------------------ */

.legal { padding: 16px 0 64px; max-width: 760px; }
.legal h1 {
  font-size: 36px; font-weight: 700;
  margin: 0 0 8px; color: var(--text);
  letter-spacing: -0.02em;
}
.legal .updated { color: var(--muted); font-size: 13px; margin: 0 0 40px; }
.legal h2 {
  font-size: 20px; font-weight: 600; color: var(--text);
  margin: 44px 0 14px; letter-spacing: -0.005em;
}
.legal h3 {
  font-size: 16px; font-weight: 600; color: var(--text);
  margin: 26px 0 8px;
}
.legal p, .legal li {
  color: var(--text-soft);
  font-size: 15px; line-height: 1.7;
}
.legal ul { padding-left: 24px; margin: 10px 0 16px; }
.legal ul li { margin-bottom: 8px; }
.legal a { color: #a8c0e6; text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: #c4d4f0; }
.legal .callout {
  background: linear-gradient(180deg, var(--accent-blue-soft) 0%, var(--accent-blue-soft-2) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 20px 22px;
  margin: 20px 0;
}
.legal .callout strong { color: var(--text); }

/* --- Compare-page CTAs ----------------------------------------------- */

.compare-cta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 40px;
  padding: 18px 22px;
  background: linear-gradient(180deg, var(--accent-blue-soft) 0%, var(--accent-blue-soft-2) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
}
.compare-cta-top .compare-cta-text {
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.5;
  flex: 1 1 280px;
}
.compare-cta-top .compare-cta-text strong { color: var(--text); }
.compare-cta-top .btn { flex-shrink: 0; }

.compare-cta-bottom {
  text-align: center;
  padding: 40px 28px 36px;
  margin: 56px 0 0;
  background: linear-gradient(180deg, var(--accent-blue-soft) 0%, var(--accent-blue-soft-2) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
}
.compare-cta-bottom h2 {
  margin: 0 0 10px;
  font-size: 24px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.compare-cta-bottom > p {
  color: var(--text-soft);
  font-size: 15px;
  margin: 0 0 22px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.compare-cta-bottom .btn { margin: 0 auto; }
.compare-cta-bottom .compare-cta-meta {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}
.compare-cta-bottom .compare-cta-meta a { color: #a8c0e6; text-decoration: underline; text-underline-offset: 2px; }
.compare-cta-bottom .compare-cta-meta a:hover { color: #c4d4f0; }

@media (max-width: 640px) {
  .compare-cta-top { flex-direction: column; align-items: stretch; }
  .compare-cta-top .btn { width: 100%; }
}

@media (max-width: 760px) {
  .legal h1 { font-size: 28px; }
  .legal h2 { font-size: 18px; margin-top: 36px; }
}
