/* ---------- design tokens (matches slabbr extension) ---------- */
:root {
  --bg: #0a0a0d;
  --bg-soft: #111116;
  --bg-card: #15151c;
  --line: #27272a;
  --line-soft: #1d1d24;
  --text: #e4e4e7;
  --muted: #71717a;
  --muted-2: #a1a1aa;
  --accent: #4ade80;
  --accent-dim: rgba(74, 222, 128, 0.18);
  --warn: #facc15;
  --orange: #fb923c;
  --red: #f87171;

  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --serif: "Instrument Serif", "Times New Roman", serif;

  --max: 1100px;
  --pad: clamp(20px, 4vw, 48px);
  --radius: 8px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
kbd {
  font-family: var(--mono);
  font-size: 0.85em;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 4px;
  padding: 1px 6px;
  color: var(--text);
}
code {
  font-family: var(--mono);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 1px 5px;
  font-size: 0.9em;
  color: var(--accent);
}

/* ---------- ambient background ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 15% 0%, rgba(74,222,128,0.06), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(74,222,128,0.04), transparent 60%);
  z-index: 0;
}
main, .topbar, .footer { position: relative; z-index: 1; }

/* ---------- topbar ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px var(--pad);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(10, 10, 13, 0.85);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.brand-mark {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.brand-mark svg { display: block; }
.brand-name { font-weight: 700; letter-spacing: 0.2em; }
.brand-ver { color: var(--muted); font-size: 11px; letter-spacing: 0.1em; }
.topnav { display: flex; gap: 22px; align-items: center; font-size: 13px; color: var(--muted-2); }
.topnav a { transition: color .15s ease; }
.topnav a:hover { color: var(--text); }
.cta-link { color: var(--accent) !important; }

/* ---------- shared ---------- */
section {
  padding: clamp(60px, 10vw, 120px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.section-title {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin: 0 0 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-title .num {
  color: var(--accent);
  font-weight: 700;
}

/* ---------- hero ---------- */
.hero {
  padding-top: clamp(48px, 8vw, 84px);
  padding-bottom: clamp(32px, 6vw, 60px);
}
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  margin-bottom: 28px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.dot.good {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.meta-sep { opacity: 0.4; }

.hero-headline {
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(36px, 6.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.hero-headline .hl {
  color: var(--accent);
}
.hero-headline .tagline {
  font-family: "Big Shoulders Display", "Impact", sans-serif;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  font-size: 1.18em;
  line-height: 0.92;
  display: inline-block;
}
.hero-headline .tagline .hl {
  color: var(--accent);
  text-shadow: 0 0 32px rgba(74, 222, 128, 0.35);
}

.hero-sub {
  max-width: 640px;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--muted-2);
  line-height: 1.65;
  margin: 0 0 36px;
}
.hero-sub strong { color: var(--text); font-weight: 500; }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.btn-primary {
  background: var(--accent);
  color: #0a0a0d;
  box-shadow: 0 0 0 1px var(--accent), 0 8px 24px -8px var(--accent);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--muted); background: var(--bg-soft); }
.btn-block { width: 100%; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--bg);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- demo window ---------- */
.demo {
  padding-top: 32px;
  padding-bottom: 80px;
}
.demo-window {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--bg-soft);
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.8);
}
.demo-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #0e0e14;
  border-bottom: 1px solid var(--line-soft);
}
.demo-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--line);
}
.demo-dot:nth-child(1) { background: #ef4444; }
.demo-dot:nth-child(2) { background: #f59e0b; }
.demo-dot:nth-child(3) { background: #22c55e; }
.demo-url {
  margin-left: 14px;
  font-size: 12px;
  color: var(--muted);
}
.demo-body {
  position: relative;
  min-height: 540px;
  padding: 24px;
  display: flex;
  gap: 24px;
}
.demo-stage {
  flex: 1;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  background:
    /* faint blurred "shelves of cards" backdrop, color blobs through heavy blur */
    radial-gradient(ellipse 30% 25% at 18% 22%, rgba(239,68,68,0.18), transparent 60%),
    radial-gradient(ellipse 28% 24% at 78% 18%, rgba(34,211,238,0.16), transparent 60%),
    radial-gradient(ellipse 32% 30% at 30% 78%, rgba(250,204,21,0.14), transparent 60%),
    radial-gradient(ellipse 28% 26% at 82% 70%, rgba(167,139,250,0.16), transparent 60%),
    radial-gradient(ellipse at 50% 60%, #1a1a22 0%, #0a0a0d 75%);
}
.demo-stage::before {
  /* heavy blur layer that mimics out-of-focus video noise */
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(40px);
  background:
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.demo-stage > * { position: relative; z-index: 1; }

/* Top-right Whatnot-style chrome */
.demo-stage-overlay-tr {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.demo-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.9);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 5px 9px;
  border-radius: 3px;
}
.demo-live-badge span {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
.demo-viewers {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  color: #e4e4e7;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 3px;
  backdrop-filter: blur(8px);
}

/* Card propped on stand */
.demo-card-scene {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0 8px;
}
.demo-card-svg {
  height: 86%;
  max-height: 360px;
  width: auto;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.65));
  transform: rotate(-1.5deg);
}

/* Footer bar with bid */
.demo-stage-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent);
}
.demo-stage-meta { display: flex; flex-direction: column; gap: 2px; }
.demo-card-label {
  font-size: 11px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.demo-card-bids {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.demo-bid-pill {
  background: var(--warn);
  color: #0a0a0d;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px -10px var(--warn);
}

/* ---------- overlay mock (matches extension overlay) ---------- */
.overlay-mock {
  width: 320px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
}
.ov-head {
  padding: 14px 14px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.ov-name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.ov-set {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.ov-chip {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  border-radius: 3px;
  background: var(--accent-dim);
  color: var(--accent);
  white-space: nowrap;
}
.ov-row {
  display: flex;
  gap: 6px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--line-soft);
}
.ov-pill {
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 3px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  color: var(--muted-2);
}
.ov-pill-warn { color: var(--warn); border-color: rgba(250, 204, 21, 0.3); }

.ov-hero {
  display: flex;
  gap: 14px;
  padding: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
}
.ov-image {
  width: 60px;
  height: 84px;
  flex-shrink: 0;
}
.ov-price { display: flex; flex-direction: column; gap: 2px; }
.ov-price-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.ov-price-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 16px rgba(74, 222, 128, 0.4);
  line-height: 1;
}
.ov-price-delta {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.ov-section {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
}
.ov-section-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ov-ladder {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
}
.ov-cell {
  background: var(--bg);
  padding: 8px 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ov-cell span:first-child {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.ov-cell span:last-child { font-size: 11px; color: var(--text); }
.ov-cell.selected {
  background: var(--accent-dim);
}
.ov-cell.selected span:first-child { color: var(--accent); }
.ov-cell.selected span:last-child { color: var(--accent); font-weight: 700; }
.ov-cell.muted span:last-child { color: var(--muted); }

.ov-tracker {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(74, 222, 128, 0.08);
  box-shadow: inset 0 0 0 1px rgba(74, 222, 128, 0.25);
}
.ov-tracker-head {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.ov-tracker-amt { color: var(--warn); font-weight: 700; letter-spacing: 0.06em; }
.ov-tracker-profit {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  align-items: baseline;
}
.ov-tracker-label { font-size: 10px; color: var(--muted); letter-spacing: 0.12em; }
.ov-tracker-val { font-size: 18px; color: var(--accent); font-weight: 700; }
.ov-tracker-bar {
  margin-top: 8px;
  height: 4px;
  background: var(--line-soft);
  border-radius: 2px;
  overflow: hidden;
}
.ov-tracker-bar span {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent);
}

.ov-cta {
  margin: 14px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  border-radius: 4px;
  cursor: pointer;
  transition: background .15s ease;
}
.ov-cta:hover { background: var(--accent-dim); }

/* ---------- how it works ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.how-step {
  background: var(--bg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.how-step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
}
.how-step h3 {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}
.how-step p { color: var(--muted-2); margin: 0; font-size: 14px; line-height: 1.6; }

/* ---------- features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .15s ease, transform .15s ease;
}
.feature:hover {
  border-color: var(--line);
  transform: translateY(-2px);
}
.feature-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
}
.feature h3 {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}
.feature p { color: var(--muted-2); margin: 0; font-size: 13px; line-height: 1.6; }
.feature .g { color: var(--accent); }
.feature .o { color: var(--orange); }
.feature .r { color: var(--red); }

/* ---------- join ---------- */
.join-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.join-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, var(--accent-dim), transparent 60%);
  pointer-events: none;
}
.join-card > * { position: relative; }
.join-headline h2 {
  font-family: var(--mono);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.join-headline p { color: var(--muted-2); margin: 0; font-size: 14px; line-height: 1.65; }

.join-form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }

/* Honeypot — hidden from humans + assistive tech, present in DOM for bots. */
.hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.field label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.field input {
  font-family: var(--mono);
  font-size: 14px;
  padding: 13px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.15);
}

.btn-primary[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  filter: none;
}
.btn-spinner {
  display: none;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(10,10,13,0.3);
  border-top-color: #0a0a0d;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn-primary.loading .btn-label { opacity: 0.6; }
.btn-primary.loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-hint { font-size: 12px; color: var(--muted); margin: 0; }
.form-status {
  margin: 0;
  font-size: 13px;
  min-height: 18px;
  letter-spacing: 0.02em;
}
.form-status.ok { color: var(--accent); }
.form-status.err { color: var(--red); }

/* ---------- faq ---------- */
.faq details {
  border-top: 1px solid var(--line-soft);
  padding: 18px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding-right: 8px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 20px;
  transition: transform .2s ease;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.7;
  padding-right: 30px;
}
.faq details p strong { color: var(--text); }

/* ---------- screenshot slot ---------- */
.demo-shot {
  display: block;
  max-width: var(--max);
  margin: 0 auto 32px;
  padding: 0 var(--pad);
}
.demo-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
}

/* ---------- pricing ---------- */
.pricing { /* uses base section spacing */ }
.pricing-lead {
  text-align: center;
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.65;
  max-width: 640px;
  margin: -8px auto 36px;
}
.pricing-lead strong { color: var(--text); font-weight: 500; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tier {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .15s ease, transform .15s ease;
}
.tier:hover { border-color: var(--muted); transform: translateY(-2px); }

.tier-best {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(74,222,128,0.05), var(--bg-card) 40%);
  position: relative;
}
.tier-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
}

.tier-head { display: flex; flex-direction: column; gap: 4px; }
.tier-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  color: var(--text);
}
.tier-price { display: flex; align-items: baseline; gap: 4px; }
.tier-amt {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.tier-per { color: var(--muted); font-size: 13px; }
.tier-tag { color: var(--muted-2); font-size: 12px; margin: 0; letter-spacing: 0.04em; }

.tier-feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.5;
  flex: 1;
}
.tier-feats li::before {
  content: "→ ";
  color: var(--accent);
  margin-right: 4px;
}
.tier-feats strong { color: var(--text); font-weight: 500; }

.pricing-fineprint {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin: 28px 0 0;
  letter-spacing: 0.04em;
}

/* ---------- legal pages (privacy / terms) ---------- */
.legal {
  max-width: 760px;
  margin: 32px auto;
  padding: 0 var(--pad);
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.7;
}
.legal h1 {
  font-size: 32px;
  color: var(--text);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.legal h2 {
  font-size: 18px;
  color: var(--text);
  margin: 36px 0 8px;
  letter-spacing: 0.02em;
}
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 14px; padding-left: 22px; }
.legal li { margin: 6px 0; }
.legal strong { color: var(--text); font-weight: 600; }
.legal a { color: var(--accent); }
.legal a:hover { text-decoration: underline; }
.legal-meta {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 24px !important;
}
.legal code {
  background: var(--bg-soft);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 32px var(--pad);
  max-width: var(--max);
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
}
.footer-row { display: flex; align-items: center; gap: 10px; }
.footer-meta { display: flex; gap: 10px; letter-spacing: 0.1em; }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .topnav a:not(.cta-link) { display: none; }

  .demo-body { flex-direction: column; padding: 16px; }
  .demo-stage { min-height: 200px; }
  .overlay-mock { width: 100%; }

  .how-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  .join-card { grid-template-columns: 1fr; padding: 28px; gap: 28px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta a { width: 100%; }
  .stat-num { font-size: 22px; }
  .pricing-grid { grid-template-columns: 1fr; }
}
