
:root {
  color-scheme: dark;
  --ink: #f8fafc;
  --copy: #cbd5e1;
  --muted: #94a3b8;
  --faint: #64748b;
  --bg: #050816;
  --panel: #0d1426;
  --panel-soft: #111b31;
  --line: rgba(148,163,184,.16);
  --cyan: #38bdf8;
  --blue: #2563eb;
  --green: #34d399;
  --yellow: #fbbf24;
  --orange: #fb923c;
  --red: #fb7185;
  --violet: #a78bfa;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% -10%, rgba(56,189,248,.17), transparent 34rem),
    radial-gradient(circle at 5% 35%, rgba(37,99,235,.11), transparent 30rem),
    var(--bg);
  font: 15px/1.6 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(56,189,248,.2);
  background: rgba(5,8,22,.92);
  backdrop-filter: blur(16px);
}
.header-inner, .container { width: min(1220px, calc(100% - 32px)); margin: 0 auto; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 64px; }
.brand-logo { width: auto; height: 31px; }
.primary-nav { display: none; align-items: center; gap: 22px; color: var(--muted); font-size: 13px; }
.primary-nav a:hover, .footer a:hover, .link:hover { color: var(--cyan); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--copy);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  font-weight: 800;
}
.button:hover { border-color: rgba(56,189,248,.6); color: var(--ink); }
.button-primary { border-color: rgba(56,189,248,.45); color: white; background: linear-gradient(135deg, #0891b2, #1d4ed8); }
.button-hero, .button-hero-secondary { min-height: 48px; padding: 0 28px; border-radius: 10px; font-size: 14px; letter-spacing: -.01em; }
.button-hero { border-color: rgba(56,189,248,.35); color: white; background: linear-gradient(135deg, #0891b2, #1d4ed8); box-shadow: 0 0 22px rgba(8,145,178,.35); }
.button-hero:hover { box-shadow: 0 0 32px rgba(8,145,178,.5); }
.button-hero-secondary { border-color: rgba(148,163,184,.2); background: rgba(255,255,255,.05); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.mobile-nav { display: block; }
.mobile-nav summary { cursor: pointer; color: var(--copy); font-size: 12px; font-weight: 800; }
.mobile-nav ul { position: absolute; right: 16px; display: grid; gap: 10px; min-width: 180px; margin: 10px 0 0; padding: 15px; border: 1px solid var(--line); border-radius: 10px; background: #0b1222; list-style: none; }
.hero { padding: 46px 0 30px; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 26px; color: var(--faint); font-size: 12px; }
.crumb-link, .crumb-current {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  white-space: nowrap;
}
.crumb-link { color: var(--muted); }
.crumb-link:hover { border-color: rgba(56,189,248,.45); color: var(--ink); background: rgba(56,189,248,.09); }
.crumb-current { border-color: rgba(56,189,248,.28); color: #bae6fd; background: rgba(56,189,248,.12); }
.crumb-sep { color: var(--faint); font-size: 11px; }
.eyebrow { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: var(--cyan); font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 15px currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 900px; margin-bottom: 15px; font-size: clamp(35px, 6vw, 68px); line-height: 1.02; letter-spacing: -.065em; }
h2 { margin-bottom: 8px; font-size: 26px; line-height: 1.15; letter-spacing: -.045em; }
h3 { margin-bottom: 6px; font-size: 16px; }
.hero-copy { max-width: 820px; margin-bottom: 20px; color: var(--copy); font-size: 17px; line-height: 1.7; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.tag, .status { display: inline-flex; align-items: center; min-height: 28px; padding: 0 9px; border: 1px solid rgba(56,189,248,.25); border-radius: 999px; color: #bae6fd; background: rgba(56,189,248,.08); font-size: 11px; font-weight: 800; }
.tag-green { border-color: rgba(52,211,153,.3); color: #a7f3d0; background: rgba(52,211,153,.08); }
.tag-yellow { border-color: rgba(251,191,36,.3); color: #fde68a; background: rgba(251,191,36,.08); }
.section { padding: 24px 0; }
.section + .section { padding-top: 30px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 15px; }
.section-heading p, .muted { margin-bottom: 0; color: var(--muted); }
.decision-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.decision-card {
  display: flex; align-items: start; gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(17,27,49,.95), rgba(13,20,38,.95));
  transition: border-color .2s, background .2s;
}
.decision-card:hover { border-color: rgba(56,189,248,.4); background: rgba(56,189,248,.06); }
.decision-card:nth-child(1):hover { border-color: rgba(56,189,248,.4); }
.decision-card:nth-child(2):hover { border-color: rgba(167,139,250,.4); }
.decision-card:nth-child(3):hover { border-color: rgba(251,146,60,.4); }
.decision-card:nth-child(4):hover { border-color: rgba(52,211,153,.4); }
.decision-icon { display: grid; place-items: center; width: 36px; height: 36px; flex-shrink: 0; border-radius: 9px; background: rgba(56,189,248,.15); color: var(--cyan); font-size: 13px; }
.decision-card:nth-child(1) .decision-icon { background: rgba(56,189,248,.15); color: var(--cyan); }
.decision-card:nth-child(2) .decision-icon { background: rgba(167,139,250,.15); color: var(--violet); }
.decision-card:nth-child(3) .decision-icon { background: rgba(251,146,60,.15); color: var(--orange); }
.decision-card:nth-child(4) .decision-icon { background: rgba(52,211,153,.15); color: var(--green); }
.decision-card h3 { margin-bottom: 4px; font-size: 15px; }
.decision-card p { margin-bottom: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.cta-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding: 30px 34px;
  border: 1px solid rgba(56,189,248,.28);
  border-radius: 15px;
  background: linear-gradient(125deg, rgba(8,145,178,.16), rgba(29,78,216,.08));
}
.cta-banner h2 { margin-bottom: 6px; font-size: 22px; }
.cta-banner p { max-width: 680px; margin-bottom: 0; color: var(--copy); font-size: 14px; }
.cta-banner .button-hero { flex-shrink: 0; white-space: nowrap; }
.inline-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px 22px;
  border: 1px solid rgba(56,189,248,.18);
  border-radius: 11px;
  background: rgba(56,189,248,.05);
  margin: 20px 0 0;
}
.inline-cta p { margin: 0; color: var(--copy); font-size: 13px; }
.inline-cta strong { color: white; }
.inline-cta .button-hero { min-height: 40px; padding: 0 20px; font-size: 13px; flex-shrink: 0; white-space: nowrap; }
.answer { padding: 22px 24px; border: 1px solid rgba(56,189,248,.24); border-left: 4px solid var(--cyan); border-radius: 14px; background: linear-gradient(110deg, rgba(56,189,248,.12), rgba(13,20,38,.9)); }
.answer p { max-width: 980px; margin-bottom: 0; color: var(--copy); font-size: 16px; }
.stat-callout { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 16px; padding: 22px 26px; border: 1px solid rgba(56,189,248,.2); border-radius: 13px; background: linear-gradient(120deg, rgba(8,145,178,.1), rgba(13,20,38,.9)); }
.stat-callout-main { display: flex; flex-direction: column; gap: 4px; }
.stat-value { color: white; font-size: clamp(28px, 5vw, 42px); font-weight: 900; letter-spacing: -.04em; line-height: 1; }
.stat-label { color: var(--muted); font-size: 13px; margin-top: 4px; }
.stat-callout-side { display: grid; grid-template-columns: auto auto; gap: 4px 16px; align-items: center; }
.stat-side-value { color: white; font-size: 20px; font-weight: 900; letter-spacing: -.03em; }
.stat-side-label { color: var(--faint); font-size: 11px; }
.source-note { color: var(--faint); font-size: 12px; }
.hero-source-note { margin: 16px 0 0; }
.coverage-source-note { margin: 18px 0 0; }
.kpi-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.kpi, .panel { border: 1px solid var(--line); border-radius: 13px; background: linear-gradient(145deg, rgba(17,27,49,.95), rgba(13,20,38,.95)); }
.kpi { min-height: 128px; padding: 17px; }
.kpi-label { display: block; color: var(--muted); font-size: 11px; font-weight: 800; }
.kpi-value { display: block; margin: 13px 0 4px; color: white; font-size: 25px; font-weight: 900; letter-spacing: -.05em; }
.kpi-note { color: var(--faint); font-size: 11px; }
.layout-2 { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 14px; }
.layout-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.panel { padding: 20px; }
.panel p:last-child { margin-bottom: 0; }
.panel-title { display: flex; align-items: start; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.panel-title p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.metric-list { display: grid; gap: 12px; }
.metric-row { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.metric-row:last-child { padding-bottom: 0; border-bottom: 0; }
.metric-row span { color: var(--muted); font-size: 12px; }
.metric-row strong { color: white; font-size: 15px; text-align: right; }
.green { color: var(--green) !important; }
.yellow { color: var(--yellow) !important; }
.orange { color: var(--orange) !important; }
.red { color: var(--red) !important; }
.chart-wrap { overflow: hidden; padding-top: 4px; }
.chart { display: block; width: 100%; height: auto; }
.chart-grid { stroke: rgba(148,163,184,.12); stroke-width: 1; }
.chart-axis { fill: var(--faint); font-size: 10px; font-family: ui-monospace, monospace; }
.chart-line { fill: none; stroke: var(--cyan); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.chart-trend-line { fill: none; stroke: rgba(56,189,248,.4); stroke-width: 1.5; stroke-dasharray: 4 3; stroke-linecap: round; stroke-linejoin: round; }
.chart-line-secondary { fill: none; stroke: var(--orange); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.chart-area { fill: rgba(56,189,248,.10); }
.chart-dot { fill: var(--cyan); stroke: #07101e; stroke-width: 2.5; }
.legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 5px; color: var(--muted); font-size: 11px; }
.legend span::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 6px; border-radius: 50%; background: var(--cyan); }
.legend .orange-dot::before { background: var(--orange); }
.data-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 13px; }
.data-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 12px; }
.data-table th { padding: 11px 12px; color: var(--muted); background: rgba(255,255,255,.04); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-align: left; text-transform: uppercase; white-space: nowrap; }
.data-table td { padding: 12px; border-top: 1px solid var(--line); color: var(--copy); vertical-align: middle; white-space: nowrap; }
.data-table th:first-child, .data-table td:first-child { position: sticky; left: 0; z-index: 1; background: #101a2d; }
.data-table tbody tr:hover td { background: rgba(56,189,248,.06); }
.data-table .num { text-align: right; }
.data-table .rank { color: var(--faint); }
.data-table strong { color: white; }
.data-table small { display: block; color: var(--faint); font-size: 10px; }
.table-note { display: flex; justify-content: space-between; gap: 12px; padding: 11px 13px; border-top: 1px solid var(--line); color: var(--faint); font-size: 11px; }
.link { color: var(--cyan); font-weight: 800; }
.footer { margin-top: 50px; padding: 42px 0 56px; border-top: 1px solid var(--line); color: var(--muted); background: #030611; }
.footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.footer h2 { color: var(--copy); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li + li { margin-top: 6px; }
.footer a { font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 28px; padding-top: 17px; border-top: 1px solid var(--line); color: var(--faint); font-size: 11px; }
.bubble-field { position: relative; height: 330px; margin-top: 8px; border: 1px solid var(--line); border-radius: 10px; background: linear-gradient(180deg, rgba(56,189,248,.07), transparent), repeating-linear-gradient(0deg, transparent 0 64px, rgba(148,163,184,.11) 65px), repeating-linear-gradient(90deg, transparent 0 84px, rgba(148,163,184,.08) 85px); }
.bubble-axis-x, .bubble-axis-y { position: absolute; color: var(--faint); font-size: 10px; }
.bubble-axis-x { right: 12px; bottom: 8px; }
.bubble-axis-y { top: 10px; left: 10px; writing-mode: vertical-rl; transform: rotate(180deg); }
.bubble { position: absolute; display: grid; place-items: center; width: 52px; height: 52px; padding: 4px; overflow: hidden; border: 2px solid rgba(186,230,253,.8); border-radius: 50%; color: white; background: rgba(14,116,144,.72); box-shadow: 0 5px 17px rgba(0,0,0,.25); font-size: 10px; font-weight: 900; text-align: center; transform: translate(-50%, 50%); }
.bubble:nth-of-type(3n) { background: rgba(37,99,235,.72); }
.bubble:nth-of-type(4n) { background: rgba(124,58,237,.72); }
.rank-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.rank-list li { display: grid; grid-template-columns: 28px 1fr auto; gap: 9px; align-items: center; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.rank-list li:last-child { padding-bottom: 0; border-bottom: 0; }
.rank-list em { color: var(--faint); font-style: normal; font-size: 11px; }
.rank-list strong { color: white; font-size: 12px; }
.rank-list span { color: var(--muted); font-size: 11px; text-align: right; }
.treemap { display: flex; flex-wrap: wrap; align-items: stretch; gap: 4px; min-height: 255px; padding: 4px; border: 1px solid var(--line); border-radius: 10px; background: #091123; }
.treemap-tile { display: flex; min-width: 104px; min-height: 78px; flex: 1 1 12%; flex-direction: column; justify-content: space-between; padding: 11px; border: 1px solid rgba(255,255,255,.15); border-radius: 7px; background: linear-gradient(135deg, rgba(37,99,235,.88), rgba(14,116,144,.78)); }
.treemap-tile:nth-child(3n) { background: linear-gradient(135deg, rgba(124,58,237,.88), rgba(30,64,175,.78)); }
.treemap-tile:nth-child(4n) { background: linear-gradient(135deg, rgba(5,150,105,.88), rgba(14,116,144,.78)); }
.treemap-tile strong { font-size: 13px; }
.treemap-tile span { color: rgba(255,255,255,.75); font-size: 10px; }
.lane-scatter { width: 100%; height: auto; border: 1px solid var(--line); border-radius: 10px; background: #091123; }
.lane-scatter circle { fill: var(--orange); stroke: #08101f; stroke-width: 2; }
.lane-scatter text { fill: var(--copy); font-size: 10px; }
.access-callout { padding: 15px; border-left: 3px solid var(--orange); color: var(--copy); background: rgba(251,146,60,.08); font-size: 13px; }
.price-band { position: relative; height: 44px; margin: 12px 4px 10px; }
.price-band-track { position: absolute; top: 18px; right: 0; left: 0; height: 8px; border-radius: 99px; background: linear-gradient(90deg, #2563eb, #38bdf8 50%, #fb923c); }
.price-marker { position: absolute; top: 6px; width: 2px; height: 28px; background: white; }
.price-band-legend { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 8px; }
.price-band-legend-item { border: 1px solid var(--line); border-radius: 8px; padding: 8px; background: rgba(255,255,255,.03); }
.price-band-legend-item b { display: block; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.price-band-legend-item span { display: block; margin-top: 3px; color: white; font-size: 12px; font-weight: 900; }
.signal-list { display: grid; gap: 9px; }
.signal { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; padding: 10px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.025); }
.signal-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 10px currentColor; }
.signal-dot.new { background: var(--green); }
.signal strong { display: block; color: white; font-size: 12px; }
.signal span { display: block; color: var(--muted); font-size: 11px; }
.signal b { color: var(--yellow); font-size: 11px; }
.route { color: white; font-weight: 800; }
.route-code { display: block; color: var(--faint); font-size: 10px; }
.pill-cell { display: inline-flex; padding: 3px 7px; border-radius: 999px; color: #bae6fd; background: rgba(56,189,248,.1); font-size: 10px; font-weight: 800; }
.pill-cell.alert { color: #fed7aa; background: rgba(251,146,60,.13); }
@media (min-width: 900px) {
  .primary-nav { display: flex; }
  .mobile-nav { display: none; }
  .header-inner, .container { width: min(1220px, calc(100% - 48px)); }
}
@media (max-width: 980px) {
  .kpi-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .layout-2 { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  .hero { padding-top: 30px; }
  h1 { font-size: clamp(34px, 10vw, 48px); }
  .kpi-grid, .layout-3, .footer-grid { grid-template-columns: 1fr 1fr; }
  .kpi { min-height: 112px; padding: 13px; }
  .kpi-value { font-size: 20px; }
  .section-heading { align-items: start; flex-direction: column; gap: 6px; }
  .answer { padding: 18px; }
  .panel { padding: 15px; }
  .breadcrumbs { gap: 6px; }
  .crumb-link, .crumb-current { min-height: 26px; padding: 0 8px; font-size: 11px; }
  .price-band-legend { grid-template-columns: 1fr; }
}
@media (max-width: 430px) {
  .kpi-grid, .layout-3, .footer-grid { grid-template-columns: 1fr; }
  .header-actions .button-primary { display: none; }
}

.bubble-x-0 { left: 8.0%; }
.bubble-y-0 { bottom: 8.0%; }
.bubble-x-1 { left: 16.4%; }
.bubble-y-1 { bottom: 16.4%; }
.bubble-x-2 { left: 24.8%; }
.bubble-y-2 { bottom: 24.8%; }
.bubble-x-3 { left: 33.2%; }
.bubble-y-3 { bottom: 33.2%; }
.bubble-x-4 { left: 41.6%; }
.bubble-y-4 { bottom: 41.6%; }
.bubble-x-5 { left: 50.0%; }
.bubble-y-5 { bottom: 50.0%; }
.bubble-x-6 { left: 58.4%; }
.bubble-y-6 { bottom: 58.4%; }
.bubble-x-7 { left: 66.8%; }
.bubble-y-7 { bottom: 66.8%; }
.bubble-x-8 { left: 75.2%; }
.bubble-y-8 { bottom: 75.2%; }
.bubble-x-9 { left: 83.6%; }
.bubble-y-9 { bottom: 83.6%; }
.bubble-x-10 { left: 92.0%; }
.bubble-y-10 { bottom: 92.0%; }
.bubble-size-0 { width: 34px; height: 34px; }
.bubble-size-1 { width: 41px; height: 41px; }
.bubble-size-2 { width: 48px; height: 48px; }
.bubble-size-3 { width: 55px; height: 55px; }
.bubble-size-4 { width: 62px; height: 62px; }
.treemap-size-0 { flex-basis: 7%; }
.treemap-size-1 { flex-basis: 11%; }
.treemap-size-2 { flex-basis: 15%; }
.treemap-size-3 { flex-basis: 19%; }
.treemap-size-4 { flex-basis: 23%; }
.treemap-size-5 { flex-basis: 28%; }
.treemap-size-6 { flex-basis: 32%; }
.treemap-size-7 { flex-basis: 36%; }
.treemap-size-8 { flex-basis: 40%; }
.treemap-size-9 { flex-basis: 44%; }
.treemap-size-10 { flex-basis: 48%; }
.price-position-0 { left: 0%; }
.price-position-5 { left: 5%; }
.price-position-10 { left: 10%; }
.price-position-15 { left: 15%; }
.price-position-20 { left: 20%; }
.price-position-25 { left: 25%; }
.price-position-30 { left: 30%; }
.price-position-35 { left: 35%; }
.price-position-40 { left: 40%; }
.price-position-45 { left: 45%; }
.price-position-50 { left: 50%; }
.price-position-55 { left: 55%; }
.price-position-60 { left: 60%; }
.price-position-65 { left: 65%; }
.price-position-70 { left: 70%; }
.price-position-75 { left: 75%; }
.price-position-80 { left: 80%; }
.price-position-85 { left: 85%; }
.price-position-90 { left: 90%; }
.price-position-95 { left: 95%; }
.price-position-100 { left: 100%; }