/* Spread — marketing site styles.
   Dark-first with a light mode (variables re-declared on :root.light).
   Design intent: professional, gentle motion, gradient accents, fully responsive. */

:root {
  --bg: #050508;
  --bg-elevated: #0a0b10;
  --panel: rgba(10, 12, 18, 0.82);
  --panel-solid: #0d1018;
  --text: #e8eaef;
  --muted: #8b94a7;
  --quiet: #5f6878;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(165, 243, 252, 0.26);
  --accent-start: #c4b5fd;
  --accent-mid: #7dd3fc;
  --accent-end: #a5f3fc;
  --green: #8ff5c8;
  --gold: #ffd88a;
  --danger: #ffb1b1;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.4, 0.5, 1);
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;

  /* Boxy, sharp edges throughout */
  --r: 4px;
  --r-sharp: 2px;
  --shell: min(1180px, calc(100% - 40px));
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

/* ---------- Background layers ---------- */
.bg-grid {
  position: fixed;
  inset: -25%;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  background-position: center center;
  transform-origin: 50% 45%;
  opacity: 0.9;
  animation: grid-wave 20s ease-in-out infinite;
  will-change: transform;
}

.bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 181, 253, 0.05) 1px, transparent 1px);
  background-size: 13px 13px;
  mix-blend-mode: screen;
  opacity: 0.6;
  animation: grid-wave-fine 14s ease-in-out infinite reverse;
}

@keyframes grid-wave {
  0%, 100% { transform: perspective(1000px) rotateX(4deg) rotateY(-1.5deg) translate3d(0, 0, 0); }
  33% { transform: perspective(1000px) rotateX(2deg) rotateY(1deg) translate3d(0, -12px, 0); }
  66% { transform: perspective(1000px) rotateX(-0.5deg) rotateY(1.5deg) translate3d(6px, 8px, 0); }
}

@keyframes grid-wave-fine {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-6px, 5px) scale(1.015); }
}

.waves {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.waves svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.wave-layer {
  opacity: 0.4;
  animation: wave-flicker 6s var(--ease) infinite;
}

.wave-layer:nth-child(2) {
  animation-delay: 1.6s;
  opacity: 0.32;
}

@keyframes wave-flicker {
  0%, 100% { opacity: 0.24; filter: blur(0.45px); }
  40% { opacity: 0.5; filter: blur(0.15px); }
  70% { opacity: 0.34; filter: blur(0.6px); }
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(ellipse 84% 66% at 50% 40%, transparent 0%, var(--bg) 80%);
}

/* Soothing spa aura — self-contained SVG gradient wash (no external image/CDN, CSP-safe).
   Full-bleed behind everything: ::before carries the image + slow drift, the wrapper
   takes a gentle scroll parallax from app.js. Respects prefers-reduced-motion. */
.spa-aura {
  position: fixed;
  inset: -12%;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.spa-aura::before {
  content: '';
  position: absolute;
  inset: 0;
  background: center / cover no-repeat url('/img/spa-calm.svg');
  opacity: 0.5;
  will-change: transform;
  animation: aura-drift 30s ease-in-out infinite;
}

:root.light .spa-aura::before { opacity: 0.95; }

@keyframes aura-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.02); }
  50% { transform: translate3d(0, -1.6%, 0) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .spa-aura::before { animation: none; }
}

/* ---------- Shared layout ---------- */
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 3;
}

main {
  width: var(--shell);
  margin: 0 auto;
}

/* Eyebrow: rendered as a legible chip — bigger, brighter, higher contrast
   than the original faint accent text so headers like "How it works" read clearly. */
.eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--accent-mid);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nowrap { white-space: nowrap; }

h1, h2, h3, h4 {
  color: var(--text);
  letter-spacing: 0;
}

/* ---------- Buttons (boxy, sharp) ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--r-sharp);
  padding: 11px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.3s var(--spring);
}

.button:hover {
  border-color: var(--line-strong);
  box-shadow: 0 0 24px rgba(125, 211, 252, 0.1);
  transform: translateY(-2px) scale(1.02);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button:focus-visible {
  outline: 2px solid var(--accent-mid);
  outline-offset: 2px;
}

.button.primary {
  border-color: rgba(165, 243, 252, 0.36);
  background: linear-gradient(135deg, rgba(196, 181, 253, 0.2), rgba(125, 211, 252, 0.18));
  color: #f4faff;
}

.button.secondary {
  color: var(--muted);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: var(--shell);
  margin: 0 auto;
  padding: 16px 0;
  background: linear-gradient(180deg, rgba(5, 5, 8, 0.86), rgba(5, 5, 8, 0));
  backdrop-filter: blur(10px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  font-family: 'Bungee', cursive;
  font-size: 1.95rem;
  line-height: 1;
  letter-spacing: 0.005em;
  text-decoration: none;
  background: linear-gradient(110deg, var(--accent-start), var(--accent-mid), var(--accent-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand-mark {
  font-size: 1.55rem;
}

.brand-glyph {
  display: inline-flex;
  filter: drop-shadow(0 0 10px rgba(125, 211, 252, 0.28));
}

.nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nav a {
  color: var(--muted);
  font-size: 0.86rem;
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.nav a:hover {
  color: var(--text);
  border-bottom-color: var(--line-strong);
}

.nav-cta {
  min-height: 38px;
  padding: 8px 16px;
}

/* ---------- Hero ---------- */
.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.82fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: 40px 0 72px;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: 0.96;
  font-weight: 780;
}

.hero-subtitle {
  margin: 22px 0 0;
  color: var(--text);
  opacity: 0.92;
  max-width: 580px;
  font-size: clamp(1.14rem, 1.75vw, 1.42rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 500;
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--quiet);
}

.dot.ok {
  background: var(--green);
  box-shadow: 0 0 10px rgba(143, 245, 200, 0.5);
}

/* ---------- Terminal card ---------- */
.terminal-card {
  border: 1px solid rgba(165, 243, 252, 0.16);
  border-radius: var(--r);
  background: rgba(6, 9, 14, 0.86);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.terminal-top > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--quiet);
}

.terminal-top > span:nth-child(1) { background: #fca5a5; }
.terminal-top > span:nth-child(2) { background: #fde68a; }
.terminal-top > span:nth-child(3) { background: #86efac; }

.terminal-top p {
  margin: 0 0 0 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.terminal-body {
  padding: 18px;
  font-family: var(--mono);
  color: #dbeafe;
  min-height: 268px;
  font-size: 0.86rem;
}

.terminal-body p {
  margin: 0 0 13px;
  overflow-wrap: anywhere;
}

.prompt {
  color: var(--accent-end);
  margin-right: 10px;
}

.fail { color: var(--danger); font-weight: 700; }
.ok-text { color: var(--green); font-weight: 700; }

.cursor {
  display: inline-block;
  width: 8px;
  height: 1em;
  margin-left: 4px;
  transform: translateY(2px);
  background: var(--accent-end);
  animation: blink 0.9s steps(2, start) infinite;
}

.cursor.done { display: none; }

@keyframes blink {
  50% { opacity: 0; }
}

/* ---------- Trust row ---------- */
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: -24px 0 88px;
}

.trust-row div {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  border-radius: var(--r);
}

.trust-row strong {
  display: block;
  margin-bottom: 6px;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Sections ---------- */
.section {
  padding: 84px 0;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.02;
  max-width: 820px;
}

.section-heading p {
  margin-top: 16px;
  color: var(--text);
  opacity: 0.82;
  max-width: 720px;
  font-size: 1.14rem;
  line-height: 1.6;
}

/* ---------- Interactive flow diagram ---------- */
.flow {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.5fr);
  gap: 18px;
  align-items: stretch;
}

.flow-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flow-node {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  text-align: left;
  font: inherit;
  color: var(--muted);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: var(--r-sharp);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition:
    color 0.22s var(--ease),
    background 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.flow-node:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.flow-node.active {
  color: var(--text);
  background: rgba(125, 211, 252, 0.09);
  border-color: var(--line-strong);
  border-left-color: var(--accent-mid);
}

.flow-node:focus-visible {
  outline: 2px solid var(--accent-mid);
  outline-offset: 2px;
}

.flow-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent-end);
  opacity: 0.85;
}

.flow-name {
  font-size: 0.98rem;
  font-weight: 600;
}

.flow-detail {
  position: relative;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  border-radius: var(--r);
  padding: clamp(22px, 3vw, 34px);
  min-height: 300px;
  display: flex;
  align-items: center;
}

.flow-panel {
  width: 100%;
}

.flow-panel[hidden] {
  display: none;
}

.flow-panel.active {
  animation: panel-fade 0.4s var(--ease);
}

@keyframes panel-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.flow-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
}

.flow-panel > p {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 1.02rem;
  max-width: 560px;
}

.flow-vs {
  color: var(--muted) !important;
  font-size: 0.94rem !important;
}

.flow-vs span {
  color: var(--gold);
  font-weight: 600;
}

.flow-log {
  margin-top: 20px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sharp);
  background: rgba(0, 0, 0, 0.4);
}

.flow-log code {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: #cfe6ff;
}

/* ---------- Compare table ---------- */
.compare {
  display: grid;
  gap: 22px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.compare-table thead th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.02);
}

.compare-table tbody th {
  color: var(--text);
  font-weight: 600;
}

.compare-table td {
  text-align: center;
  color: var(--muted);
}

.compare-table .col-ghost,
.compare-table td.ghost {
  background: rgba(125, 211, 252, 0.07);
  color: var(--text);
}

.compare-table td.y { color: var(--green); font-weight: 600; }
.compare-table td.n { color: var(--quiet); }
.compare-table td.p { color: var(--gold); }
.compare-table td.y.ghost { color: var(--green); }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-lines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.compare-lines p {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--panel);
  color: var(--muted);
  font-size: 0.95rem;
}

.compare-lines strong {
  color: var(--text);
}

/* ---------- Build + maintain modes ---------- */
.modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mode-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  border-radius: var(--r);
  padding: 26px;
}

.mode-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--r-sharp);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #071018;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-mid));
}

.mode-tag.alt {
  background: linear-gradient(135deg, var(--green), var(--accent-end));
}

.mode-card h3 {
  margin: 16px 0 10px;
  font-size: 1.3rem;
}

.mode-card > p {
  margin: 0 0 16px;
  color: var(--muted);
}

.mode-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.mode-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 0.92rem;
}

.mode-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--accent-mid);
  border-radius: 1px;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.steps article {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  border-radius: var(--r);
  padding: 20px;
  min-height: 180px;
}

.steps span {
  font-family: var(--mono);
  color: var(--accent-end);
  font-size: 0.85rem;
}

.steps h3 {
  margin: 26px 0 8px;
  font-size: 1.05rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Proof / pilot ---------- */
.pilot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.metric-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  border-radius: var(--r);
  padding: 20px;
}

.metric-card strong {
  display: block;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(110deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metric-card span {
  color: var(--text);
  opacity: 0.8;
  font-size: 1rem;
  line-height: 1.5;
}

.metric-card .src {
  color: var(--accent-mid);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(125, 211, 252, 0.35);
  font-size: 0.86rem;
  transition: border-color 0.2s var(--ease);
}

.metric-card .src:hover { border-bottom-color: var(--accent-mid); }

.pr-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pr-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--panel);
  backdrop-filter: blur(16px);
  text-decoration: none;
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.pr-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
}

.pr-repo {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent-end);
}

.pr-title {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
}

.pr-meta {
  color: var(--muted);
  font-size: 0.85rem;
  font-family: var(--mono);
}

.pr-arrow {
  transition: transform 0.22s var(--ease);
  display: inline-block;
}

.pr-card:hover .pr-arrow {
  transform: translateX(4px);
}

/* ---------- Fit ---------- */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.fit-grid article {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  border-radius: var(--r);
  padding: 22px;
  min-height: 160px;
}

.fit-grid h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.fit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  margin: 40px 0 88px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background:
    radial-gradient(ellipse 60% 120% at 50% 0%, rgba(125, 211, 252, 0.1), transparent 70%),
    var(--panel);
  backdrop-filter: blur(16px);
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.02;
}

.cta-band > .cta-inner > p {
  margin: 16px 0 0;
  color: var(--muted);
}

.cta-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 28px 0 0;
  flex-wrap: wrap;
}

.cta-form input {
  flex: 1;
  min-width: 220px;
  max-width: 340px;
  padding: 12px 14px;
  border-radius: var(--r-sharp);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.22s var(--ease);
}

.cta-form input::placeholder {
  color: var(--quiet);
}

.cta-form input:focus {
  border-color: var(--line-strong);
}

.cta-form input.invalid {
  border-color: var(--danger);
}

.cta-message {
  margin: 14px 0 0;
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: var(--green);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.cta-message.visible {
  opacity: 1;
}

.cta-message.error {
  color: var(--danger);
}

.cta-fineprint {
  margin: 18px 0 0;
  color: var(--quiet);
  font-size: 0.82rem;
}

/* ---------- Footer ---------- */
.site-footer {
  width: var(--shell);
  margin: 0 auto;
  padding: 48px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.5fr);
  gap: 40px;
}

.footer-brand p {
  margin: 16px 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--r-sharp);
  color: var(--muted);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.3s var(--spring);
}

.footer-social a:hover {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px) scale(1.05);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-cols h4 {
  margin: 0 0 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--quiet);
}

.footer-cols a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s var(--ease);
}

.footer-cols a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 0.84rem;
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a {
  color: var(--quiet);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.footer-legal a:hover {
  color: var(--text);
}

/* ---------- Client logo strip ---------- */
.logo-strip {
  margin: -8px 0 78px;
  text-align: center;
}

.logo-strip-label {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.logo-row li {
  font-family: 'Bungee', cursive;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  color: var(--text);
  opacity: 0.62;
  filter: grayscale(1);
  transition: opacity 0.25s var(--ease), filter 0.25s var(--ease);
}

.logo-row li:hover {
  opacity: 1;
  filter: grayscale(0);
  color: transparent;
  background: linear-gradient(110deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  background-clip: text;
}

/* ---------- Live visibility dashboard ---------- */
.dash {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 2fr);
  gap: 18px;
  align-items: start;
}

.dash-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 96px;
  min-width: 0;
}

.dash-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  text-align: left;
  font: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: var(--r-sharp);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.dash-tab::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--quiet);
  transition: background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.dash-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.dash-tab.active {
  color: var(--text);
  background: rgba(125, 211, 252, 0.09);
  border-color: var(--line-strong);
  border-left-color: var(--accent-mid);
}

.dash-tab.active::before {
  background: var(--accent-mid);
  box-shadow: 0 0 10px rgba(125, 211, 252, 0.7);
}

.dash-tab:focus-visible {
  outline: 2px solid var(--accent-mid);
  outline-offset: 2px;
}

.dash-meta {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sharp);
  background: rgba(0, 0, 0, 0.28);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.dash-meta strong {
  color: var(--text);
  font-weight: 600;
}

.dash-sep {
  margin: 0 8px;
  color: var(--quiet);
}

.dash-panel {
  border: 1px solid var(--line-strong);
  background: var(--panel);
  backdrop-filter: blur(16px);
  border-radius: var(--r);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
  min-width: 0;
  overflow: hidden;
}

.dash-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.dash-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dash-score-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.dash-score {
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  line-height: 1;
  font-weight: 800;
  background: linear-gradient(110deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}

.dash-score-max {
  color: var(--quiet);
  font-size: 1.3rem;
  font-weight: 600;
}

.dash-head-side {
  text-align: right;
}

.dash-delta {
  display: inline-block;
  padding: 5px 10px;
  border-radius: var(--r-sharp);
  background: rgba(143, 245, 200, 0.12);
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 600;
}

.dash-biz {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 1.02rem;
}

/* Chart */
.dash-chart {
  border: 1px solid var(--line);
  border-radius: var(--r-sharp);
  background: rgba(0, 0, 0, 0.32);
  padding: 14px 14px 8px;
  min-width: 0;
  overflow: hidden;
}

#dash-svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 64 / 25;
}

.dash-grid line {
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1;
}

.dash-line {
  filter: drop-shadow(0 3px 10px rgba(125, 211, 252, 0.3));
  transition: stroke-dashoffset 1.5s var(--ease);
}

.dash-dot {
  filter: drop-shadow(0 0 8px rgba(165, 243, 252, 0.9));
  transition: opacity 0.4s var(--ease);
}

.dash-xlabels text {
  fill: var(--quiet);
  font-family: var(--mono);
  font-size: 11px;
}

.dash-legend {
  display: flex;
  gap: 18px;
  margin-top: 6px;
  padding: 0 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

.dash-legend i {
  display: inline-block;
  width: 14px;
  height: 3px;
  margin-right: 6px;
  vertical-align: middle;
  border-radius: 2px;
}

.dash-legend .lg-you { background: linear-gradient(90deg, var(--accent-start), var(--accent-end)); }
.dash-legend .lg-comp { background: repeating-linear-gradient(90deg, #ffb1b1 0 4px, transparent 4px 8px); }

/* Lower grid: bars + answer */
.dash-lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.dash-block-label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.dash-bars-block,
.dash-answer {
  border: 1px solid var(--line);
  border-radius: var(--r-sharp);
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
  min-width: 0;
}

.dash-bars {
  display: grid;
  gap: 12px;
}

.dash-bar-row {
  display: grid;
  grid-template-columns: 112px 1fr 42px;
  align-items: center;
  gap: 10px;
}

.dash-bar-name {
  font-size: 0.86rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-bar-row.you .dash-bar-name {
  color: var(--text);
  font-weight: 700;
}

.dash-bar-track {
  height: 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.dash-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.16);
  transition: width 1s var(--ease);
}

.dash-bar-row.you .dash-bar-fill {
  background: linear-gradient(90deg, var(--accent-start), var(--accent-mid));
  box-shadow: 0 0 14px rgba(125, 211, 252, 0.4);
}

.dash-bar-pct {
  text-align: right;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.dash-bar-row.you .dash-bar-pct {
  color: var(--accent-end);
  font-weight: 700;
}

.dash-answer-prompt {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.88rem;
}

.dash-answer-body {
  display: flex;
  gap: 10px;
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.dash-answer-tag {
  flex: 0 0 auto;
  height: fit-content;
  padding: 2px 8px;
  border-radius: var(--r-sharp);
  background: linear-gradient(135deg, var(--accent-start), var(--accent-mid));
  color: #071018;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.dash-answer-body .cursor {
  height: 1.05em;
}

/* Chips */
.dash-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.dash-chip {
  border: 1px solid var(--line);
  border-radius: var(--r-sharp);
  background: rgba(0, 0, 0, 0.28);
  padding: 14px;
}

.dash-chip strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.dash-chip span {
  color: var(--muted);
  font-size: 0.8rem;
}

.dash-disclaimer {
  margin: 18px 0 0;
  color: var(--quiet);
  font-size: 0.8rem;
  font-style: italic;
}

/* ---------- Gradient text utility (used more across the site per brief) ---------- */
.grad {
  background: linear-gradient(110deg, var(--accent-start), var(--accent-mid), var(--accent-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Inline gradient highlight for a key phrase inside body copy */
.hl {
  font-weight: 700;
  background: linear-gradient(110deg, var(--accent-start), var(--accent-mid), var(--accent-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Milestones (the "every step" journey) ---------- */
.milestones {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.milestone {
  position: relative;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--panel);
  backdrop-filter: blur(16px);
  transition: transform 0.3s var(--spring), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.milestone:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 14px 34px rgba(125, 211, 252, 0.12);
}

.milestone-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  margin-bottom: 13px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.92rem;
  color: #071018;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-mid));
}

.milestone h3 {
  margin: 0 0 6px;
  font-size: 1.04rem;
}

.milestone p {
  margin: 0;
  color: var(--text);
  opacity: 0.74;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Connector line between badges — only on the full 4-across layout */
@media (min-width: 1001px) {
  .milestone::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 100%;
    width: 16px;
    height: 2px;
    background: var(--line-strong);
  }
  .milestone:last-child::after { display: none; }
}

/* Lean into the accent color/gradient even without hover on the logo strip */
.logo-row li {
  opacity: 0.78;
}

/* ---------- ChatGPT-style chat card (hero) ---------- */
.chat {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0d0d0f;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.chat-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

.chat-title {
  color: var(--text);
  font-weight: 600;
  font-size: 0.98rem;
}

.chat-model {
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--muted);
  font-size: 0.74rem;
}

.chat-dots {
  margin-left: auto;
  display: inline-flex;
  gap: 4px;
}

.chat-dots i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--quiet);
}

.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 16px;
  max-height: 300px;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}

.chat-thread::-webkit-scrollbar { width: 6px; }
.chat-thread::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.16); border-radius: 6px; }

.chat-msg {
  display: flex;
}

.chat-msg.user {
  justify-content: flex-end;
}

.chat-bubble {
  max-width: 84%;
  padding: 10px 14px;
  border-radius: 18px;
  background: #2f2f33;
  color: #ececf1;
  font-size: 0.92rem;
  line-height: 1.5;
}

.chat-msg.ai {
  gap: 11px;
  align-items: flex-start;
}

.chat-logo {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.chat-text {
  color: #ececf1;
  font-size: 0.92rem;
  line-height: 1.55;
  min-width: 0;
}

.chat-text p {
  margin: 0 0 10px;
}

.chat-text ul {
  margin: 0 0 10px;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.chat-text strong {
  color: #ffffff;
}

.chat-tail {
  margin-bottom: 0 !important;
  color: var(--muted);
}

.chat-answer { margin-bottom: 0 !important; }

.chat-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2px 12px 14px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--quiet);
  font-size: 0.9rem;
}

.chat-send {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  color: #000;
  font-size: 0.95rem;
}

/* ---------- Hero citation ---------- */
.hero-cite {
  margin-top: 30px;
  max-width: 520px;
  color: var(--text);
  opacity: 0.9;
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero-cite strong {
  font-weight: 700;
  opacity: 1;
}

.hero-cite a {
  color: var(--accent-mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(125, 211, 252, 0.4);
  white-space: nowrap;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.hero-cite a:hover { border-bottom-color: var(--accent-mid); }

/* ---------- Mini chat inside the dashboard ("what AI says now") ---------- */
.mini-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-msg {
  display: flex;
}

.mini-msg.user {
  justify-content: flex-end;
}

.mini-bubble {
  max-width: 90%;
  padding: 8px 12px;
  border-radius: 14px;
  background: #2f2f33;
  color: #ececf1;
  font-size: 0.85rem;
  line-height: 1.45;
}

.mini-msg.ai {
  gap: 9px;
  align-items: flex-start;
}

.mini-avatar {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-mid));
  color: #06101a;
}

.mini-text {
  color: #ececf1;
  font-size: 0.9rem;
  line-height: 1.5;
  min-width: 0;
}

.mini-text .cursor {
  height: 1em;
}

/* Make the share bars clearly filled */
.dash-bar-fill {
  background: linear-gradient(90deg, rgba(150, 163, 190, 0.55), rgba(120, 133, 160, 0.5));
}

.dash-bar-row.you .dash-bar-fill {
  background: linear-gradient(90deg, var(--accent-start), var(--accent-mid));
  box-shadow: 0 0 14px rgba(125, 211, 252, 0.45);
}

/* ---------- Slim how-it-works ---------- */
.how-slim .section-heading {
  margin-bottom: 22px;
}

.how-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.how-row article {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  border-radius: var(--r);
  padding: 22px;
}

.how-row article p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Case-study cards (look like real, clickable case studies) ---------- */
.case-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--panel);
  backdrop-filter: blur(16px);
  text-decoration: none;
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.case-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
}

.case-tag {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-end);
}

.case-title {
  color: var(--text);
  font-weight: 600;
  font-size: 1.04rem;
  line-height: 1.35;
}

.case-stat {
  color: var(--muted);
  font-size: 0.86rem;
}

.case-stat b {
  color: var(--text);
  font-weight: 700;
}

.case-link {
  margin-top: auto;
  color: var(--accent-end);
  font-size: 0.85rem;
  font-weight: 600;
}

.case-card:hover .case-link {
  text-decoration: underline;
}

/* ---------- Compare: Spread column emphasis + mobile scroll ---------- */
.compare-scroll {
  overflow-x: auto;
  border-radius: var(--r);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  min-width: 660px;
}

.compare-table th.col-ghost,
.compare-table td.ghost {
  border-left: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
}

.compare-table thead th.col-ghost {
  color: var(--text);
  background: rgba(125, 211, 252, 0.14);
}

/* ---------- Centered section heading ---------- */
.section-heading.center {
  text-align: center;
}

.section-heading.center h2,
.section-heading.center p {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Free evaluation flow ---------- */
.check {
  padding-bottom: 96px;
}

.eval {
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background: var(--panel);
  backdrop-filter: blur(16px);
  padding: clamp(22px, 4vw, 38px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

.eval-step[hidden] {
  display: none;
}

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

.eval-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.eval-field span {
  color: var(--muted);
  font-size: 0.82rem;
}

.eval-field span i {
  color: var(--accent-end);
  font-style: normal;
}

.eval-field input,
.eval-field select {
  padding: 12px 13px;
  border-radius: var(--r-sharp);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s var(--ease);
}

.eval-field input:focus,
.eval-field select:focus {
  border-color: var(--line-strong);
}

.eval-field input.invalid {
  border-color: var(--danger);
}

.eval-go {
  width: 100%;
  margin-top: 20px;
}

.eval-fine {
  margin: 12px 0 0;
  text-align: center;
  color: var(--quiet);
  font-size: 0.8rem;
}

/* Loading */
.eval-loading {
  text-align: center;
  padding: 18px 0;
}

.eval-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 3px solid var(--line);
  border-top-color: var(--accent-mid);
  animation: eval-spin 0.9s linear infinite;
}

@keyframes eval-spin {
  to { transform: rotate(360deg); }
}

.eval-loading-title {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.06rem;
}

.eval-log {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 440px;
  display: grid;
  gap: 9px;
  text-align: left;
}

.eval-log li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.eval-log li.in {
  opacity: 1;
  transform: none;
}

.eval-log li .tick {
  color: var(--green);
}

/* Report */
.eval-verdict {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.eval-score {
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.eval-score-max {
  color: var(--quiet);
  font-size: 1.2rem;
  font-weight: 600;
}

.eval-verdict-text {
  flex: 1;
  min-width: 200px;
}

.eval-verdict-text h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.eval-verdict-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.eval-pill {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 11px;
  border-radius: var(--r-sharp);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eval-pill.warn {
  background: rgba(255, 216, 138, 0.14);
  color: var(--gold);
}

.eval-pill.ok {
  background: rgba(143, 245, 200, 0.14);
  color: var(--green);
}

.eval-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.eval-panel {
  border: 1px solid var(--line);
  border-radius: var(--r-sharp);
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
}

.eval-panel h4 {
  margin: 0 0 12px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.eval-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.eval-chip {
  padding: 5px 10px;
  border-radius: var(--r-sharp);
  font-size: 0.82rem;
  border: 1px solid var(--line);
}

.eval-chip.pos {
  background: rgba(143, 245, 200, 0.1);
  color: var(--green);
  border-color: rgba(143, 245, 200, 0.24);
}

.eval-chip.neg {
  background: rgba(255, 177, 177, 0.1);
  color: var(--danger);
  border-color: rgba(255, 177, 177, 0.24);
}

.eval-complist {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eval-complist li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--text);
  font-size: 0.88rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.eval-complist li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.eval-complist li span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.82rem;
}

.eval-flag {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.5;
}

.eval-flag .warn-ico {
  color: var(--gold);
  flex: 0 0 auto;
}

.eval-panel.wide {
  grid-column: 1 / -1;
}

.eval-cta {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.eval-cta h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.eval-cta p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.eval-email {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.eval-email input {
  flex: 1;
  min-width: 220px;
  padding: 12px 14px;
  border-radius: var(--r-sharp);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s var(--ease);
}

.eval-email input:focus {
  border-color: var(--line-strong);
}

.eval-email input.invalid {
  border-color: var(--danger);
}

.eval-msg {
  margin: 12px 0 0;
  min-height: 1.1rem;
  font-size: 0.9rem;
  color: var(--green);
}

.eval-msg.error {
  color: var(--danger);
}

.eval-reset {
  margin: 16px 0 0;
  background: none;
  border: none;
  color: var(--muted);
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.eval-reset:hover {
  color: var(--text);
}

/* ---------- Reveal-on-scroll (progressive enhancement: only hides when JS is active) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}

.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
  }

  .nav {
    display: none;
  }

  .flow {
    grid-template-columns: 1fr;
  }

  .flow-track {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  .flow-node {
    flex: 0 0 auto;
    border-left: 1px solid var(--line);
    border-bottom: 3px solid transparent;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-width: 116px;
  }

  .flow-node.active {
    border-left-color: var(--line-strong);
    border-bottom-color: var(--accent-mid);
  }

  .trust-row,
  .steps,
  .pilot-grid,
  .milestones {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .dash {
    grid-template-columns: 1fr;
  }

  .dash-controls {
    position: static;
  }

  .dash-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  .dash-tab {
    flex: 0 0 auto;
    border-left: 1px solid var(--line);
    border-bottom: 3px solid transparent;
  }

  .dash-tab.active {
    border-left-color: var(--line-strong);
    border-bottom-color: var(--accent-mid);
  }

  .dash-lower {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .compare-lines {
    grid-template-columns: 1fr;
  }

  .modes {
    grid-template-columns: 1fr;
  }

  .how-row,
  .case-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(1180px, calc(100% - 28px));
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .brand-mark {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .trust-row,
  .steps,
  .pilot-grid,
  .fit-grid,
  .milestones {
    grid-template-columns: 1fr;
  }

  .eval-grid,
  .eval-panels {
    grid-template-columns: 1fr;
  }

  .hero-impact {
    flex-direction: column;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
  }

  .dash-chips {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-bar-row {
    grid-template-columns: 92px 1fr 40px;
  }

  .section {
    padding: 60px 0;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .bg-grid,
  .wave-layer {
    animation: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Big sign-up CTA on the marketing site */
.big-cta { min-height: 54px; padding: 15px 30px; font-size: 1.06rem; margin-top: 6px; }

/* ---- Waves: bigger pop + erratic (match app) ---- */
.wave-layer { opacity: 0.72; animation: wave-a 9s ease-in-out infinite; will-change: transform; filter: none; }
.wave-layer:nth-child(2) { opacity: 0.58; animation: wave-b 12s ease-in-out infinite; animation-delay: -3s; }
.wave-layer.wave-3 { opacity: 0.5; animation: wave-c 15s ease-in-out infinite; animation-delay: -6s; }
@keyframes wave-a { 0%,100% { transform: translate(0,0) skewY(0deg) } 30% { transform: translate(-2.5%,3%) skewY(1.6deg) } 60% { transform: translate(2%,-2.5%) skewY(-1.2deg) } }
@keyframes wave-b { 0%,100% { transform: translate(0,0) skewX(0deg) } 40% { transform: translate(3%,2%) skewX(-2deg) } 70% { transform: translate(-2%,-3%) skewX(1.4deg) } }
@keyframes wave-c { 0%,100% { transform: translate(0,0) scale(1) } 50% { transform: translate(-3%,2.5%) scale(1.04) } }

/* ---- Bigger small text for readability ---- */
.compare-table th, .compare-table td { font-size: 0.98rem; }
.compare-table thead th { font-size: 0.86rem; }
.footer-cols a, .footer-brand p { font-size: 0.95rem; }
.case-stat { font-size: 0.95rem; }
.logo-strip-label { font-size: 0.86rem; }
.dash-disclaimer { font-size: 0.86rem; }
.case-link { font-size: 0.92rem; }

/* ---- Use the logo font on result numbers ---- */
.metric-card strong { font-family: 'Bungee', cursive; font-size: clamp(1.5rem, 3.4vw, 2.3rem); letter-spacing: 0.01em; }

/* Subtler, more translucent background grid */
.bg-grid { opacity: 0.4; background-image:
  linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px); }
.bg-grid::after { opacity: 0.35; }
:root.light .bg-grid { opacity: 0.4; }

/* ===================================================== Theme toggle + light === */
.site-header { grid-template-columns: auto minmax(0, 1fr) auto auto; }
.theme-toggle { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.03); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; padding: 0; transition: border-color 0.2s var(--ease), transform 0.3s var(--spring); }
.theme-toggle:hover { border-color: var(--line-strong); transform: translateY(-1px) scale(1.08); }
.theme-ico { width: 18px; height: 18px; background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd88a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z'/%3E%3C/svg%3E"); }

:root.light {
  --bg: #f5f2ea; --bg-elevated: #ffffff; --panel: rgba(255,255,255,0.82); --panel-solid: #ffffff;
  --text: #1b1e26; --muted: #5c6472; --quiet: #8b93a1;
  --line: rgba(20,24,40,0.12); --line-strong: rgba(90,120,210,0.34);
}
:root.light body { background: var(--bg); color: var(--text); }
:root.light .bg-grid { opacity: 0.4; background-image:
  linear-gradient(rgba(30,40,80,0.05) 1px, transparent 1px),
  linear-gradient(90deg, rgba(30,40,80,0.05) 1px, transparent 1px); }
:root.light .vignette { background: radial-gradient(ellipse 84% 66% at 50% 40%, transparent 0%, var(--bg) 82%); }
:root.light .site-header { background: linear-gradient(180deg, rgba(245,242,234,.92), rgba(245,242,234,.4)); }
:root.light .theme-ico { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b45309' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Cline x1='12' y1='1' x2='12' y2='3'/%3E%3Cline x1='12' y1='21' x2='12' y2='23'/%3E%3Cline x1='4.22' y1='4.22' x2='5.64' y2='5.64'/%3E%3Cline x1='18.36' y1='18.36' x2='19.78' y2='19.78'/%3E%3Cline x1='1' y1='12' x2='3' y2='12'/%3E%3Cline x1='21' y1='12' x2='23' y2='12'/%3E%3Cline x1='4.22' y1='19.78' x2='5.64' y2='18.36'/%3E%3Cline x1='18.36' y1='5.64' x2='19.78' y2='4.22'/%3E%3C/svg%3E"); }
:root.light .grad,
:root.light .hl,
:root.light .brand-mark,
:root.light .metric-card strong,
:root.light .logo-row li { background: linear-gradient(110deg, #7c5cf0, #1f8fd0); -webkit-background-clip: text; background-clip: text; color: transparent; }
:root.light .eyebrow { color: #2b7597; }
:root.light .case-tag, :root.light .case-link, :root.light .pr-repo { color: #2b7597; }
:root.light .compare-table thead th.col-ghost { background: rgba(90,140,210,.12); color: var(--text); }
:root.light .google-btn { background: #fff; border-color: var(--line); box-shadow: 0 1px 3px rgba(0,0,0,.1); }
:root.light .card, :root.light .mode-card, :root.light .metric-card, :root.light .milestone, :root.light .compare-table, :root.light .trust-row div, :root.light .case-card, :root.light .cta-band { box-shadow: 0 6px 24px rgba(30,40,80,0.06); }
:root.light .milestone-badge { background: linear-gradient(135deg, #7c5cf0, #1f8fd0); color: #ffffff; }
/* Primary CTA needs a solid fill in light mode — the translucent dark-mode gradient + near-white text is unreadable on beige */
:root.light .button { background: rgba(20,24,40,0.035); }
:root.light .button.primary { border-color: transparent; background: linear-gradient(135deg, #7c5cf0, #1f8fd0); color: #ffffff; box-shadow: 0 6px 18px rgba(90,110,220,.26); }
:root.light .button.primary:hover { box-shadow: 0 9px 26px rgba(90,110,220,.36); }
:root.light .nav-cta { background: linear-gradient(135deg, #7c5cf0, #1f8fd0); border-color: transparent; color: #ffffff; }

/* ChatGPT card follows the site theme (light + dark), styled to read like ChatGPT's own UI */
:root.light .chat { background: #ffffff; border-color: rgba(20,24,40,0.1); box-shadow: 0 18px 50px rgba(30,40,80,0.12); }
:root.light .chat-top { background: #f9f9f9; border-bottom-color: rgba(20,24,40,0.08); }
:root.light .chat-title { color: #1b1e26; }
:root.light .chat-logo { background: rgba(20,24,40,0.06); color: #1b1e26; }
:root.light .chat-dots i { background: #c2c7d0; }
:root.light .chat-bubble { background: #ececec; color: #1b1e26; }
:root.light .chat-text { color: #23252d; }
:root.light .chat-text strong { color: #0b0b0f; }
:root.light .chat-input { background: #f4f4f5; border-color: rgba(20,24,40,0.1); color: #8b93a1; }
:root.light .chat-send { background: #1b1e26; color: #fff; }
:root.light .cursor { background: #1b1e26; }
:root.light .chat-thread { scrollbar-color: rgba(20,24,40,0.22) transparent; }
:root.light .chat-thread::-webkit-scrollbar-thumb { background: rgba(20,24,40,0.2); }

/* Contrast fixes for accents on the cream background */
:root.light .related-card:hover b, :root.light .related-card b::after { color: #1f8fd0; }
:root.light .related-card:focus-visible { outline-color: #1f8fd0; }
:root.light .hero-cite a { color: #1f8fd0; border-bottom-color: rgba(31,143,208,0.4); }
:root.light .hero-cite a:hover { border-bottom-color: #1f8fd0; }
:root.light .metric-card .src { color: #1f8fd0; border-bottom-color: rgba(31,143,208,0.4); }
:root.light .metric-card .src:hover { border-bottom-color: #1f8fd0; }

/* Keep the dashboard demo dark even in light mode (product screenshot) */
:root.light .dash {
  --bg: #050508; --bg-elevated: #0a0b10; --panel: rgba(10,12,18,0.82); --panel-solid: #0d1018;
  --text: #e8eaef; --muted: #8b94a7; --quiet: #5f6878;
  --line: rgba(255,255,255,0.09); --line-strong: rgba(165,243,252,0.26);
  color: var(--text);
}
:root.light .dash .grad,
:root.light .dash .dash-score { background: linear-gradient(110deg, var(--accent-start), var(--accent-end)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Content / guide pages (guides, glossary, comparisons) ----------
   Scoped under .article so none of this touches the marketing homepage. Long-form
   reading column centred inside the shell-width <main>, tuned for contrast in both
   themes (readability is a hard requirement). */
.article { padding: 30px 0 72px; position: relative; z-index: 3; }
.article-inner { max-width: 768px; margin: 0 auto; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 0 0 26px; font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.02em; }
.breadcrumb a { color: var(--muted); text-decoration: none; border-bottom: 1px solid transparent; }
.breadcrumb a:hover { color: var(--text); border-bottom-color: var(--line-strong); }
.breadcrumb span[aria-hidden] { color: var(--quiet); }
.breadcrumb .breadcrumb-here { color: var(--text); }

.article-head h1 { margin: 8px 0 0; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.05; }
.article-lede { margin: 20px 0 0; color: var(--muted); font-size: clamp(1.04rem, 2.2vw, 1.2rem); line-height: 1.55; }
.article-meta { margin: 18px 0 0; font-family: var(--mono); font-size: 0.78rem; color: var(--quiet); letter-spacing: 0.02em; }

.prose { margin: 40px 0 0; font-size: 1.03rem; line-height: 1.72; }
.prose h2 { margin: 2em 0 0; font-size: clamp(1.45rem, 3.4vw, 2rem); line-height: 1.16; }
.prose h3 { margin: 1.6em 0 0; font-size: 1.16rem; }
.prose p { margin: 1.05em 0 0; color: var(--text); }
.prose ul, .prose ol { margin: 1.05em 0 0; padding-left: 1.35em; }
.prose li { margin-top: 0.55em; color: var(--text); }
.prose li::marker { color: var(--accent-mid); }
.prose strong { color: var(--text); font-weight: 650; }
.prose a { color: var(--accent-mid); text-decoration: none; border-bottom: 1px solid var(--line-strong); transition: color 0.2s var(--ease); }
.prose a:hover { color: var(--accent-end); }
.prose > :first-child { margin-top: 0; }

/* Key-takeaway callout */
.callout { margin: 1.6em 0 0; padding: 18px 20px; border: 1px solid var(--line-strong); border-left-width: 3px; border-radius: var(--r); background: radial-gradient(ellipse 70% 160% at 0% 0%, rgba(125, 211, 252, 0.08), transparent 70%), var(--panel); }
.callout p { margin: 0; }
.callout p + p { margin-top: 0.6em; }

/* Comparison table */
.prose .cmp-wrap { margin: 1.4em 0 0; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); }
.prose table { border-collapse: collapse; width: 100%; min-width: 480px; font-size: 0.95rem; }
.prose th, .prose td { text-align: left; padding: 12px 15px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose thead th { background: rgba(125, 211, 252, 0.07); color: var(--text); font-weight: 650; }
.prose tbody th { color: var(--text); font-weight: 600; white-space: nowrap; }
.prose tbody tr:last-child td, .prose tbody tr:last-child th { border-bottom: none; }

/* FAQ (native details/summary — no JS, accessible, CSP-safe) */
.faq { margin: 56px 0 0; }
.faq h2 { margin: 0 0 6px; font-size: clamp(1.45rem, 3.4vw, 2rem); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 40px 18px 0; position: relative; font-weight: 600; font-size: 1.04rem; color: var(--text); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--accent-mid); line-height: 1; transition: transform 0.2s var(--ease); }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:focus-visible { outline: 2px solid var(--accent-mid); outline-offset: 2px; }
.faq-answer { padding: 0 0 18px; color: var(--muted); line-height: 1.68; }
.faq-answer p { margin: 0; }
.faq-answer p + p { margin-top: 0.7em; }
.faq-answer a { color: var(--accent-mid); text-decoration: none; border-bottom: 1px solid var(--line-strong); }

/* Related guides */
.related { margin: 56px 0 0; }
.related h2 { margin: 0 0 16px; font-size: clamp(1.35rem, 3vw, 1.8rem); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.related-card { display: block; padding: 18px; border: 1px solid var(--line); border-radius: var(--r); background: var(--panel); text-decoration: none; cursor: pointer; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.3s var(--spring); }
.related-card:hover { border-color: var(--line-strong); box-shadow: 0 14px 34px rgba(125, 211, 252, 0.14); transform: translateY(-4px) scale(1.015); }
.related-card:focus-visible { outline: 2px solid var(--accent-mid); outline-offset: 3px; }
.related-card b { display: block; color: var(--text); font-size: 1rem; transition: color 0.2s var(--ease); }
.related-card b::after { content: ' →'; color: var(--accent-mid); opacity: 0; transition: opacity 0.2s var(--ease), margin-left 0.2s var(--ease); margin-left: 2px; }
.related-card:hover b { color: var(--accent-mid); }
.related-card:hover b::after { opacity: 1; margin-left: 6px; }
.related-card span { display: block; margin-top: 6px; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

.article .cta-band { margin: 64px 0 0; }

/* ---------- Contact page ---------- */
.contact-card { margin: 34px 0 0; padding: 32px 30px; border: 1px solid var(--line-strong); border-radius: var(--r); text-align: center; background: radial-gradient(ellipse 80% 150% at 0% 0%, rgba(125, 211, 252, 0.09), transparent 70%), var(--panel); }
.contact-card h2 { margin: 0 0 8px; font-size: clamp(1.4rem, 3vw, 1.95rem); }
.contact-card > p { margin: 0 auto 22px; max-width: 460px; color: var(--text); opacity: 0.82; font-size: 1.06rem; line-height: 1.55; }
.contact-or { margin: 18px 0 0 !important; font-size: 0.96rem; color: var(--muted); }
.contact-or a { color: var(--accent-mid); text-decoration: none; border-bottom: 1px solid var(--line-strong); }
.contact-or a:hover { color: var(--accent-end); }

/* Soothing article figure — self-contained inline SVG so there's no external
   image/CDN (CSP-safe). Swap the <svg> for a licensed <img> when you have one. */
.article-figure { margin: 30px 0 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--panel); }
.article-figure > svg, .article-figure > img { display: block; width: 100%; height: auto; }
.article-figure figcaption { padding: 11px 16px; font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.02em; color: var(--quiet); border-top: 1px solid var(--line); }
.prose .article-figure { margin: 1.9em 0 0; }
/* Optional photo slot: drop <img src="/your-photo.jpg" alt="..."> inside and it fills the frame. */
.article-figure .photo-slot { aspect-ratio: 16 / 7; display: flex; align-items: center; justify-content: center; color: var(--quiet); font-family: var(--mono); font-size: 0.76rem; text-align: center; padding: 20px; background: radial-gradient(ellipse 90% 140% at 20% 0%, rgba(196, 181, 253, 0.1), transparent 70%), radial-gradient(ellipse 90% 140% at 100% 100%, rgba(125, 211, 252, 0.1), transparent 70%); }

/* Light-mode contrast fixes for the reading column */
:root.light .prose a, :root.light .faq-answer a { color: #175e93; border-bottom-color: rgba(23, 94, 147, 0.4); }
:root.light .prose a:hover { color: #0f4a76; }
:root.light .contact-or a { color: #1f8fd0; border-bottom-color: rgba(31,143,208,0.4); }
:root.light .prose li::marker { color: #1f8fd0; }
:root.light .prose thead th { background: rgba(31, 143, 208, 0.1); }
:root.light .faq-item summary::after { color: #1f8fd0; }
:root.light .article-lede, :root.light .faq-answer, :root.light .related-card span { color: var(--muted); }

@media (max-width: 640px) {
  .article { padding: 20px 0 56px; }
  .faq-item summary { font-size: 1rem; }
}
