*, *::before, *::after { box-sizing: border-box; }

:root {
  --serif: 'Fraunces', ui-serif, Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --page: #F4EBD4;
  --page-2: #EEE2C4;
  --card: #FBF5E3;
  --card-hi: #FFFBEE;
  --ink: #0D1630;
  --ink-2: #1A2647;
  --ink-3: #3B4666;
  --ink-4: #6A7492;
  --ink-5: #9CA2B7;
  --line: #E3D5B2;
  --line-soft: #EADEBD;
  --gold: #B68432;
  --gold-2: #CE9E48;
  --gold-3: #E6C37B;
  --gold-wash: #F4E2B4;
  --gold-whisper: #F9EDCC;
  --coral: #B84F35;
  --coral-bg: #F5D8CC;
  --sage: #4F6B52;
  --sage-bg: #D6E1CF;
  --r-s: 6px;
  --r-m: 12px;
  --r-l: 20px;
  --r-xl: 28px;
  --r-pill: 999px;
  --sh-1: 0 1px 2px rgba(13, 22, 48, 0.06);
  --sh-2: 0 12px 28px -16px rgba(13, 22, 48, 0.18), 0 2px 6px -2px rgba(13, 22, 48, 0.06);
  --sh-3: 0 32px 60px -28px rgba(13, 22, 48, 0.28);
  --shell: 1160px;
  --bar: 68px;
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--page);
  background-image: radial-gradient(circle at 10% -10%, rgba(230, 195, 123, 0.3), transparent 45%),
                    radial-gradient(circle at 90% 110%, rgba(184, 79, 53, 0.08), transparent 45%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; font-size: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

.skip {
  position: absolute;
  top: -100px; left: 10px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--r-m);
  z-index: 100;
  font-weight: 600;
  font-size: 0.9rem;
}
.skip:focus { top: 10px; }

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 22px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(13, 22, 48, 0.94);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(230, 195, 123, 0.22);
}
.topbar-row {
  min-height: var(--bar);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.26rem;
  line-height: 1;
  letter-spacing: -0.012em;
}
.mark-img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.28));
}
.mark-word { white-space: nowrap; }
.mark-word-accent { color: var(--gold-3); font-style: italic; }

.nav-desk { display: flex; align-items: center; gap: 2px; }
.nav-desk a {
  padding: 9px 15px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  font-weight: 500;
  border-radius: var(--r-pill);
  transition: color 0.18s, background 0.18s;
}
.nav-desk a:hover,
.nav-desk a:focus-visible {
  color: var(--gold-3);
  background: rgba(230, 195, 123, 0.12);
  outline: none;
}
.nav-desk a[aria-current="page"] {
  color: var(--gold-3);
  background: rgba(230, 195, 123, 0.12);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--r-m);
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s;
}
.burger:hover { border-color: var(--gold-3); }
.burger:focus-visible { outline: 2px solid var(--gold-3); outline-offset: 2px; }
.burger-bars {
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
}
.burger-bars i {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.22s ease, top 0.22s ease, opacity 0.18s;
}
.burger-bars i:nth-child(1) { top: 0; }
.burger-bars i:nth-child(2) { top: 5px; }
.burger-bars i:nth-child(3) { top: 10px; }
.burger[aria-expanded="true"] .burger-bars i:nth-child(1) { top: 5px; transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger-bars i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger-bars i:nth-child(3) { top: 5px; transform: rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 35;
  visibility: hidden;
}
.drawer.open { visibility: visible; }
.drawer-veil {
  position: absolute;
  inset: 0;
  background: rgba(13, 22, 48, 0.5);
  opacity: 0;
  transition: opacity 0.24s ease;
}
.drawer.open .drawer-veil { opacity: 1; }
.drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 88%);
  background: linear-gradient(180deg, #0D1630 0%, #1A2647 100%);
  color: #fff;
  padding: 20px 22px 32px;
  border-left: 1px solid rgba(230, 195, 123, 0.22);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.drawer-x {
  width: 40px; height: 40px;
  border-radius: var(--r-m);
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.18s;
}
.drawer-x:hover { border-color: var(--gold-3); }
.drawer-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.drawer-list a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--r-m);
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.drawer-list a:hover,
.drawer-list a:focus-visible {
  background: rgba(230, 195, 123, 0.12);
  border-color: rgba(230, 195, 123, 0.3);
  color: var(--gold-3);
  outline: none;
}
.drawer-note {
  margin: auto 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: '';
  position: absolute;
  top: -260px; right: -180px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 195, 123, 0.55), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -140px; left: -120px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 79, 53, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-wrap { position: relative; z-index: 1; }

.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--ink-4);
  margin-bottom: 18px;
  font-weight: 500;
}
.crumbs a {
  color: var(--ink-3);
  border-bottom: 1px solid var(--gold-3);
  padding-bottom: 1px;
  transition: color 0.18s;
}
.crumbs a:hover { color: var(--gold); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: var(--gold-whisper);
  border: 1px solid var(--gold-3);
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.kicker::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(182, 132, 50, 0.2);
}

.headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 16ch;
  font-variation-settings: "opsz" 144;
}
.headline::first-letter {
  font-style: italic;
  color: var(--gold);
}

.deck {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.26rem);
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink-3);
  max-width: 62ch;
  margin: 0 0 32px;
  font-variation-settings: "opsz" 14;
}

.meta-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2px 32px;
  margin: 0 0 36px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 720px;
}
.meta-strip > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-strip dt {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 600;
}
.meta-strip dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 500;
}

.hero-quote {
  margin: 0;
  max-width: 58ch;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}
.hero-quote blockquote {
  margin: 0;
  padding: 0;
}
.hero-quote blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.34rem);
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0 0 10px;
  font-variation-settings: "opsz" 48;
}
.hero-quote figcaption {
  font-size: 0.85rem;
  color: var(--ink-4);
  letter-spacing: 0.02em;
}

.piece {
  padding: 64px 0 96px;
}
.piece .shell {
  max-width: 860px;
}

.block + .block { margin-top: 64px; }

.block .tag {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--coral);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  font-weight: 500;
}

.block h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 18px;
  font-variation-settings: "opsz" 72;
  scroll-margin-top: calc(var(--bar) + 20px);
}
.block h2::after {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 14px;
  background: var(--gold);
}

.block h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 32px 0 14px;
}

.block h4 {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}

.block p {
  margin: 0 0 18px;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.75;
}

.block p.lede {
  font-family: var(--serif);
  font-size: clamp(1.14rem, 1.8vw, 1.34rem);
  line-height: 1.58;
  color: var(--ink-2);
  font-weight: 400;
  font-variation-settings: "opsz" 36;
}
.block p.lede::first-letter {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 3.6em;
  float: left;
  line-height: 0.88;
  padding: 6px 12px 2px 0;
  color: var(--gold);
  font-variation-settings: "opsz" 144;
}

.block strong { color: var(--ink); font-weight: 600; }

.facts {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}
.facts li {
  background: var(--card-hi);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 20px 20px 18px;
  position: relative;
  transition: transform 0.24s, box-shadow 0.24s, border-color 0.24s;
}
.facts li:hover {
  transform: translateY(-3px);
  border-color: var(--gold-2);
  box-shadow: var(--sh-2);
}
.facts li::before {
  content: '';
  position: absolute;
  top: 0; left: 20px;
  width: 32px; height: 3px;
  background: var(--gold);
  border-radius: 0 0 3px 3px;
}
.facts-n {
  display: block;
  font-family: var(--serif);
  font-size: 1.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  font-variation-settings: "opsz" 72;
}
.facts-k {
  font-size: 0.82rem;
  color: var(--ink-4);
  line-height: 1.45;
}

.bar-wrap {
  margin: 30px 0 0;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
}
.bar-cap {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.bars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bars li { display: flex; flex-direction: column; gap: 7px; }
.bars-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.bars-track {
  display: flex;
  height: 28px;
  border-radius: var(--r-s);
  overflow: hidden;
  background: var(--page-2);
  box-shadow: inset 0 1px 2px rgba(13, 22, 48, 0.06);
}
.bars-paid, .bars-vol {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: filter 0.2s;
}
.bars-paid {
  background: linear-gradient(90deg, var(--ink-2), var(--ink));
  color: var(--gold-3);
}
.bars-vol {
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  color: var(--ink);
  justify-content: flex-start;
}
.bars-paid b, .bars-vol b { font-weight: 700; white-space: nowrap; }
.bar-note {
  margin: 18px 0 0;
  font-size: 0.82rem;
  color: var(--ink-4);
  font-style: italic;
}

.blueprint {
  padding: 36px 32px 38px;
  background: var(--card-hi);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-1);
  position: relative;
  overflow: hidden;
}
.blueprint::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-3), var(--coral));
}
.blueprint.alt { background: linear-gradient(155deg, #F6ECD3 0%, #FBF5E3 70%); }

.blue-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  margin: 22px 0 10px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-m);
  overflow: hidden;
  background: var(--page);
}
.blue-stats > div {
  padding: 16px 18px;
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.blue-stats > div:last-child { border-right: 0; }
.blue-stats strong {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.blue-stats span {
  font-size: 0.78rem;
  color: var(--ink-4);
  line-height: 1.4;
}

.chart {
  margin: 28px 0 10px;
  padding: 26px 24px;
  background: var(--card);
  border: 1px dashed var(--line);
  border-radius: var(--r-l);
}
.chart-title {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  text-align: center;
  font-style: italic;
}
.chart-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.chart-row-top { margin-bottom: 0; }
.chart-rail {
  width: 2px;
  height: 24px;
  background: var(--gold);
  margin: 0 auto;
}
.node {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--sh-1);
  white-space: nowrap;
  transition: transform 0.18s, box-shadow 0.18s;
}
.node:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.node-top {
  background: var(--ink);
  color: var(--gold-3);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.005em;
  border-color: var(--ink);
}
.chart-note {
  margin-top: 18px;
  font-size: 0.84rem;
  color: var(--ink-4);
  font-style: italic;
  line-height: 1.55;
  text-align: center;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.role-dl {
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.role-dl > div {
  padding: 16px 18px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-m);
  border-left: 3px solid var(--gold);
  transition: border-left-color 0.2s, background 0.2s;
}
.role-dl > div:nth-child(2) { border-left-color: var(--sage); }
.role-dl > div:nth-child(3) { border-left-color: var(--coral); }
.role-dl > div:hover { background: var(--card-hi); }
.role-dl dt {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.role-dl dd {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-3);
  line-height: 1.6;
}

.stack {
  margin: 18px 0;
}
.stack-bar {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  border-radius: var(--r-m);
  overflow: hidden;
  height: 52px;
  box-shadow: var(--sh-1);
}
.stack-bar li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  transition: filter 0.2s;
  min-width: 0;
}
.stack-bar li:hover { filter: brightness(1.06); }
.stack-bar li span { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.stack-paid { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); color: var(--gold-3); }
.stack-vol { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--ink); }
.stack-con { background: linear-gradient(135deg, var(--sage) 0%, #3E5642 100%); }
.stack figcaption {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--ink-4);
  font-style: italic;
}

.pull {
  margin: 28px 0 0;
  padding: 22px 26px;
  background: var(--gold-whisper);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-m) var(--r-m) 0;
}
.pull p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--ink);
  font-variation-settings: "opsz" 36;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.role-card {
  padding: 18px 18px 16px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-m);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  position: relative;
}
.role-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-2);
  box-shadow: var(--sh-2);
}
.role-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-3);
  line-height: 1.55;
}

.tbl-wrap {
  margin: 20px 0 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  background: var(--card-hi);
}
.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 540px;
}
.tbl th, .tbl td {
  padding: 13px 16px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--line-soft);
}
.tbl thead th {
  background: var(--page);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: none;
  font-style: italic;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.tbl tbody tr:last-child th,
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl tbody tr:hover { background: var(--card); }
.tbl tbody th {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  font-size: 0.92rem;
}
.tbl-compare tbody td:first-of-type { font-weight: 500; color: var(--ink-2); }
.tbl-matrix { min-width: 620px; }
.tbl-matrix td { font-size: 0.85rem; color: var(--ink-3); white-space: nowrap; }

.chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
}
.chip-no { background: var(--coral-bg); color: var(--coral); border-color: #E5B8AA; }
.chip-yes { background: var(--sage-bg); color: var(--sage); border-color: #B3C8AC; }
.chip-maybe { background: var(--gold-whisper); color: var(--gold); border-color: var(--gold-3); }

.tline {
  margin: 20px 0 0;
  padding: 20px 22px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  position: relative;
  overflow: hidden;
}
.tline-labels {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  font-size: 0.7rem;
  color: var(--ink-4);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  padding-left: 130px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 6px;
}
.tline-row {
  position: relative;
  display: flex;
  align-items: center;
  height: 30px;
  margin: 8px 0;
}
.tline-tag {
  width: 126px;
  flex-shrink: 0;
  font-size: 0.82rem;
  color: var(--ink-2);
  font-weight: 500;
  padding-right: 12px;
  font-family: var(--serif);
}
.tline-bar {
  position: absolute;
  left: 130px;
  top: 6px;
  bottom: 6px;
  border-radius: var(--r-s);
  transition: filter 0.2s, transform 0.2s;
}
.tline-bar:hover { filter: brightness(1.08); transform: translateY(-1px); }
.tline-setup { background: repeating-linear-gradient(45deg, var(--ink-3), var(--ink-3) 6px, var(--ink-4) 6px, var(--ink-4) 12px); }
.tline-a { background: linear-gradient(90deg, var(--gold-3), var(--gold-2)); }
.tline-b { background: linear-gradient(90deg, var(--gold-2), var(--gold)); }
.tline-c { background: linear-gradient(90deg, var(--coral), #A03E27); }
.tline-caption {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--ink-4);
  font-style: italic;
  line-height: 1.5;
}

.insight {
  margin: 36px 0 0;
  padding: 30px 30px 28px;
  background: linear-gradient(145deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #F7F0DD;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(230, 195, 123, 0.22);
}
.insight::before {
  content: '';
  position: absolute;
  top: -50px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(230, 195, 123, 0.24), transparent 60%);
  pointer-events: none;
}
.insight-tag {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--gold-3);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-weight: 500;
  position: relative;
}
.insight h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
  position: relative;
  font-variation-settings: "opsz" 72;
}
.insight p {
  margin: 0;
  color: rgba(247, 240, 221, 0.88);
  font-size: 0.98rem;
  line-height: 1.7;
  position: relative;
  max-width: 68ch;
}

.btm {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  padding: 30px 0;
  border-top: 1px solid rgba(230, 195, 123, 0.18);
}
.btm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.btm .mark { font-size: 1rem; }
.btm p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  max-width: 42ch;
}

@media (max-width: 900px) {
  .nav-desk { display: none; }
  .burger { display: inline-flex; }
}

@media (max-width: 760px) {
  .hero { padding: 44px 0 44px; }
  .piece { padding: 44px 0 64px; }
  .block + .block { margin-top: 48px; }
  .blueprint { padding: 26px 20px 28px; }
  .meta-strip { padding: 14px 0; gap: 14px 22px; }
  .hero::before { width: 360px; height: 360px; right: -120px; top: -180px; }
  .block p.lede::first-letter {
    font-size: 3rem;
    padding: 4px 10px 0 0;
  }
  .chart { padding: 20px 16px; }
  .chart-rail { height: 18px; }
  .node { font-size: 0.8rem; padding: 8px 11px; }
  .tline-labels { padding-left: 98px; }
  .tline-tag { width: 96px; font-size: 0.76rem; padding-right: 8px; }
  .tline-bar { left: 98px; }
  .btm-row { flex-direction: column; text-align: center; gap: 10px; }
}

@media (max-width: 540px) {
  .shell { padding: 0 18px; }
  .topbar-row { padding-top: 10px; padding-bottom: 10px; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .facts li { padding: 16px 14px 14px; }
  .facts-n { font-size: 1.55rem; }
  .blue-stats { grid-template-columns: 1fr 1fr; }
  .blue-stats > div { border-right: 1px solid var(--line-soft); }
  .blue-stats > div:nth-child(2n) { border-right: 0; }
  .hero-quote { padding-left: 16px; }
  .bar-wrap { padding: 18px 16px; }
  .bars-paid b, .bars-vol b { font-size: 0.68rem; }
  .tline-labels { grid-template-columns: repeat(4, 1fr); padding-left: 88px; }
  .tline-tag { width: 86px; }
  .tline-bar { left: 88px; }
  .insight { padding: 22px 20px 20px; }
}

@media (max-width: 380px) {
  .headline { font-size: 2rem; }
  .block h2 { font-size: 1.5rem; }
  .facts-n { font-size: 1.4rem; }
  .meta-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (orientation: landscape) and (max-height: 500px) {
  .hero { padding: 32px 0 28px; }
  .hero::before { width: 280px; height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
