:root {
  /* Page (light) */
  --ink: #0b1220;
  --ink-2: #23304a;
  --muted: #5a6782;
  --hair: #e6e9f0;
  --paper: #fbfaf7;
  --paper-2: #f3f1eb;

  /* Brand — from the extension panel */
  --brand: #1a3a6b;
  --brand-2: #2458a6;
  --brand-ink: #0b1f3a;
  --cyan: #38bdf8;
  --cyan-2: #7dd3fc;

  /* Extension panel tokens — synced with real extension */
  --panel-bg: #1e293b;
  --panel-card: #334155;
  --panel-card-2: #475569;
  --panel-line: #475569;
  --panel-text: #e7edf7;
  --panel-muted: #8397b9;

  --ok: #2fbd78;
  --warn: #ff8a66;
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wm-a {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  display: inline-block;
  letter-spacing: -0.01em;
}
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

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

.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--paper) 85%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--hair);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; color: var(--ink);
  text-decoration: none;
}
.brand .mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--brand);
  display: grid; place-items: center;
  box-shadow: 0 6px 16px -6px rgba(26,58,107,.5);
}
.brand .mark svg { width: 18px; height: 18px; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a {
  color: var(--ink-2); text-decoration: none; font-size: 14px; font-weight: 500;
}
.nav-links a:hover { color: var(--brand); }
.nav-links a.nav-cta {
  background: var(--brand); color: #ffffff; border-radius: 999px;
  padding: 9px 16px; font-weight: 600; font-size: 13.5px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 14px -6px color-mix(in oklab, var(--brand) 70%, transparent),
              inset 0 1px 0 rgba(255,255,255,.18);
}
.nav-links a.nav-cta:hover { background: var(--brand-2); color: #ffffff; }

/* Language switcher (anchor pill) */
.lang-switcher {
  display: inline-flex;
  background: rgba(15,23,42,0.05);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-switcher a,
.lang-switcher span {
  padding: 4px 11px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-switcher a:hover {
  color: var(--ink); background: rgba(15,23,42,0.04);
  text-decoration: none;
}
.lang-switcher .active {
  background: white; color: var(--brand);
  box-shadow: 0 1px 2px rgba(15,23,42,0.08);
}

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

.hero {
  background:
    radial-gradient(1100px 480px at 85% -10%, rgba(26,58,107,.10), transparent 60%),
    radial-gradient(800px 380px at -5% 20%, rgba(26,58,107,.06), transparent 60%),
    var(--paper);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--hair);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--brand);
  padding: 6px 11px; border: 1px solid color-mix(in oklab, var(--brand) 25%, transparent);
  border-radius: 999px; background: color-mix(in oklab, var(--brand) 6%, white);
  letter-spacing: 0.02em;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px color-mix(in oklab, var(--ok) 20%, transparent); }

h1.hero-title {
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 20px 0 18px;
  font-weight: 800;
  color: var(--ink);
  text-wrap: balance;
}
h1 .accent-a { color: var(--brand); font-family: 'Caveat', cursive; }
.hero p.lede {
  font-size: 19px; line-height: 1.55; color: var(--ink-2); max-width: 560px;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px; border-radius: 10px; font-weight: 600; font-size: 15px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
}
.btn-primary {
  background: var(--brand); color: white;
  box-shadow: 0 10px 24px -10px rgba(26,58,107,.6), inset 0 1px 0 rgba(255,255,255,.14);
}
.btn-primary:hover { background: var(--brand-ink); }
.btn-ghost {
  background: white; color: var(--ink); border-color: var(--hair);
}
.btn-ghost:hover { border-color: #cfd4df; }
.cta-meta {
  margin-top: 14px; font-size: 13px; color: var(--muted);
  display: flex; gap: 18px; flex-wrap: wrap;
}
.cta-meta span { display: inline-flex; align-items: center; gap: 6px; }
.cta-meta svg { width: 14px; height: 14px; color: var(--ok); }

.supported-card {
  margin-top: 22px; padding: 14px 16px;
  background: white; border: 1px solid var(--hair); border-radius: 12px;
  display: flex; align-items: center; gap: 14px;
  max-width: 520px;
}
.supported-card .label {
  font-size: 11px; color: var(--muted); text-transform: uppercase;
  letter-spacing: .06em; font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}
.supported-card .sites { display: flex; gap: 8px; flex-wrap: wrap; }
.supported-card .site-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px; background: var(--paper-2);
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.supported-card .site-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }
.supported-card .more {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px;
  background: transparent; border: 1px dashed var(--hair);
  font-size: 12px; color: var(--muted);
}

/* ── Browser frame + listings ────────────────────────────────────────── */

.hero-visual { position: relative; }
.browser {
  background: white; border: 1px solid var(--hair); border-radius: 14px;
  box-shadow: 0 40px 80px -40px rgba(10,20,50,.28), 0 2px 6px rgba(10,20,50,.04);
  overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-bottom: 1px solid var(--hair);
  background: #fafbfd;
}
.dots { display: flex; gap: 6px; }
.dots i { width: 10px; height: 10px; border-radius: 50%; background: #e2e5ec; display: inline-block; }
.urlbar {
  flex: 1; height: 26px; border-radius: 6px; background: #eef0f5;
  display: flex; align-items: center; padding: 0 10px;
  font-size: 11.5px; color: var(--muted); gap: 6px;
  font-family: 'JetBrains Mono', monospace;
}
.urlbar svg { width: 10px; height: 10px; }
.ext-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; border: 1px solid var(--hair); border-radius: 6px;
  padding: 3px 8px; font-size: 11px; color: var(--brand);
  font-weight: 600;
}
.ext-chip .badge { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }

.browser-body {
  display: grid; grid-template-columns: 1fr 300px;
  position: relative;
  min-height: 460px;
}
.site { padding: 18px; border-right: 1px solid var(--hair); }
.site-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 14px;
}
.site-title { font-size: 13px; font-weight: 700; color: var(--ink-2); }
.site-sub { font-size: 11px; color: var(--muted); }
.listing {
  display: grid; grid-template-columns: 54px 1fr auto; gap: 10px;
  padding: 10px 8px; border-bottom: 1px dashed var(--hair);
  align-items: center;
}
.listing:last-child { border-bottom: 0; }
.thumb { width: 54px; height: 40px; border-radius: 6px; background: linear-gradient(135deg, #d5dae3, #eef0f5); position: relative; overflow: hidden; }
.thumb::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,.04) 0 4px, transparent 4px 8px);
}
.lst-title { font-size: 12px; font-weight: 600; color: var(--ink); }
.lst-meta { font-size: 10.5px; color: var(--muted); margin-top: 2px; }
.lst-price { font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 600; color: var(--ink); }

/* ── Extension panel mockup ──────────────────────────────────────────── */

.ext {
  background: var(--panel-bg);
  color: var(--panel-text);
  padding: 14px 14px 16px;
  display: flex; flex-direction: column;
  font-size: 12.5px;
}
.ext-header {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 2px 14px;
}
.ext-logo {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--brand); display: grid; place-items: center;
}
.ext-logo svg { width: 16px; height: 16px; }
.ext-name {
  font-family: "Caveat", "Georgia", serif;
  font-weight: 700; font-size: 20px; color: var(--cyan);
  letter-spacing: -0.01em; line-height: 1;
}
.ext-name .wm-a { color: var(--cyan); font-size: 1em; }
.ext-lang {
  margin-left: auto;
  font-size: 10.5px; color: var(--panel-muted);
  border: 1px solid var(--panel-line);
  border-radius: 6px; padding: 3px 7px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .04em;
}

.ext-tabs {
  display: flex; gap: 4px;
  border-bottom: 1px solid var(--panel-line);
  margin-bottom: 12px;
}
.ext-tab {
  padding: 8px 2px; font-size: 12px; font-weight: 500; color: var(--panel-muted);
  border-bottom: 2px solid transparent;
  flex: 1; text-align: center;
  cursor: default;
}
.ext-tab.active {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
  font-weight: 600;
}
.ext-tab .count {
  display: inline-block; margin-left: 4px;
  background: color-mix(in oklab, var(--cyan) 20%, var(--panel-bg));
  color: var(--cyan-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; padding: 1px 6px; border-radius: 8px;
}

.kpi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-bottom: 12px;
}
.kpi {
  background: var(--panel-card);
  border: 1px solid var(--panel-line);
  border-radius: 10px;
  padding: 10px 10px 11px;
}
.kpi label {
  font-size: 9.5px; color: var(--panel-muted);
  text-transform: uppercase; letter-spacing: .06em; font-weight: 600;
  display: block; margin-bottom: 4px;
}
.kpi .v {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px; font-weight: 700; color: #fff;
  letter-spacing: -.01em;
}
.kpi .u {
  font-size: 10px; color: var(--panel-muted); font-weight: 500;
  margin-left: 2px;
}

.range {
  background: var(--panel-card);
  border: 1px solid var(--panel-line);
  border-radius: 10px;
  padding: 10px 12px 12px;
  margin-bottom: 8px;
}
.range-head {
  display: flex; justify-content: space-between;
  font-size: 10.5px; color: var(--panel-muted);
  margin-bottom: 8px;
}
.range-head b { color: #fff; font-weight: 600; font-family: 'JetBrains Mono', monospace; }
.range-track {
  position: relative; height: 6px;
  background: var(--panel-line);
  border-radius: 4px;
}
.range-fill {
  position: absolute; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-2));
  border-radius: 4px;
}
.range-pin {
  position: absolute; top: -3px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; border: 2.5px solid var(--cyan);
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.range-axis {
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; color: var(--panel-muted);
  margin-top: 6px;
}

.ext-footer-chip {
  margin-top: auto;
  font-size: 10px; color: var(--panel-muted);
  display: flex; align-items: center; gap: 6px;
  padding-top: 10px;
  border-top: 1px dashed var(--panel-line);
}

/* ── Extension hero median card (synced with real extension) ─────────── */

.ext-hero {
  padding: 14px 16px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  border: 1px solid var(--panel-line);
  border-radius: 10px;
  margin-bottom: 10px;
}
.ext-hero-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; color: var(--panel-muted);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}
.ext-hero-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 30px; line-height: 1;
  color: #fff; font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.ext-hero-sub {
  font-size: 11px; color: var(--panel-muted);
  margin-top: 8px; display: flex; gap: 12px; flex-wrap: wrap;
}
.ext-hero-sub b { color: #cbd5e1; font-weight: 500; }

/* Mini stats (2-col) */
.ext-ministats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  margin-bottom: 10px;
}
.ext-ministat {
  padding: 9px 11px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--panel-line);
  border-radius: 9px;
}
.ext-ministat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; color: var(--panel-muted);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
  margin-bottom: 3px;
}
.ext-ministat-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px; font-weight: 500; color: #fff;
  letter-spacing: -0.01em;
}

/* Histogram bars (replaces range bar) */
.ext-distro {
  margin-top: 6px; margin-bottom: 4px;
}
.ext-distro-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 8px;
}
.ext-distro-head .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; color: var(--panel-muted);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}
.ext-distro-head .r {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--panel-muted);
}
.ext-hist {
  height: 40px;
  display: flex; align-items: flex-end; gap: 2px;
}
.ext-hist-bar {
  flex: 1; min-height: 3px;
  background: #64748b; opacity: 0.4;
  border-radius: 1.5px 1.5px 0 0;
}
.ext-hist-bar.iqr {
  background: var(--cyan); opacity: 0.85;
}
.ext-hist-base {
  height: 1px; background: var(--panel-line); margin-top: 2px;
}
.ext-hist-axis {
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; color: var(--panel-muted);
  margin-top: 6px;
}
.ext-hist-axis .m { color: var(--cyan); font-weight: 600; }

/* Per-listing verdict chip + inline position bar */
.ext-verdict {
  display: inline-flex; align-items: center; gap: 3px;
  margin-top: 3px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.02em;
  opacity: 0.9; white-space: nowrap;
}
.ext-verdict-under { color: #4ade80; }
.ext-verdict-fair { color: var(--panel-muted); }
.ext-verdict-over { color: #fbbf24; }
.ext-verdict-outlier { color: #f87171; }
.ext-posbar {
  margin-top: 5px; height: 2px;
  background: rgba(0,0,0,0.25);
  border-radius: 1px; position: relative;
}
.ext-posbar-iqr {
  position: absolute; top: 0; bottom: 0;
  background: var(--panel-line);
}
.ext-posbar-dot {
  position: absolute; top: -2px; width: 6px; height: 6px;
  border-radius: 50%; transform: translateX(-50%);
}

/* Confidence meter (5-segment) */
.ext-confidence {
  margin-top: 10px;
}
.ext-confidence-head {
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--panel-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 5px;
}
.ext-confidence-head .val { color: var(--cyan); }
.ext-confidence-meter {
  display: flex; gap: 3px; height: 5px;
}
.ext-confidence-seg {
  flex: 1; border-radius: 2px;
  background: var(--panel-line);
}
.ext-confidence-seg.on { background: var(--cyan); }

/* Extension scan bar (thin progress strip between tabs + body) */
.ext-scanbar {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--panel-line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--panel-muted);
}
.ext-scanbar b { color: #cbd5e1; font-weight: 500; }
.ext-scanbar .track {
  flex: 1; height: 3px; background: var(--panel-line); border-radius: 2px;
  overflow: hidden;
}
.ext-scanbar .fill { height: 100%; background: var(--cyan); }

/* ── Sections ─────────────────────────────────────────────────────────── */

section { padding: 100px 0; border-bottom: 1px solid var(--hair); }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 48px;
}
.section-kicker {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--brand);
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600;
  margin-bottom: 12px;
}
h2 {
  font-size: clamp(30px, 3.6vw, 46px); line-height: 1.05; letter-spacing: -0.02em;
  margin: 0; font-weight: 800; max-width: 640px; text-wrap: balance;
}
.section-head p {
  font-size: 16px; color: var(--ink-2); max-width: 380px; margin: 0;
  text-wrap: pretty;
}

/* Feature grid */
.features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.feature {
  background: white; border: 1px solid var(--hair); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 18px;
  min-height: 340px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -30px rgba(10,20,50,.2); }
.feature-num {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--muted); letter-spacing: .08em;
}
.feature h3 {
  margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
}
.feature p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; text-wrap: pretty; }
.feature-viz {
  margin-top: auto;
  border-radius: 10px; padding: 14px; height: 150px;
}
.feature-viz.dark {
  background: var(--panel-bg); color: var(--panel-text);
  border: 1px solid var(--panel-line);
}
.feature-viz.light {
  background: var(--paper-2);
  border: 1px solid color-mix(in oklab, var(--hair) 80%, white);
}

/* ── How it works ────────────────────────────────────────────────────── */

.how-it-works { background: var(--panel-bg); color: var(--panel-text); border-bottom: 0; }
.how-it-works .section-kicker { color: var(--cyan); }
.how-it-works h2 { color: white; }
.how-it-works .section-head p { color: rgba(255,255,255,.75); }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 48px;
}
.step {
  background: var(--panel-card);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius); padding: 24px;
}
.step-n {
  font-family: 'Caveat', cursive; font-size: 40px; color: var(--cyan);
  line-height: 1; margin-bottom: 10px;
}
.step h4 { margin: 0 0 10px; font-size: 17px; font-weight: 700; color: #fff; }
.step p { margin: 0; font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.55; }

/* Rate demo */
.rate-demo {
  display: grid; grid-template-columns: 360px 1fr; gap: 0;
  background: var(--panel-bg);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.45);
}
.rate-form {
  padding: 22px;
  border-right: 1px solid var(--panel-line);
  background: #0c1629;
}
.rate-form h5, .rate-result h5 {
  margin: 0 0 14px; font-size: 11.5px; font-weight: 600;
  letter-spacing: .08em; color: var(--cyan);
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}
.rate-field { margin-bottom: 14px; }
.rate-field label {
  display: block; font-size: 11px; color: var(--panel-muted);
  margin-bottom: 6px; font-weight: 500;
}
.rate-input {
  background: var(--panel-card); border: 1px solid var(--panel-line);
  border-radius: 8px; padding: 10px 12px;
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  color: #fff;
  display: flex; justify-content: space-between; align-items: center;
}
.rate-input .suf { color: var(--panel-muted); font-size: 11px; }

.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chips span {
  font-size: 11.5px; padding: 5px 10px; border-radius: 999px;
  background: var(--panel-card); border: 1px solid var(--panel-line); color: var(--panel-muted);
}
.chips span.on {
  background: color-mix(in oklab, var(--cyan) 18%, var(--panel-bg));
  color: var(--cyan);
  border-color: color-mix(in oklab, var(--cyan) 45%, transparent);
}

.speed { margin-top: 6px; }
.speed-track {
  position: relative; height: 6px;
  background: var(--panel-line); border-radius: 4px;
  margin: 8px 0 10px;
}
.speed-fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: 50%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-2));
  border-radius: 4px;
}
.speed-pin {
  position: absolute; top: -4px; left: calc(50% - 7px);
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 2.5px solid var(--cyan);
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.speed-labels {
  display: flex; justify-content: space-between;
  font-size: 10.5px; color: var(--panel-muted);
}
.speed-labels b { color: var(--cyan); font-weight: 600; }

.rate-result { padding: 26px 28px; }
.rate-result .meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--panel-muted);
  margin-bottom: 14px;
}
.rate-result .meta .acc {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px; border-radius: 999px;
  background: color-mix(in oklab, var(--ok) 15%, var(--panel-bg));
  color: var(--ok); border: 1px solid color-mix(in oklab, var(--ok) 35%, transparent);
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; font-weight: 600;
}

.price-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 22px;
}
.price-card {
  border: 1px solid var(--panel-line); border-radius: 12px; padding: 14px 16px;
  background: var(--panel-card);
}
.price-card label {
  font-size: 10.5px; color: var(--panel-muted);
  text-transform: uppercase; letter-spacing: .06em; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.price-card .p {
  font-family: 'JetBrains Mono', monospace; font-size: 22px; font-weight: 700; margin-top: 6px;
  color: #fff;
}
.price-card .sub { font-size: 11px; color: var(--panel-muted); margin-top: 4px; }
.price-card.mid {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--cyan) 14%, transparent);
  background: color-mix(in oklab, var(--cyan) 8%, var(--panel-card));
}
.price-card.mid .p { color: var(--cyan); }

.similar-head {
  font-size: 10.5px; color: var(--panel-muted);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase; letter-spacing: .08em;
  margin: 20px 0 10px; font-weight: 600;
}
.similar { display: flex; flex-direction: column; gap: 6px; }
.sim-row {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 14px; align-items: center;
  padding: 8px 12px;
  background: var(--panel-card);
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  font-size: 12px;
}
.sim-row .t { color: #fff; font-weight: 500; }
.sim-row .m { color: var(--panel-muted); font-family: 'JetBrains Mono', monospace; font-size: 11px; }
.sim-row .pr { color: var(--ok); font-family: 'JetBrains Mono', monospace; font-weight: 700; }

/* ── Showcase ─────────────────────────────────────────────────────────── */

.showcase { background: var(--paper-2); }
.screens {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.screen {
  background: var(--panel-bg);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.4);
  display: flex; flex-direction: column;
}
.screen-body { padding: 12px; flex: 1; display: flex; flex-direction: column; }
.screen-body > .ext { flex: 1; }
.screen-head {
  padding: 10px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; color: var(--panel-muted);
  letter-spacing: .06em; text-transform: uppercase;
  border-bottom: 1px solid var(--panel-line);
  display: flex; justify-content: space-between; align-items: center;
}
.screen-head .tag { color: var(--cyan); font-weight: 600; }
.screen-cap {
  padding: 14px 16px 16px;
  font-size: 12px; color: var(--ink-2);
  background: white;
  border-top: 1px solid var(--hair);
  min-height: 68px;
  margin-top: auto;
}
.screen-cap b { color: var(--ink); font-weight: 600; }

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

.privacy { background: var(--paper); }
.privacy-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.privacy-card {
  background: var(--panel-bg); color: var(--panel-text);
  border: 1px solid var(--panel-line); border-radius: var(--radius);
  padding: 22px; position: relative;
}
.privacy-card .head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 12px; margin-bottom: 10px; border-bottom: 1px solid var(--panel-line);
}
.privacy-card .head b { font-size: 12.5px; color: #fff; }
.privacy-card .head .status {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ok); display: inline-flex; align-items: center; gap: 6px;
}
.privacy-card .head .status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ok);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--ok) 20%, transparent);
}
.net-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px dashed var(--panel-line);
  font-family: 'JetBrains Mono', monospace; font-size: 11.5px;
}
.net-row:last-child { border-bottom: 0; }
.net-row .host { color: #fff; }
.net-row .type { color: var(--panel-muted); }
.net-row .res { color: var(--ok); font-weight: 600; }
.net-row .res.blocked { color: var(--panel-muted); }

/* ── Install ──────────────────────────────────────────────────────────── */

.install { background: var(--paper-2); text-align: center; }
.install h2 { margin: 0 auto 20px; max-width: 820px; }
.install p { font-size: 17px; color: var(--ink-2); max-width: 580px; margin: 0 auto 32px; text-wrap: pretty; }
.browsers {
  display: inline-flex; gap: 10px; align-items: center; flex-wrap: wrap; justify-content: center;
  margin-top: 30px; font-size: 13px; color: var(--muted);
}
.browsers .b {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border: 1px solid var(--hair); border-radius: 999px;
  background: white;
}
.note { margin-top: 18px; font-size: 13px; color: var(--muted); font-style: italic; }

/* ── Disclaimer ──────────────────────────────────────────────────────── */

.disclaimer {
  background: var(--ink); color: rgba(255,255,255,.85);
  padding: 48px 0;
  border-bottom: 0;
}
.disclaimer-inner {
  display: grid; grid-template-columns: 140px 1fr; gap: 40px; align-items: flex-start;
}
.disclaimer h3 { margin: 0 0 12px; color: white; font-size: 18px; }
.disclaimer p { margin: 0; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.7); }
.tag-note { font-family: 'Caveat', cursive; font-size: 32px; color: var(--cyan); line-height: 1; }

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

footer { padding: 40px 0; background: var(--ink); color: rgba(255,255,255,.6); font-size: 13px; }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-row a { color: rgba(255,255,255,.7); text-decoration: none; margin: 0 6px; }
.footer-row a:hover { color: white; }

/* ── Legal page ───────────────────────────────────────────────────────── */

.legal-page .container {
  max-width: 720px; margin: 0 auto;
  padding: 48px 28px 64px;
}
.legal-page h1 {
  font-size: 36px; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--ink); margin: 0 0 12px; font-weight: 800;
}
.legal-page h2 {
  font-size: 22px; line-height: 1.25; letter-spacing: -0.01em;
  margin: 36px 0 12px; color: var(--ink); font-weight: 700;
  max-width: none;
}
.legal-page h3 { font-size: 17px; margin: 22px 0 8px; }
.legal-page p, .legal-page li { font-size: 16px; color: var(--ink-2); line-height: 1.6; margin: 8px 0; }
.legal-page ul { padding-left: 20px; }
.legal-page a { color: var(--brand); }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .rate-demo { grid-template-columns: 1fr; }
  .rate-form { border-right: 0; border-bottom: 1px solid var(--panel-line); }
  .privacy-inner { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .nav-links a:not(.nav-cta):not([data-keep]) { display: none; }
  section { padding: 64px 0; }
  .disclaimer-inner { grid-template-columns: 1fr; }
  .screens { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .hero { padding: 48px 0 40px; }
  h1.hero-title {
    font-size: clamp(28px, 9vw, 40px);
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }
  .hero p.lede { font-size: 17px; }
  h2 { font-size: clamp(24px, 6.5vw, 30px); overflow-wrap: break-word; }
  section { padding: 48px 0; }
  .nav-row { height: 56px; }

  /* Browser mockup: stack site column and extension panel */
  .browser-body { grid-template-columns: 1fr; min-height: 0; }
  .site { border-right: 0; border-bottom: 1px solid var(--hair); }

  /* KPI + price tightens up */
  .kpi-grid { gap: 6px; }
  .kpi { padding: 8px 10px; }
  .kpi .v { font-size: 14px; }
  .price-row { grid-template-columns: 1fr; }
  .price-card .p { font-size: 20px; }

  /* Disclaimer + footer stack */
  .disclaimer-inner { gap: 20px; }
  .tag-note { font-size: 28px; }
  .footer-row { flex-direction: column; text-align: center; align-items: center; gap: 10px; }

  /* Rate demo padding */
  .rate-form { padding: 18px; }
  .rate-result { padding: 20px 18px; }

  /* Supported-sites card shrinks */
  .supported-card { flex-wrap: wrap; gap: 10px; }
}
