/* MightyMouse landing V2 — "Small mouse. Great power."
   Self-contained. Palette mirrors THEME_TOKENS (warm neuro) but tuned a touch
   lighter/airier than the V1 page. No build step, one stylesheet. */

:root {
  --bg: rgb(250, 249, 247);
  --bg-2: rgb(252, 251, 249);
  --surface: rgb(255, 255, 255);
  --ink: rgb(32, 30, 28);
  --ink-soft: rgb(64, 60, 56);
  --muted: rgb(128, 122, 115);
  --muted-light: rgb(166, 160, 153);
  --accent: rgb(242, 170, 98);
  --accent-deep: rgb(231, 146, 70);
  --accent-soft: rgb(253, 238, 222);
  --border: rgba(32, 30, 28, 0.08);
  --border-soft: rgba(32, 30, 28, 0.05);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(26, 24, 22, 0.05);
  --shadow-md: 0 14px 40px rgba(26, 24, 22, 0.10);
  --shadow-cta: 0 12px 30px rgba(228, 142, 64, 0.30);
  --maxw: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1000px 560px at 80% 30%, var(--accent-soft) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  background-attachment: fixed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
/* The hero (with its highlight line) fills the first screen, so the footer —
   and even the highlight line — sit below the fold and appear on scroll, on
   both mobile and desktop. Header is ~84px; 100svh handles mobile browser bars. */
main { display: flex; flex-direction: column; }
main > .hero { min-height: calc(100svh - 84px); }
.foot { flex-shrink: 0; }
/* Animated mouse replaces the native cursor across the page. */
body.has-cursor-companion,
body.has-cursor-companion a,
body.has-cursor-companion button,
body.has-cursor-companion input { cursor: none; }

a { color: inherit; text-decoration: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: inherit; font-weight: 600; font-size: 15px; line-height: 1;
  border: 1px solid transparent; border-radius: var(--radius);
  padding: 15px 26px; cursor: pointer; white-space: nowrap;
  transition: transform .1s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  color: #2a1c0c; box-shadow: var(--shadow-cta);
}
.btn-primary:hover { box-shadow: 0 16px 38px rgba(228, 142, 64, 0.40); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.7); color: var(--ink);
  border-color: var(--border); box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { background: #fff; }

/* ── Header ── */
.head {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 26px 40px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  display: block; border-radius: 9px; padding: 4px;
  background: var(--surface); border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}
.brand-name { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.brand-tag {
  font-size: 12px; font-weight: 600; color: var(--muted-light);
  padding-left: 9px; margin-left: 2px; border-left: 1px solid var(--border);
}
.head-cta { padding: 11px 20px; font-size: 14px; }

/* ── Hero ── */
/* Hero = a 2-column grid (.hero-grid) plus a full-width centered highlight line. */
.hero {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center; gap: 40px;
  max-width: var(--maxw); margin: 0 auto; padding: 32px 40px 36px;
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center; gap: clamp(56px, 7vw, 104px);
}
.hero-copy { max-width: 560px; }

h1 {
  font-size: clamp(46px, 6vw, 78px); line-height: 1.0; letter-spacing: -0.03em;
  font-weight: 680; margin-bottom: 22px;
}
h1 .line-1, h1 .line-2 { display: block; }
h1 .line-2 { color: var(--accent-deep); }

.lead {
  font-size: clamp(18px, 1.7vw, 21px); color: var(--muted);
  max-width: 30ch; margin-bottom: 34px;
}

/* feature triplet — one row */
.features { list-style: none; display: flex; gap: clamp(18px, 2.4vw, 34px); flex-wrap: nowrap; margin-bottom: 38px; }
.features li { display: flex; align-items: flex-start; gap: 10px; }
.feat-ic {
  flex-shrink: 0; display: grid; place-items: center;
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--surface); border: 1px solid var(--border-soft);
  color: var(--accent-deep); box-shadow: var(--shadow-sm);
}
.feat-text { display: flex; flex-direction: column; gap: 1px; }
.feat-text strong { font-size: 14.5px; font-weight: 650; color: var(--ink); }
.feat-text em { font-size: 13px; font-style: normal; color: var(--muted-light); }

/* ── Access (single form: platform toggle drives download vs waitlist) ── */
.access { max-width: 480px; margin-bottom: 28px; }
.btn-download { padding: 16px 30px; font-size: 16px; }
.pricing-line { font-size: 13px; color: var(--muted-light); margin-top: 12px; line-height: 1.5; }
.pricing-line[hidden] { display: none; }
.access-lead { font-size: 13px; color: var(--muted-light); margin-bottom: 12px; }
.access-row { display: flex; gap: 10px; }
.access-row[hidden] { display: none; }
.access-email {
  flex: 1; min-width: 0; font: inherit; font-size: 15px;
  padding: 15px 18px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  color: var(--ink); box-shadow: var(--shadow-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.access-email::placeholder { color: var(--muted-light); }
.access-email:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240, 165, 92, 0.18);
}
.access-row .btn-primary { flex-shrink: 0; }

.access-plats { display: flex; gap: 8px; margin-bottom: 16px; }
.plat {
  display: inline-flex; align-items: center; gap: 6px;
  font: inherit; font-size: 13px; font-weight: 600; color: var(--muted);
  padding: 8px 14px; border-radius: var(--radius-pill);
  background: transparent; border: 1px solid var(--border); cursor: pointer;
  transition: all .15s ease;
}
.plat.is-on {
  color: var(--accent-deep); background: var(--accent-soft);
  border-color: transparent;
}
.plat:hover { border-color: var(--accent); }

.access-note {
  font-size: 13px; color: var(--muted-light); margin-top: 14px; line-height: 1.5;
  display: flex; align-items: center; gap: 7px;
}
.access-note:empty { display: none; }
.access-note.is-ok {
  color: var(--accent-deep); font-weight: 600; font-size: 14px;
  animation: access-note-pop .32s cubic-bezier(.34,1.56,.64,1) both;
}
.access-note.is-err { color: rgb(200, 80, 60); font-weight: 600; }
.access-note-icon {
  flex: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-deep); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  animation: access-note-icon-pop .4s cubic-bezier(.34,1.56,.64,1) both .05s;
}

@keyframes access-note-pop {
  from { opacity: 0; transform: translateY(-2px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes access-note-icon-pop {
  from { opacity: 0; transform: scale(.4); }
  to { opacity: 1; transform: scale(1); }
}

/* ── Hero visual ── */
.hero-visual {
  position: relative; min-height: 540px;
  display: grid; place-items: center;
}
.hero-img {
  position: relative; z-index: 2;
  width: min(108%, 660px); aspect-ratio: 1 / 1;
  display: grid; place-items: center;
}
.hero-img img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 26px 44px rgba(32,30,28,0.12));
  animation: hero-bob 7s ease-in-out infinite;
}
.hero-img-fallback { display: none; font-size: 120px; }
/* When the real image is missing, show a soft placeholder + the fallback mouse. */
.hero-img.is-placeholder {
  background: radial-gradient(closest-side, rgba(242,170,98,0.16), transparent 70%);
  border: 1px dashed var(--border); border-radius: var(--radius-lg);
}
.hero-img.is-placeholder .hero-img-fallback {
  display: block; filter: drop-shadow(0 14px 22px rgba(231,146,70,0.35));
}

@keyframes hero-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ── Highlight line — centered, middot-separated, spans the full hero width.
   Each item keeps its trailing dot attached (.hl is nowrap) so dots never
   orphan at a line break on mobile. ── */
.highlight-line {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px 12px;
  font-size: 14px; font-weight: 500; color: var(--muted);
}
.highlight-line .hl { white-space: nowrap; }
.highlight-line .dot { color: var(--muted-light); margin-left: 8px; }
.highlight-line .works {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); font-weight: 500;
}
.highlight-line .works svg { color: var(--muted); margin-left: 2px; }

/* ── Footer ── */
.foot {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.4);
}
.foot-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  max-width: var(--maxw); margin: 0 auto; padding: 24px 40px; flex-wrap: wrap;
}
.foot-brand { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; color: var(--ink); }
.foot-brand img { border-radius: 5px; }
.foot-brand b { font-weight: 700; }
.foot-links { display: flex; gap: 22px; font-size: 14px; }
.foot-links a { color: var(--muted); transition: color .15s ease; }
.foot-links a:hover { color: var(--ink); }
.foot-copy { font-size: 13px; color: var(--muted-light); }

/* ── Cursor companion overlay ── */
#cursor-trail { position: fixed; inset: 0; z-index: 9999; pointer-events: none; }

/* ── Responsive ── */
@media (max-width: 940px) {
  .hero { padding: 24px 28px; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-copy { max-width: none; margin: 0 auto; }
  .lead { max-width: none; }
  .features { justify-content: center; }
  .access { margin: 0 auto 28px; }
  .access-plats { justify-content: center; }
  .hero-visual { min-height: 420px; order: -1; }
}
@media (max-width: 560px) {
  .head { padding: 20px; }
  .head-cta { display: none; }
  .btn-download { width: 100%; }
  .access-row { flex-direction: column; }
  .access-row .btn-primary { width: 100%; }
  .features { flex-wrap: wrap; }
  .foot-inner { flex-direction: column; gap: 14px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img img { animation: none; }
  .btn:hover { transform: none; }
}

/* ── Body sections (SEO copy below the hero) ──────────────────────────────
   Redesigned 2026-07-19. Signature move: the hero already put a mouse
   cursor on the page (the canvas trail in v2.js) so the body carries that
   forward literally -- a small cursor-arrow glyph (the same triangular
   shape as the hero's "instant actions" icon) rides every eyebrow label
   and every whisker-thin divider between sections, like it clicked there.
   No numbered badge circles, no icon-card grid with a uniform hover-lift,
   no dark "trust" band with a lock icon -- the three shapes this kind of
   page reaches for by default. Palette, shadow, and radius tokens are the
   hero's; nothing new was invented except two rgb() vars below, both
   derived from --ink so the page still reads as one hand. */

:root {
  --ink-deep: rgb(20, 18, 17);
  --whisker-ink: rgba(32, 30, 28, 0.16);
  /* The recurring signature glyph: a solid cursor-pointer arrow, defined
     ONCE here and reused via mask-image everywhere it appears (whisker
     dividers, eyebrow bullets, feature-card hover corner, step markers).
     Filled (not stroked) so it reads unambiguously as a mouse pointer at
     10-22px, not a lightning bolt / sparkle -- the stroked first-pass
     version was legible only above ~30px and collided with the actual
     sparkle icon used for "Rewrite, ask, or act". */
  --cursor-glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 3l6.5 17 2.2-6.8L21 11z' fill='black'/%3E%3C/svg%3E");
}

.prose-wrap {
  background: var(--bg);
  position: relative;
  z-index: 1;
}

/* ── Whisker divider — a single tapered hairline between sections, with a
   small cursor-arrow "resting" on it partway along. Stands in for the
   generic full-width rule or gradient fade this kind of page reaches for.
   The arrow's position is nudged per-instance via nth-of-type so it never
   reads as a mechanically repeated component. ── */
.whisker {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
  height: 1px;
  position: relative;
}
.whisker::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    transparent 0%, var(--whisker-ink) 18%, var(--whisker-ink) 82%, transparent 100%);
}
.whisker-cursor {
  position: absolute; top: 50%; left: 22%;
  width: 11px; height: 11px;
  transform: translate(-50%, -50%) rotate(-8deg);
  color: var(--muted-light);
  opacity: 0.9;
}
.whisker-cursor::before {
  content: '';
  position: absolute; inset: 0;
  background-color: currentColor;
  -webkit-mask: var(--cursor-glyph) center / contain no-repeat;
  mask: var(--cursor-glyph) center / contain no-repeat;
}
.whisker:nth-of-type(2)  .whisker-cursor { left: 68%; transform: translate(-50%, -50%) rotate(4deg); }
.whisker:nth-of-type(4)  .whisker-cursor { left: 40%; transform: translate(-50%, -50%) rotate(-14deg); }
.whisker:nth-of-type(6)  .whisker-cursor { left: 78%; transform: translate(-50%, -50%) rotate(10deg); }
.whisker:nth-of-type(8)  .whisker-cursor { left: 30%; transform: translate(-50%, -50%) rotate(-4deg); }
.whisker:nth-of-type(10) .whisker-cursor { left: 58%; transform: translate(-50%, -50%) rotate(7deg); }

/* Shared band shell: every section below the hero is a .band, full width,
   with its content clamped to --maxw so it lines up with the header/hero. */
.band {
  padding: clamp(56px, 8vw, 92px) 40px;
}
.band-inner, .speak-inner {
  max-width: var(--maxw);
  margin-inline: auto;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 14px;
}
/* The eyebrow's own bullet is the same cursor-arrow glyph, tiny and static
   -- ties every section label back to the whisker dividers and the hero's
   "instant actions" icon without spelling it out three different ways. */
.eyebrow-cursor {
  flex: none; width: 9px; height: 9px;
  background-color: currentColor;
  -webkit-mask: var(--cursor-glyph) center / contain no-repeat;
  mask: var(--cursor-glyph) center / contain no-repeat;
}
.band > .band-inner > h2, .speak-inner h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 680;
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 20ch;
  margin: 0 0 18px;
}

/* Scroll-reveal: a section's inner block rises + fades up slightly as it
   enters the viewport. Deliberately NOT using fill-mode "backwards"/"both":
   those apply the 0%-opacity keyframe to any element that hasn't yet
   crossed the range, which makes content invisible whenever a tool resizes
   the viewport instead of physically scrolling it (full-page screenshot
   tools, some crawlers). With fill-mode "none" the element just uses its
   own opacity:1 (set below) until the animation is actively in range, so
   content is never hidden -- motion is additive, never load-bearing. */
.reveal { opacity: 1; }
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      animation: reveal-in .7s cubic-bezier(.22,.61,.36,1) none;
      animation-timeline: view();
      animation-range: entry 0% cover 22%;
    }
  }
}
@keyframes reveal-in {
  0%   { opacity: 0.001; transform: translateY(22px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── "Speak to your computer" — the emotional hook. Oversized pull-quote
   lead, plus a mic orb + a taller, denser soundwave that ticks like it's
   actually listening. This is the one place the hero's chip/orb language
   reappears below the fold, so the whole page reads as one design. The
   wave doubles as the section's visual anchor -- no separate illustration
   needed, the motif IS the graphic. ── */
.speak-band {
  padding-top: clamp(48px, 7vw, 76px);
  padding-bottom: clamp(48px, 7vw, 76px);
}
.speak-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}
.speak-copy { max-width: 620px; }
.speak-lead {
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.32;
  font-weight: 560;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 20px;
}
.speak-copy > p:not(.speak-lead) {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 52ch;
}

.speak-visual {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  padding: 36px 20px;
}
.mic-orb {
  position: relative;
  width: 84px; height: 84px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff, var(--accent-soft) 72%);
  color: var(--accent-deep);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.8);
}
.mic-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .mic-ring { animation: mic-pulse 2.8s ease-out infinite; }
  .mic-ring.r2 { animation-delay: 1.4s; }
}
@keyframes mic-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(1.85); opacity: 0; }
}
/* Soundwave: 18 bars with staggered heights that idle-bounce, standing in
   for a live waveform without any audio API. Widened from the first pass
   (10 -> 18 bars) so it reads as a genuine waveform, not a bar chart. */
.wave {
  display: flex; align-items: center; justify-content: center;
  gap: 3.5px; height: 52px;
}
.wave span {
  width: 3.5px; border-radius: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
}
.wave span:nth-child(1)  { height: 8px; }
.wave span:nth-child(2)  { height: 16px; }
.wave span:nth-child(3)  { height: 26px; }
.wave span:nth-child(4)  { height: 14px; }
.wave span:nth-child(5)  { height: 34px; }
.wave span:nth-child(6)  { height: 20px; }
.wave span:nth-child(7)  { height: 44px; }
.wave span:nth-child(8)  { height: 28px; }
.wave span:nth-child(9)  { height: 52px; }
.wave span:nth-child(10) { height: 24px; }
.wave span:nth-child(11) { height: 40px; }
.wave span:nth-child(12) { height: 18px; }
.wave span:nth-child(13) { height: 32px; }
.wave span:nth-child(14) { height: 12px; }
.wave span:nth-child(15) { height: 22px; }
.wave span:nth-child(16) { height: 10px; }
.wave span:nth-child(17) { height: 18px; }
.wave span:nth-child(18) { height: 8px; }
@media (prefers-reduced-motion: no-preference) {
  .wave span {
    animation: wave-bounce 1.7s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.06s);
  }
}
.wave span:nth-child(1)  { --i: 0; }
.wave span:nth-child(2)  { --i: 1; }
.wave span:nth-child(3)  { --i: 2; }
.wave span:nth-child(4)  { --i: 3; }
.wave span:nth-child(5)  { --i: 4; }
.wave span:nth-child(6)  { --i: 5; }
.wave span:nth-child(7)  { --i: 6; }
.wave span:nth-child(8)  { --i: 7; }
.wave span:nth-child(9)  { --i: 8; }
.wave span:nth-child(10) { --i: 9; }
.wave span:nth-child(11) { --i: 10; }
.wave span:nth-child(12) { --i: 11; }
.wave span:nth-child(13) { --i: 12; }
.wave span:nth-child(14) { --i: 13; }
.wave span:nth-child(15) { --i: 14; }
.wave span:nth-child(16) { --i: 15; }
.wave span:nth-child(17) { --i: 16; }
.wave span:nth-child(18) { --i: 17; }
@keyframes wave-bounce {
  0%, 100% { transform: scaleY(0.4); opacity: 0.55; }
  50%      { transform: scaleY(1);   opacity: 1; }
}
.wave-caption {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--muted-light);
}

/* ── "Six things it does well" — deliberately NOT an evenly-spaced 3x2 icon
   grid where every card looks the same weight. Feature 1 (voice, the #1
   value prop, already covered above) and feature 3 (rewrite/ask/act, the
   core interaction) run wide across two columns with their icon set beside
   the text like a spec sheet row; the other four sit in a tighter 2x2
   underneath. Reading order still puts the two headline features first. ── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 8px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  container-type: inline-size;
  background: var(--surface);
  padding: 26px 32px;
  display: flex; align-items: flex-start; gap: 22px;
  transition: background .2s ease;
  position: relative;
}
/* Row content stays a single readable measure instead of stretching the
   paragraph's max-width across a mostly-empty 1200px row -- the number
   sits at the far right of the same row, like a spec sheet's right-hand
   column, so the extra width does something instead of just sitting blank. */
.feature-card-inner {
  display: flex; align-items: flex-start; gap: 22px;
  flex: 1; min-width: 0; max-width: 640px;
}
.feature-card-n {
  flex: none;
  margin-left: auto;
  align-self: center;
  font-size: 13px; font-weight: 700; color: var(--muted-light);
  letter-spacing: 0.02em;
}
.feature-card:hover { background: var(--bg-2); }
/* A stray cursor-arrow appears at the card's corner on hover, as if it just
   clicked the card -- the one micro-interaction unique to this grid. */
.feature-card::after {
  content: '';
  position: absolute; top: 16px; right: 16px;
  width: 13px; height: 13px;
  background-color: var(--accent-deep);
  -webkit-mask: var(--cursor-glyph) center / contain no-repeat;
  mask: var(--cursor-glyph) center / contain no-repeat;
  opacity: 0;
  transform: translate(-4px, 4px) scale(0.6);
  transition: opacity .18s ease, transform .18s ease;
}
.feature-card:hover::after { opacity: 1; transform: translate(0, 0) scale(1); }
/* Every card is a full-width row -- a spec-sheet list, not a 2-up grid.
   The first pass spanned cards 1 + 3 across both columns while leaving
   2, 5, 6 at half width; because 2 and 5 had no row partner, their other
   grid cell rendered as an empty gray rectangle (a real layout bug, not
   intentional whitespace). A single column of rows also fits the copy
   better: these are short paragraphs, not icon-first cards, so reading
   them as a sequential list beats a scanning grid. */
.feature-ic {
  flex: none;
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent-deep);
}
.feature-card h3 {
  font-size: 16.5px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 6px;
}
.feature-card p {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--muted);
  margin: 0;
  max-width: 46ch;
}

/* ── "How it works" — a hand-drawn-feeling dashed path connects four stops,
   each marked by the cursor glyph itself (not a numeric badge in a circle,
   the generic 01/02/03 device) rotated to face the next stop, like it's
   mid-drag along the row. The step number lives as a small caption instead,
   quiet and out of the way. ── */
.how-lead {
  font-size: 15.5px; color: var(--muted); max-width: 52ch;
  margin: 0 0 40px;
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 20px; left: calc(12.5% - 1px); right: calc(12.5% - 1px);
  height: 0;
  border-top: 1.5px dashed var(--border);
}
.step {
  position: relative;
  padding: 0 22px 0 0;
}
.step:last-child { padding-right: 0; }
/* Each stop is a filled accent-soft disc sitting ON the dashed line (not
   floating above it), with the cursor glyph inside like it clicked there.
   The disc gives the glyph a clear anchor -- the first pass had a bare
   13px icon hovering over the line with nothing tying the two together,
   which read as a stray mark rather than a stepper. */
.step-num {
  position: relative; z-index: 1;
  display: grid; place-items: center;
  width: 40px; height: 40px; margin-bottom: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--surface);
  box-shadow: 0 0 0 4px var(--bg);
}
.step-num::before {
  content: '';
  width: 15px; height: 15px;
  background-color: var(--accent-deep);
  -webkit-mask: var(--cursor-glyph) center / contain no-repeat;
  mask: var(--cursor-glyph) center / contain no-repeat;
}
.step-num::after {
  content: attr(data-n);
  position: absolute; left: 48px; top: 50%;
  transform: translateY(-50%);
  font-size: 11px; font-weight: 700; color: var(--muted-light);
  letter-spacing: 0.02em;
}
.step:nth-child(2) .step-num::before { transform: rotate(20deg); }
.step:nth-child(3) .step-num::before { transform: rotate(-10deg); }
.step:nth-child(4) .step-num::before { transform: rotate(35deg); }
.step-body strong {
  display: block;
  font-size: 15.5px; font-weight: 650; color: var(--ink);
  margin-bottom: 6px;
}
.step-body p {
  font-size: 14px; line-height: 1.6; color: var(--muted);
  margin: 0;
}

/* ── "Private by design" — the one darker, calmer moment on the page. A
   deep ink band (not a new hue -- var(--ink) itself) with a soft peach glow.
   Kept centered/symmetric on purpose: this is the one section that should
   feel still rather than playful, a held breath partway down the page. ── */
.privacy-band {
  position: relative;
  background: var(--ink-deep);
  color: rgba(250, 248, 245, 0.92);
  overflow: hidden;
}
.privacy-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(680px 420px at 15% 0%, rgba(242, 170, 98, 0.16), transparent 60%),
    radial-gradient(520px 360px at 100% 100%, rgba(242, 170, 98, 0.10), transparent 60%);
  pointer-events: none;
}
.privacy-band .band-inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  max-width: 720px;
}
.privacy-ic {
  display: grid; place-items: center;
  width: 50px; height: 50px; margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent);
}
.eyebrow-dark { color: var(--accent); }
.privacy-band .band-inner > h2 { color: #fff; max-width: none; }
.privacy-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
  margin-top: 8px;
}
.privacy-cols p {
  font-size: 15.5px; line-height: 1.7;
  color: rgba(250, 248, 245, 0.72);
  margin: 0;
}

/* ── "Common questions" — accordion. Keeps h3s (crawlable) inside <summary>,
   custom chevron rotates open. Answers stay in the DOM either way, this is
   purely an interaction / density choice for 7 Q&As. The open item's rule
   picks up the accent color, a small tell that ties back to the page's one
   accent instead of a generic gray-everywhere accordion. ── */
.faq-list {
  max-width: 760px;
  margin: 8px auto 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border-soft);
}
.faq-item {
  border-bottom: 1px solid var(--border-soft);
  transition: border-color .2s ease;
}
.faq-item[open] { border-bottom-color: var(--accent); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  font-size: 16.5px; font-weight: 620;
  color: var(--ink);
  margin: 0;
}
.faq-chevron {
  flex: none;
  display: grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  transition: transform .22s ease, background .22s ease;
}
.faq-chevron::before {
  content: '';
  width: 9px; height: 9px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform .22s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item p {
  font-size: 15px; line-height: 1.68;
  color: var(--muted);
  margin: 0 4px 22px;
  max-width: 62ch;
}
@media (prefers-reduced-motion: no-preference) {
  .faq-item p { animation: faq-fade .22s ease both; }
}
@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Footer, lifted to match — a low, wide accent glow on the horizon
   instead of a flat border-top, so the page doesn't just stop. ── */
.foot {
  background: var(--bg-2);
  border-top: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}
.foot-glow {
  position: absolute; left: 50%; top: -140px;
  width: min(900px, 140%); height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(242,170,98,0.16), transparent 72%);
  pointer-events: none;
}
.foot-inner { position: relative; padding: 44px 40px 36px; align-items: flex-start; }
.foot-brand-col { display: flex; flex-direction: column; gap: 8px; }
.foot-tag { font-size: 13px; color: var(--muted-light); }
.foot-links { flex-wrap: wrap; }

/* ── Responsive ── */
@media (max-width: 940px) {
  .band { padding: 48px 28px; text-align: center; }
  .band > .band-inner > h2, .speak-inner h2 { max-width: none; margin-inline: auto; }
  .eyebrow { justify-content: center; }
  .how-lead { margin-inline: auto; }

  .speak-inner { grid-template-columns: 1fr; text-align: center; }
  .speak-copy { max-width: none; margin-inline: auto; }
  .speak-copy > p:not(.speak-lead) { margin-inline: auto; }

  .feature-card { text-align: left; }
  .feature-card::after { display: none; }

  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
  .steps::before { display: none; }
  .step { text-align: left; padding-right: 12px; }

  .privacy-cols { grid-template-columns: 1fr; text-align: center; }

  .whisker { padding: 0 28px; }

  .foot-inner { flex-direction: column; align-items: center; text-align: center; gap: 22px; }
}

@media (max-width: 560px) {
  .band { padding: 40px 20px; }
  .feature-card { padding: 24px 20px; }
  .steps { grid-template-columns: 1fr; row-gap: 26px; }
  .speak-lead { font-size: clamp(20px, 6vw, 24px); }
  .faq-item summary { padding: 18px 2px; gap: 12px; }
  .wave { height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; animation: none !important; }
  .mic-ring { animation: none; opacity: 0; }
  .wave span { animation: none; }
  .feature-card::after { transition: none; }
  .faq-item p { animation: none; }
}
