:root {
  color-scheme: dark;
  --bg: #06101d;
  --bg-deep: #040b15;
  --panel: #0d1a2c;
  --panel-2: #111f34;
  --panel-3: #14253b;
  --line: #243753;
  --line-soft: #1b2c43;
  --muted: #8da0ba;
  --muted-2: #6f829d;
  --text: #dbe7f7;
  --white: #f8fbff;
  --blue: #5b91ff;
  --blue-bright: #84b0ff;
  --cyan: #46c7c7;
  --orange: #f5a524;
  --gray: #64748b;
  --green: #52d6a6;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% -20%, rgba(91, 145, 255, .12), transparent 38rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--bg);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(calc(100% - 48px), 1220px);
  min-width: 0;
  margin-inline: auto;
}

.site-header {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(120deg, rgba(6, 16, 29, .78), rgba(9, 25, 45, .95)),
    radial-gradient(circle at 85% 25%, rgba(70, 199, 199, .13), transparent 21rem);
}

.site-header::after {
  position: absolute;
  right: -11rem;
  bottom: -15rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(91, 145, 255, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(91, 145, 255, .025), 0 0 0 9rem rgba(91, 145, 255, .018);
  content: "";
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: end;
  min-height: 470px;
  padding-block: clamp(64px, 8vw, 104px) 66px;
}

.hero-copy { min-width: 0; }

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 820;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.hero-copy h1 span { color: #a9c7ff; }

.hero-intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: #a8b9cf;
  font-size: clamp(15px, 1.55vw, 19px);
  line-height: 1.75;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-badges span {
  padding: 7px 10px;
  border: 1px solid #29415f;
  border-radius: 999px;
  background: rgba(13, 26, 44, .72);
  color: #94a9c4;
  font-size: 10px;
}

.hero-signal {
  min-width: 0;
  padding: 24px;
  border: 1px solid #29466b;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(20, 52, 94, .75), rgba(11, 29, 50, .92));
  box-shadow: var(--shadow);
}

.hero-signal p {
  margin: 0 0 14px;
  color: #7fa9eb;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-signal strong {
  display: block;
  color: var(--white);
  font-size: clamp(22px, 2.5vw, 31px);
  letter-spacing: -.025em;
  line-height: 1.25;
}

.hero-signal span {
  display: block;
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid rgba(143, 178, 225, .2);
  color: #9bb0cb;
  font-size: 12px;
  line-height: 1.65;
}

.site-nav-wrap {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(36, 55, 83, .88);
  background: rgba(6, 16, 29, .86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-nav {
  display: flex;
  gap: 4px;
  min-width: 0;
  padding-block: 8px;
}

.site-nav a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 9px 13px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #8396b0;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.site-nav a span { color: #5f7694; font-size: 9px; }
.site-nav a:hover { color: var(--white); }
.site-nav a[aria-current="true"] {
  border-color: #294b79;
  background: #102746;
  color: var(--white);
}
.site-nav a[aria-current="true"] span { color: var(--blue-bright); }

.section {
  min-width: 0;
  padding-block: clamp(64px, 8vw, 106px);
  scroll-margin-top: 72px;
}

.section-alt {
  border-block: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(9, 22, 38, .72), rgba(6, 16, 29, .92));
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  min-width: 0;
  margin-bottom: 28px;
}

.section-head > div { min-width: 0; }

.section-head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 790;
  letter-spacing: -.045em;
  line-height: 1.12;
}

.section-head > div > p:last-child {
  max-width: 750px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.confidence {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-self: end;
  padding: 7px 10px;
  border: 1px solid #244d80;
  border-radius: 999px;
  background: #102849;
  color: #a9c7ff;
  font-size: 10px;
  white-space: nowrap;
}

.confidence i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(91, 145, 255, .12);
}

.card {
  min-width: 0;
  border: 1px solid #20344f;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .16);
}

.trend-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(240px, .58fr);
  gap: 14px;
  min-width: 0;
}

.chart-card {
  min-width: 0;
  overflow: hidden;
  padding: clamp(17px, 2vw, 24px);
}

.card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  margin-bottom: 12px;
}

.card-top > div { min-width: 0; }
.card-label { margin: 0 0 4px; color: var(--muted-2); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.card-top h3 { margin: 0; color: var(--white); font-size: 16px; }

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #91a4bd;
  font-size: 9px;
}

.legend span { display: inline-flex; gap: 6px; align-items: center; }
.legend i { width: 14px; height: 3px; border-radius: 99px; }
.legend-any { background: var(--blue); }
.legend-held { background: var(--cyan); }
.legend-inst { background: var(--orange); }
.legend-other { background: var(--gray); }

.desktop-chart { display: block; min-width: 0; }
.mobile-trend { display: none; }

.desktop-chart svg { width: 100%; height: auto; }
.na-zone { fill: #111f34; }
.na-main { fill: #8498b3; font-size: 18px; font-weight: 800; }
.na-sub { fill: #6f829d; font-size: 10px; }
.grid-lines line { stroke: #253854; stroke-width: 1; }
.axis-labels { fill: #72869f; font-size: 9px; }
.trend-area { fill: url(#area-gradient); }
.line-any { fill: none; stroke: var(--blue); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }
.line-held { fill: none; stroke: var(--cyan); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.points-any { fill: var(--blue); stroke: var(--panel); stroke-width: 4; }
.points-held { fill: var(--cyan); stroke: var(--panel); stroke-width: 3; }
.labels-any { fill: var(--white); font-size: 12px; font-weight: 800; text-anchor: middle; }
.labels-held { fill: #7fe0d8; font-size: 9px; font-weight: 750; text-anchor: middle; }
.year-labels { fill: #8fa2bb; font-size: 11px; text-anchor: middle; }

.chart-note,
.card-note {
  margin: 6px 0 0;
  color: #7589a4;
  font-size: 10px;
  line-height: 1.6;
}

.anchor-grid {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.anchor-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid #203650;
  border-radius: 15px;
  background: var(--panel);
}

.anchor-card p { margin: 0 0 6px; color: #8fa2bc; font-size: 10px; }
.anchor-card strong { display: block; color: var(--white); font-size: clamp(27px, 3vw, 38px); letter-spacing: -.035em; line-height: 1.1; }
.anchor-card span { display: block; margin-top: 9px; color: #8194ad; font-size: 10px; line-height: 1.5; }
.anchor-primary { border-color: #285b99; background: linear-gradient(145deg, #143666, #0e2441); }
.anchor-primary strong { color: #9ac0ff; }
.anchor-estimate strong { color: #69dad1; }
.anchor-ever strong { color: #f7bd57; }

.insight-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid #1e334e;
  border-radius: 12px;
  background: #091726;
}

.insight-strip span {
  padding: 5px 8px;
  border-radius: 6px;
  background: #18345b;
  color: #a8c7ff;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.insight-strip p { margin: 0; color: #8fa2bb; font-size: 11px; line-height: 1.55; }

.cycle-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  min-width: 0;
}

.cycle-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 17px 15px;
  border: 1px solid #20344f;
  border-radius: 15px;
  background: var(--panel);
}

.cycle-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: #426fae;
  content: "";
}

.cycle-current { border-color: #315f99; background: linear-gradient(145deg, #102746, #0d1a2c); }
.cycle-current::before { background: var(--blue); }

.cycle-year {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  margin-bottom: 17px;
}

.cycle-year strong { color: var(--white); font-size: 18px; }
.cycle-year span {
  padding: 4px 6px;
  border-radius: 999px;
  background: #152840;
  color: #849bbb;
  font-size: 8px;
  overflow-wrap: anywhere;
  text-align: center;
}

.cycle-main { min-width: 0; padding-bottom: 15px; border-bottom: 1px solid #20324a; }
.cycle-main p { margin: 0; color: #8295ae; font-size: 9px; }
.cycle-main strong { display: block; margin: 3px 0 4px; color: var(--blue-bright); font-size: clamp(23px, 2.3vw, 31px); letter-spacing: -.035em; }
.cycle-main span { color: #91a3bb; font-size: 9px; line-height: 1.4; }
.cycle-minis { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 13px; }
.cycle-minis div { min-width: 0; }
.cycle-minis span { display: block; color: #788ba4; font-size: 8px; }
.cycle-minis b { display: block; margin-top: 2px; color: #e1eaf6; font-size: 12px; overflow-wrap: anywhere; }

.cycle-reading {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 14px;
}

.cycle-reading div {
  min-width: 0;
  padding: 15px;
  border: 1px solid #1e334d;
  border-radius: 12px;
  background: #091725;
}

.cycle-reading span { color: #748aa6; font-size: 8px; }
.cycle-reading strong { display: block; margin: 4px 0; color: var(--white); font-size: 22px; }
.cycle-reading p { margin: 0; color: #8498b2; font-size: 9px; line-height: 1.45; }

.scope-note {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-left: 3px solid #3f6fae;
  border-radius: 7px;
  background: #091522;
  color: #8194ad;
  font-size: 10px;
  line-height: 1.65;
}

.scope-note b { color: #aec0d5; }

.economics-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 14px;
  min-width: 0;
}

.split-card,
.volume-card { min-width: 0; padding: clamp(17px, 2vw, 24px); }
.split-legend { justify-content: flex-end; }
.split-years { display: grid; gap: 13px; }

.split-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 64px;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.split-row > b { color: #a9bad0; font-size: 10px; }
.split-row > span { color: #e5edf8; font-size: 10px; text-align: right; white-space: nowrap; }
.split-track { display: flex; width: 100%; min-width: 0; height: 13px; overflow: hidden; border-radius: 999px; background: #1b2a3e; }
.split-track i { display: block; height: 100%; }
.consumer { background: var(--blue); }
.institutional { background: var(--orange); }
.other { background: var(--gray); }

.fee-callouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 20px;
}

.fee-callouts div { min-width: 0; padding: 14px; border-radius: 11px; background: var(--panel-2); }
.fee-callouts p { margin: 0; color: #8194ad; font-size: 8px; }
.fee-callouts strong { display: block; margin: 3px 0; color: var(--white); font-size: 22px; letter-spacing: -.025em; }
.fee-callouts span { color: #8ea1ba; font-size: 9px; line-height: 1.4; }

.volume-donut {
  display: grid;
  grid-template-columns: minmax(120px, .8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
  margin-block: 20px;
}

.donut {
  display: grid;
  place-items: center;
  width: min(100%, 170px);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 0 80%, var(--blue) 80% 100%);
}

.donut::before {
  grid-area: 1 / 1;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--panel);
  content: "";
}

.donut span { z-index: 1; grid-area: 1 / 1; color: #8d9fb8; font-size: 8px; text-align: center; line-height: 1.35; }
.donut strong { display: block; color: var(--white); font-size: 25px; }
.volume-copy { display: grid; gap: 10px; min-width: 0; }
.volume-copy div { min-width: 0; padding-bottom: 9px; border-bottom: 1px solid var(--line-soft); }
.volume-copy div:last-child { border: 0; }
.volume-copy span { display: block; color: #7f92ab; font-size: 8px; }
.volume-copy strong { display: block; color: #e5eef9; font-size: 18px; }

.platform-title {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: end;
  justify-content: space-between;
  margin: clamp(42px, 6vw, 72px) 0 17px;
}

.platform-title h3 { margin: 0; color: var(--white); font-size: clamp(22px, 3vw, 32px); }
.platform-title > span { color: #788ca6; font-size: 10px; }
.platform-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; min-width: 0; }

.platform-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid #223753;
  border-radius: 16px;
  background: var(--panel);
}

.platform-coinbase { border-color: #315c92; background: linear-gradient(145deg, #112a4c, #0d1a2c 68%); }
.platform-head { display: flex; gap: 10px; align-items: center; }
.platform-head span { padding: 5px 7px; border-radius: 6px; background: #1d3657; color: #91b8f7; font-size: 8px; font-weight: 900; letter-spacing: .08em; }
.platform-head b { color: var(--white); font-size: 14px; }
.platform-card > p { margin: 23px 0 3px; color: #8295ae; font-size: 9px; }
.platform-card > strong { display: block; color: var(--white); font-size: clamp(31px, 4vw, 44px); letter-spacing: -.045em; }
.platform-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 19px 0 0; }
.platform-card dl div { min-width: 0; padding: 10px; border-radius: 9px; background: rgba(17, 31, 52, .78); }
.platform-card dt { color: #7489a4; font-size: 8px; overflow-wrap: anywhere; }
.platform-card dd { margin: 3px 0 0; color: #dfe8f5; font-size: 13px; font-weight: 750; overflow-wrap: anywhere; }
.disclosure { margin-top: 10px; padding: 8px 9px; border-radius: 8px; background: #263448; color: #99a9bd; font-size: 8px; line-height: 1.45; }
.disclosure.positive { background: #153e43; color: #8edbd1; }

.methodology-section {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-deep);
}

.updated { color: #71859f; font-size: 10px; white-space: nowrap; }
.updated time { color: #a8b8cd; }
.method-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; min-width: 0; }
.method-grid article { min-width: 0; padding: 18px; border: 1px solid #1c3049; border-radius: 14px; background: #091522; }
.method-grid span { color: #6c99e9; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.method-grid h3 { margin: 8px 0 7px; color: #e9f0fa; font-size: 14px; }
.method-grid p { margin: 0; color: #8193aa; font-size: 10px; line-height: 1.6; }

.sources { margin-top: 38px; }
.sources > h3 { margin: 0 0 14px; color: var(--white); font-size: 17px; }
.source-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; min-width: 0; }
.source-grid a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  padding: 13px;
  border: 1px solid #1e3149;
  border-radius: 10px;
  background: #08131f;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}
.source-grid a:hover { border-color: #3b6396; transform: translateY(-2px); }
.source-grid span { grid-column: 1; color: #6f839d; font-size: 8px; }
.source-grid b { grid-column: 1; margin-top: 2px; color: #c9d6e8; font-size: 11px; overflow-wrap: anywhere; }
.source-grid i { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: #5b88cf; font-style: normal; }

.site-footer { border-top: 1px solid #17283d; background: #030a12; }
.site-footer .shell { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; padding-block: 24px; }
.site-footer p { margin: 0; color: #60748e; font-size: 9px; }
.site-footer strong { color: #93a6bf; }

a:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .cycle-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cycle-card:nth-child(4), .cycle-card:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 900px) {
  .hero-shell { grid-template-columns: 1fr; min-height: auto; }
  .hero-signal { max-width: 570px; }
  .trend-layout, .economics-grid { grid-template-columns: 1fr; }
  .anchor-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cycle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cycle-card:last-child { grid-column: 1 / -1; }
  .platform-grid, .method-grid, .source-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform-card:last-child, .method-grid article:last-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 24px), 1220px); }
  .hero-shell { gap: 28px; padding-block: 52px 40px; }
  .hero-copy h1 { font-size: clamp(36px, 12vw, 50px); }
  .hero-intro { font-size: 14px; line-height: 1.7; }
  .hero-signal { padding: 18px; }
  .hero-signal strong { font-size: 22px; }
  .site-nav { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; }
  .site-nav a { display: grid; gap: 2px; justify-items: center; padding: 7px 4px; text-align: center; line-height: 1.25; }
  .section { padding-block: 58px; }
  .section-head { grid-template-columns: 1fr; align-items: start; gap: 14px; margin-bottom: 22px; }
  .section-head h2 { font-size: clamp(29px, 9vw, 40px); }
  .confidence { justify-self: start; }
  .desktop-chart { display: none; }
  .mobile-trend { display: grid; gap: 8px; }
  .chart-card { padding: 13px; }
  .mobile-year {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    min-width: 0;
    padding: 10px;
    border-radius: 10px;
    background: var(--panel-2);
  }
  .mobile-year > b { color: #dce7f5; font-size: 11px; }
  .mobile-year > p { margin: 0; color: #8fa2bb; font-size: 9px; line-height: 1.45; }
  .mobile-year > p strong { color: #dce7f5; }
  .mobile-bars { display: grid; gap: 7px; min-width: 0; }
  .mobile-bar-row { display: grid; grid-template-columns: 60px minmax(0, 1fr) 31px; gap: 6px; align-items: center; min-width: 0; }
  .mobile-bar-row > span { color: #899cb5; font-size: 8px; }
  .mobile-bar-row > i { height: 7px; min-width: 0; overflow: hidden; border-radius: 999px; background: #1d2d43; }
  .mobile-bar-row > i > b { display: block; height: 100%; border-radius: 999px; background: var(--blue); }
  .mobile-bar-row.held > i > b { background: var(--cyan); }
  .mobile-bar-row > strong { color: #e3edf8; font-size: 9px; text-align: right; }
  .anchor-grid, .cycle-grid { grid-template-columns: 1fr; }
  .anchor-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 5px 12px; align-items: center; padding: 14px; }
  .anchor-card p { margin: 0; }
  .anchor-card strong { grid-column: 2; grid-row: 1 / span 2; font-size: 24px; }
  .anchor-card span { margin: 0; }
  .insight-strip { grid-template-columns: 1fr; gap: 8px; }
  .insight-strip span { justify-self: start; }
  .cycle-card:last-child { grid-column: auto; }
  .cycle-card { padding: 16px; }
  .cycle-reading, .fee-callouts, .platform-grid, .method-grid, .source-grid { grid-template-columns: 1fr; }
  .cycle-reading div { display: grid; grid-template-columns: 74px auto; gap: 2px 10px; align-items: center; }
  .cycle-reading strong { grid-column: 2; grid-row: 1 / span 2; margin: 0; text-align: right; }
  .cycle-reading p { grid-column: 1; }
  .split-card, .volume-card { padding: 14px; }
  .split-legend { justify-content: flex-start; }
  .split-row { grid-template-columns: 36px minmax(0, 1fr) 54px; gap: 7px; }
  .volume-donut { grid-template-columns: 1fr 1fr; }
  .platform-card:last-child, .method-grid article:last-child { grid-column: auto; }
  .platform-card { padding: 17px; }
  .platform-card dl { grid-template-columns: 1fr 1fr; }
  .platform-title { align-items: start; }
  .updated { justify-self: start; }
  .site-footer .shell { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 360px) {
  .hero-badges { display: grid; grid-template-columns: 1fr; }
  .hero-badges span { text-align: center; }
  .site-nav a { font-size: 9px; }
  .mobile-year { grid-template-columns: 38px minmax(0, 1fr); padding: 9px 7px; }
  .mobile-bar-row { grid-template-columns: 55px minmax(0, 1fr) 28px; gap: 4px; }
  .anchor-card { grid-template-columns: 1fr; }
  .anchor-card strong { grid-column: 1; grid-row: auto; }
  .volume-donut { grid-template-columns: 1fr; }
  .platform-row, .platform-card dl { grid-template-columns: 1fr; }
}

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