:root {
  --primary: #5645d4;
  --primary-pressed: #4534b3;
  --on-primary: #ffffff;
  --brand-navy: #0a1530;
  --brand-navy-deep: #070f24;
  --link-blue: #0075de;
  --link-blue-pressed: #005bab;
  --brand-orange: #dd5b00;
  --brand-orange-deep: #793400;
  --brand-pink: #ff64c8;
  --brand-purple: #7b3ff2;
  --brand-purple-300: #d6b6f6;
  --brand-purple-800: #391c57;
  --brand-teal: #2a9d99;
  --brand-green: #1aae39;
  --brand-yellow: #f5d75e;
  --card-peach: #ffe8d4;
  --card-rose: #fde0ec;
  --card-mint: #d9f3e1;
  --card-lavender: #e6e0f5;
  --card-sky: #dcecfa;
  --card-yellow: #fef7d6;
  --card-yellow-bold: #f9e79f;
  --canvas: #ffffff;
  --surface: #f6f5f4;
  --surface-soft: #fafaf9;
  --hairline: #e5e3df;
  --hairline-soft: #ede9e4;
  --hairline-strong: #c8c4be;
  --ink-deep: #000000;
  --ink: #1a1a1a;
  --charcoal: #37352f;
  --slate: #5d5b54;
  --steel: #787671;
  --stone: #a4a097;
  --on-dark: #ffffff;
  --on-dark-muted: #a4a097;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --max: 1180px;
  --shadow-workspace: rgba(15, 15, 15, 0.24) 0 28px 70px -18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  min-width: 320px;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brand-yellow);
  outline-offset: 3px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  overflow: clip;
}

.topbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 227, 223, 0.88);
  display: flex;
  height: 68px;
  justify-content: space-between;
  left: 0;
  padding: 0 34px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
}

.topbar.is-scrolled {
  box-shadow: rgba(15, 15, 15, 0.08) 0 12px 28px -20px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-height: 44px;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: var(--ink-deep);
  border-radius: var(--radius-md);
  color: var(--on-dark);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.25;
}

.brand-text span {
  color: var(--steel);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.nav {
  align-items: center;
  display: flex;
  gap: 30px;
}

.nav a {
  align-items: center;
  color: var(--slate);
  display: inline-flex;
  font-size: 14px;
  font-weight: 550;
  min-height: 44px;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  align-items: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button-primary {
  background: var(--primary);
  color: var(--on-primary);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--primary-pressed);
  transform: translateY(-1px);
}

.button:hover {
  transform: translateY(-1px);
}

.button-light {
  background: var(--on-dark);
  color: var(--ink);
}

.button-light:hover {
  background: var(--surface);
}

.button-secondary {
  background: var(--canvas);
  border: 1px solid var(--hairline-strong);
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--surface-soft);
  border-color: var(--stone);
}

.button-dark {
  background: var(--ink-deep);
  color: var(--on-dark);
}

.button-dark:hover {
  background: var(--charcoal);
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 76px 76px,
    var(--brand-navy);
  color: var(--on-dark);
  padding: 72px 24px 0;
  position: relative;
}

.hero::before {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  content: "";
  height: 410px;
  left: 50%;
  position: absolute;
  top: 188px;
  transform: translateX(-50%);
  width: min(960px, calc(100vw - 48px));
}

.wire {
  left: 50%;
  opacity: 0.34;
  pointer-events: none;
  position: absolute;
  top: 38px;
  transform: translateX(-50%);
  width: min(1040px, calc(100vw - 34px));
}

.sticky-note {
  border-radius: var(--radius-xs);
  box-shadow: rgba(0, 0, 0, 0.16) 0 10px 24px;
  display: block;
  height: 22px;
  position: absolute;
  width: 22px;
}

.note-a {
  background: var(--brand-yellow);
  left: 13%;
  top: 124px;
  transform: rotate(-8deg);
}

.note-b {
  background: var(--brand-pink);
  right: 14%;
  top: 142px;
  transform: rotate(11deg);
}

.note-c {
  background: var(--brand-teal);
  left: 22%;
  top: 374px;
  transform: rotate(8deg);
}

.note-d {
  background: var(--brand-purple);
  right: 23%;
  top: 392px;
  transform: rotate(-12deg);
}

.hero-inner {
  margin: 0 auto;
  max-width: var(--max);
  position: relative;
  text-align: center;
  z-index: 2;
}

.private-label {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  color: #d9dce7;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 9px;
  line-height: 1.4;
  margin-bottom: 18px;
  min-height: 36px;
  padding: 8px 12px;
}

.private-label::before {
  background: var(--brand-yellow);
  border-radius: var(--radius-xs);
  content: "";
  height: 12px;
  width: 12px;
}

.hero h1 {
  color: var(--on-dark);
  font-size: 80px;
  font-weight: 650;
  line-height: 1.05;
  margin: 0 auto;
  max-width: 1000px;
}

.hero-name {
  color: var(--brand-yellow);
  display: block;
}

.hero-line {
  color: var(--on-dark);
  display: block;
}

.hero-line-mobile {
  display: none;
}

.hero-subtitle {
  color: #d8dbea;
  font-size: 20px;
  line-height: 1.5;
  margin: 24px auto 0;
  max-width: 760px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.planet-strip {
  align-items: center;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  color: var(--on-dark);
  display: grid;
  gap: 14px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: 24px auto 0;
  max-width: 760px;
  min-height: 72px;
  padding: 13px 14px;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.planet-strip:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.planet-strip-mark {
  background:
    radial-gradient(circle at 32% 34%, var(--brand-teal) 0 18%, transparent 19%),
    conic-gradient(from 30deg, var(--brand-teal), #2fc8b1, var(--brand-teal));
  border-radius: 50%;
  height: 34px;
  position: relative;
  width: 34px;
}

.planet-strip-mark::after {
  background: var(--brand-navy);
  border-radius: 50%;
  content: "";
  height: 18px;
  left: 8px;
  position: absolute;
  top: 8px;
  width: 18px;
}

.planet-strip strong,
.planet-strip em,
.planet-strip i {
  display: block;
  font-style: normal;
}

.planet-strip strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.planet-strip em {
  color: #d8dbea;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 3px;
}

.planet-strip i {
  background: var(--brand-yellow);
  border-radius: var(--radius-md);
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  padding: 8px 10px;
  white-space: nowrap;
}

.hero-stats {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 42px auto 0;
  max-width: 900px;
  overflow: hidden;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.075);
  min-height: 104px;
  padding: 18px 16px;
}

.hero-stat strong {
  color: var(--on-dark);
  display: block;
  font-size: 27px;
  font-weight: 650;
  line-height: 1.1;
}

.hero-stat span {
  color: var(--on-dark-muted);
  display: block;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.35;
  margin-top: 8px;
}

.replay-window {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-workspace);
  color: var(--ink);
  margin: 48px auto -82px;
  max-width: var(--max);
  overflow: hidden;
  position: relative;
  text-align: left;
  z-index: 3;
}

.window-bar {
  align-items: center;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  gap: 14px;
  min-height: 56px;
  padding: 0 18px;
}

.dots {
  display: inline-flex;
  gap: 7px;
}

.dots i {
  border-radius: 50%;
  display: block;
  height: 10px;
  width: 10px;
}

.dots i:nth-child(1) {
  background: #ff5f57;
}

.dots i:nth-child(2) {
  background: #ffbd2e;
}

.dots i:nth-child(3) {
  background: #28c840;
}

.window-title {
  color: var(--charcoal);
  flex: 1;
  font-size: 14px;
  font-weight: 650;
}

.risk-pill {
  background: var(--card-yellow);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 650;
  padding: 4px 8px;
  white-space: nowrap;
}

.replay-body {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 260px;
  min-height: 560px;
}

.event-nav {
  align-content: start;
  background: var(--surface);
  border-right: 1px solid var(--hairline);
  display: grid;
  gap: 10px;
  padding: 18px;
}

.event-button {
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  color: var(--slate);
  cursor: pointer;
  font: inherit;
  min-height: 76px;
  padding: 12px 13px;
  text-align: left;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.event-button span {
  color: var(--steel);
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.event-button strong {
  display: block;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.3;
  margin-top: 5px;
}

.event-button:hover {
  background: var(--canvas);
  border-color: var(--hairline);
  color: var(--ink);
}

.event-button.is-active {
  background: var(--ink-deep);
  color: var(--on-dark);
}

.event-button.is-active span {
  color: var(--on-dark-muted);
}

.chart-area {
  background: #ffffff;
  min-width: 0;
  padding: 24px;
}

.chart-panel {
  display: none;
}

.chart-panel.is-active {
  display: block;
}

.chart-head {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 16px;
}

.tag {
  border-radius: var(--radius-sm);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  padding: 4px 9px;
}

.tag-orange {
  background: var(--card-peach);
  color: var(--brand-orange-deep);
}

.tag-green {
  background: var(--card-mint);
  color: #0a7d2b;
}

.tag-purple {
  background: var(--card-lavender);
  color: var(--brand-purple-800);
}

.tag-blue {
  background: var(--card-sky);
  color: var(--link-blue-pressed);
}

.chart-head h2 {
  color: var(--ink);
  font-size: 32px;
  font-weight: 650;
  line-height: 1.18;
  margin: 0;
}

.chart-head p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.55;
  margin: 12px 0 0;
  max-width: 620px;
}

.chart-metric {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  min-width: 160px;
  padding: 16px;
}

.chart-metric strong {
  color: var(--ink);
  display: block;
  font-size: 25px;
  font-weight: 650;
  line-height: 1.05;
}

.chart-metric span {
  color: var(--steel);
  display: block;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
  margin-top: 6px;
}

.market-frame {
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.market-svg {
  display: block;
  height: auto;
  width: 100%;
}

.source-row {
  align-items: center;
  border-top: 1px solid var(--hairline);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 16px;
}

.source-row span {
  color: var(--steel);
  font-size: 13px;
  font-weight: 550;
}

.source-row a,
.timeline-card a,
.article-card a,
.archive-card a {
  align-items: center;
  color: var(--link-blue);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
  width: fit-content;
}

.proof-panel {
  align-content: start;
  background: var(--surface-soft);
  border-left: 1px solid var(--hairline);
  display: grid;
  gap: 14px;
  padding: 18px;
}

.proof-card,
.timeline-card,
.article-card,
.archive-card,
.method-board {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
}

.proof-card {
  padding: 18px;
}

.proof-card h3 {
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.35;
  margin: 0 0 10px;
}

.proof-card p,
.asset-card p,
.timeline-card p,
.method-row p,
.article-card p,
.archive-card p,
.archive-card ul,
.cta-inner p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
}

.proof-card p,
.method-row p {
  margin: 0;
}

.proof-card strong {
  color: var(--ink);
}

.proof-meta {
  border-top: 1px solid var(--hairline-soft);
  color: var(--steel);
  display: flex;
  font-size: 12px;
  font-weight: 650;
  gap: 10px;
  line-height: 1.4;
  margin-top: 14px;
  padding-top: 12px;
}

.section {
  padding: 118px 24px 86px;
}

.section.compact {
  padding-top: 86px;
}

.section-soft {
  background: var(--surface-soft);
}

.section-inner {
  margin: 0 auto;
  max-width: var(--max);
}

.section-title {
  margin: 0 0 34px;
  max-width: 760px;
}

.eyebrow {
  color: var(--brand-purple);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.section-title h2,
.cta-inner h2 {
  color: var(--ink);
  font-size: 48px;
  font-weight: 650;
  line-height: 1.15;
  margin: 0;
}

.section-title p {
  color: var(--slate);
  font-size: 17px;
  line-height: 1.6;
  margin: 16px 0 0;
}

.asset-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
}

.audience-grid .asset-card:not(.large) {
  min-height: 252px;
}

.asset-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  min-height: 258px;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.asset-card.large {
  display: flex;
  flex-direction: column;
  grid-row: span 2;
  min-height: 600px;
  padding: 34px;
}

.asset-card h3 {
  color: var(--ink);
  font-size: 28px;
  font-weight: 650;
  line-height: 1.22;
  margin: 0;
}

.asset-card.large h3 {
  font-size: 38px;
  line-height: 1.18;
}

.asset-card p {
  color: var(--charcoal);
  margin: 16px 0 0;
  max-width: 440px;
}

.asset-number {
  color: var(--ink);
  display: block;
  font-size: 58px;
  font-weight: 650;
  line-height: 1;
  margin-top: 26px;
}

.mini-bars {
  align-items: flex-end;
  display: flex;
  gap: 8px;
  height: 148px;
  margin-top: 28px;
}

.mini-bars span {
  background: rgba(10, 21, 48, 0.74);
  border-radius: var(--radius-xs) var(--radius-xs) 0 0;
  display: block;
  width: 20px;
}

.mini-bars span:nth-child(1) { height: 46px; }
.mini-bars span:nth-child(2) { height: 74px; }
.mini-bars span:nth-child(3) { height: 112px; }
.mini-bars span:nth-child(4) { height: 96px; }
.mini-bars span:nth-child(5) {
  background: var(--primary);
  height: 140px;
}

.tint-yellow { background: var(--card-yellow-bold); }
.tint-rose { background: var(--card-rose); }
.tint-mint { background: var(--card-mint); }
.tint-lavender { background: var(--card-lavender); }
.tint-sky { background: var(--card-sky); }

.timeline,
.article-grid,
.archive-grid {
  display: grid;
  gap: 18px;
}

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

.voice-grid .timeline-card {
  min-height: 286px;
}

.article-grid,
.archive-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-card {
  display: grid;
  min-height: 318px;
  padding: 26px;
  position: relative;
}

.timeline-card::before {
  background: var(--primary);
  border-radius: 50%;
  content: "";
  height: 10px;
  left: 26px;
  position: absolute;
  top: 26px;
  width: 10px;
}

.timeline-date {
  color: var(--steel);
  display: block;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  margin-left: 22px;
}

.timeline-card h3,
.archive-card h3 {
  color: var(--ink);
  font-size: 24px;
  font-weight: 650;
  line-height: 1.25;
  margin: 24px 0 0;
}

.timeline-card p {
  margin: 14px 0 22px;
}

.timeline-card a,
.article-card a {
  align-self: end;
}

.method-layout {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.35fr);
}

.method-board {
  overflow: hidden;
}

.method-row {
  display: grid;
  gap: 24px;
  grid-template-columns: 82px minmax(0, 0.72fr) minmax(0, 1.28fr);
  min-height: 116px;
  padding: 24px 26px;
}

.method-row + .method-row {
  border-top: 1px solid var(--hairline-soft);
}

.method-row span {
  color: var(--primary);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
}

.method-row h3 {
  color: var(--ink);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.3;
  margin: 0;
}

.article-card {
  display: grid;
  min-height: 300px;
  padding: 30px;
}

.article-card h3 {
  color: var(--ink);
  font-size: 28px;
  font-weight: 650;
  line-height: 1.24;
  margin: 16px 0 0;
}

.article-card p {
  margin: 14px 0 24px;
}

.planet-section {
  background:
    linear-gradient(180deg, var(--canvas) 0%, var(--surface-soft) 100%);
}

.planet-layout {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
}

.planet-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.planet-board {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.planet-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  min-height: 186px;
  padding: 24px;
}

.planet-card.featured {
  background: var(--card-mint);
  border-color: rgba(26, 174, 57, 0.22);
  grid-column: 1 / -1;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

.planet-card.featured::after {
  background:
    linear-gradient(90deg, rgba(10, 21, 48, 0.12) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(rgba(10, 21, 48, 0.1) 1px, transparent 1px) 0 0 / 18px 18px;
  border-radius: 50%;
  content: "";
  height: 180px;
  opacity: 0.58;
  position: absolute;
  right: -42px;
  top: -38px;
  transform: rotate(10deg);
  width: 180px;
}

.planet-card h3 {
  color: var(--ink);
  font-size: 24px;
  font-weight: 650;
  line-height: 1.25;
  margin: 0;
  position: relative;
}

.planet-card.featured h3 {
  font-size: 34px;
  max-width: 540px;
}

.planet-card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: 560px;
  position: relative;
}

.archive-card {
  min-height: 294px;
  padding: 28px;
}

.archive-status {
  align-items: center;
  border-radius: var(--radius-sm);
  display: inline-flex;
  font-size: 13px;
  font-weight: 750;
  gap: 8px;
  line-height: 1.4;
  margin-bottom: 18px;
  padding: 5px 9px;
}

.archive-status::before {
  border-radius: 50%;
  content: "";
  height: 8px;
  width: 8px;
}

.archive-status.ready {
  background: var(--card-mint);
  color: #0a7d2b;
}

.archive-status.ready::before {
  background: var(--brand-green);
}

.archive-status.pending {
  background: var(--card-yellow);
  color: var(--brand-orange-deep);
}

.archive-status.pending::before {
  background: var(--brand-orange);
}

.archive-status.plan {
  background: var(--card-lavender);
  color: var(--brand-purple-800);
}

.archive-status.plan::before {
  background: var(--brand-purple);
}

.archive-card h3 {
  margin: 0;
}

.archive-card p {
  margin: 14px 0 0;
}

.archive-card ul {
  color: var(--charcoal);
  display: grid;
  font-size: 14px;
  gap: 9px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.archive-card li {
  border-top: 1px solid var(--hairline-soft);
  padding-top: 9px;
}

.cta-band {
  background: var(--canvas);
  padding: 42px 24px 88px;
}

.cta-inner {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 58px;
}

.quote-panel {
  align-content: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--brand-navy);
  border-radius: var(--radius-lg);
  color: var(--on-dark);
  display: grid;
  min-height: 320px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.quote-panel::after {
  background:
    radial-gradient(circle at 30% 30%, var(--brand-yellow) 0 13%, transparent 14%),
    radial-gradient(circle at 62% 44%, var(--brand-teal) 0 11%, transparent 12%),
    radial-gradient(circle at 48% 72%, var(--brand-pink) 0 10%, transparent 11%);
  content: "";
  height: 190px;
  opacity: 0.42;
  position: absolute;
  right: -32px;
  top: -34px;
  width: 190px;
}

.quote-kicker,
.quote-panel strong,
.quote-panel p {
  position: relative;
  z-index: 1;
}

.quote-kicker {
  color: var(--brand-yellow);
  display: block;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
  margin-bottom: 16px;
}

.quote-panel strong {
  color: var(--on-dark);
  display: block;
  font-size: 38px;
  font-weight: 650;
  line-height: 1.16;
  max-width: 540px;
}

.quote-panel p {
  color: #d8dbea;
  font-size: 16px;
  line-height: 1.65;
  margin: 18px 0 0;
  max-width: 520px;
}

.cta-inner p {
  font-size: 17px;
  line-height: 1.65;
  margin: 18px 0 0;
  max-width: 660px;
}

.cta-inner .quote-panel p {
  color: #d8dbea;
  font-size: 16px;
  line-height: 1.65;
  margin: 18px 0 0;
  max-width: 520px;
}

.cta-points {
  align-content: center;
  display: grid;
  gap: 10px;
}

.cta-points span {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  color: var(--charcoal);
  display: block;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
  padding: 13px 14px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.qr-panel {
  align-items: center;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  padding: 16px;
  scroll-margin-top: 92px;
}

.qr-placeholder {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 0;
}

.qr-placeholder img {
  display: block;
  height: auto;
  width: 100%;
}

.qr-panel strong,
.qr-panel span {
  display: block;
}

.qr-panel strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.qr-panel span {
  color: var(--brand-teal);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.4;
  margin-top: 8px;
}

.qr-panel p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.55;
  margin: 10px 0 0;
}

.disclaimer {
  border-top: 1px solid var(--hairline);
  color: var(--steel);
  margin: 0 auto;
  max-width: var(--max);
  padding: 24px 24px 46px;
}

.disclaimer p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.svg-small {
  fill: var(--steel);
  font-size: 13px;
  font-weight: 650;
}

.svg-label {
  fill: var(--charcoal);
  font-size: 16px;
  font-weight: 700;
}

.svg-title {
  fill: var(--ink);
  font-size: 22px;
  font-weight: 700;
}

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

@media (max-width: 1180px) {
  .hero h1 {
    font-size: 64px;
  }

  .replay-body {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .proof-panel {
    border-left: 0;
    border-top: 1px solid var(--hairline);
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .asset-card.large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 360px;
  }

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

@media (max-width: 880px) {
  .topbar {
    padding: 0 18px;
  }

  .nav {
    display: none;
  }

  .brand-text span {
    display: none;
  }

  .hero {
    padding: 54px 16px 0;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions,
  .planet-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .planet-strip {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 14px;
  }

  .planet-strip i {
    grid-column: 1 / -1;
    text-align: center;
  }

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

  .replay-window {
    margin-bottom: -64px;
  }

  .window-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
  }

  .replay-body {
    grid-template-columns: 1fr;
  }

  .event-nav {
    border-bottom: 1px solid var(--hairline);
    border-right: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }

  .chart-area {
    padding: 16px;
  }

  .chart-head {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 98px 16px 64px;
  }

  .section.compact {
    padding-top: 64px;
  }

  .section-title h2,
  .cta-inner h2 {
    font-size: 36px;
  }

  .asset-grid,
  .timeline,
  .method-layout,
  .article-grid,
  .archive-grid,
  .planet-layout,
  .planet-board,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .asset-card.large {
    min-height: 420px;
  }

  .method-row {
    gap: 12px;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .planet-card.featured {
    min-height: 240px;
  }

  .planet-card.featured h3 {
    font-size: 30px;
  }

  .quote-panel {
    min-height: 260px;
    padding: 26px;
  }

  .quote-panel strong {
    font-size: 30px;
  }

  .cta-band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cta-inner {
    padding: 22px;
  }

  .qr-panel {
    gap: 12px;
    padding: 10px;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .topbar {
    height: 62px;
  }

  .nav-cta {
    font-size: 13px;
    padding: 9px 13px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-line-desktop {
    display: none;
  }

  .hero-line-mobile {
    display: block;
  }

  .sticky-note,
  .wire {
    display: none;
  }

  .private-label {
    font-size: 12px;
  }

  .planet-strip {
    margin-top: 18px;
  }

  .planet-strip strong {
    font-size: 14px;
  }

  .planet-strip em {
    font-size: 12px;
  }

  .hero-stat {
    min-height: 92px;
  }

  .hero-stat strong {
    font-size: 22px;
  }

  .event-nav {
    grid-template-columns: 1fr;
  }

  .chart-head h2 {
    font-size: 26px;
  }

  .market-svg {
    min-width: 650px;
  }

  .market-frame {
    overflow-x: auto;
  }

  .asset-card,
  .timeline-card,
  .article-card,
  .archive-card {
    padding: 24px;
  }

  .asset-card.large h3 {
    font-size: 34px;
  }

  .cta-inner {
    padding: 18px;
  }
}
