/* ───────────── Fonts (self-hosted, latin subset) ───────────── */
@font-face { font-family: 'Geist'; font-style: normal; font-weight: 400; font-display: swap; src: url('assets/fonts/Geist-400.woff2') format('woff2'); }
@font-face { font-family: 'Geist'; font-style: normal; font-weight: 500; font-display: swap; src: url('assets/fonts/Geist-500.woff2') format('woff2'); }
@font-face { font-family: 'Geist'; font-style: normal; font-weight: 600; font-display: swap; src: url('assets/fonts/Geist-600.woff2') format('woff2'); }
@font-face { font-family: 'Geist'; font-style: normal; font-weight: 700; font-display: swap; src: url('assets/fonts/Geist-700.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 300; font-display: swap; src: url('assets/fonts/JetBrainsMono-300.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url('assets/fonts/JetBrainsMono-400.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url('assets/fonts/JetBrainsMono-500.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 600; font-display: swap; src: url('assets/fonts/JetBrainsMono-600.woff2') format('woff2'); }

/* ───────────── Tokens ───────────── */
:root {
  --bg-0: #07070a;
  --bg-1: #0b0b10;
  --line: rgba(255,255,255,0.10);
  --line-soft: rgba(255,255,255,0.05);
  --text-primary: #f4f4f7;
  --text-body: #d8d8de;
  --text-muted: #8a8a95;
  --text-soft: #6a6a74;
  --text-caption: #55555f;
  --accent: #ff3d4f;
  --matrix: #39ff7a;
  --matrix-soft: #b9f7c9;
  --pill-bg: #050507;
  --sans: 'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

/* Page scale is driven by JS (see app.js) so it depends purely on the
   physical viewport width and ignores the browser's Cmd +/- level.
   Baseline is 1.25× of the prior design (1645px → 1316px divisor). */
html {
  zoom: 1;
}
body {
  background: var(--bg-0);
  color: var(--text-body);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
/* Landing is a single-screen page. We use the body as a flex column so
   the hero takes the remaining viewport height and vertically centres its
   inner block — no overflow, no fixed elements. */
body.page-landing {
  display: flex; flex-direction: column;
  height: 100vh;
  min-height: 0;
  overflow: hidden;
}
body.page-landing .hero { flex: 1 1 auto; }
body.page-landing.is-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
img { display: block; max-width: 100%; }
::selection { background: rgba(255,61,79,0.4); color: #fff; }

/* Background: static GPU-cheap radial glows + subtle grid */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1100px 800px at 85% 15%, rgba(70,40,140,0.12), transparent 70%),
    radial-gradient(900px 900px at 30% 85%, rgba(28,42,90,0.16), transparent 70%),
    var(--bg-0);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: 0.6;
}

.bg-blob {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}
/* Green pushed ~150px further up-left, blue ~150px further down-right,
   so the two glows don't meet in the middle. Offset baked into keyframes
   because `animation` overrides any static `transform`. */
.bg-blob-green {
  top: -25%; left: -20%;
  width: 1400px; height: 1100px;
  animation: drift-green 9s ease-in-out infinite alternate;
}
.bg-blob-blue {
  bottom: -25%; right: -20%;
  width: 1500px; height: 1200px;
  animation: drift-blue 7.5s ease-in-out infinite alternate;
}
@keyframes drift-green {
  0%   { transform: translate(calc(-4vw - 150px), calc(-2vh - 150px)); }
  50%  { transform: translate(calc( 2vw - 150px), calc( 4vh - 150px)); }
  100% { transform: translate(calc( 5vw - 150px), calc( 1vh - 150px)); }
}
@keyframes drift-blue {
  0%   { transform: translate(calc( 4vw + 150px), calc( 2vh + 150px)); }
  50%  { transform: translate(calc(-2vw + 150px), calc(-4vh + 150px)); }
  100% { transform: translate(calc(-5vw + 150px), calc(-1vh + 150px)); }
}

.bg-blob-fill {
  position: absolute; inset: 0;
  border-radius: 50%;
  filter: blur(12px);
  transform: scale(calc(0.88 + var(--speech, 0) * 0.38));
  transform-origin: center;
  transition:
    transform 140ms cubic-bezier(.2,.7,.2,1),
    opacity 400ms ease;
  opacity: calc(0.5 + var(--speech, 0) * 0.35);
  will-change: transform, opacity;
}
.bg-blob-green .bg-blob-fill {
  background: radial-gradient(circle, rgba(57,255,122,0.20), transparent 70%);
}
/* Blue reacts more aggressively to --speech while the user is talking —
   both in size and brightness — to give the mid-recording "wobble". */
.bg-blob-blue  .bg-blob-fill {
  background: radial-gradient(circle, rgba(56,148,220,0.28), transparent 70%);
  transform: scale(calc(0.85 + var(--speech, 0) * 0.75));
  opacity: calc(0.45 + var(--speech, 0) * 0.7);
}

.nav, .hero, .bottom-stack { position: relative; z-index: 1; }

/* ───────────── Header ───────────── */
.nav {
  padding: 20px 48px 0;
  background: transparent;
  position: sticky; top: 0; z-index: 50;
  transition: background 0.24s ease, border-color 0.24s ease, backdrop-filter 0.24s ease;
}
.nav.is-scrolled {
  background: rgba(7,7,10,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1320px; margin: 0 auto;
  padding-bottom: 20px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.brand-mark {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
}
.brand-mark img {
  width: 22px; height: 22px;
  display: block;
  filter: invert(1);
}
.brand-name {
  color: var(--text-primary); font-size: 15px; font-weight: 600;
  letter-spacing: -0.1px;
}
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  padding: 0; margin: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text-primary);
  cursor: pointer;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  transition: background 0.16s ease, border-color 0.16s ease;
}
.nav-burger:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.18); }
.nav-burger span {
  display: block;
  width: 16px; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-link {
  color: var(--text-muted); font-size: 13px; font-weight: 500;
  transition: color 0.18s ease;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link[aria-current="page"] { color: var(--text-primary); }
.nav-back {
  display: inline-flex; align-items: center; gap: 6px;
  margin-right: 26px;
  opacity: 0.85;
}
.nav-back svg { display: block; }
/* ───────────── Hero ───────────── */
.hero {
  display: flex;
  align-items: flex-start; justify-content: center;
  padding: 6vh 48px 24px;
  min-height: 0;
}
.hero-inner {
  width: 100%; max-width: 1320px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 28px; padding-left: 5px;
  justify-content: center;
}
.eyebrow-text {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 2.4px;
  color: var(--text-muted);
  display: inline-flex; align-items: center;
  white-space: nowrap;
}
.eyebrow-dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%;
  background: #5dd47e;
  box-shadow: 0 0 10px #5dd47e;
  margin-right: 10px;
}

.subhead {
  font-size: 28px; line-height: 1.35;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 0 24px;
}
.subhead strong { color: var(--text-primary); font-weight: 600; }

/* Abstract input card */
.input-section {
  width: 100%; max-width: 820px;
  margin: 28px auto 12px;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pill-under {
  margin-top: 24px;
  display: flex; justify-content: center;
  transform: translateY(-16px);
}
.target-row {
  display: inline-flex; align-items: center;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 1.6px;
  color: var(--text-soft);
  text-transform: uppercase;
  margin: 0 auto 14px;
  padding: 0 4px;
}
.target-to { color: var(--text-caption); }
.target-wheel {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
  line-height: 1;
  vertical-align: middle;
}
.target-wheel-inner {
  display: block;
  will-change: transform;
}
.target-cell {
  height: 22px;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.target-badge {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--sans);
  font-size: 12px; font-weight: 700;
  line-height: 1;
  overflow: hidden;
}
.target-badge.is-full img { width: 100%; height: 100%; display: block; }
.target-name {
  color: var(--text-body);
  font-size: 12px; letter-spacing: 0.8px;
  text-transform: none;
}
.input-shell {
  position: relative;
  width: 100%; max-width: 612px; margin: 0 auto;
  background: var(--pill-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 12px 24px;
  box-shadow:
    0 50px 120px -40px rgba(0,0,0,0.85),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex; align-items: center; gap: 14px;
  overflow: clip;
}
.input-field {
  flex: 1;
  /* Field height chosen so total shell (padding 12 + border 1 × 2 + field) = 86px. */
  height: 60px;
  font-size: 21px; line-height: 1.4;
  color: var(--text-primary); font-weight: 400;
  font-family: var(--sans);
  text-align: left;
  word-break: break-word;
  display: flex;
  align-items: center;
  position: relative;
}
.input-line { display: block; width: 100%; }
.input-phrase { display: inline; }
.input-caret-slot { display: inline; white-space: nowrap; }
.input-phrase.is-sending {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  display: flex; align-items: center;
  animation: flyaway 260ms cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes flyaway {
  to { transform: translateY(-28px); opacity: 0; }
}
.send-btn {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 10px;
  background: transparent;
  color: var(--text-soft);
  border: 1px solid var(--line);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: none;
  transform: translateY(0) scale(1);
  transition:
    transform 140ms cubic-bezier(.2,.7,.2,1),
    box-shadow 220ms ease,
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}
.send-btn.is-active {
  background: var(--matrix);
  color: #041208;
  border-color: transparent;
  box-shadow:
    0 6px 18px -6px rgba(57,255,122,0.55),
    0 0 0 1px rgba(57,255,122,0.3),
    0 0 18px rgba(57,255,122,0.28);
}
.send-btn.is-pressed {
  background: #2fe06a;
  color: #031007;
  border-color: transparent;
  transform: translateY(1px) scale(0.92);
  box-shadow:
    0 2px 10px -4px rgba(57,255,122,0.8),
    0 0 0 1px rgba(57,255,122,0.55),
    0 0 28px rgba(57,255,122,0.6);
}
.send-btn.no-anim { transition: none !important; }
.send-btn svg { display: block; transform: translateX(-1px); }
.input-placeholder { color: var(--text-soft); }
.caret {
  display: inline-block; width: 2px; height: 24px;
  background: var(--accent); margin-left: 3px;
  vertical-align: middle;
  animation: blink 1.1s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(255,61,79,0.6);
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* CTAs */
.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-top: 12px;
}
.cta-primary {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 24px;
  background: transparent; color: var(--matrix);
  border: 1px solid rgba(57,255,122,0.45);
  border-radius: 12px; font-size: 17px; font-weight: 600;
  text-shadow: 0 0 14px rgba(57,255,122,0.35);
  transition:
    transform 0.38s cubic-bezier(.2,.7,.2,1),
    background 0.32s ease,
    color 0.32s ease,
    border-color 0.32s ease,
    text-shadow 0.32s ease,
    box-shadow 0.32s ease;
}
.cta-primary:hover {
  transform: translateY(-1px);
  background: var(--matrix);
  color: #04140a;
  border-color: var(--matrix);
  text-shadow: none;
  box-shadow: 0 10px 32px -10px rgba(57,255,122,0.55),
              0 0 28px -4px rgba(57,255,122,0.45);
}
.cta-primary:hover .cta-meta { color: rgba(4,20,10,0.6); }
.cta-primary-gloss { display: none; }
.cta-icon { position: relative; display: block; }
.cta-label, .cta-meta { position: relative; }
.cta-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(57,255,122,0.55);
  font-weight: 500;
}
/* ───────────── Bottom stack (⌘ key + hint) ───────────── */
/* Sits inline under the input inside the hero column — scales as one block
   with the rest of the content so it behaves identically on any display size. */
.bottom-stack {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin-top: 12px;
  padding: 0 22px 4px;
  pointer-events: none;
}
.key-hint {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 1.8px;
  color: var(--text-caption); white-space: nowrap;
  transition: color 220ms ease;
  transform: translateY(12px);
}
.key-hint.is-rec { color: var(--matrix); }
.key-big { font-size: 99px; line-height: 1; }
.pill-caption {
  margin-top: 8px;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 1.8px;
  color: var(--text-soft);
  transition: color 220ms ease;
  white-space: nowrap;
}
.pill-caption.is-rec { color: var(--matrix); }

/* Animated ⌘ key cap */
.key {
  position: relative;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 1.4em; height: 1.4em;
  vertical-align: middle;
}
.key-shadow {
  position: absolute; z-index: 1;
  left: 50%; bottom: 8%;
  width: 0.9em; height: 0.2em;
  transform: translateX(-50%) translateY(8px);
  background: radial-gradient(ellipse, rgba(0,0,0,0.65), transparent 70%);
  filter: blur(4px);
  transition: opacity 160ms ease, transform 160ms cubic-bezier(.2,.7,.2,1);
}
.key-cap {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  width: 1em; height: 1em;
  border-radius: 0.22em;
  font-family: var(--mono);
  font-size: 0.82em; font-weight: 300;
  background: linear-gradient(180deg, #1b1b24 0%, #0f0f16 100%);
  color: var(--text-body);
  text-shadow: 0 1px 0 rgba(0,0,0,0.4);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10),
    0 8px 0 rgba(0,0,0,0.7),
    0 12px 24px rgba(0,0,0,0.55),
    inset 0 2px 0 rgba(255,255,255,0.10);
  transform: translateY(0);
  transition:
    transform 160ms cubic-bezier(.2,.7,.2,1),
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease,
    text-shadow 160ms ease;
}
.key.is-pressed .key-cap {
  background: linear-gradient(180deg, #121218 0%, #09090d 100%);
  color: rgba(216,216,222,0.35);
  text-shadow: 0 1px 0 rgba(0,0,0,0.6);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 2px 0 rgba(0,0,0,0.6),
    inset 0 2px 4px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.02);
  transform: translateY(6px);
}
.key.is-pressed .key-shadow {
  opacity: 0.35;
  transform: translateX(-50%) translateY(2px) scaleX(0.92);
}

/* HUD pill (port of HUDPillView.swift) */
.hud-pill-wrap { position: relative; display: inline-flex; }
.hud-pill {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px 8px 12px; height: 38px; border-radius: 19px;
  background: var(--pill-bg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.hud-dot-wrap {
  position: relative; width: 10px; height: 10px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.45; transition: opacity 220ms ease;
}
.hud-pill.is-rec .hud-dot-wrap { opacity: 1; }
.hud-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  position: relative; z-index: 1;
}
.hud-dot-glow {
  position: absolute; inset: -3px; border-radius: 50%;
  background: var(--accent); filter: blur(4px);
  opacity: 0; transition: opacity 220ms ease;
}
.hud-pill.is-rec .hud-dot-glow { opacity: 0.7; }
.hud-bars {
  display: flex; align-items: center; gap: 2px; height: 20px;
}
.hud-bars span {
  display: block; width: 3px; border-radius: 1.5px;
  background: rgba(255,255,255,0.5);
  transition: background 220ms ease;
}
.hud-pill.is-rec .hud-bars span { background: #fff; }

.pulse-ring {
  position: absolute; inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,61,79,0.5);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.85);
}
.hud-pill-wrap.is-rec .pulse-ring {
  opacity: 1;
  animation: pulseRing 1.8s ease-out infinite;
}
.hud-pill-wrap.is-rec .pulse-ring.delay { animation-delay: 0.9s; }
@keyframes pulseRing {
  0%   { transform: scale(0.85); opacity: 0.5; }
  100% { transform: scale(1.6);  opacity: 0;   }
}

/* ───────────── Reveal on load ───────────── */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; animation: rise 0.7s cubic-bezier(.2,.7,.2,1) forwards; }
.d1 { animation-delay: 0.05s; }
.d3 { animation-delay: 0.32s; }
.d4 { animation-delay: 0.48s; }
.d6 { animation-delay: 0.82s; }

/* ───────────── Responsive ───────────── */
/* Below 820px we kill the JS zoom (app.js clamps off) and switch to a
   mobile-first layout. Hamburger menu replaces inline links; the hero
   stacks vertically and the ⌘ key sits inline instead of fixed. */
@media (max-width: 820px) {
  html { zoom: 1 !important; }

  /* Nav + hamburger drawer */
  .nav { padding: 14px 18px 0; position: fixed; top: 0; left: 0; right: 0; }
  .nav-inner { padding-bottom: 14px; gap: 10px; position: relative; }
  .nav-burger { display: inline-flex; order: 3; }
  .nav-links {
    position: fixed;
    top: 62px; left: 12px; right: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(11,11,16,0.94);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    box-shadow: 0 30px 60px -24px rgba(0,0,0,0.75);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    opacity: 0;
    transform: translateY(-6px) scale(0.99);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.22s cubic-bezier(.2,.7,.2,1);
    z-index: 55;
  }
  body.is-menu-open .nav-links {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .nav-links .nav-link {
    font-size: 15px;
    padding: 12px 14px;
    border-radius: 8px;
    text-align: left;
  }
  .nav-links .nav-link:hover { background: rgba(255,255,255,0.045); }
  .nav-back { margin-right: 0; }

  /* Hero is the single viewport; content is a compact column centered in it. */
  .hero {
    padding: 80px 18px 20px;
    align-items: center;
    justify-content: center;
  }
  .subhead {
    font-size: 22px; line-height: 1.35;
    margin: 0 0 24px;
    max-width: 100%;
  }
  .cta-row { margin-top: 4px; }
  .cta-primary, .cta-secondary { padding: 14px 20px; font-size: 15px; }
  .input-section { margin: 28px auto 12px; max-width: 100%; }
  .input-shell { padding: 14px 16px; border-radius: 16px; }
  .input-field { font-size: 16px; height: 64px; }
  .target-row { font-size: 10px; margin-bottom: 10px; }

  /* ⌘ key sits inline under the input, kept large on mobile. */
  .bottom-stack {
    position: static;
    margin-top: 16px;
    padding: 0;
    gap: 6px;
  }
  .key-big { font-size: 104px; }
}
@media (max-width: 820px) {
  /* Readme / privacy long-form pages — clear the fixed nav. */
  .readme-shell { padding-top: 96px !important; padding-bottom: 72px !important; }
  .readme-hero h1 { font-size: clamp(32px, 7vw, 44px) !important; }
  .readme-lead { font-size: 17px !important; }
}
@media (max-width: 520px) {
  .nav { padding: 12px 14px 0; }
  .brand-name { font-size: 14px; }
  .subhead { font-size: 20px; }
  .cta-primary, .cta-secondary { padding: 12px 18px; font-size: 14px; }
  .input-shell { padding: 12px 14px; }
  .input-field { font-size: 15px; height: 60px; }
  .key-big { font-size: 96px; }
  .hero { padding: 72px 14px 16px; }
  .readme-shell { padding-left: 16px !important; padding-right: 16px !important; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; animation: none !important; }
  .ticker-track { animation: none !important; }
  .pulse-ring { animation: none !important; }
  .caret { animation: none !important; }
}
