:root {
  color-scheme: dark;
  --bg: #020c18;
  --bg-soft: #071728;
  --panel: #081827;
  --panel-2: #0b1d2e;
  --line: #21384b;
  --line-soft: #142b3d;
  --text: #f4f6f8;
  --muted: #9baabc;
  --orange: #ff5a00;
  --amber: #ff9d00;
  --red: #f33b3b;
  --header-bg: rgba(2, 12, 24, .96);
  --banner-bg: linear-gradient(180deg, rgba(8, 22, 36, .98), rgba(4, 14, 26, .98));
  --banner-border: rgba(40, 64, 82, .35);
  --nav: #f2f2f2;
  --surface: #061321;
  --hero-glow: rgba(18, 57, 84, .22);
  --proof-bg: linear-gradient(120deg, #06101d, #092035 50%, #06101d);
  --footer-bg: #010912;
  --footer-text: #9baabc;
  --footer-link: #c5d0da;
  --tick-idle: #3a4f61;
  --hero-points: #c5d2df;
  --button-secondary-bg: rgba(12, 27, 42, .55);
  --button-secondary-border: #84909c;
  --diff-band: #01070f;
  --page-max: 1200px;
  --page-gutter: clamp(16px, 3.2vw, 34px);
  --page-inline: max(var(--page-gutter), calc((100% - var(--page-max)) / 2));
}

html[data-theme="light"],
:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f6f8;
  --bg-soft: #e8eef4;
  --panel: #ffffff;
  --panel-2: #f0f4f8;
  --line: #c9d4de;
  --line-soft: #dde5ec;
  --text: #132332;
  --muted: #5b6b7a;
  --orange: #e24f00;
  --amber: #d97706;
  --red: #dc2626;
  --header-bg: rgba(255, 255, 255, .96);
  --banner-bg: linear-gradient(180deg, #ffffff, #f3f6f9);
  --banner-border: rgba(18, 35, 50, .12);
  --nav: #243746;
  --surface: #ffffff;
  --hero-glow: rgba(255, 106, 23, .08);
  --proof-bg: linear-gradient(120deg, #eef3f7, #f8fafc 50%, #eef3f7);
  --footer-bg: #e8eef4;
  --footer-text: #5b6b7a;
  --footer-link: #243746;
  --tick-idle: #b7c4d0;
  --hero-points: #334655;
  --button-secondary-bg: rgba(255, 255, 255, .8);
  --button-secondary-border: #8a9aab;
  --diff-band: #e2e8ef;
}

@media (prefers-color-scheme: light) {
  html:not([data-theme="dark"]) {
    color-scheme: light;
    --bg: #f4f6f8;
    --bg-soft: #e8eef4;
    --panel: #ffffff;
    --panel-2: #f0f4f8;
    --line: #c9d4de;
    --line-soft: #dde5ec;
    --text: #132332;
    --muted: #5b6b7a;
    --orange: #e24f00;
    --amber: #d97706;
    --red: #dc2626;
    --header-bg: rgba(255, 255, 255, .96);
    --banner-bg: linear-gradient(180deg, #ffffff, #f3f6f9);
    --banner-border: rgba(18, 35, 50, .12);
    --nav: #243746;
    --surface: #ffffff;
    --hero-glow: rgba(255, 106, 23, .08);
    --proof-bg: linear-gradient(120deg, #eef3f7, #f8fafc 50%, #eef3f7);
    --footer-bg: #e8eef4;
    --footer-text: #5b6b7a;
    --footer-link: #243746;
    --tick-idle: #b7c4d0;
    --hero-points: #334655;
    --button-secondary-bg: rgba(255, 255, 255, .8);
    --button-secondary-border: #8a9aab;
    --diff-band: #e2e8ef;
  }
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
html, body {
  max-width: 100%;
}
[id] {
  scroll-margin-top: 96px;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.roadmap-banner {
  position: relative;
  z-index: 11;
  border-bottom: 1px solid rgba(40, 64, 82, .35);
  background:
    linear-gradient(180deg, rgba(8, 22, 36, .98), rgba(4, 14, 26, .98));
}
.roadmap-banner-inner {
  width: 100%;
  margin: 0 auto;
  padding: 14px var(--page-inline);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}
.roadmap-label {
  color: #ff6b1a;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.roadmap-label-end {
  color: #ffffff;
  text-shadow: none;
}
.roadmap-track {
  position: relative;
  min-width: 0;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
}
.roadmap-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress, 0%);
  border-radius: 999px 0 0 999px;
  background: #ff6b1a;
}

.nav-links a[aria-current="page"] {
  color: #ff6b1a;
}

.page-hero {
  position: relative;
  padding: 64px var(--page-inline) 40px;
  overflow: hidden;
  border-bottom: 1px solid var(--banner-border);
  background:
    radial-gradient(circle at 78% 18%, var(--hero-glow), transparent 42%),
    var(--bg);
}
.page-hero .grid-field {
  width: min(560px, 55%);
  opacity: .22;
}
.page-hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  text-align: center;
}
.page-hero h1 {
  margin: 0;
  width: 100%;
  max-width: none;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -.04em;
  text-align: center;
}
.page-hero-problem {
  padding-bottom: 24px;
}
.page-content:has(.problem-cascade) {
  padding-top: 28px;
}
.page-hero-problem h1 {
  font-size: clamp(28px, 3vw, 34px);
  text-align: left;
}
.page-hero-problem .page-hero-copy {
  text-align: left;
}
.page-hero-problem .eyebrow {
  text-align: left;
}
.page-hero-titles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 36px;
  align-items: start;
}
.page-hero-title-col {
  min-width: 0;
  display: grid;
  gap: 14px;
  align-content: start;
}
.page-hero-title-col h1,
.page-hero-titles h2 {
  margin: 0;
}
.page-hero-titles h2 {
  color: #ff5a00;
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.03em;
  text-align: left;
}
.page-hero-sub {
  margin: 12px 0 0;
  max-width: 36em;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.45;
}
.page-hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.page-hero-points li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}
.page-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
@media (max-width: 900px) {
  .page-hero-titles {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.page-hero .lede {
  width: 100%;
  max-width: none;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  text-align: justify;
  text-wrap: pretty;
}
.page-hero .eyebrow {
  white-space: normal;
  text-align: center;
}
@media (min-width: 901px) {
  .page-hero .eyebrow { white-space: nowrap; }
}

.diff-headline {
  display: grid;
  gap: 12px;
  max-width: 18ch;
}
.diff-headline span { display: block; }
.diff-headline-muted {
  color: var(--muted);
  font-weight: 500;
}
.diff-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 36px;
  align-items: start;
}
.diff-column h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -.02em;
  font-weight: 600;
}
.diff-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.diff-column li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}
.diff-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.diff-column-focus {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.diff-column-focus h2 { color: var(--orange); }
.diff-column-focus li {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
.diff-column-focus li::before {
  width: 7px;
  height: 7px;
  background: #ff5a00;
}

.diff-evidence-section {
  margin-top: 0;
}
.diff-evidence-section + .diff-compare {
  margin-top: 28px;
}
.page-content:has(.diff-evidence-section) {
  padding-top: 18px;
}
.diff-measure {
  margin-top: 40px;
  width: 100%;
  max-width: none;
  text-align: center;
}
.page-content > .diff-measure {
  max-width: none;
}
.page-content > .diff-measure > h2 {
  margin: 0 auto 12px;
  max-width: none;
  width: 100%;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--muted);
  text-align: center;
}
.page-content > .diff-measure > p {
  margin: 0;
  max-width: none;
  width: 100%;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  text-align: justify;
  text-wrap: pretty;
}
.diff-evidence {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  margin-bottom: 0;
}
.diff-evidence > h3 {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: center;
}
.diff-evidence-chain {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 0;
}
.diff-evidence-chain li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.3;
  text-transform: uppercase;
}
.diff-evidence-chain li + li::before {
  content: "→";
  margin: 0 .55em;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0;
}
.diff-evidence-support {
  margin: 12px 0 0 !important;
  max-width: none !important;
  color: var(--muted) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  text-align: center;
}

.diff-band {
  width: 100%;
  margin: 0;
  padding: 28px var(--page-inline) 20px;
  background: var(--diff-band);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.diff-band .diff-tagline-not {
  margin: 0 auto;
  max-width: var(--page-max);
  color: #ff5a00;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.5;
}
.diff-band .diff-tagline-not span {
  margin: 0 .55em;
  opacity: .9;
  color: inherit;
}
.diff-claim {
  width: 100%;
  padding: 36px var(--page-inline) 56px;
  text-align: center;
}
.diff-claim .diff-tagline-claim {
  margin: 0 auto;
  max-width: var(--page-max);
  color: #ff5a00;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.page-content {
  padding: 56px var(--page-inline) 88px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}
.page-content-top {
  padding-top: 48px;
  padding-bottom: 40px;
}
.page-content:has(+ .diff-band) {
  padding-bottom: 28px;
}
.page-content > .page-block,
.page-content > section {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
}
.page-content h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -.03em;
  font-weight: 600;
}
.page-content > p,
.page-block > p {
  margin: 0 0 28px;
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.page-block + .page-block { margin-top: 56px; }

.legal-doc {
  max-width: 760px;
}
.legal-doc .page-block + .page-block {
  margin-top: 36px;
}
.legal-meta {
  margin: 0 0 12px !important;
  color: var(--muted);
  font-size: 13px !important;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.legal-doc h1 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.legal-doc h2 {
  margin: 0 0 12px;
  font-size: clamp(20px, 2.2vw, 24px);
}
.legal-doc h3 {
  margin: 18px 0 8px;
  font-size: 16px;
  font-weight: 650;
  color: var(--text);
}
.legal-doc ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.legal-doc li + li {
  margin-top: 8px;
}
.legal-doc a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}
.legal-doc a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.problem-cascade {
  margin-top: 0;
}
.problem-cascade-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}
.problem-cascade-stages {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 20px;
  width: 100%;
  counter-reset: problem-cascade;
}
.problem-cascade-stages li {
  position: relative;
  min-width: 0;
  padding: 0 18px 0 0;
  counter-increment: problem-cascade;
}
.problem-cascade-stages li::before {
  content: counter(problem-cascade);
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  position: relative;
  z-index: 1;
}
.problem-cascade-stages li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 1.55rem;
  width: calc(100% - 1.55rem);
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.problem-cascade-stages strong {
  display: block;
  margin: 0 0 6px;
  color: var(--text);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.problem-cascade-stages p {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.problem-cascade-compare {
  min-width: 0;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.problem-cascade-compare > h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -.02em;
  line-height: 1.3;
  text-align: center;
}
.problem-cascade-diff {
  gap: 18px 20px;
}
.problem-cascade-diff .diff-column h4 {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: -.01em;
  font-weight: 600;
}
.problem-cascade-diff .diff-column-focus h4 {
  color: var(--orange);
}
.problem-cascade-diff .diff-column li {
  font-size: 14px;
  line-height: 1.4;
  gap: 0;
}
.problem-cascade-diff .diff-column ul {
  gap: 8px;
}
.problem-cascade-diff .diff-column-focus {
  padding-left: 16px;
}
.problem-cascade-diff .diff-column-focus li {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.problem-cascade + .page-block {
  margin-top: 40px;
}
.page-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.page-split-accent {
  position: relative;
  padding: 0 0 0;
  border: 0;
  background: transparent;
  overflow: visible;
}
.page-split-copy {
  width: 100%;
  text-align: center;
}
.page-split-copy h2 {
  margin: 0 0 14px;
  text-align: center;
  color: #ff5a00;
}
.page-split-accent .page-split-copy p {
  margin: 0 auto;
  max-width: none;
  width: 100%;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}
.page-split-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.page-split-cards article {
  grid-column: span 2;
  padding: 18px 20px;
  border: 1px solid rgba(255, 90, 0, .35);
  background: var(--panel);
  box-shadow: none;
}
.page-split-cards article:nth-child(4) {
  grid-column: 2 / span 2;
}
.page-split-cards article:nth-child(5) {
  grid-column: 4 / span 2;
}
.page-split-cards article h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
}
.page-split-cards article p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.page-split-band {
  width: 100%;
  margin: 8px 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, .55), transparent);
}
.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 36px;
  margin-top: 8px;
}
.page-grid article h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
}
.page-grid article p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.page-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  max-width: none;
}
.page-list li {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 20px 28px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid rgba(40, 64, 82, .45);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.page-list li:last-child {
  border-bottom: 1px solid rgba(40, 64, 82, .45);
}
.page-list li strong {
  display: block;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.use-cases-when > h2 {
  margin: 0 0 18px;
  max-width: none;
  width: 100%;
  font-size: clamp(24px, 2.6vw, 30px);
}
.page-content > .page-block:first-child > h2 {
  font-size: clamp(28px, 3vw, 34px);
}
.use-cases-when-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 24px 32px;
  align-items: start;
}
.use-cases-moments {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  counter-reset: use-moment;
}
.use-cases-moments li {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  counter-increment: use-moment;
}
.use-cases-moments li:last-child {
  border-bottom: 1px solid var(--line-soft);
}
.use-cases-moments strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
}
.use-cases-moments strong::before {
  content: counter(use-moment) ". ";
  color: var(--orange);
  font-weight: 700;
}
.use-cases-moments p {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.use-cases-roles {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.use-cases-roles > h3 {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.3;
}
.use-cases-roles-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}
.use-cases-roles-list li {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) minmax(0, 1.2fr);
  gap: 8px 14px;
  align-items: baseline;
  padding: 8px 0;
  border-top: 1px solid var(--line-soft);
}
.use-cases-roles-list li:last-child {
  padding-bottom: 0;
}
.use-cases-roles-list strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}
.use-cases-roles-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.page-cta {
  margin-top: 48px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.platform-universe > h2,
.platform-universe > p {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.platform-universe > h2 {
  margin-bottom: 14px;
  text-align: center;
  font-size: clamp(28px, 3vw, 34px);
}
.platform-universe > p {
  margin-bottom: 0;
  text-align: justify;
  text-wrap: pretty;
}
.platform-universe-steps {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  counter-reset: universe-step;
}
.platform-universe-steps li {
  display: grid;
  grid-template-columns: 2.5rem minmax(200px, 280px) minmax(0, 1fr);
  gap: 12px 24px;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  counter-increment: universe-step;
}
.platform-universe-steps li:last-child {
  border-bottom: 1px solid var(--line);
}
.platform-universe-steps li::before {
  content: counter(universe-step);
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.35;
}
.platform-universe-steps strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}
.platform-universe-steps span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.platform-run {
  margin-top: 36px;
}
.platform-run > h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: -.02em;
  text-align: center;
  color: var(--muted);
}
.platform-run-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.platform-run-cards article {
  min-width: 0;
  padding: 14px 14px 16px;
  border: 1px solid var(--line-soft);
  background: var(--panel);
}
.platform-run-cards h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.platform-run-cards p {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.company-vision {
  margin-top: 0;
}
.company-vision-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 22px 32px;
  align-items: start;
}
.company-vision-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.6vw, 30px);
}
.company-vision-copy h2 + p + h2 {
  margin-top: 28px;
}
.company-vision-copy p {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.company-why-now {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  align-self: stretch;
}
.company-why-now > h3 {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.3;
}
.company-why-now-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}
.company-why-now-list li {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
}
.company-why-now-list li:last-child {
  padding-bottom: 0;
}
.company-why-now-list strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}
.company-why-now-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.company-vision + .company-founders {
  margin-top: 40px;
}

.company-founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 40px;
}
.company-founders-grid h3 {
  margin: 0 0 6px;
  font-size: clamp(18px, 1.8vw, 20px);
  font-weight: 600;
  letter-spacing: -.02em;
}
.company-founder-role {
  margin: 0 0 8px !important;
  max-width: none !important;
  color: var(--orange) !important;
  font-size: 14px !important;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.4 !important;
}
.company-founder-link {
  margin: 0 0 14px !important;
  max-width: none !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}
.company-founder-link a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 550;
}
.company-founder-link a:hover {
  color: var(--orange);
}
.company-founders-grid article > p:not(.company-founder-role):not(.company-founder-link) {
  margin: 0 0 14px;
  max-width: none;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.company-founders-grid article > p:not(.company-founder-role):not(.company-founder-link):last-child {
  margin-bottom: 0;
}

.company-contact {
  text-align: center;
}
.company-contact > h2,
.company-contact > p {
  margin-left: auto;
  margin-right: auto;
}
.company-contact-email {
  margin-top: 16px !important;
}
.company-contact-email a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}
.company-contact-email a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.products-foundation {
  margin: 48px 0 0;
  text-align: center;
  background: transparent;
  border: 0;
  padding: 0;
}
.products-foundation > h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--text);
  text-align: center;
}
.products-foundation > p {
  margin: 0 auto;
  max-width: 52rem;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.products-shared {
  margin: 0 0 28px;
}
.products-foundation-strip {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--panel-2);
  text-align: center;
}
.products-foundation-label {
  margin: 0 0 6px !important;
  max-width: none !important;
  color: var(--orange) !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.3 !important;
  text-align: center;
}
.products-foundation-strip > p:last-child {
  margin: 0 auto;
  max-width: none;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-wrap: pretty;
  text-align: center;
}
.products-foundation-strip span {
  margin: 0 .35em;
  color: var(--orange);
  opacity: .9;
}

.products-layout {
  display: grid;
  gap: 24px;
}
.products-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.products-panel {
  min-height: 220px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  background: var(--panel);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.products-panel .eyebrow {
  margin: 0 0 12px;
  text-align: center;
}
.products-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -.02em;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.products-panel-list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 28rem;
  text-align: left;
  width: 100%;
}
.products-panel-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}
.products-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.products-panel-details {
  margin-top: auto;
  padding-top: 16px;
  display: grid;
  gap: 8px;
  width: 100%;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.products-panel-wide .products-panel-details {
  max-width: 42rem;
}
.products-panel-details details {
  border: 1px solid var(--line-soft);
  background: var(--panel-2);
}
.products-panel-details summary {
  cursor: pointer;
  list-style: none;
  padding: 10px 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.3;
}
.products-panel-details summary::-webkit-details-marker {
  display: none;
}
.products-panel-details summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 600;
}
.products-panel-details details[open] summary::after {
  content: "–";
}
.products-panel-details summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.products-panel-details details p {
  margin: 0;
  padding: 0 12px 12px;
  max-width: none;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.products-panel-wide {
  min-height: 200px;
}
.products-panel-wide .products-panel-list {
  max-width: 42rem;
}

.site-header {
  height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: clamp(12px, 2vw, 28px);
  align-items: center;
  padding: 0 var(--page-inline);
  border-bottom: 1px solid var(--banner-border);
  background: var(--header-bg);
  position: relative;
  z-index: 10;
  width: 100%;
}
.wordmark, .console-brand {
  font-weight: 600;
  letter-spacing: .22em;
}
.wordmark { font-size: 24px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 0;
}
.brand-logo {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
}
.brand-name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1;
  color: var(--text);
}
.brand-logo-light { display: none; }
html[data-theme="light"] .brand-logo-dark { display: none; }
html[data-theme="light"] .brand-logo-light { display: block; }
@media (prefers-color-scheme: light) {
  html:not([data-theme="dark"]) .brand-logo-dark { display: none; }
  html:not([data-theme="dark"]) .brand-logo-light { display: block; }
}
.brand-footer .brand-logo {
  height: 64px;
}

.nav-links { display: flex; justify-content: center; gap: clamp(14px, 1.8vw, 32px); font-size: 15px; min-width: 0; }
.nav-links a { color: var(--nav); white-space: nowrap; }
.nav-links span { margin-left: 6px; color: #d6dce1; }
.menu-toggle { display: none; }
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  flex-shrink: 0;
}

.button {
  min-height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-radius: 4px;
  font-weight: 600;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: linear-gradient(135deg, #ff6b00, #e83e00); border-color: #ff6b00; color: #fff; }
.button-secondary { border-color: var(--button-secondary-border); background: var(--button-secondary-bg); color: var(--text); }
.button-outline { border-color: var(--orange); color: #ff6a17; background: transparent; }
.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
  white-space: nowrap;
}
.header-actions .button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
  letter-spacing: .02em;
  font-weight: 600;
}

.hero,
.platform-hero {
  min-height: 0;
  padding: 18px var(--page-inline) 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  grid-template-rows: auto 1fr;
  align-items: center;
  justify-items: stretch;
  column-gap: clamp(20px, 3vw, 40px);
  row-gap: 14px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.platform-hero {
  grid-template-rows: 1fr;
  padding-block: 28px 36px;
  border-bottom: 1px solid var(--line);
}
.hero::before,
.platform-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 36%, var(--hero-glow), transparent 37%);
  pointer-events: none;
}
.grid-field {
  position: absolute; left: 0; top: 0; width: 510px; height: 100%;
  opacity: .28;
  background-image: radial-gradient(#164162 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: linear-gradient(90deg, black, transparent 92%);
}
.hero-copy {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-bottom: 0;
  justify-self: stretch;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero-summary-eyebrow {
  margin: 0 0 16px;
  color: #ff5f12;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.3;
}
.hero-summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.hero-summary-item {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 450;
  line-height: 1.45;
  opacity: .72;
  transition: color .35s ease, opacity .35s ease, transform .45s ease;
}
.hero-summary-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
  transition: background .35s ease;
}
.hero-summary-item.is-active {
  color: var(--text);
  opacity: 1;
  font-weight: 550;
}
.hero-summary-item.is-active::before {
  background: #ff5f12;
}
.hero-summary-item.is-fresh {
  animation: hero-summary-in .45s ease both;
}
@keyframes hero-summary-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-intro {
  min-width: 0;
}
.hero-intro h1,
.hero-intro h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.hero-intro .hero-kicker {
  margin: 0 0 10px;
  color: #ff5f12;
  font-size: clamp(14px, 1.2vw, 15px);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: .01em;
  max-width: 36em;
}
.platform-hero .hero-copy {
  grid-column: 1;
  grid-row: 1;
  justify-content: center;
}
.platform-hero .report-preview {
  grid-column: 2;
  grid-row: 1;
}
.hero-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  max-width: 36em;
}
.eyebrow {
  margin: 0 0 24px;
  color: #ff5f12;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
  font-size: 12px;
}
h1 { margin: 0; font-size: clamp(28px, 3vw, 34px); line-height: 1.15; letter-spacing: -.04em; }
.hero-flowline {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: stretch;
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) auto
    minmax(0, 1fr) auto
    minmax(0, 1fr) auto
    minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(6px, 1.2vw, 14px);
  color: #ff5f12;
  font-size: clamp(11px, 1.15vw, 16px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-align: center;
}
.hero-flowline > span:not(.hero-flowline-arrow) {
  min-width: 0;
  max-width: 100%;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: manual;
  text-wrap: balance;
}
.hero-flowline-arrow {
  flex: 0 0 auto;
  position: relative;
  width: clamp(18px, 2.4vw, 34px);
  height: 2px;
  margin: 0;
  background: currentColor;
  opacity: .95;
  border-radius: 1px;
  justify-self: center;
}
.hero-flowline-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.hero-points {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: none;
  display: grid;
  gap: 10px;
}
.hero-points li {
  position: relative;
  padding-left: 18px;
  color: var(--hero-points);
  font-size: clamp(15px, 1.3vw, 16px);
  font-weight: 400;
  line-height: 1.45;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5f12;
}
.lede { max-width: 500px; margin: 24px 0 28px; color: var(--muted); font-size: 16px; line-height: 1.55; }
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.hero-carousel {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  min-height: 460px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 14px;
  justify-self: stretch;
  align-self: stretch;
}
.hero-carousel-viewport {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 95, 18, .14), transparent 38%),
    radial-gradient(circle at 88% 78%, rgba(18, 57, 84, .35), transparent 42%),
    linear-gradient(165deg, var(--panel) 0%, var(--panel-2) 100%);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
}
.hero-carousel-track {
  position: relative;
  height: 100%;
  min-height: 420px;
}
.hero-carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  padding: clamp(28px, 4vw, 48px) clamp(28px, 4.5vw, 56px);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .45s ease, visibility .45s ease;
  pointer-events: none;
}
.hero-carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-slide-label {
  margin: 0 0 16px;
  color: #ff5f12;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.3;
}
.hero-slide-title {
  margin: 0 0 16px;
  max-width: 18em;
  color: var(--text);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.03em;
}
.hero-slide-body {
  margin: 0 0 22px;
  max-width: 42em;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.55;
}
.hero-slide-micro {
  margin: 0;
  max-width: 36em;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  line-height: 1.45;
}
/* Slide 3: longest body — balanced spacing, still fits without clipping */
.hero-carousel-slide[data-slide="2"] {
  justify-content: center;
  padding: clamp(24px, 3.2vw, 40px) clamp(26px, 3.8vw, 48px);
}
.hero-carousel-slide[data-slide="2"] .hero-slide-label {
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: .16em;
}
.hero-carousel-slide[data-slide="2"] .hero-slide-title {
  margin-bottom: 14px;
  max-width: 20em;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.16;
  letter-spacing: -.03em;
}
.hero-carousel-slide[data-slide="2"] .hero-slide-body {
  margin-bottom: 18px;
  max-width: 40em;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.5;
}
.hero-carousel-slide[data-slide="2"] .hero-slide-micro {
  padding-top: 14px;
  font-size: clamp(14px, 1.15vw, 15px);
  line-height: 1.4;
}
.hero-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.hero-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-carousel-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.hero-carousel-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.hero-carousel-dots {
  display: flex;
  gap: 8px;
}
.hero-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: width .2s ease, background .2s ease, border-radius .2s ease;
}
.hero-carousel-dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--orange);
}
.hero-carousel-toggle {
  margin-left: 4px;
  font-size: 11px;
  letter-spacing: .04em;
}
.hero-carousel-toggle-play { display: none; }
.hero-carousel.is-paused .hero-carousel-toggle-pause { display: none; }
.hero-carousel.is-paused .hero-carousel-toggle-play { display: inline; }
.report-preview {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: stretch;
  justify-self: stretch;
  align-self: stretch;
  perspective: 1200px;
}
.report-sheet {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  max-height: none;
  padding: 16px 22px 12px;
  overflow: hidden;
  color: #132332;
  border-radius: 4px;
  background:
    linear-gradient(90deg, #f7f8f8 0, #fff 48%, #f5f7f7 100%);
  box-shadow: 0 24px 70px rgba(0,0,0,.48);
}
.report-sheet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(#ff5a00, #ff9d00);
}
.report-header,
.report-title-row,
.report-meta,
.report-summary,
.report-footer {
  display: flex;
  align-items: center;
}
.report-header {
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #d9dfe2;
}
.report-brand { display: flex; align-items: center; gap: 10px; }
.report-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 3px;
  background: #0b1b28;
  font-weight: 800;
}
.report-logo {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex: 0 0 auto;
}
.report-brand strong { display: block; font-size: 12px; letter-spacing: .18em; }
.report-brand small { display: block; margin-top: 2px; color: #657480; font-size: 8px; }
.report-classification {
  color: #6d7982;
  font: 600 8px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.report-title-row {
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 18px;
}
.report-kicker,
.report-section-label {
  margin: 0 0 8px;
  color: #dd4a00;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.report-title-row h2 {
  margin: 0;
  color: #0b1b28;
  font-size: clamp(23px, 2.1vw, 31px);
  line-height: 1.06;
  letter-spacing: -.035em;
}
.report-decision {
  flex: 0 0 104px;
  padding: 12px;
  border: 1px solid #f1b08c;
  border-radius: 4px;
  background: #fff5ef;
  text-align: center;
}
.report-decision small { display: block; color: #2a1a14; font-size: 10px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.report-decision strong { display: block; margin-top: 4px; color: #d64400; font-size: 18px; letter-spacing: .08em; }
.report-meta {
  display: grid;
  grid-template-columns: 1.2fr 1fr .8fr;
  border-block: 1px solid #d9dfe2;
}
.report-meta div { padding: 11px 14px 11px 0; }
.report-meta div + div { padding-left: 14px; border-left: 1px solid #d9dfe2; }
.report-meta small { display: block; color: #7b8790; font-size: 8px; text-transform: uppercase; }
.report-meta strong { display: block; margin-top: 4px; font-size: 10px; }
.report-summary {
  gap: 20px;
  padding: 20px 0 16px;
}
.report-severity { flex: 0 0 82px; }
.severity-ring {
  width: 76px;
  height: 76px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 7px solid #ef4d22;
  border-right-color: #ffb087;
  border-radius: 50%;
}
.severity-ring strong { color: #c93313; font-size: 13px; }
.severity-ring small { color: #7d8991; font-size: 8px; }
.report-summary h3 { margin: 0 0 7px; font-size: 14px; line-height: 1.3; }
.report-summary p:last-child { margin: 0; color: #5f6e78; font-size: 10px; line-height: 1.45; }
.report-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #dce2e5;
  border-radius: 4px;
  background: #f4f6f6;
}
.report-evidence-grid div { padding: 12px 14px; }
.report-evidence-grid div + div { border-left: 1px solid #dce2e5; }
.report-evidence-grid strong { display: block; color: #0d2435; font-size: 19px; }
.report-evidence-grid span { display: block; margin-top: 2px; color: #71808a; font-size: 8px; text-transform: uppercase; }
.report-footer {
  justify-content: space-between;
  margin-top: 15px;
  color: #87929a;
  font: 600 8px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: uppercase;
}

.workflow-section {
  padding: 72px var(--page-inline) 80px;
  border-top: 1px solid var(--banner-border);
  border-bottom: 1px solid var(--banner-border);
  background:
    radial-gradient(circle at 48% 45%, var(--hero-glow), transparent 34%),
    var(--bg);
  overflow: hidden;
}
.workflow-heading {
  max-width: var(--page-max);
  margin: 0 auto 54px;
  padding-inline: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  align-items: end;
  gap: 60px;
}
.workflow-heading .eyebrow { margin-bottom: 14px; }
.workflow-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.035em;
}
.workflow-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.workflow-visual {
  position: relative;
  max-width: var(--page-max);
  margin: 0 auto;
  width: 100%;
  padding: 30px clamp(16px, 2.5vw, 30px) 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 28px 80px rgba(0,0,0,.12);
}
.workflow-rail {
  position: absolute;
  top: 82px;
  left: calc(12.5% + 30px);
  right: calc(12.5% + 30px);
  height: 2px;
  background: var(--line);
}
.workflow-rail-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--workflow-progress, 0%);
  background: linear-gradient(90deg, #ff4d00, #ff9d00);
  box-shadow: 0 0 14px rgba(255, 90, 0, .55);
  transition: width .55s cubic-bezier(.4,0,.2,1);
}
.workflow-pulse {
  position: absolute;
  top: 50%;
  left: var(--workflow-progress, 0%);
  width: 12px;
  height: 12px;
  border: 2px solid #ffb36b;
  border-radius: 50%;
  background: #ff5a00;
  box-shadow: 0 0 0 6px rgba(255,90,0,.12), 0 0 22px rgba(255,90,0,.85);
  transform: translate(-50%, -50%);
  transition: left .55s cubic-bezier(.4,0,.2,1);
}
.workflow-pulse::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255,126,45,.5);
  border-radius: inherit;
  animation: workflowPing 1.5s ease-out infinite;
}
@keyframes workflowPing {
  0% { opacity: .9; transform: scale(.55); }
  100% { opacity: 0; transform: scale(1.55); }
}
.workflow-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.workflow-step {
  min-width: 0;
  padding: 0 10px 20px;
  text-align: center;
  opacity: .48;
  transition: opacity .4s ease, transform .4s ease;
}
.workflow-step.is-active {
  opacity: 1;
  transform: translateY(-4px);
}
.workflow-step.is-complete { opacity: .75; }
.step-number {
  display: block;
  margin-bottom: 11px;
  color: #71889a;
  font: 600 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .16em;
}
.step-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border: 1px solid #2b485c;
  border-radius: 50%;
  color: #8da3b4;
  background: #071929;
  font-size: 16px;
  box-shadow: 0 0 0 7px #061522;
  transition: color .4s ease, border-color .4s ease, background .4s ease, box-shadow .4s ease;
}
.workflow-step.is-active .step-icon {
  color: white;
  border-color: #ff7228;
  background: #d94700;
  box-shadow: 0 0 0 7px #061522, 0 0 28px rgba(255,90,0,.42);
}
.workflow-step.is-complete .step-icon {
  color: #ff9a62;
  border-color: #9b461e;
}
.workflow-step h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 650;
}
.workflow-step p {
  max-width: 150px;
  margin: auto;
  color: #8296a6;
  font-size: 12px;
  line-height: 1.45;
}
.workflow-status {
  min-height: 52px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid #1c3446;
  border-radius: 6px;
  background: var(--panel-2);
  color: #aebdca;
  font-size: 12px;
}
.status-signal {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6414;
  box-shadow: 0 0 12px #ff6414;
}
.status-label { transition: opacity .18s ease; }
.status-output {
  padding: 5px 9px;
  border: 1px solid #2b4659;
  border-radius: 3px;
  color: #d7e0e6;
  font: 600 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.screen-deck-stage {
  position: relative;
  height: 540px;
  overflow: hidden;
  border: 1px solid #20384b;
  border-radius: 11px;
  background: radial-gradient(circle at 50% 42%, rgba(26, 68, 96, .24), transparent 58%);
  box-shadow: 0 22px 70px rgba(0,0,0,.32), inset 0 0 0 1px rgba(55, 86, 108, .12);
}
.screen-fan {
  position: absolute;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
}
.screen-card {
  position: absolute;
  top: 38px;
  left: 50%;
  width: 70%;
  height: 468px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #31516a;
  border-radius: 10px;
  background: var(--panel-2);
  box-shadow: 0 28px 70px rgba(0,0,0,.62);
  transform-origin: 50% 94%;
}
.screen-card img {
  width: 138%;
  height: 114%;
  object-fit: cover;
  object-position: 50% 24%;
  display: block;
  user-select: none;
}
.screen-card-1 { z-index: 1; transform: translateX(-101%) translateY(83px) rotate(-17deg); }
.screen-card-2 { z-index: 2; transform: translateX(-85%) translateY(50px) rotate(-11deg); }
.screen-card-3 { z-index: 3; transform: translateX(-68%) translateY(25px) rotate(-5deg); }
.screen-card-4 { z-index: 4; transform: translateX(-32%) translateY(25px) rotate(5deg); }
.screen-card-5 { z-index: 5; transform: translateX(-15%) translateY(50px) rotate(11deg); }
.screen-card-6 { z-index: 6; transform: translateX(1%) translateY(83px) rotate(17deg); }
.screen-card::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(121,158,183,.08), inset 0 -120px 120px rgba(2,12,24,.18);
  pointer-events: none;
}
.product-shell {
  position: absolute;
  top: 26px;
  left: 11%;
  width: 82%;
  height: 540px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  overflow: hidden;
  background: linear-gradient(145deg, #071522, #0a1b2a);
  font-size: 11px;
  border: 1px solid #2c4a60;
  border-radius: 8px;
  box-shadow: 0 28px 68px rgba(0,0,0,.58);
}
.product-shell-current {
  z-index: 3;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
  transition: opacity .28s ease, translate .38s ease;
}
.product-shell-preview {
  top: 50px;
  width: 76%;
  height: 478px;
  opacity: .58;
  pointer-events: none;
  filter: saturate(.78) brightness(.8);
}
.product-shell-preview .console-main {
  padding: 16px;
}
.product-shell-preview .console-sidebar {
  background: rgba(2, 14, 25, .86);
}
.product-shell-previous {
  z-index: 1;
  left: -38%;
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}
.product-shell-next {
  z-index: 2;
  left: 69%;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}
.product-shell-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,12,24,.18), rgba(2,12,24,.48));
  pointer-events: none;
}
.product-shell-next::after {
  background: linear-gradient(90deg, rgba(2,12,24,.46), rgba(2,12,24,.12));
}
.console-sidebar { border-right: 1px solid var(--line); background: rgba(2, 14, 25, .65); }
.console-brand { padding: 21px 18px 18px; font-size: 13px; }
.console-sidebar nav { display: grid; }
.console-sidebar a {
  height: 35px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  color: #9eacb9;
  border-left: 2px solid transparent;
}
.console-sidebar a.active { color: white; background: #14283a; border-left-color: var(--orange); }
.console-sidebar a span { width: 13px; text-align: center; font-size: 13px; }
.console-main {
  min-width: 0;
  height: 100%;
  padding: 18px;
  overflow: hidden;
  container-type: inline-size;
}
.console-main > * { min-width: 0; }
.console-main.is-changing { animation: screenIn .34s ease both; }
@keyframes screenIn {
  from { opacity: .2; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}
.console-main > h2 { margin: 0 0 13px; font-size: 17px; font-weight: 500; }
.screen-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 13px; }
.screen-heading h2 { margin: 0; font-size: 17px; font-weight: 500; }
.screen-heading p { margin: 4px 0 0; color: #7f92a2; }
.screen-actions { display: flex; align-items: center; gap: 8px; }
.mini-button {
  min-height: 30px; padding: 0 11px; border: 1px solid #2a465a; border-radius: 4px;
  color: #bbc7d0; background: #0a1b2a; font: inherit; white-space: nowrap;
}
.mini-button.accent { border-color: var(--orange); color: #ff742a; }
.build-selectors { display: grid; grid-template-columns: 1fr 32px 1fr; align-items: end; gap: 12px; margin-bottom: 12px; }
.build-selectors label { color: #9cacba; }
.build-selectors select {
  width: 100%; height: 32px; margin-top: 5px; padding: 0 10px;
  color: #b9c5cf; background: #081727; border: 1px solid #244055; border-radius: 5px;
}
.swap { align-self: center; margin-top: 13px; text-align: center; color: #c2ccd4; font-size: 18px; }
.panel { border: 1px solid var(--line); border-radius: 6px; background: rgba(5, 19, 31, .52); }
.analysis-row { display: grid; grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr); gap: 12px; }
.analysis-row > * { min-width: 0; }
.matrix-panel { padding: 12px 7px 8px; }
.panel h3 { margin: 0 0 9px; font-size: 11px; font-weight: 500; }
.matrix-panel > h3 { padding: 0 6px; }
table { width: 100%; max-width: 100%; border-collapse: collapse; border: 1px solid var(--line-soft); table-layout: fixed; }
th, td { height: 32px; padding: 0 9px; border-bottom: 1px solid var(--line-soft); text-align: left; white-space: nowrap; }
th { color: #8ea0af; font-weight: 400; font-size: 9px; }
td { color: #b9c5cf; }
.matrix-panel small { display: block; padding: 8px 7px 0; color: #6f8292; }
.matrix-panel th,
.matrix-panel td { padding-inline: 6px; overflow: hidden; text-overflow: ellipsis; }
.matrix-panel th:first-child { width: 17%; }
.matrix-panel th:nth-child(2) { width: 23%; }
.matrix-panel th:nth-child(3) { width: 18%; }
.matrix-panel th:nth-child(4) { width: 18%; }
.matrix-panel th:nth-child(5) { width: 24%; }
.risk { display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; }
.risk.high { background: var(--red); }
.risk.medium { background: var(--amber); }
.risk.low { background: #ffc000; }
.risk.muted { background: #80909d; }
.finding-panel { min-width: 0; padding: 14px; overflow: hidden; }
.panel-kicker { display: flex; justify-content: space-between; margin-bottom: 11px; }
.panel-kicker span { color: var(--red); }
.finding-panel h3 { margin-bottom: 2px; font-size: 20px; }
.finding-panel > strong { display: block; color: #cad4dc; font-size: 13px; }
.finding-panel > p { color: #a9b6c1; line-height: 1.45; }
dl { margin: 10px 0; color: #8295a5; }
dl div { display: flex; justify-content: space-between; align-items: center; min-height: 28px; gap: 10px; }
dd { min-width: 0; margin: 0; color: #94a6b5; text-align: right; overflow-wrap: anywhere; }
.tag { padding: 3px 10px; border: 1px solid #344d60; border-radius: 4px; }
.finding-panel > a { display: flex; justify-content: space-between; color: #ff6818; font-weight: 600; }
.restricted-link { display: flex; justify-content: space-between; color: #ff8751; font-weight: 600; }
.preview-notice {
  margin: 9px 0 0;
  color: #64798a;
  font-size: 9px;
  letter-spacing: .04em;
  text-align: right;
}
.restricted-card {
  margin-top: 12px;
  padding: 10px;
  border: 1px dashed #3b4f60;
  border-radius: 5px;
  background: rgba(18, 39, 54, .48);
}
.restricted-card b,
.restricted-card span { display: block; }
.restricted-card b { color: #b9c5ce; font-size: 10px; }
.restricted-card span { margin-top: 4px; color: #778b9a; line-height: 1.4; }
.metrics-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 12px; }
.metrics-row > * { min-width: 0; overflow: hidden; }
.metric { min-height: 128px; padding: 12px; }
.metric-body { display: flex; align-items: center; gap: 14px; }
.donut {
  width: 73px; height: 73px; flex: 0 0 auto; border-radius: 50%;
  display: grid; place-content: center; text-align: center; position: relative;
}
.donut::after { content: ""; position: absolute; inset: 14px; border-radius: 50%; background: #071827; }
.donut.orange { background: conic-gradient(var(--red) 0 21%, var(--amber) 21% 71%, #8997a4 71%); }
.donut.red { background: conic-gradient(var(--red) 0 64%, var(--amber) 64% 85%, #8997a4 85%); }
.donut b, .donut small { position: relative; z-index: 1; }
.donut b { font-size: 15px; }
.donut small { font-size: 8px; color: #aeb9c2; }
.metric ul { flex: 1; margin: 0; padding: 0; list-style: none; color: #9aabb9; }
.metric li { display: flex; align-items: center; min-height: 24px; }
.metric li b { margin-left: auto; font-weight: 400; }
.domains p { display: flex; align-items: center; justify-content: space-between; margin: 10px 0; color: #98a9b7; }
.domains p span { width: 48%; display: flex; align-items: center; gap: 8px; }
.domains p i { display: block; width: var(--w); height: 4px; background: linear-gradient(90deg, var(--red), var(--orange)); }
.domains p b { margin-left: auto; }

.summary-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-bottom: 12px; }
.summary-card { min-height: 68px; padding: 11px; }
.summary-card small { display: block; color: #7e91a1; }
.summary-card b { display: block; margin-top: 7px; font-size: 19px; font-weight: 550; }
.summary-card b.danger { color: #ff5353; }
.data-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, .9fr); gap: 12px; }
.data-layout > * { min-width: 0; }
.data-panel { min-width: 0; padding: 12px; overflow: hidden; }
.data-panel table { margin-top: 8px; }
.data-panel tr.selected { background: #10283a; box-shadow: inset 2px 0 var(--orange); }
.findings-layout {
  grid-template-columns: minmax(0, 1.72fr) minmax(0, .78fr);
}
.findings-table {
  table-layout: fixed;
}
.findings-table .finding-col { width: 34%; }
.findings-table .protocol-col { width: 13%; }
.findings-table .domain-col { width: 19%; }
.findings-table .risk-col { width: 14%; }
.findings-table .status-col { width: 20%; }
.findings-table th,
.findings-table td {
  padding-inline: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.findings-table th:first-child,
.findings-table td:first-child {
  padding-left: 8px;
  white-space: normal;
  line-height: 1.25;
}
.findings-table td {
  height: 38px;
}
.findings-table .status {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.status, .protocol-chip {
  display: inline-flex; align-items: center; min-height: 20px; padding: 0 7px;
  border: 1px solid #2c4659; border-radius: 3px; color: #aebbc5; font-size: 9px;
}
.status.open { color: #ff7777; border-color: #69363c; background: rgba(243,59,59,.08); }
.status.ready, .status.passed { color: #ffc16a; border-color: #68502c; background: rgba(255,157,0,.07); }
.detail-panel { min-width: 0; padding: 14px; overflow: hidden; }
.detail-panel h3 { margin: 4px 0 8px; font-size: 18px; }
.detail-panel > p { color: #9dadb9; line-height: 1.5; overflow-wrap: anywhere; }
.detail-list { display: grid; gap: 0; margin-top: 12px; }
.detail-list div { min-height: 33px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid #142c3e; color: #8194a4; }
.detail-list b { min-width: 0; color: #b7c3cc; font-weight: 500; text-align: right; overflow-wrap: anywhere; }
.code-panel { min-height: 246px; padding: 12px; background: #04111d; }
.code-panel pre { margin: 10px 0 0; color: #9fb3c2; line-height: 1.55; white-space: pre-wrap; font: 9px/1.55 ui-monospace, SFMono-Regular, Menlo, monospace; }
.code-panel .changed { color: #ff8a52; }
.evidence-public {
  min-height: 350px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #04111d;
}
.evidence-symbol {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border: 1px solid #385166;
  border-radius: 7px;
  color: #d8e1e7;
  font-size: 24px;
}
.evidence-public h3 { font-size: 15px; }
.evidence-public > p { max-width: 520px; color: #8fa2b1; line-height: 1.55; }
.evidence-delta {
  margin: 13px 0 2px;
  padding: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto auto 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid #20384b;
  border-radius: 5px;
}
.evidence-delta span { color: #6f8393; font-size: 8px; letter-spacing: .09em; }
.evidence-delta b { color: #b8c5ce; font-weight: 500; }
.evidence-delta b.changed { color: #ff7c45; }
.timeline { display: grid; gap: 10px; padding: 5px 0; }
.timeline-item { display: grid; grid-template-columns: 62px 12px 1fr; gap: 8px; align-items: start; color: #879aa9; }
.timeline-item i { width: 8px; height: 8px; margin-top: 3px; border-radius: 50%; background: #52687a; box-shadow: 0 0 0 4px #0c2232; }
.timeline-item.alert i { background: var(--red); }
.timeline-item b { display: block; color: #bac6cf; font-weight: 500; }
.scenario-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.scenario-card { min-width: 0; height: 168px; padding: 12px; overflow: hidden; display: flex; flex-direction: column; }
.scenario-card header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.scenario-card h3 { min-height: 32px; margin-bottom: 6px; font-size: 12px; line-height: 1.35; overflow-wrap: anywhere; }
.scenario-card p { margin: 0; color: #8396a6; line-height: 1.4; overflow-wrap: anywhere; }
.scenario-card footer { display: flex; justify-content: space-between; gap: 8px; margin-top: auto; color: #6f8291; }
.scenario-card footer span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.execution-flow { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 7px; margin: 11px 0 12px; }
.execution-flow.public-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.execution-step { min-height: 58px; padding: 9px; position: relative; }
.execution-step::after { content: "→"; position: absolute; right: -7px; top: 19px; z-index: 2; color: #708493; }
.execution-step:last-child::after { display: none; }
.execution-step small { display: block; color: #718595; }
.execution-step b { display: block; margin-top: 6px; color: #c0cad2; font-weight: 500; }
.report-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.report-card { min-height: 95px; padding: 13px; display: grid; grid-template-columns: 34px 1fr auto; gap: 10px; align-items: start; }
.report-card > * { min-width: 0; }
.report-icon { width: 30px; height: 36px; display: grid; place-items: center; border: 1px solid #3b5264; color: #b7c4ce; }
.report-card h3 { margin: 0 0 5px; font-size: 12px; }
.report-card p { margin: 0; color: #8396a5; line-height: 1.4; }
.report-card time { color: #6e8190; font-size: 9px; }
.restricted-report { border-style: dashed; background: rgba(8, 24, 39, .32); }

.screen-findings .data-layout,
.screen-evidence .data-layout { height: 350px; }
.screen-findings .data-panel,
.screen-findings .detail-panel,
.screen-evidence .code-panel,
.screen-evidence .detail-panel { height: 100%; }
.screen-executions .data-panel { max-height: 292px; }
.screen-reports .report-list { max-height: 389px; }

@container (max-width: 700px) {
  .console-main { padding: 14px; }
  .analysis-row { grid-template-columns: minmax(0, 1.45fr) minmax(0, .9fr); gap: 8px; }
  .metrics-row { gap: 8px; }
  .finding-panel { padding: 11px; }
  .finding-panel h3 { font-size: 17px; }
  .matrix-panel th,
  .matrix-panel td { padding-inline: 4px; }
  .summary-cards { gap: 7px; }
  .summary-card { padding: 9px; }
  .summary-card b { font-size: 17px; }
  .data-layout,
  .findings-layout { grid-template-columns: minmax(0, 1.65fr) minmax(0, .82fr); gap: 8px; }
  .detail-panel { padding: 11px; }
  .detail-panel h3 { font-size: 16px; }
  .scenario-grid { gap: 7px; }
  .scenario-card { height: 169px; padding: 10px; }
  .scenario-card header { margin-bottom: 8px; }
  .report-list { gap: 7px; }
  .report-card { min-height: 94px; padding: 10px; grid-template-columns: 30px minmax(0, 1fr); }
  .report-card time { display: none; }
}

.proof-strip {
  min-height: 0;
  padding: 36px var(--page-inline) 48px;
  border-top: 1px solid var(--line);
  background: var(--proof-bg);
}
.proof-strip-heading {
  max-width: var(--page-max);
  margin: 0 auto 12px;
  text-align: center;
  color: var(--text);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.03em;
}
.proof-strip-lede {
  max-width: 42rem;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 450;
  line-height: 1.5;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 18px;
  max-width: var(--page-max);
  margin-inline: auto;
  width: 100%;
}
.proof-grid article,
.proof-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  align-content: start;
  color: inherit;
  text-decoration: none;
  background: var(--panel);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
  transition:
    background .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}
.proof-card:hover,
.proof-card:focus-visible {
  outline: none;
  border-color: rgba(255, 107, 26, .45);
  background: var(--panel-2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
  transform: translateY(-3px);
}
.proof-card:hover h2,
.proof-card:focus-visible h2 {
  color: #ff6b1a;
}
.proof-card:focus-visible {
  box-shadow:
    0 12px 28px rgba(0, 0, 0, .28),
    0 0 0 1px rgba(255, 107, 26, .55);
}
.proof-grid h2,
.proof-card h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(17px, 1.55vw, 20px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.03em;
}
html[data-theme="light"] .proof-card,
:root[data-theme="light"] .proof-card {
  box-shadow: 0 4px 14px rgba(19, 35, 50, .08);
}
html[data-theme="light"] .proof-card:hover,
html[data-theme="light"] .proof-card:focus-visible,
:root[data-theme="light"] .proof-card:hover,
:root[data-theme="light"] .proof-card:focus-visible {
  box-shadow: 0 10px 24px rgba(19, 35, 50, .12);
}
@media (prefers-color-scheme: light) {
  html:not([data-theme="dark"]) .proof-card {
    box-shadow: 0 4px 14px rgba(19, 35, 50, .08);
  }
  html:not([data-theme="dark"]) .proof-card:hover,
  html:not([data-theme="dark"]) .proof-card:focus-visible {
    box-shadow: 0 10px 24px rgba(19, 35, 50, .12);
  }
}

@media (max-width: 1180px) {
  .site-header {
    height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .menu-toggle {
    display: block;
    color: white;
    background: transparent;
    border: 1px solid #43576a;
    border-radius: 4px;
    padding: 8px 12px;
    order: 3;
  }
  .brand { order: 1; }
  .header-actions { order: 2; margin-left: auto; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 18px var(--page-gutter);
    flex-direction: column;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    z-index: 20;
    order: 4;
  }
  .nav-links.open { display: flex; }
  .header-actions { display: flex; gap: 8px; }
  /* Keep primary Demo CTA; hide longer Design Partner label on compact headers */
  .header-actions .button-outline.header-demo { display: none; }
}

@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  .hero,
  .platform-hero { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); column-gap: 20px; }
  .hero-flowline { font-size: 12px; letter-spacing: .04em; }
  .page-grid { gap: 22px; }
  .problem-cascade-stages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
  }
  .problem-cascade-stages li {
    padding-right: 0;
  }
  .problem-cascade-stages li:not(:last-child)::after {
    display: none;
  }
  .platform-run-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .page-split-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-split-cards article,
  .page-split-cards article:nth-child(4),
  .page-split-cards article:nth-child(5) {
    grid-column: auto;
  }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .hero-carousel { min-height: 0; }
  .hero-carousel-viewport,
  .hero-carousel-track { min-height: 360px; }
}
@media (max-width: 900px) {
  .roadmap-banner-inner { gap: 12px; }
  .roadmap-label { font-size: 13px; letter-spacing: .14em; }
  .page-hero { padding-block: 48px 32px; }
  .page-content { padding-block: 40px 72px; }
  .problem-cascade-stages {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .problem-cascade-diff {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .problem-cascade-diff .diff-column-focus {
    padding-left: 0;
    border-left: 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }
  .page-split { gap: 28px; }
  .page-split-cards {
    grid-template-columns: 1fr;
  }
  .page-split-cards article,
  .page-split-cards article:nth-child(4),
  .page-split-cards article:nth-child(5) {
    grid-column: 1;
  }
  .page-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .use-cases-when-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .use-cases-roles-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .platform-universe-steps li {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 6px 14px;
  }
  .platform-universe-steps strong {
    grid-column: 2;
  }
  .platform-universe-steps span {
    grid-column: 2;
  }
  .platform-run-cards {
    grid-template-columns: 1fr;
  }
  .company-vision-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .company-founders-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .products-top {
    grid-template-columns: 1fr;
  }
  .diff-compare { grid-template-columns: 1fr; gap: 36px; }
  .diff-column-focus {
    padding-left: 0;
    border-left: 0;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }
  .diff-evidence-chain {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    justify-items: start;
  }
  .diff-evidence-chain li {
    display: flex;
  }
  .diff-evidence-chain li + li::before {
    content: none;
    margin: 0;
  }
  .diff-evidence-chain li::before {
    content: "→";
    margin-right: .45em;
    color: var(--orange);
    font-weight: 700;
  }
  .diff-evidence-chain li:first-child::before {
    content: none;
    margin: 0;
  }
  .diff-headline { max-width: none; }
  .page-grid { grid-template-columns: 1fr; gap: 22px; }
  .hero,
  .platform-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-block: 24px 28px;
    row-gap: 20px;
  }
  .platform-hero {
    grid-template-rows: auto auto;
  }
  .hero-flowline { grid-column: 1; grid-row: 1; }
  .hero-copy,
  .platform-hero .hero-copy {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 680px;
    justify-self: center;
  }
  .platform-hero .hero-copy { grid-row: 1; }
  .hero-carousel,
  .report-preview,
  .platform-hero .report-preview {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    max-width: 680px;
    justify-self: center;
    margin-top: 0;
    perspective: none;
  }
  .platform-hero .report-preview { grid-row: 2; }
  .hero-flowline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 10px;
    font-size: 11px;
    letter-spacing: .04em;
  }
  .hero-flowline > span:not(.hero-flowline-arrow) {
    flex: 1 1 calc(50% - 28px);
    max-width: calc(50% - 14px);
  }
  .hero-flowline-arrow {
    flex: 0 0 auto;
  }
  .hero-carousel {
    min-height: 0;
  }
  .hero-carousel-viewport,
  .hero-carousel-track {
    min-height: 340px;
  }
  .hero-carousel-slide {
    padding: clamp(22px, 4vw, 32px) clamp(20px, 4vw, 28px);
  }
  .report-title-row {
    flex-wrap: wrap;
    gap: 14px;
  }
  .report-decision {
    flex: 0 0 auto;
  }
  .report-meta {
    grid-template-columns: 1fr 1fr;
  }
  .report-meta div:last-child {
    grid-column: 1 / -1;
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid #d9dfe2;
  }
  .report-evidence-grid {
    grid-template-columns: 1fr;
  }
  .report-evidence-grid div + div {
    border-left: 0;
    border-top: 1px solid #dce2e5;
  }
  .products-panel {
    padding: 22px 18px;
  }
  .proof-grid { grid-template-columns: 1fr; gap: 12px; }
  .proof-grid article,
  .proof-card { padding: 16px; }
  .workflow-section { padding-block: 56px 64px; }
  .workflow-heading { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .workflow-heading > p { max-width: none; }
  .workflow-visual { padding: 24px 18px 18px; }
  .workflow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 8px;
  }
  .workflow-rail { display: none; }
  .workflow-step { padding-bottom: 10px; opacity: .55; }
  .workflow-step.is-active { transform: translateY(-2px); }
  .site-footer-inner {
    grid-template-columns: 1fr;
    padding-block: 36px 22px;
    gap: 28px;
  }
  .site-footer-bottom { padding-block: 16px 24px; }
}
@media (max-width: 560px) {
  .roadmap-label { font-size: 12px; letter-spacing: .12em; }
  .hero-flowline {
    font-size: 10px;
    letter-spacing: .03em;
    gap: 6px 8px;
  }
  .hero-flowline > span:not(.hero-flowline-arrow) {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .hero-flowline-arrow {
    display: none;
  }
  .diff-evidence-chain {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-slide-actions { flex-direction: column; align-items: stretch; }
  .hero-carousel { min-height: 0; }
  .hero-carousel-viewport,
  .hero-carousel-track { min-height: 320px; }
  .header-actions .button-primary.header-demo {
    padding: 0 12px;
    font-size: 12px;
  }
  .hero-points li { font-size: 15px; }
  .report-sheet { padding: 14px; }
  .report-classification { display: none; }
  .report-title-row { padding: 16px 0 13px; }
  .report-title-row h2 { font-size: 21px; }
  .report-decision { flex-basis: auto; padding: 9px; }
  .report-meta { grid-template-columns: 1fr; }
  .report-meta div + div {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid #d9dfe2;
  }
  .report-meta div:last-child { display: block; }
  .report-summary {
    flex-wrap: wrap;
    gap: 12px;
    padding: 15px 0 12px;
  }
  .report-severity { flex-basis: 62px; }
  .severity-ring { width: 58px; height: 58px; border-width: 5px; }
  .report-summary h3 { font-size: 12px; }
  .report-summary p:last-child { display: none; }
  .report-evidence-grid div { padding: 10px 8px; }
  .report-evidence-grid strong { font-size: 16px; }
  .report-evidence-grid span { font-size: 9px; }
  .products-panel { padding: 18px 14px; }
  .workflow-heading h2 { font-size: clamp(28px, 8vw, 40px); }
  .workflow-visual { padding: 20px 14px 14px; }
  .workflow-steps { row-gap: 22px; }
  .workflow-status {
    grid-template-columns: auto 1fr;
    padding-block: 10px;
  }
  .status-output { grid-column: 2; justify-self: start; }
  .page-hero h1 { font-size: clamp(26px, 7vw, 32px); }
  .page-hero .lede { font-size: 16px; }
}


.site-footer {
  border-top: 1px solid var(--line);
  background: var(--footer-bg);
  color: var(--footer-text);
}
.site-footer-inner {
  max-width: none;
  margin: 0 auto;
  padding: 42px var(--page-inline) 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  width: 100%;
}
.site-footer-inner > * {
  min-width: 0;
}
.site-footer-brand .wordmark {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 18px;
  color: var(--text);
}
.site-footer-brand p {
  margin: 0;
  max-width: 280px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--footer-text);
}
.site-footer-nav,
.site-footer-meta {
  display: grid;
  gap: 10px;
  align-content: start;
}
.site-footer-nav a,
.site-footer-meta a {
  color: var(--footer-link);
  font-size: 13px;
}
.site-footer-nav a:hover,
.site-footer-meta a:hover {
  color: #ff6b1a;
}
.site-footer-bottom {
  max-width: none;
  margin: 0 auto;
  padding: 18px var(--page-inline) 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(40, 64, 82, .35);
  font-size: 12px;
  color: #6f8292;
  width: 100%;
}
.site-footer-bottom p { margin: 0; }


@media (prefers-reduced-motion: reduce) {
  .workflow-pulse::after { animation: none; }
  .workflow-rail-progress,
  .workflow-pulse,
  .workflow-step { transition: none; }
  .hero-carousel-slide {
    transform: none;
    transition: opacity .2s ease, visibility .2s ease;
  }
  .hero-summary-item.is-fresh {
    animation: none;
  }
  .proof-card {
    transition: none;
  }
  .proof-card:hover,
  .proof-card:focus-visible {
    transform: none;
  }
}
