:root {
  --paper: #ffffff;
  --paper-deep: #eef4f2;
  --surface: #ffffff;
  --ink: #072336;
  --iron: #050a14;
  --iron-soft: #0b1825;
  --slate: #63747c;
  --muted: #63747c;
  --line: rgba(7, 35, 54, 0.13);
  --line-light: rgba(247, 249, 247, 0.14);
  --mint: #00f0b5;
  --blue: #00c8ff;
  --white: #ffffff;
  --font-display: "Unbounded", "Arial Black", sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-move: cubic-bezier(0.77, 0, 0.175, 1);
  --shadow-soft: 0 26px 80px rgba(7, 35, 54, 0.11);
  --shadow-dark: 0 42px 110px rgba(0, 0, 0, 0.3);
  --page-max: 1680px;
  --theater-max: 1580px;
  --page-gutter: clamp(16px, 2.2vw, 36px);
  --page-edge: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  --page: calc(100vw - (var(--page-edge) * 2));
}

* { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
[hidden] { display: none !important; }

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg:not(.svg-defs) {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

:focus-visible {
  outline: 3px solid #008fb7;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: transform 160ms var(--ease-out);
}

.skip-link:focus { transform: translateY(0); }

.preview-ribbon {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 20px;
  background: var(--mint);
  color: var(--iron);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-edge);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(7, 35, 54, 0.08);
  box-shadow: 0 12px 28px rgba(7, 35, 54, 0.045);
  backdrop-filter: blur(22px) saturate(160%);
}

.brand {
  min-height: 44px;
  display: flex;
  align-items: center;
  width: 148px;
  flex: 0 0 auto;
}

.brand-lockup-image { width: 100%; height: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  font-size: 14px;
  font-weight: 600;
}

.site-nav > a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 14px 0;
  transition: color 160ms ease;
}

.site-nav > a:not(.nav-plan)::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  background: var(--ink);
  transition: transform 200ms var(--ease-out);
}

.nav-plan {
  min-height: 44px;
  gap: 9px;
  margin-left: 2px;
  padding: 11px 15px !important;
  background: var(--ink);
  color: var(--white);
  border-radius: 10px;
  transition: transform 140ms var(--ease-out), background-color 160ms ease;
}

.nav-plan svg,
.button svg,
.text-link svg,
.footer-contact svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: transform 120ms var(--ease-out), background-color 160ms ease;
}

.menu-button svg { width: 21px; height: 21px; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 140ms var(--ease-out), background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-primary { background: var(--mint); color: var(--iron); }
.button-ink { background: var(--ink); color: var(--white); }
.button-quiet { background: transparent; border-color: rgba(7, 35, 54, 0.22); color: var(--ink); }
.button:disabled { cursor: not-allowed; opacity: 0.38; }

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease, border-color 160ms ease;
}

.text-link-light { color: rgba(253, 254, 253, 0.86); }

.nav-plan:active,
.button:active,
.option:active,
.menu-button:active,
.operator-rail button:active { transform: scale(0.97); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 14%, rgba(0, 240, 181, 0.09), transparent 31%),
    radial-gradient(circle at 92% 72%, rgba(0, 200, 255, 0.08), transparent 28%),
    var(--iron);
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: 14%;
  left: -14vw;
  width: min(720px, 64vw);
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(0, 240, 181, 0.1), transparent 66%);
  filter: blur(18px);
  pointer-events: none;
}

.hero::after { display: none; }

.hero-grid {
  position: relative;
  z-index: 1;
  width: var(--page);
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  gap: clamp(34px, 3.5vw, 58px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 110px) 0 clamp(72px, 8vw, 104px);
}

.hero-copy { max-width: 610px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 19px;
  color: rgba(253, 254, 253, 0.66);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--mint);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(44px, 4.25vw, 60px);
  line-height: 1.04;
}

.hero h1 span {
  display: block;
  color: var(--mint);
  font-size: 0.92em;
  letter-spacing: -0.04em;
  white-space: normal;
}

.hero-lede {
  max-width: 570px;
  margin: 27px 0 0;
  color: rgba(253, 254, 253, 0.74);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

@keyframes hero-rise {
  from { transform: translate3d(0, 22px, 0); opacity: 0; }
  to { transform: translate3d(0, 0, 0); opacity: 1; }
}

.js-motion-ready .hero-copy > * { animation: hero-rise 700ms var(--ease-out) both; }
.js-motion-ready .hero-copy > :nth-child(2) { animation-delay: 70ms; }
.js-motion-ready .hero-copy > :nth-child(3) { animation-delay: 130ms; }
.js-motion-ready .hero-copy > :nth-child(4) { animation-delay: 190ms; }
.js-motion-ready .hero-copy > :nth-child(5) { animation-delay: 250ms; }

.coverage-plan {
  position: relative;
  min-width: 0;
  color: var(--ink);
  perspective: 1600px;
}

.coverage-plan.is-preparing {
  transform: translateY(22px) scale(0.97);
  filter: blur(7px);
  opacity: 0;
}

.coverage-plan.is-ready {
  transform: translateY(0) scale(1);
  filter: blur(0);
  opacity: 1;
  transition: transform 900ms var(--ease-out), filter 720ms var(--ease-out), opacity 620ms var(--ease-out);
}

.product-aura {
  position: absolute;
  z-index: -1;
  display: block;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.product-aura-one { top: -9%; right: 1%; width: 58%; aspect-ratio: 1; background: rgba(0, 240, 181, 0.2); }
.product-aura-two { bottom: -8%; left: 2%; width: 42%; aspect-ratio: 1; background: rgba(0, 200, 255, 0.16); }

.product-frame {
  position: relative;
  overflow: hidden;
  background: rgba(249, 252, 250, 0.98);
  border-radius: 24px;
  box-shadow: var(--shadow-dark), inset 0 1px 0 rgba(253, 254, 253, 0.94);
  transform-style: preserve-3d;
  transform: perspective(1400px) rotateX(0deg) rotateY(0deg) translate3d(0, 0, 0);
}

.coverage-plan.is-interacting .product-frame { will-change: transform; }

.product-frame::after {
  position: absolute;
  z-index: 7;
  top: 0;
  bottom: 0;
  left: -62%;
  width: 34%;
  content: "";
  background: linear-gradient(105deg, transparent, rgba(253, 254, 253, 0.7), transparent);
  opacity: 0;
  pointer-events: none;
  transform: skewX(-14deg) translate3d(0, 0, 0);
}

.coverage-plan.is-ready .product-frame::after { animation: product-sheen 1100ms 260ms var(--ease-out) both; }

@keyframes product-sheen {
  0% { opacity: 0; transform: skewX(-14deg) translate3d(0, 0, 0); }
  18% { opacity: 0.5; }
  100% { opacity: 0; transform: skewX(-14deg) translate3d(520%, 0, 0); }
}

.product-toolbar,
.product-brief,
.product-footer,
.product-coverage,
.product-identity,
.product-identity > div,
.owner-panel-head,
.owner-review > div,
.owner-quiet,
.result-head,
.result-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-toolbar {
  min-height: 56px;
  padding: 11px 16px;
  background: rgba(253, 254, 253, 0.76);
  border-bottom: 1px solid rgba(7, 35, 54, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
}

.product-identity { justify-content: flex-start; gap: 9px; }
.product-brand-icon { width: 32px; height: 32px; flex: 0 0 32px; }
.product-identity > div { align-items: flex-start; flex-direction: column; line-height: 1.08; }
.product-identity b { font-size: 13px; }
.product-identity small { color: var(--muted); font-size: 11px; }

.product-demo-label,
.product-brief > div:first-child > span,
.panel-heading span,
.owner-panel-head span,
.owner-review > span,
.product-footer > strong {
  color: #617681;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.product-flow {
  --flow-progress: 0.02;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 13px 24px 7px;
  background: linear-gradient(90deg, rgba(0, 240, 181, 0.035), rgba(0, 200, 255, 0.025));
}

.coverage-plan[data-active-step="1"] .product-flow { --flow-progress: 0.34; }
.coverage-plan[data-active-step="2"] .product-flow { --flow-progress: 0.67; }
.coverage-plan[data-active-step="3"] .product-flow { --flow-progress: 1; }

.product-flow-line {
  position: absolute;
  z-index: 0;
  top: 18px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  overflow: hidden;
  background: rgba(7, 35, 54, 0.12);
}

.product-flow-line i {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(90deg, #00a982, var(--blue));
  transform: scaleX(var(--flow-progress));
  transform-origin: left center;
  transition: transform 720ms var(--ease-move);
}

.product-flow > span:not(.product-flow-line) {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #71838b;
}

.product-flow > span:not(.product-flow-line) > i {
  width: 10px;
  height: 10px;
  background: var(--surface);
  border: 2px solid #b9c5c7;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(247, 249, 247, 0.94);
  transition: transform 320ms var(--ease-out), background-color 220ms ease, border-color 220ms ease, box-shadow 320ms ease;
}

.product-flow b {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.coverage-plan[data-active-step="0"] [data-flow-step="0"] > i,
.coverage-plan[data-active-step="1"] [data-flow-step="0"] > i,
.coverage-plan[data-active-step="1"] [data-flow-step="1"] > i,
.coverage-plan[data-active-step="2"] [data-flow-step="0"] > i,
.coverage-plan[data-active-step="2"] [data-flow-step="1"] > i,
.coverage-plan[data-active-step="2"] [data-flow-step="2"] > i,
.coverage-plan[data-active-step="3"] [data-flow-step] > i {
  background: var(--mint);
  border-color: #00a982;
  box-shadow: 0 0 0 5px rgba(0, 240, 181, 0.1), 0 0 18px rgba(0, 200, 255, 0.24);
}

.coverage-plan[data-active-step="0"] [data-flow-step="0"] b,
.coverage-plan[data-active-step="1"] [data-flow-step="0"] b,
.coverage-plan[data-active-step="1"] [data-flow-step="1"] b,
.coverage-plan[data-active-step="2"] [data-flow-step="0"] b,
.coverage-plan[data-active-step="2"] [data-flow-step="1"] b,
.coverage-plan[data-active-step="2"] [data-flow-step="2"] b,
.coverage-plan[data-active-step="3"] [data-flow-step] b { color: #08755d; }

.coverage-plan[data-active-step="0"] [data-flow-step="0"] > i,
.coverage-plan[data-active-step="1"] [data-flow-step="1"] > i,
.coverage-plan[data-active-step="2"] [data-flow-step="2"] > i,
.coverage-plan[data-active-step="3"] [data-flow-step="3"] > i { transform: scale(1.28); }

.product-brief { align-items: flex-end; gap: 20px; padding: 20px 22px 17px; }

.product-brief h2 {
  max-width: 410px;
  min-block-size: 2.24em;
  margin: 7px 0 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.product-coverage {
  min-width: 122px;
  justify-content: flex-start;
  gap: 9px;
  padding: 10px 12px;
  background: rgba(0, 240, 181, 0.08);
  border-radius: 12px;
}

.product-coverage > i,
.product-footer i {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: #00a982;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 240, 181, 0.1);
}

.product-coverage > span { display: flex; flex-direction: column; line-height: 1.15; }
.product-coverage b { font-size: 12px; }
.product-coverage small { margin-top: 3px; color: var(--muted); font-size: 11px; }

.product-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(175px, 0.42fr);
  gap: 12px;
  padding: 0 14px 14px;
}

.workstream,
.owner-panel {
  min-width: 0;
  background: rgba(253, 254, 253, 0.88);
  border: 1px solid rgba(7, 35, 54, 0.09);
  border-radius: 16px;
}

.workstream { padding: 14px; }
.panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 26px; }

.panel-heading em {
  overflow: hidden;
  color: #41606f;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workstream-stack { position: relative; display: grid; gap: 6px; margin-top: 9px; }

.work-focus {
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: calc((100% - 12px) / 3);
  background: linear-gradient(110deg, rgba(0, 240, 181, 0.1), rgba(0, 200, 255, 0.05));
  border: 1px solid rgba(0, 169, 130, 0.16);
  border-radius: 11px;
  transition: transform 480ms var(--ease-move);
}

.coverage-plan[data-active-step="1"] .work-focus { transform: translateY(calc(100% + 6px)); }
.coverage-plan[data-active-step="2"] .work-focus,
.coverage-plan[data-active-step="3"] .work-focus { transform: translateY(calc(200% + 12px)); }

.workstream-row {
  position: relative;
  z-index: 1;
  min-height: 64px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  opacity: 0.58;
  transition: opacity 240ms ease, transform 420ms var(--ease-out);
}

.workstream-row.is-current,
.workstream-row.is-complete { opacity: 1; }
.workstream-row.is-current { transform: translateX(2px); }

.work-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: rgba(7, 35, 54, 0.05);
  border-radius: 9px;
}

.work-icon svg { width: 17px; height: 17px; }
.workstream-row > div { min-width: 0; display: flex; flex-direction: column; }
.workstream-row > div span { color: var(--muted); font-size: 11px; }

.workstream-row > div b {
  overflow: hidden;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workstream-row > small { color: #16785f; font-size: 10px; font-weight: 700; }
.owner-panel { display: flex; flex-direction: column; padding: 14px; }

.owner-panel-head b {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  font-size: 11px;
}

.owner-review { margin-top: 10px; padding: 13px; background: rgba(255, 191, 92, 0.14); border-radius: 12px; }
.owner-review h3 { margin: 7px 0 5px; font-size: 13px; line-height: 1.25; }
.owner-review p { margin: 0; color: #5b6970; font-size: 11px; line-height: 1.45; }
.owner-review > div { align-items: flex-end; gap: 7px; margin-top: 12px; }
.owner-review > div span { display: inline-flex; align-items: center; gap: 4px; color: #765019; font-size: 10px; font-weight: 700; }
.owner-review > div svg { width: 13px; height: 13px; }
.owner-review > div b { color: #765019; font-size: 10px; }
.owner-quiet { margin-top: auto; padding-top: 14px; color: var(--muted); font-size: 10px; }
.owner-quiet b { color: #16785f; }

.product-footer {
  gap: 16px;
  min-height: 45px;
  padding: 10px 18px;
  background: rgba(7, 35, 54, 0.045);
  border-top: 1px solid rgba(7, 35, 54, 0.07);
}

.product-footer > span { min-width: 0; display: flex; align-items: center; gap: 9px; }
.product-footer > span b { overflow: hidden; font-size: 11px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }

.hero-proof {
  position: relative;
  z-index: 1;
  width: var(--page);
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  border-top: 1px solid rgba(253, 254, 253, 0.12);
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 20px 24px;
  color: rgba(253, 254, 253, 0.62);
  font-size: 13px;
}

.hero-proof b { color: var(--white); font-weight: 700; }

.hero-proof span + span { border-left: 1px solid rgba(253, 254, 253, 0.1); }

.section {
  width: var(--page);
  min-width: 0;
  margin: 0 auto;
  padding: clamp(78px, 7.5vw, 112px) 0;
}

.section h2 {
  max-width: 820px;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.08;
}

.section-kicker {
  margin: 0 0 18px;
  color: #008469;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-kicker-light { color: var(--mint); }

.cost {
  position: relative;
  background: var(--iron);
  color: var(--white);
  box-shadow: 0 0 0 100vmax var(--iron);
  clip-path: inset(0 -100vmax);
}

.cost::before {
  position: absolute;
  top: 0;
  right: -12vw;
  width: min(680px, 62vw);
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(0, 240, 181, 0.1), transparent 66%);
  pointer-events: none;
}

.cost-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.cost-intro > p {
  max-width: 470px;
  margin: 46px 0 4px;
  color: rgba(253, 254, 253, 0.68);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.55;
}

.cost-intro h2 span,
.pressure-intro h2 span { display: block; }

.cost-intro h2 span:last-child { color: var(--mint); }

/* The equation is the whole point of the line, so it never breaks across two. Only the
   consequence after the comma is allowed to wrap. */
.cost-equation { font-weight: inherit; white-space: nowrap; }


.staffing-contrast {
  position: relative;
  z-index: 1;
  margin-top: clamp(42px, 5vw, 64px);
  overflow: hidden;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid rgba(253, 254, 253, 0.25);
  border-radius: 24px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.32);
  width: min(var(--theater-max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.staffing-contrast-head {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 26px;
  background: rgba(7, 35, 54, 0.025);
  border-bottom: 1px solid var(--line);
}

.staffing-contrast-head > span,
.staffing-side > span,
.staffing-payoff span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.staffing-contrast-head > strong {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

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

.staffing-side { position: relative; min-width: 0; padding: clamp(34px, 4vw, 52px); }
.staffing-side + .staffing-side { border-left: 1px solid var(--line); }
.staffing-rivvet { background: linear-gradient(145deg, rgba(0, 240, 181, 0.075), rgba(0, 200, 255, 0.025) 54%, transparent); }

.staffing-side > strong {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 18px;
  font-family: var(--font-display);
  flex-wrap: wrap;
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.staffing-cost > span,
.staffing-payoff-math > strong,
.staffing-payoff-math > small b,
.staffing-payoff-math > small output,
.wage-control output {
  font-variant-numeric: tabular-nums;
}

.staffing-side > strong > small {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  letter-spacing: 0;
}

.staffing-rivvet > strong { color: #008c6b; }

.staffing-side > em {
  display: block;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #006d55;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
}
.staffing-side > small { display: block; margin-top: 10px; color: var(--slate); font-size: 16px; }

.wage-control {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px 12px;
  align-items: center;
  margin-top: 28px;
  color: var(--slate);
}

.wage-control > span {
  grid-column: 1 / -1;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.wage-control input {
  width: 100%;
  min-height: 30px;
  margin: 0;
  accent-color: #008c6b;
  cursor: pointer;
}

.wage-control small { font-family: var(--font-mono); font-size: 11px; }

.staffing-bar {
  position: relative;
  height: 10px;
  margin-top: 34px;
  overflow: hidden;
  background: rgba(7, 35, 54, 0.08);
  border-radius: 999px;
}

.staffing-bar i {
  position: absolute;
  inset: 0;
  display: block;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--ink);
  border-radius: inherit;
  transition: transform 680ms var(--ease-out);
}

.staffing-rivvet .staffing-bar i {
  background: linear-gradient(90deg, #00a982, var(--blue));
  transition-delay: 80ms;
}

.staffing-contrast.is-ready .staffing-bar i { transform: scaleX(var(--bar-scale)); }
.staffing-side > p { margin: 26px 0 0; color: var(--slate); font-size: 16px; }
.staffing-side > b { display: block; margin-top: 10px; font-family: var(--font-display); font-size: clamp(21px, 2.4vw, 30px); letter-spacing: -0.035em; }

.staffing-payoff {
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  padding: 24px 26px;
  background: linear-gradient(120deg, rgba(0, 240, 181, 0.2), rgba(0, 200, 255, 0.09) 62%, rgba(0, 240, 181, 0.06));
  border-top: 2px solid var(--mint);
  color: var(--iron);
}

.staffing-payoff-math { display: grid; gap: 5px; }
.staffing-payoff-math > strong { font-family: var(--font-display); font-size: clamp(24px, 3vw, 40px); letter-spacing: -0.035em; line-height: 1.05; }
.staffing-payoff-math > small { color: rgba(5, 10, 20, 0.72); font-size: 14px; font-weight: 650; }
.staffing-payoff span { display: block; margin-bottom: 7px; color: rgba(5, 10, 20, 0.62); }
.staffing-payoff .text-link { flex: 0 0 auto; color: var(--iron); }
.staffing-payoff-action { display: grid; justify-items: end; gap: 12px; text-align: right; }
.staffing-payoff-action > b { max-width: 38ch; font-size: 14px; }
.staffing-payoff-action .button { padding: 13px 20px; font-size: 15px; }

.roi-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(7, 35, 54, 0.14);
}

.roi-stats > span { display: grid; gap: 2px; }

.roi-stats small {
  color: rgba(5, 10, 20, 0.62);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.roi-stats b {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.roi-stat-lead b { color: #00795e; }
.roi-stats > span:not(.roi-stat-lead) b { color: rgba(5, 10, 20, 0.82); }

.roi-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
  margin-top: 4px;
}

.job-value-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  align-items: center;
  margin-top: 10px;
}

.job-value-control > span {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: rgba(5, 10, 20, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.job-value-control input {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 30px;
  margin: 0;
  accent-color: var(--iron);
  cursor: pointer;
}

.job-value-control small {
  color: rgba(5, 10, 20, 0.62);
  font-family: var(--font-mono);
  font-size: 11px;
}

.job-value-control small:last-child { justify-self: end; }
.staffing-payoff-math > small b,
.staffing-payoff-math > small output { font-weight: 800; }

.cost-sources {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 28px 0 0;
  color: rgba(253, 254, 253, 0.76);
  font-size: 13px;
  line-height: 1.5;
}

.cost-sources a { text-decoration: underline; text-underline-offset: 3px; }

.pressure-intro { max-width: 100%; }

.pressure-proof {
  display: grid;
  justify-items: center;
  gap: 9px;
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  justify-self: center;
  margin: 0 auto;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(253, 254, 253, 0.14);
  text-align: center;
}

.pressure-proof strong {
  max-width: 820px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.pressure-proof > span {
  color: var(--mint);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pressure-proof small {
  display: block;
  max-width: 66ch;
  color: rgba(253, 254, 253, 0.66);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.pressure-intro > p,
.platform-intro > p,
.partner-statement > p,
.education-intro > p,
.builder-heading > p {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--slate);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.55;
}

.pressure-scene {
  position: relative;
  width: min(var(--theater-max), 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: clamp(42px, 5vw, 64px);
  padding: clamp(30px, 4vw, 50px);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 240, 181, 0.18), transparent 32%),
    radial-gradient(circle at 90% 84%, rgba(0, 200, 255, 0.14), transparent 34%),
    var(--iron);
  color: var(--white);
  border: 1px solid rgba(253, 254, 253, 0.1);
  border-radius: 18px;
  box-shadow: var(--shadow-dark);
  margin-right: auto;
  margin-left: auto;
}

.pressure-scene::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, rgba(0, 240, 181, 0.055), transparent 36%, transparent 66%, rgba(0, 200, 255, 0.045));
  pointer-events: none;
}

.pressure-scene::after {
  position: absolute;
  z-index: 0;
  top: -20%;
  bottom: -20%;
  left: -42%;
  width: 36%;
  content: "";
  background: linear-gradient(105deg, transparent, rgba(0, 240, 181, 0.08), rgba(0, 200, 255, 0.12), transparent);
  filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transform: skewX(-12deg) translate3d(0, 0, 0);
}

.capacity-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.5fr) minmax(0, 1fr);
  gap: clamp(22px, 2.8vw, 44px);
  align-items: center;
  margin-top: clamp(36px, 4.5vw, 56px);
}

.capacity-clock,
.capacity-bridge,
.capacity-owner,
.growth-system,
.growth-advisor { position: relative; z-index: 1; }

.capacity-clock { min-width: 0; }

.capacity-clock > span,
.capacity-owner > span,
.capacity-bridge > span {
  color: rgba(253, 254, 253, 0.56);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capacity-clock strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(52px, 5.5vw, 78px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.86;
  white-space: nowrap;
}

.capacity-clock-demand strong { color: var(--mint); }
.capacity-clock-hiring { text-align: right; }
.capacity-clock-hiring p { margin-left: auto; }
.capacity-clock-hiring strong { color: rgba(253, 254, 253, 0.92); }

.capacity-clock p {
  max-width: 33ch;
  margin: 18px 0 0;
  color: rgba(253, 254, 253, 0.68);
  font-size: 16px;
  line-height: 1.5;
}

.capacity-bridge {
  display: grid;
  justify-items: center;
  gap: 13px;
  text-align: center;
}

.capacity-bridge::before,
.capacity-bridge::after {
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--mint), var(--blue), transparent);
  transform: scaleX(0);
  transition: transform 900ms var(--ease-in-out);
}

.capacity-bridge::before { transform-origin: right center; }
.capacity-bridge::after { transform-origin: left center; }

.capacity-bridge img { width: 58px; height: 58px; padding: 4px; filter: drop-shadow(0 0 22px rgba(0, 240, 181, 0.22)); }
.capacity-bridge > span { color: var(--mint); }
.capacity-bridge b { max-width: 22ch; color: rgba(253, 254, 253, 0.9); font-size: 16px; line-height: 1.45; }

.capacity-owner {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: clamp(28px, 3.5vw, 44px) 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(253, 254, 253, 0.14);
  text-align: center;
}

.capacity-owner strong {
  max-width: 980px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(23px, 2.6vw, 36px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.growth-system {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(30px, 3.5vw, 42px);
  border-top: 1px solid rgba(253, 254, 253, 0.14);
  border-bottom: 1px solid rgba(253, 254, 253, 0.14);
}

.growth-system > span {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px 18px 22px;
}

.growth-system > span + span { border-left: 1px solid rgba(253, 254, 253, 0.14); }
.growth-system b { color: var(--mint); font-family: var(--font-display); font-size: clamp(17px, 1.6vw, 21px); letter-spacing: -0.025em; }
.growth-system small { color: rgba(253, 254, 253, 0.7); font-size: 14px; line-height: 1.5; }

.growth-advisor {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  padding-top: clamp(28px, 3.5vw, 42px);
}

.growth-advisor strong { font-family: var(--font-display); font-size: clamp(22px, 2.8vw, 35px); letter-spacing: -0.035em; line-height: 1.12; }
.growth-advisor p { max-width: 54ch; margin: 0; color: rgba(253, 254, 253, 0.64); font-size: clamp(16px, 1.5vw, 19px); }

.js-motion-ready .pressure-scene [data-pressure-beat] {
  opacity: 0;
  transition: transform 760ms var(--ease-out), opacity 480ms var(--ease-out);
  transition-delay: var(--pressure-delay, 0ms);
}

.js-motion-ready .pressure-scene .pressure-proof { transform: translate3d(0, 18px, 0); }
.js-motion-ready .pressure-scene .capacity-clock-demand { transform: translate3d(-34px, 0, 0); }
.js-motion-ready .pressure-scene .capacity-clock-hiring { transform: translate3d(34px, 0, 0); }
.js-motion-ready .pressure-scene .capacity-bridge { transform: scale(0.94); }
.js-motion-ready .pressure-scene .capacity-owner,
.js-motion-ready .pressure-scene .growth-advisor,
.js-motion-ready .pressure-scene .growth-system > span { transform: translate3d(0, 22px, 0); }

.js-motion-ready .pressure-scene .capacity-clock-hiring { --pressure-delay: 80ms; }
.js-motion-ready .pressure-scene .capacity-bridge { --pressure-delay: 260ms; }
.js-motion-ready .pressure-scene .growth-system > span:nth-child(2) { --pressure-delay: 60ms; }
.js-motion-ready .pressure-scene .growth-system > span:nth-child(3) { --pressure-delay: 120ms; }
.js-motion-ready .pressure-scene .growth-system > span:nth-child(4) { --pressure-delay: 180ms; }

.js-motion-ready .pressure-scene [data-pressure-beat].is-pressure-visible {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.js-motion-ready .pressure-scene .capacity-bridge.is-pressure-visible::before,
.js-motion-ready .pressure-scene .capacity-bridge.is-pressure-visible::after { transform: scaleX(1); transition-delay: 340ms; }

.js-motion-ready .pressure-scene.is-ready::after { animation: pressure-light-pass 1800ms 420ms var(--ease-in-out) both; }

@keyframes pressure-light-pass {
  0% { opacity: 0; transform: skewX(-12deg) translate3d(0, 0, 0); }
  24% { opacity: 0.72; }
  100% { opacity: 0; transform: skewX(-12deg) translate3d(440%, 0, 0); }
}

.result-proof small,
.result-head .step-context,
.builder-progress p,
.builder-progress span,
.step-context {
  color: #57707c;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.partnership {
  position: relative;
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.partnership::before {
  position: absolute;
  top: 22%;
  left: 50%;
  width: min(820px, 72vw);
  aspect-ratio: 1;
  content: "";
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 240, 181, 0.08), transparent 66%);
  pointer-events: none;
}

.platform-intro,
.pressure-intro,
.builder-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: clamp(34px, 4vw, 56px);
  align-items: end;
}

.pressure-intro {
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  justify-items: center;
  text-align: center;
}

.pressure-intro > div { width: 100%; }

.pressure-intro h2 {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(40px, 4.2vw, 60px);
}

.pressure-intro > p {
  max-width: 780px;
  margin: 0 auto;
}

.builder-heading {
  width: min(1360px, 100%);
  grid-template-columns: 1fr;
  gap: clamp(32px, 3.5vw, 52px);
  align-items: start;
  margin-right: auto;
  margin-left: auto;
}

.builder-heading h2 {
  max-width: 720px;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.07;
}

.builder-urgency {
  max-width: 650px;
  margin: 18px 0 0;
  color: #294957;
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 650;
  line-height: 1.5;
}

.builder-offer {
  align-self: start;
  padding-left: clamp(24px, 3vw, 40px);
  border-left: 1px solid rgba(7, 35, 54, 0.2);
}

.builder-offer > strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(21px, 1.8vw, 26px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.builder-offer ul {
  counter-reset: offer-item;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.builder-offer li {
  counter-increment: offer-item;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
  padding: 10px 0;
  color: var(--ink);
  border-bottom: 1px solid rgba(7, 35, 54, 0.14);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
}

.builder-offer li > span {
  display: grid;
  gap: 2px;
}

.builder-offer li b {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.builder-offer li small {
  color: var(--slate);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.builder-offer li::before {
  content: "0" counter(offer-item);
  color: var(--mint);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.builder-offer > p {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 14px 0 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.45;
}

.builder-offer > p b { color: var(--ink); }
.builder-offer > .button { margin-top: 16px; }

.platform-intro > p,
.pressure-intro > p,
.builder-heading > p { margin-bottom: 4px; }

.learning-intro {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.learning-intro > span,
.learning-copy > span,
.insight-window header span,
.insight-window > div > span,
.outcome-window > span,
.platform-kicker {
  color: #008469;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.learning-intro h2 { margin-top: 20px; }

.learning-intro > p {
  max-width: 730px;
  margin: 24px auto 0;
  color: var(--slate);
  font-size: clamp(17px, 1.5vw, 20px);
}

.start-system {
  position: relative;
  z-index: 1;
  width: min(var(--theater-max), 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(42px, 5vw, 64px) auto 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(0, 240, 181, 0.16), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(0, 200, 255, 0.12), transparent 36%),
    var(--iron);
  color: var(--white);
  border: 1px solid rgba(7, 35, 54, 0.16);
  border-radius: 22px;
  box-shadow: var(--shadow-dark);
}

.start-system::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--mint), var(--blue), var(--mint));
  transition: transform 1100ms var(--ease-out);
}

.start-system.is-visible::before { transform: scaleX(1); }

.start-system article {
  min-width: 0;
  min-height: 350px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(32px, 4vw, 52px);
}

.start-system article + article { border-left: 1px solid rgba(253, 254, 253, 0.13); }
.start-system article > span { color: var(--mint); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; }
.start-system article > strong { margin-top: 34px; color: rgba(253, 254, 253, 0.56); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.start-system h3 { margin: 12px 0 0; font-family: var(--font-display); font-size: clamp(24px, 2.4vw, 34px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.08; }
.start-system p { max-width: 32ch; margin: 18px 0 0; color: rgba(253, 254, 253, 0.68); font-size: 16px; }
.start-system em { margin-top: auto; padding-top: 28px; color: var(--mint); font-size: 14px; font-style: normal; font-weight: 700; }

.js-motion-ready .start-system:not(.is-visible) article { transform: translate3d(0, 18px, 0); opacity: 0; }
.js-motion-ready .start-system article { transform: translate3d(0, 0, 0); opacity: 1; transition: transform 620ms var(--ease-out), opacity 420ms var(--ease-out); }
.js-motion-ready .start-system article:nth-child(2) { transition-delay: 100ms; }
.js-motion-ready .start-system article:nth-child(3) { transition-delay: 200ms; }

.learning-loop {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(58px, 7vw, 88px);
  margin-top: clamp(70px, 9vw, 116px);
}

.learning-loop::before {
  position: absolute;
  z-index: -1;
  top: -62px;
  bottom: -62px;
  left: 50%;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, rgba(7, 35, 54, 0.18) 8%, rgba(7, 35, 54, 0.18) 92%, transparent);
}

.learning-scene {
  position: relative;
  min-height: 410px;
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(420px, 1.24fr);
  overflow: hidden;
  background: #f4f5f4;
  border: 1px solid rgba(7, 35, 54, 0.12);
  border-radius: 30px;
}

.learning-scene::before {
  position: absolute;
  z-index: 4;
  top: 22px;
  left: 50%;
  width: 16px;
  height: 16px;
  content: "";
  transform: translateX(-50%);
  background: var(--mint);
  border: 4px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(7, 35, 54, 0.14);
}

.learning-scene-glow { box-shadow: 0 0 90px rgba(0, 240, 181, 0.16); }

.learning-copy {
  min-width: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(38px, 5vw, 68px);
  border-right: 1px solid var(--line);
}

.learning-copy h3 {
  max-width: 16ch;
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.learning-copy p { max-width: 42ch; margin: 22px 0 0; color: var(--slate); font-size: 17px; }

.learning-visual {
  position: relative;
  min-width: 0;
  min-height: 410px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 200, 255, 0.09), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(234, 244, 242, 0.62));
}

.learning-signal { align-content: center; flex-direction: column; gap: 14px; }

.signal-message {
  width: min(410px, 92%);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 35, 54, 0.1);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(7, 35, 54, 0.08);
}

.signal-message span { color: var(--slate); font-size: 12px; font-weight: 650; }
.signal-message b { font-size: 15px; line-height: 1.4; }
.signal-message-rule { margin-left: 12%; }
.signal-message-rivvet { position: relative; grid-template-columns: 30px minmax(0, 1fr); margin-right: 8%; background: var(--iron-soft); color: var(--white); }
.signal-message-rivvet img { grid-row: 1 / span 2; width: 30px; height: 30px; }
.signal-message-rivvet span { color: var(--mint); }

.insight-window,
.outcome-window {
  width: min(490px, 100%);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(7, 35, 54, 0.12);
  border-radius: 18px;
  box-shadow: 0 28px 64px rgba(7, 35, 54, 0.13);
}

.insight-window header,
.insight-window footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
}

.insight-window header { border-bottom: 1px solid var(--line); }
.insight-window header b { color: #008469; font-size: 12px; }
.insight-window > strong { display: block; padding: 30px 20px 24px; font-family: var(--font-display); font-size: clamp(21px, 2vw, 27px); letter-spacing: -0.03em; line-height: 1.25; }
.insight-window > div { margin: 0 20px; padding: 18px; background: #edf7f4; border: 1px solid rgba(0, 169, 130, 0.16); border-radius: 12px; }
.insight-window > div p { margin: 7px 0 0; font-size: 15px; }
.insight-window footer { margin-top: 22px; border-top: 1px solid var(--line); }
.insight-window footer span { color: var(--slate); font-size: 12px; }
.insight-window footer b { padding: 8px 11px; background: var(--ink); color: var(--white); border-radius: 8px; font-size: 12px; }

.outcome-window { padding: clamp(28px, 4vw, 46px); background: var(--iron-soft); color: var(--white); }
.outcome-window > span { color: var(--mint); }
.outcome-window > strong { display: block; margin-top: 20px; font-family: var(--font-display); font-size: clamp(23px, 2.5vw, 34px); letter-spacing: -0.04em; line-height: 1.2; }
.outcome-window > div { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid rgba(253, 254, 253, 0.13); }
.outcome-window > div span { display: flex; align-items: center; gap: 11px; padding: 15px 0; color: rgba(253, 254, 253, 0.76); border-bottom: 1px solid rgba(253, 254, 253, 0.13); font-size: 14px; }
.outcome-window i { width: 8px; height: 8px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 5px rgba(0, 240, 181, 0.1); }

.learning-promise {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-top: clamp(38px, 4vw, 54px);
  text-align: center;
}

.learning-promise img { width: 44px; height: 44px; }

.learning-promise p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 29px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.learning-promise p span { color: #00F0B5; }

.js-motion-ready .learning-scene:not(.is-visible) .signal-message,
.js-motion-ready .learning-scene:not(.is-visible) .insight-window,
.js-motion-ready .learning-scene:not(.is-visible) .outcome-window { transform: translate3d(0, 18px, 0) scale(0.98); opacity: 0; }

.js-motion-ready .learning-scene .signal-message,
.js-motion-ready .learning-scene .insight-window,
.js-motion-ready .learning-scene .outcome-window { transform: translate3d(0, 0, 0) scale(1); opacity: 1; transition: transform 620ms var(--ease-out), opacity 380ms var(--ease-out); }
.js-motion-ready .learning-scene .signal-message:nth-child(2) { transition-delay: 80ms; }
.js-motion-ready .learning-scene .signal-message:nth-child(3) { transition-delay: 160ms; }

.platform {
  position: relative;
  background: var(--iron);
  color: var(--white);
  box-shadow: 0 0 0 100vmax var(--iron);
  clip-path: inset(0 -100vmax);
}

.platform::before {
  position: absolute;
  inset: 0 -20vw;
  content: "";
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 240, 181, 0.11), transparent 30%),
    radial-gradient(circle at 84% 78%, rgba(0, 200, 255, 0.1), transparent 32%);
  pointer-events: none;
}

.platform-intro > p { color: rgba(253, 254, 253, 0.62); }

.platform .platform-intro {
  max-width: 1180px;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.65fr);
  align-items: end;
  margin: 0 auto;
  text-align: left;
}

.platform-intro h2 { margin-top: 18px; }
.platform-intro > p { max-width: 510px; margin: 0; font-size: clamp(16px, 1.35vw, 18px); }
.platform-intro > .button { margin-top: 28px; }

.platform.section {
  padding-top: clamp(66px, 6vw, 92px);
  padding-bottom: clamp(72px, 7vw, 104px);
}

.trial-paths {
  position: relative;
  z-index: 1;
  width: min(var(--theater-max), 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(34px, 4vw, 48px) auto 0;
  border-top: 1px solid rgba(253, 254, 253, 0.16);
  border-bottom: 1px solid rgba(253, 254, 253, 0.16);
}

.trial-paths article {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px 20px;
}

.trial-paths article + article {
  border-left: 1px solid rgba(253, 254, 253, 0.12);
}

.trial-paths span {
  color: var(--mint);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.trial-paths strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.trial-paths p {
  max-width: 21ch;
  margin: 0;
  color: rgba(253, 254, 253, 0.64);
  font-size: 16px;
  line-height: 1.45;
}

.ai-employee-roster {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: clamp(38px, 4vw, 52px) auto 0;
  border-top: 1px solid rgba(253, 254, 253, 0.14);
  border-bottom: 1px solid rgba(253, 254, 253, 0.14);
}

.ai-employee-roster span {
  min-height: 72px;
  display: grid;
  gap: 4px;
  place-items: center;
  padding: 14px 12px;
  color: rgba(253, 254, 253, 0.86);
  border-left: 1px solid rgba(253, 254, 253, 0.1);
  line-height: 1.2;
  text-align: center;
}

.ai-employee-roster span:nth-child(4n+1) {
  border-left: 0;
}

.ai-employee-roster b {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.ai-employee-roster small {
  color: rgba(253, 254, 253, 0.46);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.platform-note {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 22px auto 0;
  color: rgba(253, 254, 253, 0.68);
  font-size: 16px;
  line-height: 1.45;
  text-align: center;
}

.platform-cta {
  position: relative;
  z-index: 1;
  width: fit-content;
  display: flex;
  margin: 26px auto 0;
}

.operator-journey-map {
  position: relative;
  z-index: 1;
  width: min(var(--theater-max), 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: clamp(30px, 4vw, 44px) auto 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(253, 254, 253, 0.16);
  border-bottom: 1px solid rgba(253, 254, 253, 0.16);
}

.operator-journey-map li {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 20px 18px;
}

.operator-journey-map li + li {
  border-left: 1px solid rgba(253, 254, 253, 0.12);
}

.operator-journey-map li:nth-child(4n+1) {
  border-left: 0;
}

.operator-journey-map span {
  color: var(--mint);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.operator-journey-map b {
  color: var(--white);
  font-size: 16px;
  line-height: 1.2;
}

.operator-journey-map small {
  color: rgba(253, 254, 253, 0.62);
  font-size: 15px;
  line-height: 1.35;
}

.operator-workspace {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin-top: clamp(42px, 5vw, 64px);
  background: rgba(253, 254, 253, 0.06);
  border: 1px solid rgba(253, 254, 253, 0.12);
  border-radius: 18px;
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(24px) saturate(130%);
  width: min(var(--theater-max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.operator-chrome {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 26px;
  background: rgba(253, 254, 253, 0.035);
  border-bottom: 1px solid rgba(253, 254, 253, 0.1);
}

.operator-chrome > span { display: flex; align-items: center; gap: 16px; }
.operator-chrome img { width: 132px; height: auto; }
.operator-chrome b { padding-left: 16px; color: rgba(253, 254, 253, 0.7); border-left: 1px solid rgba(253, 254, 253, 0.18); font-size: 13px; }

.operator-journey {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  gap: 18px 24px;
  align-items: center;
  padding: 22px 26px 20px;
  background: rgba(253, 254, 253, 0.025);
  border-bottom: 1px solid rgba(253, 254, 253, 0.1);
}

.operator-journey-copy { min-width: 0; min-block-size: 92px; }

.operator-journey-copy > span,
.operator-journey-count {
  color: rgba(253, 254, 253, 0.48);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.operator-journey-copy strong {
  display: block;
  margin-top: 7px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 22px);
  letter-spacing: -0.025em;
}

.operator-journey-copy small {
  display: block;
  margin-top: 6px;
  color: rgba(253, 254, 253, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.operator-scenarios {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(253, 254, 253, 0.14);
}

.operator-scenarios button {
  min-height: 44px;
  padding: 10px 13px;
  background: transparent;
  color: rgba(253, 254, 253, 0.58);
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 160ms ease, border-color 160ms ease;
}

.operator-scenarios button[aria-pressed="true"] { color: var(--mint); border-bottom-color: var(--mint); }

.operator-journey-toggle {
  min-height: 44px;
  padding: 9px 14px;
  background: rgba(253, 254, 253, 0.06);
  color: rgba(253, 254, 253, 0.78);
  border: 1px solid rgba(253, 254, 253, 0.15);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.operator-journey-progress {
  height: 3px;
  grid-column: 1 / 3;
  overflow: hidden;
  background: rgba(253, 254, 253, 0.09);
  border-radius: 999px;
}

.operator-journey-progress i {
  width: 100%;
  height: 100%;
  display: block;
  transform: scaleX(var(--journey-progress, 0.1111));
  transform-origin: left center;
  background: linear-gradient(90deg, var(--mint), var(--blue));
  border-radius: inherit;
  transition: transform 560ms var(--ease-out);
}

.operator-journey-count { justify-self: end; }
.operator-surface-head > div > span,
.operator-signal-head > span,
.operator-route > header > span,
.operator-outcome > span,
.operator-foot > span {
  color: #57707c;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.operator-run-state {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
  color: rgba(253, 254, 253, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.operator-run-state i {
  position: relative;
  width: 9px;
  height: 9px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 240, 181, 0.11);
}

.operator-run-state i::after {
  position: absolute;
  inset: -7px;
  content: "";
  border: 1px solid rgba(0, 240, 181, 0.42);
  border-radius: 50%;
  opacity: 0;
}

.operator-workspace.is-journey-playing .operator-run-state i::after { opacity: 0; }

.operator-body {
  min-height: 600px;
  min-width: 0;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  padding: 14px;
}

.operator-rail {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 22px 14px 22px 8px;
}

.operator-rail button {
  position: relative;
  min-height: 52px;
  padding: 12px 14px 12px 42px;
  background: transparent;
  border: 0;
  border-radius: 14px;
  color: rgba(253, 254, 253, 0.72);
  cursor: pointer;
  font-size: 15px;
  text-align: left;
  transition: transform 120ms var(--ease-out), color 160ms ease, background-color 160ms ease;
}

.operator-rail button::before {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 8px;
  height: 8px;
  content: "";
  transform: translateY(-50%) scale(0.72);
  background: rgba(253, 254, 253, 0.26);
  border-radius: 50%;
  transition: transform 160ms var(--ease-out), background-color 160ms ease;
}

.operator-rail button[aria-selected="true"] { background: rgba(0, 240, 181, 0.14); color: var(--mint); font-weight: 700; }
.operator-rail button[aria-selected="true"]::before { transform: translateY(-50%) scale(1); background: var(--mint); box-shadow: 0 0 0 5px rgba(0, 240, 181, 0.1); }

.operator-surface {
  min-width: 0;
  max-width: 100%;
  padding: clamp(28px, 3.5vw, 46px);
  background:
    radial-gradient(circle at 94% 10%, rgba(0, 200, 255, 0.08), transparent 26%),
    linear-gradient(145deg, #f8fbfa, #edf4f3);
  color: var(--ink);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.operator-surface-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; }
.operator-surface-head > div { min-block-size: 126px; }

.operator-surface-head h3 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.operator-surface-head p { margin: 15px 0 0; color: var(--slate); font-size: 17px; }

.operator-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(0, 240, 181, 0.13);
  color: #00684f;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.operator-live i { width: 7px; height: 7px; background: #00a982; border-radius: 50%; box-shadow: 0 0 0 4px rgba(0, 240, 181, 0.14); }

.operator-cinema {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(300px, 1.22fr) minmax(230px, 0.8fr);
  margin-top: clamp(32px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(7, 35, 54, 0.1);
  min-block-size: 460px;
}

.operator-signal,
.operator-route,
.operator-outcome { min-width: 0; }

.operator-signal {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 410px;
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--line);
}

.operator-signal::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 42%, rgba(0, 240, 181, 0.12), transparent 38%);
  pointer-events: none;
}

.operator-signal-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.operator-signal-head i {
  width: 9px;
  height: 9px;
  background: #00a982;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(0, 240, 181, 0.12);
}

.operator-signal-mark {
  position: relative;
  width: 68px;
  height: 68px;
  margin: 44px 0 30px;
}

.operator-signal-mark span {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(0, 169, 130, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.operator-signal-mark span:nth-child(1) { width: 18px; height: 18px; background: var(--mint); border: 0; }
.operator-signal-mark span:nth-child(2) { width: 42px; height: 42px; }
.operator-signal-mark span:nth-child(3) { width: 68px; height: 68px; }

.operator-workspace.is-cinema-ready .operator-signal-mark span:nth-child(2) { animation: operator-signal-wave 760ms 80ms var(--ease-out) both; }
.operator-workspace.is-cinema-ready .operator-signal-mark span:nth-child(3) { animation: operator-signal-wave 920ms 150ms var(--ease-out) both; }

.operator-signal blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.35;
  min-block-size: 5.4em;
}

.operator-signal > p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.5;
  min-block-size: 4.5em;
}

.operator-route {
  padding: clamp(28px, 3vw, 40px);
}

.operator-route > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.operator-route > header > b {
  color: #008469;
  font-size: 13px;
}

.operator-route-track {
  position: relative;
  display: grid;
  margin-top: 14px;
  min-block-size: 276px;
}

.operator-route-track::before,
.operator-route-track::after {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 16px;
  width: 2px;
  content: "";
  border-radius: 999px;
}

.operator-route-track::before { background: rgba(7, 35, 54, 0.09); }
.operator-route-track::after {
  transform: scaleY(0);
  transform-origin: top center;
  background: linear-gradient(var(--mint), var(--blue));
  transition: transform 720ms var(--ease-out) 70ms;
}

.operator-workspace.is-cinema-ready .operator-route-track::after { transform: scaleY(1); }

.operator-route-step {
  position: relative;
  z-index: 1;
  min-height: 92px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 17px 0;
}

.operator-route-step > i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #eff8f5;
  color: #007d60;
  border: 1px solid rgba(0, 169, 130, 0.24);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.operator-route-step b { font-size: 16px; }
.operator-route-step p { margin: 5px 0 0; color: var(--slate); font-size: 14px; line-height: 1.45; }
.operator-route-step em { color: #007d60; font-family: var(--font-mono); font-size: 11px; font-style: normal; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

.operator-outcome {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 410px;
  padding: clamp(28px, 3vw, 40px);
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 200, 255, 0.12), transparent 34%),
    var(--iron-soft);
  color: var(--white);
}

.operator-outcome > span { color: var(--mint); }
.operator-outcome > strong { min-block-size: 3.55em; margin-top: 24px; font-family: var(--font-display); font-size: clamp(22px, 2.1vw, 30px); letter-spacing: -0.035em; line-height: 1.18; }
.operator-outcome > p { min-block-size: 4.65em; margin: 18px 0 0; color: rgba(253, 254, 253, 0.72); font-size: 15px; line-height: 1.55; }
.operator-outcome > div { margin-top: auto; padding-top: 28px; border-top: 1px solid rgba(253, 254, 253, 0.16); }
.operator-outcome > div span { display: block; color: var(--mint); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase; }
.operator-outcome > div b { display: block; margin-top: 10px; font-size: 14px; line-height: 1.5; }

.js-motion-ready .operator-workspace [data-cinema-beat] {
  opacity: 1;
  transition: opacity 220ms var(--ease-out);
}

.js-motion-ready .operator-workspace .operator-route-step:nth-child(1) { transition-delay: 90ms; }
.js-motion-ready .operator-workspace .operator-route-step:nth-child(2) { transition-delay: 150ms; }
.js-motion-ready .operator-workspace .operator-route-step:nth-child(3) { transition-delay: 210ms; }
.js-motion-ready .operator-workspace .operator-outcome { transition-delay: 270ms; }

@keyframes operator-signal-wave {
  0% { transform: translate(-50%, -50%) scale(0.55); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.operator-foot {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 18px 26px;
  background: rgba(253, 254, 253, 0.035);
  border-top: 1px solid rgba(253, 254, 253, 0.1);
}

.operator-foot > span { color: rgba(253, 254, 253, 0.5); }
.operator-foot b { color: var(--white); font-size: 15px; }

.ai-explained {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1.22fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: start;
}

.education-intro { position: sticky; top: 120px; }
.education-intro .text-link { margin-top: 30px; }
.education-questions { border-top: 1px solid var(--line); }
.education-questions details { border-bottom: 1px solid var(--line); }

.education-questions summary {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 29px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  list-style: none;
}

.education-questions summary::-webkit-details-marker { display: none; }

.education-questions summary svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  transform: rotate(45deg);
  transition: transform 220ms var(--ease-out);
}

.education-questions details[open] summary svg { transform: rotate(90deg); }

.education-questions details p {
  max-width: 58ch;
  margin: -4px 0 0;
  padding: 0 48px 26px 0;
  color: var(--slate);
  font-size: 17px;
}

.plan-builder {
  position: relative;
  isolation: isolate;
  padding-top: clamp(72px, 7vw, 104px);
  padding-bottom: clamp(88px, 9vw, 128px);
  background: transparent;
}

.plan-builder::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  content: "";
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 8% 14%, rgba(0, 240, 181, 0.1), transparent 34%),
    radial-gradient(circle at 92% 24%, rgba(0, 200, 255, 0.08), transparent 33%),
    linear-gradient(180deg, #eaf5f2 0%, #edf6f4 62%, #f1f7f5 100%);
  pointer-events: none;
}

.builder-shell {
  width: min(1440px, 100%);
  margin-top: clamp(30px, 3.5vw, 48px);
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 8%, rgba(0, 240, 181, 0.14), transparent 28%),
    radial-gradient(circle at 92% 92%, rgba(0, 200, 255, 0.1), transparent 30%),
    var(--iron);
  color: var(--white);
  border: 1px solid rgba(253, 254, 253, 0.1);
  border-radius: 26px;
  box-shadow: var(--shadow-dark);
}

.builder-progress {
  display: grid;
  grid-template-columns: minmax(190px, auto) minmax(220px, 1fr) minmax(230px, auto);
  gap: 28px;
  align-items: center;
  padding: 26px clamp(24px, 4vw, 48px);
  background: rgba(253, 254, 253, 0.035);
  border-bottom: 1px solid rgba(253, 254, 253, 0.1);
}

.builder-progress > div:first-child { display: flex; align-items: baseline; gap: 12px; }
.builder-progress p, .builder-progress span { margin: 0; }
.builder-progress p { color: rgba(253, 254, 253, 0.46); }
.builder-progress span { color: var(--white); font-weight: 700; }
.builder-progress > strong { color: rgba(253, 254, 253, 0.76); font-size: 14px; font-weight: 600; }

.builder-track {
  position: relative;
  height: 2px;
  overflow: visible;
  background: rgba(253, 254, 253, 0.16);
}

.builder-track i {
  position: absolute;
  top: -4px;
  left: 0;
  width: 25%;
  height: 10px;
  background: linear-gradient(90deg, var(--mint), var(--blue));
  border-radius: 999px;
  transform: translateX(0);
  transition: transform 320ms var(--ease-move);
}

.builder-shell[data-builder-step="2"] .builder-track i { transform: translateX(100%); }
.builder-shell[data-builder-step="3"] .builder-track i { transform: translateX(200%); }
.builder-shell[data-builder-step="4"] .builder-track i { transform: translateX(300%); }

.builder-stage { min-height: 480px; padding: clamp(34px, 3.6vw, 52px); }
.builder-shell[data-builder-step="4"] .builder-stage { min-height: 0; }
.builder-step { max-width: 1080px; margin: 0 auto; scroll-margin-top: 110px; }

.builder-step > h3,
.result-head h3 {
  max-width: 760px;
  margin: 11px 0 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 45px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.builder-step > h3[tabindex="-1"]:focus,
.builder-step > h3[tabindex="-1"]:focus-visible,
.result-head h3[tabindex="-1"]:focus,
.result-head h3[tabindex="-1"]:focus-visible { outline: 0; }

.builder-step .step-context,
.result-head .step-context { color: var(--mint); }

.option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 30px;
  margin-top: 34px;
  border-top: 1px solid rgba(253, 254, 253, 0.16);
}

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

.option {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 12px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(253, 254, 253, 0.16);
  color: rgba(253, 254, 253, 0.9);
  cursor: pointer;
  text-align: left;
  transition: transform 120ms var(--ease-out), color 180ms ease, background-color 180ms ease;
}

.option > span { display: flex; flex-direction: column; }
.option b { font-size: 16px; line-height: 1.25; }
.option small { margin-top: 6px; color: rgba(253, 254, 253, 0.68); font-size: 16px; }

.option > svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--mint);
  opacity: 0;
  transform: scale(0.92);
  transition: transform 180ms var(--ease-out), opacity 160ms ease;
}

.option.is-selected { background: rgba(0, 240, 181, 0.1); color: var(--mint); }
.option.is-selected > svg { transform: scale(1); opacity: 1; }

.builder-shell .button-quiet { border-color: rgba(253, 254, 253, 0.25); color: var(--white); }

.step-actions {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
}

.result-step { max-width: 920px; }
.result-head { display: flex; }

.result-core {
  max-width: 820px;
  margin-top: 22px;
}

.result-bottleneck {
  margin: 0;
  color: var(--mint);
  font-size: 16px;
  font-weight: 700;
}

.result-summary {
  max-width: 720px;
  margin: 10px 0 0;
  color: rgba(253, 254, 253, 0.62);
  font-size: 17px;
}

.result-at-a-glance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.result-at-a-glance li {
  padding-top: 14px;
  border-top: 1px solid rgba(253, 254, 253, 0.16);
}

.result-at-a-glance small,
.result-at-a-glance b,
.result-at-a-glance span {
  display: block;
}

.result-at-a-glance small {
  color: var(--mint);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.result-at-a-glance b {
  margin-top: 7px;
  font-size: 16px;
}

.result-at-a-glance span {
  margin-top: 5px;
  color: rgba(253, 254, 253, 0.68);
  font-size: 14px;
}

.coverage-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr);
  align-items: stretch;
  margin-top: 42px;
  background: rgba(253, 254, 253, 0.05);
  border: 1px solid rgba(253, 254, 253, 0.1);
  border-radius: 16px;
}

.coverage-lane { padding: 28px; }
.coverage-lane > span { color: var(--mint); font-size: 12px; font-weight: 700; }
.result-roles { display: grid; gap: 18px; margin-top: 20px; }

.result-role {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.result-role > svg {
  width: 36px;
  height: 36px;
  padding: 8px;
  background: rgba(0, 240, 181, 0.13);
  color: var(--mint);
  border-radius: 10px;
}

.result-role > span { display: flex; flex-direction: column; }
.result-role b { font-size: 15px; }
.result-role small { margin-top: 4px; color: rgba(253, 254, 253, 0.72); font-size: 16px; }
.coverage-connector { display: grid; place-items: center; }
.coverage-connector i { width: 100%; height: 1px; grid-area: 1 / 1; background: linear-gradient(90deg, var(--mint), var(--blue)); }

.coverage-connector svg {
  width: 24px;
  height: 24px;
  grid-area: 1 / 1;
  padding: 4px;
  background: var(--iron);
  color: var(--mint);
}

.coverage-lane-owner ul { display: grid; gap: 12px; margin: 20px 0 0; padding: 0; list-style: none; }

.coverage-lane-owner li {
  position: relative;
  padding-left: 18px;
  color: rgba(253, 254, 253, 0.74);
  font-size: 15px;
}

.coverage-lane-owner li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 1px;
  content: "";
  background: var(--mint);
}

.result-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.result-proof > span { padding-top: 16px; border-top: 1px solid rgba(253, 254, 253, 0.16); }
.result-proof b { display: block; margin-top: 8px; font-size: 15px; line-height: 1.5; }
.plan-lead-form {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(240px, 1fr) minmax(260px, auto);
  gap: 14px;
  align-items: end;
  margin-top: 24px;
  padding: 24px;
  background: rgba(0, 240, 181, 0.1);
  border: 1px solid rgba(0, 240, 181, 0.24);
  border-radius: 16px;
}

.plan-lead-form label { display: grid; gap: 8px; }
.plan-lead-form label > span { color: rgba(253, 254, 253, 0.64); font-size: 12px; font-weight: 700; }
.plan-lead-form input { width: 100%; min-height: 54px; padding: 12px 14px; background: var(--surface); color: var(--ink); border: 1px solid rgba(7, 35, 54, 0.2); border-radius: 9px; }
.plan-lead-form input::placeholder { color: #72858d; }
.plan-lead-form .button { min-height: 54px; min-width: 260px; }
.result-details {
  margin-top: 26px;
  border-top: 1px solid rgba(253, 254, 253, 0.16);
}

.result-details summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.result-details summary svg {
  width: 20px;
  height: 20px;
  transition: transform 180ms var(--ease-out);
}

.result-details[open] summary svg { transform: rotate(90deg); }

.activation-panel {
  margin-top: 20px;
  padding: 24px;
  background: rgba(0, 240, 181, 0.1);
  border: 1px solid rgba(0, 240, 181, 0.28);
  border-radius: 16px;
}

.activation-panel h4 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: 28px;
}

.activation-panel > p {
  margin: 10px 0 0;
  font-size: 16px;
}

.activation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}

.activation-status {
  margin: 16px 0 0;
  color: var(--mint);
  font-size: 16px;
}

.result-actions { gap: 24px; margin-top: 18px; }
.result-note { margin: 12px 0 0; color: rgba(253, 254, 253, 0.72); font-size: 16px; text-align: left; }

.trust-close {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px clamp(28px, 3vw, 48px);
  align-items: center;
}

.trust-close h2 { font-size: clamp(32px, 3.8vw, 50px); }
.trust-close > p { grid-column: 1; margin: 0; color: var(--slate); font-size: 17px; }
.trust-close > .button { grid-row: 1 / span 2; grid-column: 2; }

.site-footer {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 50px;
  align-items: start;
  padding: 62px var(--page-edge) 34px;
  background: var(--iron-soft);
  color: var(--white);
}

.footer-lead { display: flex; align-items: center; gap: 24px; }
.footer-brand { width: 148px; opacity: 0.92; }
.footer-lead p { margin: 0; color: rgba(253, 254, 253, 0.56); font-size: 13px; }

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px 28px;
  font-size: 13px;
}

.site-footer nav a,
.footer-contact { min-height: 44px; display: inline-flex; align-items: center; }
.footer-contact { gap: 9px; color: var(--mint); font-size: 13px; font-weight: 700; }

.site-footer > span {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
  color: rgba(253, 254, 253, 0.4);
  font-size: 11px;
}

.js-motion-ready [data-story-reveal] {
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
}

.js-motion-ready [data-story-reveal].is-visible {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .site-nav > a:not(.nav-plan):hover::after { transform: scaleX(1); transform-origin: left center; }
  .nav-plan:hover, .button-ink:hover { background: #0d3a52; }
  .button-primary:hover { background: #12ddb0; }
  .text-link:hover, .footer-contact:hover { color: #007d60; }
  .text-link-light:hover { color: var(--mint); }
  .option:hover { background: rgba(253, 254, 253, 0.06); }
  .operator-rail button:hover { background: rgba(253, 254, 253, 0.06); color: var(--white); }
  .operator-scenarios button:hover { color: var(--white); }
  .operator-journey-toggle:hover { background: rgba(253, 254, 253, 0.11); color: var(--white); }
}

@media (max-width: 1160px) {
  .site-header { min-height: 64px; }
  .menu-button { display: inline-flex; }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 76px;
    right: var(--page-gutter);
    left: var(--page-gutter);
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(247, 249, 247, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms var(--ease-out), opacity 180ms var(--ease-out);
  }

  .site-nav.is-open { visibility: visible; transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }

  .site-nav > a,
  .nav-plan { min-height: 48px; margin: 0; padding: 12px 14px !important; }

  .site-nav > a:not(.nav-plan)::after { display: none; }
  .nav-plan { margin-top: 6px; justify-content: space-between; }
}

@media (max-width: 1080px) {
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-copy { max-width: 760px; }
  .coverage-plan { width: min(760px, 100%); margin: 0 auto; }

  .platform-intro,
  .pressure-intro,
  .partner-statement,
  .builder-heading { grid-template-columns: 1fr; gap: 18px; }

  .builder-heading { gap: 22px; }
  .builder-offer { padding-top: 18px; padding-left: 0; border-top: 1px solid rgba(7, 35, 54, 0.2); border-left: 0; }
  .builder-offer ul { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 20px; }
  .trial-paths { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trial-paths article:nth-child(odd) { border-left: 0; }
  .trial-paths article:nth-child(n+3) { border-top: 1px solid rgba(253, 254, 253, 0.12); }
  .operator-journey-map { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .operator-journey-map li:nth-child(odd) { border-left: 0; }

  .operator-journey { grid-template-columns: minmax(0, 1fr) auto; }
  .operator-journey-copy { grid-column: 1; }
  .operator-journey-toggle { grid-row: 1; grid-column: 2; }
  .operator-scenarios { grid-row: 2; grid-column: 1 / -1; overflow-x: auto; scrollbar-width: thin; }
  .operator-journey-progress { grid-column: 1; }
  .operator-journey-count { grid-column: 2; }

  .operator-body { grid-template-columns: 1fr; padding-top: 0; }
  .operator-rail { width: 100%; max-width: 100%; grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: hidden; padding: 12px; border-right: 0; border-bottom: 1px solid rgba(253, 254, 253, 0.1); }
  .operator-rail button { min-width: 0; padding: 10px 8px 10px 28px; font-size: 12px; }
  .operator-rail button::before { left: 12px; width: 6px; height: 6px; }
  .operator-cinema { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); }
  .operator-outcome { grid-column: 1 / -1; min-height: 300px; }

  .capacity-timeline { grid-template-columns: 1fr; }
  .capacity-clock-hiring { text-align: left; }
  .capacity-clock-hiring p { margin-left: 0; }
  .capacity-bridge { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; }
  .capacity-bridge::before, .capacity-bridge::after { grid-row: 1 / span 3; }
  .capacity-bridge img, .capacity-bridge > span, .capacity-bridge b { grid-column: 2; }
  .capacity-bridge::before { grid-column: 1; }
  .capacity-bridge::after { grid-column: 3; }

  .cost-intro { grid-template-columns: 1fr; gap: 20px; }
  .cost-intro > p { margin: 0; }

  .platform-intro > p,
  .pressure-intro > p,
  .partner-statement > p,
  .builder-heading > p { margin-bottom: 0; }

  .trust-close { grid-template-columns: minmax(0, 1fr) auto; }
  .trust-close .button { grid-column: 2; }
}

@media (max-width: 860px) {
  :root { --page-gutter: 18px; }
  html { scroll-padding-top: 86px; }
  .hero h1 span { font-size: clamp(27px, 8.5vw, 40px); }
  .site-header { min-height: 64px; padding: 0 var(--page-edge); }
  .menu-button { display: inline-flex; }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 76px;
    right: var(--page-gutter);
    left: var(--page-gutter);
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(247, 249, 247, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms var(--ease-out), opacity 180ms var(--ease-out);
  }

  .site-nav.is-open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }

  .site-nav > a,
  .nav-plan { min-height: 48px; margin: 0; padding: 12px 14px !important; }

  .site-nav > a:not(.nav-plan)::after { display: none; }
  .nav-plan { margin-top: 6px; justify-content: space-between; }
  .builder-progress { grid-template-columns: minmax(170px, auto) minmax(0, 1fr); }
  .builder-progress > strong { display: none; }
  .builder-offer ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan-lead-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan-lead-form .button { grid-column: 1 / -1; width: 100%; }
  .operator-chrome b { display: none; }
  .capacity-timeline { grid-template-columns: 1fr; }
  .capacity-bridge { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; }
  .capacity-bridge::before, .capacity-bridge::after { grid-row: 1 / span 3; }
  .capacity-bridge img, .capacity-bridge > span, .capacity-bridge b { grid-column: 2; }
  .capacity-bridge::before { grid-column: 1; }
  .capacity-bridge::after { grid-column: 3; }
  .growth-system { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .growth-system > span:nth-child(3) { border-left: 0; border-top: 1px solid rgba(253, 254, 253, 0.14); }
  .growth-system > span:nth-child(4) { border-top: 1px solid rgba(253, 254, 253, 0.14); }
  .staffing-sides { grid-template-columns: 1fr; }
  .staffing-side + .staffing-side { border-top: 1px solid var(--line); border-left: 0; }
  .staffing-payoff { grid-template-columns: 1fr; gap: 20px; }

  .learning-scene { grid-template-columns: 1fr; }
  .learning-copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .learning-scene::before { right: 20px; left: auto; transform: none; }
  .learning-visual { min-height: 360px; }
  .operator-body { grid-template-columns: 1fr; padding-top: 0; }
  .operator-rail { width: 100%; max-width: 100%; grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: hidden; padding: 12px; border-right: 0; border-bottom: 1px solid rgba(253, 254, 253, 0.1); }
  .operator-rail button { min-width: 0; padding: 10px 8px 10px 28px; font-size: 12px; }
  .operator-rail button::before { left: 12px; width: 6px; height: 6px; }
  .operator-cinema { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); }
  .operator-outcome { grid-column: 1 / -1; min-height: 300px; }
  .start-system { grid-template-columns: 1fr; }
  .start-system article { min-height: 0; }
  .start-system article + article { border-top: 1px solid rgba(253, 254, 253, 0.13); border-left: 0; }
  .ai-explained { grid-template-columns: 1fr; gap: 48px; }
  .education-intro { position: static; }
  .option-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .coverage-route { grid-template-columns: 1fr; }
  .coverage-connector { height: 50px; }
  .coverage-connector i { width: 1px; height: 100%; background: linear-gradient(var(--mint), var(--blue)); }
  .coverage-connector svg { transform: rotate(90deg); }
  .trust-close { grid-template-columns: 1fr; gap: 18px; }
  .trust-close > p,
  .trust-close .button { grid-row: auto; grid-column: 1; justify-self: start; }
  .site-footer { grid-template-columns: 1fr auto; }
  .footer-lead { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --page-gutter: 14px; }
  .plan-builder { padding-top: 64px; padding-bottom: 88px; }
  .plan-builder .builder-heading h2 { font-size: clamp(32px, 8.4vw, 36px); }
  .builder-urgency { margin-top: 14px; }
  .builder-shell { margin-top: 26px; }
  .preview-ribbon { gap: 6px; font-size: 10px; }
  .brand { width: 130px; }
  .hero::before, .hero::after { display: none; }
  .hero-grid { gap: 46px; padding: 66px 0 62px; }
  .hero h1 { font-size: clamp(30px, 9.4vw, 52px); }
  .hero-lede { margin-top: 22px; font-size: 17px; }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
  }

  .hero-actions .button { width: 100%; }
  .product-frame { border-radius: 18px; }

  .product-demo-label,
  .product-coverage,
  .product-footer > strong,
  .owner-panel { display: none; }

  .product-flow { padding-right: 12px; padding-left: 12px; }
  .product-flow b { font-size: 10px; }
  .product-brief { padding: 18px 16px 14px; }
  .product-brief h2 { font-size: 21px; }
  .product-body { grid-template-columns: 1fr; padding: 0 10px 10px; }
  .operator-journey-copy,
  .product-brief h2,
  .operator-surface-head > div,
  .operator-cinema,
  .operator-signal blockquote,
  .operator-signal > p,
  .operator-route-track,
  .operator-outcome > strong,
  .operator-outcome > p { min-block-size: 0; }
  .workstream { padding: 10px; }
  .workstream-row { grid-template-columns: 32px minmax(0, 1fr); min-height: 60px; }
  .workstream-row > small { display: none; }
  .product-footer { padding: 10px 14px; }

  .hero-proof {
    grid-template-columns: 1fr;
    padding: 14px 0;
  }

  .hero-proof span { min-height: 46px; padding: 10px 4px; }
  .hero-proof span + span { border-top: 1px solid rgba(253, 254, 253, 0.1); border-left: 0; }
  .section { padding: 82px 0; }
  .section h2 { font-size: clamp(34px, 10vw, 46px); }
  .pressure-intro { justify-items: start; gap: 22px; text-align: left; }
  .pressure-intro h2,
  .pressure-intro > p { margin-left: 0; }
  .staffing-contrast { border-radius: 16px; }
  .staffing-contrast-head { align-items: flex-start; flex-direction: column; gap: 8px; padding: 20px; }
  .staffing-side { padding: 32px 20px; }
  .staffing-side > strong { font-size: 44px; }
  .staffing-payoff { padding: 24px 20px; }
  .cost-sources { font-size: 13px; }
  .pressure-proof { width: 100%; justify-self: stretch; gap: 9px; padding-bottom: 24px; }
  .pressure-proof strong { font-size: 36px; }
  .pressure-proof small { font-size: 15px; }

  .operator-journey { gap: 16px; padding: 18px 16px 16px; }
  .operator-journey-copy strong { font-size: 18px; }
  .operator-journey-copy small { font-size: 12px; }
  .operator-scenarios { margin-right: -16px; padding-right: 16px; }
  .operator-scenarios button { min-height: 44px; padding: 9px 11px; font-size: 12px; }
  .operator-journey-toggle { padding: 8px 12px; }
  .pressure-scene { padding: 30px 20px; border-radius: 18px; }
  .capacity-timeline { gap: 38px; margin-top: 38px; }
  .capacity-clock strong { font-size: clamp(58px, 22vw, 86px); }
  .capacity-clock-hiring strong { font-size: clamp(54px, 18vw, 72px); }
  .capacity-clock-hiring { text-align: left; }
  .capacity-clock-hiring p { margin-left: 0; }
  .capacity-clock p { margin-top: 16px; }
  .capacity-bridge { grid-template-columns: 1fr; justify-items: start; text-align: left; }
  .capacity-bridge::before, .capacity-bridge::after { display: none; }
  .capacity-bridge img, .capacity-bridge > span, .capacity-bridge b { grid-column: 1; }
  .capacity-bridge img { width: 48px; height: 48px; }
  .capacity-owner { align-items: flex-start; flex-direction: column; gap: 8px; margin-top: 38px; }
  .growth-system { grid-template-columns: 1fr; }
  .growth-system > span { padding: 20px 0; }
  .growth-system > span + span { border-top: 1px solid rgba(253, 254, 253, 0.14); border-left: 0; }
  .growth-advisor { grid-template-columns: 1fr; gap: 14px; }
  .learning-intro { text-align: left; }
  .learning-intro > p { margin-left: 0; }
  .learning-loop { gap: 46px; margin-top: 58px; }
  .learning-loop::before { left: 26px; }
  .learning-scene { min-height: 0; border-radius: 20px; }
  .learning-copy { padding: 34px 22px; }
  .learning-copy h3 { margin-top: 16px; font-size: 27px; }
  .learning-copy p { margin-top: 16px; font-size: 16px; }
  .learning-visual { min-height: 340px; padding: 24px 18px; }
  .signal-message { width: 100%; padding: 14px; }
  .signal-message-rule, .signal-message-rivvet { margin-right: 0; margin-left: 0; }
  .insight-window > strong { padding: 26px 18px 20px; }
  .insight-window > div { margin: 0 18px; }
  .insight-window header, .insight-window footer { align-items: flex-start; flex-direction: column; padding: 14px 18px; }
  .insight-window footer b { width: 100%; text-align: center; }
  .outcome-window { padding: 28px 20px; }
  .learning-promise { align-items: flex-start; justify-content: flex-start; text-align: left; }
  .platform .platform-intro { grid-template-columns: 1fr; align-items: flex-start; gap: 18px; text-align: left; }
  .platform-intro > p { margin-left: 0; }
  .platform-intro > .button { width: 100%; }
  .operator-workspace { border-radius: 18px; }
  .operator-chrome { padding: 12px 16px; }
  .operator-chrome img { width: 108px; }
  .operator-chrome b { display: none; }
  .operator-run-state span { display: none; }
  .operator-rail button { min-width: 122px; padding-left: 34px; font-size: 13px; }
  .operator-body { padding: 0 8px 8px; }
  .operator-surface { padding: 30px 18px; border-radius: 14px; }
  .operator-surface-head { gap: 16px; }
  .operator-surface-head h3 { font-size: 31px; }
  .operator-surface-head p { font-size: 15px; }
  .operator-live { display: none; }
  .operator-cinema { grid-template-columns: 1fr; margin-top: 34px; border-radius: 16px; }
  .operator-signal { min-height: 0; padding: 26px 22px 30px; border-right: 0; border-bottom: 1px solid var(--line); }
  .operator-signal-mark { width: 52px; height: 52px; margin: 30px 0 22px; }
  .operator-signal-mark span:nth-child(2) { width: 34px; height: 34px; }
  .operator-signal-mark span:nth-child(3) { width: 52px; height: 52px; }
  .operator-signal blockquote { font-size: 19px; }
  .operator-signal > p,
  .operator-route-step p,
  .operator-outcome > p,
  .operator-outcome > div b { font-size: 14px; }
  .operator-surface-head > div > span,
  .operator-signal-head > span,
  .operator-route > header > span,
  .operator-outcome > span,
  .operator-outcome > div span,
  .operator-route-step > i,
  .operator-route-step em { font-size: 13px; }
  .operator-route { padding: 26px 22px; }
  .operator-route-step { grid-template-columns: 34px minmax(0, 1fr); gap: 12px; }
  .operator-route-step em { grid-column: 2; justify-self: start; margin-top: -16px; }
  .operator-outcome { grid-column: auto; min-height: 330px; padding: 30px 22px; }
  .operator-foot { align-items: flex-start; flex-direction: column; gap: 6px; }
  .education-questions summary { min-height: 78px; padding: 22px 0; font-size: 20px; }
  .education-questions details p { padding-right: 12px; }
  .builder-shell { border-radius: 18px; }

  .builder-offer ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
  .builder-offer li { min-height: 0; }
  .builder-offer li small { display: none; }
  .builder-offer > p { flex-direction: column; }
  .operator-journey-map { grid-template-columns: 1fr; border-bottom: 0; }
  .operator-journey-map li { min-height: 0; padding: 16px 0; border-bottom: 1px solid rgba(253, 254, 253, 0.16); }
  .operator-journey-map li + li { border-left: 0; }
  .operator-journey-map small { font-size: 16px; }

  .builder-progress { grid-template-columns: 1fr; gap: 18px; padding: 18px; }
  .builder-progress > strong { display: none; }
  .builder-stage { min-height: 0; padding: 36px 18px; }
  .builder-step > h3, .result-head h3 { font-size: 29px; }
  .option-grid, .option-grid-two { grid-template-columns: 1fr; margin-top: 30px; }
  .option { min-height: 80px; }
  .step-actions { margin-top: 32px; }
  .result-head { align-items: flex-start; flex-direction: column; }
  .result-proof { grid-template-columns: 1fr; }
  .plan-lead-form { grid-template-columns: 1fr; padding: 16px; }
  .plan-lead-form .button { width: 100%; }
  .result-actions { align-items: stretch; }
  .result-actions .button { width: 100%; }
  .result-note { text-align: left; }
  .trust-close .button { width: 100%; }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px 28px;
  }

  .footer-lead { align-items: flex-start; flex-direction: column; }
  .site-footer nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .result-at-a-glance { grid-template-columns: 1fr; gap: 12px; }
  .result-at-a-glance li { padding-top: 12px; }
  .result-summary,
  .result-bottleneck,
  .activation-panel > p,
  .activation-status { font-size: 16px; }
  .plan-lead-form { margin-top: 20px; }
  .activation-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .activation-actions .button,
  .activation-actions .text-link {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
  .coverage-route {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .coverage-connector { display: none; }
  .coverage-lane + .coverage-lane { border-top: 1px solid rgba(253, 254, 253, 0.12); }

  .product-demo-label,
  .product-coverage,
  .product-footer > strong,
  .owner-panel { display: none; }

  .product-flow { padding-right: 12px; padding-left: 12px; }
  .product-flow b { font-size: 10px; }
  .product-brief { padding: 18px 16px 14px; }
  .product-brief h2 { font-size: 21px; }
  .product-body { grid-template-columns: 1fr; padding: 0 10px 10px; }
  .workstream { padding: 10px; }
  .workstream-row { grid-template-columns: 32px minmax(0, 1fr); min-height: 60px; }
  .workstream-row > small { display: none; }
  .product-footer { padding: 10px 14px; }
  .product-frame,
  .operator-workspace,
  .staffing-contrast,
  .pressure-scene { max-width: 100%; contain: inline-size; }

  .operator-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .operator-rail button { min-width: 0; padding-left: 28px; }
  .operator-cinema { grid-template-columns: 1fr; }
  .operator-signal { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .operator-outcome { grid-column: auto; }
  .operator-surface { padding: 28px 16px; }
  .operator-surface-head { gap: 14px; }
  .operator-live { display: none; }
  .operator-route-step { grid-template-columns: 34px minmax(0, 1fr); }
  .operator-route-step em { grid-column: 2; justify-self: start; }

  .staffing-payoff-action { justify-items: start; text-align: left; }
  .staffing-payoff-action .button { width: 100%; justify-content: center; }
  .roi-controls { grid-template-columns: 1fr; gap: 4px; }
  .roi-stats { grid-template-columns: 1fr 1fr; gap: 12px 18px; }
  .roi-stat-lead { grid-column: 1 / -1; }
  .staffing-payoff-math > small { font-size: 16px; }
  .start-system article { padding: 30px 22px; }
  .start-system article > strong { margin-top: 24px; }
  .start-system em { padding-top: 22px; }

  .pressure-scene { padding: 28px 18px; }
  .capacity-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "old new" "bridge bridge";
    gap: 26px 18px;
    align-items: start;
  }
  .capacity-clock-demand { grid-area: old; }
  .capacity-clock-hiring { grid-area: new; text-align: left; }
  .capacity-clock strong { font-size: clamp(28px, 8.4vw, 38px); line-height: 1; white-space: normal; }
  .capacity-clock p { margin-top: 12px; font-size: 13px; line-height: 1.45; }
  .capacity-bridge { grid-area: bridge; grid-template-columns: auto minmax(0, 1fr); justify-items: start; gap: 8px 14px; text-align: left; }
  .capacity-bridge::before,
  .capacity-bridge::after { display: none; }
  .capacity-bridge img { grid-row: 1 / span 2; grid-column: 1; width: 44px; height: 44px; }
  .capacity-bridge > span,
  .capacity-bridge b { grid-column: 2; }
  .capacity-bridge b { max-width: none; font-size: 14px; }
  .capacity-owner { margin-top: 30px; text-align: left; }
  .capacity-owner strong { font-size: 24px; }
  .growth-system { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .growth-system > span { padding: 18px 12px; }
  .growth-system > span + span { border-top: 0; border-left: 1px solid rgba(253, 254, 253, 0.14); }
  .growth-system > span:nth-child(3) { border-top: 1px solid rgba(253, 254, 253, 0.14); border-left: 0; }
  .growth-system > span:nth-child(4) { border-top: 1px solid rgba(253, 254, 253, 0.14); }
  .growth-system b { font-size: 16px; }
  .growth-system small { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .js-motion-ready .hero-copy > * { animation: none; }

  .operator-journey-toggle { display: none; }
  .operator-journey-progress i { transition: none; }

  .site-nav,
  .site-nav.is-open,
  .coverage-plan,
  .coverage-plan.is-preparing,
  .coverage-plan.is-ready,
  .work-focus,
  .workstream-row,
  .operator-surface,
  .operator-workspace [data-cinema-beat],
  .operator-workspace:not(.is-cinema-ready) [data-cinema-beat],
  .pressure-scene .capacity-clock,
  .pressure-scene .capacity-bridge,
  .pressure-scene .capacity-owner,
  .pressure-scene .pressure-proof,
  .pressure-scene .growth-system > span,
  .pressure-scene .growth-advisor,
  .education-questions summary svg,
  .js-motion-ready [data-story-reveal],
  .js-motion-ready [data-story-reveal].is-visible {
    transform: none;
    filter: none;
  }

  .site-nav { transition: opacity 160ms ease; }
  .js-motion-ready [data-story-reveal] { opacity: 1; transition: opacity 160ms ease; }
  .js-motion-ready .pressure-scene .capacity-clock,
  .js-motion-ready .pressure-scene .capacity-bridge,
  .js-motion-ready .pressure-scene .capacity-owner,
  .js-motion-ready .pressure-scene .pressure-proof,
  .js-motion-ready .pressure-scene .growth-system > span,
  .js-motion-ready .pressure-scene .growth-advisor { opacity: 1; transition: opacity 160ms ease; }
  .pressure-scene::after { display: none; }
  .pressure-scene .capacity-bridge::before,
  .pressure-scene .capacity-bridge::after { transform: scaleX(1); transition: none; }
  .js-motion-ready .operator-workspace [data-cinema-beat],
  .js-motion-ready .operator-workspace:not(.is-cinema-ready) [data-cinema-beat] { transform: none; opacity: 1; transition: opacity 160ms ease; }
  .operator-route-track::after,
  .operator-workspace.is-cinema-ready .operator-route-track::after { transform: scaleY(1); transition: none; }
  .staffing-bar i { transform: scaleX(var(--bar-scale)); transition: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .product-toolbar { background: var(--paper); backdrop-filter: none; }
  .operator-workspace { background: #101c28; backdrop-filter: none; }
}

@media (prefers-contrast: more) {
  :root { --line: rgba(7, 35, 54, 0.34); --slate: #2b4655; --muted: #3c5664; }

  .site-header,
  .product-frame,
  .builder-shell { border: 2px solid var(--ink); }

  .operator-workspace { border: 2px solid var(--white); }
}

/* Conversion and cinematic refinement */
.nav-plan { font-size: 12px; }

.hero-customer-thread {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  margin: 0 18px 14px;
  padding: 12px 14px;
  overflow: hidden;
  background: linear-gradient(100deg, rgba(0, 240, 181, 0.08), rgba(0, 200, 255, 0.03));
  border: 1px solid rgba(0, 240, 181, 0.14);
  border-radius: 12px;
}

.hero-thread-avatar,
.customer-thread-avatar {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  background: rgba(0, 240, 181, 0.14);
  color: #007b60;
  border: 1px solid rgba(0, 240, 181, 0.24);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-customer-thread > span:nth-child(2),
.customer-thread-person,
.customer-thread-source,
.customer-thread-owner {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.hero-customer-thread b { font-size: 12px; }
.hero-customer-thread small { color: var(--slate); font-size: 11px; }
.hero-customer-thread > i { width: 36px; height: 1px; background: linear-gradient(90deg, var(--mint), var(--blue)); }
.hero-customer-thread > strong { color: #007d60; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; }

.customer-proof {
  width: var(--page);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  margin: 0 auto;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.customer-proof-story h2 {
  max-width: 18ch;
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.05;
}

.customer-proof-story > p:not(.section-kicker) {
  max-width: 42ch;
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 17px;
}

.customer-proof-story ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.customer-proof-story li {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.customer-wordmarks {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.customer-wordmarks > span {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: rgba(7, 35, 54, 0.64);
  border-left: 1px solid var(--line);
  font-size: clamp(13px, 1.35vw, 18px);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-align: center;
}

.operating-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: center;
}

.operating-proof-grid > span {
  min-height: 104px;
  place-items: start;
  align-content: center;
  padding: 18px 20px;
  background: rgba(253, 254, 253, 0.76);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: left;
}

.operating-proof-grid small {
  display: block;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.operating-proof-grid b {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.18;
}

.result-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.result-head > span {
  color: rgba(253, 254, 253, 0.62);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-form-success {
  margin: 16px 0 0;
  padding: 14px 16px;
  background: rgba(0, 240, 181, 0.12);
  color: var(--white);
  border: 1px solid rgba(0, 240, 181, 0.32);
  border-radius: 10px;
  font-size: 14px;
}

.customer-thread {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(150px, 1.15fr) minmax(140px, 1fr) minmax(130px, 0.8fr) auto;
  gap: 20px;
  align-items: center;
  padding: 14px 28px;
  overflow: hidden;
  background: rgba(253, 254, 253, 0.035);
  border-bottom: 1px solid rgba(253, 254, 253, 0.1);
}

.customer-thread::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28%;
  width: 26%;
  content: "";
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(0, 240, 181, 0.12), rgba(0, 200, 255, 0.1), transparent);
  opacity: 0;
  pointer-events: none;
}

.customer-thread-avatar { color: var(--mint); }
.customer-thread small { color: rgba(253, 254, 253, 0.44); font-size: 11px; }
.customer-thread b { overflow: hidden; color: rgba(253, 254, 253, 0.88); font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.customer-thread-status { display: inline-flex; align-items: center; gap: 9px; justify-self: end; }
.customer-thread-status i { width: 7px; height: 7px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 5px rgba(0, 240, 181, 0.1); }
.customer-thread-status b { color: var(--mint); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; }

.operator-workspace.is-cinema-ready .customer-thread::after {
  opacity: 0;
}

.js-motion-ready [data-story-reveal] {
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
}

.js-motion-ready [data-story-reveal].is-visible {
  opacity: 1;
}

@media (max-width: 860px) {
  .customer-proof { grid-template-columns: 1fr; gap: 22px; }
  .customer-wordmarks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .customer-wordmarks > span:nth-child(odd) { border-left: 0; }
  .ai-employee-roster { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ai-employee-roster span:nth-child(odd) { border-left: 0; }
  .operating-proof-grid > span { min-height: 96px; }
  .customer-thread { max-width: 100%; grid-template-columns: auto minmax(0, 1fr) auto; gap: 12px; padding: 12px 18px; contain: inline-size; }
  .customer-thread-source, .customer-thread-owner { display: none; }
}

@media (max-width: 600px) {
  .hero-customer-thread { grid-template-columns: auto minmax(0, 1fr) auto; margin: 0 10px 10px; padding: 10px 12px; }
  .hero-customer-thread > i { display: none; }
  .hero-customer-thread > strong { max-width: 13ch; text-align: right; }
  .customer-proof { padding: 30px 0; }
  .customer-wordmarks { gap: 12px; }
  .customer-wordmarks > span { min-height: 48px; font-size: 14px; }
  .ai-employee-roster { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ai-employee-roster span { min-height: 40px; border-left: 1px solid rgba(253, 254, 253, 0.1); }
  .ai-employee-roster small { font-size: 16px; text-transform: none; }
  .ai-employee-roster span:nth-child(odd),
  .ai-employee-roster span:nth-child(4n+1) { border-left: 0; }
  .operating-proof-grid > span { min-height: 92px; padding: 16px; }
  .operating-proof-grid b { font-size: 16px; }
  .operator-scenarios button { min-height: 44px; font-size: 12px; }
  .operator-journey-toggle { min-width: 44px; min-height: 44px; }
  .customer-thread { padding: 12px 14px; }
  .customer-thread-status b { max-width: 13ch; }
  .result-head { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .operator-workspace.is-cinema-ready .customer-thread::after { animation: none; opacity: 0; }
}

/* Compact product theater: one journey, one workspace, no duplicate roster. */
.operator-workspace { margin-top: clamp(32px, 4vw, 48px); }

.operator-chrome {
  min-height: 64px;
  padding: 13px 22px;
}

.operator-chrome img { width: 118px; }

.operator-journey {
  gap: 14px 20px;
  padding: 16px 22px 14px;
}

.operator-journey-copy { min-block-size: 70px; }
.operator-journey-copy strong { margin-top: 4px; }
.operator-journey-copy small { margin-top: 3px; }

.operator-body {
  min-height: 0;
  grid-template-columns: minmax(0, 1fr);
  padding: 12px;
}

.operator-rail { display: none; }

.operator-surface { padding: clamp(22px, 2.6vw, 34px); }
.operator-surface-head > div { min-block-size: 0; }
.operator-surface-head h3 { margin-top: 6px; font-size: clamp(32px, 3.4vw, 48px); }
.operator-surface-head p { margin-top: 9px; font-size: 15px; }

.operator-cinema {
  grid-template-columns: minmax(190px, 0.72fr) minmax(280px, 1.18fr) minmax(210px, 0.78fr);
  margin-top: 24px;
  min-block-size: 350px;
}

.operator-signal,
.operator-outcome { min-height: 350px; padding: clamp(22px, 2.4vw, 30px); }
.operator-route { padding: clamp(22px, 2.4vw, 30px); }
.operator-signal-mark { margin: 28px 0 22px; }
.operator-signal blockquote { min-block-size: 4.2em; }
.operator-signal > p { min-block-size: 3.1em; margin-top: 12px; }
.operator-route > header { padding-bottom: 14px; }
.operator-route-track { min-block-size: 232px; margin-top: 8px; }
.operator-route-step { min-height: 76px; padding: 11px 0; }
.operator-outcome > strong { min-block-size: 0; margin-top: 16px; }
.operator-outcome > p { min-block-size: 0; margin-top: 12px; }
.operator-outcome > div { padding-top: 18px; }

.operator-foot {
  min-height: 54px;
  padding: 14px 22px;
}

@media (max-width: 860px) {
  .operator-chrome { min-height: 58px; }
  .operator-journey-copy { min-block-size: 0; }
  .operator-body { padding: 10px; }
  .operator-surface { padding: 24px; }
  .operator-cinema { grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr); }
  .operator-signal { min-height: 320px; }
  .operator-outcome {
    min-height: 0;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(170px, 0.72fr) minmax(0, 1.28fr);
    gap: 8px 28px;
    align-items: start;
  }
  .operator-outcome > strong { grid-row: 2 / 4; }
  .operator-outcome > p { grid-row: 1 / 3; grid-column: 2; }
  .operator-outcome > div { grid-row: 3; grid-column: 2; margin-top: 6px; }
}

@media (max-width: 680px) {
  .trial-paths { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trial-paths article { min-height: 0; padding: 16px 14px; }
  .trial-paths article:nth-child(odd) { border-left: 0; }
  .trial-paths article:nth-child(n+3) { border-top: 1px solid rgba(253, 254, 253, 0.14); }
  .trial-paths strong { font-size: 19px; }
  .trial-paths p { max-width: none; font-size: 16px; }
  .platform-cta { width: 100%; }
  .operator-workspace { margin-top: 28px; border-radius: 14px; }
  .operator-chrome { padding: 10px 14px; }
  .operator-chrome img { width: 104px; }
  .operator-run-state { font-size: 12px; }
  .operator-journey { gap: 10px 12px; padding: 14px; }
  .operator-journey-copy { grid-row: 1; grid-column: 1 / -1; }
  .operator-journey-copy small { display: none; }
  .operator-journey-copy strong { font-size: 17px; }
  .operator-scenarios { min-width: 0; grid-row: 2; grid-column: 1; overflow-x: auto; }
  .operator-scenarios button { min-height: 40px; padding: 8px 10px; }
  .operator-journey-toggle { min-width: 40px; min-height: 40px; grid-row: 2; grid-column: 2; padding: 7px 10px; }
  .operator-journey-progress { grid-row: 3; grid-column: 1; }
  .operator-journey-count { grid-row: 3; grid-column: 2; }
  .operator-body { padding: 8px; }
  .operator-surface { padding: 20px 14px; }
  .operator-surface-head { gap: 10px; }
  .operator-surface-head h3 { font-size: 29px; }
  .operator-surface-head p { font-size: 14px; line-height: 1.45; }
  .operator-live { padding: 7px 9px; font-size: 10px; }
  .operator-cinema { grid-template-columns: minmax(0, 1fr); margin-top: 18px; }
  .operator-signal {
    min-height: 0;
    padding: 18px;
  }
  .operator-signal-mark { width: 42px; height: 42px; margin: 18px 0 14px; }
  .operator-signal-mark span:nth-child(2) { width: 28px; height: 28px; }
  .operator-signal-mark span:nth-child(3) { width: 42px; height: 42px; }
  .operator-signal blockquote { min-block-size: 0; font-size: 18px; }
  .operator-signal > p { display: none; }
  .operator-route { padding: 18px; }
  .operator-route-track { min-block-size: 210px; }
  .operator-route-step { min-height: 68px; padding: 9px 0; }
  .operator-route-step p { margin-top: 2px; font-size: 13px; }
  .operator-route-step em { display: none; }
  .operator-outcome {
    min-height: 0;
    display: flex;
    padding: 22px 18px;
  }
  .operator-outcome > strong { margin-top: 12px; font-size: 22px; }
  .operator-outcome > p { margin-top: 10px; font-size: 14px; }
  .operator-outcome > div { margin-top: 16px; padding-top: 14px; }
  .operator-foot { min-height: 50px; padding: 12px 16px; }
  .operator-foot b { font-size: 13px; line-height: 1.4; }
}

/* ---------------------------------------------------------------------------
   RIV-851 phase C2: promoting the preview to the production homepage.

   1. The trade strip is generated from data/verticals.json, so it did not exist
      in the preview and had no styles. Twelve chips in a block-level paragraph
      ran 551px wide inside a 390px viewport.
   2. Explanatory copy sat between 11px and 14px. That is defensible on a
      desktop preview and not on a phone, and the two worst cases were the
      pricing contract and the house line, which are the sentences a shop owner
      most needs to be able to read. All-caps kickers stay small: they are
      labels, not explanatory copy.
   --------------------------------------------------------------------------- */

.learning-trades {
  display: flex;
  /* Sibling of .learning-promise, not a child: inside it the strip became a third column
     and squeezed the sentence to two words per line at 390px. */
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 8px;
  margin: 14px 0 0;
  padding: 0;
  max-width: 100%;
}

.learning-trades span {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(0, 240, 181, 0.24);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--ink, inherit);
}

@media (max-width: 600px) {
  .hero-proof span,
  .cost-sources span,
  .capacity-clock p,
  .site-footer .footer-lead p,
  .footer-house-line b,
  .staffing-payoff-action b,
  .product-footer span b,
  .workstream-row div b {
    font-size: 16px;
    line-height: 1.45;
  }

  .learning-trades span {
    font-size: 13px;
  }
}

/* Legacy anchor targets for /#preview and /#calculator. Zero visual footprint; they exist
   so links written before v17, including external ones we cannot edit, still land on the
   section that took over the job. scroll-margin clears the sticky header. */
.compat-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 96px;
}

/* The eight employees (RIV-851).
   Two earlier passes failed here. A flat centred row of eight read as a spec sheet, and
   three text lists left Growth and Front office ending early while Ops ran long, so the
   raggedness of a 2/2/4 split became the thing you noticed. Cards give every employee the
   same weight, fill a 4x2 grid with no dead column, and carry the group as a label on the
   card instead of as a heading that has to be balanced. Order is unchanged: reading order
   across the grid is the canonical roster order. */
.employee-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: clamp(28px, 4vw, 44px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.employee-card {
  display: grid;
  gap: 6px;
  align-content: start;
  padding: 20px 18px 18px;
  border: 1px solid rgba(253, 254, 253, 0.1);
  border-radius: 14px;
  background: rgba(253, 254, 253, 0.02);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.employee-card-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 4px;
  border-radius: 10px;
  border: 1px solid rgba(0, 240, 181, 0.28);
  background: rgba(0, 240, 181, 0.08);
}

.employee-card-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--mint, #00f0b5);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.employee-card-group {
  margin: 0;
  font-family: var(--mono, ui-monospace, monospace);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 240, 181, 0.72);
}

.employee-card b {
  color: var(--white, #fdfefd);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.employee-card small {
  color: rgba(253, 254, 253, 0.52);
  font-size: 13px;
  line-height: 1.35;
}

@media (hover: hover) and (pointer: fine) {
  .employee-card:hover {
    border-color: rgba(0, 240, 181, 0.34);
    background: rgba(0, 240, 181, 0.05);
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .employee-card { transition: none; }
  .employee-card:hover { transform: none; }
}

@media (max-width: 1080px) {
  .employee-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .employee-grid { gap: 10px; }
  .employee-card { padding: 16px 14px 14px; }
  .employee-card small { font-size: 15px; }
}

/* The cost headline carries an equation that must not break across lines, so its size is
   derived from the width the equation needs rather than from the generic section scale.
   Measured: the phrase renders about 13.8x the font size in px, and the column it sits in is
   roughly the viewport minus the page gutters, so 6.1vw capped at 56px fits from 320px up to
   1440 with margin. Placed last, and with one extra class of specificity, because the
   `.section h2` rules inside later media queries otherwise win on source order. */
.cost.section .cost-intro h2 { font-size: clamp(20px, 6.1vw, 56px); }
