/*
 * /words/* — shared stylesheet for the SEO word-list surface.
 *
 * Aesthetic: Editorial-Reference. A printed dictionary made web-native.
 * Heavy editorial type for the hero (Fraunces serif, large display sizes);
 * functional precision for the list (typographic ladder, monospace ranks,
 * italic example sentences). Mirrors the app's tokens (--ink, --paper,
 * --paper-elev, --gold, --brand-blue) so a logged-in user landing here
 * feels at home and a search-arriving visitor recognizes the same brand
 * when they convert.
 *
 * Constraints honored:
 * - No JS dependency (static HTML pages)
 * - Lighthouse mobile target ≥ 95
 * - prefers-color-scheme: dark flips theme via CSS only
 * - prefers-reduced-motion: reduce kills all animations
 * - Semantic HTML (header / main / section / article / footer)
 * - Type scale tuned for scannability over 1,000 rows of words
 */

/* Fonts shipped with the app — same files as the React surface. */
@font-face {
  font-family: "Satoshi";
  src: url("/fonts/Satoshi-Variable.woff2") format("woff2-variations"),
       url("/fonts/Satoshi-Variable.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("/fonts/Satoshi-VariableItalic.woff2") format("woff2-variations"),
       url("/fonts/Satoshi-VariableItalic.woff2") format("woff2");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

/* Fraunces — variable axes opsz / wght / SOFT / WONK. Same Google import
   as the app's Main.css. The "WONK" axis gives us the wonky-italic accent. */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT,WONK@0,9..144,400..700,0..100,0..1;1,9..144,400..700,0..100,0..1&display=swap");

/* === Tokens (mirror Main.css :root and .dark blocks) === */
:root {
  --ink: 222 47% 11%;
  --paper: 40 30% 97%;
  --paper-elev: 0 0% 100%;
  --gold: 42 92% 56%;
  --brand-blue: 199 99% 50%;
  --brand-yellow: 51 92% 57%;
  --tracking-eyebrow: 0.22em;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: 40 30% 97%;
    --paper: 224 47% 6%;
    --paper-elev: 222 33% 9%;
    --gold: 42 92% 62%;
  }
}

/* === Reset + base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: hsl(var(--ink));
  background: hsl(var(--paper));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "tnum";
}
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid hsl(var(--brand-blue)); outline-offset: 2px; border-radius: 4px; }
button { font: inherit; cursor: pointer; }

/* === Display utilities === */
.font-display { font-family: "Fraunces", ui-serif, Georgia, serif; font-feature-settings: "ss01", "ss02"; font-variation-settings: "opsz" 144, "SOFT" 50; letter-spacing: -0.02em; }
.font-mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-feature-settings: "tnum"; }
.eyebrow { font-size: 11px; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: hsl(var(--ink) / 0.55); font-weight: 500; }
.tab-num { font-variant-numeric: tabular-nums; }

/* === Layout === */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* === Nav === */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: hsl(var(--paper) / 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--ink) / 0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-wordmark { display: inline-flex; align-items: center; }
.nav-wordmark svg { height: 28px; width: auto; color: hsl(var(--ink)); }
.nav-links { display: none; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 14px; color: hsl(var(--ink) / 0.7); transition: color 0.2s; }
.nav-links a:hover { color: hsl(var(--ink)); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions a.signin { font-size: 14px; color: hsl(var(--ink) / 0.7); }
.nav-actions a.signin:hover { color: hsl(var(--ink)); }
.nav-actions a.cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0 16px; height: 36px; border-radius: 9999px;
  background: hsl(var(--ink)); color: hsl(var(--paper));
  font-size: 14px; font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-actions a.cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px hsl(var(--ink) / 0.2); }
@media (min-width: 768px) { .nav-links { display: flex; } }

/* === Hero === */
.hero {
  position: relative;
  padding: 64px 0 32px;
  overflow: hidden;
}
.hero::before {
  /* Brand-blue wash, same idiom as landing */
  content: "";
  position: absolute; top: -100px; left: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, hsl(var(--brand-blue) / 0.18), transparent 60%);
  filter: blur(60px);
  pointer-events: none; z-index: -1;
  opacity: 0.6;
}
.hero::after {
  /* Gold wash bottom-right */
  content: "";
  position: absolute; bottom: -150px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, hsl(var(--gold) / 0.22), transparent 60%);
  filter: blur(60px);
  pointer-events: none; z-index: -1;
  opacity: 0.5;
}
.breadcrumbs { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: hsl(var(--ink) / 0.5); margin-bottom: 16px; }
.breadcrumbs a:hover { color: hsl(var(--ink) / 0.8); }
.breadcrumbs .sep { margin: 0 8px; }
.hero h1 {
  font-family: "Fraunces", ui-serif, serif;
  font-weight: 500;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  max-width: 18ch;
  color: hsl(var(--ink));
}
.hero h1 em {
  font-style: normal;
  font-variation-settings: "opsz" 144, "WONK" 1;
  color: hsl(var(--brand-blue));
}
.hero p.lead { font-size: 17px; max-width: 56ch; color: hsl(var(--ink) / 0.72); line-height: 1.55; margin: 0 0 36px; }
.hero meta-row { display: block; }

/* Subtle staggered fade-in on hero load. CSS-only. */
@keyframes wordsFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade { opacity: 0; animation: wordsFadeIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.fade-1 { animation-delay: 60ms; }
.fade-2 { animation-delay: 140ms; }
.fade-3 { animation-delay: 220ms; }
.fade-4 { animation-delay: 320ms; }

/* === CTA pair === */
.cta-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 28px 0 0;
}
@media (min-width: 768px) { .cta-pair { grid-template-columns: 1fr 1fr; gap: 18px; } }

.cta-card {
  position: relative;
  padding: 22px 24px;
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.cta-card .q {
  font-family: "Fraunces", ui-serif, serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
}
.cta-card .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 6px;
  padding: 0 22px; height: 48px;
  border-radius: 9999px;
  font-size: 14px; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.25s;
}
.cta-card .btn .arrow { transition: transform 0.2s; }
.cta-card .btn:hover .arrow { transform: translateX(2px); }
.cta-card .note { font-size: 12px; color: hsl(var(--ink) / 0.55); margin-top: 2px; letter-spacing: 0.02em; }

/* Free card: paper-elev surface */
.cta-free {
  background: hsl(var(--paper-elev));
  border: 1px solid hsl(var(--ink) / 0.1);
}
.cta-free:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -16px hsl(var(--ink) / 0.18); }
.cta-free .btn {
  background: hsl(var(--ink)); color: hsl(var(--paper));
  box-shadow: 0 8px 22px -10px hsl(var(--ink) / 0.45);
}
.cta-free .btn:hover { box-shadow: 0 14px 28px -10px hsl(var(--ink) / 0.55); transform: translateY(-1px); }

/* Pro card: ink+gold gradient — premium tell */
.cta-pro {
  background: hsl(var(--ink));
  color: hsl(var(--paper));
  border: 1px solid hsl(var(--ink));
  box-shadow: 0 18px 40px -20px hsl(var(--ink) / 0.5);
}
.cta-pro::before {
  content: ""; position: absolute; top: -80px; right: -80px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, hsl(var(--gold) / 0.4), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}
.cta-pro .q { color: hsl(var(--paper)); position: relative; }
.cta-pro .note { color: hsl(var(--paper) / 0.6); position: relative; }
.cta-pro .btn {
  background: hsl(var(--paper)); color: hsl(var(--ink));
  position: relative;
}
.cta-pro .btn:hover { transform: translateY(-1px); box-shadow: 0 14px 28px -10px hsl(0 0% 0% / 0.3); }
.cta-pro .crown { color: hsl(var(--gold)); }

/* === Editorial intro === */
.editorial {
  padding: 56px 0;
  border-top: 1px solid hsl(var(--ink) / 0.1);
  border-bottom: 1px solid hsl(var(--ink) / 0.1);
}
.editorial h2 { font-family: "Fraunces", ui-serif, serif; font-size: 28px; font-weight: 500; letter-spacing: -0.02em; margin: 0 0 16px; }
.editorial p { font-size: 17px; line-height: 1.65; color: hsl(var(--ink) / 0.78); max-width: 64ch; margin: 0; font-family: "Fraunces", ui-serif, serif; font-style: italic; font-variation-settings: "opsz" 30, "SOFT" 40; }

/* === Jump nav === */
.jump-nav {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 24px 0; margin: 0;
  list-style: none;
}
.jump-nav a {
  display: inline-flex; padding: 6px 14px;
  background: hsl(var(--paper-elev));
  border: 1px solid hsl(var(--ink) / 0.1);
  border-radius: 9999px;
  font-size: 13px; color: hsl(var(--ink) / 0.7);
  transition: border-color 0.2s, color 0.2s;
}
.jump-nav a:hover { color: hsl(var(--ink)); border-color: hsl(var(--ink) / 0.3); }

/* === The list — the typographic specimen === */
.word-list { margin: 0 0 48px; padding: 0; list-style: none; counter-reset: word-rank; }
.word-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid hsl(var(--ink) / 0.08);
  scroll-margin-top: 80px; /* anchor jumps land below sticky nav */
}
@media (min-width: 768px) {
  .word-row { grid-template-columns: 80px 1fr 1fr; gap: 32px; padding: 26px 0; }
}
.word-rank {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  color: hsl(var(--ink) / 0.4);
  padding-top: 14px;
}
.word-main { display: flex; flex-direction: column; gap: 4px; }
.word-headword {
  font-family: "Fraunces", ui-serif, serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: hsl(var(--ink));
}
.word-headword .pos {
  display: inline-block;
  margin-left: 10px;
  font-size: 12px;
  font-style: italic;
  font-family: "Fraunces", ui-serif, serif;
  color: hsl(var(--ink) / 0.4);
  letter-spacing: 0;
  vertical-align: middle;
  transform: translateY(-2px);
}
.word-ipa {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  color: hsl(var(--ink) / 0.55);
  letter-spacing: 0;
}
.word-side { display: flex; flex-direction: column; gap: 6px; padding-top: 6px; }
@media (max-width: 767px) {
  .word-side { grid-column: 2; }
}
.word-gloss { font-size: 15px; color: hsl(var(--ink) / 0.85); font-weight: 500; }
.word-example {
  font-family: "Fraunces", ui-serif, serif;
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 40;
  font-size: 14px;
  line-height: 1.5;
  color: hsl(var(--ink) / 0.68);
  border-left: 2px solid hsl(var(--ink) / 0.12);
  padding-left: 12px;
}
.word-example-gloss { font-size: 13px; color: hsl(var(--ink) / 0.45); font-style: normal; }

/* Section divider — every 100 words */
.section-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 28px 0 8px;
  padding: 12px 0;
}
.section-divider .line { flex: 1; height: 1px; background: hsl(var(--ink) / 0.15); }
.section-divider .label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--ink) / 0.5);
  font-variant-numeric: tabular-nums;
}

/* === Mid-CTA — interrupts the long list to re-engage === */
.mid-cta {
  background: hsl(var(--paper-elev));
  border: 1px solid hsl(var(--ink) / 0.1);
  border-radius: 24px;
  padding: 28px 24px;
  margin: 32px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.mid-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, hsl(var(--brand-blue) / 0.06), transparent 60%);
  pointer-events: none;
}
.mid-cta .q { font-family: "Fraunces", ui-serif, serif; font-size: 24px; font-weight: 500; margin: 0 0 14px; position: relative; }
.mid-cta .btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 24px; height: 48px;
  border-radius: 9999px;
  background: hsl(var(--ink)); color: hsl(var(--paper));
  font-size: 14px; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.mid-cta .btn:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -10px hsl(var(--ink) / 0.5); }

/* === Remaining-note (Phase 1 honesty banner) === */
.remaining-note {
  background: hsl(var(--paper-elev));
  border: 1px dashed hsl(var(--ink) / 0.18);
  border-radius: 16px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 14px;
  color: hsl(var(--ink) / 0.6);
  line-height: 1.55;
  font-style: italic;
  font-family: "Fraunces", ui-serif, serif;
}

/* === See also === */
.see-also { padding: 64px 0 32px; }
.see-also h2 { font-family: "Fraunces", ui-serif, serif; font-size: 28px; font-weight: 500; letter-spacing: -0.02em; margin: 0 0 24px; }
.see-also ul { list-style: none; padding: 0; margin: 0; }
.see-also li { border-top: 1px solid hsl(var(--ink) / 0.08); }
.see-also li:last-child { border-bottom: 1px solid hsl(var(--ink) / 0.08); }
.see-also a {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0;
  font-size: 17px;
  color: hsl(var(--ink));
  transition: padding 0.2s, color 0.2s;
}
.see-also a:hover { padding-left: 8px; color: hsl(var(--brand-blue)); }
.see-also .arrow { font-family: ui-monospace, "SF Mono", monospace; color: hsl(var(--ink) / 0.4); transition: transform 0.2s, color 0.2s; }
.see-also a:hover .arrow { transform: translateX(4px); color: hsl(var(--brand-blue)); }

/* === FAQ === */
.faq { padding: 32px 0 80px; }
.faq h2 { font-family: "Fraunces", ui-serif, serif; font-size: 32px; font-weight: 500; letter-spacing: -0.02em; margin: 0 0 24px; }
.faq details {
  border-top: 1px solid hsl(var(--ink) / 0.1);
  padding: 18px 0;
}
.faq details:last-child { border-bottom: 1px solid hsl(var(--ink) / 0.1); }
.faq summary {
  font-family: "Fraunces", ui-serif, serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.012em;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  color: hsl(var(--ink));
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 22px;
  color: hsl(var(--ink) / 0.4);
  transition: transform 0.25s;
  font-weight: 400;
}
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { color: hsl(var(--ink) / 0.8); }
.faq details p { margin: 16px 0 0; font-size: 16px; line-height: 1.65; color: hsl(var(--ink) / 0.72); max-width: 64ch; }

/* === Sticky CTA bar (mobile-friendly, only visible after scrolling 600px) === */
.sticky-bar {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 18px;
  background: hsl(var(--paper-elev));
  border: 1px solid hsl(var(--ink) / 0.12);
  border-radius: 9999px;
  box-shadow: 0 18px 40px -16px hsl(var(--ink) / 0.35);
  z-index: 40;
  font-size: 13px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.sticky-bar.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-bar .label { color: hsl(var(--ink) / 0.7); }
.sticky-bar .actions { display: flex; gap: 8px; }
.sticky-bar a {
  padding: 8px 14px;
  background: hsl(var(--ink)); color: hsl(var(--paper));
  border-radius: 9999px;
  font-size: 12px; font-weight: 600;
}
@media (max-width: 600px) {
  .sticky-bar { font-size: 12px; padding: 10px 14px; }
  .sticky-bar .label { display: none; }
}

/* === Footer === */
.footer {
  border-top: 1px solid hsl(var(--ink) / 0.1);
  padding: 56px 0 40px;
  margin-top: 80px;
  background: hsl(var(--paper));
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 32px; } }
.footer-brand p { font-size: 14px; color: hsl(var(--ink) / 0.55); margin: 16px 0 0; max-width: 28ch; line-height: 1.55; }
.footer-brand .founder { font-size: 12px; color: hsl(var(--ink) / 0.45); margin-top: 16px; }
.footer-brand .founder a { text-decoration: underline; text-underline-offset: 2px; }
.footer-brand .founder a:hover { color: hsl(var(--ink) / 0.7); }
.footer h3 { font-size: 11px; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: hsl(var(--ink) / 0.5); font-weight: 600; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: hsl(var(--ink) / 0.7); }
.footer ul a:hover { color: hsl(var(--ink)); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid hsl(var(--ink) / 0.1);
  display: flex; flex-direction: column; gap: 12px;
  font-size: 12px; color: hsl(var(--ink) / 0.45);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-bottom .made { letter-spacing: 0.18em; text-transform: uppercase; font-size: 11px; color: hsl(var(--ink) / 0.35); }

/* === Sticky bar JS hook (controlled with vanilla JS in the page footer) === */

/* === Hub (/words/ index page) === */
.hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 32px 0 80px;
}
@media (min-width: 600px) { .hub-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .hub-grid { grid-template-columns: 1fr 1fr 1fr; } }
.hub-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 28px 24px;
  background: hsl(var(--paper-elev));
  border: 1px solid hsl(var(--ink) / 0.1);
  border-radius: 20px;
  transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s;
}
.hub-card.available:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -16px hsl(var(--ink) / 0.18); border-color: hsl(var(--brand-blue) / 0.4); }
.hub-card .lang {
  font-family: "Fraunces", ui-serif, serif;
  font-size: 36px;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: hsl(var(--ink));
}
.hub-card .iso { font-family: ui-monospace, "SF Mono", monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: hsl(var(--ink) / 0.5); margin-bottom: 4px; }
.hub-card .note { font-size: 13px; color: hsl(var(--ink) / 0.55); margin-top: 4px; }
.hub-card.soon { opacity: 0.6; }
.hub-card.soon .lang { color: hsl(var(--ink) / 0.6); }
.hub-card.soon .badge {
  display: inline-block; padding: 3px 9px; border-radius: 9999px;
  background: hsl(var(--ink) / 0.06); color: hsl(var(--ink) / 0.55);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  margin-top: 6px; align-self: flex-start;
}

/* ─── slice navigation (range / level / theme / language switchers) ─── */
.slice-nav {
  border-top: 1px solid hsl(var(--ink) / 0.08);
  border-bottom: 1px solid hsl(var(--ink) / 0.08);
  background: hsl(var(--paper-elev) / 0.55);
}
.slice-nav .container { padding-top: 20px; padding-bottom: 20px; display: flex; flex-direction: column; gap: 13px; }
.slice-group { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.slice-eyebrow {
  font-size: 11px; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: hsl(var(--ink) / 0.5); font-weight: 600; min-width: 116px; flex-shrink: 0;
}
.slice-links { display: flex; gap: 8px; flex-wrap: wrap; }
.slice-link {
  font-size: 13px; padding: 4px 12px; border-radius: 9999px; white-space: nowrap;
  border: 1px solid hsl(var(--ink) / 0.14); color: hsl(var(--ink) / 0.72); transition: all 0.15s;
}
.slice-link:hover { border-color: hsl(var(--ink) / 0.32); color: hsl(var(--ink)); background: hsl(var(--ink) / 0.03); }
.slice-link.current { background: hsl(var(--ink)); color: hsl(var(--paper)); border-color: hsl(var(--ink)); font-weight: 600; }
@media (max-width: 640px) {
  .slice-eyebrow { min-width: 0; width: 100%; margin-bottom: -4px; }
}
