:root {
  --bg: #ffffff;
  --ink: #0a0a0a;
  --muted: #6b7280;
  --soft: #9ca3af;
  --rule: #e5e7eb;
  --panel: #f5f5f5;
  --panel-warm: #fafaf7;
  --accent: #d23a3a;
  --accent-soft: #ffeceb;
  --dark: #0a0a0a;
  --gradient: linear-gradient(120deg, #eaf3ff 0%, #f4f1ff 50%, #e8fbf3 100%);
  --max: 1160px;
  --case-max: 760px;
  --case-wide: 920px;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
}
.skip-link:focus { left: 16px; top: 16px; z-index: 10; }

/* ---------- Header ---------- */
.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 48px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}
.header-right {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--rule);
  border-radius: 999px;
  overflow: hidden;
}
.lang-switch button {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.is-active {
  background: var(--ink);
  color: #fff;
}

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 48px 96px;
}

section { margin-bottom: 96px; }

.section-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 48px;
}

/* Home L1 hero — designer profile */
.home-hero {
  padding: 16px 0 16px;
  margin-bottom: 80px;
  max-width: 760px;
}
.home-hero .eyebrow {
  margin-bottom: 18px;
}
.home-hero-title {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.05;
  margin: 0 0 24px;
}
.home-hero-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 32px;
  max-width: 620px;
}
.home-hero-chips {
  margin: 0;
}

@media (max-width: 760px) {
  .home-hero { margin-bottom: 56px; }
  .home-hero-title { font-size: 32px; }
  .home-hero-lede { font-size: 16px; }
}

/* Project card impact line — Layer 1 result snapshot */
.project-card .card-impact {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.55;
}

/* ---------- Project grid ---------- */
.project-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 48px;
}
.project-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.project-card .thumb {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 560 / 365;
  background: var(--panel);
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}
.project-card .thumb.thumb-hero {
  aspect-ratio: 16 / 8;
}
.project-card a:hover .thumb { transform: translateY(-2px); }
.project-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.project-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  max-width: 28ch;
}
.project-card h3 .ext {
  font-size: 14px;
  color: var(--soft);
}
.project-card .year {
  font-size: 14px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.project-card .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.project-card .card-tags .tag {
  display: inline-block;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 3px 10px;
}
.project-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- Tools section ---------- */
.tool-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.tool-text .year { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.tool-text h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.tool-text p { color: var(--muted); font-size: 15px; max-width: 380px; }
.tool-img a { display: block; }
.tool-img img {
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

/* ---------- Behance CTA — quiet, single-line footer band ---------- */
.behance-band {
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.behance-band h2 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--ink);
}
.behance-band p {
  color: var(--muted);
  flex: 1;
  margin: 0 0 0 18px;
  font-size: 13.5px;
  max-width: 48ch;
}
.behance-band a {
  font-size: 13.5px;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--soft);
  text-underline-offset: 4px;
  white-space: nowrap;
}
.behance-band a:hover { text-decoration-color: var(--ink); }
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.btn-pill:hover { opacity: 0.85; }

/* ---------- Footer two-col ---------- */
.foot-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.foot-cols h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.foot-cols p { color: var(--muted); font-size: 15px; max-width: 460px; }
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}
.contact-list a { color: var(--ink); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

footer.site {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 48px 32px;
  font-size: 12px;
  color: var(--soft);
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
}

/* ---------- Case study ---------- */
.case-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 48px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.case-header a { color: var(--muted); text-decoration: none; }
.case-header a:hover { color: var(--ink); }

.case-hero {
  background: var(--gradient);
  padding: 80px 0 96px;
}
.case-hero-inner {
  max-width: var(--case-max);
  margin: 0 auto;
  padding: 0 48px;
}
.case-hero h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.case-hero .lede {
  font-size: 17px;
  color: var(--ink);
  max-width: 580px;
}

.case {
  max-width: var(--case-max);
  margin: 0 auto;
  padding: 80px 48px 96px;
}
.case section { margin-bottom: 64px; }
.case h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.case h2 .num {
  font-size: 14px;
  font-weight: 500;
  color: var(--soft);
  font-variant-numeric: tabular-nums;
}
.case h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 32px 0 12px;
}
.case p { margin-bottom: 16px; color: var(--ink); }
.case p.muted { color: var(--muted); }
.case ul { list-style: none; padding: 0; margin: 0 0 16px; }
.case ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--ink);
}
.case ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
}

.toc {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
  margin-bottom: 48px;
}
.toc h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 500;
}
.toc ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 32px;
  padding: 0;
  font-size: 15px;
  counter-reset: toc;
}
.toc ol li { counter-increment: toc; }
.toc ol li::before {
  content: counter(toc, decimal-leading-zero) "  ";
  color: var(--soft);
  font-variant-numeric: tabular-nums;
}
.toc ol a { color: var(--ink); text-decoration: none; }
.toc ol a:hover { text-decoration: underline; }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.tag {
  display: inline-block;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 13px;
  color: var(--muted);
}

.meta-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  row-gap: 12px;
  column-gap: 24px;
  font-size: 14px;
  margin-bottom: 32px;
}
.meta-grid dt { color: var(--muted); }
.meta-grid dd { color: var(--ink); }

.callout {
  background: var(--panel);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 16px 0 24px;
  font-size: 15px;
}

.figure {
  margin: 28px 0;
}
.figure img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  background: var(--panel-warm);
  border-radius: 12px;
  display: block;
}
.figure figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
  max-width: 60ch;
}
.figure.dark img {
  background: #0a0a0a;
  max-height: 260px;
}
.figure.compact img,
.figure.feedback img {
  max-height: 220px;
}
.figure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.figure-grid img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  background: var(--panel-warm);
  border-radius: 10px;
  display: block;
}
.figure-grid .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}

.case-banner {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.case-banner img {
  width: 100%;
  display: block;
}

.creds {
  background: var(--panel);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  font-size: 14px;
}
.creds .row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}
.creds .row:last-child { margin-bottom: 0; }
.creds .row dt { color: var(--muted); }
.creds .row code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: #fff;
  border: 1px solid var(--rule);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  display: inline-block;
}

.case-end {
  text-align: left;
  padding: 96px 48px 48px;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.case-end h2 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.case-end a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
.case-end a:hover { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .figure-grid { grid-template-columns: 1fr; }
  .creds .row { grid-template-columns: 80px 1fr; }

  .wrap { padding: 32px 20px 64px; }
  .site-header { padding: 20px 20px 0; }
  .section-title { font-size: 28px; margin-bottom: 32px; }
  .project-grid { grid-template-columns: 1fr; gap: 48px; }
  .tool-row { grid-template-columns: 1fr; gap: 32px; }
  .behance-band { padding: 20px 0; }
  .behance-band p { margin: 4px 0 0; }
  .behance-band h2 { font-size: 14px; }
  .foot-cols { grid-template-columns: 1fr; gap: 32px; }
  footer.site { padding: 24px 20px 32px; flex-direction: column; gap: 8px; }
  .case-header { padding: 20px 20px 0; }
  .case-hero { padding: 48px 0 64px; }
  .case-hero-inner { padding: 0 20px; }
  .case-hero h1 { font-size: 44px; }
  .case { padding: 48px 20px 64px; }
  .case h2 { font-size: 22px; }
  .toc ol { grid-template-columns: 1fr; }
  .meta-grid { grid-template-columns: 100px 1fr; }
  .case-end { padding: 64px 20px 32px; }
  .case-end h2 { font-size: 36px; }
}

/* ============================================================
   EDITORIAL LAYER — eyebrow labels, impact, decisions, pulls
   ============================================================ */

/* Load mono font for eyebrows */
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap");

/* Eyebrow label — small caps in mono, accent colour */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-transform: lowercase;
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 500;
}
.eyebrow.muted { color: var(--muted); }
.eyebrow.dark  { color: #fff; }

/* IMPACT row — proportioned numbers, never dominant */
.impact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 0;
  margin: 36px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.impact-stat .num {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.05;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.impact-stat .num.small { font-size: 22px; white-space: normal; }
.impact-stat .caption {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 24ch;
}

/* Design-decision card */
.decision-card {
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 40px;
  margin: 40px 0;
  background: var(--panel-warm);
}
.decision-card > h3,
.decision-card > .h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 16px;
}
.decision-card p { color: var(--ink); }
.decision-card p:last-of-type { margin-bottom: 0; }
.decision-card figure.figure { margin: 28px 0 8px; }
.decision-card figure.figure img {
  border: 1px solid var(--rule);
}

/* Learning callouts inside decision cards */
.learnings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.learning {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 20px 22px;
}
.learning .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.learning .text {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}

/* Version frame — "Version 01" caption above an image */
.version {
  margin: 24px 0;
}
.version .label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}
.version .title {
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.version img { width: 100%; border-radius: 12px; border: 1px solid var(--rule); display: block; }

/* Pull quote — scaled below the section h2 */
.pull-quote {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-weight: 500;
  font-style: italic;
  margin: 40px 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--accent);
  max-width: 580px;
  color: var(--ink);
}
.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Dark block — for contrast sections */
.dark-block {
  background: var(--dark);
  color: #f5f5f5;
  border-radius: 24px;
  padding: 56px 48px;
  margin: 56px 0;
}
.dark-block h2 { color: #fff; }
.dark-block p  { color: #d4d4d4; }
.dark-block .eyebrow { color: #ff7a6c; }
.dark-block ul li { color: #d4d4d4; }
.dark-block ul li::before { background: #ff7a6c; }
.dark-block figure img { border: 1px solid #1f1f1f; }
.dark-block .pull-quote { color: #fff; border-left-color: #ff7a6c; }

/* Insight block — artefact wrapped around a single key insight */
.insight-block {
  background: var(--panel-warm);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 32px 36px;
  margin: 36px 0;
}
.insight-block .eyebrow { margin-bottom: 14px; }
.insight-block .quote {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.012em;
  margin: 0 0 10px;
  max-width: 580px;
  color: var(--ink);
}
.insight-block .source {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 20px;
}
.insight-block figure.figure {
  margin: 8px 0 0;
}
.insight-block figure.figure img {
  max-height: 300px;
}

/* Annotation list — numbered notes that make a figure speak */
.annotation-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-top: 20px;
}
.annotation {
  display: flex;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
}
.annotation .num {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 7px;
  border-radius: 4px;
  flex-shrink: 0;
  height: fit-content;
  margin-top: 2px;
  letter-spacing: 0.04em;
}

/* Quote callout — a single high-signal sentence pulled from a user */
.quote-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 22px 26px;
  margin: 28px 0;
}
.quote-callout .mark {
  font-family: var(--mono);
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}
.quote-callout .body {
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
}
.quote-callout .meta {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
  font-weight: 400;
}

/* AI loop band — dedicated tinted block */
.ai-block {
  background: #f3f0ff;
  border: 1px solid #e2dbf9;
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
}
.ai-block .eyebrow { color: #6938e0; }
.ai-block h2, .ai-block h3 { color: var(--ink); }

/* Section divider — eyebrow + rule */
.divider {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  margin: 72px 0 24px;
}
.divider .eyebrow { margin: 0; }
.divider .line {
  height: 1px;
  background: var(--rule);
}

/* Home: "How I work" — skills snapshot */
.skills-snapshot {
  background: var(--panel);
  border-radius: 24px;
  padding: 48px;
}
.skills-snapshot h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 4px 0 24px;
}
.skill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  margin-top: 16px;
}
.skill-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  gap: 16px;
}
.skill-row .name {
  font-weight: 600;
  font-size: 16px;
}
.skill-row .evidence {
  font-size: 13.5px;
  color: var(--muted);
  grid-column: 1 / -1;
  margin-top: 2px;
}
.skill-row .pct {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
}

/* Meta chips bar — comma-separated metadata */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.7;
  margin: 20px 0 0;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.chips span strong {
  color: var(--ink);
  font-weight: 500;
}

/* Section h2 in cases — slight editorial bump */
.case section > h2 {
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}

/* Wider container for cases when needed */
.case.wide {
  max-width: var(--case-wide);
}

@media (max-width: 760px) {
  .impact-row { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 24px 0; margin: 28px 0; }
  .impact-stat .num { font-size: 26px; }
  .impact-stat .num.small { font-size: 18px; }
  .impact-stat .caption { font-size: 12px; }
  .decision-card { padding: 24px 20px; border-radius: 14px; }
  .decision-card > h3 { font-size: 20px; }
  .learnings { grid-template-columns: 1fr; }
  .pull-quote { font-size: 18px; padding-left: 16px; margin: 32px 0; }
  .pull-quote cite { font-size: 11px; }
  .dark-block { padding: 28px 20px; border-radius: 16px; margin: 32px 0; }
  .ai-block { padding: 24px 20px; border-radius: 16px; }
  .skills-snapshot { padding: 28px 22px; }
  .skill-grid { grid-template-columns: 1fr; }
  .chips { gap: 2px 14px; font-size: 11px; padding: 12px 0; }
  .case section > h2 { font-size: 22px; }
  .figure img { max-height: 320px; }
  .figure.dark img { max-height: 260px; }
  .figure-grid { grid-template-columns: 1fr; }
  .figure-grid img { max-height: 260px; }
  .insight-block { padding: 24px 20px; border-radius: 14px; }
  .insight-block .quote { font-size: 18px; }
  .annotation-list { grid-template-columns: 1fr; }
  .quote-callout { padding: 18px 20px; gap: 14px; }
  .quote-callout .body { font-size: 15px; }
  .quote-callout .mark { font-size: 26px; }
}

/* ============================================================
   CASE STUDY — SHORT-FORM (Aneta lessons, plain language)
   ============================================================ */

/* In-page TOC pills under the hero */
.case-toc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 48px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.case-toc-pills a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.case-toc-pills a:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.case-toc-pills a .num {
  color: var(--accent);
}

/* Snapshot row — 4 quick facts under H1 */
.snap-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px 0;
  margin: 0 0 56px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.snap-row .cell {
  font-size: 14px;
  line-height: 1.45;
}
.snap-row .label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.snap-row .value {
  display: block;
  color: var(--ink);
  font-weight: 500;
}
.snap-row .value .aside {
  display: block;
  font-weight: 400;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
  font-style: italic;
}
.snap-row .value strong {
  font-weight: 600;
}

/* Short-form section blocks — minimal chrome */
.sf-section {
  margin: 0 0 64px;
  scroll-margin-top: 80px;
}
.sf-section > .case-eyebrow { margin-bottom: 14px; }
.sf-section > h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
  margin: 0 0 16px;
  max-width: 28ch;
}
.sf-section > p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 60ch;
}

/* Verbatim italic shift quote — the core design rule */
.shift-quote {
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.014em;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 20px;
  margin: 0 0 8px;
  max-width: 36ch;
}

/* 3-up decision cards (short form) */
.sf-decisions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 20px 0 0;
}
.sf-decision {
  background: var(--panel-warm);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sf-decision h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.35;
  margin: 0;
}
.sf-decision p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.sf-decision figure {
  margin: 12px 0 0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--rule);
}
.sf-decision figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.sf-decisions.four { grid-template-columns: repeat(2, 1fr); gap: 18px; }
.sf-decisions.two  { grid-template-columns: repeat(2, 1fr); gap: 18px; }

/* Standalone short-form figure — for sections that earn one image */
.sf-figure {
  margin: 24px 0 0;
}
.sf-figure img {
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  background: var(--panel-warm);
  border: 1px solid var(--rule);
  border-radius: 12px;
}
.sf-figure figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
  max-width: 60ch;
}

/* Side-by-side small figure row (for impact evidence images) */
.sf-figure-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 0;
}
.sf-figure-row figure { margin: 0; }
.sf-figure-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--rule);
  background: var(--panel-warm);
}
.sf-figure-row figcaption {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.45;
}

/* 3-up impact pillars (short form) */
.sf-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 24px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.sf-impact .pillar-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.sf-impact .impact-num {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 8px;
  font-variant-numeric: tabular-nums;
}
.sf-impact .impact-num.small { font-size: 22px; }
.sf-impact .impact-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 30ch;
}

/* Real quote block (Sebastian, May 31 kudos) */
.real-quote {
  background: var(--panel);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 24px 0 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.real-quote .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--rule);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  flex-shrink: 0;
}
.real-quote .body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.real-quote .meta {
  display: block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* AI list (FR) — compact */
.sf-ai-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.sf-ai-list li {
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  font-size: 14.5px;
  line-height: 1.55;
}
.sf-ai-list li:last-child {
  border-bottom: 1px solid var(--rule);
}
.sf-ai-list li strong {
  font-weight: 600;
  color: var(--ink);
}
.sf-ai-list .rejected {
  color: var(--muted);
  font-style: italic;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.55;
  max-width: 60ch;
}
.case .sf-ai-list li { padding-left: 0; }
.case .sf-ai-list li::before { display: none; content: none; }

/* AI co-pilot mock conversation card — used on Share Simulator case */
.ai-example {
  background: var(--panel-warm);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 22px 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ai-example .question {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin: 0;
  line-height: 1.4;
}
.ai-example .answer {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  padding-left: 12px;
  border-left: 2px solid var(--rule);
}
.ai-example .ai-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6938e0;
  margin-bottom: 4px;
  display: block;
}

/* Source citation under shift quotes — used for AI in Design Report 2026 */
.shift-cite {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 8px 0 0;
  display: block;
}

@media (max-width: 760px) {
  .snap-row { grid-template-columns: 1fr 1fr; gap: 16px; padding: 20px 0; margin-bottom: 32px; }
  .sf-section { margin-bottom: 40px; }
  .sf-section > h2 { font-size: 20px; }
  .shift-quote { font-size: 18px; padding-left: 16px; }
  .sf-decisions, .sf-impact { grid-template-columns: 1fr; gap: 14px; }
  .real-quote { padding: 18px 20px; gap: 14px; }
  .real-quote .body { font-size: 14px; }
  .case-toc-pills { gap: 6px; }
  .case-toc-pills a { font-size: 10.5px; padding: 5px 10px; }
}

/* ============================================================
   CASE STUDY — Aneta template (problem area / design decisions /
   user feedback / experiment / retrospective)
   ============================================================ */

.case-banner figcaption {
  max-width: var(--max);
  margin: 14px auto 0;
  padding: 0 48px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.case-eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 500;
}
.case-eyebrow.brand { color: var(--accent); }

.case-h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.026em;
  line-height: 1.1;
  margin: 0 0 40px;
  max-width: 22ch;
}

.case-context-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px 56px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 32px 0;
  margin: 0 0 64px;
}
.ctx-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: baseline;
}
.ctx-row .ctx-label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.ctx-row .ctx-value {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
}
.ctx-row .ctx-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
}
.ctx-row .ctx-list li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}
.ctx-row .ctx-list li::before {
  content: "·";
  position: absolute;
  left: 4px;
  top: -2px;
  color: var(--accent);
  font-weight: 700;
}

.case-section-h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 28ch;
}

/* Solution detail A / B side-by-side */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 36px 0;
}
.solution-detail {
  margin: 0;
}
.solution-detail .sd-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 14px 0 6px;
}
.solution-detail h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.35;
}
.solution-detail p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  max-width: 38ch;
}
.solution-detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--panel-warm);
  border-radius: 12px;
  display: block;
}

/* Numbered annotation list under a screen figure */
.annotation-list-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  margin: 24px 0 8px;
}
.annotation-2col {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}
.annotation-2col .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-top: 1px;
}

/* User feedback — 3-column testimonial cards */
.feedback-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-card .mark {
  font-family: var(--mono);
  font-size: 24px;
  color: var(--accent);
  line-height: 1;
  height: 14px;
}
.testimonial-card .body {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
  flex: 1;
  margin: 0;
}
.testimonial-card .cite {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.35;
}
.testimonial-card .avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--panel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--muted);
  flex-shrink: 0;
}
.testimonial-card .cite strong {
  color: var(--ink);
  font-weight: 600;
}

/* Before / After comparison */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 32px 0;
}
.ba-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ba-col .ba-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 4px;
}
.ba-col.before .ba-label { color: #9b4a3e; }
.ba-col.after .ba-label  { color: #2f7a52; }
.ba-col .ba-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ba-col .ba-stack img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  background: var(--panel-warm);
  border-radius: 8px;
  display: block;
}
.ba-col .ba-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 8px 0 0;
}

/* Retrospective — three impact pillars */
.retrospective-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 36px 0;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.impact-pillar .pillar-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}
.impact-pillar h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 8px;
}
.impact-pillar p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* Numbered chapter heading — Anastasiia source-IA style "01 Overview" */
.chapter-h2 {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 0 0 24px;
}
.chapter-h2 .num {
  font-size: 40px;
  font-weight: 700;
  color: #2860d7;
  font-family: var(--sans);
  letter-spacing: -0.02em;
  line-height: 1;
}
.chapter-h2 .label {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.chapter-section { margin: 64px 0 64px; padding-top: 32px; border-top: 1px solid var(--rule); }
.chapter-section:first-of-type { border-top: none; padding-top: 0; }
.chapter-lede {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 56ch;
  margin: 0 0 28px;
}

/* Overview side-by-side problem + goal panels */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 28px 0;
}
.overview-panel {
  border-left: 3px solid var(--accent);
  padding: 0 0 0 18px;
}
.overview-panel h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
}
.overview-panel p,
.overview-panel ul {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.overview-panel ul { padding-left: 18px; }
.overview-panel ul li { margin-bottom: 4px; }

/* Challenges 3-col grid */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}
.challenges-grid.two-row {
  grid-template-columns: 1fr 1fr;
}
.challenge-card {
  background: #fafafa;
  border-radius: 12px;
  padding: 20px 22px;
}
.challenge-card .glyph {
  width: 22px; height: 22px;
  background: #e8f4ee;
  border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: #2f7a52;
  font-size: 12px;
}
.challenge-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.35;
}
.challenge-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* UX framework — 3 pillars in a flow */
.frameworks-flow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 36px;
  flex-wrap: wrap;
}
.frameworks-flow .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fafafa;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.frameworks-flow .pill .glyph { color: var(--accent); }
.frameworks-flow .arrow { color: var(--soft); font-size: 14px; }

/* Design principles 2-col grid */
.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 32px;
}
.principle-card {
  background: #fafafa;
  border-radius: 12px;
  padding: 20px 22px;
}
.principle-card .glyph {
  width: 22px; height: 22px;
  background: #eef2fd;
  border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  color: #2860d7;
  font-size: 12px;
}
.principle-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.35;
}
.principle-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Research session list */
.research-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  margin: 16px 0 24px;
  font-size: 14px;
}
.research-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: var(--ink);
  border-bottom: 1px dashed var(--rule);
  list-style: none;
}
.research-list li .doc { color: var(--soft); font-size: 14px; }

/* Collaboration flow — Design → Eng → CS → Clients */
.collab-flow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 32px;
  flex-wrap: wrap;
}
.collab-flow .node {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.collab-flow .node .dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #d8e3f9;
  display: inline-flex; align-items: center; justify-content: center;
  color: #2860d7;
  font-size: 14px;
}
.collab-flow .arrow { color: var(--soft); font-size: 16px; }

/* Outcomes checklist */
.outcomes-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.outcomes-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 15px;
  line-height: 1.5;
}
.outcomes-list li::before {
  content: "✓";
  color: #2f7a52;
  font-weight: 700;
  margin-top: 1px;
}

/* Highlighted callout bar — used for "Saved ~1,000 hours/year of manual Excel work" */
.callout-bar {
  display: block;
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 18px 0 28px;
  max-width: 60ch;
}

/* Verbatim Slack/message block */
.message-block {
  background: var(--panel-warm);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 28px 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
}
.message-block .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--panel);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  font-weight: 600;
}
.message-block .meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.message-block .meta .name { font-weight: 600; font-size: 14px; }
.message-block .meta .time { font-size: 12px; color: var(--muted); font-family: var(--mono); }
.message-block .body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
}

@media (max-width: 760px) {
  .chapter-h2 .num { font-size: 28px; }
  .chapter-h2 .label { font-size: 24px; }
  .overview-grid { grid-template-columns: 1fr; }
  .challenges-grid,
  .challenges-grid.two-row,
  .principles-grid,
  .research-list { grid-template-columns: 1fr; }
  .frameworks-flow,
  .collab-flow { gap: 10px; }
}

/* Signal tag — subtle promise/tip marker inline with copy */
.signal-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 9px;
  border-radius: 4px;
  vertical-align: 2px;
  margin-right: 8px;
  font-weight: 500;
}
.signal-tag.ai        { color: #6938e0; background: #f3f0ff; }
.signal-tag.built     { color: #166534; background: #ecfaf0; }
.signal-tag.team      { color: #2860d7; background: #eef2fd; }
.signal-tag.strategic { color: #a14a07; background: #fdf3e7; }
.signal-tag.visual    { color: #b3344e; background: #fdecef; }
.signal-tag.problem   { color: #2f6b66; background: #ebf6f5; }

/* In-the-studio section on About me */
.now-block {
  margin: 64px 0 24px;
  padding-top: 56px;
  border-top: 1px solid var(--rule);
}
.now-block .tpl-section-label { margin-bottom: 24px; }
.now-block h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.18;
  margin: 0 0 16px;
  max-width: 22ch;
}
.now-block .now-lede {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 36px;
  max-width: 56ch;
}
.now-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 40px;
}
.now-card {
  background: var(--panel-warm);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.now-card .now-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #166534;
  background: #ecfaf0;
  border: 1px solid #c8e7d4;
  border-radius: 999px;
  padding: 4px 11px;
  align-self: flex-start;
  font-weight: 500;
}
.now-card .now-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18);
}
.now-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0;
}
.now-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.now-card .btn-pill-light { align-self: flex-start; }

.tools-row {
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
}
.tools-row .tools-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 16px;
}
.tools-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tools-list li {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 6px 14px;
}

@media (max-width: 760px) {
  .now-block h2 { font-size: 22px; }
  .now-grid { grid-template-columns: 1fr; gap: 14px; }
  .now-card { padding: 22px 22px; }
  .now-card h3 { font-size: 17px; }
}

/* Promises section on About me (legacy — kept for backward compat if reused) */
.promises-block {
  margin: 64px 0 24px;
  padding-top: 56px;
  border-top: 1px solid var(--rule);
}
.promises-block .tpl-section-label { margin-bottom: 24px; }
.promises-block h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin: 0 0 20px;
  max-width: 22ch;
}
.promises-block .promises-lede {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 56ch;
}
.promises-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.promise-card {
  background: var(--panel-warm);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 22px 24px;
}
.promise-card .promise-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 500;
}
.promise-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  line-height: 1.3;
}
.promise-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 10px;
}
.promise-card .where {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.promise-card .where a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--soft);
  text-underline-offset: 3px;
}
.promise-card .where a:hover { text-decoration-color: var(--ink); }

@media (max-width: 760px) {
  .promises-grid { grid-template-columns: 1fr; }
  .promises-block h2 { font-size: 24px; }
}

/* Closing testimonial — single card with image / quote / metrics */
.closing-testimonial {
  background: var(--panel-warm);
  border-radius: 18px;
  padding: 40px;
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}
.closing-testimonial .ct-quote {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 18px;
}
.closing-testimonial .ct-cite {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--muted);
}
.closing-testimonial .ct-cite .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--panel);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  flex-shrink: 0;
}
.closing-testimonial .ct-cite strong { color: var(--ink); font-weight: 600; }
.closing-testimonial .ct-side {
  display: grid;
  gap: 18px;
}
.closing-testimonial .ct-side .pillar-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
  font-weight: 500;
}
.closing-testimonial .ct-side p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 760px) {
  .case-h1 { font-size: 32px; }
  .case-context-grid { grid-template-columns: 1fr; gap: 24px; padding: 24px 0; }
  .ctx-row { grid-template-columns: 110px 1fr; gap: 16px; }
  .case-section-h2 { font-size: 22px; }
  .solution-grid { grid-template-columns: 1fr; gap: 20px; }
  .annotation-list-2col { grid-template-columns: 1fr; }
  .feedback-row { grid-template-columns: 1fr; }
  .before-after-grid { grid-template-columns: 1fr; }
  .retrospective-grid { grid-template-columns: 1fr; gap: 24px; }
  .closing-testimonial { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
  .closing-testimonial .ct-quote { font-size: 18px; }
  .case-banner figcaption { padding: 0 20px; }
}

/* ============================================================
   HOME HERO — reference-style, floated portrait + huge headline
   ============================================================ */

:root {
  --navy: #0a1f4a;
  --navy-soft: #1a2c5a;
}

/* Top nav: bigger CTA pill, brand mark optional */
.site-header.is-home {
  padding-top: 24px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.brand-mark .mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.brand-mark .name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.cta-pill-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.cta-pill-dark:hover { opacity: 0.92; transform: translateY(-1px); }
.cta-pill-dark .spark {
  width: 14px; height: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #ffe066;
  font-size: 14px; line-height: 1;
}

/* Hero — floated portrait, huge headline wraps around */
.home-hero-ref {
  padding: 56px 0 24px;
  margin-bottom: 96px;
  color: var(--navy);
}
.home-hero-ref .portrait-wrap {
  float: right;
  width: 320px;
  margin: 80px 0 24px 56px;
  position: relative;
  shape-outside: margin-box;
}
.home-hero-ref .portrait-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.home-hero-ref .meet-badge {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #eaff7c;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.home-hero-ref .meet-badge .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: badgeSpin 20s linear infinite;
}
.home-hero-ref .meet-badge .ring text {
  fill: var(--navy);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
}
.home-hero-ref .meet-badge .star {
  font-size: 22px;
  line-height: 1;
  color: var(--navy);
}
@keyframes badgeSpin {
  to { transform: rotate(360deg); }
}

.home-hero-ref h1 {
  font-size: 88px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.032em;
  color: var(--navy);
  margin: 0 0 56px;
}
.home-hero-ref .hero-bio {
  clear: left;
  font-size: 18px;
  line-height: 1.55;
  color: var(--navy-soft);
  max-width: 48ch;
  margin: 24px 0 0;
}
.home-hero-ref .hero-bio p { margin: 0 0 8px; }
.home-hero-ref .hero-bio p:last-child { margin: 0; }

.home-hero-ref .hero-cta-row {
  clear: left;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.home-hero-ref .work-label {
  clear: both;
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 88px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.home-hero-ref .work-label .num {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-soft);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 960px) {
  .home-hero-ref h1 { font-size: 56px; margin-bottom: 32px; }
  .home-hero-ref .portrait-wrap { width: 220px; margin: 0 0 24px 24px; }
  .home-hero-ref .meet-badge { width: 70px; height: 70px; font-size: 8px; right: -20px; bottom: -20px; }
}
@media (max-width: 680px) {
  .home-hero-ref { padding-top: 16px; margin-bottom: 56px; }
  .home-hero-ref h1 { font-size: 38px; margin-bottom: 24px; }
  .home-hero-ref .portrait-wrap {
    float: none;
    width: 70%;
    max-width: 280px;
    margin: 0 0 24px;
  }
  .home-hero-ref .hero-bio { font-size: 16px; }
  .home-hero-ref .work-label { margin-top: 48px; font-size: 18px; }
  .site-header.is-home { padding-top: 16px; }
  .cta-pill-dark { padding: 10px 16px; font-size: 13px; }
}

/* ============================================================
   TEMPLATE LAYER — Home + About me, course-template patterned
   ============================================================ */

/* Primary nav inside .site-header */
.primary-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
}
.primary-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: color 0.15s ease;
}
.primary-nav a:hover,
.primary-nav a.is-current {
  color: var(--ink);
}
.header-right { gap: 24px; }

/* Hero — two-column elevator pitch + paragraph */
.tpl-hero {
  padding: 16px 0 8px;
  margin-bottom: 96px;
}
.tpl-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  align-items: end;
}
.tpl-hero h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.06;
  margin: 0 0 32px;
  max-width: 17ch;
}
.tpl-hero .hero-aside {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 44ch;
  padding-bottom: 6px;
}
.tpl-hero .hero-aside p { margin: 0 0 16px; }
.tpl-hero .hero-aside p:last-child { margin: 0; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.btn-pill-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}
.btn-pill-light:hover { background: var(--ink); color: #fff; }
.hero-email {
  font-size: 14px;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--soft);
  text-underline-offset: 5px;
}
.hero-email:hover { text-decoration-color: var(--ink); }

/* Section eyebrow line — soft separator over a section title */
.tpl-section-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 32px;
  display: block;
}

/* Primary project snapshot block — full-width feature */
.project-snapshot {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  margin-bottom: 112px;
  align-items: start;
}
.project-snapshot .snap-text > .meta-year {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 18px;
}
.project-snapshot h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.022em;
  margin: 0 0 22px;
  max-width: 14ch;
}
.project-snapshot .snap-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 46ch;
  margin: 0 0 36px;
}
.snap-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 0 0 36px;
  padding: 24px 0 8px;
  border-top: 1px solid var(--rule);
}
.snap-metric .num {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.022em;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.snap-metric .num.small { font-size: 26px; line-height: 1.1; }
.snap-metric .label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 28ch;
}
.snap-image {
  margin: 0;
}
.snap-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  background: var(--panel);
}
.snap-image figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
  max-width: 48ch;
}

/* Other snapshots — smaller side-by-side cards */
.other-snapshots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.other-snap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.other-snap .meta-year {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.other-snap h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.018em;
  margin: 0;
  max-width: 22ch;
}
.other-snap p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 40ch;
  margin: 0;
}
.other-snap .snap-image img {
  aspect-ratio: 16 / 10;
}
.other-snap .pill-row { margin-top: 4px; display: flex; flex-wrap: wrap; gap: 6px; }
.other-snap .status-pill.tool { color: var(--ink); border-color: var(--rule); background: #fff; }
.other-snap .status-pill.tool .dot {
  width: 6px; height: 6px; border-radius: 50%;
  display: inline-block; margin-right: 6px; vertical-align: 1px;
}
.other-snap .status-pill.tool .dot.figma  { background: #6938e0; }
.other-snap .status-pill.tool .dot.claude { background: #d97706; }
.other-snap .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border: 1px solid var(--rule);
  border-radius: 999px;
}
.other-snap .status-pill.live { color: #166534; border-color: #c8e7d4; background: #f1faf3; }
.other-snap .status-pill.next { color: #5b3aa3; border-color: #ddd2f2; background: #f5f0ff; }

/* Career metrics — left label, 3x2 stat grid */
.career-metrics {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  margin-bottom: 112px;
}
.career-metrics > .tpl-section-label { margin: 0; padding-top: 4px; }
.career-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
}
.career-stat .num {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.022em;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.career-stat .num.small { font-size: 30px; line-height: 1.05; }
.career-stat .label {
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.career-stat .desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 30ch;
}

/* Top skill — centred eyebrow + statement, gradient panel */
.top-skill {
  background: var(--gradient);
  border-radius: 24px;
  padding: 80px 32px;
  text-align: center;
}
.top-skill .eyebrow {
  margin-bottom: 18px;
  color: var(--muted);
}
.top-skill h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.024em;
  max-width: 22ch;
  margin: 0 auto 40px;
}
.top-skill .top-skill-supporting {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto 8px;
}

/* ============================================================
   ABOUT ME page
   ============================================================ */

.about-hero {
  padding: 8px 0 16px;
  margin-bottom: 88px;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: end;
}
.about-hero .eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: none;
  display: block;
  margin-bottom: 18px;
}
.about-hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.024em;
  margin: 0 0 28px;
  max-width: 18ch;
}
.about-hero .hero-bio {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 50ch;
}
.about-photo {
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel);
  aspect-ratio: 5 / 6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.about-photo img,
.about-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo-video {
  background: var(--ink);
  aspect-ratio: 9 / 16;
  max-width: 360px;
}
.about-photo-video video {
  border-radius: inherit;
}

/* Top skills (superpowers) */
.about-skills { margin-bottom: 96px; }
.superpower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.superpower {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.superpower h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0;
  max-width: 22ch;
}
.superpower p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 40ch;
}
.superpower-thumb {
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
  aspect-ratio: 16 / 10;
}
.superpower-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* History — Experience / Education columns */
.about-history { margin-bottom: 96px; }
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.history-col > .tpl-section-label { margin-bottom: 24px; }
.history-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px 24px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.history-row:last-child { border-bottom: 1px solid var(--rule); }
.history-row .row-year {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.history-row .row-role-block .role {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0 0 2px;
  display: block;
}
.history-row .row-role-block .sector {
  font-size: 13px;
  color: var(--muted);
  display: block;
}

/* Closing — restated CTA */
.about-closing {
  border-top: 1px solid var(--rule);
  padding-top: 64px;
  margin-bottom: 24px;
}
.about-closing h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin: 0 0 20px;
  max-width: 22ch;
}
.about-closing p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 48ch;
}

/* Responsive — template layer */
@media (max-width: 880px) {
  .tpl-hero-grid,
  .project-snapshot,
  .other-snapshots-grid,
  .career-metrics,
  .about-hero-grid,
  .superpower-grid,
  .history-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tpl-hero { margin-bottom: 56px; }
  .tpl-hero h1 { font-size: 36px; max-width: none; }
  .project-snapshot { margin-bottom: 64px; }
  .project-snapshot h3 { font-size: 28px; }
  .snap-metrics { grid-template-columns: 1fr 1fr; gap: 24px; }
  .snap-metric .num { font-size: 32px; }
  .snap-metric .num.small { font-size: 20px; }
  .other-snap h4 { font-size: 20px; }
  .career-metrics { margin-bottom: 64px; }
  .career-stat-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .career-stat .num { font-size: 32px; }
  .career-stat .num.small { font-size: 22px; }
  .top-skill { padding: 48px 20px; border-radius: 18px; }
  .top-skill h2 { font-size: 26px; max-width: none; }
  .about-hero h1 { font-size: 32px; }
  .about-photo { aspect-ratio: 4 / 3; }
  .history-row { grid-template-columns: 100px 1fr; padding: 14px 0; }
  .about-closing h2 { font-size: 24px; }
  .primary-nav { gap: 16px; font-size: 13px; }
  .primary-nav a[data-hide-mobile] { display: none; }
}
