@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;400;500;600;700;800&family=JetBrains+Mono:wght@400;700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

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

:root {
  /* — Brand colors — */
  --bg:             #0a0908;
  --surface:        #141110;
  --surface-raised: #1c1917;
  --border:         #29221f;
  --border-subtle:  #1e1916;
  --accent:         #FF6B6B;
  --accent-dim:     #d94f4f;
  --accent-glow:    rgba(255, 107, 107, 0.11);
  --amber:          #FBBC05;
  --green:          #34A853;
  --text:           #F2EAE6;
  --text-mid:       #A89790;
  --text-muted:     #7a6e68;

  /* — Extension chrome (zinc scale, for popup mockups) — */
  --ext-bg:     #1c1c1e;
  --ext-border: #3f3f46;
  --ext-hi:     #f4f4f5;
  --ext-mid:    #a1a1aa;
  --ext-lo:     #71717a;
  --ext-dim:    #52525b;

  /* — Typography — */
  --font-display: 'Outfit', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --font-body:    'DM Sans', sans-serif;
  --font-ui:      -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* — Layout — */
  --w-content:   1140px;
  --gap-section: 120px;
  --r:           16px;
  --r-sm:        10px;

  /* — Shadows — */
  --shadow-popup: 0 1px 3px rgba(0,0,0,.4), 0 0 0 1px rgba(255,107,107,.10), 0 40px 80px rgba(0,0,0,.55);
  --shadow-img:   0 0 0 1px rgba(255,255,255,.04), 0 32px 80px rgba(0,0,0,.65);
  --shadow-lift:  0 8px 32px rgba(255,107,107,.28);

  /* — Motion — */
  --t-snap: 0.12s;
  --t-fast: 0.15s;
  --t-base: 0.2s;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Subtle grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Nav ───────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: var(--w-content);
  margin: 0 auto;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav-logo em { color: var(--accent); font-style: normal; }
.nav-logo:hover { text-decoration: none; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 22px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 999px;
  transition: background var(--t-fast), transform var(--t-snap);
}

.nav-cta:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ─── Hero ──────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px 60px;
}

@media (max-width: 780px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 20px 60px;
    gap: 48px;
  }
}

.hero-glow {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse at top right, rgba(255,107,107,0.07), transparent 65%);
  pointer-events: none;
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  pointer-events: none;
  opacity: 0.06;
}

.hero-wave svg { width: 100%; height: 100%; }

.hero-wave-line {
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: drawLine 2.4s ease-out forwards 0.4s;
}

@keyframes drawLine { to { stroke-dashoffset: 0; } }

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s ease-out both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

.eyebrow-version {
  background: rgba(255, 107, 107, 0.12);
  color: var(--accent);
  font-size: 0.62rem;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 107, 0.2);
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 40px;
}

@media (max-width: 780px) { .hero-lead { max-width: none; } }

/* ─── Button ────────────────────────────────────────────────── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  transition: background var(--t-fast), transform var(--t-snap), box-shadow var(--t-fast);
}

.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  text-decoration: none;
}

/* ─── Demo card ─────────────────────────────────────────────── */

.hero-demo {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s ease-out 0.15s both;
  display: flex;
  justify-content: center;
}

.demo-card {
  background: var(--ext-bg);
  border-radius: 12px;
  padding: 20px 24px 24px;
  box-shadow: var(--shadow-popup);
  width: 268px;
  position: relative;
  text-align: center;
  font-family: var(--font-ui);
}

.demo-theme-btn {
  position: absolute;
  top: 12px; left: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--ext-border);
  background: var(--ext-bg);
  color: var(--ext-lo);
  display: flex; align-items: center; justify-content: center;
  cursor: default; pointer-events: none; padding: 0;
}

.demo-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ext-mid);
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
}

.demo-brand::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,107,0.25), transparent);
}

.demo-track-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--ext-mid);
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demo-tap { margin-bottom: 8px; }

.demo-tap-btn {
  width: 100%;
  padding: 7px;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--accent);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: default;
  pointer-events: none;
}

.demo-status-text {
  font-size: 10px;
  font-weight: 600;
  color: var(--ext-lo);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.demo-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 28px;
  margin: 0 auto 4px;
}

.dw {
  display: block;
  width: 3px;
  height: 6px;
  border-radius: 1.5px;
  background: var(--accent);
  animation: waveBar 1.4s ease-in-out infinite;
}

.dw:nth-child(1) { animation-delay: 0.0s; }
.dw:nth-child(2) { animation-delay: 0.1s; }
.dw:nth-child(3) { animation-delay: 0.2s; }
.dw:nth-child(4) { animation-delay: 0.3s; }
.dw:nth-child(5) { animation-delay: 0.4s; }
.dw:nth-child(6) { animation-delay: 0.5s; }
.dw:nth-child(7) { animation-delay: 0.6s; }

@keyframes waveBar {
  0%, 100% { height: 6px; opacity: 0.3; }
  15%       { height: 26px; opacity: 1; }
  30%       { height: 6px; opacity: 0.35; }
  50%       { height: 14px; opacity: 0.7; }
  65%       { height: 6px; opacity: 0.3; }
}

.demo-bpm-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}

.demo-bpm {
  font-size: 72px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ext-hi);
  font-family: var(--font-ui);
  transition: color 0.45s;
  min-width: 2ch;
  text-align: right;
}

.demo-bpm-unit {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ext-lo);
  align-self: flex-end;
  margin-bottom: 8px;
}

.demo-conf-row {
  min-height: 10px;
  margin-bottom: 4px;
}

.demo-groove-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ext-mid);
  margin-bottom: 8px;
  min-height: 14px;
  transition: color 0.4s;
}

.demo-range-display {
  min-height: 38px;
}

.demo-range-variance {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ext-lo);
  margin-bottom: 5px;
  min-height: 13px;
}

.demo-range-bar-wrap {
  position: relative;
  width: 100%;
  height: 4px;
  background: var(--ext-border);
  border-radius: 2px;
  margin-bottom: 6px;
}

.demo-range-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: var(--accent);
  opacity: 0.5;
  border-radius: 2px;
  width: 0%;
  transition: width 0.8s ease;
}

.demo-range-marker {
  position: absolute;
  top: -3px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
  box-shadow: 0 0 4px rgba(255, 107, 107, 0.4);
  transition: left 0.8s ease;
  left: 100%;
}

.demo-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ext-lo);
}

/* ─── Main ──────────────────────────────────────────────────── */

main {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 48px;
}

/* ─── Screenshot ────────────────────────────────────────────── */

.screenshot-section {
  margin-bottom: var(--gap-section);
  position: relative;
  padding-top: 20px;
}

.screenshot-halo {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,107,107,0.07), transparent 65%);
  pointer-events: none;
}

.screenshot-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 600px) {
  .screenshot-duo { grid-template-columns: 1fr; }
  .screenshot-duo .screenshot-item:last-child { display: none; }
}

.screenshot-item {
  width: 100%;
  max-width: 400px;
}

.screenshot-item-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 12px;
  text-align: center;
}

.screenshot-item img {
  border-radius: 14px;
  width: 100%;
  display: block;
  box-shadow: var(--shadow-img);
}

/* ─── Features ──────────────────────────────────────────────── */

.features-section { margin-bottom: var(--gap-section); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: border-color var(--t-base), transform var(--t-base);
}

.feature-card:hover {
  border-color: rgba(255,107,107,0.22);
  transform: translateY(-2px);
}

.f-wide {
  grid-column: 1 / -1;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.f-wide .feature-icon-wrap {
  margin-bottom: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 1px solid rgba(255,107,107,0.16);
  border-radius: var(--r-sm);
  color: var(--accent);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.feature-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── States ────────────────────────────────────────────────── */

.states-section { margin-bottom: var(--gap-section); }

.states-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 560px) { .states-grid { grid-template-columns: 1fr; } }

.state-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base);
}

.state-card:hover { transform: translateY(-2px); }
.state-locked  { border-color: rgba(52, 168, 83, 0.22); }
.state-mid     { border-color: rgba(251, 188, 5, 0.18); }

/* ─── Ext-card: CSS replica of extension UI ─────────────────── */

.ext-card {
  background: var(--ext-bg);
  padding: 14px 16px 16px;
  font-family: var(--font-ui);
  text-align: center;
  position: relative;
}

.ext-theme-btn {
  position: absolute;
  top: 10px; left: 10px;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--ext-border);
  background: var(--ext-bg);
  color: var(--ext-dim);
  display: flex; align-items: center; justify-content: center;
  cursor: default; pointer-events: none; padding: 0;
}

.ext-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ext-lo);
  margin-bottom: 8px;
  padding-bottom: 8px;
  position: relative;
}

.ext-brand::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,107,0.2), transparent);
}

.ext-track {
  font-size: 10px;
  color: var(--ext-lo);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ext-tap-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

.ext-tap-btn {
  padding: 4px 20px;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: inherit;
  cursor: default;
  pointer-events: none;
}

.ext-status {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ext-dim);
  margin-bottom: 4px;
}

.ext-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 30px;
  margin-bottom: 2px;
}

.ewb {
  display: block;
  width: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.ext-bpm-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.ext-bpm {
  font-size: 52px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ext-hi);
  font-family: var(--font-ui);
}

.ext-bpm-unit {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ext-dim);
  align-self: flex-end;
  margin-bottom: 5px;
}

.ext-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 5px;
  min-height: 14px;
}

.ext-range-variance {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ext-dim);
  margin-bottom: 3px;
}

.ext-range-bar-wrap {
  position: relative;
  width: 100%;
  height: 3px;
  background: var(--ext-border);
  border-radius: 2px;
  margin-bottom: 4px;
}

.ext-range-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: var(--accent);
  opacity: 0.5;
  border-radius: 2px;
}

.ext-range-marker {
  position: absolute;
  top: -3px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
  box-shadow: 0 0 4px rgba(255, 107, 107, 0.4);
}

.ext-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--ext-dim);
}

.state-caption {
  padding: 14px 16px;
  text-align: center;
  background: var(--surface);
}

.state-caption strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.state-caption span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── Audience ──────────────────────────────────────────────── */

.audience-section { margin-bottom: var(--gap-section); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border-subtle);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

@media (max-width: 560px) { .audience-grid { grid-template-columns: 1fr; } }

.audience-card {
  background: var(--surface);
  padding: 32px 28px;
  transition: background var(--t-base);
}

.audience-card:hover { background: var(--surface-raised); }

.audience-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.audience-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.audience-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── Privacy ───────────────────────────────────────────────── */

.privacy-section { margin-bottom: var(--gap-section); }

.privacy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--r);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 560px) {
  .privacy-card { grid-template-columns: 1fr; padding: 28px; }
  .privacy-shield { display: none; }
}

.privacy-shield {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 1px solid rgba(255,107,107,0.16);
  border-radius: var(--r-sm);
  color: var(--accent);
  flex-shrink: 0;
}

.privacy-heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.privacy-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.privacy-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--accent);
}

/* ─── Final CTA ─────────────────────────────────────────────── */

.cta-section {
  text-align: center;
  padding: 60px 0 120px;
}

.cta-wave {
  margin-bottom: 48px;
  opacity: 0.22;
}

.cta-wave svg {
  width: 100%;
  max-width: 600px;
  height: 50px;
}

.cta-wave-line {
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: drawLine 2s ease-out forwards 0.8s;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 16px;
}

.cta-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* ─── Footer ────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 28px 24px;
  max-width: none;
  text-align: left;
  margin: 0;
}

.footer-inner {
  max-width: var(--w-content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.site-footer a { color: var(--text-muted); }
.site-footer a:hover { color: var(--accent); text-decoration: none; }

/* ─── Privacy page ──────────────────────────────────────────── */

header {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px 0;
}

footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

footer a { color: var(--text-muted); }
footer a:hover { color: var(--accent); }

.prose {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 0 24px;
}

.prose h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.prose .updated {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 36px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}

.prose p, .prose li {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-top: 8px;
  line-height: 1.75;
}

.prose ul { padding-left: 20px; }
.prose li { margin-top: 6px; }
.prose a  { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  .hero-wave-line,
  .cta-wave-line,
  .hero-content,
  .hero-demo { animation: none; }
  .eyebrow-dot { animation: none; }
  .dw { animation: none; }
}
