/* ——— Monica Harvin · Portfolio ——— */
:root {
  --bg: #F8F8F2;
  --surface: #EDF0E4;
  --surface-deep: #DFE5D2;
  --ink: #1C201B;
  --ink-soft: #434A40;
  --muted: #67705F;
  --hairline: #DDE2CF;
  --accent: #44674C;
  --accent-soft: #A8BFA6;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent-soft); color: var(--ink); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 32px; }

/* ——— Nav ——— */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 248, 242, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
nav {
  max-width: 1080px; margin: 0 auto; padding: 20px 32px;
  display: flex; align-items: center; justify-content: flex-end;
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.92rem;
  letter-spacing: 0.02em; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

/* ——— Type ——— */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; }
.eyebrow {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
}

/* ——— Hero (home) ——— */
.hero { padding: 96px 0 88px; }
.hero-grid {
  display: grid; grid-template-columns: 1.25fr 0.75fr;
  gap: 72px; align-items: center;
}
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.1rem); margin-bottom: 28px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-name { font-size: clamp(3.2rem, 7vw, 5.2rem) !important; margin-bottom: 14px !important; letter-spacing: -0.01em; }
.hero-tagline {
  font-family: var(--serif); font-style: italic; font-size: 1.45rem;
  color: var(--ink-soft); margin-bottom: 20px; line-height: 1.4;
}
.hero p.lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 34em; }
.hero-actions { margin-top: 40px; display: flex; gap: 20px; align-items: center; }

.btn {
  display: inline-block; padding: 14px 30px; border-radius: 999px;
  background: var(--ink); color: var(--bg); text-decoration: none;
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
}
.btn:hover { background: var(--accent); transform: translateY(-1px); }
.link-quiet {
  color: var(--ink); text-decoration: none; font-size: 0.92rem;
  border-bottom: 1px solid var(--accent-soft); padding-bottom: 2px;
  transition: border-color 0.2s;
}
.link-quiet:hover { border-color: var(--accent); }

.contact-actions {
  display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.btn-linkedin {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: 999px;
  background: #0A66C2; color: #fff; text-decoration: none;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
}
.btn-linkedin:hover { background: #084e96; transform: translateY(-1px); }

.portrait-frame { position: relative; }
.portrait-frame::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  background: var(--surface-deep); border-radius: 50%;
  z-index: 0;
}
.portrait, .monogram {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5;
  object-fit: cover; border-radius: 50%;
  display: block;
}
.monogram {
  display: none; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-deep) 100%);
  font-family: var(--serif); font-size: 4rem; color: var(--accent);
  font-style: italic;
}

/* ——— Section scaffolding ——— */
section { padding: 88px 0; }
.section-head { margin-bottom: 56px; }
.section-head h2 { font-size: 2.1rem; }
.rule { border: none; border-top: 1px solid var(--hairline); }

/* ——— Case cards ——— */
.cards { display: flex; flex-direction: column; gap: 28px; }
.card {
  display: grid; grid-template-columns: 380px 1fr; gap: 48px;
  align-items: center; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--hairline); border-radius: 20px;
  padding: 32px; transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(38, 55, 40, 0.09); }
.card-thumb {
  background: var(--surface); border-radius: 14px; padding: 28px;
  min-height: 230px; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.card h3 { font-size: 1.55rem; margin-bottom: 12px; transition: color 0.2s; }
.card:hover h3 { color: var(--accent); }
.card p { color: var(--ink-soft); font-size: 0.98rem; max-width: 34em; }
.card-meta {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px;
}
.tag {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--hairline); border-radius: 999px; padding: 5px 13px;
}
.card-cta { margin-top: 22px; font-size: 0.9rem; color: var(--accent); font-weight: 500; }

/* ——— Mini mocks (shared visual language) ——— */
.mock {
  background: #fff; border: 1px solid var(--hairline); border-radius: 12px;
  box-shadow: 0 8px 24px rgba(38, 55, 40, 0.07); width: 100%; max-width: 330px;
  font-size: 0.8rem; overflow: hidden;
}
.mock-bar {
  display: flex; gap: 5px; padding: 9px 12px; border-bottom: 1px solid var(--hairline);
}
.mock-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--surface-deep); }
.mock-body { padding: 16px; }
.mock-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid #F1ECE2;
}
.mock-row:last-child { border-bottom: none; }
.mock-label { color: var(--ink); font-weight: 500; }
.mock-sub { color: var(--muted); font-size: 0.72rem; margin-top: 2px; }
.toggle {
  width: 34px; height: 19px; border-radius: 999px; background: var(--accent);
  position: relative; flex-shrink: 0; margin-left: 14px;
}
.toggle::after {
  content: ""; position: absolute; top: 2.5px; right: 3px;
  width: 14px; height: 14px; border-radius: 50%; background: #fff;
}
.toggle.off { background: var(--surface-deep); }
.toggle.off::after { right: auto; left: 3px; }
.strike { text-decoration: line-through; color: var(--muted); font-weight: 400; }
.check { color: var(--accent); font-weight: 600; margin-right: 8px; }

/* ——— Phone mock (skeleton notice, no text) ——— */
.thumb-combo { position: relative; width: 100%; display: flex; align-items: center; }
.thumb-combo .mock { max-width: 250px; margin-right: auto; }
.phone {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 96px; background: #fff; border: 1px solid var(--hairline);
  border-radius: 18px; padding: 8px;
  box-shadow: 0 12px 28px rgba(38, 55, 40, 0.14); z-index: 2;
}
.phone-notch { width: 30px; height: 4px; border-radius: 999px; background: var(--surface-deep); margin: 0 auto 8px; }
.phone-screen { background: var(--surface); border-radius: 10px; padding: 8px 7px 7px; }
.skel { height: 5px; border-radius: 999px; background: var(--surface-deep); margin-bottom: 5px; }
.skel.title { width: 65%; height: 6px; background: var(--accent-soft); }
.skel.w90 { width: 90%; }
.skel.w70 { width: 70%; }
.skel.faint { opacity: 0.55; }
.notice {
  background: #fff; border-radius: 8px; padding: 8px 7px 7px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07); margin-top: 12px;
}
.skel-btn { height: 14px; border-radius: 999px; background: var(--accent); margin-top: 7px; }

/* ——— Hub diagram (ecosystem map) ——— */
.hub { text-align: center; }
.hub-core {
  display: inline-block; background: var(--accent); color: #fff;
  font-weight: 600; font-size: 0.85rem; border-radius: 999px;
  padding: 10px 22px; margin-bottom: 18px;
}
.hub-line { width: 1px; height: 16px; background: var(--accent-soft); margin: 0 auto 14px; }

/* ——— Orbit rings (young user at the center) ——— */
.rings { position: relative; width: 260px; height: 260px; }
.ring { position: absolute; border-radius: 50%; }
.ring.outer { inset: 0; border: 1.5px dashed var(--accent-soft); }
.ring.mid { inset: 38px; border: 1.5px dashed var(--accent-soft); opacity: 0.8; }
.ring.inner { inset: 80px; background: rgba(68,103,76,0.10); border: none; }
.ring-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.9);
}
.ring-tag {
  position: absolute; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--muted); background: var(--surface); padding: 2px 9px; border-radius: 999px;
  border: 1px solid var(--hairline);
}
.rt1 { top: -8px; left: 50%; transform: translateX(-50%); }
.rt2 { top: 46%; left: -34px; }
.rt3 { top: 46%; right: -30px; }
.rt4 { bottom: -8px; left: 50%; transform: translateX(-50%); }
.rt5 { top: 26px; right: 8px; }

/* ——— Multi-agent architecture diagram ——— */
.arch { position: relative; text-align: center; width: 100%; max-width: 440px; padding-right: 56px; }
.agents { display: flex; justify-content: center; gap: 9px; margin: 0 0 8px; flex-wrap: wrap; }
.agent { width: 15px; height: 15px; border-radius: 50%; background: var(--accent); }
.agent:nth-child(even) { background: var(--accent-soft); }
.arch .mock-sub { margin-bottom: 6px; }
.surface-chips { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.loop {
  position: absolute; right: 8px; top: 58px; bottom: 70px; width: 36px;
  border: 1.5px dashed var(--accent-soft); border-left: none;
  border-radius: 0 26px 26px 0;
}
.loop::after {
  content: "▲"; position: absolute; top: -7px; left: -4px;
  color: var(--accent-soft); font-size: 0.6rem;
}
.loop-label {
  position: absolute; right: -14px; top: 50%;
  transform: translateY(-50%) rotate(90deg); transform-origin: center;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
}

/* ——— Surface sprawl (complexity, blind spots, risk) ——— */
.sprawl { display: flex; flex-wrap: wrap; gap: 9px; max-width: 400px; justify-content: center; }
.tile {
  width: 66px; height: 46px; border-radius: 9px; background: #fff;
  border: 1px solid var(--hairline); padding: 8px 7px;
  box-shadow: 0 4px 12px rgba(38,55,40,0.06);
}
.tile .skel { margin-bottom: 5px; }
.tile.unknown {
  background: transparent; border: 1.5px dashed var(--accent-soft); box-shadow: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-weight: 700; font-size: 0.95rem;
}
.tile.risk {
  background: #EFEADC; border-color: #DCCFB2;
  display: flex; align-items: center; justify-content: center;
  color: #87764F; font-weight: 700; font-size: 0.85rem;
}
.tile.more {
  background: transparent; border: none; box-shadow: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em;
}
.sprawl .tile:nth-child(3n) { transform: rotate(2.5deg); }
.sprawl .tile:nth-child(4n) { transform: rotate(-3deg); }
.sprawl .tile:nth-child(7n) { transform: rotate(1.5deg) translateY(3px); }

/* ——— Flashlight (blind spots) ——— */
.dark-field { position: relative; display: flex; flex-wrap: wrap; gap: 9px; max-width: 400px; justify-content: center; padding: 10px; }
.dark-field .tile.dim { opacity: 0.25; }
.beam {
  position: absolute; top: -14px; left: 50%; transform: translateX(-72%);
  width: 0; height: 0;
  border-left: 50px solid transparent; border-right: 50px solid transparent;
  border-bottom: 150px solid rgba(68,103,76,0.10);
  pointer-events: none;
}
.torch {
  position: absolute; top: -26px; left: 50%; transform: translateX(-72%);
  width: 22px; height: 22px; border-radius: 50%; margin-left: -11px;
  background: var(--accent); box-shadow: 0 0 0 5px rgba(68,103,76,0.15);
}

/* ——— Persistence comparison ——— */
.mini-tiles { display: flex; gap: 5px; margin-top: 10px; }
.mini { width: 22px; height: 16px; border-radius: 4px; background: var(--accent-soft); }
.mini.dim { opacity: 0.22; }
.attempt { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid #F1ECE2; font-size: 0.78rem; color: var(--ink-soft); }
.attempt:last-of-type { border-bottom: none; }
.attempt .x { color: #87764F; font-weight: 700; }
.attempt .ok { color: var(--accent); font-weight: 700; }
.attempt .dim-txt { color: var(--muted); }

/* ——— Time savings (weeks → 30 minutes) ——— */
.avatars { display: flex; }
.avatar {
  width: 30px; height: 30px; border-radius: 50%; background: var(--accent-soft);
  border: 2px solid #fff; margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; color: #fff;
}
.avatar svg { width: 17px; height: 17px; margin-top: 4px; }
.avatar:first-child { margin-left: 0; }
.avatar:nth-child(even) { background: var(--surface-deep); color: var(--muted); }
.avatar.solo { background: var(--accent); color: #fff; }
.timebar {
  height: 10px; border-radius: 999px; background: var(--surface);
  position: relative; margin: 14px 0 8px; overflow: hidden;
}
.timebar-fill { position: absolute; top: 0; bottom: 0; left: 0; border-radius: 999px; }
.timebar-fill.slow { width: 100%; background: #DCCFB2; }
.timebar-fill.fast { width: 9%; background: var(--accent); }

/* ——— Shipped product screenshot ——— */
.shipped {
  display: block; width: 100%; max-width: 340px;
  border-radius: 18px; border: 1px solid var(--hairline);
  box-shadow: 0 18px 44px rgba(38, 55, 40, 0.12);
}

/* ——— Journey timeline (two attempts) ——— */
.jtl { position: relative; display: flex; justify-content: space-between; max-width: 500px; width: 100%; }
.jtl::before {
  content: ''; position: absolute; top: 8px; left: 40px; right: 40px;
  height: 1.5px; background: var(--accent-soft);
}
.jtl-step { position: relative; flex: 1; text-align: center; padding: 0 6px; }
.jtl-dot {
  width: 16px; height: 16px; border-radius: 50%; background: var(--accent-soft);
  margin: 0 auto 10px; position: relative; z-index: 1; border: 3px solid var(--surface);
}
.jtl-dot.x { background: #DCCFB2; }
.jtl-dot.ok { background: var(--accent); }
.jtl-title { font-size: 0.76rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
.jtl-sub { font-size: 0.68rem; color: var(--muted); margin-top: 3px; line-height: 1.4; }

/* ——— Tension spectrum ——— */
.spec { width: 100%; max-width: 460px; padding-top: 34px; }
.spec-bar {
  position: relative; height: 10px; border-radius: 999px;
  background: linear-gradient(90deg, #DCCFB2, var(--accent-soft));
}
.spec-marker {
  position: absolute; bottom: 14px; transform: translateX(-50%);
  font-size: 0.68rem; color: var(--muted); white-space: nowrap; text-align: center;
}
.spec-marker::after {
  content: ''; display: block; width: 1.5px; height: 14px;
  background: var(--muted); margin: 3px auto 0; opacity: 0.5;
}
.spec-win {
  position: absolute; bottom: 14px; transform: translateX(-50%); text-align: center;
}
.spec-win::after {
  content: ''; display: block; width: 1.5px; height: 14px;
  background: var(--accent); margin: 3px auto 0;
}
.spec-ends { display: flex; justify-content: space-between; margin-top: 8px; }

/* ——— Evidence synthesis ——— */
.studies { display: flex; gap: 8px; align-items: flex-end; }
.study {
  width: 56px; background: #fff; border: 1px solid var(--hairline);
  border-radius: 8px; padding: 9px 7px; box-shadow: 0 4px 12px rgba(38,55,40,0.06);
}
.study .skel { margin-bottom: 4px; }
.study-year { font-size: 0.62rem; color: var(--muted); text-align: center; margin-top: 6px; letter-spacing: 0.05em; }

/* ——— Editorial stats ——— */
.stats { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; text-align: center; }
.stats > div { flex: 1 1 0; min-width: 104px; }
.stat-num { font-family: var(--serif); font-style: italic; font-size: 3rem; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 8px; letter-spacing: 0.05em; text-transform: uppercase; margin-left: auto; margin-right: auto; max-width: 13em; }

.mock-chip {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  padding: 3px 9px; border-radius: 999px; margin: 2px 3px 2px 0;
}
.chip-warm { background: #E2EBDB; color: var(--accent); }
.chip-cool { background: #EFEADC; color: #87764F; }

/* ——— About / approach ——— */
.about { background: var(--surface); }
.principles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 24px;
}
.principle h3 { font-size: 1.18rem; margin-bottom: 12px; }
.principle p { color: var(--ink-soft); font-size: 0.95rem; }
.principle .num {
  font-family: var(--serif); font-style: italic; color: var(--accent);
  font-size: 1.4rem; display: block; margin-bottom: 14px;
}

/* ——— Contact / footer ——— */
.contact { text-align: center; padding: 110px 0; }
.contact h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.contact p { color: var(--ink-soft); margin-bottom: 36px; }
footer {
  border-top: 1px solid var(--hairline); padding: 28px 0;
  color: var(--muted); font-size: 0.85rem;
}
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
footer a { color: var(--muted); }

/* ——— Case study pages ——— */
.case-hero { padding: 88px 0 56px; max-width: 820px; margin: 0 auto; }
.case-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 20px; }
.case-hero .sub { font-size: 1.2rem; font-style: italic; font-family: var(--serif); color: var(--muted); }
.case-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin: 48px auto 0; padding: 28px 0; max-width: 820px;
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
}
.case-meta div h4 {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
  font-family: var(--sans);
}
.case-meta div p { font-size: 0.95rem; color: var(--ink); }

.case-body { padding: 24px 0 72px; }
.case-body h2 {
  font-size: 1.7rem; margin: 64px 0 22px;
}
.case-body h3 { font-size: 1.18rem; margin: 36px 0 14px; }
.case-body p { color: var(--ink-soft); margin-bottom: 20px; }
.case-body strong { color: var(--ink); }
.case-body ul { margin: 0 0 20px 22px; color: var(--ink-soft); }
.case-body li { margin-bottom: 10px; }

.figure {
  background: var(--surface); border-radius: 20px; padding: 48px 36px;
  margin: 44px 0; display: flex; flex-wrap: wrap; gap: 28px;
  align-items: center; justify-content: center;
}
.figure figcaption {
  width: 100%; text-align: center; font-size: 0.84rem; color: var(--muted);
  margin-top: 8px;
}
.arrow { font-size: 1.6rem; color: var(--accent); font-family: var(--serif); }

.case-nav {
  display: flex; justify-content: space-between; gap: 20px;
  border-top: 1px solid var(--hairline); margin-top: 72px; padding-top: 40px;
}
.case-nav a { text-decoration: none; color: var(--ink); max-width: 45%; }
.case-nav .dir { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.case-nav .title { font-family: var(--serif); font-size: 1.15rem; transition: color 0.2s; }
.case-nav a:hover .title { color: var(--accent); }
.case-nav .next { text-align: right; margin-left: auto; }

/* ——— Responsive ——— */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .portrait-frame { max-width: 340px; }
  .card { grid-template-columns: 1fr; gap: 28px; }
  .principles { grid-template-columns: 1fr; }
  .case-meta { grid-template-columns: 1fr; gap: 18px; }
  .nav-links { gap: 22px; }
}

/* socialization deck figure */
.deck { position: relative; width: 170px; }
.deck::before, .deck::after {
  content: ''; position: absolute; inset: 0; border-radius: 10px;
  background: var(--surface-deep); border: 1px solid var(--hairline);
}
.deck::before { transform: translate(8px, 8px); opacity: 0.5; }
.deck::after { transform: translate(4px, 4px); opacity: 0.75; }
.deck .slide {
  position: relative; z-index: 1; border-radius: 10px; background: #fff;
  border: 1px solid var(--hairline); padding: 14px;
}
.deck .slide .skel.title { width: 60%; }
.team-list { display: flex; flex-direction: column; gap: 8px; min-width: 220px; }
.team-row {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--hairline); border-radius: 10px;
  padding: 8px 12px; font-size: 0.8rem; color: var(--ink-soft);
}
.team-row .check { flex: none; }
.team-row .when { margin-left: auto; font-size: 0.68rem; color: var(--muted); }

/* leading-the-redesign figure */
.team-cluster { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.lead-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--accent);
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--accent-soft);
}
.lead-avatar svg { width: 60%; height: 60%; }
.team-row-avatars { display: flex; gap: 8px; margin-top: 10px; }
.team-row-avatars .avatar { margin-left: 0; width: 30px; height: 30px; }
.cluster-tag { font-size: 0.62rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }

.spec-end { display: inline-flex; align-items: center; gap: 6px; }
.spec-ico { width: 15px; height: 15px; color: var(--muted); flex: none; }

/* spectrum figure — type hierarchy */
.spec-end {
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
  font-size: 0.64rem; color: var(--ink-soft);
}
.spec-marker { font-style: italic; font-size: 0.72rem; }
.spec-win .mock-chip { font-weight: 600; font-size: 0.74rem; }
