/* ============================================================================
   CleanPick Dev — site design system v2  ·  "Geist Console" + refined emerald
   Matches the product (extension) exactly: true-neutral #FAFAFA surface, ONE
   accent = refined emerald #10B981 (primary action + focus only), layered
   neutral shadow-rings, system-sans + mono, 4/8 spacing grid, fluid type,
   automatic dark mode, restrained motion. Loaded by every page.
   ============================================================================ */
:root {
  color-scheme: light;

  /* Neutral palette */
  --bg: #fafafa;
  --card: #ffffff;
  --invert: #171717;        /* dark surface: footer, CTA banner, dark tile      */
  --ink: #171717;
  --ink-2: #525252;
  --muted: #6e6e6e;         /* AA-safe label/meta on white                      */
  --muted-soft: #8f8f8f;    /* decorative only                                  */
  --line: rgba(0, 0, 0, 0.10);
  --line-2: rgba(0, 0, 0, 0.06);
  --control: #f2f2f2;
  --control-hover: #ebebeb;
  --border-strong: #c9c9c9;

  /* ONE accent — refined emerald (mirrors the product token) */
  --accent: #10b981;
  --accent-hover: #059669;
  --accent-tint: rgba(16, 185, 129, 0.14);
  /* AA-safe emerald (white text ≈ 5.4:1, on #fafafa ≈ 5.4:1): solid button fills,
     body-size emerald links, focus ring, heading highlights. Keeps --accent (the
     signature ramp/proof/studio color) untouched. */
  --accent-strong: #047857;
  --accent-strong-hover: #065f46;
  --ok: #17803d;
  --bad: #c2261a;
  --warn: #b45309;

  /* legacy aliases → accent, so any leftover var(--mint*) resolves correctly */
  --mint: var(--accent);
  --mint-deep: var(--accent-hover);
  --mint-ink: #ffffff;

  /* Spacing — strict 4/8 scale */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px; --s5: 20px; --s6: 24px;
  --s8: 32px; --s10: 40px; --s12: 48px; --s16: 64px; --s20: 80px; --s24: 96px;

  /* Radii */
  --r-xl: 12px; --r-lg: 8px; --r-md: 6px; --r-sw: 4px;

  /* Elevation recipes (ported from the product) + a flat resting tier */
  --cp-ring: 0 0 0 1px rgba(0, 0, 0, 0.1);
  --cp-card-flat: 0 0 0 1px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.04);
  --cp-card: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(50, 50, 93, 0.08), 0 4px 8px -4px rgba(0, 0, 0, 0.06);
  --cp-card-hover: 0 0 0 1px rgba(0, 0, 0, 0.14), 0 1px 2px rgba(0, 0, 0, 0.06),
    0 8px 16px -6px rgba(50, 50, 93, 0.12);
  --cp-hero: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06),
    0 2px 5px rgba(50, 50, 93, 0.1), 0 6px 14px -6px rgba(50, 50, 93, 0.12);
  --cp-button: inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 0 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.16);
  --cp-button-hover: inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 0 1px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.18),
    0 4px 8px -4px rgba(0, 0, 0, 0.1);
  --cp-focus: 0 0 0 2px var(--card), 0 0 0 4px var(--accent-strong);

  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Code", "JetBrains Mono", "SF Mono", Menlo,
    Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }   /* belt-and-braces: no leaked x-scroll */
body {
  margin: 0;
  background-color: var(--bg);
  /* engineering substrate: faint 1px drafting grid + static paper grain */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.022) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.018'/%3E%3C/svg%3E");
  background-size: 64px 64px, 64px 64px, 160px 160px;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  counter-reset: sec;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; line-height: 1.12; text-wrap: balance; }
p { margin: 0; }
code { overflow-wrap: anywhere; }
section { scroll-margin-top: 72px; }

/* ── Accessibility ─────────────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--accent-strong); outline-offset: 2px; border-radius: 4px; }
.btn:focus-visible, summary:focus-visible, .nav-burger:focus-visible { outline: none; box-shadow: var(--cp-focus); }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--invert); color: #fff; padding: 10px 16px; border-radius: var(--r-lg);
  font-size: 14px; font-weight: 600;
}
.skip:focus { left: 12px; top: 12px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Micro-polish ──────────────────────────────────────────────────────────── */
::selection { background: var(--accent-tint); }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.16); border-radius: 9999px;
  border: 3px solid transparent; background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover { background-color: rgba(0, 0, 0, 0.3); }
.chip, .mock .line b, .plan .amt, code, [data-tnum] {
  font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1;
}

/* ── Layout ─────────────────────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 var(--s6); }
.narrow { max-width: 880px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); background: var(--card);
  padding: var(--s2) var(--s3); border-radius: 999px; box-shadow: var(--cp-ring);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ok);
  box-shadow: 0 0 0 3px rgba(23, 128, 61, 0.16);
}
/* section labels — lighter sibling of the eyebrow, anchored by an accent rule */
.label {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
}
.label::before { content: ""; width: 16px; height: 1px; background: var(--accent); }
.sec-head.center .label { justify-content: center; }

/* ── Buttons ──────────────────────────────────────────────────────────────────  */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  font-family: var(--sans); font-weight: 500; font-size: 14px; letter-spacing: -0.01em;
  padding: 10px 18px; border-radius: var(--r-lg); border: 0; cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn-mint { background: var(--accent-strong); color: #fff; box-shadow: var(--cp-button); }
.btn-mint:hover { background: var(--accent-strong-hover); transform: translateY(-1px); box-shadow: var(--cp-button-hover); }
.btn-mint:active { transform: translateY(0); }
.btn-ghost { background: var(--control); color: var(--ink); box-shadow: 0 0 0 1px var(--line); }
.btn-ghost:hover { background: var(--control-hover); transform: translateY(-1px); }
.btn-dark { background: var(--invert); color: #fff; box-shadow: var(--cp-button); }
.btn-dark:hover { transform: translateY(-1px); box-shadow: var(--cp-button-hover); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 13px 22px; font-size: 15px; border-radius: 10px; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; transform: none !important; box-shadow: var(--cp-ring); }

/* ── Nav ──────────────────────────────────────────────────────────────────────  */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: var(--s4); }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; letter-spacing: -0.02em; }
.brand .mark { width: 22px; height: 22px; border-radius: var(--r-md); background: var(--invert); display: grid; place-items: center; }
.brand .mark span { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.brand small { font-family: var(--mono); color: var(--muted); font-weight: 500; }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--ink-2); font-weight: 500; }
.nav-links a { display: inline-flex; align-items: center; padding: 6px 0; }
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: var(--s3); }

/* Mobile menu — no-JS <details> disclosure */
.nav-mobile { display: none; position: relative; }
.nav-burger {
  list-style: none; width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: var(--r-lg); cursor: pointer; background: var(--card); box-shadow: var(--cp-ring);
}
.nav-burger::-webkit-details-marker { display: none; }
.nav-menu {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 220px;
  background: var(--card); border-radius: var(--r-xl); box-shadow: var(--cp-hero);
  display: flex; flex-direction: column; gap: 2px; padding: var(--s2);
}
.nav-menu a { padding: 12px 14px; min-height: 44px; display: flex; align-items: center; font-size: 15px; color: var(--ink-2); border-radius: var(--r-md); }
.nav-menu a:hover { background: var(--control); color: var(--ink); }
.nav-menu .btn { margin-top: var(--s2); }

/* ── Sections ─────────────────────────────────────────────────────────────────  */
.sec { padding: var(--s20) 0; }
.sec-head { max-width: 680px; margin-bottom: var(--s12); }
.sec-head.center { margin: 0 auto var(--s12); text-align: center; }
.sec-head h2 { font-size: clamp(24px, 4.6vw, 34px); font-weight: 600; margin-top: var(--s2); letter-spacing: -0.03em; }
.sec-head h2 .hl { color: var(--accent-strong); }
.sec-head p { font-size: 16px; color: var(--ink-2); margin-top: var(--s3); max-width: 56ch; text-wrap: pretty; }
.sec-head.center p { margin-left: auto; margin-right: auto; }

/* ── Content / legal pages ─────────────────────────────────────────────────── */
.page { padding: var(--s16) 0 var(--s2); }
.page h1 { font-size: clamp(28px, 6vw, 40px); font-weight: 600; margin-top: var(--s4); letter-spacing: -0.03em; }
.page .updated { color: var(--muted); font-size: 13px; margin-top: var(--s4); font-family: var(--mono); }
.page .intro { color: var(--ink-2); font-size: 17px; margin-top: var(--s4); max-width: 64ch; }

.prose { max-width: 72ch; padding-bottom: var(--s8); }
.prose h2 { font-size: 21px; font-weight: 600; margin: var(--s10) 0 var(--s2); letter-spacing: -0.02em; }
.prose h3 { font-size: 15px; font-weight: 600; margin: var(--s6) 0 var(--s1); color: var(--ink); }
.prose p, .prose li { color: var(--ink-2); font-size: 15px; }
.prose p { margin: var(--s3) 0; }
.prose ul { padding-left: 20px; margin: var(--s3) 0; display: flex; flex-direction: column; gap: var(--s2); }
.prose strong { color: var(--ink); }
.prose a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 2px; }
.prose code { font-family: var(--mono); font-size: 13px; background: var(--control); padding: 1px 6px; border-radius: 5px; }
.prose .box { background: var(--card); border-radius: var(--r-xl); padding: var(--s5) var(--s6); box-shadow: var(--cp-card-flat); margin: var(--s5) 0; }
.prose .box.mint { box-shadow: 0 0 0 1px var(--accent), 0 0 0 4px var(--accent-tint); }
.prose dl { display: grid; grid-template-columns: max-content 1fr; gap: var(--s2) var(--s5); margin: var(--s2) 0 0; }
.prose dt { font-weight: 600; color: var(--ink); font-size: 14px; }
.prose dd { margin: 0; color: var(--ink-2); font-size: 15px; }
@media (max-width: 560px) { .prose dl { grid-template-columns: 1fr; gap: 2px 0; } .prose dt { margin-top: var(--s3); } }

/* ── Cards / icons ─────────────────────────────────────────────────────────── */
.card { background: var(--card); border-radius: var(--r-xl); padding: var(--s6); box-shadow: var(--cp-card-flat); transition: box-shadow 0.15s ease; }
.card:hover { box-shadow: var(--cp-card-hover); }
.card .ico { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--control); color: var(--ink); margin-bottom: var(--s4); }
.card h3 { font-size: 16px; font-weight: 600; }
.card p { color: var(--ink-2); font-size: 14px; margin-top: var(--s2); }
.card.dark { background: var(--invert); color: #fff; box-shadow: var(--cp-card); }
.card.dark .ico { background: #262626; color: #fff; }
.card.dark p { color: #a3a3a3; }

/* ── Pricing plans ─────────────────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s5); max-width: 820px; margin: 0 auto; }
.plan { background: var(--card); border-radius: var(--r-xl); padding: var(--s8); box-shadow: var(--cp-card-flat); }
.plan.pro { box-shadow: var(--cp-hero); position: relative; }
.plan h3 { font-size: 15px; font-weight: 600; color: var(--muted); }
.plan .amt { font-size: 40px; font-weight: 600; letter-spacing: -0.03em; margin: var(--s2) 0 2px; }
.plan .amt small { font-size: 15px; color: var(--muted); font-weight: 500; }
.plan ul { list-style: none; padding: 0; margin: var(--s5) 0; display: flex; flex-direction: column; gap: var(--s3); }
.plan li { display: flex; gap: var(--s2); font-size: 14px; color: var(--ink-2); align-items: flex-start; }
.plan li svg { flex: none; color: var(--ok); margin-top: 2px; }
.plan .btn { width: 100%; }
.plan .fine { font-size: 12px; color: var(--muted); margin-top: var(--s2); text-align: center; }

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.faq { max-width: 820px; display: flex; flex-direction: column; gap: var(--s2); }
.faq.center { margin: 0 auto; }
.faq details { background: var(--card); border-radius: var(--r-lg); box-shadow: var(--cp-ring); overflow: hidden; }
.faq summary { cursor: pointer; padding: var(--s4) var(--s5); font-weight: 600; font-size: 15px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--s4); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; width: 9px; height: 9px; border-right: 1.6px solid var(--muted); border-bottom: 1.6px solid var(--muted); transform: rotate(45deg); transition: transform 0.15s ease; flex: none; margin-right: 4px; }
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .a { padding: 0 var(--s5) var(--s4); color: var(--ink-2); font-size: 14px; }
.faq .a a { color: var(--accent-strong); text-decoration: underline; }
.contact-row { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s2); }

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero { padding: var(--s16) 0 var(--s8); }
.hero h1 .hl { color: var(--accent-strong); }
.hero .lead { font-size: 17px; color: var(--ink-2); margin-top: var(--s5); max-width: 52ch; text-wrap: pretty; }
.hero .lead strong { color: var(--ink); font-weight: 600; }
.hero-cta { display: flex; gap: var(--s3); margin-top: var(--s8); flex-wrap: wrap; }
.hero-note { margin-top: var(--s4); font-size: 13px; color: var(--muted); }
.hero-trust { display: flex; align-items: center; gap: var(--s4); margin-top: var(--s6); font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.hero-trust .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border-strong); }

.visual { position: relative; width: 100%; }
.browser { background: var(--card); border-radius: var(--r-xl); box-shadow: var(--cp-hero); overflow: hidden; max-width: 380px; width: 100%; margin: 0 0 0 auto; }
.browser .bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--line-2); background: var(--bg); }

/* ── Bento ─────────────────────────────────────────────────────────────────── */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--s4); }
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-6 { grid-column: span 6; }
.fmt-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: var(--s4); }
.chip { font-family: var(--mono); font-size: 12px; background: var(--card); border-radius: var(--r-lg); padding: 8px 11px; color: var(--ink-2); display: flex; gap: var(--s2); align-items: center; box-shadow: var(--cp-ring); max-width: 100%; overflow-wrap: anywhere; }
.chip .k { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.chip.accent { box-shadow: 0 0 0 1px var(--accent); }
.shadebar { display: flex; gap: 4px; margin-top: var(--s4); }
.shadebar span { flex: 1; height: 30px; border-radius: var(--r-sw); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08); }

/* ── Showcase ──────────────────────────────────────────────────────────────── */
.showcase { background: var(--card); border-radius: var(--r-xl); padding: var(--s12); display: grid; grid-template-columns: 1fr 1fr; gap: var(--s12); align-items: center; box-shadow: var(--cp-card); }
.showcase h2 { font-size: clamp(22px, 4vw, 28px); font-weight: 600; letter-spacing: -0.03em; }
.pipeline { list-style: none; padding: 0; margin: var(--s5) 0 0; display: flex; flex-direction: column; gap: var(--s4); }
.pipeline li { display: flex; gap: 13px; align-items: flex-start; font-size: 15px; color: var(--ink-2); }
.pipeline .num { flex: none; width: 26px; height: 26px; border-radius: var(--r-md); background: var(--invert); color: #fff; font-family: var(--mono); font-size: 12px; font-weight: 600; display: grid; place-items: center; }
.showcase .mock { background: var(--bg); border-radius: var(--r-lg); padding: var(--s4); box-shadow: var(--cp-ring); display: flex; flex-direction: column; gap: var(--s3); }
.mock .swatch { height: 64px; border-radius: var(--r-lg); background: #1e293b; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08); }
.mock .line { font-family: var(--mono); font-size: 12px; background: var(--card); border-radius: var(--r-md); padding: 9px 11px; display: flex; justify-content: space-between; align-items: center; color: var(--ink); box-shadow: var(--cp-ring); gap: var(--s3); }
.mock .line b { color: var(--accent-strong); font-weight: 600; overflow-wrap: anywhere; }

/* ── Use cases / trust ─────────────────────────────────────────────────────── */
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.trust .item { display: flex; gap: var(--s3); align-items: flex-start; }
.trust .item svg { flex: none; color: var(--ok); margin-top: 1px; }
.trust .item h3 { font-size: 15px; font-weight: 600; }
.trust .item p { font-size: 13px; color: var(--ink-2); margin-top: 3px; }

/* ── Honest proof / founder note ───────────────────────────────────────────── */
.note-card { max-width: 760px; margin: 0 auto; background: var(--card); border-radius: var(--r-xl); padding: var(--s8); box-shadow: var(--cp-card); }
.note-card p { color: var(--ink-2); font-size: 15px; }
.note-card .who { display: flex; align-items: center; gap: var(--s3); margin-top: var(--s5); }
.note-card .av { width: 44px; height: 44px; border-radius: 50%; background: var(--invert); color: #fff; display: grid; place-items: center; font-weight: 600; font-size: 15px; }
.note-card .nm { font-weight: 600; font-size: 14px; }
.note-card .rl { font-size: 12px; color: var(--muted); }
.proof-chips { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s5); }
.proof-chips span { font-family: var(--mono); font-size: 12px; color: var(--ink-2); background: var(--control); padding: 6px 11px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.proof-chips svg { color: var(--ok); }

/* ── CTA banner (dark) ─────────────────────────────────────────────────────── */
.cta { background: var(--invert); border-radius: var(--r-xl); padding: var(--s16) var(--s12); text-align: center; }
.cta h2 { font-size: clamp(24px, 4.6vw, 34px); font-weight: 600; color: #fff; max-width: 680px; margin: 0 auto; letter-spacing: -0.03em; }
.cta p { color: #a3a3a3; margin-top: var(--s3); font-size: 16px; }
.cta .cta-actions { margin-top: var(--s6); display: flex; gap: var(--s3); justify-content: center; flex-wrap: wrap; }

/* ── Footer (dark) ─────────────────────────────────────────────────────────── */
footer { background: var(--invert); color: #a3a3a3; margin-top: var(--s24); }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s12); padding: var(--s16) 0 var(--s12); }
.foot-brand { font-weight: 600; font-size: 17px; color: #fff; display: flex; align-items: center; gap: var(--s3); }
.foot-brand .mark { width: 24px; height: 24px; border-radius: var(--r-md); background: #fff; display: grid; place-items: center; }
.foot-brand .mark span { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); display: block; }
.foot-brand small { font-family: var(--mono); color: #8f8f8f; }
.foot-top p.tg { margin-top: var(--s4); font-size: 13px; color: #8f8f8f; max-width: 300px; }
.foot-col h4 { color: #fff; font-size: 13px; margin: 0 0 var(--s4); font-weight: 600; }
.foot-col a { display: block; font-size: 13px; color: #a3a3a3; margin-bottom: 11px; }
.foot-col a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: var(--s6) 0 var(--s10); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #8f8f8f; flex-wrap: wrap; gap: var(--s3); }
.foot-bottom a { color: #cdcdcd; text-decoration: underline; text-underline-offset: 2px; }
.foot-bottom a:hover { color: #fff; }
.foot-word { font-family: var(--sans); font-size: clamp(48px, 13vw, 150px); font-weight: 600; color: #1f1f1f; text-align: center; line-height: 0.82; letter-spacing: -0.06em; padding-bottom: var(--s6); user-select: none; }

/* ── Hero product shot (static, art-directed — replaces the live iframe) ───── */
.panel-shot { background: var(--bg); padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.ps-head { display: flex; align-items: center; justify-content: space-between; }
.ps-brand { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--ink); }
.ps-brand small { color: var(--muted); }
.ps-mode { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 10px; color: var(--muted); background: var(--card); padding: 3px 8px; border-radius: 999px; box-shadow: var(--cp-ring); }
.ps-mode i { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(23, 128, 61, 0.16); }
.ps-preview { height: 92px; border-radius: var(--r-lg); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1); }
.ps-pick { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent-strong); color: #fff; border: 0; border-radius: var(--r-lg); padding: 11px; min-height: 40px; font-family: var(--sans); font-size: 13px; font-weight: 500; box-shadow: var(--cp-button); cursor: default; }
.ps-pick kbd { font-family: var(--mono); font-size: 10px; background: rgba(255, 255, 255, 0.18); padding: 2px 6px; border-radius: 4px; }
.ps-label { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.ps-card { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--card); border-radius: var(--r-md); padding: 8px 10px; box-shadow: var(--cp-card-flat); }
.ps-card .ps-meta { min-width: 0; }
.ps-card .ps-k { display: block; font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.ps-card code { display: block; font-family: var(--mono); font-size: 11px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ps-card svg { flex: none; color: var(--muted); width: 13px; height: 13px; }
.ps-wcag { display: flex; align-items: center; justify-content: space-between; background: var(--card); border-radius: var(--r-md); padding: 8px 10px; box-shadow: var(--cp-card-flat); font-family: var(--mono); font-size: 11px; color: var(--ink-2); }
.ps-aaa { color: var(--ok); font-weight: 600; }

/* ── Stack strip ("works with") ────────────────────────────────────────────── */
.logos { padding: var(--s10) 0 0; text-align: center; }
.logos .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.logos .row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 22px; margin-top: var(--s4); }
.logos .tech { font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--ink-2); }

/* ── Comparison ────────────────────────────────────────────────────────────── */
.compare { max-width: 820px; margin: 0 auto; background: var(--card); border-radius: var(--r-xl); box-shadow: var(--cp-card); overflow-x: auto; }
.compare table { width: 100%; border-collapse: collapse; min-width: 460px; }
.compare th, .compare td { text-align: left; padding: 13px 18px; font-size: 14px; border-top: 1px solid var(--line); }
.compare thead th { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 500; border-top: 0; }
.compare thead th.me { color: var(--ink); }
.compare tbody td:first-child { color: var(--ink); font-weight: 500; }
.compare td.me { background: rgba(16, 185, 129, 0.06); }
.compare .yes { color: var(--ok); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.compare .no { color: var(--muted); }

/* ── Pricing: monthly/annual toggle + 3-tier grid ──────────────────────────── */
.pricing-toggle { display: inline-flex; align-items: center; gap: 4px; padding: 4px; background: var(--control); border-radius: 999px; box-shadow: var(--cp-ring); margin: 0 auto var(--s8); }
.pricing-toggle button { border: 0; background: transparent; cursor: pointer; font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink-2); padding: 7px 16px; border-radius: 999px; transition: background-color .15s ease, color .15s ease; }
.pricing-toggle button[aria-pressed="true"] { background: var(--card); color: var(--ink); box-shadow: var(--cp-card-flat); }
.pricing-toggle .save { color: var(--ok); font-weight: 600; }
.price-grid.three { grid-template-columns: repeat(3, 1fr); max-width: 1000px; align-items: stretch; }
.price-grid.three .plan { display: flex; flex-direction: column; }
.price-grid.three .plan ul { flex: 1; }
.plan.popular { box-shadow: 0 0 0 1.5px var(--accent), var(--cp-hero); }
.plan .pop { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .02em; padding: 4px 12px; border-radius: 999px; white-space: nowrap; }
.plan .amt .per { font-size: 15px; color: var(--muted); font-weight: 500; }
.plan .billed { font-size: 12.5px; color: var(--muted); margin-top: 2px; min-height: 18px; }
@media (max-width: 860px) { .price-grid.three { grid-template-columns: 1fr; max-width: 420px; } }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s12); }
  .browser { margin: 0 auto; }
  .showcase { grid-template-columns: 1fr; padding: var(--s8); }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }      /* CTA lives inside the mobile menu */
  .nav-mobile { display: block; }
  .price-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .col-3, .col-4, .col-6 { grid-column: span 2; }
  .uc-grid, .trust { grid-template-columns: 1fr; }
  .sec { padding: var(--s16) 0; }
  .foot-top { grid-template-columns: 1fr; gap: var(--s8); }
  .btn { min-height: 44px; padding: 12px 20px; }
  .btn-sm { min-height: 44px; padding: 11px 16px; font-size: 14px; }
  .foot-col a { padding: 8px 0; margin-bottom: 2px; min-height: 40px; display: flex; align-items: center; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .col-2, .col-3, .col-4, .col-6 { grid-column: 1 / -1; }
}

/* ════════════════════════════════════════════════════════════════════════════
   ELEVATION v3 — "Perceptual Spec Sheet": native-oklch() signature ramp, an
   engineering-document type voice, and dev-credibility moments. Loaded after the
   base so these win; dark tweaks live in the dark @media block below.
   ════════════════════════════════════════════════════════════════════════════ */
:root {
  --ramp-hue: 162; /* emerald family — drives the signature ramp + dividers */
  --step-0: 1rem; --step-1: 1.25rem; --step-2: 1.563rem; --step-3: 1.953rem;
  --step-4: 2.441rem; --step-5: 3.052rem; --step-6: 3.815rem;
}

/* The signature: a hard-stepped, perceptually-even OkLCH lightness ramp. */
.oklch-ramp {
  height: 14px; border-radius: 3px; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  background: linear-gradient(90deg,
    oklch(.97 .04 var(--ramp-hue)) 0 9.09%, oklch(.93 .07 var(--ramp-hue)) 9.09% 18.18%,
    oklch(.86 .11 var(--ramp-hue)) 18.18% 27.27%, oklch(.77 .14 var(--ramp-hue)) 27.27% 36.36%,
    oklch(.68 .16 var(--ramp-hue)) 36.36% 45.45%, oklch(.60 .15 var(--ramp-hue)) 45.45% 54.54%,
    oklch(.52 .13 var(--ramp-hue)) 54.54% 63.63%, oklch(.44 .11 var(--ramp-hue)) 63.63% 72.72%,
    oklch(.36 .09 var(--ramp-hue)) 72.72% 81.81%, oklch(.25 .06 var(--ramp-hue)) 81.81% 90.90%,
    oklch(.15 .04 var(--ramp-hue)) 90.90% 100%);
}
.ramp-axis { display: grid; grid-template-columns: repeat(11, 1fr); font-family: var(--mono); font-size: 9px; color: var(--muted); margin-top: 5px; font-variant-numeric: tabular-nums; }
.ramp-axis span { text-align: center; }

/* Section-divider rail — full-bleed 2px ramp; advance --ramp-hue per region inline */
.rail { height: 2px; border: 0; margin: 0; opacity: 0.9;
  background: linear-gradient(90deg,
    oklch(.95 .05 var(--ramp-hue)), oklch(.78 .14 var(--ramp-hue)),
    oklch(.60 .16 var(--ramp-hue)), oklch(.42 .12 var(--ramp-hue)), oklch(.20 .05 var(--ramp-hue))); }

/* Editorial type: push system headings to a display register + figure numbers */
h1, h2 { font-feature-settings: "ss01" 1, "cv05" 1; }
.sec-head h2 { letter-spacing: -0.035em; }
.label { counter-increment: sec; }
.label::before { width: 18px; height: 3px; border-radius: 999px;
  background: linear-gradient(90deg, oklch(.70 .15 152), oklch(.66 .16 205)); }
.label::after { content: counter(sec, decimal-leading-zero); order: -1; color: var(--accent);
  font-variant-numeric: tabular-nums; font-weight: 600; }

/* ── Hero: asymmetric editorial spec-sheet ─────────────────────────────────── */
.hero-grid { grid-template-columns: 1.08fr 0.92fr; align-items: start; gap: var(--s16); }
.hero .visual { margin-top: var(--s10); }
.hero h1 { font-size: clamp(34px, 7vw, 56px); font-weight: 600; margin: var(--s6) 0 0; letter-spacing: -0.04em; line-height: 1.0; }
.hero .eyebrow { background: none; box-shadow: none; border-radius: 0; padding: 0 0 0 8px;
  border-left: 2px solid var(--accent); font: 500 11px/1 var(--mono); letter-spacing: 0.12em; color: var(--muted); }
.hero .eyebrow .dot { display: none; }
.hero .browser .bar .u-eng { margin-left: 0; font-family: var(--mono); font-size: 10.5px; color: var(--muted); flex: 1; letter-spacing: 0.02em; }
.hero-caption { margin: var(--s3) auto 0; max-width: 380px; font-family: var(--mono); font-size: 11px; color: var(--muted); text-align: center; }

/* Datasheet spec-line — replaces the 4-cell KPI band */
.specline { display: flex; flex-wrap: wrap; font: 500 13px/1 var(--mono); color: var(--muted);
  font-variant-numeric: tabular-nums; margin-top: var(--s10); padding-top: var(--s6); border-top: 1px solid var(--line); }
.specline span { padding: 0 16px; border-right: 1px solid var(--line); }
.specline span:first-child { padding-left: 0; }
.specline span:last-child { border-right: 0; }
.specline em { font-style: normal; color: var(--accent-strong); }

/* ── Money shot: real syntax-highlighted @theme code block ─────────────────── */
.code-theme { background: #0e0e0e; border-radius: var(--r-lg); overflow: hidden; margin-top: var(--s4);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 40px 80px -48px oklch(.65 .16 162 / .25);
  font: 12.5px/1.7 var(--mono); }
.code-theme .titlebar { display: flex; justify-content: space-between; align-items: center; padding: 9px 13px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.code-theme .file { color: #a3a3a3; font-size: 11px; }
.code-theme .copy { color: #a3a3a3; background: transparent; border: 0; cursor: pointer; font: 11px var(--mono); padding: 3px 9px; border-radius: 5px; display: inline-flex; align-items: center; min-height: 24px; }
.code-theme .copy:focus-visible { outline: none; box-shadow: inset 0 0 0 1.5px var(--accent); color: #fff; }
.code-theme .copy:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.code-theme pre { margin: 0; padding: 14px 16px; color: #e5e5e5; overflow-x: auto; counter-reset: ln; }
.code-theme .ln { display: block; }
.code-theme .ln::before { counter-increment: ln; content: counter(ln); width: 1.6em; margin-right: 16px; display: inline-block; text-align: right; color: #5a5a5a; user-select: none; }
.code-theme .kw { color: oklch(.74 .13 300); }
.code-theme .prop { color: #e8e8e8; }
.code-theme .val { color: oklch(.78 .15 162); }
.code-theme .cm { color: #6e6e6e; font-style: italic; }
.code-theme .sw { display: inline-block; width: 11px; height: 11px; border-radius: 3px; vertical-align: -1px; margin-right: 8px; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35); }

/* ── "Warum OkLCH" proof strip ─────────────────────────────────────────────── */
.proof-strip { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.proof-strip .rowlabel { font: 500 10.5px/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.proof-strip .cap { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-top: 4px; }
.hsl-flaw { height: 14px; border-radius: 3px; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  background: linear-gradient(90deg,
    hsl(162 60% 92%) 0 9.09%, hsl(162 60% 84%) 9.09% 18.18%, hsl(162 60% 74%) 18.18% 27.27%,
    hsl(162 60% 62%) 27.27% 36.36%, hsl(162 60% 50%) 36.36% 45.45%, hsl(162 60% 42%) 45.45% 54.54%,
    hsl(162 60% 35%) 54.54% 63.63%, hsl(162 60% 28%) 63.63% 72.72%, hsl(162 60% 20%) 72.72% 81.81%,
    hsl(162 60% 13%) 81.81% 90.9%, hsl(162 60% 7%) 90.9% 100%); }

/* ── Material: crisp hairline cards (replace floaty Material drift) ─────────── */
.card { box-shadow: 0 0 0 1px var(--line), inset 0 1px 0 rgba(255, 255, 255, 0.6); }
.card:hover { box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.16), 0 18px 40px -24px rgba(16, 24, 40, 0.18); }
.cta { box-shadow: 0 0 0 1px var(--line), 0 40px 80px -48px oklch(.65 .16 162 / .25); }

/* copy-on-click format demo (showcase mock) */
.mock .line b { cursor: pointer; }
.mock .line.copied b { color: var(--ok); }

/* ── Utilities — replace inline-style sprawl with named classes ────────────── */
.flush { padding-top: 0; }
.card-row { display: flex; align-items: center; gap: var(--s4); }
.card-row .ico { margin-bottom: 0; }
.lnk { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 2px; }
.ea { font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-strong); border: 1px solid var(--accent-strong); border-radius: 999px; padding: 1px 8px; margin-right: 8px; white-space: nowrap; }
.kbdlegend { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s3); }
.kbdlegend kbd { font-family: var(--mono); font-size: 11px; color: var(--ink-2); background: var(--control); border-radius: 5px; padding: 3px 7px; box-shadow: var(--cp-ring); }
.kbdlegend kbd b { color: var(--ink); font-weight: 600; }
.fine { font-size: 12.5px; color: var(--muted); }

/* ── Pricing "Everything included" bento (2×2 → 1col on mobile) ─────────────── */
.incl-title { text-align: center; font-size: clamp(22px, 4vw, 28px); font-weight: 600; letter-spacing: -0.03em; margin: var(--s16) 0 var(--s6); }
.incl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s5); max-width: 1000px; margin: 0 auto; align-items: stretch; }
.incl-grid .card { display: flex; flex-direction: column; }
.incl-grid .card h3 { margin-top: 2px; }
@media (max-width: 720px) { .incl-grid { grid-template-columns: 1fr; } }

/* ── Footer micro-polish: smooth link hovers, watermark clamp, live status ──── */
.foot-col a, .foot-bottom a { transition: color .15s ease; }
.foot-word { overflow: hidden; max-width: 100%; }
.status { display: inline-flex; align-items: center; gap: 7px; }
.status .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); animation: statuspulse 2.6s ease-out infinite; }
@keyframes statuspulse { 0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); } 70% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); } 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); } }

/* ════════════════════════════════════════════════════════════════════════════
   LIVE STUDIO + MOTION (S-tier) — makes the hero a working instrument; all motion
   transform/opacity only and gated by .js-reveal / prefers-reduced-motion.
   ════════════════════════════════════════════════════════════════════════════ */
.ps-pick { cursor: pointer; transition: transform .12s cubic-bezier(.2,.7,.3,1), box-shadow .15s ease, background-color .15s ease; }
.ps-pick:active { transform: scale(.97); }
.ps-pick[data-unsupported] { cursor: default; }

.ps-studio { display: grid; gap: 7px; margin-top: 2px; }
.ps-slider { display: grid; grid-template-columns: 14px 1fr 34px; align-items: center; gap: 9px; }
.ps-slider > span { font: 600 10px var(--mono); color: var(--muted); text-align: center; }
.ps-slider .ps-v { font: 600 10px var(--mono); color: var(--ink); text-align: right; font-variant-numeric: tabular-nums; }
.ps-slider input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: var(--control); box-shadow: var(--cp-ring); }
/* per-channel instrument tracks — the studio reads as a real OkLCH control */
#cp-l { background: linear-gradient(90deg, #000, #fff); }
#cp-c { background: linear-gradient(90deg, oklch(.62 0 0), oklch(.62 .26 162)); }
#cp-h { background: linear-gradient(90deg, oklch(.7 .15 29), oklch(.7 .15 90), oklch(.7 .15 150), oklch(.7 .15 210), oklch(.7 .15 270), oklch(.7 .15 330), oklch(.7 .15 389)); }
.ps-slider input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 8px; background: var(--accent); box-shadow: 0 0 0 2px var(--card), var(--cp-ring); cursor: grab; }
.ps-slider input[type="range"]::-moz-range-thumb { width: 24px; height: 24px; border: 2px solid var(--card); border-radius: 8px; background: var(--accent); box-shadow: var(--cp-ring); cursor: grab; }
.ps-slider input[type="range"]:active::-webkit-slider-thumb { cursor: grabbing; }
.ps-slider input[type="range"]:focus-visible { outline: none; box-shadow: var(--cp-focus); }

.ps-fmt { display: flex; gap: 3px; background: var(--control); padding: 3px; border-radius: var(--r-md); }
.ps-fmt button { flex: 1; border: 0; background: transparent; cursor: pointer; font: 500 10px var(--sans); color: var(--muted); padding: 5px 4px; min-height: 24px; border-radius: 4px; transition: background-color .15s ease, color .15s ease; }
.ps-fmt button[aria-pressed="true"] { background: var(--card); color: var(--ink); box-shadow: var(--cp-card-flat); }
.ps-fmt button:focus-visible, .ps-pick:focus-visible, #cp-card:focus-visible { outline: none; box-shadow: var(--cp-focus); }

#cp-card { cursor: pointer; transition: box-shadow .15s ease; }
#cp-card:hover { box-shadow: 0 0 0 1px var(--accent-strong); }
#cp-card.copied { box-shadow: 0 0 0 1px var(--accent), 0 0 0 4px var(--accent-tint); }
#cp-card code { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ps-aaa.warn { color: var(--warn); }
.ps-aaa.bad { color: var(--bad); }

/* Buttons: subtle press physics */
.btn:active { transform: scale(.98); }

/* Scroll-reveal (only active once JS adds .js-reveal, after the RM check) */
.js-reveal :is(.sec-head, .bento > .card, .uc-grid > .card, .trust .item, .price-grid > .plan, .proof-strip > div) {
  opacity: 0; transform: translateY(14px);
  transition: opacity .55s cubic-bezier(.22,.61,.36,1), transform .55s cubic-bezier(.22,.61,.36,1); transition-delay: var(--d, 0ms); }
.js-reveal :is(.sec-head, .bento > .card, .uc-grid > .card, .trust .item, .price-grid > .plan, .proof-strip > div).in { opacity: 1; transform: none; }
.js-reveal .rail, .js-reveal .hsl-flaw, .js-reveal .oklch-ramp:not(#cp-ramp) { transform: scaleX(0); transform-origin: left; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.js-reveal .rail.in, .js-reveal .hsl-flaw.in, .js-reveal .oklch-ramp.in:not(#cp-ramp) { transform: scaleX(1); }

/* Sticky-nav scrolled state + scroll-progress hairline */
header.nav { transition: box-shadow .2s ease, background-color .2s ease, border-color .2s ease; }
header.nav.scrolled { background: color-mix(in srgb, var(--bg) 88%, transparent); border-bottom-color: color-mix(in srgb, var(--accent) 30%, var(--line-2)); box-shadow: 0 1px 12px -4px rgba(0, 0, 0, .12); }
#cp-progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; transform: scaleX(0); transform-origin: left; z-index: 60; pointer-events: none; background: linear-gradient(90deg, oklch(.78 .14 162), oklch(.6 .16 205)); }

/* ── Automatic dark mode ───────────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg: #0a0a0a;
    --card: #151515;
    --invert: #1c1c1c;
    --ink: #ededed;
    --ink-2: #a1a1a1;
    --muted: #8f8f8f;
    --muted-soft: #6e6e6e;
    --line: rgba(255, 255, 255, 0.12);
    --line-2: rgba(255, 255, 255, 0.07);
    --control: #1f1f1f;
    --control-hover: #2a2a2a;
    --border-strong: #444444;
    --accent: #34d399;          /* lift emerald for AA on dark */
    --accent-hover: #10b981;
    --accent-tint: rgba(52, 211, 153, 0.18);
    /* on dark, the bright emerald already clears AA as fill/link/focus */
    --accent-strong: #34d399;
    --accent-strong-hover: #10b981;
    --warn: #f59e0b;            /* lifted for AA as text on #151515 */
    --bad: #f87171;
    --cp-card-flat: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 1px 2px rgba(0, 0, 0, 0.4);
    --cp-card: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 1px 3px rgba(0, 0, 0, 0.5);
    --cp-card-hover: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 8px 16px -6px rgba(0, 0, 0, 0.6);
    --cp-hero: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 8px 24px -8px rgba(0, 0, 0, 0.7);
    --cp-ring: 0 0 0 1px rgba(255, 255, 255, 0.12);
  }
  .btn-mint, .ps-pick { color: #04140d; }
  /* distinct elevation tiers in dark so the inverted tile / CTA / footer don't
     flatten into --card (#151515) — each reads as an intentional slab */
  .card.dark { background: #202020; }
  .cta { background: #161616; }
  footer { background: #101010; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06); }
  .compare td.me { background: rgba(52, 211, 153, 0.08); }
  .foot-word { color: #1f1f1f; }
  body {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 64px 64px, 64px 64px;
  }
  .card { box-shadow: 0 0 0 1px var(--line), inset 0 1px 0 rgba(255, 255, 255, 0.04); }
}
