:root {
  --bg: #f3f7f1;
  --bg-wash: #eef5f0;
  --panel: rgba(255, 255, 250, 0.92);
  --panel-strong: #ffffff;
  --panel-2: #f7faf6;
  --ink: #152235;
  --muted: #5d6878;
  --line: rgba(21, 34, 53, 0.12);
  --line-strong: rgba(21, 34, 53, 0.2);
  --green: #28765d;
  --yellow: #ae681f;
  --red: #b34855;
  --blue: #286aa4;
  --shadow-soft: 0 18px 46px rgba(21, 34, 53, 0.08);
  --shadow-lift: 0 24px 64px rgba(21, 34, 53, 0.11);
  --chart-axis: rgba(21, 34, 53, 0.15);
  --chart-grid: rgba(21, 34, 53, 0.16);
  --chart-blue: #276aa8;
  --chart-red: #b34855;
  --chart-amber: #b8751d;
  --chart-green: #28765d;
  --chart-ink: #152235;
  --chart-muted: #687386;
  --chart-policy-fill: rgba(39, 106, 168, 0.16);
  --chart-pressure-fill: rgba(179, 72, 85, 0.16);
  --chart-point-stroke: #ffffff;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(21, 34, 53, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 34, 53, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, var(--bg-wash) 0%, #fafbf6 48%, var(--bg) 100%);
  background-size: 36px 36px, 36px 36px, auto;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(128deg, rgba(40, 118, 93, 0.08), transparent 32%),
    linear-gradient(210deg, rgba(40, 106, 164, 0.08), transparent 34%),
    linear-gradient(0deg, rgba(174, 104, 31, 0.05), transparent 58%);
}

a {
  color: var(--blue);
}

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

h1 {
  max-width: 980px;
  font-size: 38px;
  line-height: 1.05;
}

h2 {
  font-size: 20px;
  line-height: 1.18;
}

h3 {
  font-size: 16px;
  line-height: 1.3;
}

.wrap {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 22px 22px 64px;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.top-nav a,
.pill-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #235f91;
  background: rgba(255, 255, 250, 0.76);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(21, 34, 53, 0.04);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.top-nav a:hover,
.pill-link:hover {
  border-color: rgba(40, 106, 164, 0.26);
  background: #ffffff;
  transform: translateY(-1px);
}

.hero,
.panel,
.metric,
.framework-card,
.stock-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 250, 0.96), rgba(255, 255, 250, 0.82)),
    var(--panel);
  box-shadow: var(--shadow-soft);
}

.hero {
  padding: 24px;
  border-left: 4px solid rgba(40, 118, 93, 0.55);
}

.panel {
  padding: 18px;
}

.section.panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.section.panel > h2,
.section.panel > .panel-head {
  margin-bottom: 12px;
}

.hero-head,
.panel-head,
.metric-grid,
.framework-grid,
.external-grid,
.source-grid,
.stock-row {
  display: grid;
  gap: 14px;
}

.hero-head {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: stretch;
}

.hero-action-panel {
  display: grid;
  align-content: center;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(247, 250, 246, 0.96), rgba(255, 255, 250, 0.9)),
    var(--panel-2);
  box-shadow: none;
}

.panel-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.panel-head > .tag {
  justify-self: end;
}

.muted {
  color: var(--muted);
  line-height: 1.65;
}

.badge,
.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 250, 0.72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.tag.green {
  border-color: rgba(40, 118, 93, 0.24);
  background: rgba(40, 118, 93, 0.1);
  color: #1f6b53;
}

.tag.yellow {
  border-color: rgba(174, 104, 31, 0.24);
  background: rgba(174, 104, 31, 0.1);
  color: #8d5318;
}

.tag.red {
  border-color: rgba(179, 72, 85, 0.24);
  background: rgba(179, 72, 85, 0.1);
  color: #9d3542;
}

.tag.blue {
  border-color: rgba(40, 106, 164, 0.24);
  background: rgba(40, 106, 164, 0.1);
  color: #235f91;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.metric-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-top: 18px;
}

.metric {
  min-height: 92px;
  padding: 14px;
  box-shadow: none;
}

.metric .k,
.metric-k {
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.metric .v {
  margin-top: 8px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 820;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.section {
  margin-top: 24px;
}

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

.framework-card,
.external-card,
.source-card,
.chart-card,
.decision-brief article,
.trigger-grid article,
.check-card,
.role-card,
.layer-card,
.wave-card,
.nvidia-bucket-card,
.nvidia-signal-list article,
.cluster-index-box > div,
.finance-wrap,
.decision-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 250, 0.96), rgba(255, 255, 250, 0.84)),
    var(--panel);
  box-shadow: 0 12px 30px rgba(21, 34, 53, 0.05);
}

.framework-card,
.external-card,
.source-card,
.chart-card,
.decision-brief article,
.trigger-grid article,
.check-card,
.role-card,
.layer-card,
.wave-card,
.nvidia-bucket-card,
.nvidia-signal-list article {
  padding: 16px;
}

.framework-card .question {
  margin-top: 8px;
  color: #314154;
  line-height: 1.65;
}

.element-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.element {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 250, 246, 0.86);
}

.element-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.element-title {
  font-weight: 820;
}

.element p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.external-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.external-card p,
.source-card p {
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.62;
  font-size: 13px;
}

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

.source-card a {
  color: var(--blue);
  font-weight: 760;
  text-decoration: none;
}

.stock-list {
  display: grid;
  gap: 10px;
}

.stock-row {
  grid-template-columns: minmax(220px, 1fr) 120px 120px minmax(180px, 240px);
  align-items: center;
  padding: 12px;
  box-shadow: none;
}

.spark {
  display: block;
  width: 100%;
  height: 42px;
  border: 1px solid rgba(21, 34, 53, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
}

.finance-wrap {
  overflow: auto;
  padding: 10px;
}

.finance-table {
  width: 100%;
  min-width: 920px;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.finance-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.finance-table td {
  padding: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 250, 246, 0.9);
}

.finance-table td:first-child {
  border-left: 1px solid var(--line);
  border-radius: 8px 0 0 8px;
  font-weight: 760;
}

.finance-table td:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 8px 8px 0;
}

.decision-list {
  margin: 0;
  padding: 16px 16px 16px 34px;
  color: var(--muted);
  line-height: 1.8;
}

.investment-panel,
.nvidia-panel {
  background: transparent;
}

.decision-brief {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.brief-k {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 820;
}

.decision-brief p,
.investment-copy {
  margin-top: 8px;
  color: #314154;
  line-height: 1.65;
}

.investment-copy strong {
  color: var(--yellow);
}

.chart-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 14px;
  margin-top: 14px;
}

.chart-card.wide {
  grid-column: 1 / -1;
}

.chart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.price-gauge,
.score-chart,
.cluster-index-chart {
  display: block;
  width: 100%;
  border: 1px solid rgba(21, 34, 53, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.price-gauge {
  height: 150px;
}

.score-chart {
  height: 180px;
}

.bar-chart,
.score-bars,
.dividend-chart {
  display: grid;
  gap: 10px;
}

.bar-row {
  display: grid;
  grid-template-columns: 92px 1fr 62px;
  align-items: center;
  gap: 10px;
}

.bar-label,
.bar-value {
  color: var(--muted);
  font-size: 12px;
}

.bar-value {
  color: #314154;
  text-align: right;
}

.bar-track,
.dividend-track,
.score-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(21, 34, 53, 0.08);
}

.bar-fill,
.dividend-fill,
.score-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #67b58b, var(--green));
}

.bar-fill.supply {
  background: linear-gradient(90deg, #77aeda, var(--blue));
}

.bar-fill.risk,
.dividend-fill.risk,
.score-fill.weak {
  background: linear-gradient(90deg, #d59a58, var(--red));
}

.score-fill.watch {
  background: linear-gradient(90deg, #e1b667, var(--yellow));
}

.score-fill.good,
.dividend-fill.safe {
  background: linear-gradient(90deg, #73bd91, var(--green));
}

.score-row {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(120px, 1.1fr) 48px;
  align-items: center;
  gap: 10px;
}

.score-row strong {
  display: block;
  font-size: 13px;
}

.score-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.score-row b {
  text-align: right;
}

.dividend-row {
  display: grid;
  grid-template-columns: 86px 1fr 168px;
  align-items: center;
  gap: 10px;
}

.dividend-name {
  font-size: 13px;
  font-weight: 760;
}

.dividend-data {
  color: #314154;
  font-size: 12px;
  text-align: right;
}

.scatter-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(21, 34, 53, 0.16) 50%, transparent 50.3%),
    linear-gradient(180deg, transparent 49.7%, rgba(21, 34, 53, 0.16) 50%, transparent 50.3%),
    linear-gradient(rgba(21, 34, 53, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 34, 53, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.62);
  background-size: auto, auto, 32px 32px, 32px 32px, auto;
}

.scatter-zone {
  position: absolute;
  padding: 8px;
  color: rgba(21, 34, 53, 0.62);
  font-size: 11px;
}

.scatter-zone.top-right {
  top: 0;
  right: 0;
}

.scatter-zone.bottom-right {
  right: 0;
  bottom: 0;
}

.scatter-zone.top-left {
  top: 0;
  left: 0;
}

.scatter-zone.bottom-left {
  bottom: 0;
  left: 0;
}

.scatter-point {
  position: absolute;
  min-width: 8px;
  min-height: 8px;
  transform: translate(-50%, 50%);
}

.scatter-point::before {
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #8a96a8;
  box-shadow: 0 0 0 5px rgba(138, 150, 168, 0.16);
  content: "";
}

.scatter-point.strong::before {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(40, 118, 93, 0.18);
}

.scatter-point.cool::before {
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(174, 104, 31, 0.18);
}

.scatter-point.rebound::before {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(40, 106, 164, 0.18);
}

.scatter-point span {
  position: absolute;
  top: -8px;
  left: 14px;
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 250, 0.88);
  font-size: 11px;
  white-space: nowrap;
}

.trigger-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.trigger-grid h3 {
  color: var(--yellow);
}

.trigger-grid ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #314154;
  line-height: 1.75;
}

.check-grid,
.role-grid,
.layer-stack {
  display: grid;
  gap: 12px;
}

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

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

.check-card.pass {
  border-color: rgba(40, 118, 93, 0.22);
  background: rgba(240, 248, 242, 0.92);
}

.check-card.wait {
  border-color: rgba(174, 104, 31, 0.22);
  background: rgba(252, 248, 239, 0.92);
}

.check-card strong,
.role-card h3 {
  display: block;
}

.check-card span,
.role-metrics span {
  display: inline-flex;
  margin-top: 8px;
  margin-right: 8px;
  color: #314154;
  font-size: 12px;
}

.check-card p,
.role-card p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.role-names {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.role-names span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(40, 106, 164, 0.08);
  color: #314154;
  font-size: 12px;
}

.action-ladder {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.ladder-step {
  min-height: 84px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 250, 246, 0.86);
}

.ladder-step span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #314154;
  background: rgba(21, 34, 53, 0.08);
  font-size: 12px;
}

.ladder-step strong {
  display: block;
  margin-top: 10px;
}

.ladder-step.future {
  opacity: 0.54;
}

.ladder-step.active {
  border-color: rgba(174, 104, 31, 0.34);
  background: rgba(174, 104, 31, 0.11);
}

.layer-stack {
  margin-top: 14px;
}

.layer-card {
  display: grid;
  gap: 12px;
}

.layer-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
}

.layer-head span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 820;
}

.layer-head h3 {
  margin-top: 5px;
  color: #253447;
  font-size: 16px;
  font-weight: 680;
  line-height: 1.62;
}

.layer-score {
  min-width: 80px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(40, 118, 93, 0.08);
  text-align: center;
}

.layer-score b {
  display: block;
  font-size: 28px;
}

.layer-score small {
  color: var(--muted);
}

.layer-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.layer-metrics div {
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 250, 246, 0.8);
}

.layer-metrics span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.layer-metrics strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.layer-visual {
  min-width: 0;
}

.history-chart-wrap {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.history-chart {
  display: block;
  width: 100%;
  height: 190px;
}

.history-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.history-stat-row span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #314154;
  background: rgba(255, 255, 250, 0.76);
  font-size: 12px;
}

.data-table {
  display: grid;
  gap: 8px;
  overflow: auto;
}

.data-row {
  display: grid;
  grid-template-columns: minmax(120px, 1.2fr) repeat(4, minmax(90px, 1fr));
  align-items: center;
  gap: 8px;
  min-width: 680px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 250, 0.82);
}

.data-table.compact .data-row {
  grid-template-columns: minmax(110px, 1.1fr) repeat(4, minmax(82px, 1fr));
  min-width: 620px;
}

.data-row strong {
  color: var(--ink);
}

.data-row span {
  color: #314154;
  font-size: 12px;
  line-height: 1.45;
}

.gauge-wrap {
  display: grid;
  gap: 12px;
}

.gauge-track {
  position: relative;
  height: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(21, 34, 53, 0.08);
}

.gauge-zone {
  float: left;
  height: 100%;
}

.gauge-zone.low {
  width: 42%;
  background: rgba(40, 118, 93, 0.38);
}

.gauge-zone.mid {
  width: 25%;
  background: rgba(174, 104, 31, 0.35);
}

.gauge-zone.high {
  width: 33%;
  background: rgba(179, 72, 85, 0.35);
}

.gauge-marker {
  position: absolute;
  top: -5px;
  width: 3px;
  height: 30px;
  border-radius: 3px;
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(21, 34, 53, 0.1);
}

.gauge-labels {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.wave-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wave-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.wave-top strong {
  font-size: 17px;
}

.wave-top span {
  color: var(--muted);
  font-size: 12px;
}

.wave-track {
  height: 10px;
  margin: 12px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(21, 34, 53, 0.08);
}

.wave-track div {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--yellow));
}

.wave-card p {
  margin-bottom: 12px;
  color: #314154;
  line-height: 1.65;
}

.nvidia-bucket-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bucket-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-start;
  gap: 12px;
}

.bucket-head h3 {
  font-size: 16px;
}

.bucket-head p {
  margin-top: 8px;
  color: #314154;
  line-height: 1.65;
}

.bucket-score {
  min-width: 68px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(40, 106, 164, 0.08);
  text-align: center;
}

.bucket-score b {
  display: block;
  font-size: 24px;
}

.bucket-score small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.nvidia-signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.nvidia-signal-list h3 {
  margin-top: 6px;
}

.nvidia-signal-list p {
  margin-top: 8px;
  color: #314154;
  line-height: 1.65;
}

.nvidia-ladder .ladder-step.active {
  border-color: rgba(40, 106, 164, 0.32);
  background: linear-gradient(180deg, rgba(40, 106, 164, 0.12), rgba(40, 118, 93, 0.08));
}

.cluster-index-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
  gap: 14px;
  margin: 14px 0;
}

.cluster-index-box > div {
  padding: 14px;
}

.cluster-index-chart {
  height: 180px;
  padding: 8px;
}

@media (max-width: 1200px) {
  .hero-head,
  .panel-head,
  .framework-grid,
  .external-grid,
  .source-grid,
  .stock-row,
  .decision-brief,
  .chart-grid,
  .trigger-grid,
  .wave-map,
  .nvidia-bucket-grid,
  .nvidia-signal-list,
  .check-grid,
  .role-grid,
  .action-ladder,
  .layer-metrics,
  .score-row,
  .cluster-index-box {
    grid-template-columns: 1fr;
  }

  .chart-card.wide {
    grid-column: auto;
  }

  .metric .v {
    font-size: 20px;
  }

  .dividend-row,
  .bar-row {
    grid-template-columns: 1fr;
  }

  .dividend-data,
  .bar-value,
  .score-row b {
    text-align: left;
  }

  .scatter-wrap {
    height: 360px;
  }

  .scatter-point span {
    font-size: 10px;
  }

  .data-row,
  .data-table.compact .data-row {
    min-width: 0;
    grid-template-columns: 1fr;
  }

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

  .panel-head > .tag {
    justify-self: start;
  }

  .cluster-index-chart {
    height: 150px;
  }
}

@media (max-width: 720px) {
  .wrap {
    padding: 14px 14px 44px;
  }

  .hero,
  .panel,
  .framework-card,
  .external-card,
  .source-card,
  .chart-card,
  .decision-brief article,
  .trigger-grid article,
  .check-card,
  .role-card,
  .layer-card,
  .wave-card,
  .nvidia-bucket-card,
  .nvidia-signal-list article {
    padding: 14px;
  }

  h1 {
    font-size: 30px;
  }

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

  .top-nav a,
  .pill-link {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }
}
