/* =============================================================
   Whisper-Push — Website styles
   Built on tokens.css (PADDOCK palette). Editorial direction:
   Instrument Serif italic display + Neue Haas Display body.
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  letter-spacing: var(--tracking-tight);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Shared atoms ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 96px 0; position: relative; }
/* clip the canvas horizontally, but let the CTA dropdown overflow downward (overflow-x:clip
   is the one combination that keeps overflow-y:visible from being forced to auto) */
.hero { padding: 0; overflow-x: clip; overflow-y: visible; position: relative; min-height: 44vh; display: flex; align-items: flex-start; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0.7; }
.hero-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 56% 54% at 50% 50%, var(--bg) 0%, rgba(13,46,37,.55) 42%, transparent 78%);
}
.hero > .container { position: relative; z-index: 2; }

.display {
  font-family: var(--font-display);
  font-style: var(--font-display-style);
  font-weight: var(--font-display-weight);
  letter-spacing: var(--tracking-display);
  line-height: 0.95;
}

.accent { color: var(--accent); }

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--accent); }

.section-h2 {
  font-size: 64px;
  margin: 0;
  color: var(--fg);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* every section title sits centred above its content */
.head-block, .head-split, .head-center, .reviews-head {
  display: block; text-align: center;
  max-width: 760px; margin: 0 auto 56px;
}
.head-center { position: relative; z-index: 1; }
.eyebrow { display: none; } /* hide the small section labels (How it works, Features, …) */
.head-center-sub { margin: 24px 0 0; font-size: 16px; color: var(--fg-muted); line-height: 1.5; }
.head-main { max-width: none; margin: 0 auto; }
.head-aside { margin: 18px auto 0; font-size: 15px; color: var(--fg-muted); line-height: 1.55; max-width: 480px; }

.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* check / cross markers */
.ck, .xk { width: 14px; height: 14px; flex-shrink: 0; display: inline-block; position: relative; }
.ck::before {
  content: ''; position: absolute; left: 1px; top: 5px; width: 5px; height: 8px;
  border: solid var(--accent); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.xk::before, .xk::after {
  content: ''; position: absolute; left: 6px; top: 1px; width: 2px; height: 12px;
  background: var(--danger);
}
.xk::before { transform: rotate(45deg); }
.xk::after { transform: rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 38px; padding: 0 16px;
  border: none; border-radius: var(--wp-radius-full);
  font-family: var(--font-sans); font-weight: 500; font-size: 14px;
  letter-spacing: -0.005em; cursor: pointer;
  background: var(--bg-elev); color: var(--fg);
  box-shadow: inset 0 0 0 1px var(--border-strong);
  transition: transform 120ms var(--wp-ease), filter 150ms var(--wp-ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { height: 36px; padding: 0 16px; font-size: 13px; }
.btn-primary {
  background: var(--accent); color: var(--accent-on);
  box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, 0 2px 0 var(--accent-deep);
}
.btn-primary:hover { filter: brightness(1.04); }

/* ---------- Download CTA (single button + platform dropdown) ---------- */
.dl { position: relative; display: inline-block; }
.dl-split { display: inline-flex; align-items: stretch; transition: transform 130ms var(--wp-ease); }
/* hovering anywhere on the CTA lifts the whole thing (button + caret) together */
.dl:hover .dl-split { transform: translateY(-2px); }
.dl-split .dl-main:hover { transform: none; } /* let the split handle the lift (no double) */
.dl-main {
  height: 46px; padding: 0 16px 0 18px; font-size: 14px; gap: 9px;
  border-radius: 999px 0 0 999px;
  box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, 0 2px 0 var(--accent-deep), 0 8px 22px rgba(206,220,0,.28);
}
/* caret shares the exact look of the main button — just a hair-line divider */
.dl-caret {
  height: 46px; width: 38px; flex-shrink: 0;
  border: none; border-radius: 0 999px 999px 0;
  background: var(--accent); color: var(--accent-on);
  box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, 0 2px 0 var(--accent-deep), 0 8px 22px rgba(206,220,0,.28);
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  position: relative;
}
.dl-caret::before {
  content: ''; position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 1px; background: rgba(13,46,37,.18);
}
.dl:hover .dl-main, .dl:hover .dl-caret { filter: brightness(1.05); }
.dl-caret { transition: filter 150ms var(--wp-ease); }
.dl-caret svg { transition: transform 200ms var(--wp-ease); }
.dl[data-open] .dl-caret svg { transform: rotate(180deg); }
.dl-menu {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 30;
  min-width: 280px; padding: 6px;
  background: var(--bg-elev); border: 1px solid var(--border-strong);
  border-radius: var(--wp-radius-lg); box-shadow: var(--shadow-lg);
  animation: dlIn 160ms var(--wp-ease);
  text-align: left;
}
.dl-menu[hidden] { display: none; }
@keyframes dlIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.dl-opt {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 11px 14px; background: transparent; border: none;
  border-radius: var(--wp-radius-md); color: var(--fg);
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  cursor: pointer; text-align: left;
}
.dl-opt:hover { background: var(--bg-elev-2); }
.dl-opt svg { color: var(--fg); flex-shrink: 0; }
.dl-opt-meta { margin-left: auto; font-size: 11px; color: var(--fg-muted); font-family: var(--font-mono); }

/* ---------- Keyboard chip ---------- */
kbd {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 24px; height: 24px; padding: 0 6px;
  background: var(--bg-elev); color: var(--fg);
  border: 1px solid var(--border-strong); border-radius: 6px;
  font-family: var(--font-mono); font-size: 13px;
  vertical-align: middle; margin: 0 1px;
}

/* =============================================================
   NAV
   ============================================================= */
.nav-wrap { position: sticky; top: 0; z-index: 50; padding: 18px 0 0; }
.nav {
  max-width: 940px; margin: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px 14px 24px;
  background: rgba(22, 62, 51, .72);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 999px;
}
@media (min-width: 988px) { .nav { margin: 0 auto; } }

.wordmark { display: inline-flex; align-items: center; color: var(--fg); }
/* handwritten brand lockup (icon + WhisperPush in Caveat) */
.wordmark-svg { height: 40px; width: auto; display: block; }
.wordmark-lg .wordmark-svg { height: 46px; }

.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--fg-muted); }
.nav-links a:hover, .nav-links a.is-active { color: var(--fg); }

/* Language toggle — compact FR/EN segmented pill */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 2px;
  padding: 3px; margin-left: auto; margin-right: 4px;
  border: 1px solid var(--border); border-radius: 999px;
  background: rgba(0, 0, 0, .12);
}
.lang-opt {
  appearance: none; -webkit-appearance: none; border: none; background: none;
  cursor: pointer; font: inherit; font-size: 12px; font-weight: 600; letter-spacing: .04em;
  color: var(--fg-muted); padding: 4px 9px; border-radius: 999px; line-height: 1;
  transition: color 160ms, background 160ms;
}
.lang-opt:hover { color: var(--fg); }
.lang-opt.is-active { background: var(--accent); color: var(--accent-on); }
.lang-opt:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--accent-tint); }
@media (max-width: 600px) {
  .lang-toggle { margin-right: 2px; }
  .lang-opt { padding: 4px 7px; font-size: 11px; }
}

/* =============================================================
   01 · HERO
   ============================================================= */
/* Centered hero — everything organised around the CTA */
.hero-grid {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 44px; max-width: 880px; margin: 0 auto;
  padding-top: 6vh; padding-bottom: 40px;
}
.hero-copy { display: flex; flex-direction: column; align-items: center; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px 5px 8px; border-radius: 999px;
  background: var(--accent-tint); color: var(--accent);
  font-size: 12px; font-weight: 500; margin-bottom: 28px;
}
.hero-badge .dots { display: flex; gap: 2px; }
.hero-badge .dots span { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

.hero-h1 { font-size: 88px; margin: 0; color: var(--fg); line-height: 0.95; letter-spacing: -0.03em; white-space: nowrap; }
.hero-sub {
  margin: 28px auto 0; font-size: 18px; color: var(--fg-muted);
  line-height: 1.5; letter-spacing: -0.005em; max-width: 540px;
}
.hero-sub em {
  color: var(--fg); font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400;
}
.hero-cta { margin-top: 36px; display: flex; justify-content: center; }
.hero-copy .brew-line { margin-top: 18px; }
.trust-row {
  margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px;
  font-size: 12px; color: var(--fg-faint);
  font-family: var(--font-mono); letter-spacing: 0.04em;
}
.trust-row li { display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; }
.hero-art { position: relative; width: 100%; display: flex; justify-content: center; }

/* =============================================================
   02 · STATS BAR
   ============================================================= */
.stats { padding: 24px 0 56px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 8px 28px; border-left: 1px solid var(--border); }
.stat:first-child { border-left: none; }
.stat-n {
  font-size: 68px; line-height: 0.95; color: var(--fg); letter-spacing: -0.03em;
  display: flex; align-items: baseline; gap: 11px;
}
/* inline unit kept in the editorial italic — positive tracking so the letters never collide */
.stat-unit {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 17px; letter-spacing: 0.04em; color: var(--fg-muted); white-space: nowrap;
}
.stat-l { margin-top: 18px; font-size: 15px; color: var(--fg); font-weight: 500; letter-spacing: -0.005em; }
.stat-sub { margin-top: 6px; font-size: 13px; color: var(--fg-muted); line-height: 1.45; }

/* =============================================================
   03 · HOW IT WORKS
   ============================================================= */
/* distinct, full-bleed panel with big rounded corners (edge to edge) */
#how {
  background: var(--bg-elev-2);
  border-radius: 72px;
  margin: 24px 0;
  padding: 84px 0;
  overflow: hidden;
}
/* sequenced timeline · Appuie → Parle → Lâche — full width, a node centred over each module */
.how-timeline {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin: 8px 0 60px; padding: 0; list-style: none;
}
.ht {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0.45; transition: opacity 0.45s var(--wp-ease);
}
/* dim connector — sits in the gap between the two dots (never under a circle) */
.ht-line {
  position: absolute; top: 16px; right: calc(50% + 22px); width: calc(100% - 30px); height: 2px;
  background: var(--border-strong); border-radius: 2px; overflow: hidden;
}
.ht-line i { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--accent); border-radius: 2px; }
.ht-line.fill i { width: 100%; transition: width var(--fillms, 3000ms) linear; } /* fluo flows toward the next node */
.ht-line.full i { width: 100%; transition: none; }
.ht-dot {
  position: relative; z-index: 1;
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--border-strong); color: var(--fg-muted); background: var(--bg-elev-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 14px; font-weight: 700;
  transition: all 0.45s var(--wp-ease);
}
.ht-label { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 24px; color: var(--fg); letter-spacing: -0.02em; }
.ht.is-done { opacity: 0.85; }
.ht.is-done .ht-dot { border-color: var(--accent); color: var(--accent); }
.ht.is-active { opacity: 1; }
.ht.is-active .ht-dot { background: var(--accent); border-color: var(--accent); color: var(--accent-on); transform: scale(1.12); }
/* clickable affordance: hovering a node previews the lit state */
.ht:hover { opacity: 1; }
.ht:hover .ht-dot { border-color: var(--accent); color: var(--accent); }
.ht:focus-visible, .step:focus-visible { outline: none; }
.ht:focus-visible .ht-dot { box-shadow: 0 0 0 3px var(--accent-tint); border-color: var(--accent); }
.step { cursor: pointer; }
.step:focus-visible .step-title { text-decoration: underline; text-underline-offset: 4px; }

/* steps · no box (the section panel is the only surface), active one emphasised */
.how-steps { align-items: start; }
.step {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px;
  padding: 0 14px;
  opacity: 0.32; transform: scale(0.92);
  transition: opacity 0.5s var(--wp-ease), transform 0.5s var(--wp-ease);
}
.step.is-active { opacity: 1; transform: scale(1.05); }
.step-visual { min-height: 168px; display: flex; align-items: center; justify-content: center; }
.step-title {
  font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400;
  font-size: 26px; line-height: 1.1; color: var(--fg);
  letter-spacing: -0.02em; margin: 0;
}
.step-sub { margin: 0; font-size: 13px; color: var(--fg-muted); line-height: 1.55; max-width: 300px; }

/* Visual: citron keycap — clean isometric 3/4 (SVG, no seams) */
.visual-key {
  position: relative; width: 150px; height: 150px;
  display: flex; align-items: center; justify-content: center;
}
.visual-key::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(206,220,0,.28), transparent 62%);
}
.kcap-svg {
  width: 138px; height: auto; overflow: visible;
  filter: drop-shadow(0 16px 16px rgba(0,0,0,.30));
  will-change: transform;
}
/* fill + matching stroke with round joins = softly rounded polygon corners */
.kf-top, .kf-left, .kf-right { stroke-width: 7; stroke-linejoin: round; stroke-linecap: round; }
.kf-top   { fill: url(#kcapTop); stroke: #E4EE5A; }      /* lightest — catches the light */
.kf-left  { fill: #C2CE2E; stroke: #C2CE2E; }            /* left face — lit from upper-left */
.kf-right { fill: #A0AC00; stroke: #A0AC00; }            /* right face — in shadow */
.kf-legend path {
  fill: none; stroke: #16361F; stroke-width: 0.045;
  stroke-linecap: round; stroke-linejoin: round; opacity: 0.85;
}
/* Visual: wave */
.visual-wave { display: flex; align-items: center; justify-content: center; gap: 14px; }
.vwave-mic {
  width: 48px; height: 48px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(206,220,0,.12), 0 8px 24px rgba(206,220,0,.30);
}
.vwave-bars { display: flex; align-items: center; gap: 3px; height: 60px; }
.vwave-bars span { width: 4px; border-radius: 2px; background: var(--accent); }
/* Visual: text */
.visual-text {
  background: var(--bg); border: 1px solid var(--border-strong); border-radius: 18px;
  padding: 14px 18px; width: 85%; max-width: 280px;
  box-shadow: inset 0 1px 0 rgba(239,234,216,.04);
}
.vtext-body { font-size: 13px; color: var(--fg); line-height: 1.45; letter-spacing: -0.005em; }
.vtext-body .caret { color: var(--accent); margin-left: 2px; }
.vtext-meta {
  margin-top: 10px; font-size: 10px; color: var(--fg-muted);
  font-family: var(--font-mono); letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 6px;
}

/* =============================================================
   04 · FEATURES
   ============================================================= */
.feature-card {
  padding: 28px 28px 32px; background: var(--bg-elev);
  border: 1px solid var(--border); border-radius: var(--wp-radius-xl);
  display: flex; flex-direction: column; gap: 14px; min-height: 280px;
}
.feature-ico {
  width: 44px; height: 44px; border-radius: var(--wp-radius-lg);
  background: var(--accent-tint); color: var(--accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 8px;
}
.feature-title {
  font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400;
  font-size: 26px; color: var(--fg); letter-spacing: -0.02em; line-height: 1.1; margin: 0;
}
.feature-lead { margin: 0; font-size: 14px; color: var(--fg); line-height: 1.5; font-weight: 500; }
.feature-detail { margin: auto 0 0; font-size: 13px; color: var(--fg-muted); line-height: 1.55; }

/* =============================================================
   05 · USE CASES
   ============================================================= */
.usecase-card {
  padding: 36px; background: var(--bg-elev);
  border: 1px solid var(--border); border-radius: var(--wp-radius-2xl);
  display: flex; flex-direction: column; gap: 24px;
}
.usecase-top { display: flex; justify-content: space-between; align-items: flex-start; }
.usecase-tag {
  display: inline-flex; align-items: center; padding: 5px 14px; border-radius: 999px;
  background: var(--accent-tint); color: var(--accent);
  font-size: 11px; font-weight: 600; font-family: var(--font-mono);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.usecase-ico { color: var(--accent); }
.usecase-title {
  font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400;
  font-size: 32px; color: var(--fg); letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 14px;
}
.usecase-sub { margin: 0; font-size: 14px; color: var(--fg-muted); line-height: 1.55; }
.check-list { display: flex; flex-direction: column; gap: 8px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--fg); }

/* =============================================================
   06 · INTEGRATIONS
   ============================================================= */
/* horizontal "wall" of rows that drift opposite ways on scroll */
.app-wall {
  /* full-bleed: break out of the .container so the wall spans the whole viewport */
  width: 100vw; margin-left: calc(50% - 50vw);
  overflow: hidden; display: flex; flex-direction: column; gap: 10px;
  /* soften the edges so the drifting rows dissolve instead of hard-clipping */
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.app-row {
  /* packed, fixed-width tiles on a track wider than the wall */
  display: flex; gap: 14px; flex-wrap: nowrap; width: max-content;
  will-change: transform;
}
/* continuous marquee — tiles are doubled in JS so -50% loops seamlessly */
.app-wall.is-marquee .app-row {
  animation: app-marquee var(--marquee-dur, 56s) linear infinite;
}
.app-wall.is-marquee .app-row[data-app-row="-1"] { animation-direction: reverse; }
.app-wall.is-marquee:hover .app-row { animation-play-state: paused; }
@keyframes app-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .app-wall.is-marquee .app-row { animation: none; }
}
.app-tile {
  flex: 0 0 auto; width: 88px;
  padding: 12px 6px; background: transparent; border: 0; border-radius: var(--wp-radius-xl);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 9px;
  font-size: 11px; color: var(--fg); font-weight: 500; white-space: nowrap;
}
/* "app-icon" square holding the real colour logo — themed racing-green surface */
.app-glyph {
  width: 54px; height: 54px; border-radius: 15px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-elev-2); box-shadow: inset 0 0 0 1px var(--border);
}
/* logos that are essentially black keep a cream plate so they stay legible on dark */
.app-glyph.is-plate { background: #F4F1E6; box-shadow: inset 0 0 0 1px rgba(13,46,37,.06); }
.app-glyph img { width: 34px; height: 34px; display: block; object-fit: contain; }
/* monochrome logos (Cursor, Terminal) recoloured dark via mask */
.ico-mask {
  width: 32px; height: 32px; display: block; background: #1B1B1B;
  -webkit-mask: var(--ic) center / contain no-repeat;
          mask: var(--ic) center / contain no-repeat;
}
.glyph-mono { font-family: var(--font-mono); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.app-tile-more { background: transparent; }
.more-plus { font-size: 32px; color: var(--accent); line-height: 1; }
.more-label { font-size: 11px; color: var(--fg-muted); text-align: center; line-height: 1.4; }
/* "wherever your cursor lands" — subtitle + live dictation text-field demo */
.cursor-demo { margin: 0 auto 44px; max-width: 600px; text-align: center; }
/* Chrome window mockup — dictation lands straight in the address bar */
.chrome-mock {
  text-align: left; border-radius: 14px; overflow: hidden;
  background: #35363a; border: 1px solid rgba(0,0,0,.35);
  box-shadow: var(--shadow-lg);
}
.cm-tabs { display: flex; align-items: center; gap: 12px; height: 40px; padding: 0 14px; background: #2b2c2f; }
.cm-dots { display: flex; gap: 7px; }
.cm-dots i { width: 11px; height: 11px; border-radius: 50%; background: #5f6368; display: block; }
.cm-tab {
  display: flex; align-items: center; gap: 8px; height: 30px; padding: 0 12px;
  margin-bottom: -1px; border-radius: 9px 9px 0 0; background: #35363a;
  color: #e8eaed; font-size: 12.5px; max-width: 220px;
}
.cm-fav { width: 15px; height: 15px; flex-shrink: 0; }
.cm-tab span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cm-x { color: #9aa0a6; flex-shrink: 0; }
.cm-toolbar { display: flex; align-items: center; gap: 12px; padding: 9px 14px; }
.cm-nav { display: flex; align-items: center; gap: 14px; color: #9aa0a6; flex-shrink: 0; }
.cm-nav svg { width: 18px; height: 18px; }
.cm-nav svg:first-child { color: #e8eaed; }
.cm-menu { color: #9aa0a6; flex-shrink: 0; display: flex; }
.cm-menu svg { width: 18px; height: 18px; }
.cm-omni {
  flex: 1; min-width: 0; display: flex; align-items: center; gap: 10px;
  height: 38px; padding: 0 8px 0 14px; border-radius: 999px;
  background: #202124; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}
.cm-omni-ico { color: #9aa0a6; flex-shrink: 0; }
.ci-line {
  flex: 1; min-width: 0; display: flex; align-items: center; overflow: hidden;
  font-size: 14.5px; line-height: 1.4; color: #e8eaed;
}
.ci-text { flex: 0 0 auto; white-space: nowrap; }
.ci-caret {
  flex: 0 0 auto; width: 2px; height: 1.05em; margin-left: 1px;
  background: var(--accent); border-radius: 1px;
  animation: ciBlink 1.05s steps(1) infinite;
}
[data-cursor-demo].is-typing .ci-caret { animation: none; opacity: 1; }
@keyframes ciBlink { 0%,50% { opacity: 1; } 50.01%,100% { opacity: 0; } }
/* dictation indicator floating right next to the caret (whisper·push doing the typing) */
/* whisper·push wave mark, in a citron badge, sitting right beside the caret */
.ci-tag {
  display: none; flex: 0 0 auto; align-items: center; justify-content: center;
  width: 23px; height: 23px; margin-left: 8px; border-radius: 50%; overflow: hidden;
  background: var(--accent); color: var(--accent-on);
}
[data-cursor-demo].is-rec .ci-tag { display: inline-flex; animation: ciTagPulse 1.6s var(--wp-ease) infinite; }
.wp-mark { width: 15px; height: 15px; display: block; }
.wp-mark .wpw { opacity: 0.4; }
[data-cursor-demo].is-rec .wp-mark .wpw { animation: wpWave 1.15s ease-in-out infinite; }
.wp-mark .wpw:nth-child(2) { animation-delay: 0.14s; }
.wp-mark .wpw:nth-child(3) { animation-delay: 0.28s; }
@keyframes wpWave { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
/* glow stays inside the round badge (inset) — never bleeds outside the circle */
@keyframes ciTagPulse {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(239,234,216,0); }
  50%      { box-shadow: inset 0 0 9px 1px rgba(239,234,216,.55); }
}

/* =============================================================
   07 · PRIVACY
   ============================================================= */
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.privacy-lead { margin: 24px 0 0; font-size: 16px; color: var(--fg-muted); line-height: 1.55; max-width: 480px; }
.privacy-bullets { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.privacy-bullet { display: flex; gap: 12px; align-items: flex-start; }
/* bare fluo-citron check, no circle */
.pb-check { flex-shrink: 0; margin-top: 1px; color: var(--accent); display: inline-flex; }
.pb-label { font-size: 15px; color: var(--fg); font-weight: 500; }
.pb-sub { font-size: 13px; color: var(--fg-muted); margin-top: 2px; }

/* ---- Privacy visual: one calm proof artifact — the OS network monitor, all zeros ---- */
.privacy-visual {
  position: relative; min-height: 460px;
  display: flex; align-items: center; justify-content: center;
}
/* On-device diagram — local pipeline (mic → process → text), cloud severed */
.od-diagram { width: 100%; max-width: 430px; height: auto; display: block; }
.od-label {
  font-family: var(--font-mono); font-size: 11px; fill: var(--fg-faint);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.od-machine { fill: var(--fg-muted); }
.od-never {
  font-family: var(--font-mono); font-size: 11px; fill: var(--danger);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.od-wave { opacity: 0.5; }
.od-glow { transform-box: fill-box; transform-origin: center; opacity: 0.6; }
.od-listen-label { font-family: var(--font-mono); font-size: 11px; fill: var(--fg-muted); letter-spacing: 0.06em; }
.od-out0 { font-family: var(--font-mono); font-size: 10px; fill: var(--fg-faint); letter-spacing: 0.04em; }
.od-listen { transform-box: fill-box; transform-origin: center; }
.od-cap { transform-box: fill-box; transform-origin: left center; transform: scaleX(1); }
.od-packet { transform-box: fill-box; transform-origin: center; opacity: 0; }

@media (prefers-reduced-motion: no-preference) {
  .od-wave { animation: odWave 1.9s ease-in-out infinite; }
  .od-wave.w2 { animation-delay: 0.25s; }
  .od-wave.w3 { animation-delay: 0.50s; }
  .od-glow { animation: odGlow 3.4s ease-in-out infinite; }
  .od-cross { animation: odCross 2.6s ease-in-out infinite; }
  .od-listen { animation: odListen 1.2s steps(1) infinite; }
  .od-cap { animation: odCap 3.8s ease-in-out infinite; }
  .od-cap.c2 { animation-delay: 0.45s; }
  .od-packet { animation: odPacket 2.9s ease-in infinite; }
}
@keyframes odWave { 0%, 100% { opacity: 0.30; } 50% { opacity: 1; } }
@keyframes odGlow { 0%, 100% { opacity: 0.45; transform: scale(0.9); } 50% { opacity: 0.95; transform: scale(1.06); } }
@keyframes odCross { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes odListen { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0.25; } }
@keyframes odCap { 0%, 6% { transform: scaleX(0); } 26%, 62% { transform: scaleX(1); } 78%, 100% { transform: scaleX(0); } }
@keyframes odPacket {
  0%, 8%   { transform: translate(0, 0); opacity: 0; }
  18%      { opacity: 1; }
  52%      { transform: translate(22px, -24px); opacity: 1; }
  64%      { transform: translate(22px, -24px) scale(1.8); opacity: 0; }
  100%     { transform: translate(22px, -24px) scale(1.8); opacity: 0; }
}

/* =============================================================
   08 · COMPARISON
   ============================================================= */
/* no card, no border — just the rule lines */
.comp-table {
  background: none; border: none;
  /* whisper·push column accent — vert d'eau (soft seafoam) instead of fluo citron */
  --eau: #7FC9AC;
  --eau-tint: rgba(127, 201, 172, 0.14);
  --eau-line: rgba(127, 201, 172, 0.45);
}
.comp-row {
  display: grid; grid-template-columns: 1.8fr 1.25fr 1fr 1fr;
  padding: 0 4px; align-items: stretch;
  border-bottom: 1px solid var(--border-strong);
}
/* every cell carries its own vertical padding so the highlighted
   column reads as one continuous band, row to row */
.comp-row > span { padding: 15px 16px; display: inline-flex; align-items: center; gap: 8px; }
.comp-row > span:first-child { padding-left: 0; }

/* header — bracketed by a top line, no fill */
.comp-head { border-top: 1px solid var(--border-strong); }
.comp-head > span {
  padding-top: 20px; padding-bottom: 20px;
  font-size: 11px; color: var(--fg-muted); font-family: var(--font-mono);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.comp-us { flex-direction: column; align-items: flex-start; gap: 8px; }
.comp-us-logo { height: 24px; width: auto; display: block; color: var(--accent); }
.comp-tag {
  font-family: var(--font-mono); font-size: 9px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-on); background: var(--eau);
  padding: 3px 8px; border-radius: var(--wp-radius-full);
}

/* the whisper·push column — continuous tinted band + thin vertical vert-d'eau lines */
.comp-row > .comp-us,
.comp-row > .comp-cell.win {
  background: var(--eau-tint);
  box-shadow: inset 1px 0 0 var(--eau-line), inset -1px 0 0 var(--eau-line);
}

.comp-feat { font-size: 14px; color: var(--fg); line-height: 1.4; }
.comp-cell { font-size: 14px; color: var(--fg-muted); }
.comp-cell.win { color: var(--fg); font-weight: 600; }
.comp-cell.no { color: var(--fg-faint); }
.comp-cell.partial { color: var(--warning); }

/* circular yes / no / partial badges, scoped to the table */
.comp-cell .ck, .comp-cell .xk, .comp-cell .pk {
  width: 20px; height: 20px; border-radius: var(--wp-radius-full);
}
.comp-cell .ck { background: var(--accent-tint); }
.comp-cell .ck::before { left: 7px; top: 5px; border-color: var(--accent); }
.comp-cell .xk { background: rgba(224, 86, 60, 0.16); }
.comp-cell .xk::before, .comp-cell .xk::after { left: 9px; top: 4px; height: 12px; }
.comp-cell .pk { background: rgba(245, 200, 75, 0.16); position: relative; }
.comp-cell .pk::before { content: ''; position: absolute; left: 5px; top: 9px; width: 10px; height: 2px; border-radius: 2px; background: var(--warning); }

.comp-note { margin: 18px 4px 0; font-size: 11.5px; color: var(--fg-faint); line-height: 1.5; font-family: var(--font-mono); }
.comp-note a { color: var(--fg-muted); text-decoration: underline; text-underline-offset: 2px; }
.comp-note a:hover { color: var(--accent); }

/* =============================================================
   09 · REVIEWS
   ============================================================= */
.rating { text-align: center; margin-top: 22px; }
.rating-n { font-size: 48px; color: var(--accent); line-height: 1; letter-spacing: -0.04em; }
.rating-n span { color: var(--fg-muted); font-size: 24px; }
.stars { display: inline-flex; gap: 2px; margin-top: 8px; color: var(--accent); justify-content: center; }
.stars svg { width: 16px; height: 16px; }
.stars.sm svg { width: 13px; height: 13px; }
.rating-meta { font-size: 12px; color: var(--fg-muted); margin-top: 8px; font-family: var(--font-mono); letter-spacing: 0.04em; text-transform: uppercase; }

.reviews-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 14px; }
.review-card {
  padding: 28px 26px; background: var(--bg-elev);
  border: 1px solid var(--border); border-radius: var(--wp-radius-2xl);
  display: flex; flex-direction: column; gap: 18px; min-height: 260px;
}
.review-big { padding: 36px 32px; min-height: 320px; }
.review-quote {
  margin: 0; font-family: 'Neue Haas Display', sans-serif; font-size: 15px;
  color: var(--fg); line-height: 1.55; letter-spacing: -0.005em;
}
.review-big .review-quote {
  font-family: 'Instrument Serif', serif; font-style: italic; font-size: 24px;
  line-height: 1.3; letter-spacing: -0.015em;
}
.review-author { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; font-family: 'Neue Haas Display', sans-serif;
}
.avatar-citron { background: #CEDC00; color: var(--accent-on); }
.avatar-cream { background: #EFEAD8; color: #0D2E25; }
.author-name { font-size: 13px; color: var(--fg); font-weight: 500; }
.author-role { font-size: 11px; color: var(--fg-muted); margin-top: 2px; }

.logo-strip {
  margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.logo-strip-label { font-size: 12px; color: var(--fg-muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; max-width: 200px; }
.logo-strip-names {
  flex: 1; display: flex; justify-content: space-around; align-items: center; gap: 24px;
  font-family: 'Instrument Serif', serif; font-style: italic; font-size: 24px;
  color: var(--fg-muted); letter-spacing: -0.02em;
}
.logo-strip-names .sep { font-size: 14px; }

/* =============================================================
   10 · PRICING
   ============================================================= */
.pricing { overflow: hidden; }
.pricing-glow {
  position: absolute; top: 10%; right: -10%; width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(206,220,0,.08), transparent 60%);
  pointer-events: none; z-index: 0;
}
/* ---- Payment: two clear cards side by side, «À vie» highlighted ---- */
.pay-grid {
  position: relative; z-index: 1; max-width: 780px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch;
}
.pay-card {
  position: relative; display: flex; flex-direction: column; gap: 22px;
  padding: 34px 30px;
  background: rgba(239, 234, 216, 0.025);
  border: 1px solid var(--border); border-radius: var(--wp-radius-xl);
  transition: transform 220ms var(--wp-ease), border-color 220ms var(--wp-ease);
}
.pay-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.pay-card-best {
  /* premium, but restrained: faint citron sheen from the top + a soft glow */
  background:
    linear-gradient(180deg, rgba(206,220,0,.07), rgba(206,220,0,0) 42%),
    var(--bg-elev);
  border-color: var(--accent);
  box-shadow: var(--shadow-md), 0 0 90px -36px var(--accent-glow);
}
.pay-card-best:hover { transform: translateY(-3px); border-color: var(--accent); }
.pay-card-badge {
  position: absolute; top: -12px; right: 24px;
  padding: 6px 14px; border-radius: 999px; background: var(--accent); color: var(--accent-on);
  font-size: 10.5px; font-weight: 700; font-family: var(--font-mono);
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 6px 18px -6px var(--accent-glow);
}
/* name + tag read as one title block */
.pay-card-head { display: flex; flex-direction: column; gap: 8px; }
.pay-card-name {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: 30px; color: var(--fg); letter-spacing: -0.025em; line-height: 1;
}
.pay-card-tag { margin: 0; font-size: 14px; color: var(--fg-muted); line-height: 1.45; }
.pay-card-price { display: flex; align-items: baseline; gap: 9px; margin-top: 2px; }
.pay-amount { font-size: 58px; line-height: 0.9; letter-spacing: -0.04em; color: var(--fg); }
.pay-cur { font-size: 24px; color: var(--fg-muted); font-style: italic; margin-left: 2px; }
.pay-per { font-size: 13px; color: var(--fg-muted); font-family: var(--font-mono); }
.pay-equiv {
  margin: -14px 0 0; font-size: 12.5px; color: var(--fg-faint);
  font-family: var(--font-mono); letter-spacing: 0.02em;
}
/* a hairline sets the value prop apart from the feature list */
.pay-list {
  display: flex; flex-direction: column; gap: 11px;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.pay-card-best .pay-list { border-top-color: var(--border-strong); }
.pay-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--fg); line-height: 1.45; }
.pay-list .ck { margin-top: 2px; }
/* annual = quiet ghost-citron CTA; lifetime keeps the solid primary */
.pay-cta {
  margin-top: auto; height: 52px; padding: 0 24px; font-size: 15px; font-weight: 600;
  background: transparent; color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(206,220,0,.45);
}
.pay-cta:hover { background: var(--accent-tint); }
.pay-cta.btn-primary {
  background: var(--accent); color: var(--accent-on);
  box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, 0 2px 0 var(--accent-deep);
}
.pay-cta.btn-primary:hover { background: var(--accent); }

/* shared inclusions — one calm line under both cards */
.pay-incl {
  position: relative; z-index: 1; margin: 28px auto 0; width: fit-content; max-width: 100%;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 18px;
  padding: 0;
}
.pay-incl li { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--fg); }
.pay-incl-label { color: var(--fg-muted); }

/* payment trust strip (pricing) */
.pay-trust { position: relative; z-index: 1; margin: 30px auto 0; text-align: center; }
.pay-secure {
  margin: 0; display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--fg);
}
.pay-secure svg { color: var(--accent); }
.pay-cards {
  margin: 16px 0 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px;
}
.pay-cards img {
  height: 30px; width: auto; display: block; border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,18,12,.35); background: #fff;
}
.pay-note { margin: 16px 0 0; font-size: 12.5px; color: var(--fg-faint); }

/* "secure payment" line — now a quiet mono label in the footer base bar */
.footer-pay-secure {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--fg-muted); font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.footer-pay-secure svg { color: var(--accent); }

/* =============================================================
   11 · FAQ
   ============================================================= */
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: flex-start; }
.faq-aside { position: sticky; top: 100px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span:first-child {
  margin: 0; font-size: 18px; color: var(--fg); font-weight: 500;
  letter-spacing: -0.015em; line-height: 1.35; flex: 1;
}
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--border-strong); color: var(--fg-muted);
  display: flex; align-items: center; justify-content: center; position: relative;
  transition: all 150ms;
}
.faq-toggle::before, .faq-toggle::after {
  content: ''; position: absolute; background: currentColor; border-radius: 2px;
}
.faq-toggle::before { width: 12px; height: 2px; }
.faq-toggle::after { width: 2px; height: 12px; transition: transform 200ms; }
.faq-item[open] .faq-toggle { background: var(--accent); border-color: transparent; color: var(--accent-on); }
.faq-item[open] .faq-toggle::after { transform: rotate(90deg); opacity: 0; }
.faq-item p { margin: 14px 0 0; font-size: 14px; color: var(--fg-muted); line-height: 1.6; letter-spacing: -0.005em; max-width: 540px; }

/* =============================================================
   12 · FINAL CTA
   ============================================================= */
.final-cta { overflow: hidden; }
.final-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(206,220,0,.10), transparent 60%);
  pointer-events: none; z-index: 0;
}
.final-card {
  position: relative; z-index: 1; padding: 64px 72px;
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--wp-radius-2xl);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
  overflow: hidden;
}
.final-blob {
  position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(206,220,0,.18), transparent 60%); pointer-events: none;
}
.final-copy { position: relative; z-index: 1; }
.final-h2 { font-size: 56px; margin: 0; color: var(--fg); line-height: 1; letter-spacing: -0.03em; }
.final-sub { margin: 20px 0 0; font-size: 16px; color: var(--fg-muted); line-height: 1.55; max-width: 420px; }
.final-action { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.final-meta { font-size: 12px; color: var(--fg-faint); font-family: var(--font-mono); letter-spacing: 0.04em; margin-top: 8px; }

/* contact form (replaces the old download CTA in the closing section) */
.contact-mail {
  margin-top: 24px; display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 14px; color: var(--accent);
  transition: filter 150ms var(--wp-ease);
}
.contact-mail:hover { filter: brightness(1.12); }
.contact-form { position: relative; z-index: 1; width: 100%; display: flex; flex-direction: column; gap: 10px; }
.cf-input {
  width: 100%; padding: 13px 16px; font-family: var(--font-sans); font-size: 14px;
  color: var(--fg); background: var(--bg); border: 1px solid var(--border-strong);
  border-radius: var(--wp-radius-md); outline: none;
  transition: border-color 150ms var(--wp-ease), box-shadow 150ms var(--wp-ease);
}
.cf-input::placeholder { color: var(--fg-faint); }
.cf-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.cf-textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.cf-submit { align-self: flex-start; margin-top: 2px; height: 44px; padding: 0 22px; }
.cf-submit[disabled] { opacity: .6; cursor: progress; }
.cf-status { margin: 4px 0 0; font-size: 13px; line-height: 1.4; color: var(--fg-muted); }
.cf-status.is-ok { color: var(--accent); }
.cf-status.is-err { color: var(--danger); }
/* honeypot — hidden from humans, bots fill it and get silently dropped */
.cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* topbar download CTA — icon adapts to the visitor's OS */
/* matches the hero button at every size: solid citron fill, deep-green label */
[data-nav-dl] {
  gap: 7px;
  background: var(--accent); color: var(--accent-on);
  box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, 0 2px 0 var(--accent-deep);
}
[data-nav-dl]:hover { background: var(--accent); filter: brightness(1.04); }
[data-nav-dl] .nav-dl-label { color: var(--accent-on); }
[data-nav-dl] .nav-dl-ico { width: 15px; height: 15px; color: var(--accent-on); fill: var(--accent-on); }
[data-nav-dl] .nav-dl-ico * { fill: var(--accent-on); }

/* =============================================================
   13 · FOOTER
   ============================================================= */
.footer { padding: 64px 0 40px; }
/* brand block on the left, link columns grouped on the right */
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 2fr; gap: 56px;
  padding-bottom: 36px; border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer-tagline { margin: 0; font-size: 13px; color: var(--fg-muted); line-height: 1.55; max-width: 300px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-title { font-size: 11px; color: var(--fg-faint); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--fg-muted); transition: color 150ms var(--wp-ease); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 12px; color: var(--fg-faint); font-family: var(--font-mono); letter-spacing: 0.04em;
}
.footer-status { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--fg-faint); font-family: var(--font-mono); letter-spacing: 0.04em; }
.footer-status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }
.footer-heart { font-size: 12px; line-height: 1; margin: 0 1px; }

/* =============================================================
   HERO · brew install line (dev signal + low-friction install)
   ============================================================= */
/* the whole line is a copy button — bare, no chrome until you hover */
.brew-line {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 4px; border: none; background: transparent;
  max-width: 100%; cursor: pointer; position: relative;
  transition: opacity 150ms var(--wp-ease);
}
.brew-line code {
  font-family: var(--font-mono); font-size: 13px; color: var(--fg);
  letter-spacing: 0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color 150ms var(--wp-ease);
}
.brew-prompt { color: var(--accent); margin-right: 6px; }
.brew-line:hover code { color: var(--accent); }

/* "Copié" badge — absolutely placed so it never shifts the command's centring */
.brew-feedback {
  position: absolute; left: calc(100% + 4px); top: 50%;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  color: var(--accent-on); background: var(--accent);
  padding: 2px 9px; border-radius: 999px; white-space: nowrap;
  opacity: 0; transform: translateY(-50%) translateX(-4px) scale(.9);
  transition: opacity 160ms var(--wp-ease), transform 160ms var(--wp-ease);
  pointer-events: none;
}
.brew-line.copied .brew-feedback { opacity: 1; transform: translateY(-50%) translateX(0) scale(1); }
.brew-line.copied code { color: var(--fg-muted); }

/* =============================================================
   HOW IT WORKS · animated step visuals
   ============================================================= */
/* 02 — scrolling live waveform */
.visual-wave-col { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.vwave-bars {
  position: relative; width: 132px; height: 60px; overflow: hidden;
  display: flex; align-items: center;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 14%, #000 86%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 14%, #000 86%, transparent);
}
.vwave-track { display: flex; align-items: center; gap: 3px; height: 100%; will-change: transform; }
.vwave-track span { width: 4px; border-radius: 2px; background: var(--accent); flex: none; opacity: 0.85; }
.vwave-meta {
  font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 7px;
}
.rec-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--danger); display: inline-block; }

/* 03 — typing into an input */
.type-out { white-space: pre-wrap; }
.type-caret, .mock-caret { color: var(--accent); margin-left: 1px; font-weight: 400; }
.vtext-meta .ts-listening, .vtext-meta .ts-done {
  display: inline-flex; align-items: center; gap: 6px;
}
.vtext-meta .ts-done { display: none; }
.vtext-meta.is-done .ts-listening { display: none; }
.vtext-meta.is-done .ts-done { display: inline-flex; }

@media (prefers-reduced-motion: no-preference) {
  /* only the ACTIVE step animates; the others are paused */
  .step.is-active .kcap-svg { animation: keyPress 2.6s var(--wp-ease) infinite; }
  .step.is-active .visual-key::after { animation: keyRipple 2.6s var(--wp-ease) infinite; }
  .step.is-active .vwave-track { animation: waveScroll 3.4s linear infinite reverse; } /* scroll the other way */
  .step.is-active .vwave-mic { animation: micPulse 1.6s var(--wp-ease) infinite; }
  .step.is-active .rec-dot { animation: recBlink 1.1s steps(1) infinite; }
  .step.is-active .type-caret, .mock-caret { animation: caretBlink 1s steps(1) infinite; }
  .vtext-meta.is-done .ts-done { animation: pop 280ms var(--wp-ease); }
}

/* ripple = a shockwave ellipse on the ground, flattened to the iso plane */
.visual-key::after {
  content: ''; position: absolute; left: 50%; top: 58%;
  width: 124px; height: 62px; margin-left: -62px; border-radius: 50%;
  border: 2px solid var(--accent); opacity: 0; pointer-events: none;
}
/* press = the cap dips straight down (reads as a key being pushed) */
@keyframes keyPress {
  0%, 62%, 88%, 100% { transform: translateY(0); }
  72%, 80% { transform: translateY(8px); }
}
@keyframes keyRipple {
  0%, 64% { opacity: 0; transform: scale(.6); }
  74% { opacity: .5; transform: scale(.82); }
  100% { opacity: 0; transform: scale(1.18); }
}
@keyframes waveScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes micPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(206,220,0,.12), 0 8px 24px rgba(206,220,0,.30); }
  50%      { box-shadow: 0 0 0 11px rgba(206,220,0,.05), 0 8px 28px rgba(206,220,0,.42); }
}
@keyframes recBlink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0.25; } }
@keyframes caretBlink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
@keyframes pop { from { transform: scale(.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* =============================================================
   USE CASES · contextual mockups
   ============================================================= */
.usecase-mock {
  background: var(--bg); border: 1px solid var(--border-strong);
  border-radius: var(--wp-radius-md); overflow: hidden; box-shadow: var(--shadow-md);
}
.mock-bar {
  height: 30px; display: flex; align-items: center; gap: 9px; padding: 0 12px;
  background: var(--bg-elev-2); border-bottom: 1px solid var(--border);
}
.mock-dots { display: flex; gap: 5px; }
.mock-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--fg-faint); display: block; opacity: .6; }
.mock-title { font-family: var(--font-mono); font-size: 10px; color: var(--fg-muted); letter-spacing: 0.02em; }
.mock-body {
  position: relative; padding: 14px 14px 40px; min-height: 104px;
  display: flex; flex-direction: column; gap: 8px;
}
.mock-line { height: 7px; border-radius: 4px; background: var(--border-strong); width: 100%; }
.mock-line.short { width: 52%; }
.mock-text { font-size: 12px; color: var(--fg); line-height: 1.45; letter-spacing: -0.005em; }
.mock-hud {
  position: absolute; bottom: 10px; right: 10px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 4px 11px 4px 8px; border-radius: 999px;
  background: var(--accent); color: var(--accent-on);
  font-size: 10px; font-weight: 600; letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(206,220,0,.35);
}
.mh-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-on); }
.mh-bars { display: flex; align-items: center; gap: 1.5px; height: 11px; }
.mh-bars i { width: 1.5px; border-radius: 1px; background: var(--accent-on); display: block; }
.mh-bars i:nth-child(1) { height: 4px; } .mh-bars i:nth-child(2) { height: 8px; }
.mh-bars i:nth-child(3) { height: 5px; } .mh-bars i:nth-child(4) { height: 10px; }
.mh-bars i:nth-child(5) { height: 6px; }

/* Dev variant — terminal */
.mock-term .mock-body { font-family: var(--font-mono); font-size: 11px; gap: 5px; line-height: 1.5; }
.term-line { color: var(--fg-muted); }
.term-path { color: var(--accent-soft); }
.term-branch { color: var(--fg-faint); }
.term-prompt { color: var(--accent); }
.term-dictated { color: var(--accent); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
  .section-h2 { font-size: 52px; }
  .hero-h1 { font-size: 68px; }
  .stat-n, .price-num { font-size: 64px; }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  /* Mobile topbar: just the wordmark + the (already filled) CTA */
  .lang-toggle { display: none; }
  .hero-grid { gap: 36px; padding-top: 36px; }
  .hero-h1 { font-size: 56px; }
  .hero-canvas { opacity: 0.6; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .stat { padding: 8px 24px; }
  .stat:nth-child(3) { border-left: none; }
  .grid-3, .features, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .privacy-grid, .pay-grid, .faq-grid, .final-card { grid-template-columns: 1fr; gap: 40px; }
  .faq-aside { position: static; }
  /* the marquee keeps running on mobile (full-bleed) — just shrink the tiles a touch */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .logo-strip { flex-direction: column; align-items: flex-start; }
  .logo-strip-names { flex-wrap: wrap; justify-content: flex-start; }
  .comp-table { overflow-x: auto; }
  .comp-row { min-width: 640px; }
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .nav { margin: 0 14px; }
  .section-h2 { font-size: 40px; }
  .hero-h1 { font-size: 44px; }
  /* Give the background animation room to breathe, then drop the copy below it */
  .hero { min-height: 64vh; }
  .hero-grid { padding-top: 15vh; gap: 28px; }
  .hero-canvas { opacity: 0.5; }
  .hero-badge { display: none; }
  .hero-sub { font-size: 16px; margin-top: 20px; }
  /* The download CTA isn't actionable from a phone — sit it lower, less prominent */
  .hero-cta { margin-top: 44px; }
  .stat-n { font-size: 46px; }
  .grid-2, .grid-3, .features, .reviews-grid { grid-template-columns: 1fr; }
  /* Stats stay a 2×2 square on phone — not a single tall column */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .stat { border-left: none !important; padding: 4px 14px; }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .app-tile { width: 80px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .dl-main { font-size: 15px; padding: 0 14px 0 18px; }
  .dl-menu { min-width: 0; }
  .final-card { padding: 40px 28px; }
  .final-h2 { font-size: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .reassurance { flex-direction: column; align-items: flex-start; }
  .reassurance .sep { display: none; }
}

/* "Un geste, pas plus." — below desktop the 3-up grid wrapped onto two lines.
   Instead keep all three on ONE row as a focus stepper: the active step expands
   to show its full content, the inactive ones shrink down to make room. */
@media (max-width: 900px) {
  .how-steps {
    display: flex; align-items: flex-start; gap: 10px;
    grid-template-columns: none;          /* override .grid-3 */
  }
  .how-steps .step {
    flex: 0.8 1 0; min-width: 0; padding: 0 4px; gap: 14px;
    opacity: 0.45; transform: none;
    transition: flex 0.5s var(--wp-ease), opacity 0.5s var(--wp-ease);
  }
  .how-steps .step.is-active { flex: 2 1 0; opacity: 1; transform: none; }

  /* compact the visuals; inactive ones shrink right down */
  .step-visual { min-height: 116px; }
  .how-steps .step:not(.is-active) .step-visual { transform: scale(0.6); }
  .step-title { font-size: 16px; line-height: 1.15; }
  .how-steps .step.is-active .step-title { font-size: 22px; }
  /* only the active step keeps its description — frees space for the others */
  .how-steps .step:not(.is-active) .step-sub { display: none; }
  .step-sub { font-size: 12.5px; max-width: none; }
}

@media (max-width: 768px) {
  .how-timeline { max-width: 360px; margin: 4px auto 28px; gap: 6px; }
  .ht { min-width: 0; }
  .ht-label { font-size: 16px; }
  .ht-dot { width: 30px; height: 30px; }
  .ht-line { top: 14px; }
}

@media (max-width: 540px) {
  .step-visual { min-height: 96px; }
  .step-title { font-size: 13px; }
  .how-steps .step.is-active .step-title { font-size: 18px; }
  .how-steps .step:not(.is-active) .step-visual { transform: scale(0.5); }
  .step-sub { font-size: 12px; }
}

/* =============================================================
   LEGAL PAGES — privacy.html / terms.html
   ============================================================= */
.legal-nav { position: sticky; top: 0; z-index: 50; background: rgba(13,46,37,.82); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.legal-nav-row { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.legal-nav .wordmark-svg { height: 30px; }
.legal-nav-right { display: flex; align-items: center; gap: 18px; }
.legal-back { font-size: 14px; color: var(--fg-muted); display: inline-flex; align-items: center; gap: 6px; transition: color 150ms var(--wp-ease); }
.legal-back:hover { color: var(--accent); }

.legal-main { max-width: 760px; padding-top: 64px; padding-bottom: 96px; }
.legal-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.legal-h1 { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 56px; line-height: 1.02; letter-spacing: -0.025em; color: var(--fg); margin: 14px 0 0; }
.legal-updated { margin: 18px 0 0; font-size: 13px; color: var(--fg-faint); font-family: var(--font-mono); letter-spacing: 0.02em; }
.legal-intro { margin: 28px 0 0; font-size: 17px; line-height: 1.6; color: var(--fg-muted); }
.legal-intro strong { color: var(--fg); font-weight: 600; }

/* highlighted lead box — the "one principle" callout */
.legal-callout {
  margin: 32px 0 0; padding: 22px 24px; border-radius: var(--wp-radius-lg);
  background: var(--accent-tint); border: 1px solid rgba(206,220,0,.25);
  font-size: 15.5px; line-height: 1.55; color: var(--fg);
}
.legal-callout strong { color: var(--accent); }

.legal-section { margin-top: 44px; scroll-margin-top: 88px; }
.legal-section h2 {
  font-size: 13px; font-weight: 700; font-family: var(--font-mono); letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent-soft); margin: 0 0 4px;
}
.legal-section h2 .legal-num { color: var(--fg-faint); margin-right: 10px; }
.legal-section h3 { font-size: 18px; font-weight: 600; color: var(--fg); margin: 24px 0 0; letter-spacing: -0.01em; }
.legal-section p { margin: 14px 0 0; font-size: 15px; line-height: 1.65; color: var(--fg-muted); }
.legal-section p strong, .legal-section li strong { color: var(--fg); font-weight: 600; }
.legal-section a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(206,220,0,.4); }
.legal-section ul { margin: 14px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.legal-section ul li { position: relative; padding-left: 22px; font-size: 15px; line-height: 1.6; color: var(--fg-muted); }
.legal-section ul li::before { content: ''; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.legal-section ul.legal-plain li { padding-left: 0; }
.legal-section ul.legal-plain li::before { display: none; }

.legal-divider { height: 1px; background: var(--border); border: 0; margin: 44px 0 0; }

/* mentions légales / definitions: compact key–value rows */
.legal-defs { margin: 14px 0 0; display: grid; grid-template-columns: max-content 1fr; gap: 8px 24px; }
.legal-defs dt { font-size: 14px; color: var(--fg); font-weight: 600; }
.legal-defs dd { margin: 0; font-size: 14px; color: var(--fg-muted); line-height: 1.55; }

.legal-foot { margin-top: 72px; padding-top: 28px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--fg-faint); font-family: var(--font-mono); letter-spacing: 0.03em; }
.legal-foot a { color: var(--fg-muted); }
.legal-foot a:hover { color: var(--accent); }

@media (max-width: 600px) {
  .legal-h1 { font-size: 40px; }
  .legal-main { padding-top: 44px; padding-bottom: 72px; }
  .legal-defs { grid-template-columns: 1fr; gap: 2px 0; }
  .legal-defs dd { margin-bottom: 12px; }
}

