:root {
  color-scheme: dark;
  --void: #060a10;
  --field: #0a111a;
  --plate: #101a25;
  --plate-2: #132232;
  --line: #1c3042;
  --line-strong: #274054;
  --text: #eef7fb;
  --muted: #86a0b1;
  --dim: #587181;
  --cyan: #64d9f5;
  --cyan-soft: rgba(100, 217, 245, 0.18);
  --gold: #f7c65b;
  --gold-soft: rgba(247, 198, 91, 0.16);
  --white-hot: #f6fbff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 78% 12%, rgba(100, 217, 245, 0.08), transparent 28rem),
    radial-gradient(circle at 18% 84%, rgba(247, 198, 91, 0.055), transparent 24rem),
    linear-gradient(180deg, #060a10 0%, #08101a 54%, #060a10 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(39, 64, 84, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 64, 84, 0.16) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 86%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(18px);
}

.brand-lockup,
.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 760;
}

.brand-lockup img,
.footer-mark img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 10px;
  filter: drop-shadow(0 0 18px rgba(100, 217, 245, 0.14));
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.primary-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-left: auto;
}

.primary-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 740;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.primary-links a:hover,
.primary-links a:focus-visible,
.primary-links a[aria-current="page"] {
  border-color: rgba(100, 217, 245, 0.38);
  background: rgba(100, 217, 245, 0.07);
  color: var(--text);
  outline: none;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(134, 160, 177, 0.22);
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(100, 217, 245, 0.46);
  background: rgba(100, 217, 245, 0.07);
  color: var(--text);
  outline: none;
}

.header-follow-link {
  display: none;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  min-height: clamp(500px, 72vh, 620px);
  margin: 0 auto;
  padding: clamp(30px, 5vh, 58px) 0 clamp(28px, 6vh, 64px);
}

.hero-grid {
  position: absolute;
  inset: 22px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(28, 48, 66, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(100, 217, 245, 0.045), transparent 30%, rgba(247, 198, 91, 0.035)),
    radial-gradient(circle at 78% 42%, rgba(100, 217, 245, 0.11), transparent 25rem),
    rgba(10, 17, 26, 0.52);
  box-shadow: inset 0 0 0 1px rgba(246, 251, 255, 0.025);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--text);
  font-size: clamp(3rem, 7vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 28px;
  color: #bfd1db;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  line-height: 1.64;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(100, 217, 245, 0.42);
  border-radius: 7px;
  background: rgba(100, 217, 245, 0.09);
  color: #d8e8f0;
  font-size: 0.82rem;
  font-weight: 780;
  box-shadow: 0 0 22px rgba(100, 217, 245, 0.055);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.primary-action {
  color: var(--text);
}

.secondary-action {
  background: rgba(100, 217, 245, 0.06);
}

.primary-action:hover,
.primary-action:focus-visible,
.secondary-action:hover,
.secondary-action:focus-visible {
  border-color: rgba(100, 217, 245, 0.68);
  background: rgba(100, 217, 245, 0.13);
  color: var(--text);
  box-shadow: 0 0 30px rgba(100, 217, 245, 0.09);
  outline: none;
}

.artifact-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(39, 64, 84, 0.74);
  border-radius: 8px;
  background:
    radial-gradient(circle at 56% 45%, rgba(100, 217, 245, 0.095), transparent 17rem),
    linear-gradient(145deg, rgba(16, 26, 37, 0.88), rgba(6, 10, 16, 0.64));
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.identity-stage {
  aspect-ratio: 1200 / 560;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.proof-caption {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 690;
  letter-spacing: 0.025em;
  line-height: 1.45;
  text-align: center;
}

.artifact-stage iframe,
.market-visual iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: 0;
}

.visuals-band,
.track-band,
.analysis-band,
.follow-band,
.disclosure-band {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px) 0;
  scroll-margin-top: 96px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
}

.section-heading-row > div {
  max-width: 760px;
}

.section-link {
  flex: 0 0 auto;
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 780;
}

.section-link:hover,
.section-link:focus-visible {
  color: var(--white-hot);
  outline: none;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(1.9rem, 4vw, 3.45rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-subtitle {
  max-width: 620px;
  margin-bottom: 0;
  color: #bfd1db;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.52;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
  min-width: 0;
}

.story-card-link {
  display: block;
  min-width: 0;
  height: 100%;
  border-radius: 8px;
}

.story-card-link:focus-visible {
  outline: 2px solid rgba(100, 217, 245, 0.78);
  outline-offset: 4px;
}

.example-card,
.analysis-card,
.follow-band,
.disclosure-band {
  border: 1px solid rgba(39, 64, 84, 0.84);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(16, 26, 37, 0.88), rgba(6, 10, 16, 0.56)),
    radial-gradient(circle at 76% 30%, rgba(247, 198, 91, 0.055), transparent 18rem);
}

.example-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.story-card-link:hover .example-card,
.story-card-link:focus-visible .example-card {
  border-color: rgba(100, 217, 245, 0.46);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.22), 0 0 28px rgba(100, 217, 245, 0.055);
  transform: translateY(-3px);
}

.example-copy {
  padding: clamp(18px, 2.2vw, 26px) clamp(18px, 2.4vw, 28px) 0;
  min-height: 250px;
}

.example-label {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.example-card h3,
.track-item h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.example-card p,
.track-item p,
.disclosure-band p {
  color: var(--muted);
  line-height: 1.52;
}

.example-image {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  aspect-ratio: 4 / 3;
  margin-top: 18px;
  border-top: 1px solid rgba(39, 64, 84, 0.64);
  background: #050910;
  object-fit: contain;
  object-position: center top;
}

.example-card-featured .example-image {
  object-fit: contain;
}

.card-read-more {
  display: inline-block;
  margin-top: 8px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 780;
}

.page-hero,
.story-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.page-hero {
  position: relative;
  padding: clamp(74px, 10vw, 130px) 0 clamp(50px, 8vw, 90px);
  border-bottom: 1px solid rgba(39, 64, 84, 0.64);
}

.page-hero::after {
  position: absolute;
  inset: 28px -18px 28px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(28, 48, 66, 0.48);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 36%, rgba(100, 217, 245, 0.09), transparent 26rem),
    linear-gradient(115deg, rgba(16, 26, 37, 0.72), rgba(6, 10, 16, 0.36));
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.8rem, 6.2vw, 5.45rem);
}

.page-hero .hero-lede {
  max-width: 820px;
  margin-bottom: 0;
}

.library-principle {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.library-principle span,
.story-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(39, 64, 84, 0.9);
  border-radius: 999px;
  background: rgba(10, 17, 26, 0.66);
  color: #a8bfcc;
  font-size: 0.72rem;
  font-weight: 760;
}

.library-band {
  padding-top: clamp(48px, 7vw, 82px);
}

.section-count {
  flex: 0 0 auto;
  margin: 0 0 6px;
  color: var(--dim);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-shell {
  padding: clamp(44px, 7vw, 88px) 0 10px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 38px;
  color: var(--dim);
  font-size: 0.76rem;
  font-weight: 720;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--cyan);
  outline: none;
}

.story-header {
  max-width: 920px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.story-meta,
.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.story-meta {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.story-meta > *:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: var(--line-strong);
}

.story-header h1 {
  max-width: 940px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.99;
}

.story-dek {
  max-width: 780px;
  margin-bottom: 24px;
  color: #bfd1db;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.58;
}

.story-figure {
  margin: 0 0 clamp(44px, 7vw, 82px);
  overflow: hidden;
  border: 1px solid rgba(39, 64, 84, 0.86);
  border-radius: 8px;
  background: rgba(5, 9, 16, 0.84);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.story-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.story-figure figcaption {
  padding: 13px 16px 14px;
  border-top: 1px solid rgba(39, 64, 84, 0.6);
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.story-narrative h2 {
  margin-bottom: 22px;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  line-height: 1.03;
}

.story-narrative p:not(.eyebrow) {
  color: #bfd1db;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.72;
}

.story-measurements {
  padding: 22px;
  border: 1px solid rgba(39, 64, 84, 0.84);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(16, 26, 37, 0.9), rgba(6, 10, 16, 0.62)),
    radial-gradient(circle at 80% 22%, rgba(100, 217, 245, 0.07), transparent 14rem);
}

.story-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(39, 64, 84, 0.72);
  border-radius: 7px;
  background: rgba(39, 64, 84, 0.72);
}

.story-metric {
  min-width: 0;
  padding: 14px;
  background: rgba(8, 14, 22, 0.96);
}

.story-metric span,
.story-metric strong,
.story-metric small {
  display: block;
}

.story-metric span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.story-metric strong {
  margin-bottom: 5px;
  color: var(--text);
  font-size: clamp(1rem, 1.5vw, 1.23rem);
  line-height: 1.16;
}

.story-metric small {
  color: var(--dim);
  font-size: 0.7rem;
  line-height: 1.38;
}

.result-context,
.story-sources,
.methodology-note {
  margin-top: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(39, 64, 84, 0.78);
  border-radius: 8px;
  background: rgba(10, 17, 26, 0.64);
}

.result-context {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
}

.result-context span {
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-context p {
  margin: 0;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}

.story-sources {
  padding: 20px;
}

.story-sources ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-sources a,
.methodology-note a {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 760;
}

.story-sources a:hover,
.story-sources a:focus-visible,
.methodology-note a:hover,
.methodology-note a:focus-visible {
  color: var(--white-hot);
  outline: none;
}

.methodology-note {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  padding: 22px;
}

.methodology-note > div {
  max-width: 780px;
}

.methodology-note p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.methodology-note a {
  flex: 0 0 auto;
  padding-bottom: 2px;
}

.story-follow {
  margin-top: clamp(54px, 8vw, 94px);
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.track-item {
  min-height: 148px;
  padding: 20px 4px 14px;
  border-top: 1px solid rgba(39, 64, 84, 0.78);
  background: transparent;
}

.analysis-card {
  padding: clamp(16px, 2.2vw, 24px);
}

.method-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: min(980px, 100%);
  margin: 0 auto clamp(16px, 2.2vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(39, 64, 84, 0.68);
  border-radius: 8px;
  background: rgba(39, 64, 84, 0.68);
}

.method-proof-item {
  min-width: 0;
  padding: 14px 16px;
  background: rgba(10, 17, 26, 0.94);
}

.method-proof-item span,
.method-proof-item strong {
  display: block;
}

.method-proof-item span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-proof-item strong {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.25;
}

.mobile-method-summary {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.market-visual {
  position: relative;
  grid-column: 1 / -1;
  width: 100%;
  max-width: min(980px, 100%);
  min-width: 0;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(39, 64, 84, 0.68);
  border-radius: 8px;
  background: rgba(6, 10, 16, 0.54);
  overflow: hidden;
}

.follow-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3vw, 30px);
}

.follow-band h2 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.04;
}

.follow-links {
  flex: 0 0 auto;
}

.disclosure-band {
  padding: 18px 20px;
}

.disclosure-band p {
  max-width: 920px;
  margin: 0;
  font-size: 0.94rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid rgba(39, 64, 84, 0.72);
}

.footer-mark img {
  width: 36px;
  height: 36px;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.site-footer .footer-guidance {
  margin-top: -8px;
  color: #9bb0bd;
}

@media (max-width: 940px) {
  .site-header {
    position: relative;
    align-items: center;
    flex-direction: row;
    min-height: 74px;
  }

  .social-links {
    justify-content: flex-start;
  }

  .hero-shell,
  .analysis-card,
  .example-grid,
  .track-grid,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: 0;
  }

  .analysis-card {
    padding: 20px;
  }

  .example-copy {
    min-height: 0;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .section-link,
  .section-count {
    margin-bottom: 0;
  }

  .example-image {
    height: auto;
  }

  .track-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .follow-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-measurements {
    max-width: 720px;
  }

}

@media (max-width: 620px) {
  .site-header {
    justify-content: space-between;
    min-height: 68px;
    width: min(var(--max), calc(100% - 24px));
    padding: 10px 0;
  }

  .site-header .brand-lockup img {
    width: 38px;
    height: 38px;
  }

  .site-header .brand-lockup span {
    display: none;
  }

  .primary-links {
    gap: 4px;
  }

  .primary-links a {
    min-height: 34px;
    padding: 0 8px;
    font-size: 0.74rem;
  }

  .primary-links a:not(:first-child) {
    display: none;
  }

  .header-follow-link {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 11px;
    border: 1px solid rgba(100, 217, 245, 0.36);
    border-radius: 7px;
    color: #bfd1db;
    font-size: 0.76rem;
    font-weight: 760;
  }

  .footer-mark span {
    font-size: 0.9rem;
  }

  .social-links a {
    min-height: 32px;
    padding: 0 8px;
    font-size: 0.74rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    width: min(var(--max), calc(100% - 24px));
    padding-top: 18px;
    padding-bottom: 28px;
    gap: 12px;
  }

  h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.05rem);
    line-height: 1;
  }

  .hero-lede {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .primary-action,
  .secondary-action {
    justify-content: center;
    min-height: 44px;
    padding: 8px 12px;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
  }

  .visuals-band,
  .track-band,
  .analysis-band,
  .follow-band,
  .disclosure-band,
  .site-footer,
  .page-hero,
  .story-shell {
    width: min(var(--max), calc(100% - 24px));
  }

  .example-copy {
    padding: 18px 18px 0;
  }

  .track-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .track-item {
    min-height: 0;
    padding: 18px 0 20px;
  }

  .market-visual {
    display: none;
  }

  .method-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-method-summary {
    display: block;
  }

  .mobile-method-summary ol {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-method-summary li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 14px 0;
    border-top: 1px solid rgba(39, 64, 84, 0.68);
    color: #bfd1db;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .mobile-method-summary li span {
    color: var(--cyan);
    font-size: 0.72rem;
    font-weight: 820;
    letter-spacing: 0.08em;
  }

  .identity-stage {
    aspect-ratio: auto;
    height: 92px;
    min-height: 0;
    overflow: hidden;
  }

  .identity-stage iframe {
    height: 92px;
  }

  .hero-visual {
    gap: 8px;
  }

  .proof-caption {
    font-size: 0.7rem;
  }

  .footer-social {
    display: none;
  }

  .page-hero {
    padding-top: 52px;
    padding-bottom: 50px;
  }

  .page-hero::after {
    inset: 18px -6px 18px;
  }

  .page-hero h1,
  .story-header h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .library-principle {
    margin-top: 22px;
  }

  .story-shell {
    padding-top: 34px;
  }

  .breadcrumbs {
    margin-bottom: 28px;
  }

  .story-meta {
    gap: 6px;
    font-size: 0.69rem;
  }

  .story-figure {
    margin-bottom: 42px;
  }

  .story-measurements {
    padding: 16px;
  }

  .result-context,
  .methodology-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .story-sources ul {
    display: grid;
  }
}

@media (max-width: 350px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .method-proof {
    grid-template-columns: 1fr;
  }

  .story-metric-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
