:root {
  --bg: #090908;
  --panel: rgba(22, 24, 20, 0.84);
  --text: #f4f2ea;
  --muted: #a8aa9d;
  --line: rgba(244, 242, 234, 0.14);
  --green: #8ee36f;
  --mint: #7bd5bd;
  --amber: #f4c45f;
  --red: #f07167;
  --ink: #050604;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(142, 227, 111, 0.06) 0%, transparent 18rem),
    linear-gradient(180deg, #090908 0%, #0d0f0a 45%, #090908 100%);
}

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

img,
svg,
canvas,
video {
  max-width: 100%;
}

.scene-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.scene-canvas.subpage {
  opacity: 0.42;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0 5vw;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  overflow: clip;
}

.site-header.is-elevated {
  border-bottom-color: var(--line);
  background: rgba(9, 9, 8, 0.78);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-left: auto;
  gap: clamp(0.7rem, 2vw, 1.6rem);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  padding: 0.35rem 0;
}

.site-nav a:hover,
.inline-link:hover {
  color: var(--green);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(244, 242, 234, 0.14);
  border-radius: 8px;
  background: rgba(244, 242, 234, 0.05);
  color: var(--text);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.nav-toggle span + span {
  margin-top: 0.28rem;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(0.3rem) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-0.3rem) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 34rem);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: calc(100svh - 72px);
  padding: clamp(4rem, 8vw, 7rem) 5vw clamp(3rem, 5vw, 5rem);
}

.hero::after {
  content: "";
  position: absolute;
  left: 5vw;
  right: 5vw;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 242, 234, 0.2), transparent);
}

.hero-inner {
  max-width: 54rem;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3.2rem, 11vw, 8.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 54rem;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 0.65rem;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: #dbddd1;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 720;
}

.button.primary {
  border-color: rgba(142, 227, 111, 0.74);
  background: var(--green);
  color: var(--ink);
}

.button.secondary {
  background: rgba(244, 242, 234, 0.06);
  color: var(--text);
}

.terminal-panel {
  width: min(100%, 34rem);
  min-width: 0;
  border: 1px solid rgba(244, 242, 234, 0.16);
  border-radius: 8px;
  background: rgba(10, 12, 8, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.6rem;
  padding: 0 0.9rem;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 242, 234, 0.04);
}

.terminal-top span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--red);
}

.terminal-top span:nth-child(2) {
  background: var(--amber);
}

.terminal-top span:nth-child(3) {
  background: var(--green);
}

.terminal-top strong {
  margin-left: 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
}

pre {
  margin: 0;
  padding: 1.3rem;
  overflow-x: auto;
  color: #dfe8d5;
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  line-height: 1.65;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.metric-strip,
.product-strip,
.provider-band,
.section,
.site-footer {
  width: min(1120px, calc(100% - 10vw));
  margin-inline: auto;
}

.metric-strip,
.product-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.metric-strip article,
.product-strip article {
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: rgba(18, 21, 15, 0.88);
}

.metric-strip span,
.product-strip span,
.comparison-top span {
  color: var(--muted);
  font-size: 0.83rem;
}

.metric-strip strong,
.product-strip strong {
  display: block;
  margin-top: 0.45rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.95;
}

.product-strip strong {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.provider-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 21, 15, 0.66);
  padding: clamp(1rem, 2.4vw, 1.25rem);
}

.hero + .provider-band {
  margin-top: 0;
}

.provider-copy {
  min-width: min(100%, 23rem);
}

.provider-copy span {
  color: var(--muted);
  font-size: 0.83rem;
}

.provider-copy p {
  max-width: 35rem;
  margin: 0.35rem 0 0;
  color: #dbddd1;
  line-height: 1.55;
}

.provider-copy a {
  color: var(--amber);
  font-weight: 760;
}

.provider-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.provider-list strong {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border: 1px solid rgba(244, 242, 234, 0.12);
  border-radius: 999px;
  background: rgba(244, 242, 234, 0.05);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 720;
  padding: 0 0.75rem;
}

.metric-strip p,
.product-strip p,
.workflow-grid p,
.feature-list p,
.usecase-grid p,
.comparison-card p,
.section-heading p,
.evidence-panel p,
.subhero p {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  max-width: 58rem;
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 44rem;
}

.section-heading.compact {
  margin-bottom: 0;
}

.workflow-grid,
.feature-list,
.usecase-grid,
.comparison-grid,
.benchmark-columns,
.language-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

.workflow-grid article,
.feature-list article,
.usecase-grid article,
.comparison-card,
.evidence-panel,
.language-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
  padding: clamp(1rem, 2.5vw, 1.4rem);
}

.step-number {
  display: block;
  margin-bottom: 2.4rem;
  color: var(--amber);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
}

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

.usecase-section {
  border-top: 1px solid rgba(244, 242, 234, 0.08);
}

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

.usecase-grid article {
  min-height: 13rem;
}

.proof-note {
  max-width: 46rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.proof-note .inline-link {
  display: inline;
  margin-top: 0;
}

.benchmark-showcase {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.benchmark-showcase.compact {
  padding-top: clamp(2rem, 4vw, 4rem);
}

.model-chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.model-chart-card {
  min-width: 0;
  border: 1px solid rgba(244, 242, 234, 0.12);
  border-radius: 8px;
  background: #020303;
  box-shadow: var(--shadow);
  padding: clamp(1.1rem, 2.8vw, 2rem);
}

.model-chart-card.small {
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.model-chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
}

.model-chart-header h2 {
  max-width: none;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
}

.model-chart-card.small .model-chart-header h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.model-chart-header span {
  max-width: 12rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: right;
}

.model-chart-body {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.85rem;
  min-width: 0;
}

.model-chart-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.1rem 0 3.75rem;
  color: #9ca8b4;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  text-align: right;
}

.model-chart-plot {
  min-height: clamp(18rem, 38vw, 28rem);
  border-left: 1px solid rgba(156, 168, 180, 0.62);
  border-bottom: 1px solid rgba(156, 168, 180, 0.62);
  background:
    linear-gradient(rgba(244, 242, 234, 0.075) 1px, transparent 1px) 0 2rem / 100% 25%,
    linear-gradient(180deg, rgba(244, 242, 234, 0.025), rgba(244, 242, 234, 0));
  overflow: hidden;
}

.model-chart-card.small .model-chart-plot {
  min-height: clamp(16rem, 30vw, 22rem);
}

.vertical-bars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(0.75rem, 2.4vw, 2rem);
  height: 100%;
  padding: 1.15rem clamp(0.8rem, 2.2vw, 1.4rem) 0;
}

.vertical-bar {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 0.35rem;
  min-width: 0;
  height: 100%;
  color: #d7dde4;
  text-align: center;
}

.bar-stack {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0.45rem;
  min-height: 0;
}

.bar-stack strong {
  align-self: end;
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.78rem, 1.3vw, 0.98rem);
  font-weight: 800;
  white-space: nowrap;
}

.bar-stack span {
  align-self: end;
  justify-self: center;
  display: block;
  width: min(4.3rem, 78%);
  height: var(--value);
  min-height: 0.15rem;
  border-radius: 5px 5px 0 0;
  background: #6f7f8f;
}

.vertical-bar[data-agent="klyrune"] .bar-stack span {
  background: linear-gradient(180deg, #39a8ff 0%, #0969da 100%);
}

.vertical-bar[data-agent="codex"] .bar-stack span {
  background: linear-gradient(180deg, #8d9baa 0%, #667483 100%);
}

.vertical-bar em,
.vertical-bar small {
  min-width: 0;
  overflow-wrap: anywhere;
  font-style: normal;
  line-height: 1.2;
}

.vertical-bar em {
  color: var(--text);
  font-weight: 760;
}

.vertical-bar small {
  color: var(--muted);
  font-size: 0.74rem;
  max-width: 8.8rem;
  justify-self: center;
}

.chart-section {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.chart-card {
  display: grid;
  gap: 1.2rem;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(22, 24, 20, 0.86);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
  padding: clamp(1rem, 2.5vw, 1.4rem);
}

.chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.chart-header h2 {
  max-width: none;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.chart-header span {
  max-width: 12rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: right;
}

.bar-list {
  display: grid;
  gap: 1.05rem;
}

.bar-row {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.bar-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.bar-label {
  min-width: 0;
  color: #dbddd1;
  overflow-wrap: anywhere;
}

.bar-meta strong {
  flex: 0 0 auto;
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.88rem;
  white-space: nowrap;
}

.bar-track {
  display: block;
  width: 100%;
  height: 0.85rem;
  border: 1px solid rgba(244, 242, 234, 0.08);
  border-radius: 999px;
  background: rgba(244, 242, 234, 0.08);
  overflow: hidden;
}

.bar-fill {
  display: block;
  width: var(--value);
  min-width: 0.45rem;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--green));
}

.bar-fill[style*="--value: 0%"] {
  min-width: 0;
}

.bar-row[data-agent="codex"] .bar-fill {
  background: linear-gradient(90deg, rgba(244, 196, 95, 0.78), rgba(240, 113, 103, 0.82));
}

.bar-row[data-agent="klyrune"] .bar-label {
  color: var(--text);
  font-weight: 720;
}

.comparison-card.muted {
  opacity: 0.85;
}

.comparison-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.comparison-top span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.comparison-top strong {
  font-size: 2rem;
}

.bars {
  height: 0.7rem;
  margin: 1.5rem 0 1rem;
  border-radius: 999px;
  background: rgba(244, 242, 234, 0.08);
  overflow: hidden;
}

.bars span {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--amber));
}

.inline-link {
  display: inline-flex;
  margin-top: 1.2rem;
  color: var(--amber);
  font-weight: 760;
}

.install-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 2rem;
}

.command-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #10130d;
  padding: 0.9rem;
}

.command-box code {
  min-width: 0;
  overflow-x: auto;
  white-space: nowrap;
  color: var(--green);
}

.command-box button {
  flex: 0 0 auto;
  min-height: 2.4rem;
  border: 1px solid rgba(142, 227, 111, 0.5);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 720;
  cursor: pointer;
  padding: 0 0.85rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.subhero {
  width: min(1120px, calc(100% - 10vw));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) 0 2rem;
}

.subhero h1 {
  max-width: 58rem;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}

.subhero p:not(.eyebrow) {
  max-width: 48rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.evidence-panel h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.large-number {
  margin: 1.3rem 0 0.7rem;
  color: var(--green);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 820;
  line-height: 0.95;
}

.rank-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.rank-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
}

.rank-list span {
  min-width: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.rank-list strong {
  white-space: nowrap;
}

.evidence-links {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
}

.evidence-links ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.evidence-links a {
  color: var(--amber);
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    min-height: auto;
    padding-top: clamp(3.5rem, 8vw, 5rem);
  }

  .terminal-panel {
    width: 100%;
    max-width: 44rem;
  }

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

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

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .site-nav {
    flex: 1 1 24rem;
    min-width: 0;
  }

  .hero,
  .split-section,
  .install-section,
  .evidence-links {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-list,
  .usecase-grid,
  .model-chart-grid,
  .chart-grid,
  .comparison-grid,
  .benchmark-columns,
  .language-grid,
  .metric-strip,
  .product-strip {
    grid-template-columns: 1fr;
  }

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

  .provider-list {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    flex: 1 0 100%;
    grid-template-columns: 1fr;
    justify-content: stretch;
    width: 100%;
    gap: 0.45rem;
    padding-top: 0.4rem;
  }

  .site-header.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 2.2rem;
    padding: 0.45rem 0.55rem;
    border: 1px solid rgba(244, 242, 234, 0.1);
    border-radius: 8px;
    background: rgba(244, 242, 234, 0.04);
    text-align: left;
  }

  .hero {
    padding-inline: 1rem;
  }

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

  h1 {
    font-size: clamp(2.8rem, 17vw, 5.4rem);
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
    line-height: 1;
  }

}

@media (max-width: 560px) {
  .hero-actions,
  .command-box,
  .site-footer,
  .rank-list li {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .command-box button {
    width: 100%;
  }

  .metric-strip,
  .product-strip,
  .provider-band,
  .section,
  .site-footer,
  .subhero {
    width: min(100% - 2rem, 1120px);
  }

  .hero-copy,
  .subhero p:not(.eyebrow) {
    font-size: 1rem;
  }

  pre {
    padding: 1rem;
    font-size: 0.78rem;
  }

  .comparison-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .chart-header,
  .model-chart-header,
  .bar-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .chart-header span,
  .model-chart-header span {
    max-width: none;
    text-align: left;
  }

  .model-chart-body {
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: 0.55rem;
  }

  .model-chart-axis {
    padding: 1.9rem 0 3.5rem;
    font-size: 0.7rem;
  }

  .model-chart-plot,
  .model-chart-card.small .model-chart-plot {
    min-height: 18rem;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .vertical-bars {
    min-width: 31rem;
    gap: 0.75rem;
    padding-inline: 0.65rem;
  }

  .bar-stack strong {
    font-size: 0.72rem;
  }

  .bar-stack span {
    width: min(3.1rem, 80%);
  }

  .vertical-bar em {
    font-size: 0.76rem;
  }

  .vertical-bar small {
    max-width: 7.2rem;
    font-size: 0.66rem;
  }

}

@media (max-width: 420px) {
  .site-header.nav-open .site-nav {
    grid-template-columns: 1fr;
  }

  .site-nav a {
    text-align: left;
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .metric-strip article,
  .product-strip article,
  .workflow-grid article,
  .feature-list article,
  .usecase-grid article,
  .model-chart-card,
  .chart-card,
  .comparison-card,
  .evidence-panel,
  .language-grid article {
    padding: 1rem;
  }
}
