/* ─────────────────────────────────────────────────────────────────
   Kudos AI — landing page. Tech-tool register.
   Dark charcoal, Geist typography, purple accent, precise geometry.
   ───────────────────────────────────────────────────────────────── */

:root {
  /* Surfaces */
  --bg:          #0a0a0c;
  --bg-2:        #0f1015;
  --surface:     #131419;
  --surface-2:   #181a20;
  --surface-3:   #1e2028;
  --border:      #23252d;
  --border-2:    #2c2f39;
  --border-hi:   #383b47;

  /* Text */
  --fg:          #e9eaee;
  --fg-2:        #b6b8c1;
  --fg-3:        #7a7d87;
  --fg-4:        #55585f;

  /* Accent — purple that matches the logo, tuned for dark UI */
  --accent:      #a78bfa;
  --accent-hi:   #b8a4ff;
  --accent-dim:  rgba(167, 139, 250, 0.14);
  --accent-glow: rgba(167, 139, 250, 0.28);

  /* Semantic */
  --ok:          #4ade80;
  --warn:        #fbbf24;
  --danger:      #f87171;

  /* Type */
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;

  /* Rhythm */
  --gutter: clamp(20px, 4vw, 40px);
  --stanza: clamp(80px, 12vh, 140px);
  --radius: 10px;
  --radius-sm: 6px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--bg); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── Background grid ─── */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 1200px 800px at 50% 30%, black 20%, transparent 80%);
}

main { position: relative; z-index: 1; }
main > section { padding-block: var(--stanza); }

/* ─── Type scale ─── */
.display {
  font-family: var(--sans);
  font-size: clamp(34px, 6.8vw, 80px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--fg);
  overflow-wrap: break-word;
}
.accent-word {
  color: var(--accent);
  font-weight: 600;
}
.h2 {
  font-family: var(--sans);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 20px;
}
.cell-h3, .closer-h {
  font-family: var(--sans);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 10px;
}
.closer-h {
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.mono-eyebrow, .mono-label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-3);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pulse {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--accent-glow); }
  70% { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.lede {
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 58ch;
}
.section-head { max-width: 1240px; margin: 0 auto 56px; padding-inline: var(--gutter); }
.section-head.centered { text-align: center; }
.section-head.centered .h2 { margin-inline: auto; max-width: 26ch; }
.section-head .mono-eyebrow { margin-bottom: 18px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  min-height: 40px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background 0.12s, border-color 0.12s, color 0.12s, transform 0.06s;
}
.btn:active { transform: translateY(1px); }
.btn-lg {
  font-size: 15px;
  padding: 13px 22px;
  min-height: 48px;
}
.btn-block { width: 100%; }
.btn-primary {
  background: var(--accent);
  color: #0f0c1a;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px transparent, 0 8px 24px -12px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hi);
  border-color: var(--accent-hi);
  box-shadow: 0 0 0 3px var(--accent-dim), 0 12px 28px -12px var(--accent-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-2);
}
.btn-ghost:hover {
  border-color: var(--border-hi);
  background: var(--surface);
}

/* ─── Nav ─── */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklch, var(--bg) 85%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  background: color-mix(in oklch, var(--bg) 96%, transparent);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.brand-mark { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.brand-badge {
  margin-left: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg-3);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: 12px;
  font-size: 14px;
}
.nav-links a {
  color: var(--fg-2);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--fg); }
.nav-actions {
  margin-left: auto;
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav-link-alt {
  color: var(--fg-2);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.nav-link-alt:hover { color: var(--accent); }
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-link-alt { display: none; }
}

/* ─── Hero ─── */
.hero {
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  padding-block: clamp(80px, 10vh, 120px) clamp(60px, 8vh, 100px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
}
.hero-copy { max-width: 640px; min-width: 0; overflow-wrap: break-word; }
.hero-copy .mono-eyebrow { margin-bottom: 24px; }
.hero-copy .lede {
  margin: 26px 0 32px;
  font-size: clamp(16px, 1.3vw, 19px);
  max-width: 52ch;
  overflow-wrap: break-word;
}
.hero-shot-wrap { min-width: 0; }
.hero-ctas {
  display: flex;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.meta-item {}
.meta-num {
  font-family: var(--sans);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1;
}
.meta-unit {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--accent);
  font-weight: 500;
  margin-left: 2px;
}
.meta-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* Hero shot */
.hero-shot-wrap { position: relative; }
.hero-shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow:
    0 0 0 1px var(--border) inset,
    0 40px 80px -30px rgba(0, 0, 0, 0.6),
    0 20px 40px -20px rgba(167, 139, 250, 0.15);
}
.hero-shot-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-hi);
}
.chrome-dots span:nth-child(1) { background: #ff5f57; }
.chrome-dots span:nth-child(2) { background: #febc2e; }
.chrome-dots span:nth-child(3) { background: #28c840; }
.chrome-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: var(--bg);
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-3);
  border: 1px solid var(--border);
}
.hero-shot-img { display: block; width: 100%; height: auto; }
.hero-shot-glow {
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 60%;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, var(--accent-glow), transparent 70%);
  pointer-events: none;
  opacity: 0.4;
}

/* ─── Trust strip ─── */
.trust {
  padding-block: 32px !important;
  border-block: 1px solid var(--border);
  background: var(--bg-2);
}
.trust-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.mono-label {
  color: var(--fg-4);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.trust-list {
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg-2);
}
.trust-list li:nth-child(even) { color: var(--fg-4); }
.trust-more { color: var(--accent) !important; }

/* ─── Bento ─── */
.bento-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(240px, auto);
  gap: 12px;
}
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
}
.cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.cell:hover { border-color: var(--border-hi); }
.cell-lg { grid-column: span 2; grid-row: span 2; }
.cell-wide { grid-column: span 4; }
@media (max-width: 900px) {
  .cell-lg { grid-column: span 2; grid-row: span 1; }
  .cell-wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .cell-lg, .cell-wide { grid-column: span 1; }
}
.cell-head { padding: 28px 28px 20px; }
.cell-head-tight { padding: 24px 28px 8px; }
.cell-head .mono-label { margin-bottom: 14px; }
.cell-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 44ch;
  margin-top: 6px;
}
.cell-visual { flex: 1; padding: 12px 28px 28px; }

/* Terminal visual (in bento) */
.cell-visual-terminal {
  padding: 0 28px 28px;
}
.term {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--fg-2);
  overflow: hidden;
}
.term p { margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.term-ok { color: var(--ok); margin-right: 6px; }
.term-block { color: var(--danger); margin-right: 6px; }
.term-warn { color: var(--warn); font-style: italic; }
.term-star { color: var(--accent); margin-right: 6px; }
.term-verb { color: var(--fg); font-weight: 500; }
.term-arg { color: var(--accent); }
.term-meta { color: var(--fg-4); }
.term-final {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  color: var(--fg);
}
.term-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1.05s steps(2, start) infinite;
}
@keyframes blink { to { opacity: 0; } }

/* Review-gate visual */
.cell-visual-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.btn-mock {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  width: 100%;
  max-width: 320px;
  border: 1px solid;
}
.btn-mock-blocked {
  background: color-mix(in oklch, var(--danger) 8%, var(--bg));
  border-color: color-mix(in oklch, var(--danger) 30%, var(--border));
}
.btn-mock-live {
  background: color-mix(in oklch, var(--accent) 8%, var(--bg));
  border-color: color-mix(in oklch, var(--accent) 32%, var(--border));
}
.mock-cross, .mock-check {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.mock-cross { background: var(--danger); color: var(--bg); }
.mock-check { background: var(--accent); color: var(--bg); }
.btn-mock p { line-height: 1.3; }
.mock-title { font-weight: 600; color: var(--fg); font-size: 14px; }
.mock-sub { font-family: var(--mono); font-size: 11px; color: var(--fg-3); margin-top: 2px; }
.mock-arrow { color: var(--fg-4); font-size: 18px; }

/* Vision visual */
.cell-visual-vision {
  color: var(--accent);
  position: relative;
  min-height: 140px;
  display: flex; align-items: center; justify-content: center;
}
.cell-visual-vision svg {
  width: 100%; height: auto; max-width: 260px;
}
.vision-tag {
  position: absolute;
  bottom: 24px; left: 28px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-3);
  display: inline-flex; align-items: center; gap: 6px;
}
.dot-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

/* LMS tags */
.cell-visual-lms {
  display: flex; flex-wrap: wrap; gap: 6px;
  align-content: flex-start;
}
.lms-tag {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-3);
  background: var(--bg);
}
.lms-tag-active {
  color: var(--accent);
  border-color: color-mix(in oklch, var(--accent) 40%, var(--border));
  background: color-mix(in oklch, var(--accent) 6%, var(--bg));
}

/* Spec pills */
.cell-specs { padding-bottom: 8px; }
.spec-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 28px 24px;
}
.spec-pills li {
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-2);
}

/* ─── How it works · terminal ─── */
.how {
  max-width: 1080px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 40px 80px -40px rgba(0, 0, 0, 0.7),
    0 0 60px -30px var(--accent-glow);
}
.terminal-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.terminal-title {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-3);
}
.terminal-body {
  padding: 26px 28px;
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--fg-2);
  background: var(--surface);
}
.terminal-body p { margin-bottom: 4px; }
.prompt { color: var(--accent); font-weight: 600; margin-right: 12px; }
.term-out {
  color: var(--fg-3);
  padding-left: 24px;
  margin-bottom: 22px !important;
  font-size: 13px;
}
.term-out .term-ok { color: var(--ok); font-weight: 500; }
.term-out .term-block { color: var(--danger); font-weight: 500; }
.cursor {
  display: inline-block;
  width: 8px; height: 16px;
  background: var(--accent);
  vertical-align: middle;
  animation: blink 1.05s steps(2, start) infinite;
}
.how-footer {
  margin-top: 20px;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-3);
}

/* ─── Stack / spec sheet ─── */
.stack {
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .stack { grid-template-columns: 1fr; }
}
.stack-head .mono-eyebrow { margin-bottom: 18px; }
.stack-head .h2 { margin-bottom: 18px; }
.spec-sheet {
  border-top: 1px solid var(--border);
}
.spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.spec-row:hover { background: var(--surface); }
@media (max-width: 640px) {
  .spec-row { grid-template-columns: 1fr; gap: 4px; }
}
.spec-key {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.spec-val {
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--fg);
  line-height: 1.5;
}

/* ─── Coverage matrix ─── */
.coverage {
  max-width: 1080px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.matrix {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 8px;
}
.matrix table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.matrix th, .matrix td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.matrix th {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-3);
  border-bottom: 1px solid var(--border-2);
}
.matrix th:not(:first-child), .matrix td:not(:first-child) {
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
}
.matrix tbody tr:hover { background: var(--surface-2); }
.matrix tbody tr:last-child td { border-bottom: none; }
.matrix td.y { color: var(--ok); }
.matrix td.p { color: var(--warn); font-style: italic; }
.matrix td.s { color: var(--fg-3); }
.matrix td.n { color: var(--fg-4); }
.matrix-legend {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding: 18px 16px 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-3);
}
.matrix-legend span { display: inline-flex; align-items: center; gap: 8px; }
.matrix-legend i.dot {
  width: 7px; height: 7px; border-radius: 50%;
}
.dot-y { background: var(--ok); }
.dot-p { background: var(--warn); }
.dot-s { background: var(--fg-3); }
.dot-n { background: var(--fg-4); }

/* ─── Pricing ─── */
.pricing {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color 0.2s;
}
.plan:hover { border-color: var(--border-hi); }
.plan-featured {
  background: linear-gradient(180deg, color-mix(in oklch, var(--accent) 6%, var(--surface)), var(--surface));
  border-color: color-mix(in oklch, var(--accent) 40%, var(--border));
  box-shadow: 0 0 40px -20px var(--accent-glow);
}
.plan-flag {
  position: absolute;
  top: -12px; left: 24px;
  padding: 4px 12px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 999px;
}
.plan-head { display: grid; gap: 8px; }
.plan-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.plan-price {
  font-family: var(--sans);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.03em;
}
.plan-price span {
  font-size: 0.36em;
  color: var(--fg-3);
  font-weight: 400;
  margin-left: 2px;
}
.plan-blurb {
  font-size: 13px;
  color: var(--fg-2);
}
.plan-features {
  list-style: none;
  display: grid;
  gap: 10px;
  flex-grow: 1;
}
.plan-features li {
  font-size: 14px;
  color: var(--fg-2);
  padding-left: 20px;
  position: relative;
}
.plan-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  top: 1px;
}

/* ─── Voices ─── */
.voices {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .voices-grid { grid-template-columns: 1fr; } }
.voice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s;
}
.voice:hover { border-color: var(--border-hi); }
.voice p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg);
}
.voice footer {
  display: grid;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.voice-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}
.voice-meta {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--fg-3);
}

/* ─── Waitlist ─── */
.waitlist {
  border-block: 1px solid var(--border);
  background: var(--bg-2);
}
.waitlist-inner {
  max-width: 780px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.waitlist .h2 { max-width: 22ch; }
.waitlist .lede { margin: 12px 0 28px; }
.waitlist-form {
  display: flex;
  gap: 8px;
  max-width: 520px;
  flex-wrap: wrap;
}
.waitlist-form input {
  flex: 1;
  min-width: 220px;
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 16px;
  min-height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.waitlist-form input::placeholder { color: var(--fg-4); }
.waitlist-form input:focus {
  border-color: var(--accent);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.waitlist-msg {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
}
.waitlist-alt {
  margin-top: 28px;
  font-size: 13px;
  color: var(--fg-3);
}
.waitlist-alt a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.waitlist-alt a:hover { color: var(--accent); }

/* ─── FAQ ─── */
.faq {
  max-width: 780px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--fg);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after {
  content: "+";
  font-family: var(--mono);
  color: var(--fg-3);
  font-size: 20px;
  transition: transform 0.2s;
  width: 20px;
  text-align: center;
}
.faq-item[open] summary::after { content: "−"; color: var(--accent); }
.faq-body { padding: 0 0 20px; max-width: 62ch; }
.faq-body p { color: var(--fg-2); font-size: 14.5px; line-height: 1.65; }

/* ─── Closer ─── */
.closer {
  background:
    radial-gradient(ellipse 900px 500px at 50% 0%, var(--accent-dim), transparent 65%),
    var(--bg);
  border-top: 1px solid var(--border);
}
.closer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  text-align: center;
  display: grid;
  gap: 32px;
  justify-items: center;
}

/* ─── Footer ─── */
.site-foot {
  border-top: 1px solid var(--border);
  padding-block: 48px 32px;
  background: var(--bg);
}
.foot-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
}
@media (max-width: 900px) { .foot-inner { grid-template-columns: 1fr; } }
.foot-brand-col { display: grid; gap: 16px; align-content: start; }
.foot-brand svg { color: var(--accent); }
.foot-tag { font-size: 14px; color: var(--fg-3); max-width: 32ch; line-height: 1.55; }
.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 640px) { .foot-cols { grid-template-columns: repeat(2, 1fr); } }
.foot-h {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.foot-cols ul { list-style: none; display: grid; gap: 10px; }
.foot-cols a {
  color: var(--fg-2);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.15s;
}
.foot-cols a:hover { color: var(--accent); }
.foot-copy {
  grid-column: 1 / -1;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--fg-4);
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .pulse, .cursor, .term-cursor { animation: none !important; }
}
