
:root {
  --bg: #071019;
  --bg2: #0b1520;
  --panel: rgba(14, 28, 41, 0.82);
  --panel-2: rgba(11, 24, 36, 0.92);
  --border: rgba(124, 196, 255, 0.14);
  --text: #eef7ff;
  --muted: #abbfd1;
  --soft: #c7d7e5;
  --blue: #53b5ff;
  --cyan: #5fe4db;
  --purple: #a58bff;
  --green: #71e29b;
  --amber: #ffd37a;
  --red: #ff8f8f;
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(44, 115, 181, .16), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(105, 68, 180, .13), transparent 30%),
    linear-gradient(180deg, #071019 0%, #08111a 45%, #061018 100%);
  min-height: 100vh;
}
a { color: inherit; }
.bg-orb {
  position: fixed; width: 420px; height: 420px; border-radius: 50%;
  filter: blur(110px); opacity: .13; pointer-events: none; z-index: -1;
}
.orb-a { background: #38a9ff; top: -120px; left: -120px; }
.orb-b { background: #8462ff; right: 0; top: 340px; max-width: 100vw; }

.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px max(24px, calc((100vw - 1420px)/2));
  background: rgba(5, 13, 21, .78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.brand { display: flex; align-items: center; gap: 12px; }
.logo {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px;
  background: linear-gradient(135deg, rgba(83,181,255,.22), rgba(95,228,219,.08));
  border: 1px solid rgba(83,181,255,.4); font-weight: 800; letter-spacing: -.04em;
  box-shadow: inset 0 0 26px rgba(83,181,255,.08), 0 0 26px rgba(83,181,255,.07);
}
.brand-title { font-size: 15px; font-weight: 750; }
.brand-sub { color: var(--muted); font-size: 12px; margin-top: 2px; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.updated-badge, .status-pill {
  color: var(--muted); font-size: 12px; border: 1px solid var(--border);
  background: rgba(255,255,255,.025); padding: 8px 10px; border-radius: 999px;
}
.refresh-btn {
  border: 1px solid rgba(83,181,255,.36);
  background: linear-gradient(180deg, rgba(40,136,210,.23), rgba(23,77,123,.18));
  color: var(--text); border-radius: 10px; padding: 10px 14px; cursor: pointer;
  font-weight: 700; box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.refresh-btn:hover { border-color: rgba(83,181,255,.65); }
.refresh-btn:disabled { opacity: .55; cursor: wait; }
.refresh-icon { display: inline-block; margin-right: 6px; }
.refresh-btn.loading .refresh-icon { animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.shell { max-width: 1420px; margin: 0 auto; padding: 42px 24px 100px; }
.hero {
  min-height: 390px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 50px; align-items: center;
  padding: 60px 4px 54px;
}
.eyebrow { color: var(--cyan); font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.hero h1 {
  font-size: clamp(42px, 5.8vw, 82px); line-height: .98; letter-spacing: -.055em;
  margin: 14px 0 20px; max-width: 900px;
}
.hero p { color: var(--soft); font-size: 18px; line-height: 1.7; max-width: 760px; }
.hero-pill-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-pill {
  border: 1px solid var(--border); background: rgba(255,255,255,.025);
  padding: 15px; border-radius: 12px; color: var(--soft); font-size: 13px;
}
.hero-pill span { color: var(--blue); margin-right: 8px; font-weight: 800; }

.summary-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 62px; }
.metric-card {
  padding: 21px; border: 1px solid var(--border); border-radius: 16px;
  background: linear-gradient(180deg, rgba(17,35,51,.8), rgba(8,20,31,.84)); box-shadow: var(--shadow);
}
.metric-label { color: var(--muted); font-size: 12px; }
.metric-value { font-size: 25px; font-weight: 800; margin: 10px 0 7px; }
.metric-note { color: var(--soft); font-size: 12px; }

.section-block { margin-top: 70px; scroll-margin-top: 100px; }
.section-heading {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 17px;
}
.section-index { color: var(--blue); font-weight: 800; font-size: 11px; letter-spacing: .16em; }
.section-heading h2 { font-size: 31px; letter-spacing: -.035em; margin: 6px 0 7px; }
.section-heading p { margin: 0; color: var(--muted); max-width: 780px; line-height: 1.6; }
.status-pill.live { color: var(--green); border-color: rgba(113,226,155,.25); background: rgba(113,226,155,.05); }
.status-pill.cached { color: var(--amber); border-color: rgba(255,211,122,.25); background: rgba(255,211,122,.05); }
.status-pill.neutral { color: var(--muted); }

.two-col { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr); gap: 14px; }
.panel {
  min-width: 0;
  border: 1px solid var(--border); border-radius: 18px;
  background: linear-gradient(180deg, rgba(14,29,43,.9), rgba(8,20,31,.88));
  box-shadow: var(--shadow); padding: 24px;
}
.chart-panel { min-height: 430px; display: flex; align-items: center; }
.info-panel h3 { font-size: 22px; margin: 2px 0 14px; }
.info-panel p { color: var(--soft); line-height: 1.68; }
.rank-list { margin: 22px 0; display: grid; gap: 9px; }
.rank-row { display: grid; grid-template-columns: 28px 1fr auto; gap: 9px; align-items: center; font-size: 13px; }
.rank-no { color: var(--muted); }
.rank-name { color: var(--soft); }
.rank-value { font-weight: 800; }
.source-link {
  display: inline-block; margin-top: 10px; color: var(--blue); text-decoration: none;
  font-size: 13px; font-weight: 700;
}
.source-link:hover { text-decoration: underline; }

.callout-number { padding: 8px 0 18px; }
.callout-number span { font-size: 48px; line-height: 1; font-weight: 850; letter-spacing: -.05em; }
.callout-number small { display: block; margin-top: 10px; color: var(--muted); }
.warning-box, .agent-note {
  border: 1px solid rgba(255,211,122,.2); background: rgba(255,211,122,.05);
  border-radius: 12px; padding: 14px; color: #e6d8b8; font-size: 13px; line-height: 1.55;
}
.mini-stats { display: grid; gap: 10px; margin-bottom: 20px; }
.mini-stats div {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.06); padding: 12px 0;
}
.mini-stats strong { font-size: 25px; }
.mini-stats span { color: var(--muted); text-align: right; font-size: 12px; }

.agent-explainer { padding: 28px; }
.agent-note { margin-bottom: 18px; }
.agent-note strong { display: block; color: var(--text); margin-bottom: 5px; }
.agent-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.agent-card { border: 1px solid rgba(255,255,255,.07); border-radius: 13px; padding: 17px; background: rgba(255,255,255,.02); }
.agent-card h4 { margin: 0 0 12px; font-size: 14px; }
.agent-company { color: var(--soft); font-size: 12px; padding: 6px 0; border-top: 1px solid rgba(255,255,255,.05); }

.landscape-panel { margin-top: 14px; }
.landscape-panel h3 { margin-top: 0; }
.market-map { display: grid; gap: 15px; }
.map-node {
  border: 1px solid var(--border); background: rgba(255,255,255,.025); border-radius: 13px; padding: 17px;
}
.map-node.core {
  max-width: 360px; margin: 0 auto; text-align: center; font-weight: 850;
  border-color: rgba(83,181,255,.35); box-shadow: 0 0 40px rgba(83,181,255,.07);
}
.map-node b { display: block; margin-bottom: 8px; }
.map-node span { color: var(--muted); font-size: 12px; line-height: 1.6; }
.map-branch { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }

.industry-top {
  width: fit-content; margin: 0 auto 20px; padding: 13px 28px; border-radius: 999px;
  border: 1px solid rgba(83,181,255,.3); background: rgba(83,181,255,.06); font-weight: 850;
}
.industry-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.industry-column {
  border: 1px solid rgba(255,255,255,.07); border-radius: 14px; padding: 18px; display: grid; gap: 8px;
}
.industry-column.highlight { border-color: rgba(95,228,219,.28); background: rgba(95,228,219,.035); }
.industry-column h3 { margin: 0 0 7px; font-size: 14px; }
.industry-column span { color: var(--soft); font-size: 12px; }

.method-grid div { border:1px solid var(--border); border-radius:12px; padding:18px; }
.method-grid b { display:block; margin-bottom:8px; }
.method-grid span { color:var(--soft); font-size:14px; line-height:1.6; }

.method-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }

footer {
  max-width: 1420px; margin: 0 auto; padding: 30px 24px 50px; display: flex; justify-content: space-between;
  color: var(--muted); font-size: 11px;
}
.toast {
  position: fixed; right: 22px; bottom: 22px; max-width: 420px; padding: 13px 16px; border-radius: 12px;
  border: 1px solid var(--border); background: rgba(5,16,25,.96); box-shadow: var(--shadow);
  color: var(--soft); transform: translateY(25px); opacity: 0; pointer-events: none; transition: .22s ease; font-size: 12px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.jump-nav { display:flex; flex-wrap:wrap; gap:10px 22px; padding:4px 0 18px; }
.jump-nav a { color:var(--cyan); font-size:13px; text-underline-offset:5px; }
.freshness-note { color:var(--soft); font-size:12px; line-height:1.7; margin:12px 0 18px; overflow-wrap:anywhere; }
.news-toolbar { display:flex; align-items:center; flex-wrap:wrap; gap:12px; margin:22px 0; font-size:13px; color:var(--soft); }
.news-toolbar select { background:var(--bg2); color:var(--text); border:1px solid var(--border); padding:10px; border-radius:8px; font:inherit; }
.news-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.news-card h3 { font-size:17px; line-height:1.5; margin:12px 0 0; }
.news-card a { text-decoration:none; }
.news-card a:hover { color:var(--cyan); text-decoration:underline; }
.news-meta { font-size:11px; line-height:1.6; color:var(--muted); margin:0; }
.feed-details { padding:20px 0; color:var(--soft); font-size:13px; }
.feed-details summary { cursor:pointer; }
.feed-details pre { white-space:pre-wrap; overflow-wrap:anywhere; font:inherit; line-height:1.8; }
a:focus-visible,button:focus-visible,select:focus-visible { outline:2px solid var(--cyan); outline-offset:4px; }
@media(prefers-reduced-motion:reduce) { html { scroll-behavior:auto; } * { animation:none!important; transition:none!important; } }

@media (max-width: 1050px) {
  .news-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .hero { grid-template-columns: 1fr; }
  .summary-grid { grid-template-columns: 1fr 1fr; }
  .agent-grid, .industry-cols, .method-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .topbar { position: relative; align-items: flex-start; }
  .brand-sub, .updated-badge { display: none; }
  .shell { padding: 20px 15px 70px; }
  .hero { padding-top: 36px; min-height: auto; }
  .hero-pill-grid, .summary-grid, .two-col, .agent-grid, .map-branch, .industry-cols, .method-grid, .strategy-grid {
    grid-template-columns: 1fr;
  }
  .section-heading { align-items: flex-start; }
  .section-heading { flex-wrap:wrap; }
  .section-heading .status-pill { display: block; }
  .news-grid { grid-template-columns:1fr; }
  .topbar { flex-wrap:wrap; }
  .header-actions { flex-wrap:wrap; }
  .updated-badge { display:block; }
  .chart-panel { min-height: 350px; padding: 14px; }
  .flow-row, .flow-row.providers { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; gap: 8px; }
}

/* Direct labels and native HTML diagrams remain readable at every viewport. */
[hidden] { display:none!important; }
body { font-size:16px; line-height:1.55; }
button, select { font:inherit; }
button { touch-action:manipulation; }
.skip-link { position:absolute; top:-100px; left:20px; z-index:100; background:#fff; color:#08111a; padding:12px 20px; }
.skip-link:focus { top:8px; }
.shell { max-width:1440px; padding-top:28px; }
.topbar { position:relative; }
.brand-title { font-size:17px; }
.brand-sub { font-size:13px; }
.updated-badge, .status-pill { font-size:12px; }
.jump-nav { gap:12px 25px; border-bottom:1px solid var(--border); }
.jump-nav a { font-size:14px; padding:6px 0; }
.hero { min-height:320px; padding:38px 0 46px; gap:48px; grid-template-columns:1.15fr .85fr; }
.hero h1 { font-size:clamp(40px,4.6vw,66px); line-height:1.08; max-width:820px; }
.hero p { font-size:18px; max-width:690px; }
.hero-guide { border:1px solid var(--border); border-radius:18px; padding:26px; background:rgba(17,35,51,.65); }
.hero-guide>a { display:flex; gap:18px; align-items:center; border-bottom:1px solid var(--border); padding:20px 0; text-decoration:none; font-size:17px; }
.hero-guide>a:last-child { border:0; padding-bottom:0; }
.hero-guide>a>b { font-size:13px; color:var(--cyan); }
.hero-guide>a>span:last-child { margin-left:auto; color:var(--cyan); }
.hero-guide small { display:block; font-size:13px; color:var(--muted); margin-top:4px; }
.summary-grid { margin-bottom:20px; }
.metric-label,.metric-note { font-size:13px; }
.metric-value { font-size:28px; }
.section-block { margin-top:76px; scroll-margin-top:24px; }
.section-heading h2 { font-size:clamp(27px,3vw,36px); line-height:1.2; }
.section-heading p { font-size:16px; max-width:950px; }
.section-index { color:var(--cyan); letter-spacing:.12em; font-size:12px; }
.freshness-note { font-size:13px; line-height:1.7; }
.two-col { grid-template-columns:minmax(0,1.35fr) minmax(0,.65fr); gap:20px; }
.panel { padding:28px; }
.chart-panel { display:block; min-height:0; }
.chart-panel h3, .chart-heading h3 { margin:0 0 7px; font-size:21px; line-height:1.4; }
.chart-explainer,.chart-footnote { font-size:14px; line-height:1.7; color:var(--soft); }
.chart-footnote { margin:20px 0 0; color:var(--muted); }
.value-bars,.investment-bars { list-style:none; padding:0; margin:28px 0 0; display:grid; gap:22px; }
.bar-heading { display:flex; align-items:baseline; justify-content:space-between; gap:16px; margin-bottom:9px; font-size:16px; }
.bar-heading strong { font-size:19px; white-space:nowrap; font-variant-numeric:tabular-nums; }
.bar-heading h4 { margin:0; font-size:17px; }
.bar-track { height:18px; border-radius:4px; background:repeating-linear-gradient(to right, transparent 0, transparent calc(25% - 1px), rgba(255,255,255,.12) calc(25% - 1px), rgba(255,255,255,.12) 25%),#192e3f; overflow:hidden; }
.bar-track>span { display:block; height:100%; background:#69c4ff; border-radius:3px; }
.value-bars li:nth-child(even) .bar-track>span { background:#6cddd4; }
.chart-scale { display:flex; justify-content:space-between; color:var(--muted); font-size:12px; margin-top:14px; }
.info-panel p { font-size:15px; }
.source-link { font-size:14px; }
.mini-stats { gap:4px; }
.mini-stats span { font-size:13px; max-width:64%; }
.mini-stats strong { font-size:29px; }
.insight-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.insight-card { border:1px solid var(--border); border-left:3px solid var(--cyan); background:#0d1d2b; border-radius:12px; padding:24px; }
.insight-card>strong { font-size:36px; color:var(--cyan); line-height:1.2; }
.insight-card h3 { font-size:18px; line-height:1.4; margin:12px 0; }
.insight-card p,.insight-card a { font-size:13px; color:var(--soft); }
.insight-card a { color:var(--blue); }
.map-controls,.leader-tabs { display:flex; flex-wrap:wrap; align-items:center; gap:8px; margin:24px 0; }
.map-controls>span { margin-right:8px; font-size:14px; color:var(--soft); }
.map-filter,.leader-tab { border:1px solid #426078; background:#0d2030; color:var(--soft); border-radius:9px; padding:10px 15px; cursor:pointer; font-size:14px; }
.map-filter:hover,.leader-tab:hover { border-color:var(--cyan); }
.map-filter.selected,.leader-tab.selected { color:#071820; background:var(--cyan); border-color:var(--cyan); font-weight:700; }
.industry-figure { margin:0; }
.industry-flow { list-style:none; padding:0; margin:0; display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:15px; }
.industry-stage { position:relative; display:flex; flex-direction:column; padding:22px 18px; border:1px solid #39536b; border-top:3px solid #69c4ff; border-radius:13px; background:#0e2030; min-width:0; }
.industry-stage:not(:last-child)::after { content:'→'; position:absolute; right:-16px; top:45%; z-index:2; color:#d0eaff; background:#071019; border-radius:50%; font-size:20px; font-weight:bold; }
.stage-number { color:var(--muted); font-size:12px; font-weight:700; }
.stage-icon { color:#7ccfff; font-size:30px; margin:8px 0; line-height:1.1; }
.industry-stage h3 { font-size:19px; line-height:1.3; margin:8px 0 12px; }
.industry-stage>p { font-size:14px; color:var(--soft); margin:0 0 18px; }
.company-tags { display:grid; gap:7px; margin-bottom:24px; }
.company-tags>span { font-size:13px; border:1px solid #324c61; border-radius:6px; padding:7px; color:#d0e0ed; background:#132a3c; }
.industry-stage.highlighted { border-color:var(--cyan); box-shadow:0 0 0 1px var(--cyan); }
.company-tags>span.highlighted { background:#5fe4db; border-color:#5fe4db; color:#082029; font-weight:700; }
.stage-output { margin-top:auto; border-top:1px solid var(--border); padding-top:14px; font-size:12px; color:var(--cyan); font-weight:650; }
.outcome-stage { background:#0d2a2b; border-top-color:var(--cyan); }
.outcome-list { padding-left:18px; font-size:14px; color:var(--soft); margin:0 0 24px; }
.outcome-list li { margin:0 0 9px; }
figcaption { color:var(--soft); font-size:13px; line-height:1.7; padding:18px 0 8px; }
.source-details { color:var(--soft); font-size:14px; margin:12px 0; }
.source-details summary { cursor:pointer; color:var(--blue); padding:8px 0; }
.source-details a { color:var(--blue); }
.editorial-note { border-left:3px solid #a58bff; padding:4px 0 4px 16px; font-size:14px; color:var(--soft); margin:22px 0; }
#editorialAge { color:var(--amber); }
.chart-heading { display:flex; justify-content:space-between; align-items:start; gap:20px; }
.chart-heading p { margin:4px 0; color:var(--soft); font-size:14px; }
.chart-unit { white-space:nowrap; color:var(--cyan); border:1px solid var(--border); padding:7px 10px; border-radius:8px; font-size:13px; }
.investment-panel { padding:30px; }
.investment-bars { gap:26px; }
.money-track { height:25px; }
.money-track>span { background:linear-gradient(90deg,#368eb8,#6ce1d5); }
.basis { color:#e0effb; font-size:14px; margin:10px 0 3px; }
.bar-context { margin:0; font-size:13px; color:var(--soft); }
.bar-context a { color:var(--blue); display:inline-block; margin-left:5px; }
.signal-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; margin-top:20px; }
.signal-card { display:flex; flex-direction:column; }
.signal-kind { color:var(--muted); font-size:11px; letter-spacing:.1em; }
.signal-value { color:var(--cyan); font-size:43px; line-height:1.2; margin:18px 0 10px; }
.signal-card h3 { font-size:19px; line-height:1.45; margin:0 0 14px; }
.signal-card p { color:var(--soft); font-size:14px; }
.signal-card .source-link { margin-top:auto; padding-top:10px; }
.asset-split { display:grid; grid-template-columns:repeat(3,1fr); gap:4px; height:18px; }
.asset-split span { background:var(--cyan); border-radius:3px; }
.asset-split span:last-child { background:#526b82; }
.signal-card .split-key { font-size:12px; }
.leader-profile { padding:32px; }
.profile-heading { display:flex; justify-content:space-between; align-items:center; gap:20px; padding-bottom:24px; border-bottom:1px solid var(--border); }
.profile-heading h3 { font-size:31px; line-height:1.2; margin:8px 0; }
.profile-heading p { color:var(--soft); margin:0; font-size:15px; }
.profile-date { color:var(--muted); font-size:12px; }
.profile-columns { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:32px; padding:30px 0; }
.profile-step { color:var(--cyan); font-size:12px; letter-spacing:.05em; }
.profile-columns h4 { font-size:19px; line-height:1.4; margin:10px 0 14px; }
.profile-columns p { color:var(--soft); font-size:15px; line-height:1.8; }
.profile-columns a { color:var(--blue); font-size:13px; }
.watch-note { margin:0; padding:18px; background:#152739; border-radius:9px; font-size:14px; color:var(--soft); }
.watch-note strong { color:#fff; display:block; margin-bottom:5px; }
.research-directions { margin-top:34px; }
.research-directions>h3 { font-size:24px; margin-bottom:8px; }
.direction-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.direction-grid article { border-top:2px solid #887ec2; padding:20px 10px 10px; }
.direction-number { color:#baacff; font-size:13px; }
.direction-grid h4 { font-size:19px; line-height:1.4; margin:12px 0; }
.direction-grid p { font-size:14px; color:var(--soft); }
.direction-grid article>span:last-child { color:var(--muted); font-size:12px; }
.agent-process { list-style:none; padding:0; margin:25px 0; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:24px; }
.agent-process li { position:relative; background:#12293b; border:1px solid #365369; border-radius:12px; padding:22px; }
.agent-process li:not(:last-child)::after { content:'→'; position:absolute; right:-23px; top:50%; color:var(--cyan); font-size:23px; }
.agent-process li>span { width:33px; height:33px; display:grid; place-items:center; border-radius:50%; color:#082229; background:var(--cyan); font-weight:800; }
.agent-process h3 { font-size:19px; margin:15px 0 10px; }
.agent-process p { font-size:14px; color:var(--soft); margin:0; }
.agent-usecases { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; margin-top:20px; }
.agent-usecases article { padding:22px; border:1px solid var(--border); border-radius:12px; }
.agent-usecases h3 { margin:0; font-size:20px; }
.agent-usecases p { color:var(--soft); font-size:15px; }
.agent-usecases span { color:var(--muted); font-size:13px; }
.news-meta { font-size:13px; }
.news-card h3 { font-size:18px; line-height:1.6; }
.feed-details { font-size:14px; }
/* Each measure has its own visual language, with exact values and native controls. */
.pp-explainer { display:flex; gap:28px; align-items:baseline; margin-top:20px; padding:20px 24px; border:1px solid #3c586e; background:#122636; border-radius:12px; }
.pp-explainer>strong { flex:0 0 auto; font-size:16px; color:var(--cyan); }
.pp-explainer p { margin:0; font-size:14px; color:var(--soft); }
.chart-interaction { margin-top:25px; border-top:1px solid #355066; padding-top:22px; }
.interaction-label { display:block; font-size:11px; letter-spacing:.1em; color:var(--cyan); margin-bottom:14px; }
.interaction-result { font-size:15px; color:#e4f3ff; line-height:1.7; padding:15px 18px; background:#172f43; border-radius:8px; margin:18px 0 0; }
.compare-controls { display:grid; grid-template-columns:minmax(0,1fr) 24px minmax(0,1fr); align-items:end; gap:10px; }
.compare-controls label { font-size:13px; color:var(--soft); min-width:0; }
.compare-controls select { display:block; width:100%; margin-top:7px; border:1px solid #53728a; padding:10px 9px; border-radius:7px; background:#102738; color:var(--text); }
.compare-controls>span { padding-bottom:10px; color:var(--cyan); text-align:center; }
.lollipop-chart { list-style:none; padding:0; margin:26px 8px 0; display:grid; gap:24px; }
.lollipop-track { position:relative; height:16px; background:repeating-linear-gradient(to right,transparent 0,transparent calc(25% - 1px),#365066 calc(25% - 1px),#365066 25%); }
.lollipop-track::before { content:''; position:absolute; top:7px; left:0; width:100%; height:2px; background:#334e62; }
.lollipop-track>span { position:absolute; left:0; top:6px; height:4px; background:var(--series); }
.lollipop-track>i { position:absolute; top:1px; height:14px; width:14px; background:var(--series); border:2px solid #d7f3ff; border-radius:50%; transform:translateX(-50%); }
#consumerChart .chart-scale { margin-inline:8px; }
.waffle-comparison { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; margin-top:25px; }
.waffle-heading h4 { font-size:17px; margin:0 0 6px; }
.waffle-heading strong { display:block; font-size:32px; color:var(--series); line-height:1.2; margin-bottom:18px; }
.waffle-grid { display:grid; grid-template-columns:repeat(10,minmax(0,1fr)); gap:4px; max-width:265px; }
.waffle-grid>i { aspect-ratio:1; border-radius:2px; background:linear-gradient(to right,var(--series) var(--fill),#284155 var(--fill)); }
.waffle-card>p { font-size:12px; color:var(--soft); }
.spend-treemap { display:flex; flex-direction:column; height:280px; margin-top:25px; gap:5px; }
.treemap-row { display:grid; gap:5px; min-height:0; }
.treemap-row>button { display:flex; flex-direction:column; align-items:flex-start; justify-content:center; gap:4px; min-width:0; padding:14px; background:var(--series); color:#071824; border:2px solid transparent; border-radius:7px; cursor:pointer; text-align:left; overflow-wrap:anywhere; }
.treemap-row>button>span { font-weight:650; font-size:15px; }
.treemap-row>button>strong { font-size:26px; }
.treemap-row>button[aria-pressed=true] { box-shadow:inset 0 0 0 2px #071824; border-color:#fff; }
.budget-label { display:flex; justify-content:space-between; gap:15px; align-items:center; color:var(--soft); font-size:14px; }
.budget-label output { color:var(--cyan); font-size:23px; font-weight:700; font-variant-numeric:tabular-nums; }
#apiBudget { width:100%; margin:16px 0 2px; height:24px; accent-color:var(--cyan); cursor:pointer; }
.budget-breakdown { list-style:none; padding:0; margin:18px 0 0; display:grid; gap:6px; }
.budget-breakdown li { display:flex; justify-content:space-between; gap:10px; padding:8px 10px; border-radius:5px; font-size:14px; color:var(--soft); }
.budget-breakdown li.selected { background:#233b51; color:#fff; }
.budget-breakdown strong { font-variant-numeric:tabular-nums; white-space:nowrap; }
.cloud-explorer { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:26px; align-items:center; margin-top:30px; }
.cloud-dial { display:grid; place-items:center; width:100%; max-width:265px; aspect-ratio:1; margin:auto; border-radius:50%; background:conic-gradient(var(--cyan) 0 var(--share,63%),#2a4257 var(--share,63%) 100%); padding:23px; }
.cloud-dial>div { display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; gap:6px; border-radius:50%; background:#0d1d2b; width:100%; height:100%; padding:12px; }
.cloud-dial strong { font-size:clamp(29px,3vw,44px); line-height:1.2; color:var(--cyan); }
.cloud-dial span { font-size:13px; line-height:1.3; color:var(--soft); }
.cloud-options { display:grid; gap:8px; }
.cloud-options button { display:flex; align-items:center; justify-content:space-between; gap:10px; text-align:left; padding:11px 13px; border:1px solid #48677e; border-radius:8px; background:#142a3c; color:var(--soft); cursor:pointer; font-size:14px; }
.cloud-options button[aria-pressed=true] { border-color:var(--cyan); background:#214a50; color:#effffe; }
.cloud-options strong { white-space:nowrap; }
.capital-chart { display:flex; margin:38px 0 20px; gap:16px; }
.capital-axis { display:flex; flex-direction:column; justify-content:space-between; height:240px; font-size:12px; color:var(--muted); min-width:38px; }
.capital-columns { flex:1; min-width:0; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:24px; background:linear-gradient(#355066 1px,transparent 1px) 0 0 / 100% 120px; }
.capital-column { display:flex; flex-direction:column; align-items:center; border:0; padding:0; background:none; color:var(--text); cursor:pointer; min-width:0; }
.capital-plot { height:240px; flex-shrink:0; width:100%; display:flex; justify-content:center; align-items:end; border-bottom:1px solid #71879b; }
.capital-fill { position:relative; display:block; width:65%; max-width:130px; border-radius:6px 6px 0 0; background:#78b1d4; }
.capital-column:nth-child(2) .capital-fill { background:#7ecbbd; }
.capital-column:nth-child(3) .capital-fill { background:#a398d2; }
.capital-column:nth-child(4) .capital-fill { background:#ceba8f; }
.capital-fill strong { position:absolute; bottom:calc(100% + 8px); width:160%; left:-30%; text-align:center; white-space:nowrap; font-size:20px; font-variant-numeric:tabular-nums; }
.capital-name { display:block; padding-top:12px; font-size:15px; }
.capital-column.selected .capital-fill { outline:2px solid #fff; outline-offset:3px; }
.capital-column.selected .capital-name { color:var(--cyan); text-decoration:underline; text-underline-offset:5px; }
.capital-details { background:#142c3e; padding:21px 24px; border-radius:9px; border-left:3px solid var(--cyan); }
.capital-details h4 { margin:0; font-size:20px; }
button:focus-visible,select:focus-visible,input:focus-visible,a:focus-visible { outline:3px solid #ffe19b; outline-offset:4px; }
@media(max-width:1000px) and (min-width:761px) { .cloud-explorer { grid-template-columns:1fr; } .cloud-dial { max-width:230px; } }
@media(max-width:600px) {
  .pp-explainer { flex-direction:column; gap:10px; padding:20px; }
  .cloud-explorer { grid-template-columns:1fr; gap:24px; }
  .cloud-dial { width:235px; max-width:100%; }
  .capital-columns { gap:9px; }
  .capital-chart { gap:8px; }
  .capital-fill { width:72%; }
  .capital-fill strong { font-size:13px; }
  .capital-name { font-size:11px; }
  .capital-axis { font-size:10px; min-width:29px; }
  .capital-details { padding:18px; }
  .waffle-comparison { gap:16px; }
  .waffle-grid { gap:3px; }
  .treemap-row>button { padding:10px; }
  .treemap-row>button>span { font-size:13px; }
  .treemap-row>button>strong { font-size:23px; }
  .compare-controls { grid-template-columns:1fr; }
  .compare-controls>span { display:none; }
}
@media (forced-colors:active) { .waffle-grid>i,.capital-fill,.treemap-row>button,.cloud-dial { border:1px solid CanvasText; } button[aria-pressed=true] { outline:2px solid Highlight; } }
@media (max-width:1100px) {
  .hero { grid-template-columns:1fr; gap:25px; }
  .hero-guide { max-width:none; }
  .industry-flow { grid-template-columns:1fr; gap:22px; }
  .industry-stage { display:grid; grid-template-columns:40px 1fr 1.2fr; gap:0 20px; padding:24px; }
  .stage-number { grid-column:1; grid-row:1; }
  .stage-icon { grid-column:1; grid-row:2; }
  .industry-stage h3 { grid-column:2; grid-row:1; margin:0 0 8px; }
  .industry-stage>p { grid-column:2; grid-row:2; margin:0 0 10px; }
  .company-tags,.outcome-list { grid-column:3; grid-row:1 / span 2; margin:0; }
  .company-tags { display:flex; flex-wrap:wrap; align-content:start; }
  .stage-output { grid-column:2 / span 2; margin-top:16px; }
  .industry-stage:not(:last-child)::after { content:'↓'; top:auto; right:50%; bottom:-24px; }
  .stage-output>span { display:none; }
  .signal-grid,.profile-columns { grid-template-columns:1fr; }
  .signal-card .source-link { margin-top:8px; }
  .profile-columns { gap:24px; }
  .profile-columns>section+section { border-top:1px solid var(--border); padding-top:22px; }
  .direction-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:760px) {
  .hero h1 { font-size:42px; }
  .hero h1 br { display:none; }
  .hero-guide { padding:21px; }
  .two-col,.insight-grid,.agent-usecases { grid-template-columns:1fr; }
  .panel { padding:22px; }
  .section-block { margin-top:55px; }
  .summary-grid { grid-template-columns:1fr 1fr; }
  .metric-card { padding:17px; }
  .metric-value { font-size:23px; overflow-wrap:anywhere; }
  .industry-stage { grid-template-columns:28px 1fr; padding:22px; gap:0 14px; }
  .industry-stage h3 { grid-column:2; }
  .industry-stage>p { grid-column:2; }
  .company-tags,.outcome-list { grid-column:2; grid-row:3; margin-top:10px; }
  .stage-output { grid-column:2; }
  .profile-heading,.chart-heading { flex-direction:column; align-items:flex-start; gap:12px; }
  .bar-heading { font-size:15px; }
  .bar-heading strong { font-size:18px; }
  .chart-panel h3 { font-size:20px; }
  .value-bars { gap:24px; }
  .agent-process { grid-template-columns:1fr; gap:26px; }
  .agent-process li:not(:last-child)::after { content:'↓'; right:50%; top:auto; bottom:-29px; }
  .direction-grid { grid-template-columns:1fr; }
  .editorial-note { font-size:13px; }
  .map-controls>span { width:100%; }
  .map-filter,.leader-tab { padding:10px 12px; }
  .toast { right:12px; left:12px; max-width:none; }
}
