/* ============================================================
   Peptide Price Lab — Website (Aurora Glass × Editorial)
   Tokens lifted from the app design system (DESIGN-SYSTEM.md)
   ============================================================ */

/* ---------- Light base ---------- */
:root {
  --bg: #FDFDFE;
  --ink: #211D33;
  --muted: rgba(33,29,51,0.55);
  --faint: rgba(33,29,51,0.38);

  --glass: rgba(255,255,255,0.62);
  --glass-border: rgba(255,255,255,0.85);
  --glass-shadow: 0 8px 28px rgba(109,90,230,0.07), 0 1px 2px rgba(33,29,51,0.04);

  --chip-bg: rgba(255,255,255,0.5);
  --chip-border: rgba(33,29,51,0.10);
  /* Fields sit on white glass cards on a near-white page — the fill alone can't
     separate them, so the ink-tinted border is what makes the input findable.
     (Was white-on-white: invisible until you clicked into it.) */
  --field: rgba(255,255,255,0.75);
  --field-border: rgba(33,29,51,0.18);
  --panel-alt: rgba(255,255,255,0.75);
  --panel-alt-border: rgba(33,29,51,0.07);
  --hairline: rgba(33,29,51,0.08);

  --tab-bg: rgba(255,255,255,0.65);
  --tab-shadow: 0 12px 32px rgba(33,29,51,0.12);

  --good: #2FA37C;
  --good-bg: rgba(47,163,124,0.12);
  --warn: #C2410C;
  --warn-bg: rgba(194,65,12,0.10);

  /* verdicts — --v-new (blue) is informational; --v-mod is purple (was amber,
     which read as a warning). Mirrors the app theme (app/src/theme/aurora.js). */
  --v-high: #2FA37C;
  --v-new: #3E7BD6;
  --v-mod: #8A63C4;
  --v-low: #D45B4B;

  /* mesh blobs (full-k alpha; layer opacity scales intensity) */
  --mesh-a: radial-gradient(circle at center, rgba(196,180,245,0.55), transparent 65%);
  --mesh-b: radial-gradient(circle at center, rgba(255,214,188,0.50), transparent 65%);
  --mesh-c: radial-gradient(circle at center, rgba(178,232,212,0.45), transparent 65%);
  --orb: conic-gradient(from 220deg, #B7A4F2, #FFD3B5, #A8E3CC, #B7A4F2);

  --aurora: 0.55;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Schibsted Grotesk", system-ui, -apple-system, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", monospace;

  --glass-blur: blur(18px) saturate(160%);
  --bar-blur: blur(20px) saturate(170%);
}

/* ---------- Accents (light) ---------- */
:root[data-accent="violet"]   { --accent: #6D5AE6; --accent-deep: #6D5AE6; }
:root[data-accent="teal"]     { --accent: #1F8A80; --accent-deep: #1F8A80; }
:root[data-accent="rosewood"] { --accent: #C25E4C; --accent-deep: #C25E4C; }

/* ---------- Dark base ---------- */
:root[data-theme="dark"] {
  --bg: #14121F;
  --ink: #F0EEF8;
  --muted: rgba(240,238,248,0.60);
  --faint: rgba(240,238,248,0.38);

  --glass: rgba(42,38,68,0.50);
  --glass-border: rgba(255,255,255,0.09);
  --glass-shadow: 0 8px 28px rgba(0,0,0,0.25);

  --chip-bg: rgba(255,255,255,0.05);
  --chip-border: rgba(255,255,255,0.12);
  --field: rgba(255,255,255,0.08);
  --field-border: rgba(255,255,255,0.24);
  --panel-alt: rgba(255,255,255,0.05);
  --panel-alt-border: rgba(255,255,255,0.08);
  --hairline: rgba(255,255,255,0.08);

  --tab-bg: rgba(30,27,50,0.70);
  --tab-shadow: 0 12px 32px rgba(0,0,0,0.40);

  --good: #4CC79D;
  --good-bg: rgba(76,199,157,0.14);
  --warn: #F0966B;
  --warn-bg: rgba(240,150,107,0.12);

  --v-high: #4CC79D;
  --v-new: #6FA6F0;
  --v-mod: #B08CE6;
  --v-low: #E87E6F;

  --mesh-a: radial-gradient(circle at center, rgba(140,120,225,0.30), transparent 65%);
  --mesh-b: radial-gradient(circle at center, rgba(225,150,110,0.18), transparent 65%);
  --mesh-c: radial-gradient(circle at center, rgba(90,200,165,0.16), transparent 65%);
  --orb: conic-gradient(from 220deg, #8E78E8, #E8A87E, #6FCBA8, #8E78E8);
}
:root[data-theme="dark"][data-accent="violet"]   { --accent: #9D8CFF; }
:root[data-theme="dark"][data-accent="teal"]     { --accent: #4ECDC0; }
:root[data-theme="dark"][data-accent="rosewood"] { --accent: #E8907E; }

/* ---------- Serif options ---------- */
:root[data-serif="newsreader"] { --serif: "Newsreader", Georgia, serif; }
:root[data-serif="spectral"]   { --serif: "Spectral", Georgia, serif; }
:root[data-serif="source"]     { --serif: "Source Serif 4", Georgia, serif; }

/* ============================================================
   Base
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background 0.35s ease, color 0.35s ease;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { background: color-mix(in oklch, var(--accent) 28%, transparent); }

/* Mesh background */
.mesh {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  opacity: var(--aurora);
  transition: opacity 0.4s ease;
}
.mesh i { position: absolute; border-radius: 50%; display: block; }
.mesh .m1 { top: -200px; left: 6%;  width: 640px; height: 640px; background: var(--mesh-a); }
.mesh .m2 { top: -140px; right: -160px; width: 580px; height: 580px; background: var(--mesh-b); }
.mesh .m3 { top: 720px;  left: 34%; width: 620px; height: 620px; background: var(--mesh-c); }
.mesh .m4 { top: 1700px; right: 4%; width: 560px; height: 560px; background: var(--mesh-a); }
.mesh .m5 { top: 2700px; left: -120px; width: 600px; height: 600px; background: var(--mesh-c); }

.page { position: relative; z-index: 1; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   Typography helpers
   ============================================================ */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--faint);
}
.eyebrow .accent { color: var(--accent); }
.display {
  font-family: var(--serif);
  font-weight: 500; line-height: 1.04; letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
.serif { font-family: var(--serif); }
.lede {
  font-family: var(--serif); font-size: 19px; line-height: 1.6;
  color: var(--muted); font-weight: 400; text-wrap: pretty;
}
.price { font-family: var(--sans); font-weight: 800; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.mono { font-family: var(--mono); }

/* ============================================================
   Glass primitives
   ============================================================ */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  border-radius: 22px;
}
.orb {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--orb);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
  flex: 0 0 auto;
}
.wordmark { display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); }
.wordmark .wm { font-size: 17px; letter-spacing: -0.02em; color: var(--ink); }
.wordmark .wm b { font-weight: 800; }
.wordmark .wm span { font-weight: 400; }
.plus {
  background: linear-gradient(120deg, var(--accent-deep), #9A6FE8);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 800;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 14.5px;
  height: 48px; padding: 0 22px; border-radius: 99px;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink); color: var(--bg);
  box-shadow: 0 6px 20px rgba(33,29,51,0.18);
}
:root[data-theme="dark"] .btn-primary { color: #14121F; }
.btn-accent {
  background: linear-gradient(120deg, var(--accent-deep), #9A6FE8);
  color: #fff; box-shadow: 0 8px 24px color-mix(in oklch, var(--accent) 35%, transparent);
}
.btn-ghost {
  background: var(--chip-bg); color: var(--ink);
  border-color: var(--chip-border);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
}
.btn-link {
  font-family: var(--sans); font-weight: 600; font-size: 14.5px; color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  /* Used on both <a> and <button> (e.g. footer "Search the site") — strip the
     native button chrome so the <button> reads as a plain link, not a boxed control. */
  background: none; border: 0; cursor: pointer;
}
.btn-link:hover { gap: 9px; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 14px; z-index: 50;
  margin: 14px auto 0; max-width: 1180px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 9px 9px 9px 18px;
  background: var(--tab-bg); border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: var(--bar-blur); backdrop-filter: var(--bar-blur);
  box-shadow: var(--tab-shadow); border-radius: 99px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  padding: 8px 12px; border-radius: 99px; transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--ink); background: var(--chip-bg); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 40px; height: 40px; flex: 0 0 auto; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: var(--chip-bg); border: 1px solid var(--chip-border); color: var(--ink);
  transition: background 0.15s, transform 0.15s;
}
.icon-btn:hover { transform: translateY(-1px); }
.icon-btn svg { width: 18px; height: 18px; }
.nav .moon { display: none; }
:root[data-theme="dark"] .nav .moon { display: block; }
:root[data-theme="dark"] .nav .sun { display: none; }
.nav-tool { height: 40px; padding: 0 18px; font-size: 13.5px; }
.menu-btn { display: none; }
.menu-btn svg { transition: transform 0.2s; }
.nav.menu-open .menu-btn svg { transform: rotate(90deg); }
.nav-links .menu-tool { display: none; }

/* ============================================================
   Hero (shared)
   ============================================================ */
.hero { padding: 64px 0 28px; }
.hero-mast { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.hero-mast .rule { flex: 1; height: 1px; background: var(--hairline); }
.hero h1.display { font-size: clamp(40px, 6.2vw, 76px); }
.hero h1 .em { font-style: italic; font-family: var(--serif); }
.hero .lede { max-width: 33em; margin-top: 22px; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 30px; }

/* Receipt card */
.receipt { padding: 22px 22px 20px; }
.receipt-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 6px; border-bottom: 1px solid var(--hairline);
}
.receipt-head .tag { display: flex; align-items: center; gap: 8px; }
.receipt-head .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 18%, transparent); }
.receipt-head .label { font-size: 12.5px; font-weight: 700; letter-spacing: -0.01em; }
.receipt-head .sub { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
.r-row {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 14px;
  padding: 13px 10px; border-radius: 14px;
  transition: background 0.2s;
}
.r-row + .r-row { box-shadow: 0 -1px 0 var(--hairline); }
.r-row .vend { font-size: 14px; font-weight: 600; }
.r-row .vol { font-size: 12px; color: var(--faint); margin-top: 2px; }
.r-row .sticker { font-size: 13px; color: var(--faint); text-decoration: line-through; text-decoration-color: var(--muted); }
.r-row .permg { font-size: 19px; min-width: 84px; text-align: right; }
.r-row .permg small { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.r-row.best {
  background: var(--good-bg);
  box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--good) 30%, transparent);
}
.r-row.best .permg { color: var(--good); }
.r-row .best-tag {
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--good); background: color-mix(in oklch, var(--good) 16%, transparent);
  padding: 3px 7px; border-radius: 99px; margin-left: 8px;
}
.receipt-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--hairline);
}
.receipt-foot .note { font-size: 13px; color: var(--muted); font-family: var(--serif); font-style: italic; max-width: 18em; }
.receipt-foot .big { text-align: right; }
.receipt-foot .big .n { font-size: 30px; color: var(--good); line-height: 1; }
.receipt-foot .big .l { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-top: 4px; }

/* Hero variant visibility */
:root[data-hero="A"] .hero--a { display: block; }
:root[data-hero="B"] .hero--b { display: block; }
:root[data-hero="C"] .hero--c { display: block; }
.hero--a, .hero--b, .hero--c { display: none; }

.hero--a .grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center; }

/* Hero variant B — magazine cover */
.hero--b { text-align: center; padding-top: 56px; }
.hero--b .hero-mast { justify-content: center; }
.hero--b h1.display { font-size: clamp(44px, 7.4vw, 96px); margin: 0 auto; max-width: 14ch; }
.hero--b .lede { margin: 24px auto 0; text-align: center; }
.hero--b .hero-ctas { justify-content: center; }
.hero--b .receipt { max-width: 760px; margin: 44px auto 0; }
.hero--b .cover-meta { display: flex; justify-content: center; gap: 28px; margin-top: 18px; }
.hero--b .cover-meta span { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }

/* Hero variant C — calculator forward */
.hero--c { text-align: center; padding-top: 52px; }
.hero--c .hero-mast { justify-content: center; }
.hero--c h1.display { font-size: clamp(34px, 4.6vw, 56px); max-width: 18ch; margin: 0 auto; }
.hero--c .lede { margin: 18px auto 0; text-align: center; font-size: 17px; }
.hero--c .receipt { max-width: 880px; margin: 38px auto 0; padding: 30px 30px 26px; }
.hero--c .receipt .r-row { padding: 16px 12px; }
.hero--c .receipt .r-row .permg { font-size: 22px; }
.hero--c .hero-ctas { justify-content: center; margin-top: 28px; }

/* ============================================================
   Stats strip
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 30px 0 10px;
  background: var(--hairline); border-radius: 18px; overflow: hidden; border: 1px solid var(--hairline); }
.stat { background: var(--glass); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  padding: 22px 24px; }
.stat .n { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); font-family: var(--sans); }
.stat .l { font-size: 12.5px; color: var(--muted); margin-top: 3px; }

/* ============================================================
   Section scaffolding
   ============================================================ */
section.band { padding: 72px 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.sec-head .marker { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 0.02em; }
.sec-head h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.015em; line-height: 1.1; margin-top: 10px; max-width: 16ch; }
.sec-head .intro { font-family: var(--serif); font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 30em; margin-top: 12px; }

/* Index table */
.index-card { padding: 8px 8px 14px; }
.index-table { width: 100%; }
.idx-hd { display: grid; grid-template-columns: 38px minmax(0,1fr) 1fr 120px; gap: 16px; padding: 14px 18px 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.idx-hd .ta-r { text-align: right; }
.idx-row { position: relative; display: grid; grid-template-columns: 38px minmax(0,1fr) 1fr 120px; gap: 16px; align-items: center;
  padding: 15px 18px; border-radius: 14px; transition: background 0.18s, transform 0.18s; }
.idx-row:hover { background: var(--panel-alt); }
.idx-row + .idx-row { box-shadow: 0 -1px 0 var(--hairline); }
.idx-row .num { font-family: var(--mono); font-size: 13px; color: var(--faint); }
.idx-row .cmp { display: flex; flex-direction: column; gap: 5px; align-items: flex-start; }
/* Primary row link — stretched to cover the whole row so any click opens the note. */
.idx-row .idx-primary { font-family: var(--serif); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); text-decoration: none; }
.idx-row .idx-primary::after { content: ""; position: absolute; inset: 0; z-index: 0; border-radius: 14px; }
/* Deals chip — sits above the stretched link so it can link out to the tool. */
.idx-row .idx-deal { position: relative; z-index: 1; display: inline-flex; align-items: baseline; gap: 7px;
  white-space: nowrap; padding: 3px 10px; border-radius: 99px; text-decoration: none; line-height: 1.35;
  color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, transparent);
  border: 1px dashed color-mix(in srgb, var(--accent) 38%, transparent); transition: background 0.15s; }
.idx-row .idx-deal:hover { background: color-mix(in srgb, var(--accent) 18%, transparent); }
.idx-row .idx-deal .pct { font-size: 12px; font-weight: 800; letter-spacing: 0.01em; }
.idx-row .idx-deal .cnt { font-size: 11px; font-weight: 600; color: var(--muted); }
.idx-row .tag-cat { font-size: 12.5px; color: var(--muted); }
.index-note { padding: 12px 18px 0; font-size: 12.5px; line-height: 1.6; color: var(--faint); }
.index-note a { color: var(--accent); font-weight: 600; white-space: nowrap; }
.idx-row .range { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.2; font-variant-numeric: tabular-nums; }
.idx-row .range .r-line { white-space: nowrap; }
.idx-row .range .lo { font-size: 17px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.idx-row .range .dash { font-size: 13px; color: var(--muted); }
.idx-row .range .hi { font-size: 13px; color: var(--muted); }
.idx-row .range .u { font-size: 12px; color: var(--faint); font-style: italic; font-family: var(--serif); }
.index-foot { padding: 18px 18px 6px; }

/* Editor's note */
.note-card { padding: 44px 48px; }
.note-card p { font-family: var(--serif); font-size: 19px; line-height: 1.62; color: var(--ink); text-wrap: pretty; }
.note-card p + p { margin-top: 20px; }
.note-card p .em { font-style: italic; }
.note-card .drop::first-letter { font-size: 3.4em; float: left; line-height: 0.82; padding: 6px 12px 0 0; font-family: var(--serif); font-weight: 500; color: var(--accent); }
.note-sign { margin-top: 26px; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }

/* Pledge */
.pledge { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.pledge .body p { font-family: var(--serif); font-size: 16.5px; line-height: 1.62; color: var(--muted); }
.pledge .body p + p { margin-top: 16px; }
.pledge-checks { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.pledge-checks .chk { display: flex; align-items: center; gap: 12px; padding: 14px 18px; }
.pledge-checks .chk .ic { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--good-bg); color: var(--good); flex: 0 0 auto; }
.pledge-checks .chk .ic svg { width: 14px; height: 14px; }
.pledge-checks .chk span { font-size: 14.5px; font-weight: 600; }

/* Sources / vendors */
.vendor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vendor-card { padding: 22px; display: flex; align-items: center; gap: 14px; transition: transform 0.18s, box-shadow 0.2s; cursor: pointer; }
.vendor-card:hover { transform: translateY(-3px); }
.vendor-tile { width: 46px; height: 46px; border-radius: 13px; flex: 0 0 auto; display: grid; place-items: center;
  font-family: var(--sans); font-weight: 800; font-size: 19px; color: #fff; }
.vendor-card .vn { font-family: var(--serif); font-size: 17px; font-weight: 500; }
.vendor-card .vl { font-size: 12.5px; color: var(--muted); margin-top: 2px; display: flex; align-items: center; gap: 6px; }
.vendor-card .go { margin-left: auto; color: var(--accent); font-size: 18px; }

/* Dispatch */
.dispatch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.dispatch-card { padding: 26px 28px; display: flex; flex-direction: column; gap: 12px; cursor: pointer; transition: transform 0.18s; }
.dispatch-card:hover { transform: translateY(-3px); }
.dispatch-card .meta { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.dispatch-card .meta .no { color: var(--accent); }
.dispatch-card .hl { font-family: var(--serif); font-size: 21px; line-height: 1.3; font-weight: 500; color: var(--ink); text-wrap: pretty; }
.dispatch-card .more { margin-top: auto; }

/* Signup */
.signup { padding: 52px 56px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; margin-top: 24px; }
.signup h3 { font-family: var(--serif); font-weight: 500; font-size: 30px; letter-spacing: -0.01em; line-height: 1.12; }
.signup p { font-family: var(--serif); font-size: 16px; line-height: 1.6; color: var(--muted); margin-top: 14px; }
.signup-form { display: flex; gap: 10px; }
.signup-form input {
  /* min-height keeps the field at full height when the form stacks to a column
     (≤600px, and .rail-form always): there `flex: 1` sets flex-basis:0 on the
     vertical axis, which otherwise overrides `height` and collapses the input to
     ~text height — the "thin input" bug. */
  flex: 1; height: 52px; min-height: 52px; padding: 0 18px; border-radius: 99px; font-size: 15px; font-family: var(--sans);
  background: var(--field); border: 1px solid var(--field-border); color: var(--ink);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur); outline: none;
}
.signup-form input::placeholder { color: var(--muted); }
.signup-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 18%, transparent);
}
.signup-form .btn { height: 52px; }
.signup .fineprint { font-size: 12.5px; color: var(--faint); margin-top: 14px; font-family: var(--sans); }
/* Single-CTA variant (e.g. vendors page) — one full-width column, no second pane. */
.signup.signup-solo { grid-template-columns: 1fr; }

/* ============================================================
   Footer
   ============================================================ */
.disclaimer { padding: 22px 28px; margin: 8px 0 0; display: flex; gap: 14px; align-items: flex-start; }
.disclaimer .ic { color: var(--warn); flex: 0 0 auto; margin-top: 1px; }
.disclaimer p { font-size: 13px; line-height: 1.55; color: var(--muted); font-family: var(--sans); }
footer.site { padding: 64px 0 40px; margin-top: 40px; border-top: 1px solid var(--hairline); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot-about .lede { font-size: 15px; margin-top: 14px; max-width: 26em; }
.foot-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14px; color: var(--muted); }
.foot-col a:hover { color: var(--ink); }
.foot-base { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--hairline); }
.foot-base .c { font-size: 12.5px; color: var(--faint); }
.foot-base .tag { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--muted); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .wrap { padding: 0 20px; }
  .nav { margin-left: 16px; margin-right: 16px; }
  .nav-inner { position: relative; }
  .nav-links { display: none; }
  .menu-btn { display: grid; }
  /* Mobile dropdown panel */
  .nav.menu-open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: calc(100% + 10px); right: 0; left: 0;
    background: color-mix(in oklch, var(--bg) 97%, var(--ink));
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: var(--bar-blur); backdrop-filter: var(--bar-blur);
    box-shadow: var(--tab-shadow); border-radius: 22px; padding: 10px;
    animation: navdrop 0.18s ease both;
  }
  .nav.menu-open .nav-links a { padding: 13px 16px; border-radius: 14px; font-size: 15px; }
  .nav.menu-open .nav-links .menu-tool {
    display: block; margin-top: 6px; text-align: center; color: var(--bg);
    background: var(--ink); font-weight: 700;
  }
  :root[data-theme="dark"] .nav.menu-open .nav-links .menu-tool { color: #14121F; }
  .hero--a .grid { grid-template-columns: 1fr; gap: 32px; }
  .pledge, .signup, .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .vendor-grid { grid-template-columns: 1fr 1fr; }
  .dispatch-grid { grid-template-columns: 1fr; }
  .note-card { padding: 30px 26px; }
  .signup { padding: 34px 28px; }
}
@keyframes navdrop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 600px) {
  .nav-tool { display: none; }
  .nav-inner { padding: 8px 8px 8px 14px; }
  .hero { padding: 34px 0 24px; }
  .hero--b, .hero--c { padding-top: 30px; }
  .stats, .vendor-grid { grid-template-columns: 1fr; }
  .idx-hd, .idx-row { grid-template-columns: 26px minmax(0,1fr) 120px; gap: 12px; }
  .idx-hd .col-cat, .idx-row .tag-cat { display: none; }
  /* Narrow compound column: let the deal chip's two parts stack instead of
     overflowing into the price column. Each part keeps its own text intact. */
  .idx-row .idx-deal { flex-wrap: wrap; gap: 1px 6px; padding: 3px 9px; max-width: 100%; }
  .idx-row .idx-deal .pct { font-size: 11.5px; }
  .receipt-foot { flex-direction: column; align-items: flex-start; gap: 10px; }
  .receipt-foot .big, .receipt-foot .big .l { text-align: left; }
  .legend { gap: 12px 18px; }
  .legend .item[style] { margin-left: 0 !important; }
  .foot-base { flex-direction: column; align-items: flex-start; gap: 10px; }
  .signup-form, .rail-form { flex-direction: column; align-items: stretch; }
  .signup-form input, .rail-form input, .signup-form button, .rail-form button { width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Interior page header + toolbar (index / vendors)
   ============================================================ */
.pagehead { padding: 40px 0 6px; }
.pagehead .eyebrow { display:inline-flex; gap:10px; align-items:center; }
.pagehead h1 { font-family: var(--serif); font-weight:500; letter-spacing:-0.02em; line-height:1.04;
  font-size: clamp(38px,5vw,64px); margin:16px 0 0; text-wrap:balance; }
.pagehead h1 .em { font-style:italic; }
.pagehead .dek { font-family:var(--serif); font-size:19px; line-height:1.55; color:var(--muted); max-width:34em; margin-top:16px; text-wrap:pretty; }

.toolbar { display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin:28px 0 18px; }
.search { display:flex; align-items:center; gap:10px; flex:1; min-width:240px; height:48px; padding:0 18px;
  border-radius:99px; background:var(--field); border:1px solid var(--field-border);
  -webkit-backdrop-filter:var(--glass-blur); backdrop-filter:var(--glass-blur); }
.search svg { width:18px; height:18px; color:var(--faint); flex:0 0 auto; }
.search input { flex:1; border:0; background:transparent; outline:none; font-family:var(--sans); font-size:15px; color:var(--ink); }
.search input::placeholder { color:var(--muted); }
.search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 18%, transparent);
}
.chips { display:flex; flex-wrap:wrap; gap:8px; }
.chip { font-family:var(--sans); font-size:13px; font-weight:600; color:var(--muted);
  padding:10px 15px; border-radius:99px; background:var(--chip-bg); border:1px solid var(--chip-border);
  cursor:pointer; transition:all .15s; -webkit-backdrop-filter:var(--glass-blur); backdrop-filter:var(--glass-blur); }
.chip:hover { color:var(--ink); transform:translateY(-1px); }
.chip[aria-pressed="true"] { background:var(--ink); color:var(--bg); border-color:transparent; }
:root[data-theme="dark"] .chip[aria-pressed="true"] { color:#14121F; }
.idx-row[hidden] { display:none; }
.idx-empty { padding:34px 18px; text-align:center; color:var(--muted); font-family:var(--serif); font-style:italic; font-size:16px; }
.idx-count { font-size:12.5px; color:var(--faint); font-family:var(--sans); }

/* Vendor profile cards */
.legend { display:flex; gap:20px; flex-wrap:wrap; align-items:center; padding:14px 22px; margin:22px 0 24px; }
.legend .item { display:flex; align-items:center; gap:8px; font-size:12.5px; color:var(--muted); }
.legend .vd { width:8px; height:8px; border-radius:50%; flex:0 0 auto; }
.vp-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.vp { padding:24px; display:flex; flex-direction:column; gap:15px; }
.vp-top { display:flex; align-items:flex-start; gap:14px; }
.vp .vt { width:48px; height:48px; border-radius:13px; flex:0 0 auto; display:grid; place-items:center;
  font-family:var(--sans); font-weight:800; font-size:20px; color:#fff; }
.vp .vn { font-family:var(--serif); font-size:20px; font-weight:500; letter-spacing:-0.01em; }
.vp .vmeta { display:flex; align-items:center; gap:8px; margin-top:4px; font-size:12.5px; color:var(--muted); }
.vp .vmeta .dot { width:3px; height:3px; border-radius:50%; background:var(--faint); }
.vp .verdict { margin-left:auto; display:flex; align-items:center; gap:7px; font-size:12px; font-weight:600; color:var(--muted); white-space:nowrap; }
.vp .verdict .vd { width:8px; height:8px; border-radius:50%; }
.vp-notes { font-family:var(--serif); font-size:15px; line-height:1.55; color:var(--muted); text-wrap:pretty; }
.vp-stats { display:flex; gap:10px; }
.vp-stat { flex:1; background:var(--panel-alt); border:1px solid var(--panel-alt-border); border-radius:12px; padding:12px 14px; }
.vp-stat .n { font-family:var(--sans); font-weight:800; font-size:17px; letter-spacing:-0.02em; }
.vp-stat .n small { font-size:12px; color:var(--muted); font-weight:600; }
.vp-stat .l { font-size:11px; color:var(--faint); margin-top:2px; }
.vp-foot { display:flex; align-items:center; justify-content:space-between; gap:12px; padding-top:2px; }
.vp-foot .tags { display:flex; gap:6px; flex-wrap:wrap; }
.vp-foot .t { font-size:11px; font-weight:600; color:var(--muted); background:var(--chip-bg); border:1px solid var(--chip-border); padding:4px 10px; border-radius:99px; }
.vp-foot .go { color:var(--accent); font-weight:600; font-size:13.5px; white-space:nowrap; }
@media (max-width: 920px) { .vp-grid { grid-template-columns:1fr; } }
/* Keep vendor cards inside the viewport on narrow screens. The name/meta column
   and the nowrap verdict are flex children defaulting to min-width:auto, and the
   domain in .vmeta is an unbreakable token — together they forced each card wider
   than the screen (pushing the verdict off-page). Let them shrink and wrap. */
.vp-top > :not(.vt) { min-width: 0; }
.vp .vn { overflow-wrap: anywhere; }
.vp .vmeta { flex-wrap: wrap; overflow-wrap: anywhere; }
/* Same trap in the card footer: the grid item defaults to min-width:auto, and
   the nowrap "Visit site" link + coupon chip together exceed a phone's width,
   forcing every card (and the whole grid) wider than the viewport. Let the
   card shrink and let the coupon chip drop to its own line. */
.vp { min-width: 0; }
.vp-foot { flex-wrap: wrap; }

/* Dispatch page extras */
.rail-signup { padding:22px; }
.rail-signup h4 { font-family:var(--serif); font-size:18px; font-weight:500; margin:0 0 4px; letter-spacing:-0.01em; }
.rail-signup p { font-size:13.5px; color:var(--muted); margin:0 0 14px; font-family:var(--sans); }
.rail-form { flex-direction:column; align-items:stretch; gap:8px; }
.rail-form input { width:100%; height:46px; min-height:46px; }
.rail-form .btn { width:100%; height:46px; }
.rail-signup .fineprint { font-size:11.5px; color:var(--faint); margin-top:10px; font-family:var(--sans); }
.issue-nav { display:flex; justify-content:space-between; gap:16px; margin-top:36px; padding-top:24px;
  border-top:1px solid color-mix(in oklch, var(--ink) 12%, transparent); }
.inav { display:flex; flex-direction:column; gap:5px; max-width:48%; text-decoration:none; }
.inav.next { text-align:right; align-items:flex-end; }
.inav .dir { font-family:var(--sans); font-size:12px; font-weight:700; color:var(--accent); text-transform:uppercase; letter-spacing:0.05em; }
.inav .t { font-family:var(--serif); font-size:15px; color:var(--ink); line-height:1.4; }
.inav:hover .t { color:var(--accent); }
.archive-grid { grid-template-columns:1fr 1fr; }
@media (max-width: 760px) { .archive-grid { grid-template-columns:1fr; } .issue-nav { flex-direction:column; } .inav, .inav.next { max-width:100%; align-items:flex-start; text-align:left; } }

/* ============================================================
   Article / peptide detail template
   ============================================================ */
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); padding: 30px 0 0; }
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { color: var(--faint); }
.crumbs .cur { color: var(--ink); font-weight: 600; }

.article-head { padding: 26px 0 12px; }
.article-head .eyebrow { display: inline-flex; gap: 10px; align-items: center; }
.article-head h1 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; line-height: 1.04;
  font-size: clamp(40px, 5.6vw, 68px); margin: 18px 0 0; text-wrap: balance; }
.article-head h1 .em { font-style: italic; }
.article-head .dek { font-family: var(--serif); font-size: 21px; line-height: 1.5; color: var(--muted);
  max-width: 30em; margin-top: 20px; text-wrap: pretty; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-top: 24px;
  padding-top: 20px; border-top: 1px solid var(--hairline); font-size: 13px; color: var(--muted); }
.article-meta .who { display: flex; align-items: center; gap: 10px; }
.article-meta .av { width: 30px; height: 30px; border-radius: 50%; background: var(--orb);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4); flex: 0 0 auto; }
.article-meta .who b { color: var(--ink); font-weight: 600; }
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--faint); }
.article-meta .cat-pill { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); background: color-mix(in oklch, var(--accent) 12%, transparent);
  padding: 5px 11px; border-radius: 99px; text-decoration: none; transition: background .15s ease; }
a.cat-pill:hover { background: color-mix(in oklch, var(--accent) 22%, transparent); }

/* Two-column body + rail */
.article-grid { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 56px; align-items: start;
  padding: 40px 0 20px; }
.prose { max-width: 40em; }
.prose > p { font-family: var(--serif); font-size: 18.5px; line-height: 1.68; color: var(--ink); text-wrap: pretty; }
.prose > p + p { margin-top: 22px; }
.prose > p .em { font-style: italic; }
.prose .lead-p::first-letter { font-size: 3.6em; float: left; line-height: 0.8; padding: 8px 12px 0 0;
  font-family: var(--serif); font-weight: 500; color: var(--accent); }
.prose h2 { font-family: var(--serif); font-weight: 500; font-size: 28px; letter-spacing: -0.015em; line-height: 1.15;
  margin: 40px 0 6px; scroll-margin-top: 96px; }
.prose h2 .num { font-family: var(--mono); font-size: 14px; color: var(--accent); display: block; margin-bottom: 8px;
  letter-spacing: 0.02em; font-weight: 500; }
.prose h3 { font-family: var(--sans); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; margin: 26px 0 4px; }
.prose ul { list-style: none; margin: 16px 0; display: flex; flex-direction: column; gap: 12px; }
.prose ul li { font-family: var(--serif); font-size: 17px; line-height: 1.55; color: var(--ink);
  padding-left: 26px; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--accent); }
.prose a.inline { color: var(--accent); text-decoration: underline; text-decoration-color: color-mix(in oklch, var(--accent) 40%, transparent); text-underline-offset: 3px; }
.prose hr { border: 0; height: 1px; background: var(--hairline); margin: 36px auto; width: 100%; }

/* Unclassed prose tables (e.g. the comparison / protocol tables in In Plain
   Language posts). Classed tables (.price-table, .comparison-table, .params-table)
   keep their own styling — this only catches raw <table> elements so they read at
   body size with proper spacing instead of the cramped browser default. */
.prose table:not([class]) {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 32px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  background: var(--paper);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.prose table:not([class]) th {
  padding: 13px 14px;
  text-align: left;
  vertical-align: bottom;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-bottom: 1px solid var(--ink);
}
.prose table:not([class]) td {
  padding: 15px 14px;
  vertical-align: top;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.prose table:not([class]) tbody tr:last-child td { border-bottom: 0; }
@media (max-width: 640px) {
  .prose table:not([class]) { font-size: 15px; }
  .prose table:not([class]) th,
  .prose table:not([class]) td { padding: 11px 10px; }
}

.pullquote { margin: 36px 0; padding: 4px 0 4px 26px; border-left: 3px solid var(--accent); }
.pullquote p { font-family: var(--serif); font-style: italic; font-size: 24px; line-height: 1.32; color: var(--ink);
  letter-spacing: -0.01em; text-wrap: pretty; }
.pullquote cite { display: block; margin-top: 12px; font-family: var(--sans); font-style: normal; font-size: 12px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }

.callout { padding: 22px 24px; margin: 30px 0; display: flex; gap: 14px; }
.callout .ic { color: var(--accent); flex: 0 0 auto; margin-top: 1px; }
.callout p { font-family: var(--sans); font-size: 14.5px; line-height: 1.55; color: var(--muted); }
.callout p b { color: var(--ink); }

/* In-article vendor price table */
.ptable { padding: 8px 8px 12px; margin: 30px 0; scroll-margin-top: 96px; }
.ptable .ph { display: grid; grid-template-columns: 1fr auto auto; gap: 14px; padding: 14px 16px 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.ptable .ph .r { text-align: right; }
.prow { display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center;
  padding: 14px 16px; border-radius: 14px; }
.prow + .prow { box-shadow: 0 -1px 0 var(--hairline); }
.prow .v { display: flex; align-items: center; gap: 11px; }
.prow .vt { width: 34px; height: 34px; border-radius: 10px; flex: 0 0 auto; display: grid; place-items: center;
  font-family: var(--sans); font-weight: 800; font-size: 14px; color: #fff; }
.prow .vn { font-family: var(--sans); font-size: 14.5px; font-weight: 600; }
.prow .vs { font-size: 11.5px; color: var(--faint); margin-top: 1px; }
.prow .col { text-align: right; font-variant-numeric: tabular-nums; font-size: 13.5px; color: var(--muted); }
.prow .pm { text-align: right; font-family: var(--sans); font-weight: 800; font-size: 18px; letter-spacing: -0.03em;
  color: var(--ink); min-width: 78px; }
.prow.best { background: var(--good-bg); box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--good) 30%, transparent); }
.prow.best .pm { color: var(--good); }
.prow .code { font-family: var(--mono); font-size: 11.5px; color: var(--accent);
  background: color-mix(in oklch, var(--accent) 10%, transparent); padding: 3px 8px; border-radius: 7px; }

/* Rail (sticky price summary) */
.rail { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 16px; }
.rail-card { padding: 22px; }
.rail-card .rl { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
.rail-card .big { font-family: var(--sans); font-weight: 800; letter-spacing: -0.04em; font-size: 40px; line-height: 1;
  margin-top: 10px; color: var(--good); }
.rail-card .big small { font-size: 16px; color: var(--muted); font-weight: 600; letter-spacing: 0; }
.rail-card .sub { font-size: 13px; color: var(--muted); margin-top: 6px; }
.rail-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 16px; background: var(--hairline);
  border-radius: 12px; overflow: hidden; }
.rail-stats div { background: var(--glass); padding: 13px 14px; }
.rail-stats .n { font-family: var(--sans); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.rail-stats .l { font-size: 11px; color: var(--muted); margin-top: 2px; }
.rail-card .btn { width: 100%; justify-content: center; margin-top: 16px; }
.rail-toc { padding: 20px 22px; }
.rail-toc h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 12px; }
.rail-toc a { display: flex; gap: 10px; font-size: 13.5px; color: var(--muted); padding: 6px 0; }
.rail-toc a:hover { color: var(--ink); }
.rail-toc a .n { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.rail-verdict { padding: 18px 22px; display: flex; align-items: center; gap: 12px; }
.rail-verdict .vd { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.rail-verdict .vt { font-size: 14px; font-weight: 700; }
.rail-verdict .vs2 { font-size: 12px; color: var(--muted); margin-top: 2px; }

a.marker-link { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: color-mix(in oklch, var(--accent) 45%, transparent); }
a.marker-link:hover { text-decoration-color: var(--accent); }

@media (max-width: 920px) {
  .article-grid { grid-template-columns: 1fr; gap: 8px; }
  .rail { position: static; flex-direction: column; }
  /* Peptide pages: lift the price card + "In this article" TOC above the article body on mobile. */
  .article-grid--rn > .rail { order: -1; }
}

/* ============================================================
   Search overlay (Pagefind) — markup in base.njk, behaviour in js/search.js.
   Hidden until a [data-search-open] trigger adds .is-open. Ported here from the
   legacy components.css (which base.njk no longer loads) and re-themed to the
   aurora tokens, so the modal — and its close button — aren't left visible at
   the foot of every page.
   ============================================================ */
.search-overlay {
  position: fixed; inset: 0; z-index: 1000; display: none;
  background: rgba(20,18,31,0.55);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  padding: 8vh 16px 16px;
}
.search-overlay.is-open { display: block; }
body.search-open { overflow: hidden; }

.search-modal {
  position: relative; max-width: 640px; margin: 0 auto;
  background: var(--bg); border: 1px solid var(--hairline); border-radius: 18px;
  box-shadow: var(--tab-shadow);
  padding: 28px 24px 24px; max-height: 84vh; overflow-y: auto;
}
.search-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: 0; font-size: 26px; line-height: 1;
  color: var(--faint); cursor: pointer;
}
.search-close:hover { color: var(--ink); }
.search-error { font-family: var(--sans); color: var(--muted); padding: 12px 0; }
.pf-meta { display: none; }

.search-ui {
  --pagefind-ui-primary: var(--accent);
  --pagefind-ui-text: var(--ink);
  --pagefind-ui-background: var(--bg);
  --pagefind-ui-border: var(--hairline);
  --pagefind-ui-tag: var(--chip-bg);
  --pagefind-ui-border-width: 1px;
  --pagefind-ui-border-radius: 12px;
  --pagefind-ui-font: var(--sans);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
