:root {
  --ink: #101828;
  --muted: #5c6676;
  --paper: #f6f8fb;
  --white: #ffffff;
  --line: #d9e1ec;
  --navy: #071b33;
  --blue: #2f6fed;
  --sky: #8fd3ff;
  --green: #63d49b;
  --amber: #f5b84c;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.13);
  --strong-shadow: 0 34px 90px rgba(2, 8, 23, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 38%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

h1 {
  max-width: 880px;
  margin-bottom: 0;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0;
  font-size: 21px;
  line-height: 1.2;
}

button,
input {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 14px clamp(18px, 5vw, 60px);
  color: #fff;
  background: rgba(7, 27, 51, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 34px rgba(2, 8, 23, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 850;
}

.mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--navy);
  background:
    radial-gradient(circle at 70% 26%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 28%),
    var(--sky);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.graph-mark svg {
  width: 25px;
  height: 25px;
  overflow: visible;
}

.graph-mark path {
  fill: none;
  stroke: var(--navy);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.88;
}

.graph-mark circle {
  fill: var(--navy);
  stroke: var(--sky);
  stroke-width: 1.4;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 750;
}

.primary-nav a.active,
.primary-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.primary-nav a:last-child {
  color: var(--navy);
  background: var(--sky);
  border-color: rgba(143, 211, 255, 0.5);
}

.primary-nav a:last-child:hover {
  color: var(--navy);
  background: #b8e5ff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

.button.primary {
  color: var(--navy);
  background: var(--sky);
  box-shadow: 0 16px 34px rgba(143, 211, 255, 0.22);
}

.button.primary:hover {
  box-shadow: 0 20px 44px rgba(143, 211, 255, 0.3);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
}

.button.dark {
  color: #fff;
  background: var(--navy);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 82svh;
  padding: clamp(70px, 8vw, 108px) clamp(18px, 6vw, 72px) clamp(54px, 7vw, 82px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(246, 248, 251, 0), var(--paper));
  pointer-events: none;
}

.hero-inner {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.55fr);
  gap: clamp(34px, 4vw, 64px);
  align-items: center;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(18px, 1.65vw, 21px);
}

.audience {
  max-width: 620px;
  margin: 14px 0 0;
  font-size: 15px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-panel {
  border-radius: 8px;
  box-shadow: var(--strong-shadow);
}

.hero-panel {
  position: relative;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    rgba(7, 27, 51, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.panel-head span,
.metric span,
.panel-section span,
.report-label,
.node span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-head strong {
  display: block;
  margin-top: 6px;
  font-size: 21px;
  line-height: 1.18;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  color: #052e1a;
  background: var(--green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.metric {
  min-height: 86px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.metric strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1;
}

.panel-section {
  margin-top: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.clean-list,
.panel-section ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li,
.panel-section li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.42;
}

.hero-panel .panel-section li {
  --check-delay: 300ms;
  opacity: 0;
  transform: translateY(6px);
  animation: checklist-row-in 680ms ease forwards;
  animation-delay: var(--check-delay);
}

.hero-panel .panel-section li:nth-child(1) {
  --check-delay: 300ms;
}

.hero-panel .panel-section li:nth-child(2) {
  --check-delay: 560ms;
}

.hero-panel .panel-section li:nth-child(3) {
  --check-delay: 820ms;
}

.hero-panel .panel-section li:nth-child(4) {
  --check-delay: 1080ms;
}

.hero-panel .panel-section li:nth-child(5) {
  --check-delay: 1340ms;
}

.hero-panel .panel-section li:nth-child(6) {
  --check-delay: 1600ms;
}

.hero-panel .panel-section li:nth-child(7) {
  --check-delay: 1860ms;
}

.clean-list li::before,
.panel-section li::before {
  content: "";
  position: absolute;
  top: 0.34em;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: var(--green);
}

.hero-panel .panel-section li::before {
  transform: scale(0.55);
  opacity: 0;
  animation: checklist-check-in 460ms cubic-bezier(0.2, 1.6, 0.35, 1) forwards;
  animation-delay: var(--check-delay);
}

.clean-list li::after,
.panel-section li::after {
  content: "";
  position: absolute;
  top: 0.56em;
  left: 4px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid #06261f;
  border-left: 2px solid #06261f;
  transform: rotate(-45deg);
}

.hero-panel .panel-section li::after {
  opacity: 0;
  transform: rotate(-45deg) scale(0.6);
  animation: checklist-tick-in 340ms ease forwards;
  animation-delay: calc(var(--check-delay) + 130ms);
}

@keyframes checklist-row-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes checklist-check-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes checklist-tick-in {
  to {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-panel .panel-section li,
  .hero-panel .panel-section li::before,
  .hero-panel .panel-section li::after {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-panel .panel-section li::after {
    transform: rotate(-45deg);
  }
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 116px) clamp(18px, 6vw, 72px);
}

.section.alt {
  background:
    linear-gradient(180deg, #eaf0f7 0%, #f4f7fb 100%);
}

.section.dark {
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(47, 111, 237, 0.18), rgba(47, 111, 237, 0) 32%),
    linear-gradient(180deg, #07182d 0%, var(--navy) 100%);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p,
.section-copy,
.card p {
  color: var(--muted);
}

.section-heading p {
  max-width: 760px;
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.6;
}

.section.dark .section-heading p,
.section.dark .card p {
  color: rgba(255, 255, 255, 0.7);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: start;
}

.section-copy {
  margin: 0;
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.45;
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 14px;
}

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

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

.card {
  min-height: 205px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: #c8d3e2;
  box-shadow: 0 22px 54px rgba(16, 24, 40, 0.09);
}

.card.dark-card {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.card.dark-card:hover {
  border-color: rgba(143, 211, 255, 0.28);
  box-shadow: none;
}

.card.dark-card p {
  color: rgba(255, 255, 255, 0.7);
}

.number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

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

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  width: min(1180px, calc(100% - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stat-strip div {
  min-height: 112px;
  padding: 22px;
  background: #fff;
}

.stat-strip strong {
  display: block;
  font-size: 18px;
  color: var(--navy);
}

.stat-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.run-steps {
  display: grid;
  gap: 10px;
}

.run-step {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.045);
}

.run-step span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.run-step strong {
  display: block;
  font-size: 18px;
}

.run-step p {
  margin: 6px 0 0;
  color: var(--muted);
}

.join-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  background:
    radial-gradient(circle at 92% 8%, rgba(143, 211, 255, 0.22), rgba(143, 211, 255, 0) 32%),
    linear-gradient(135deg, #07182d 0%, var(--navy) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--strong-shadow);
}

.join-panel p {
  max-width: 690px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.waitlist-form {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.waitlist-form label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.waitlist-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.waitlist-form .button {
  width: 100%;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.logo-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
}

.section.intelligence {
  background:
    linear-gradient(180deg, #f6f8fb 0%, #ffffff 72%, #f6f8fb 100%);
}

.intelligence-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.diagnostic-panel {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.diagnostic-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(16, 24, 40, 0.14);
}

.diagnostic-header {
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(143, 211, 255, 0.22), rgba(143, 211, 255, 0) 34%),
    var(--navy);
}

.diagnostic-header span,
.diagnostic-row span {
  display: block;
  color: var(--sky);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.diagnostic-header strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.08;
}

.diagnostic-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
}

.diagnostic-row span {
  color: var(--blue);
}

.diagnostic-row p {
  margin: 0;
  color: var(--muted);
}

.use-case-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.use-case-list article {
  min-height: 180px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.use-case-list article:hover {
  transform: translateY(-2px);
  border-color: #c8d3e2;
  box-shadow: 0 22px 54px rgba(16, 24, 40, 0.09);
}

.use-case-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.blog-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.64fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.blog-preview p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.blog-card {
  display: block;
  min-height: 280px;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(143, 211, 255, 0.2), rgba(143, 211, 255, 0) 32%),
    var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--strong-shadow);
}

.blog-card span {
  color: var(--sky);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card strong {
  display: block;
  margin-top: 54px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.blog-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.blog-card em {
  display: inline-flex;
  margin-top: 24px;
  color: var(--sky);
  font-style: normal;
  font-weight: 850;
}

.article-page {
  background: #fff;
}

.article-shell {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 6vw, 72px);
}

.article-hero,
.article-body {
  width: min(820px, 100%);
  margin: 0 auto;
}

.article-hero {
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.article-hero h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(46px, 6vw, 76px);
}

.article-hero p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.35;
}

.article-body {
  padding-top: 36px;
}

.article-body h2 {
  margin: 54px 0 18px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.article-body p {
  margin: 0 0 18px;
  color: #2d3646;
  font-size: 20px;
  line-height: 1.65;
}

.article-body code {
  padding: 2px 6px;
  color: var(--navy);
  background: #eaf0f7;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.88em;
}

.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 60px;
  padding: 28px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.article-cta .eyebrow {
  color: var(--sky);
}

.site-footer {
  padding: 28px clamp(18px, 6vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #061529;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 750;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav a:hover {
  color: #fff;
}

.v1 .hero {
  color: #fff;
  background:
    radial-gradient(circle at 76% 22%, rgba(47, 111, 237, 0.28), rgba(47, 111, 237, 0) 32%),
    linear-gradient(90deg, rgba(7, 19, 36, 0.98), rgba(7, 19, 36, 0.88) 52%, rgba(7, 19, 36, 0.58)),
    url("./assets/hero-factory-command.png") center right / cover no-repeat;
}

.v1 .hero .lead,
.v1 .hero .audience {
  color: rgba(255, 255, 255, 0.76);
}

.v1 .hero .audience {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1100px) {
  .hero-inner,
  .split,
  .join-panel,
  .blog-preview,
  .intelligence-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

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

@media (max-width: 720px) {
  .primary-nav {
    display: none;
  }

  .topbar {
    position: static;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  h2 {
    font-size: clamp(31px, 10vw, 44px);
  }

  .actions,
  .button,
  .article-cta .button {
    width: 100%;
  }

  .article-shell {
    padding-top: 44px;
  }

  .article-cta {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .stat-strip,
  .metrics,
  .use-case-list {
    grid-template-columns: 1fr;
  }

  .run-step,
  .diagnostic-row {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }
}
