/* Tokaro — editorial warm aesthetic */

@font-face {
  font-family: 'Gilroy';
  src: url('Gilroy-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Theme: Warm editorial (default) — lighter, between cream and newsprint */
  --bg: #fbf8f2;
  --bg-alt: #f4eee3;
  --surface: #ffffff;
  --ink: #1a1614;
  --muted: #6b6259;
  --line: #e0d8cb;
  --accent: #c2410c;
  --accent-soft: #f4a472;

  --font-display: 'Tiempos Headline', 'Source Serif 4', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Söhne', 'Inter Tight', 'Helvetica Neue', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  --gutter: 88px;
  --max: 1320px;
  --section-pad: 140px;
  --radius: 0px;
}

/* Theme variants */
[data-theme="ink"] {
  --bg: #f3eee5;
  --bg-alt: #e9e1d2;
  --surface: #ffffff;
  --ink: #0e0c0a;
  --muted: #595048;
  --line: #cdc2b1;
  --accent: #1a1614;
  --accent-soft: #4a3f33;
}

[data-theme="dusk"] {
  --bg: #14110d;
  --bg-alt: #1c1813;
  --surface: #221d17;
  --ink: #f1ebe0;
  --muted: #a39687;
  --line: #3a3128;
  --accent: #e8a063;
  --accent-soft: #f4c79a;
}

[data-theme="newsprint"] {
  --bg: #ffffff;
  --bg-alt: #f5f3ee;
  --surface: #ffffff;
  --ink: #0a0a0a;
  --muted: #555;
  --line: #1a1a1a;
  --accent: #b91c1c;
  --accent-soft: #ef9a9a;
}

[data-type="serif"] {
  --font-display: 'Source Serif 4', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Source Serif 4', Georgia, serif;
}
[data-type="sans"] {
  --font-display: 'Inter Tight', system-ui, sans-serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
}
[data-type="mono"] {
  --font-display: 'Source Serif 4', Georgia, serif;
  --font-body: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "kern";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; }
::selection { background: var(--accent); color: var(--bg); }

/* Layout */
.shell { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
@media (max-width: 980px) { :root { --gutter: 32px; --section-pad: 96px; } }
@media (max-width: 640px) { :root { --gutter: 20px; --section-pad: 72px; } }

/* ─── NAV ─── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(8px);
  z-index: 50;
}
.wordmark {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Gilroy', var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.wordmark span { font-family: 'Gilroy', var(--font-display); font-weight: 700; }
.nav-links { display: flex; gap: 36px; font-size: 14px; }
.nav-links a { color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { font-size: 14px; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
@media (max-width: 780px) { .nav-links { display: none; } }

/* ─── HERO ─── */
.hero {
  padding: 112px var(--gutter) 96px;
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 56px;
}
.eb-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.eb-sep { opacity: 0.4; }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.4vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 0 0 40px;
  max-width: 18ch;
  text-wrap: balance;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  max-width: 56ch;
  color: var(--muted);
  margin: 0 0 48px;
  text-wrap: pretty;
}

.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 15px;
  font-family: var(--font-body);
  letter-spacing: 0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent); }
.btn-ghost {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 6px 0;
}
.btn-ghost:hover .arrow { transform: translateX(4px); }
.arrow { display: inline-block; transition: transform .2s; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 88px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta > div { display: flex; flex-direction: column; gap: 6px; padding-right: 24px; }
.hero-meta .meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.hero-meta .meta-val {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.01em;
}
@media (max-width: 780px) {
  .hero-meta { grid-template-columns: 1fr; gap: 20px; }
}

/* ─── SECTIONS GENERIC ─── */
/* Eyebrows sit BELOW a section's top border (the previous section's
   border-bottom). They no longer carry their own divider — that was
   creating two parallel lines on every section transition. */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 40px;
}
.section-h {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 32px;
  max-width: 22ch;
  text-wrap: balance;
}
.section-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 24px;
}
.section-sub:last-of-type { margin-bottom: 64px; }

/* ─── PROBLEM ─── */
.problem-foot {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
.link-jump {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--ink);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
  transition: color .2s, border-color .2s, gap .2s;
}
.link-jump:hover { color: var(--accent); border-bottom-color: var(--accent); gap: 18px; }
.lj-arrow { font-family: var(--font-body); font-size: 20px; }

.problem {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  margin-bottom: 96px;
}
.problem-copy p { font-size: 18px; line-height: 1.6; margin: 0 0 22px; max-width: 50ch; }
.problem-copy .lede {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.problem-copy p:not(.lede) { color: var(--muted); }

.vs-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: fit-content;
  position: sticky;
  top: 100px;
}
.vs-row { display: flex; flex-direction: column; gap: 16px; }
.vs-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.vs-label-now { color: var(--accent); }
.vs-art { display: flex; flex-direction: column; gap: 14px; }
.vs-svg { width: 100%; height: auto; color: var(--ink); }
.vs-svg-graph { color: var(--accent); }
.vs-cap {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.vs-divider { height: 1px; background: var(--line); margin: 28px 0; }

@media (max-width: 980px) {
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .vs-card { position: static; }
}

/* Levers */
.levers { padding-top: 32px; border-top: 1px solid var(--line); }
.levers-h {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}
.levers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.lever {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lever-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 14px;
}
.lever p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.55; }
.levers-foot {
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  max-width: 60ch;
  letter-spacing: -0.005em;
}
@media (max-width: 780px) { .levers-grid { grid-template-columns: 1fr; } }

/* ─── PRODUCT ─── */
.product {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.product-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-bottom: 96px;
}
.motion {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.motion-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.motion-h {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  font-weight: 400;
}
.motion-body p { font-size: 17px; line-height: 1.6; color: var(--muted); margin: 0 0 14px; max-width: 60ch; }
.motion-aside {
  border-left: 2px solid var(--accent);
  padding-left: 18px;
  margin-top: 18px !important;
  font-style: italic;
  color: var(--ink) !important;
  font-family: var(--font-display);
  font-size: 18px !important;
}
.motion-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}
.motion-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.45;
}
.motion-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-mono);
}
@media (max-width: 780px) {
  .motion { grid-template-columns: 1fr; gap: 20px; }
  .motion-list { grid-template-columns: 1fr; }
}

/* Workgraph */
.workgraph-wrap { margin-top: 32px; }
.workgraph-caption { margin-bottom: 20px; }
.wc-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 8px;
}
.wc-h {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.005em;
}
.workgraph {
  width: 100%;
}
.workgraph-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}
.workgraph-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.wg-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.wg-title {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.wg-meta {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.workgraph-svg { width: 100%; height: auto; display: block; background: var(--surface); }
.workgraph-legend {
  display: flex;
  gap: 28px;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.lg-item { display: inline-flex; align-items: center; gap: 8px; }
.lg-circle, .lg-square, .lg-diamond, .lg-out { width: 10px; height: 10px; }
.lg-circle { border: 1px solid var(--ink); border-radius: 50%; }
.lg-square { background: var(--ink); }
.lg-diamond { border: 1px solid var(--ink); transform: rotate(45deg); }
.lg-out { background: var(--accent); border-radius: 50%; }

/* ─── EXECUTIVES ─── */
.executives {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.exec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.exec-card {
  position: relative;
  padding: 40px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition: background .25s;
}
.exec-card:hover { background: var(--bg); }
.exec-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.exec-glyph {
  color: var(--accent);
  line-height: 0;
  margin-bottom: 24px;
}
.exec-h {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0 0 14px;
}
.exec-card p { color: var(--muted); font-size: 15.5px; line-height: 1.55; margin: 0; }
@media (max-width: 780px) { .exec-grid { grid-template-columns: 1fr; } }

/* ─── THESIS ─── */
.thesis {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.thesis-body { max-width: 64ch; }
.thesis-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  position: relative;
  text-wrap: pretty;
}
.quote-mark {
  font-size: 1.3em;
  color: var(--accent);
  margin-right: 6px;
  font-style: italic;
}
.thesis-body p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 22px;
  color: var(--muted);
}
.thesis-foot {
  font-family: var(--font-display) !important;
  color: var(--ink) !important;
  font-size: 22px !important;
  line-height: 1.4 !important;
  font-style: italic;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-top: 36px !important;
}
.values { margin-top: 64px; padding-top: 32px; border-top: 1px solid var(--line); }
.values-h {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 20px;
}
.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.values-list li {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--ink);
  padding-top: 14px;
  border-top: 2px solid var(--accent);
}
@media (max-width: 780px) { .values-list { grid-template-columns: 1fr 1fr; } }

/* ─── DIFFERENT ─── */
.different {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.diff-item h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0 0 14px;
  line-height: 1.2;
  text-wrap: balance;
}
.diff-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 20px;
}
.diff-item p { color: var(--muted); font-size: 16px; line-height: 1.55; margin: 0; }
@media (max-width: 880px) { .diff-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ─── CTA ─── */
.cta {
  padding: var(--section-pad) var(--gutter);
  background: var(--ink);
  color: var(--bg);
}
[data-theme="dusk"] .cta { background: var(--accent); color: var(--bg); }
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 32px;
}
.cta-h {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 0 0 24px;
}
.cta-sub {
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.7;
  max-width: 52ch;
  margin: 0 auto 40px;
}
.cta-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
}
.cta-action {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
.cta-action .cta-submit {
  display: inline-flex;
  align-items: center;
  background: var(--bg);
  color: var(--ink);
  border: 0;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.cta-action .cta-submit:hover { background: var(--accent-soft); color: var(--ink); }
.cta-form-inline {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid color-mix(in oklab, var(--bg) 22%, transparent);
  background: color-mix(in oklab, var(--bg) 4%, transparent);
}
.cta-input-inline {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--bg);
  padding: 18px 22px;
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  min-width: 0;
}
.cta-input-inline::placeholder { color: color-mix(in oklab, var(--bg) 42%, transparent); }
.cta-submit { background: var(--bg); color: var(--ink); border: none; padding: 18px 28px; white-space: nowrap; }
.cta-submit:hover { background: var(--accent-soft); }
.cta-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.cta-input-inline:disabled { opacity: 0.5; }
.cta-meta-line {
  margin: 24px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.7;
}
.cta-link {
  color: var(--bg);
  border-bottom: 1px solid color-mix(in oklab, var(--bg) 40%, transparent);
  transition: border-color .2s;
}
.cta-link:hover { border-color: var(--bg); }
@media (max-width: 540px) {
  .cta-form-inline { flex-direction: column; }
  .cta-submit { width: 100%; }
}

/* Formspree SDK toggles visibility via the data attributes */
[data-fs-success], [data-fs-error] { display: none; }
[data-fs-success].fs-success-visible,
[data-fs-error].fs-error-visible { display: flex; }

.cta-success {
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border: 1px solid color-mix(in oklab, var(--bg) 30%, transparent);
  background: color-mix(in oklab, var(--bg) 8%, transparent);
  margin: 0 auto 16px;
  width: fit-content;
}
.cta-success-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.cta-success-text {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.005em;
}
.cta-error {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-soft);
  letter-spacing: 0.04em;
}
.cta-error-field { display: block; margin-top: 8px; }
.cta-input[aria-invalid="true"] { border-color: var(--accent-soft); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.cta-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.5;
}

/* ─── FOOTER ─── */
.footer {
  padding: 64px var(--gutter) 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .wordmark { margin-bottom: 14px; }
.footer-tag {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.4;
  color: var(--muted);
  max-width: 32ch;
  margin: 0;
  letter-spacing: -0.005em;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col-h {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-cols a {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-cols a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
@media (max-width: 780px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}


/* ═══════════════════════════════════════════════════════════
   SUB-PAGE PATTERNS — added for the expanded site
   ═══════════════════════════════════════════════════════════ */

/* Active nav link */
.nav-links a[aria-current="page"] {
  color: var(--ink);
  position: relative;
}
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: var(--accent);
}

/* ─── PAGE HERO (smaller than home hero) ─── */
.page-hero {
  padding: 96px var(--gutter) 80px;
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.page-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 40px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 0 0 32px;
  max-width: 22ch;
  text-wrap: balance;
}
.page-hero-title em { font-style: italic; color: var(--accent); }
.page-hero-lede {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 56ch;
  margin: 0;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.page-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.page-hero-meta > div { display: flex; flex-direction: column; gap: 6px; padding-right: 24px; }
.page-hero-meta .meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.page-hero-meta .meta-val {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.005em;
}
@media (max-width: 780px) {
  .page-hero-meta { grid-template-columns: 1fr; gap: 20px; }
}

/* ─── GENERIC SECTION SHELL ─── */
.section {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.section-alt { background: var(--bg-alt); }
.section-alt > .section-inner {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

/* ─── PROSE (long-form text used in About, Insights posts, Security) ─── */
.prose {
  max-width: 64ch;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
}
.prose > * + * { margin-top: 1.2em; }
.prose p { color: var(--ink); margin: 0; }
.prose p.muted { color: var(--muted); }
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 400;
  margin: 64px 0 8px;
  text-wrap: balance;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 40px 0 4px;
}
.prose .lede {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 32px;
  text-wrap: pretty;
}
.prose blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
  text-wrap: pretty;
}
.prose ul, .prose ol { padding-left: 22px; margin: 0; color: var(--ink); }
.prose li { margin-bottom: 8px; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul li {
  position: relative;
  padding-left: 22px;
}
.prose ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-mono);
}
.prose a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  transition: color .2s;
}
.prose a:hover { color: var(--accent); }

/* ─── ARTICLE LAYOUT (long-form pages: About, Insights post, Security) ─── */
.article {
  display: grid;
  grid-template-columns: 1fr 64ch 1fr;
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  gap: 0 56px;
  border-bottom: 1px solid var(--line);
}
.article > .prose { grid-column: 2; }
.article-aside {
  grid-column: 1;
  position: sticky;
  top: 100px;
  align-self: start;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-right: 16px;
}
.article-aside ol { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 10px; }
.article-aside a { color: var(--muted); transition: color .2s; }
.article-aside a:hover { color: var(--ink); }
.article-aside .active { color: var(--ink); }
@media (max-width: 980px) {
  .article { grid-template-columns: 1fr; }
  .article > .prose { grid-column: 1; }
  .article-aside { position: static; padding-right: 0; padding-bottom: 24px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
}

/* ─── BIG STAT ROW ─── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.stat {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 14px;
}
.stat-num em { font-style: italic; color: var(--accent); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.stat-cap { color: var(--muted); font-size: 14px; line-height: 1.5; max-width: 32ch; }
@media (max-width: 780px) { .stats { grid-template-columns: 1fr; } }

/* ─── PEOPLE / TEAM GRID ─── */
.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.person {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.person-portrait {
  aspect-ratio: 5 / 6;
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--accent) 18%, transparent), transparent 60%),
    var(--bg-alt);
  border: 1px solid var(--line);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.person-portrait::after {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px;
  font-family: var(--font-display);
  font-size: 64px;
  letter-spacing: -0.02em;
  color: color-mix(in oklab, var(--ink) 30%, transparent);
}
.person-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.005em;
  margin: 0 0 4px;
}
.person-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.person-bio { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 0; }
@media (max-width: 880px) { .people { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .people { grid-template-columns: 1fr; } }

/* ─── CARDS GRID (insights index, generic) ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.card {
  display: block;
  padding: 36px 32px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  transition: background .25s, transform .25s;
}
.card:hover { background: var(--bg); }
.card-meta {
  display: flex;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.card-meta .dot { opacity: 0.4; }
.card-h {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 0 0 14px;
  text-wrap: balance;
}
.card-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 50ch;
}
.card-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card:hover .card-link { color: var(--accent); }
.card:hover .card-link .arrow { transform: translateX(4px); }
@media (max-width: 780px) { .cards { grid-template-columns: 1fr; } }

/* Featured card — full width, larger */
.card-featured {
  grid-column: 1 / -1;
  padding: 56px 48px 64px;
  background: var(--ink);
  color: var(--bg);
}
.card-featured .card-h {
  font-size: clamp(36px, 4vw, 56px);
  max-width: 22ch;
}
.card-featured .card-meta { color: color-mix(in oklab, var(--bg) 55%, transparent); }
.card-featured .card-sub { color: color-mix(in oklab, var(--bg) 70%, transparent); max-width: 60ch; font-size: 18px; }
.card-featured .card-link { color: var(--bg); }
.card-featured:hover { background: var(--ink); }
.card-featured:hover .card-link { color: var(--accent-soft); }

/* ─── PRINCIPLES / NUMBERED LIST (Security, About) ─── */
.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.principle {
  padding: 36px 32px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principle-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.principle-h {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  font-weight: 400;
  margin: 0 0 12px;
  text-wrap: balance;
}
.principle p { color: var(--muted); font-size: 15.5px; line-height: 1.6; margin: 0; }
@media (max-width: 780px) { .principles { grid-template-columns: 1fr; } }

/* ─── PULL QUOTE (full bleed within page) ─── */
.pullquote {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.pullquote-q {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 24ch;
  text-wrap: balance;
  margin: 0 0 32px;
}
.pullquote-q em { font-style: italic; color: var(--accent); }
.pullquote-attr {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── FAQ ─── */
.faq {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 56ch 1fr;
  gap: 56px;
}
.faq-q {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  font-weight: 400;
  margin: 0;
  text-wrap: balance;
}
.faq-a { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 0; max-width: 60ch; }
@media (max-width: 880px) {
  .faq-item { grid-template-columns: 1fr; gap: 14px; }
}

/* ─── COMPACT TIMELINE (About / company history) ─── */
.timeline {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
}
.timeline-row {
  display: contents;
}
.timeline-when {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 28px 24px 28px 0;
  border-top: 1px solid var(--line);
}
.timeline-what {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.timeline-what h4 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.005em;
  font-weight: 400;
  margin: 0 0 8px;
}
.timeline-what p { color: var(--muted); font-size: 15.5px; line-height: 1.55; margin: 0; max-width: 56ch; }

/* ─── FOR-LEADERS PANELS ─── */
.leader-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.leader-panel:first-of-type { border-top: 1px solid var(--line); }
.leader-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.leader-tag-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.leader-h {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 400;
  margin: 0 0 20px;
  text-wrap: balance;
}
.leader-body p { color: var(--muted); font-size: 17px; line-height: 1.6; margin: 0 0 16px; max-width: 60ch; }
.leader-body p:last-child { margin-bottom: 0; }
.leader-questions {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.leader-questions-h {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.leader-questions ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.leader-questions li {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.leader-questions li::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 24px;
  color: var(--accent);
}
@media (max-width: 880px) {
  .leader-panel { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
}

/* ─── PLATFORM DEEP DIVE ─── */
.deep {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.deep-h {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 32px;
  max-width: 22ch;
  text-wrap: balance;
}
.deep-h em { font-style: italic; color: var(--accent); }
.deep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.deep-grid p { color: var(--muted); font-size: 17px; line-height: 1.6; margin: 0 0 16px; }
.deep-grid p.lede {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.005em;
}
@media (max-width: 880px) { .deep-grid { grid-template-columns: 1fr; gap: 32px; } }

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 32px;
}
.feature {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-h {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  font-weight: 400;
  margin: 0 0 10px;
}
.feature p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 0; }
@media (max-width: 880px) { .feature-list { grid-template-columns: 1fr; } }

/* ─── INLINE CTA STRIP (used at end of sub-pages) ─── */
.cta-strip {
  padding: 88px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: end;
  gap: 56px;
  border-bottom: 1px solid var(--line);
}
.cta-strip-h {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.cta-strip-h em { font-style: italic; color: var(--accent); }
.cta-strip-actions { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; justify-content: flex-end; }
@media (max-width: 880px) {
  .cta-strip { grid-template-columns: 1fr; gap: 32px; }
  .cta-strip-actions { justify-content: flex-start; }
}

/* ─── SITEMAP / INDEX REVIEW PAGE ─── */
.sitemap {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.sitemap-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: background .25s, border-color .25s;
}
.sitemap-card:hover { background: var(--bg-alt); border-color: var(--ink); }
.sitemap-card .sm-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.sitemap-card .sm-h {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.005em;
  margin: 0;
}
.sitemap-card .sm-sub { color: var(--muted); font-size: 14px; line-height: 1.5; margin: 0; }
.sitemap-card .sm-arrow {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
@media (max-width: 880px) { .sitemap-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .sitemap-grid { grid-template-columns: 1fr; } }

/* ─── INSIGHTS POST META ─── */
.post-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.post-meta .pm-cat { color: var(--accent); }

/* ─── CONTACT GRID ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.contact-channel {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.contact-channel-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 4px;
}
.contact-channel-val {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.005em;
}
.contact-channel-val a {
  border-bottom: 1px solid var(--line);
  transition: border-color .2s, color .2s;
}
.contact-channel-val a:hover { border-color: var(--accent); color: var(--accent); }
.contact-channel-cap {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-channel { grid-template-columns: 1fr; gap: 8px; }
}

/* ─── KBD-style inline mark ─── */
.kbd {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 2px 8px;
  letter-spacing: 0.04em;
  color: var(--ink);
}

/* ─── HOMEPAGE — ADDED VARIANTS ─── */
.home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 56px;
}
.home-eyebrow .eb-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.home-eyebrow .eb-sep { opacity: 0.4; }

/* Trusted-by row (logo bar replacement that fits the editorial tone) */
.trusted {
  padding: 56px var(--gutter) 64px;
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.trusted-h {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.trusted-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
  align-items: center;
}
.trusted-row .tr-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--ink);
  opacity: 0.7;
}
.trusted-row .tr-name em { font-style: italic; }
@media (max-width: 880px) { .trusted-row { grid-template-columns: 1fr 1fr; gap: 24px 32px; } }

/* Generic small "back" link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.back-link:hover { color: var(--accent); }
