/* Avarus landing — design system */
:root {
  --bg: #0A0A0C;
  --bg-2: #131318;
  --surface: #16161C;
  --text: #FFFFFF;
  --text-2: oklch(82% 0.01 290);
  --muted: oklch(62% 0.015 290);
  --border: oklch(26% 0.012 290);
  --border-2: oklch(34% 0.015 290);
  --accent: #A855F7;
  --accent-ink: #ffffff;
  --accent-tint: color-mix(in oklab, var(--accent) 16%, var(--bg));
  --accent-soft: color-mix(in oklab, var(--accent) 22%, transparent);
  --good: oklch(72% 0.18 150);
  --warn: oklch(78% 0.16 75);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.5), 0 0 0 .5px rgba(255,255,255,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.55), 0 0 0 .5px rgba(255,255,255,.06);
  --shadow-lg: 0 24px 70px -20px rgba(0,0,0,.7), 0 0 0 .5px rgba(255,255,255,.08);

  --font-sans: 'Geist', ui-sans-serif, -apple-system, system-ui, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'JetBrains Mono', SFMono-Regular, monospace;

  --max-w: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
}

[data-theme="light"] {
  --bg: oklch(99% 0.003 290);
  --bg-2: oklch(97% 0.006 290);
  --surface: #ffffff;
  --text: oklch(18% 0.01 290);
  --text-2: oklch(38% 0.012 290);
  --muted: oklch(52% 0.012 290);
  --border: oklch(91% 0.008 290);
  --border-2: oklch(85% 0.01 290);
  --accent-tint: color-mix(in oklab, var(--accent) 12%, var(--bg));
  --shadow-sm: 0 1px 2px rgba(20,20,30,.04), 0 0 0 .5px rgba(20,20,30,.04);
  --shadow-md: 0 4px 12px rgba(20,20,30,.06), 0 0 0 .5px rgba(20,20,30,.06);
  --shadow-lg: 0 20px 60px -20px rgba(20,20,30,.18), 0 0 0 .5px rgba(20,20,30,.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Layout primitives */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: ""; width: 18px; height: 1px; background: currentColor; opacity: .55;
}

h1, h2, h3, h4 { letter-spacing: -.025em; font-weight: 600; margin: 0; }
h1 { font-size: clamp(40px, 5.6vw, 76px); line-height: 1.02; letter-spacing: -.035em; }
h2 { font-size: clamp(30px, 3.4vw, 46px); line-height: 1.05; letter-spacing: -.03em; }
h3 { font-size: 19px; line-height: 1.3; }
p  { margin: 0; }
.lead { font-size: 18px; color: var(--text-2); max-width: 56ch; line-height: 1.55; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px; font-weight: 500;
  border: 0; font-size: 15px; transition: transform .15s, background .15s, box-shadow .2s, border-color .15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--text); color: var(--bg);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent {
  background: var(--accent); color: var(--accent-ink);
}
.btn-accent:hover { transform: translateY(-1px); box-shadow: 0 6px 20px -6px var(--accent-soft); }
.btn-lg {
  padding: 16px 26px; font-size: 16px; font-weight: 600;
  letter-spacing: -.01em; border-radius: 999px;
}
.btn-glow {
  box-shadow:
    0 0 0 1px color-mix(in oklab, var(--accent) 30%, transparent),
    0 10px 28px -10px var(--accent),
    0 0 32px -6px color-mix(in oklab, var(--accent) 45%, transparent);
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px color-mix(in oklab, var(--accent) 50%, transparent),
    0 14px 38px -10px var(--accent),
    0 0 48px -4px color-mix(in oklab, var(--accent) 60%, transparent);
}
.btn-link {
  background: transparent; color: var(--text-2);
  padding: 12px 6px; font-size: 14.5px; font-weight: 500;
  border: 0;
}
.btn-link:hover { color: var(--text); }
.btn-link span { transition: transform .15s; display: inline-block; }
.btn-link:hover span { transform: translateX(3px); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { background: var(--bg-2); }
.btn-sm { padding: 8px 14px; font-size: 14px; }

/* ─── NAV ──────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 24px;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-weight: 700; font-size: 22px; letter-spacing: -.045em;
  color: var(--text);
  font-feature-settings: "ss01", "cv11", "cv06";
}
.brand::after {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); display: inline-block;
  transform: translateY(-1px);
}
.foot-col .brand { font-size: 26px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; color: var(--text-2); transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ─── HERO ─────────────────────────────────────────────────────── */
.hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 110px);
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 80px); align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero h1 .accent {
  color: var(--accent);
  white-space: nowrap;
}
.hero h1 .strike {
  position: relative; color: var(--muted); font-weight: 500;
}
.hero h1 .strike::after {
  content: ""; position: absolute; left: -4%; right: -4%; top: 52%;
  height: 4px; background: var(--accent); border-radius: 2px;
  transform: rotate(-3deg); opacity: .85;
}
.hero-sub { margin-top: 24px; }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 22px; display: flex; gap: 24px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px; color: var(--muted);
  letter-spacing: .02em;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--good);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--good) 18%, transparent);
}
.hero-quote {
  margin-top: 36px; padding: 18px 22px 18px 26px;
  border-left: 2px solid var(--accent);
  background: linear-gradient(90deg, var(--accent-tint), transparent 80%);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  max-width: 540px;
}
.hero-quote p {
  font-size: 16.5px; line-height: 1.45; color: var(--text);
  letter-spacing: -.005em; font-weight: 500;
  text-wrap: pretty;
}
.hero-quote p::before {
  content: "\201C"; color: var(--accent); font-size: 30px;
  line-height: 0; vertical-align: -.34em; margin-right: 4px;
  font-family: Georgia, serif; font-weight: 700;
}
.hero-quote p::after {
  content: "\201D"; color: var(--accent); font-size: 30px;
  line-height: 0; vertical-align: -.34em; margin-left: 3px;
  font-family: Georgia, serif; font-weight: 700;
}
.hero-quote cite {
  display: block; margin-top: 10px;
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--muted); letter-spacing: .06em;
  font-style: normal; text-transform: uppercase;
}
.hero-quote cite::before { content: "— "; opacity: .6; }

/* ─── STATS BAR ────────────────────────────────────────────────── */
.statsbar {
  margin: 0 auto; padding: 20px var(--pad-x);
  max-width: var(--max-w);
  display: flex; gap: 36px; align-items: baseline; justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.statsbar-item { display: flex; align-items: baseline; gap: 10px; }
.statsbar-num {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: 22px; font-weight: 600; letter-spacing: -.02em;
  color: var(--text);
}
.statsbar-lbl {
  font-size: 13px; color: var(--muted); letter-spacing: .01em;
}
.statsbar-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  display: inline-block; margin-right: 6px; position: relative; top: -1px;
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-soft); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

/* ─── DEMO ─────────────────────────────────────────────────────── */
.demo-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 12.5;
}
.browser-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.dots { display: flex; gap: 6px; }
.dots i {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--border-2); display: block;
}
.urlbar {
  flex: 1; height: 26px; border-radius: 7px; background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 12px;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--muted);
  letter-spacing: .01em;
}
.urlbar .lock { margin-right: 8px; opacity: .55; }
.ext-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 8px; border-radius: 6px; background: var(--accent-tint);
  border: .5px solid var(--accent-soft);
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--accent);
}
.ext-pill::before {
  content: ""; width: 8px; height: 8px; border-radius: 2px;
  background: var(--accent);
}

.demo-stage {
  position: absolute; inset: 47px 0 0 0;
  display: grid; grid-template-columns: 1fr 1fr;
  background:
    linear-gradient(var(--border) 1px, transparent 1px) 0 0 / 100% 28px,
    linear-gradient(90deg, var(--border) 1px, transparent 1px) 0 0 / 28px 100%,
    var(--bg-2);
  background-blend-mode: normal;
  opacity: 1;
}
.demo-pane {
  padding: 18px; position: relative;
  border-right: 1px dashed var(--border);
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
}
.demo-pane:last-child { border-right: 0; }
.demo-pane-hd {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.demo-pane-hd b {
  font-size: 12px; font-weight: 600; color: var(--text-2);
  letter-spacing: .01em;
  white-space: nowrap;
}
.demo-pane-hd span {
  font-family: var(--font-mono); font-size: 9.5px; color: var(--muted);
  letter-spacing: .04em; text-transform: uppercase;
  white-space: nowrap;
}

/* Single hero card — photo on top, info row below */
.car-card.solo {
  flex-direction: column;
  padding: 0;
  gap: 0;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.3,.7,.4,1), opacity .35s, border-color .2s;
}
.car-card.solo.switching {
  opacity: .35; transform: scale(.985);
}
.car-card.solo .car-thumb {
  width: 100%; height: clamp(108px, 15vw, 142px);
  border-radius: 0; border: 0;
  border-bottom: 1px solid var(--border);
}
.car-card.solo .car-info {
  padding: 14px 16px 8px;
}
.car-card.solo .car-title {
  font-size: 13.5px; font-weight: 600;
  margin: 0 0 5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.car-card.solo .car-meta {
  display: flex; gap: 6px; align-items: baseline;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--muted);
  white-space: nowrap;
}
.car-card.solo .car-price {
  font-weight: 600; color: var(--accent);
}
.car-card.solo .car-dot { opacity: .55; }
.car-card.solo .car-actions {
  display: flex; gap: 6px; justify-content: flex-end; align-items: center;
  padding: 6px 14px 14px;
}
.car-card.solo .car-cta {
  opacity: 1; transform: scale(1);
  padding: 7px 12px; font-size: 11.5px;
}
.car-card.solo .car-queue {
  appearance: none; padding: 7px 10px;
  border-radius: 6px;
  background: var(--bg-2); color: var(--text-2);
  border: 1px solid var(--border);
  font: inherit; font-size: 11px; font-weight: 500;
  letter-spacing: .01em;
  cursor: pointer; white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
  font-variant-numeric: tabular-nums;
}
.car-card.solo .car-queue:hover {
  background: var(--bg); border-color: var(--border-2); color: var(--text);
}
.car-card.solo.clicked { border-color: var(--accent); }
.car-card.solo.posted::before {
  top: 10px; right: 10px;
}

/* AutoTrader-style card (original; not branded) */
.car-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 8px;
  display: flex; gap: 10px; transition: border-color .2s, transform .2s;
  position: relative; overflow: hidden;
}
.car-card.posted::before {
  content: "POSTED"; position: absolute; top: 8px; right: 8px;
  font-family: var(--font-mono); font-size: 9px; padding: 2px 6px;
  background: var(--accent); color: var(--accent-ink);
  border-radius: 4px; letter-spacing: .08em;
}
.car-thumb {
  width: 96px; height: 64px; border-radius: 6px; flex-shrink: 0;
  border: 1px solid var(--border);
  background: linear-gradient(180deg,
    oklch(82% 0.02 230) 0%,
    oklch(78% 0.025 230) 58%,
    oklch(35% 0.015 230) 58%,
    oklch(28% 0.012 230) 100%);
  position: relative; overflow: hidden;
}
/* car body */
.car-thumb::before {
  content: ""; position: absolute;
  left: 14%; right: 14%; bottom: 22%;
  height: 22%;
  background: oklch(22% 0.01 230);
  border-radius: 4px;
}
/* cabin / roof */
.car-thumb::after {
  content: ""; position: absolute;
  left: 30%; right: 30%; bottom: 40%;
  height: 18%;
  background: oklch(22% 0.01 230);
  border-radius: 6px 6px 1px 1px;
}
/* SUV — taller cabin, narrower body */
.car-card[data-vehicle="suv"] .car-thumb {
  background: linear-gradient(180deg,
    oklch(80% 0.025 110) 0%,
    oklch(75% 0.03 110) 58%,
    oklch(32% 0.02 100) 58%,
    oklch(26% 0.015 100) 100%);
}
.car-card[data-vehicle="suv"] .car-thumb::before {
  left: 18%; right: 18%; bottom: 22%; height: 26%;
  background: oklch(20% 0.012 80);
}
.car-card[data-vehicle="suv"] .car-thumb::after {
  left: 26%; right: 26%; bottom: 44%; height: 26%;
  background: oklch(20% 0.012 80);
  border-radius: 4px 4px 1px 1px;
}
/* Sedan — sleeker, lower */
.car-card[data-vehicle="suv2"] .car-thumb {
  background: linear-gradient(180deg,
    oklch(78% 0.022 250) 0%,
    oklch(73% 0.028 250) 58%,
    oklch(30% 0.018 250) 58%,
    oklch(24% 0.014 250) 100%);
}
.car-card[data-vehicle="suv2"] .car-thumb::before {
  left: 12%; right: 12%; bottom: 24%; height: 20%;
  background: oklch(18% 0.012 250);
}
.car-card[data-vehicle="suv2"] .car-thumb::after {
  left: 32%; right: 32%; bottom: 42%; height: 16%;
  background: oklch(18% 0.012 250);
  border-radius: 8px 8px 1px 1px;
}
.car-info { flex: 1; min-width: 0; }
.car-title { font-size: 13px; font-weight: 600; margin: 2px 0 4px; }
.car-meta {
  font-family: var(--font-mono); font-size: 10.5px; color: var(--muted);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.car-price {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  color: var(--accent);
}
.car-cta {
  align-self: center;
  padding: 6px 10px; border-radius: 6px; font-size: 11px;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 500; border: 0;
  display: inline-flex; align-items: center; gap: 5px;
  transform: scale(.96); opacity: 0; transition: all .3s;
  white-space: nowrap;
}
.car-card.hot .car-cta { transform: scale(1); opacity: 1; }
.car-card.clicked { border-color: var(--accent); }

/* FB form-style panel (original; not branded) */
.fb-form { display: flex; flex-direction: column; gap: 8px; }
.fb-photos {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px;
  margin-bottom: 4px;
}
.fb-photo {
  aspect-ratio: 1; border-radius: 4px;
  background: linear-gradient(180deg,
    oklch(82% 0.02 230) 0%,
    oklch(75% 0.025 230) 55%,
    oklch(32% 0.015 230) 55%,
    oklch(24% 0.012 230) 100%);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  opacity: 0; transform: scale(.8);
  transition: opacity .25s, transform .25s;
}
.fb-photo::before {
  content: ""; position: absolute;
  left: 18%; right: 18%; bottom: 22%; height: 22%;
  background: oklch(20% 0.01 230); border-radius: 2px;
}
.fb-photo::after {
  content: ""; position: absolute;
  left: 30%; right: 30%; bottom: 40%; height: 18%;
  background: oklch(20% 0.01 230); border-radius: 3px 3px 1px 1px;
}
/* alternating tints so the 5 slots feel like distinct angles */
.fb-photo:nth-child(2) { background: linear-gradient(180deg,
    oklch(80% 0.025 90) 0%, oklch(74% 0.03 90) 55%,
    oklch(30% 0.018 80) 55%, oklch(24% 0.014 80) 100%); }
.fb-photo:nth-child(3) { background: linear-gradient(180deg,
    oklch(78% 0.022 250) 0%, oklch(72% 0.028 250) 55%,
    oklch(28% 0.018 250) 55%, oklch(22% 0.014 250) 100%); }
.fb-photo:nth-child(4) { background: linear-gradient(180deg,
    oklch(82% 0.018 170) 0%, oklch(76% 0.022 170) 55%,
    oklch(32% 0.016 170) 55%, oklch(24% 0.012 170) 100%); }
.fb-photo:nth-child(5) { background: linear-gradient(180deg,
    oklch(80% 0.022 40) 0%, oklch(74% 0.026 40) 55%,
    oklch(28% 0.015 40) 55%, oklch(22% 0.012 40) 100%); }
.fb-photo.in { opacity: 1; transform: scale(1); }
.fb-row { display: flex; flex-direction: column; gap: 3px; }
.fb-lbl {
  font-family: var(--font-mono); font-size: 9px;
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
}
.fb-input {
  height: 24px; border: 1px solid var(--border); border-radius: 5px;
  padding: 0 8px; font-size: 11px; background: var(--surface);
  color: var(--text);
  display: flex; align-items: center;
  font-family: var(--font-mono);
}
.fb-input.filling::after {
  content: "▍"; color: var(--accent); margin-left: 2px;
  animation: caret 1s steps(2) infinite;
}
@keyframes caret { 50% { opacity: 0; } }
.fb-input.textarea { height: 48px; align-items: flex-start; padding: 6px 8px;
  font-family: var(--font-sans); font-size: 10.5px; line-height: 1.4;
  white-space: normal;
}
.fb-publish {
  align-self: flex-end; margin-top: 4px;
  padding: 7px 14px; border-radius: 6px; font-size: 11px;
  background: var(--text); color: var(--bg); border: 0; font-weight: 500;
}

/* Cursor */
.demo-cursor {
  position: absolute; width: 18px; height: 22px;
  pointer-events: none; z-index: 10;
  transition: transform .85s cubic-bezier(.65,0,.35,1);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.25));
}
.demo-cursor.click::after {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 2.5px solid var(--accent); animation: clickRing .55s ease-out;
}
@keyframes clickRing {
  from { transform: scale(.15); opacity: 1; }
  to   { transform: scale(2.0); opacity: 0; }
}
/* Button press-down state during click */
.car-cta.pressed, .fb-publish.pressed {
  transform: scale(.93) !important;
  filter: brightness(.92);
  transition: transform .12s, filter .12s;
}

/* Demo step indicator */
.demo-steps {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.demo-steps i {
  width: 24px; height: 3px; border-radius: 2px;
  background: var(--border-2); transition: background .3s;
}
.demo-steps i.on { background: var(--accent); }

/* ─── SECTIONS ─────────────────────────────────────────────────── */
section { padding: clamp(72px, 9vw, 120px) 0; position: relative; }
section + section { border-top: 1px solid var(--border); }

.sect-hd { margin-bottom: 56px; max-width: 720px; }
.sect-hd .eyebrow { margin-bottom: 16px; }
.sect-hd .lead { margin-top: 16px; }

/* ─── FEATURES ─────────────────────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feat {
  background: var(--bg);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 12px;
  transition: background .2s;
}
.feat:hover { background: var(--bg-2); }
.feat-ic {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--accent-tint);
  border: .5px solid var(--accent-soft);
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: 8px;
}
.feat-ic svg { width: 18px; height: 18px; }
.feat h3 { font-size: 16px; font-weight: 600; }
.feat p { font-size: 14px; color: var(--text-2); line-height: 1.55; }

/* ─── PRICING ──────────────────────────────────────────────────── */
.starter-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.starter-banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 200px at 0% 100%, var(--accent-tint), transparent 70%);
  opacity: .8; pointer-events: none;
}
.starter-banner > * { position: relative; }
.starter-left { display: flex; flex-direction: column; gap: 6px; }
.starter-headline {
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 600; letter-spacing: -.025em;
  line-height: 1.1;
  margin: 4px 0 0;
}
.starter-sub {
  font-size: 14.5px; color: var(--text-2); max-width: 56ch;
  line-height: 1.5;
}
.starter-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.starter-meta {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  letter-spacing: .02em;
}
@media (max-width: 720px) {
  .starter-banner { grid-template-columns: 1fr; padding: 22px; }
  .starter-right { align-items: stretch; }
  .starter-right .btn { justify-content: center; }
}

.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }
.tier {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative; transition: border-color .2s, transform .2s;
}
.tier:hover { border-color: var(--border-2); }
.tier.featured {
  border-color: color-mix(in oklab, var(--accent) 55%, var(--border));
  background: var(--bg);
  box-shadow:
    var(--shadow-md),
    0 0 0 1px color-mix(in oklab, var(--accent) 35%, transparent),
    0 28px 60px -28px var(--accent);
  position: relative;
  transform: translateY(-6px);
}
.tier.featured::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--accent) 22%, transparent) 0%,
    transparent 40%);
  z-index: 0;
}
.tier.featured > * { position: relative; z-index: 1; }
.tier.featured .tier-badge {
  background: var(--accent); color: var(--accent-ink);
  border: 0; box-shadow: 0 6px 16px -6px var(--accent);
}
.tier-badge {
  position: absolute; top: -10px; right: 20px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 9px; border-radius: 4px;
  background: var(--accent); color: var(--accent-ink);
}
.tier-name {
  font-size: 13px; font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-2);
}
.tier-price {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--font-mono);
}
.tier-price .num { font-size: 44px; font-weight: 600; letter-spacing: -.03em; color: var(--text); }
.tier-price .num.tbd { font-size: 28px; color: var(--muted); font-weight: 500; }
.tier-price .unit { font-size: 13px; color: var(--muted); }
.tier-desc { font-size: 14px; color: var(--text-2); line-height: 1.5; }
.tier ul { list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.tier li {
  font-size: 14px; color: var(--text-2);
  display: flex; gap: 10px; align-items: flex-start;
  line-height: 1.45;
}
.tier li::before {
  content: ""; flex-shrink: 0; width: 16px; height: 16px;
  border-radius: 50%; background: var(--accent-tint);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2.5 6.2 5 8.5 9.5 4' fill='none' stroke='%23A855F7' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: center; background-repeat: no-repeat;
  margin-top: 2px;
}
.tier li.pending {
  color: var(--muted); font-style: italic; opacity: .8;
}
.tier li.pending::before {
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><circle cx='6' cy='6' r='4' fill='none' stroke='rgba(0,0,0,.3)' stroke-width='1' stroke-dasharray='1.5 1.5'/></svg>");
}
.tier li .tag {
  font-family: var(--font-mono); font-size: 10px; padding: 2px 6px;
  background: var(--bg-2); border: .5px solid var(--border);
  border-radius: 4px; color: var(--muted); letter-spacing: .04em;
  margin-left: 6px;
}
.tier-foot {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  text-align: center; margin-top: -4px;
}
.tier-cta { width: 100%; justify-content: center; }

/* ─── ROADMAP ──────────────────────────────────────────────────── */
.roadmap-stages {
  display: flex; flex-direction: column; gap: 56px;
}
.rm-stage-hd {
  display: flex; align-items: baseline; gap: 12px;
  padding-bottom: 14px; margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.rm-stage-dot {
  width: 8px; height: 8px; border-radius: 50%;
  align-self: center;
}
.rm-stage-dot.live  { background: var(--good); box-shadow: 0 0 0 4px color-mix(in oklab, var(--good) 18%, transparent); }
.rm-stage-dot.soon  { background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.rm-stage-dot.phase { background: var(--warn); box-shadow: 0 0 0 4px color-mix(in oklab, var(--warn) 18%, transparent); }
.rm-stage-title {
  font-size: 18px; font-weight: 600; letter-spacing: -.02em;
  margin: 0; color: var(--text);
}
.rm-stage-count {
  margin-left: auto; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted);
}
.rm-stage-flow {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.rm-card {
  flex: 1 1 280px; max-width: 360px;
  padding: 18px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color .18s ease, transform .18s ease;
}
.rm-card:hover {
  border-color: var(--border-2);
  transform: translateY(-1px);
}
.rm-card h4 {
  font-size: 15px; font-weight: 600; margin: 0 0 6px;
  letter-spacing: -.01em;
}
.rm-card p {
  font-size: 13.5px; color: var(--text-2); line-height: 1.5; margin: 0;
  text-wrap: pretty;
}
@media (max-width: 600px) {
  .rm-card { flex-basis: 100%; max-width: 100%; }
}

/* ─── VOICES (social proof band) ───────────────────────────────── */
.voices { padding: 96px 0; border-top: 1px solid var(--border); }
.voices-hd { max-width: 720px; margin-bottom: 48px; }
.voices-hd h2 {
  font-size: clamp(28px, 3.5vw, 38px); letter-spacing: -.025em;
  margin-top: 14px; text-wrap: balance;
}
.voices-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 880px) { .voices-grid { grid-template-columns: 1fr; } }
.voice {
  position: relative;
  padding: 28px 24px 22px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  min-height: 220px;
}
.voice blockquote {
  flex: 1; margin: 0 0 18px;
  font-size: 16px; line-height: 1.5; letter-spacing: -.005em;
  color: var(--text); font-weight: 500; text-wrap: pretty;
}
.voice figcaption {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.voice figcaption b {
  font-size: 13.5px; font-weight: 600; color: var(--text);
  letter-spacing: -.005em;
}
.voice figcaption span {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
}
.voice-placeholder {
  background: transparent;
  border-style: dashed;
  border-color: var(--border-2);
}
.voice-placeholder blockquote {
  color: var(--muted); font-weight: 400; font-style: italic;
}
.voice-placeholder figcaption b,
.voice-placeholder figcaption span { color: var(--muted); opacity: .8; }
.voice-stamp {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
  padding: 4px 8px; border-radius: 4px;
  border: 1px dashed var(--border-2);
  background: var(--bg);
}

/* ─── FAQ ──────────────────────────────────────────────────────── */
.faq { max-width: 820px; }
.faq details {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-size: 18px; font-weight: 500; letter-spacing: -.01em;
  transition: color .15s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary::after {
  content: ""; flex-shrink: 0; width: 16px; height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8h10M8 3v10' fill='none' stroke='currentColor' stroke-width='1.6' stroke-linecap='round'/></svg>");
  transition: transform .25s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: 14px; color: var(--text-2); font-size: 15px;
  line-height: 1.6; max-width: 680px;
}

/* ─── CONTACT ──────────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 18px; display: flex; gap: 14px; align-items: center;
}
.contact-card .ic {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--bg-2); display: grid; place-items: center;
  color: var(--text-2);
}
.contact-card b { font-size: 14px; display: block; margin-bottom: 2px; }
.contact-card span { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }

.form { display: flex; flex-direction: column; gap: 18px;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  background: var(--surface);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
}
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 15px;
  background: transparent; color: var(--text);
  border: 0; border-bottom: 1px solid var(--border);
  padding: 10px 0; outline: none;
  transition: border-color .15s;
  resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: var(--accent);
}
.field textarea { min-height: 100px; }
.form-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.form-foot small { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }

/* ─── FOOTER ───────────────────────────────────────────────────── */
.foot {
  border-top: 1px solid var(--border);
  padding: 48px 0 36px;
}
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-col h4 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
  font-weight: 500;
}
.foot-col ul { list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14px; color: var(--text-2); transition: color .15s; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px; color: var(--muted);
}
.foot-bottom .links { display: flex; gap: 20px; }

/* ─── REVEAL ANIMATIONS ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .06s; }
.reveal.d2 { transition-delay: .12s; }
.reveal.d3 { transition-delay: .18s; }
.reveal.d4 { transition-delay: .24s; }

/* ─── DIRECTION B: EDITORIAL ──────────────────────────────────── */
[data-direction="b"] h1 {
  font-size: clamp(56px, 9vw, 132px);
  letter-spacing: -.05em;
  line-height: .92;
}
[data-direction="b"] .hero-grid {
  grid-template-columns: 1fr;
  gap: 56px;
}
[data-direction="b"] .hero-content {
  text-align: left;
}
[data-direction="b"] .demo-shell { aspect-ratio: 16 / 8.5; }
[data-direction="b"] .sect-hd {
  display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: end;
  max-width: none;
}
[data-direction="b"] .sect-hd .sect-num {
  font-family: var(--font-mono); font-size: clamp(56px, 7vw, 96px);
  font-weight: 500; color: var(--accent); letter-spacing: -.04em;
  line-height: 1; opacity: .9;
}
[data-direction="b"] .sect-hd h2 { font-size: clamp(36px, 4.4vw, 60px); }
[data-direction="b"] .feat-grid {
  background: transparent; border: 0; border-radius: 0; gap: 0;
}
[data-direction="b"] .feat {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-2);
}
[data-direction="b"] .feat:hover { background: var(--accent-tint); }
[data-direction="b"] .statsbar {
  border: 0; padding: 0;
  overflow: hidden; height: 56px;
  position: relative;
}
[data-direction="a"] .sect-num { display: none; }

[data-direction="b"] .marquee-track {
  display: flex; gap: 56px; align-items: center;
  position: absolute; top: 0; left: 0; height: 100%;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  font-family: var(--font-mono);
  font-size: 15px; color: var(--text-2);
}
[data-direction="b"] .marquee-track .num { color: var(--accent); font-weight: 600; }
[data-direction="b"] .marquee-track .sep { color: var(--border-2); }
[data-direction="a"] .marquee-track { display: none; }
[data-direction="a"] .statsbar-line { display: flex; }
[data-direction="b"] .statsbar-line { display: none; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── MOBILE TIDY ──────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero-meta { gap: 14px; }
  .statsbar { gap: 20px; padding: 18px var(--pad-x); }
  .statsbar-num { font-size: 18px; }
  .foot-grid { gap: 24px; }
}


/* ═══════════════════════════════════════════════════════════════
   REVIEWS PAGE
   ═══════════════════════════════════════════════════════════════ */

.reviews-hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 5vw, 64px);
}
.reviews-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.reviews-hero .lead { max-width: 60ch; }

.rev-summary {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(32px, 5vw, 64px);
  margin-top: 48px; padding: 32px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg);
  align-items: center;
}
@media (max-width: 700px) {
  .rev-summary { grid-template-columns: 1fr; gap: 28px; padding: 24px; }
}
.rev-summary-left { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.rev-avg {
  font-family: var(--font-mono); font-size: 64px; font-weight: 600;
  letter-spacing: -.035em; line-height: 1;
  color: var(--text);
}
.rev-summary-left .stars.lg svg { width: 22px; height: 22px; }
.rev-count {
  font-family: var(--font-mono); font-size: 12px; color: var(--muted);
  letter-spacing: .04em;
}

.rev-breakdown { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.bd-row {
  display: grid; grid-template-columns: 28px 1fr 32px; gap: 12px;
  align-items: center; padding: 4px 8px; border-radius: 6px;
  background: transparent; border: 0; cursor: pointer; color: inherit;
  font-family: inherit; transition: background .15s;
  text-align: left;
}
.bd-row:hover { background: var(--bg-2); }
.bd-row.on { background: var(--accent-tint); }
.bd-lbl {
  font-family: var(--font-mono); font-size: 12px; color: var(--text-2);
}
.bd-bar {
  height: 6px; border-radius: 999px; background: var(--bg-2);
  border: 1px solid var(--border); overflow: hidden;
}
.bd-bar i {
  display: block; height: 100%; background: var(--accent);
  transition: width .6s cubic-bezier(.3,.7,.4,1);
}
.bd-c {
  font-family: var(--font-mono); font-size: 12px; color: var(--muted);
  text-align: right; font-variant-numeric: tabular-nums;
}

/* Star atoms */
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars svg { width: 14px; height: 14px; }
.stars.lg svg { width: 18px; height: 18px; }
.stars .empty { color: var(--border-2); }

/* ─── FORM ─────────────────────────────────────────── */
.rev-form-section { padding-bottom: clamp(72px, 9vw, 110px); }

#review-form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px);
  display: flex; flex-direction: column; gap: 24px;
}
.rev-form-hd { display: flex; flex-direction: column; gap: 6px; }
.rev-form-hd h2 { font-size: clamp(24px, 2.6vw, 32px); }
.rev-form-hd p { color: var(--text-2); font-size: 15px; }

.star-input { display: inline-flex; gap: 4px; align-items: center; }
.star-input .star-btn {
  background: transparent; border: 0; padding: 4px;
  color: var(--border-2); cursor: pointer; transition: color .12s, transform .12s;
}
.star-input .star-btn:hover { transform: scale(1.1); }
.star-input .star-btn svg { width: 28px; height: 28px; }
.star-input .star-btn.on { color: var(--accent); }
.star-input .star-btn.on svg { fill: currentColor; }

#rating-label {
  margin-left: 12px; font-family: var(--font-mono); font-size: 13px;
  color: var(--accent); letter-spacing: .02em;
  display: inline-block; min-width: 80px;
}

#review-form .field textarea { min-height: 120px; line-height: 1.5; }
#body-count {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  letter-spacing: .04em; align-self: flex-end;
}
#body-count.warn { color: var(--accent); }
.form-errors {
  color: oklch(58% 0.18 28); font-size: 13px;
  font-family: var(--font-mono); letter-spacing: .01em;
}

.rev-success { text-align: center; padding: 32px 8px; display: flex;
  flex-direction: column; align-items: center; gap: 12px; }
.rev-success-ic {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent);
  display: grid; place-items: center; font-size: 28px;
  margin-bottom: 8px;
}
.rev-success h3 { font-size: 22px; }
.rev-success p { color: var(--text-2); max-width: 40ch; }

/* ─── LIST ─────────────────────────────────────────── */
.rev-list-section { padding: clamp(48px, 6vw, 80px) 0 clamp(80px, 10vw, 120px); }

.rev-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.rev-toolbar h2 { font-size: clamp(22px, 2.2vw, 28px); }
.rev-toolbar-right {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--font-mono); font-size: 12px; color: var(--muted);
}
#rev-result-count { letter-spacing: .04em; }
#rev-sort {
  font-family: var(--font-mono); font-size: 13px; padding: 8px 10px;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  outline: none; cursor: pointer;
}
#rev-clear {
  background: transparent; border: 0; color: var(--accent);
  font-family: var(--font-mono); font-size: 12px; cursor: pointer;
  padding: 4px 0; letter-spacing: .04em;
}
#rev-clear:hover { text-decoration: underline; }

.rev-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.rev-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s, transform .25s, box-shadow .25s;
  position: relative;
}
.rev-card.flash {
  animation: flashIn 1.2s ease-out;
}
@keyframes flashIn {
  0%   { box-shadow: 0 0 0 3px var(--accent-soft); transform: translateY(-4px); }
  100% { box-shadow: 0 0 0 0 transparent; transform: translateY(0); }
}
.rev-card-hd {
  display: flex; justify-content: space-between; align-items: center;
}
.rev-card-hd time {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--muted);
  letter-spacing: .02em;
}
.rev-card h3 {
  font-size: 17px; line-height: 1.3; letter-spacing: -.01em;
}
.rev-body {
  font-size: 14.5px; color: var(--text-2); line-height: 1.55;
  flex: 1;
}
.rev-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--border); padding-top: 14px;
}
.rev-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--border);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  color: var(--text-2); letter-spacing: -.02em;
  flex-shrink: 0;
}
.rev-author > div { flex: 1; min-width: 0; }
.rev-author b {
  font-size: 13.5px; font-weight: 600; display: block;
  letter-spacing: -.01em;
}
.rev-author span {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--muted);
  letter-spacing: .02em;
  display: block;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rev-tag {
  font-family: var(--font-mono); font-size: 10px; padding: 3px 7px;
  border-radius: 4px; letter-spacing: .08em; text-transform: uppercase;
  white-space: nowrap;
}
.rev-tag.sample {
  background: var(--bg-2); color: var(--muted);
  border: .5px solid var(--border);
}
.rev-tag.pending {
  background: color-mix(in oklab, var(--warn) 14%, var(--bg));
  color: oklch(58% 0.16 75);
}

.rev-empty {
  grid-column: 1 / -1;
  text-align: center; padding: 56px 16px;
  border: 1px dashed var(--border); border-radius: var(--r-md);
}
.rev-empty h3 { margin-bottom: 8px; }
.rev-empty p { color: var(--muted); }

/* sample banner */
.rev-sample-banner {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--r-md);
  background: var(--bg-2); border: 1px dashed var(--border);
  font-family: var(--font-mono); font-size: 12px; color: var(--text-2);
  letter-spacing: .02em;
  margin-bottom: 24px;
}
.rev-sample-banner::before {
  content: "ⓘ"; font-size: 14px; color: var(--accent);
}
