:root {
  --ink: #0b0b0d;
  --ink-2: #484d55;
  --ink-3: #858b95;
  --paper: #f7f8f9;
  --card: #ffffff;
  --hair: #e5e7eb;
  --blue: #1c39bb;
  --blue-bright: #4f6bff;
  --blue-soft: #eaedfb;
  --blue-soft-deep: #dfe4f8;
  --max: 1280px;
  --type-display: clamp(58px, 6.7vw, 96px);
  --type-chapter: clamp(48px, 4.6vw, 64px);
  --type-section: clamp(40px, 3.6vw, 48px);
  --type-component: clamp(24px, 2.1vw, 28px);
  --type-lead: clamp(19px, 1.45vw, 21px);
  --type-body: 17px;
  --space-chapter: clamp(176px, 14vw, 216px);
  --space-section: clamp(128px, 10.5vw, 160px);
  --space-support: clamp(112px, 9vw, 136px);
  --motion-fast: 180ms;
  --motion-medium: 320ms;
  --motion-narrative: 720ms;
  --ease-standard: cubic-bezier(.22, 1, .36, 1);
  --ease-enter: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Schibsted Grotesk", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--blue); color: #fff; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 3px;
}

.shell { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; }
.shell--narrow { width: min(980px, calc(100% - 64px)); margin: 0 auto; }
.mono {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--blue);
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}
.eyebrow::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}
.display {
  margin: 0;
  font-size: var(--type-display);
  font-weight: 600;
  letter-spacing: -.052em;
  line-height: .96;
}
.title {
  margin: 0;
  font-size: var(--type-chapter);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .98;
}
.lede {
  margin: 0;
  color: var(--ink-2);
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: var(--type-lead);
  line-height: 1.48;
}
.body-copy {
  color: var(--ink-2);
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: var(--type-body);
  line-height: 1.62;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(229, 231, 235, .9);
  background: rgba(247, 248, 249, .9);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  will-change: transform;
  transition:
    transform var(--motion-medium) var(--ease-standard),
    box-shadow var(--motion-fast) ease;
}
.site-header[data-scroll-state="hidden"] {
  box-shadow: none;
  transform: translateY(calc(-100% - 3px));
}
.site-header[data-scroll-state="visible"][data-scrolled="true"] {
  box-shadow: 0 14px 30px -26px rgba(11, 11, 13, .5);
}
body::before {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 110;
  height: 2px;
  background: var(--blue);
  content: "";
  pointer-events: none;
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left;
}
.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 68px;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  min-height: 44px;
}
.brand__mark {
  display: grid;
  grid-template: repeat(2, 11px) / repeat(2, 11px);
  gap: 3px;
}
.brand__mark i { border-radius: 3px; background: var(--ink); }
.brand__mark i:last-child { background: var(--blue); }
.brand__word { font-size: 20px; font-weight: 600; letter-spacing: -.045em; }
.site-nav { display: flex; align-items: center; gap: 27px; }
.site-nav__mobile-actions { display: none; }
.site-nav a {
  position: relative;
  min-height: 44px;
  padding: 14px 0 12px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
}
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--motion-fast) ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--ink); }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.site-header__actions { display: flex; align-items: center; justify-self: end; gap: 9px; }
.button--compact { min-height: 40px; padding: 9px 14px; font-size: 14px; }
.menu-button {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--hair);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition:
    background var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    color var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-standard);
}
.button:hover { border-color: var(--blue); background: var(--blue); transform: translateY(-1px); }
.button--quiet { border-color: var(--hair); background: transparent; color: var(--ink); }
.button--quiet:hover { border-color: var(--ink); background: transparent; color: var(--ink); }
.button--light { border-color: #fff; background: #fff; color: var(--ink); }
.button--light:hover { border-color: var(--blue-soft); background: var(--blue-soft); color: var(--ink); }
.button .arrow { font-family: "IBM Plex Mono", monospace; font-size: 12px; }

.hero {
  padding: 92px 0 104px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(460px, .96fr);
  align-items: center;
  gap: clamp(56px, 7vw, 110px);
}
.hero .display { max-width: 11ch; }
.hero .lede { max-width: 620px; margin-top: 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__note { max-width: 560px; margin-top: 15px; color: var(--ink-3); font-family: "IBM Plex Mono", monospace; font-size: 11px; line-height: 1.55; }

.record-figure {
  position: relative;
  min-height: 560px;
  padding: 42px;
  border: 1px solid #daddE4;
  background: #fff;
  box-shadow: 20px 24px 0 var(--blue-soft);
}
.record-figure::before {
  position: absolute;
  top: -1px;
  right: 40px;
  width: 52px;
  height: 5px;
  background: var(--blue);
  content: "";
}
.record-figure__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hair);
}
.record-figure__title { margin-top: 7px; font-size: 20px; font-weight: 600; letter-spacing: -.025em; }
.record-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  white-space: nowrap;
}
.record-status::before { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); content: ""; }
.record-events { position: relative; padding: 18px 0 5px 25px; }
.record-events::before {
  position: absolute;
  top: 25px;
  bottom: 28px;
  left: 6px;
  width: 1px;
  background: var(--hair);
  content: "";
}
.record-event {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid var(--hair);
}
.record-event::before {
  position: absolute;
  top: 22px;
  left: -23px;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 3px;
  background: var(--ink);
  box-shadow: 0 0 0 1px var(--hair);
  content: "";
}
.record-event:nth-child(3)::before { background: var(--blue); }
.record-event__time { color: var(--ink-3); font-family: "IBM Plex Mono", monospace; font-size: 10px; }
.record-event__name { font-size: 13px; font-weight: 600; }
.record-event__source { color: var(--ink-3); font-family: "IBM Plex Mono", monospace; font-size: 9px; }
.record-boundary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin-top: 28px;
  padding: 18px;
  background: var(--blue-soft);
}
.record-boundary__mark {
  display: grid;
  grid-template: repeat(2, 8px) / repeat(2, 8px);
  align-self: start;
  gap: 2px;
  margin-top: 3px;
}
.record-boundary__mark i { border-radius: 2px; background: var(--ink); }
.record-boundary__mark i:last-child { background: var(--blue); }
.record-boundary p { margin: 5px 0 0; color: var(--ink-2); font-family: "Schibsted Grotesk", sans-serif; font-size: 13px; line-height: 1.45; }

.section { padding: var(--space-section) 0; }
.section--tight { padding: var(--space-support) 0; }
.section--periwinkle { background: var(--blue-soft); }
.section--periwinkle-deep { background: var(--blue-soft-deep); }
.section--dark { background: var(--ink); color: #fff; }
.section--mission-soft { background: #eef0fb; color: var(--ink); }
.section--mission-soft .body-copy { color: var(--ink-2); }
.mission-link { color: var(--blue); font-weight: 600; }
.about-closing {
  margin-top: 88px;
  padding-top: 68px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.home-page .section { padding: var(--space-section) 0; }
.home-page .section--tight { padding: var(--space-support) 0; }
.home-page .section--chapter { padding: var(--space-chapter) 0; }
.home-page .hero { padding-top: 72px; padding-bottom: 82px; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: clamp(72px, 8vw, 112px);
  align-items: start;
  margin-bottom: 88px;
}
.section-heading .title { max-width: 14ch; }
.section-heading .lede { max-width: 580px; }
.section-heading--solo {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  max-width: 880px;
}
.section-heading--solo .title { max-width: 18ch; }
.section-heading--solo .lede {
  max-width: 680px;
  margin-top: 26px;
}
.section-heading--thesis .title { max-width: 20ch; }
.section-heading--comparison .lede {
  max-width: 780px;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.38;
}
.component-note,
.scope-note {
  color: var(--ink-2);
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.component-note {
  margin: 16px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--blue);
}
.scope-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(28, 57, 187, .22);
}
.scope-note--crosswalk { margin-top: 20px; }

.reason {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  align-items: start;
  gap: clamp(72px, 8vw, 112px);
}
.reason__statement {
  max-width: 14ch;
  margin: 0;
  font-size: var(--type-chapter);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .98;
}
.reason__aside {
  width: 100%;
  max-width: 28rem;
  padding-top: 28px;
  border-top: 2px solid var(--ink);
}
.reason__aside p { margin: 0; }
.reason__aside a {
  display: inline-flex;
  gap: 8px;
  margin-top: 22px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}
.reason--home {
  grid-template-columns: minmax(0, 1fr);
  gap: 42px;
}
.reason--home .reason__statement {
  max-width: 13ch;
}
.reason--home .reason__aside {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  max-width: none;
  padding-top: 26px;
}
.reason--home .reason__aside .lede {
  max-width: 58ch;
}
.reason--home .reason__aside a {
  flex: 0 0 auto;
  margin-top: 3px;
}
.market-evidence {
  margin-top: 68px;
  padding: 30px 0 0;
  border-top: 1px solid rgba(28, 57, 187, .3);
}
.market-evidence__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
}
.market-evidence__stat {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  padding-right: clamp(36px, 5vw, 72px);
}
.market-evidence__stat + .market-evidence__stat {
  padding-right: 0;
  padding-left: clamp(36px, 5vw, 72px);
  border-left: 1px solid rgba(28, 57, 187, .2);
}
.market-evidence__stat dt {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 3.5vw, 50px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .94;
}
.market-evidence__stat dd {
  max-width: 26ch;
  margin: 2px 0 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}
.market-evidence__source {
  display: block;
  width: fit-content;
  margin-top: 20px;
  color: var(--ink-3);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  line-height: 1.5;
  transition: color .18s ease;
}
.market-evidence__source:hover { color: var(--blue); }
.market-evidence__source:focus-visible { outline: 2px solid var(--blue); outline-offset: 5px; }
.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(28, 57, 187, .35);
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color .18s ease, color .18s ease;
}
.editorial-link:hover { border-color: currentColor; }
.editorial-link:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }

.section-heading--process {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
  margin-bottom: 96px;
  text-align: center;
}
.section-heading--process .title {
  max-width: 19ch;
  margin-right: auto;
  margin-left: auto;
  font-size: var(--type-section);
  line-height: 1.02;
}
.section-heading--process .lede {
  max-width: 55ch;
  margin: 28px auto 0;
  padding-top: 0;
}
.section-heading--process .eyebrow {
  margin-bottom: 24px;
  font-size: 13px;
}
.mechanism {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
.mechanism::before {
  position: absolute;
  top: 21px;
  right: 16.6667%;
  left: 16.6667%;
  z-index: 0;
  height: 2px;
  background: rgba(28, 57, 187, .55);
  content: "";
}
.mechanism__step {
  position: relative;
  min-height: 270px;
  padding: 0 clamp(28px, 3.5vw, 52px);
  text-align: center;
}
.mechanism__step + .mechanism__step { padding-left: clamp(28px, 3.5vw, 52px); }
.mechanism__step h3 {
  margin: 10px 0 13px;
  font-size: var(--type-component);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.08;
}
.mechanism__phase {
  display: block;
  margin-top: 34px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
}
.mechanism__step p {
  max-width: 34ch;
  margin: 0 auto;
  color: var(--ink-2);
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: var(--type-body);
  line-height: 1.62;
}
.mechanism__number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--paper);
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 auto;
}
.home-product { display: grid; gap: 72px; }
.home-product__intro {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  align-items: end;
  gap: clamp(72px, 8vw, 112px);
}
.home-product__intro .title { max-width: 13ch; }
.home-product__aside {
  max-width: 32rem;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .28);
}
.home-product__aside .body-copy { margin: 0 0 28px; }
.home-product__intro--reveal {
  display: block;
  max-width: 920px;
}
.home-product__intro--reveal .title {
  max-width: 15ch;
}
.home-product__intro--reveal .home-product__aside {
  max-width: 44rem;
  margin-top: 26px;
  padding-top: 0;
  border-top: 0;
}
.home-product__intro--reveal .home-product__aside .body-copy {
  max-width: 58ch;
  margin-bottom: 26px;
}
.home-product .product-console {
  min-height: 580px;
  box-shadow: 18px 20px 0 rgba(79, 107, 255, .16);
  color: var(--ink);
}
.with-arkna {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 96px;
}
.with-arkna__title {
  margin: 0;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .9;
}
.with-arkna__title span { color: var(--blue); }
.outcome-list { border-top: 2px solid var(--ink); }
.outcome {
  display: grid;
  grid-template-columns: 38px 170px 1fr;
  align-items: start;
  gap: 18px;
  padding: 25px 4px;
  border-bottom: 1px solid var(--hair);
}
.outcome__mark {
  display: grid;
  grid-template: repeat(2, 7px) / repeat(2, 7px);
  gap: 2px;
  margin-top: 4px;
}
.outcome__mark i { border-radius: 2px; background: var(--ink); }
.outcome:nth-child(1) .outcome__mark i:nth-child(1),
.outcome:nth-child(2) .outcome__mark i:nth-child(2),
.outcome:nth-child(3) .outcome__mark i:nth-child(3),
.outcome:nth-child(4) .outcome__mark i:nth-child(4) { background: var(--blue); }
.outcome h3 { margin: 0; font-size: 23px; letter-spacing: -.03em; }
.outcome p {
  margin: 0;
  color: var(--ink-2);
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}
.with-arkna--benefits {
  display: block;
}
.with-arkna--benefits .with-arkna__title {
  margin-bottom: 72px;
}
.with-arkna--benefits .outcome-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.with-arkna--benefits .outcome {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  gap: 0;
  padding: 28px 28px 34px;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.with-arkna--benefits .outcome:first-child { padding-left: 0; }
.with-arkna--benefits .outcome:last-child {
  padding-right: 0;
  border-right: 0;
}
.with-arkna--benefits .outcome h3 {
  margin: 68px 0 12px;
}
.with-arkna--benefits .outcome p {
  max-width: 28ch;
}
.product-stage {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
  gap: 88px;
  align-items: center;
}
.section--dark .eyebrow { color: #91a3ff; }
.section--dark .lede,
.section--dark .body-copy { color: rgba(255, 255, 255, .68); }
.product-stage__copy .title { max-width: 10ch; }
.product-stage__copy .body-copy { max-width: 46ch; margin: 26px 0 32px; }
.product-stage .button--quiet { border-color: rgba(255, 255, 255, .25); color: #fff; }
.product-stage .button--quiet:hover { border-color: #fff; color: #fff; }
.sequence-figure {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: var(--card);
  color: var(--ink);
  box-shadow: 14px 16px 0 rgba(79, 107, 255, .13);
}
.sequence-figure__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--hair);
}
.sequence-figure__head strong { font-size: 14px; font-weight: 600; }
.sequence-figure__head span { color: var(--blue); }
.sequence-figure__events {
  position: relative;
  margin: 0;
  padding: 22px 0 12px;
  list-style: none;
}
.sequence-figure__events::before {
  position: absolute;
  top: 50px;
  bottom: 40px;
  left: 87px;
  width: 1px;
  background: var(--hair);
  content: "";
}
.sequence-figure__events li {
  position: relative;
  display: grid;
  grid-template-columns: 70px 12px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--hair);
}
.sequence-figure__events li.is-highlighted {
  background: var(--blue-soft);
}
.sequence-figure__events time {
  color: var(--ink-3);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}
.sequence-figure__events i {
  z-index: 1;
  width: 8px;
  height: 8px;
  border: 2px solid var(--card);
  border-radius: 2px;
  background: var(--ink);
  box-shadow: 0 0 0 1px var(--hair);
}
.sequence-figure__events .is-highlighted i { background: var(--blue); }
.sequence-figure__events strong,
.sequence-figure__events small { display: block; }
.sequence-figure__events strong { font-size: 14px; }
.sequence-figure__events small {
  margin-top: 2px;
  color: var(--ink-3);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}
.sequence-figure__foot {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  color: var(--ink-3);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}
.sequence-figure__foot strong { color: var(--blue); font-weight: 600; }

.review-surface {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .25);
  background: #fff;
  color: var(--ink);
  box-shadow: 18px 18px 0 rgba(79, 107, 255, .14);
}
.review-surface__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(28, 57, 187, .18);
  background: #fff;
}
.review-surface__top strong { display: block; margin-top: 6px; font-size: 16px; letter-spacing: -.02em; }
.review-surface__label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}
.review-surface__state {
  flex: none;
  padding: 7px 10px;
  border: 1px solid rgba(28, 57, 187, .25);
  color: var(--blue);
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}
.review-brief {
  margin: 0;
  padding: 10px 24px;
  list-style: none;
}
.review-brief__item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hair);
}
.review-brief__item:last-child { border-bottom: 0; }
.review-brief__number {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(28, 57, 187, .24);
  border-radius: 50%;
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
}
.review-brief__answer span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-3);
  font-size: 12px;
}
.review-brief__answer strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}
.review-brief__source {
  color: var(--ink-3);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}
.review-surface__outputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border-top: 1px solid rgba(28, 57, 187, .18);
  background: var(--blue-soft);
}
.review-surface__outputs strong { font-size: 13px; font-weight: 600; }
.review-surface__outputs span {
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
}

.readers {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 104px;
}
.readers__image { width: min(100%, 500px); mix-blend-mode: multiply; filter: brightness(1.18) contrast(1.06); }
.readers--editorial {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(72px, 8vw, 120px);
}
.readers--editorial > div {
  grid-column: 1;
  grid-row: 1;
}
.readers--editorial .readers__image {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}
.reader-list { margin-top: 42px; border-top: 2px solid var(--ink); }
.reader {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--hair);
  font-family: "Schibsted Grotesk", sans-serif;
}
.reader strong { color: var(--ink); font-family: "Schibsted Grotesk", sans-serif; font-weight: 600; }
.reader span { color: var(--ink-2); }

.mission {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 80px;
  align-items: start;
}
.mission blockquote {
  max-width: 18ch;
  margin: 0;
  font-size: var(--type-chapter);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .98;
}
.mission__aside {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .25);
}
.mission__aside .body-copy { margin: 22px 0 28px; }
.mission--home {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
  text-align: center;
}
.mission--home blockquote {
  max-width: 17ch;
}
.mission--home .mission__aside {
  max-width: 640px;
  margin-top: 52px;
  padding-top: 0;
  border-top: 0;
}
.mission--home .mission__aside .body-copy {
  margin: 18px 0 24px;
}
.mission__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(145, 163, 255, .5);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.mission__link:hover { border-color: #fff; }
.mission__link:focus-visible { outline: 2px solid #91a3ff; outline-offset: 5px; }
.compliance-context-copy { margin: 28px 0 24px; font-size: 17px; }

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 64px;
}
.cta .title { max-width: 15ch; }
.cta p { max-width: 58ch; margin: 22px 0 0; }

.site-footer { padding: 76px 0 36px; background: var(--ink); color: #fff; }
.site-footer__top {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 58px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.site-footer .brand__mark i { background: #f2f2f2; }
.site-footer .brand__mark i:last-child { background: var(--blue-bright); }
.site-footer__statement { max-width: 33ch; margin: 18px 0 0; color: rgba(255, 255, 255, .56); font-family: "Schibsted Grotesk", sans-serif; font-size: 14px; line-height: 1.55; }
.site-footer h2 { margin: 0 0 15px; font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: .03em; }
.site-footer__links { display: flex; flex-direction: column; gap: 10px; color: rgba(255, 255, 255, .64); font-family: "Schibsted Grotesk", sans-serif; font-size: 14px; }
.site-footer__links a:hover { color: #fff; }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
  color: rgba(255, 255, 255, .46);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}
.site-footer__bottom div { display: flex; gap: 24px; }

.page-hero { padding: 72px 0; }
.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 96px;
  align-items: center;
  min-height: 360px;
}
.page-hero--context {
  min-height: clamp(520px, 64svh, 580px);
  padding-top: 88px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--hair);
}
.page-hero--context .page-hero__grid {
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  align-items: start;
  gap: clamp(72px, 7vw, 112px);
  min-height: 0;
}
.page-hero--context .display {
  max-width: 13.5ch;
  font-size: clamp(50px, 4.85vw, 62px);
  letter-spacing: -.045em;
  line-height: 1.01;
}
.display-accent { color: var(--blue); }
.page-hero .lede { max-width: 610px; }
.page-hero__aside {
  align-self: start;
  padding: 24px 0 4px;
  border-top: 1px solid var(--ink);
}
.page-hero__aside p { margin: 0 0 24px; }
.page-hero--context .page-hero__grid--media {
  grid-template-columns: minmax(0, 7fr) minmax(380px, 5fr);
  align-items: center;
}
.page-hero--engagement .display { max-width: 13ch; }
.page-hero__copy .lede {
  max-width: 590px;
  margin: 28px 0 26px;
}
.context-proof {
  width: min(100%, 560px);
  margin: 0 8px 0 0;
  justify-self: end;
  border: 1px solid #d8dce5;
  background: var(--card);
  box-shadow: 9px 10px 0 var(--blue-soft-deep);
}
.context-proof figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--hair);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}
.context-proof figcaption span { color: var(--blue); font-weight: 600; }
.context-proof figcaption strong { color: var(--ink-3); font-weight: 500; }
.context-boundary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  min-height: 214px;
}
.context-boundary__sources {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 10px;
  padding: 22px;
}
.context-boundary__sources span {
  padding: 11px 8px;
  border: 1px solid var(--hair);
  background: var(--paper);
  color: var(--ink-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  text-align: center;
}
.context-boundary__record {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  grid-column: 2;
  border-left: 1px solid #c8d0f5;
  background: var(--blue-soft);
  text-align: center;
}
.context-boundary__record strong { font-size: 14px; }
.context-boundary__record small {
  color: var(--ink-3);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}
.context-boundary__mark {
  grid-template: repeat(2, 7px) / repeat(2, 7px);
  gap: 2px;
}
.context-boundary__mark i { border-radius: 2px; background: var(--ink); }
.context-boundary__mark i:last-child { background: var(--blue); }
.context-riso--hero {
  position: relative;
  justify-self: end;
  width: min(100%, 470px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
}
.context-riso--hero img {
  position: absolute;
  height: auto;
  mix-blend-mode: multiply;
  filter: brightness(1.14) contrast(1.02);
}
.context-riso--hero img:not(:first-child) { opacity: 0; }
.context-riso--engagement img {
  top: -19%;
  left: -8%;
  width: 118%;
}
.context-riso--compliance {
  width: min(100%, 440px);
}
.context-riso--compliance img {
  top: -7%;
  left: -5%;
  width: 110%;
}
@keyframes riso-boil-b {
  0%, 33.3% { opacity: 0; }
  33.4%, 66.6% { opacity: 1; }
  66.7%, 100% { opacity: 0; }
}
@keyframes riso-boil-c {
  0%, 66.6% { opacity: 0; }
  66.7%, 100% { opacity: 1; }
}
[data-riso-boil].is-boiling .context-riso__frame-b {
  animation: riso-boil-b 2.4s linear infinite;
}
[data-riso-boil].is-boiling .context-riso__frame-c {
  animation: riso-boil-c 2.4s linear infinite;
}
.page-hero--about {
  display: flex;
  align-items: center;
  min-height: calc(100svh - 69px);
  padding-top: 64px;
  padding-bottom: 72px;
}
.page-hero--about .display { max-width: 14ch; font-size: clamp(52px, 6vw, 80px); }
.page-hero--about .lede { max-width: 720px; margin-top: 30px; }

.resource-index-hero {
  display: flex;
  align-items: center;
  min-height: 500px;
  padding: 72px 0;
  background: var(--blue-soft);
}
.resource-index-head {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  align-items: end;
  gap: 96px;
}
.resource-index-head .display {
  max-width: 12ch;
  font-size: clamp(52px, 6.8vw, 92px);
}
.resource-index-intro {
  max-width: 610px;
  padding: 24px 0 3px;
  border-top: 2px solid var(--ink);
}
.resource-index-intro .lede { margin: 0; }
.resource-index-intro .editorial-link {
  margin-top: 26px;
  white-space: normal;
}
.resource-index-list {
  padding: 0 0 96px;
  background: var(--blue-soft);
}
.resource-paths {
  margin-top: 0;
  border-top: 2px solid var(--ink);
}
.resource-path {
  display: grid;
  grid-template-columns: 56px minmax(260px, 1.05fr) minmax(0, 1fr) 30px;
  align-items: start;
  gap: clamp(24px, 3vw, 46px);
  padding: 27px 0 30px;
  border-bottom: 1px solid rgba(28, 57, 187, .22);
  transition: color .18s ease, padding .18s ease;
}
.resource-path:hover { padding-right: 10px; padding-left: 10px; color: var(--blue); }
.resource-path:focus-visible { outline: 2px solid var(--blue); outline-offset: 5px; }
.resource-path__number {
  padding-top: 4px;
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
}
.resource-path strong {
  max-width: 24ch;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.15;
}
.resource-path > span:nth-child(3) {
  max-width: 54ch;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}
.resource-path__arrow {
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
  transition: transform .18s ease;
}
.resource-path:hover .resource-path__arrow { transform: translateX(4px); }

.journey { position: relative; }
.journey::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 27px;
  width: 2px;
  background: var(--blue);
  content: "";
}
.journey__step {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(190px, .45fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  min-height: 180px;
  padding: 24px 0 34px;
  border-bottom: 1px solid rgba(28, 57, 187, .22);
}
.journey__step:last-child { border-bottom: 0; }
.journey__number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
}
.journey__step h3 { margin: 8px 0 0; font-size: 26px; font-weight: 600; letter-spacing: -.03em; }
.journey__step p { max-width: 62ch; margin: 8px 0 0; color: var(--ink-2); font-family: "Schibsted Grotesk", sans-serif; font-size: 16px; line-height: 1.55; }
.engagement-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(28, 57, 187, .24);
  background: rgba(255, 255, 255, .36);
}
.engagement-path::before {
  position: absolute;
  z-index: 2;
  top: -2px;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--blue);
  content: "";
  transform: scaleX(1);
  transform-origin: left;
}
.engagement-stage {
  display: flex;
  min-height: 430px;
  padding: 36px 32px 34px;
  flex-direction: column;
  background: rgba(255, 255, 255, .72);
}
.engagement-stage + .engagement-stage { border-left: 1px solid rgba(28, 57, 187, .2); }
.engagement-stage__head { display: flex; align-items: center; gap: 14px; }
.engagement-stage__number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
}
.engagement-stage__phase { color: var(--blue); font-size: 15px; font-weight: 600; }
.engagement-stage h3 { margin: 56px 0 16px; font-size: 31px; font-weight: 600; letter-spacing: -.04em; line-height: 1; }
.engagement-stage p { max-width: 36ch; margin: 0; color: var(--ink-2); font-family: "Schibsted Grotesk", sans-serif; font-size: 16px; line-height: 1.6; }
.engagement-stage__outcome {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(28, 57, 187, .2);
}
.engagement-stage__outcome span { color: var(--ink-3); font-size: 13px; }
.engagement-stage__outcome strong { font-size: 17px; font-weight: 600; }
.deliverables { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.deliverables__list { border-top: 2px solid var(--ink); }
.deliverable {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(28, 57, 187, .25);
}
.deliverable strong { font-size: 15px; }
.deliverable span { color: var(--ink-2); font-family: "Schibsted Grotesk", sans-serif; font-size: 15px; line-height: 1.5; }

.boundary-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  border: 1px solid rgba(28, 57, 187, .28);
  background: rgba(255, 255, 255, .48);
}
.boundary-map__node { position: relative; min-height: 190px; padding: 30px; }
.boundary-map__node + .boundary-map__node { border-left: 1px solid rgba(28, 57, 187, .28); }
.boundary-map__node:not(:last-child)::after {
  position: absolute;
  top: 48px;
  right: -8px;
  z-index: 2;
  width: 15px;
  height: 15px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  background: var(--blue-soft);
  content: "";
  transform: rotate(45deg);
}
.boundary-map__node h3 { margin: 46px 0 8px; font-size: 19px; letter-spacing: -.02em; }
.boundary-map__node p { margin: 0; color: var(--ink-2); font-family: "Schibsted Grotesk", sans-serif; font-size: 14px; line-height: 1.5; }

.truth-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.truth-pair__item {
  min-height: 360px;
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-top: 3px solid #91a3ff;
  background: #f7f8f9;
  color: var(--ink);
}
.truth-pair__item + .truth-pair__item { background: var(--blue-soft); }
.truth-pair__item .mono { color: var(--blue); }
.truth-pair__item h3 { margin: 82px 0 14px; font-size: 34px; letter-spacing: -.035em; }
.truth-pair__item p { max-width: 42ch; margin: 0; color: var(--ink-2); font-family: "Schibsted Grotesk", sans-serif; font-size: 16px; line-height: 1.6; }

.status-table { width: 100%; border-collapse: collapse; }
.status-table caption {
  padding: 0 0 18px;
  color: var(--ink-2);
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}
.status-table th,
.status-table td { padding: 20px 18px; border-bottom: 1px solid var(--hair); text-align: left; vertical-align: top; }
.status-table th { color: var(--ink-3); font-family: "IBM Plex Mono", monospace; font-size: 10px; font-weight: 600; letter-spacing: .03em; }
.status-table td { font-family: "Schibsted Grotesk", sans-serif; font-size: 15px; line-height: 1.5; }
.status-table td:first-child { width: 26%; color: var(--ink); font-family: "Schibsted Grotesk", sans-serif; font-weight: 600; }
.status-pill { display: inline-flex; padding: 4px 8px; border: 1px solid transparent; border-radius: 3px; background: var(--blue-soft); color: var(--blue); font-family: "IBM Plex Mono", monospace; font-size: 9px; font-weight: 600; white-space: nowrap; }
.status-pill--scope { border-color: #b8c2ec; background: transparent; color: #40518e; }
.status-pill--not-claimed { background: #eceef2; color: var(--ink-2); }

.product-hero {
  display: flex;
  align-items: center;
  min-height: calc(100svh - 69px);
  padding: 44px 0 48px;
}
.product-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: clamp(58px, 6.5vw, 94px);
  align-items: center;
}
.product-hero__copy .display {
  max-width: 10ch;
  font-size: clamp(52px, 5.3vw, 74px);
}
.product-hero__copy .lede { max-width: 560px; margin: 28px 0 0; }
.product-hero__actions { display: flex; align-items: center; gap: 26px; margin-top: 30px; }

.product-hero--film {
  min-height: 0;
  padding: clamp(74px, 7.4vw, 112px) 0 clamp(64px, 6.4vw, 96px);
}
.product-hero--film .product-hero__layout {
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: clamp(54px, 6vw, 92px);
}
.product-hero--film .product-hero__copy .display { max-width: 10ch; }
.product-hero--film .product-hero__copy .lede { max-width: 560px; }

.product-answer {
  width: 100%;
  max-width: 640px;
  justify-self: end;
  border: 1px solid #d4d7df;
  background: #fff;
  box-shadow: 16px 18px 0 var(--blue-soft);
  color: var(--ink);
}
.product-answer__top,
.product-answer__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.product-answer__top {
  padding: 20px 24px;
  border-bottom: 1px solid var(--hair);
}
.product-answer__top strong {
  display: block;
  margin-top: 5px;
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 500;
}
.product-answer__label {
  color: var(--blue);
  font-size: 10px;
  font-weight: 600;
}
.product-answer__state {
  padding: 7px 10px;
  border: 1px solid rgba(28, 57, 187, .22);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
}
.product-answer__question { padding: 26px 28px 24px; }
.product-answer__question > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 600;
}
.product-answer__question h2 {
  max-width: 13ch;
  margin: 11px 0 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.product-answer__response {
  margin: 0 28px;
  padding: 21px 22px 22px;
  background: var(--blue-soft);
}
.product-answer__response strong {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 14px;
}
.product-answer__response strong span { font-size: 10px; }
.product-answer__response p {
  max-width: 48ch;
  margin: 11px 0 0;
  color: var(--ink-2);
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 15px;
  line-height: 1.55;
}
.product-answer__facts {
  margin: 20px 28px 0;
}
.product-answer__facts div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--hair);
}
.product-answer__facts dt {
  color: var(--ink-3);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 500;
}
.product-answer__facts dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.product-answer__foot {
  margin-top: 20px;
  padding: 17px 28px;
  border-top: 1px solid rgba(28, 57, 187, .15);
  background: var(--paper);
  color: var(--ink-2);
  font-size: 12px;
}
.product-answer__foot a {
  color: var(--blue);
  font-weight: 600;
}

.film-section { padding: clamp(16px, 2vw, 34px) 0 var(--space-section); }
.film-intro { margin-bottom: 24px; }
.film-stage { padding: 0 clamp(24px, 4.4vw, 72px); }
.film {
  width: min(1440px, 100%);
  margin: 0 auto;
}
.film__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid #d8dae0;
  background: var(--ink);
  box-shadow: 16px 18px 0 var(--blue-soft);
}
.film__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film__ignite {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: clamp(20px, 3vw, 38px);
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.film__ignite::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background var(--motion-medium) var(--ease-standard);
}
.film__ignite:hover::before { background: rgba(11, 11, 13, .04); }
.film__ignite-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  transition: transform var(--motion-medium) var(--ease-standard), background var(--motion-fast) linear;
}
.film__ignite:hover .film__ignite-mark { transform: scale(1.06); background: var(--blue-bright); }
.film__ignite:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: -6px; }
.film.is-started .film__ignite { display: none; }

.film__controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 34px 18px 14px;
  background: linear-gradient(to top, rgba(11, 11, 13, .9) 0%, rgba(11, 11, 13, .66) 42%, rgba(11, 11, 13, .22) 76%, rgba(11, 11, 13, 0) 100%);
  color: #fff;
  transition: opacity var(--motion-medium) var(--ease-standard);
}
.film__controls[hidden] { display: none; }
.film.is-idle .film__controls { opacity: 0; pointer-events: none; }
.film__button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background var(--motion-fast) linear;
}
.film__button:hover { background: rgba(255, 255, 255, .16); }
.film__button:focus-visible { outline: 2px solid var(--blue-bright); outline-offset: 1px; }
.film__icon-pause,
.film__icon-shrink,
.film .film__icon-muted { display: none; }
.film.is-playing .film__icon-play,
.film.is-fullscreen .film__icon-expand,
.film.is-muted .film__icon-sound { display: none; }
.film.is-playing .film__icon-pause,
.film.is-fullscreen .film__icon-shrink,
.film.is-muted .film__icon-muted { display: block; }

.film__time {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, .82);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}
.film__time i { margin: 0 5px; color: rgba(255, 255, 255, .42); font-style: normal; }

.film__seek,
.film__volume-slider {
  height: 20px;
  margin: 0;
  padding: 0;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.film__seek { flex: 1 1 auto; min-width: 0; }
.film__seek::-webkit-slider-runnable-track,
.film__volume-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--blue-bright) 0 var(--film-fill, 0%), rgba(255, 255, 255, .3) var(--film-fill, 0%) 100%);
}
.film__seek::-moz-range-track,
.film__volume-slider::-moz-range-track {
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--blue-bright) 0 var(--film-fill, 0%), rgba(255, 255, 255, .3) var(--film-fill, 0%) 100%);
}
.film__seek::-webkit-slider-thumb,
.film__volume-slider::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
}
.film__seek::-moz-range-thumb,
.film__volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: #fff;
}
.film__seek:focus-visible,
.film__volume-slider:focus-visible { outline: 2px solid var(--blue-bright); outline-offset: 3px; }

.film__volume { display: flex; align-items: center; flex: 0 0 auto; }
.film__volume-slider {
  width: 0;
  opacity: 0;
  transition: width var(--motion-medium) var(--ease-standard), opacity var(--motion-fast) linear, margin var(--motion-medium) var(--ease-standard);
}
.film__volume:hover .film__volume-slider,
.film__volume:focus-within .film__volume-slider {
  width: 78px;
  margin-left: 8px;
  opacity: 1;
}

.film__frame:fullscreen { aspect-ratio: auto; width: 100vw; height: 100vh; border: 0; }
.film__frame:fullscreen .film__video { object-fit: contain; }
.film__frame:fullscreen .film__controls { padding: 44px 30px 24px; }

.film__foot { padding: 16px 2px 0; color: var(--ink-3); font-size: 11px; }

.product-outcomes { padding-top: 112px; }
.section-heading--product-outcomes { align-items: start; }
.product-outcome-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 2px solid var(--ink);
}
.product-outcome-list article { min-height: 290px; padding: 28px 30px 34px 0; border-bottom: 1px solid var(--hair); }
.product-outcome-list article + article { padding-left: 30px; border-left: 1px solid var(--hair); }
.product-outcome-list__number { color: var(--blue); font-family: "IBM Plex Mono", monospace; font-size: 10px; font-weight: 600; }
.product-outcome-list h3 { max-width: 13ch; margin: 72px 0 16px; font-size: 29px; letter-spacing: -.04em; line-height: 1.04; }
.product-outcome-list p { max-width: 40ch; margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.58; }

.product-console {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 320px;
  min-height: 610px;
  border: 1px solid #d8dae0;
  background: #fff;
  box-shadow: 0 28px 70px -54px rgba(11, 11, 13, .45);
}
.console-sidebar {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--hair);
  background: #fafbfc;
}
.console-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 63px;
  padding: 0 20px;
  border-bottom: 1px solid var(--hair);
  font-size: 15px;
  font-weight: 600;
}
.console-brand .brand__mark { grid-template: repeat(2, 8px) / repeat(2, 8px); gap: 2px; }
.console-brand .brand__mark i { border-radius: 2px; }
.console-nav { display: grid; gap: 5px; padding: 17px 12px; }
.console-nav > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 5px;
  color: var(--ink-2);
}
.console-nav > div.is-current { background: var(--blue-soft); color: var(--blue); font-weight: 600; }
.console-nav > div span:last-child { font-family: "IBM Plex Mono", monospace; font-size: 9px; }
.console-boundary {
  margin: auto 14px 14px;
  padding: 14px;
  border-top: 2px solid var(--blue);
  background: var(--blue-soft);
}
.console-boundary p { margin: 7px 0 0; color: var(--ink-2); font-family: "Schibsted Grotesk", sans-serif; font-size: 12px; line-height: 1.45; }
.console-main { min-width: 0; }
.console-main__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 63px;
  padding: 0 22px;
  border-bottom: 1px solid var(--hair);
}
.console-main__top strong { font-size: 16px; letter-spacing: -.02em; }
.console-live { display: flex; align-items: center; gap: 7px; color: var(--blue); }
.console-live::before { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); content: ""; }
.console-sample { color: var(--ink-3); font-size: 10px; }
.console-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--hair);
}
.console-stat { padding: 22px; }
.console-stat + .console-stat { border-left: 1px solid var(--hair); }
.console-stat span { color: var(--ink-3); font-family: "IBM Plex Mono", monospace; font-size: 9px; font-weight: 600; letter-spacing: .03em; }
.console-stat strong { display: block; margin-top: 7px; font-size: 22px; letter-spacing: -.035em; }
.console-run-head,
.console-run {
  display: grid;
  grid-template-columns: 1.2fr .8fr .65fr .55fr;
  gap: 18px;
  align-items: center;
}
.console-run-head {
  padding: 13px 22px;
  border-bottom: 1px solid var(--hair);
  color: var(--ink-3);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
}
.console-run {
  width: 100%;
  min-height: 74px;
  padding: 12px 22px;
  border: 0;
  border-bottom: 1px solid var(--hair);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 13px;
  text-align: left;
  transition:
    background var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease;
}
.console-run:hover { background: #f3f5fb; }
.console-run.is-selected { box-shadow: inset 3px 0 0 var(--blue); background: #f7f8ff; }
.console-run:focus-visible { position: relative; z-index: 1; outline-offset: -4px; }
.console-run strong { display: block; margin-bottom: 4px; font-family: "Schibsted Grotesk", sans-serif; font-size: 13px; }
.console-run small { color: var(--ink-3); font-family: "IBM Plex Mono", monospace; font-size: 9px; }
.run-state { display: inline-flex; align-items: center; gap: 6px; }
.run-state::before { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); content: ""; }
.run-state--review::before { border-radius: 2px; background: var(--blue-bright); }
.console-detail {
  border-left: 1px solid var(--hair);
  background: #fcfcfd;
}
.console-detail__head { min-height: 63px; padding: 15px 18px; border-bottom: 1px solid var(--hair); }
.console-detail__head strong { display: block; font-size: 14px; }
.console-detail__head span { display: block; margin-top: 4px; color: var(--ink-3); font-family: "IBM Plex Mono", monospace; font-size: 9px; }
.console-timeline { position: relative; padding: 20px 18px 20px 39px; }
.console-timeline::before { position: absolute; top: 28px; bottom: 34px; left: 23px; width: 1px; background: var(--hair); content: ""; }
.console-event { position: relative; padding: 0 0 23px; }
.console-event::before {
  position: absolute;
  top: 2px;
  left: -21px;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 3px;
  background: var(--ink);
  box-shadow: 0 0 0 1px var(--hair);
  content: "";
}
.console-event.is-exception::before { background: var(--blue); }
.console-event strong { display: block; font-size: 12px; }
.console-event span { display: block; margin-top: 4px; color: var(--ink-3); font-family: "IBM Plex Mono", monospace; font-size: 9px; }
.console-export {
  margin: 2px 18px 18px;
  padding: 15px;
  border: 1px solid var(--hair);
  background: #fff;
}
.console-export p { margin: 7px 0 0; color: var(--ink-2); font-family: "Schibsted Grotesk", sans-serif; font-size: 12px; line-height: 1.4; }
.console-detail__head,
.console-timeline,
.console-export {
  transition:
    opacity var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-enter);
}
.product-console.is-updating .console-detail__head,
.product-console.is-updating .console-timeline,
.product-console.is-updating .console-export {
  opacity: .25;
  transform: translateY(4px);
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.split-feature__item {
  min-height: 430px;
  padding: 44px 46px 48px;
  border: 1px solid rgba(28, 57, 187, .16);
  border-top: 3px solid var(--blue);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 44px rgba(28, 57, 187, .055);
}
.split-feature__item + .split-feature__item { border-left: 1px solid rgba(28, 57, 187, .16); }
.split-feature__item h3 { max-width: 12ch; margin: 104px 0 18px; font-size: 38px; font-weight: 600; letter-spacing: -.04em; line-height: 1; }
.split-feature__item p { max-width: 48ch; margin: 0; color: var(--ink-2); font-family: "Schibsted Grotesk", sans-serif; font-size: 16px; line-height: 1.6; }

.capture-lines { border-top: 2px solid var(--ink); }
.capture-line {
  display: grid;
  grid-template-columns: 170px 1fr 1fr;
  gap: 42px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--hair);
}
.capture-line h3 { margin: 0; font-size: 22px; letter-spacing: -.025em; }
.capture-line p { margin: 0; color: var(--ink-2); font-family: "Schibsted Grotesk", sans-serif; font-size: 15px; line-height: 1.55; }
.capture-line .mono { color: var(--blue); }

.industry-hero {
  display: flex;
  align-items: center;
  min-height: calc(100svh - 69px);
  padding: 58px 0 66px;
}
.industry-hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 100px; align-items: center; }
.industry-hero .display { max-width: 11ch; font-size: clamp(52px, 5.25vw, 72px); }
.boundary-comparison { border: 1px solid #d8dae0; background: #fff; box-shadow: 18px 20px 0 var(--blue-soft); }
.boundary-comparison__half { padding: 26px 28px; }
.boundary-comparison__half + .boundary-comparison__half { border-top: 1px solid var(--hair); }
.boundary-comparison__label { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.boundary-comparison__label strong { font-size: 18px; letter-spacing: -.025em; }
.boundary-comparison__label span { color: var(--ink-3); }
.visibility-bar { position: relative; height: 8px; margin: 24px 0 14px; background: #eceef2; }
.visibility-bar span { display: block; height: 100%; background: var(--blue); }
.boundary-comparison__half:last-child .visibility-bar span { width: 28%; background: var(--blue); }
.boundary-comparison__half p { margin: 0; color: var(--ink-2); font-family: "Schibsted Grotesk", sans-serif; font-size: 14px; line-height: 1.5; }

.industry-wedge {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .18);
}
.industry-wedge__copy { padding: 58px; }
.industry-wedge__copy h2 { max-width: 11ch; margin: 110px 0 22px; font-size: clamp(42px, 5vw, 66px); letter-spacing: -.05em; line-height: .96; }
.industry-wedge__copy p { max-width: 45ch; margin: 0; color: rgba(255, 255, 255, .66); font-family: "Schibsted Grotesk", sans-serif; font-size: 16px; line-height: 1.6; }
.industry-wedge__map {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  border-left: 1px solid rgba(255, 255, 255, .18);
  background: var(--card);
  color: var(--ink);
}
.wedge-row {
  display: grid;
  grid-template-columns: 145px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 116px;
  padding: 24px 30px;
  border-bottom: 1px solid var(--hair);
}
.wedge-row:last-child { border-bottom: 0; background: var(--paper); }
.wedge-row strong { font-size: 15px; }
.wedge-row span { color: var(--ink-2); font-family: "Schibsted Grotesk", sans-serif; font-size: 14px; line-height: 1.45; }
.wedge-row em { color: var(--blue); font-family: "IBM Plex Mono", monospace; font-size: 9px; font-style: normal; white-space: nowrap; }

.sector-list { border-top: 2px solid var(--ink); }
.sector {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 290px;
  gap: 54px;
  align-items: start;
  padding: 42px 0;
  border-bottom: 1px solid var(--hair);
}
.sector h3 { margin: 0; font-size: 26px; letter-spacing: -.03em; }
.sector__question { max-width: 38ch; margin: 0; font-size: 23px; font-weight: 500; letter-spacing: -.025em; line-height: 1.2; }
.sector__detail { margin: 0; color: var(--ink-2); font-family: "Schibsted Grotesk", sans-serif; font-size: 15px; line-height: 1.55; }

.crosswalk-tabs { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--hair); background: #fff; }
.crosswalk-tab {
  min-height: 118px;
  padding: 22px;
  border: 0;
  border-right: 1px solid var(--hair);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.crosswalk-tab:last-child { border-right: 0; }
.crosswalk-tab[aria-selected="true"] { box-shadow: inset 0 -4px 0 var(--blue); background: var(--blue-soft); }
.crosswalk-tab span { display: block; margin-bottom: 20px; color: var(--blue); font-family: "IBM Plex Mono", monospace; font-size: 9px; font-weight: 600; }
.crosswalk-tab strong { font-size: 16px; letter-spacing: -.02em; }
.crosswalk-panel {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 1px;
  min-height: 292px;
  border: 1px solid var(--blue);
  border-top: 0;
  background: var(--blue);
}
.crosswalk-panel__side { padding: 42px 46px 44px; background: #fff; }
.crosswalk-panel__side:last-child { background: var(--blue-soft); }
.crosswalk-panel__side h3 { max-width: 30ch; margin: 54px 0 0; font-size: 30px; letter-spacing: -.03em; line-height: 1.08; }
.crosswalk-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--hair);
  background: #fff;
}
.crosswalk-source div { min-width: 0; }
.crosswalk-source strong { display: block; font-size: 14px; }
.crosswalk-source span { display: block; margin-top: 5px; color: var(--ink-3); font-family: "IBM Plex Mono", monospace; font-size: 9px; }
.crosswalk-source > span { flex: none; margin: 0; color: var(--blue); font-size: 12px; }

/* Editorial pages deliberately avoid product grids and conversion furniture. */
.story { overflow: clip; }
.story-hero { padding: 110px 0 132px; }
.story-hero__inner { max-width: 1080px; }
.story-hero .display { max-width: 13ch; font-size: clamp(56px, 8.2vw, 112px); }
.story-hero .lede { max-width: 690px; margin: 38px 0 0 auto; }
.story-opening {
  padding: 122px 0;
  background: var(--blue-soft);
}
.story-opening__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 112px;
  align-items: start;
}
.story-opening__line {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: .98;
}
.story-opening__copy { max-width: 650px; padding-top: 10px; }
.story-opening__copy p,
.story-chapter__copy p {
  margin: 0 0 28px;
  color: var(--ink-2);
  font-size: 19px;
  line-height: 1.7;
}
.story-opening__copy p:first-child { color: var(--ink); font-size: 25px; line-height: 1.55; }
.story-chapters { padding: 132px 0; }
.story-chapter {
  display: grid;
  grid-template-columns: 140px minmax(260px, .75fr) minmax(0, 1fr);
  gap: 56px;
  padding: 70px 0 88px;
  border-top: 1px solid var(--hair);
}
.story-chapter:first-child { border-top: 2px solid var(--ink); }
.story-chapter__number {
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
}
.story-chapter h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1;
}
.story-chapter__copy { max-width: 680px; }
.story-declaration {
  padding: 128px 0 142px;
  background: var(--ink);
  color: #fff;
}
.story-declaration blockquote {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(48px, 7.4vw, 100px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .96;
}
.story-declaration blockquote span { color: #91a3ff; }
.story-declaration p {
  max-width: 620px;
  margin: 58px 0 0 auto;
  color: rgba(255, 255, 255, .66);
  font-size: 19px;
  line-height: 1.65;
}
.story-close { padding: 110px 0 128px; }
.story-close__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: end;
}
.story-close h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(42px, 5.6vw, 74px);
  letter-spacing: -.05em;
  line-height: .98;
}
.story-close p { max-width: 580px; margin: 0; color: var(--ink-2); font-size: 19px; line-height: 1.68; }

.editorial-page { padding: 94px 0 132px; }
.editorial-head {
  max-width: 980px;
  margin-bottom: 96px;
  padding-bottom: 0;
}
.editorial-head .display { max-width: 9ch; font-size: clamp(58px, 8vw, 108px); }
.editorial-head--essay .display { max-width: 13ch; font-size: clamp(52px, 7vw, 94px); }
.editorial-head .lede { max-width: 690px; margin: 34px 0 0; }
.editorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  max-width: 690px;
  margin-top: 30px;
  padding-top: 14px;
  border-top: 1px solid var(--hair);
  color: var(--ink-3);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  line-height: 1.5;
}
.editorial-meta span:first-child { color: var(--ink); font-weight: 600; }
.editorial-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px);
  justify-content: center;
  gap: 88px;
}
.editorial-layout--single {
  grid-template-columns: minmax(0, 720px);
  gap: 0;
}
.editorial-rail {
  position: sticky;
  top: 110px;
  align-self: start;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}
.editorial-rail strong { font-size: 15px; }
.editorial-rail p {
  margin: 8px 0 0;
  color: var(--ink-3);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  line-height: 1.65;
}
.editorial-copy p {
  margin: 0 0 28px;
  color: var(--ink-2);
  font-size: 19px;
  line-height: 1.72;
}
.editorial-copy > p:first-child {
  color: var(--ink);
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.45;
}
.editorial-copy h2 {
  margin: 76px 0 24px;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.05;
}
.editorial-copy blockquote {
  width: calc(100% + 96px);
  margin: 78px 0 78px -48px;
  padding: 50px 52px 56px;
  border: 0;
  background: var(--ink);
  color: #fff;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.08;
  box-shadow: 16px 18px 0 var(--blue-soft);
}
.editorial-copy blockquote::before {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 58px;
  background: #91a3ff;
  content: "";
}
.editorial-copy .editorial-signoff {
  margin-top: 76px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.035em;
}

.review-page { min-height: calc(100vh - 68px); padding: 82px 0 100px; }
.review-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr); gap: 100px; align-items: start; }
.review-copy { position: sticky; top: 112px; }
.review-copy .display { max-width: 9ch; font-size: clamp(54px, 6.6vw, 88px); }
.review-copy .lede { max-width: 560px; margin-top: 26px; }
.review-jump { display: none; }
.review-deliverable {
  margin-top: 42px;
  padding: 26px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--hair);
}
.review-deliverable strong { display: block; margin-bottom: 14px; font-size: 16px; }
.review-deliverable ul { margin: 0; padding: 0; list-style: none; color: var(--ink-2); font-family: "Schibsted Grotesk", sans-serif; font-size: 15px; line-height: 1.65; }
.review-deliverable li { position: relative; padding-left: 20px; }
.review-deliverable li::before { position: absolute; top: .7em; left: 0; width: 7px; height: 7px; border-radius: 2px; background: var(--blue); content: ""; }
.review-note { margin: 18px 0 0; color: var(--ink-3); font-family: "IBM Plex Mono", monospace; font-size: 10px; line-height: 1.6; }
.review-form {
  padding: 46px;
  border: 1px solid #d8dae0;
  background: #fff;
  box-shadow: 18px 20px 0 var(--blue-soft);
}
.review-form h2 { margin: 0; font-size: 31px; letter-spacing: -.035em; }
.review-form > p { margin: 10px 0 30px; color: var(--ink-2); font-family: "Schibsted Grotesk", sans-serif; font-size: 15px; line-height: 1.5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 600; }
.form-field label span { color: var(--ink-3); font-weight: 400; }
.form-field input,
.form-field textarea {
  display: block;
  width: 100%;
  border: 1px solid #d8dae0;
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
  outline: 0;
}
.form-field input { min-height: 48px; padding: 0 13px; }
.form-field textarea { min-height: 116px; padding: 13px; resize: vertical; line-height: 1.45; }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(28, 57, 187, .12); background: #fff; }
.form-status { margin: 16px 0 0; padding: 14px; border: 1px solid var(--hair); background: var(--paper); font-family: "Schibsted Grotesk", sans-serif; font-size: 14px; line-height: 1.45; }
.form-status[data-state="success"] { border-color: var(--blue); background: var(--blue-soft); color: var(--ink); }
.form-status[data-state="error"] { border-color: #b64b3d; color: #8e3025; }
.review-starting-point {
  margin: 26px 0 30px;
  padding: 20px 22px;
  border-left: 3px solid var(--blue);
  background: var(--blue-soft);
}
.review-starting-point[hidden] { display: none; }
.review-starting-point .mono { display: block; margin-bottom: 10px; color: var(--blue); }
.review-starting-point strong { display: block; font-size: 17px; line-height: 1.35; }
.review-starting-point p { margin: 8px 0 0; color: var(--ink-2); font-size: 14px; line-height: 1.5; }
.review-starting-point button {
  margin-top: 14px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--ink-2);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.review-starting-point button:hover { color: var(--blue); }
.review-starting-point button:focus-visible { outline: 3px solid rgba(79, 107, 255, .35); outline-offset: 4px; }

.scope-builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .7fr);
  border: 1px solid #d8dae0;
  background: #fff;
}
.scope-controls { padding: 48px; }
.scope-controls fieldset { margin: 0; padding: 0 0 30px; border: 0; }
.scope-controls fieldset + fieldset { padding-top: 30px; border-top: 1px solid var(--hair); }
.scope-controls legend { width: 100%; margin-bottom: 17px; font-size: 16px; font-weight: 600; }
.scope-options { display: flex; flex-wrap: wrap; gap: 9px; }
.scope-choice { position: relative; cursor: pointer; }
.scope-choice input { position: absolute; opacity: 0; pointer-events: none; }
.scope-choice span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--hair);
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 500;
}
.scope-choice input:checked + span { border-color: var(--blue); background: var(--blue-soft); color: var(--blue); }
.scope-choice input:focus-visible + span { outline: 3px solid rgba(28, 57, 187, .18); outline-offset: 2px; }
.scope-result {
  display: flex;
  flex-direction: column;
  padding: 48px;
  border-left: 3px solid var(--blue-bright);
  background: var(--ink);
  color: #fff;
}
.scope-result > .mono { color: #91a3ff; }
.scope-result h3 { max-width: 12ch; margin: 56px 0 14px; font-size: 38px; letter-spacing: -.04em; line-height: 1; }
.scope-result p { margin: 0; color: rgba(255, 255, 255, .66); font-family: "Schibsted Grotesk", sans-serif; font-size: 15px; line-height: 1.55; }
.scope-result ul { margin: 28px 0 36px; padding: 0; list-style: none; }
.scope-result li { padding: 12px 0; border-top: 1px solid rgba(255, 255, 255, .16); color: rgba(255, 255, 255, .84); font-family: "Schibsted Grotesk", sans-serif; font-size: 14px; line-height: 1.45; }
.scope-result li:last-child { border-bottom: 1px solid rgba(255, 255, 255, .16); }
.scope-result .button { margin-top: auto; align-self: flex-start; }

@keyframes record-pulse {
  0%, 100% { opacity: .35; transform: scale(.7); }
  50% { opacity: 1; transform: scale(1); }
}
.record-status::before { animation: record-pulse 2.4s ease-in-out infinite; }

@keyframes record-event-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: no-preference) {
  .record-figure .record-event {
    opacity: 0;
    animation: record-event-enter .55s cubic-bezier(.16, 1, .3, 1) forwards;
  }
  .record-figure .record-event:nth-child(1) { animation-delay: .12s; }
  .record-figure .record-event:nth-child(2) { animation-delay: .22s; }
  .record-figure .record-event:nth-child(3) { animation-delay: .32s; }
  .record-figure .record-event:nth-child(4) { animation-delay: .42s; }
  .record-figure .record-event:nth-child(5) { animation-delay: .52s; }
  .record-figure .record-boundary {
    opacity: 0;
    animation: record-event-enter .62s var(--ease-enter) .68s forwards;
  }
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .68s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms),
    transform .68s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms);
}
.motion-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.motion-ready [data-reveal] .eyebrow::before {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .62s cubic-bezier(.16, 1, .3, 1) calc(var(--reveal-delay, 0ms) + 120ms);
}
.motion-ready [data-reveal].is-visible .eyebrow::before { transform: scaleX(1); }

.motion-ready .mechanism[data-reveal] {
  opacity: 1;
  transform: none;
}
.motion-ready .mechanism[data-reveal]::before {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-narrative) var(--ease-enter) 90ms;
}
.motion-ready .mechanism[data-reveal] .mechanism__step {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 520ms var(--ease-enter),
    transform 520ms var(--ease-enter);
}
.motion-ready .mechanism[data-reveal] .mechanism__number {
  transform: scale(.82);
  transition:
    background var(--motion-fast) ease,
    color var(--motion-fast) ease,
    transform 440ms var(--ease-enter);
}
.motion-ready .mechanism[data-reveal].is-visible::before { transform: scaleX(1); }
.motion-ready .mechanism[data-reveal].is-visible .mechanism__step {
  opacity: 1;
  transform: translateY(0);
}
.motion-ready .mechanism[data-reveal].is-visible .mechanism__number {
  background: var(--blue);
  color: #fff;
  transform: scale(1);
}
.motion-ready .mechanism[data-reveal].is-visible .mechanism__step:nth-child(1),
.motion-ready .mechanism[data-reveal].is-visible .mechanism__step:nth-child(1) .mechanism__number { transition-delay: 110ms; }
.motion-ready .mechanism[data-reveal].is-visible .mechanism__step:nth-child(2),
.motion-ready .mechanism[data-reveal].is-visible .mechanism__step:nth-child(2) .mechanism__number { transition-delay: 300ms; }
.motion-ready .mechanism[data-reveal].is-visible .mechanism__step:nth-child(3),
.motion-ready .mechanism[data-reveal].is-visible .mechanism__step:nth-child(3) .mechanism__number { transition-delay: 490ms; }

.motion-ready .film[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 620ms var(--ease-enter),
    transform 620ms var(--ease-enter);
}
.motion-ready .film[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.visibility-bar span {
  transform-origin: left;
  transition: transform var(--motion-narrative) var(--ease-enter);
}
.motion-ready .boundary-comparison[data-reveal] .visibility-bar span { transform: scaleX(0); }
.motion-ready .boundary-comparison[data-reveal].is-visible .visibility-bar span { transform: scaleX(1); }
.motion-ready .boundary-comparison[data-reveal].is-visible .boundary-comparison__half:nth-child(2) .visibility-bar span { transition-delay: 220ms; }

.motion-ready .engagement-path[data-reveal]::before {
  transform: scaleX(0);
  transition: transform 1.05s cubic-bezier(.16, 1, .3, 1) .12s;
}
.motion-ready .engagement-path[data-reveal].is-visible::before { transform: scaleX(1); }
.motion-ready .engagement-path[data-reveal] .engagement-stage {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .58s cubic-bezier(.16, 1, .3, 1), transform .58s cubic-bezier(.16, 1, .3, 1);
}
.motion-ready .engagement-path[data-reveal].is-visible .engagement-stage { opacity: 1; transform: translateY(0); }
.motion-ready .engagement-path[data-reveal].is-visible .engagement-stage:nth-child(2) { transition-delay: .09s; }
.motion-ready .engagement-path[data-reveal].is-visible .engagement-stage:nth-child(3) { transition-delay: .18s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-riso-boil] img { animation: none !important; }
  [data-riso-boil] img:not(:first-child) { opacity: 0 !important; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (min-width: 981px) and (max-height: 900px) {
  .home-page .hero {
    padding-top: 46px;
    padding-bottom: 54px;
  }
  .home-page .hero .display {
    font-size: clamp(64px, 5.7vw, 84px);
    line-height: .95;
  }
  .home-page .hero__grid { gap: clamp(48px, 6vw, 88px); }
  .home-page .hero .lede { margin-top: 20px; }
  .home-page .hero__actions { margin-top: 24px; }
  .home-page .hero__note { margin-top: 10px; }
  .home-page .record-figure {
    min-height: 490px;
    padding: 32px 36px;
  }
  .home-page .record-figure__top { padding-bottom: 19px; }
  .home-page .record-events { padding-top: 13px; }
  .home-page .record-event { padding: 13px 0; }
  .home-page .record-boundary {
    margin-top: 18px;
    padding: 15px 16px;
  }
}

@media (max-width: 1120px) {
  .site-header__inner { grid-template-columns: 1fr auto; }
  .site-header__actions { display: none; }
  .menu-button { display: inline-grid; place-items: center; justify-self: end; }
  .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    align-content: start;
    align-items: stretch;
    height: calc(100dvh - 68px);
    padding: 18px 32px 28px;
    overflow-y: auto;
    border-bottom: 1px solid var(--hair);
    background: var(--paper);
  }
  .site-nav[data-open="true"] { display: grid; }
  .site-nav a { padding: 15px 2px; border-bottom: 1px solid var(--hair); }
  .site-nav a::after { display: none; }
  .site-nav__mobile-actions {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
    gap: 10px;
    margin-top: 24px;
  }
  .site-nav__mobile-actions a {
    min-height: 48px;
    border: 1px solid var(--ink);
  }
  .site-nav__mobile-actions .button {
    padding: 12px 16px;
    background: var(--ink);
    color: #fff;
  }
  .site-nav__mobile-actions .button--quiet {
    background: transparent;
    color: var(--ink);
  }
  .editorial-copy blockquote {
    width: auto;
    margin-right: 0;
    margin-left: 0;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .page-hero { padding-top: 60px; padding-bottom: 60px; }
  .page-hero__grid { min-height: 320px; }
  .page-hero--context { padding-top: 72px; padding-bottom: 72px; }
  .page-hero--context .page-hero__grid { min-height: 0; }
  .product-hero { padding-top: 44px; padding-bottom: 50px; }
  .industry-hero { padding-top: 44px; padding-bottom: 54px; }
  .resource-index-hero { min-height: 460px; padding-top: 60px; padding-bottom: 60px; }
  .editorial-page { padding-top: 72px; }
  .review-page { padding-top: 56px; }
  .review-copy .display { font-size: clamp(54px, 5.8vw, 76px); }
  .review-form { padding: 38px; }
}

@media (max-width: 980px) {
  .shell, .shell--narrow { width: min(100% - 40px, var(--max)); }
  .hero,
  .page-hero { padding: 64px 0 78px; }
  .hero__grid,
  .page-hero__grid,
  .section-heading,
  .reason,
  .product-stage,
  .readers,
  .mission,
  .cta,
  .deliverables { grid-template-columns: 1fr; gap: 48px; }
  .page-hero--context .page-hero__grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 48px;
  }
  .page-hero--context .page-hero__grid--media {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .page-hero--context {
    display: block;
    min-height: 0;
  }
  .page-hero--context .page-hero__aside { align-self: stretch; }
  .context-proof { max-width: 620px; }
  .context-riso--hero {
    justify-self: center;
    width: min(100%, 430px);
  }
  .hero__grid { align-items: start; }
  .record-figure { min-height: 520px; width: min(100% - 18px, 640px); margin: 8px 0 0; box-shadow: 16px 18px 0 var(--blue-soft); }
  .section { padding: 88px 0; }
  .section--tight { padding: 72px 0; }
  .home-page .section { padding: 112px 0; }
  .home-page .section--tight { padding: 96px 0; }
  .home-page .section--chapter { padding: 144px 0; }
  .section-heading { margin-bottom: 48px; }
  .section-heading--process {
    align-items: flex-start;
    margin-bottom: 64px;
    text-align: left;
  }
  .section-heading--process .title,
  .section-heading--process .lede { margin-left: 0; }
  .market-evidence { margin-top: 76px; }
  .market-evidence__stats {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .mechanism {
    grid-template-columns: 1fr;
  }
  .mechanism::before { display: none; }
  .mechanism__step:not(:last-child)::after {
    position: absolute;
    top: 21px;
    bottom: -21px;
    left: 20px;
    z-index: 0;
    width: 2px;
    background: rgba(28, 57, 187, .55);
    content: "";
  }
  .motion-ready .mechanism[data-reveal] .mechanism__step:not(:last-child)::after {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--motion-narrative) var(--ease-enter);
  }
  .motion-ready .mechanism[data-reveal].is-visible .mechanism__step:nth-child(1)::after {
    transform: scaleY(1);
    transition-delay: 210ms;
  }
  .motion-ready .mechanism[data-reveal].is-visible .mechanism__step:nth-child(2)::after {
    transform: scaleY(1);
    transition-delay: 400ms;
  }
  .mechanism__step,
  .mechanism__step + .mechanism__step {
    min-height: auto;
    padding: 2px 0 72px 82px;
    border: 0;
    text-align: left;
  }
  .mechanism__step:last-child { padding-bottom: 0; }
  .mechanism__phase { margin-top: 0; }
  .mechanism__step h3 { margin: 8px 0 12px; }
  .mechanism__step p { margin: 0; }
  .mechanism__number { position: absolute; top: 0; left: 0; margin: 0; }
  .product-stage { gap: 54px; }
  .home-product { gap: 54px; }
  .home-product__intro,
  .with-arkna { grid-template-columns: 1fr; gap: 48px; }
  .reason--home .reason__aside {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
  .reason--home .reason__aside a { margin-top: 0; }
  .with-arkna--benefits .outcome-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .with-arkna--benefits .outcome,
  .with-arkna--benefits .outcome:first-child,
  .with-arkna--benefits .outcome:last-child {
    padding: 28px 28px 34px;
    border-right: 1px solid var(--hair);
  }
  .with-arkna--benefits .outcome:nth-child(2n) {
    padding-right: 0;
    border-right: 0;
  }
  .with-arkna--benefits .outcome:nth-child(2n+1) { padding-left: 0; }
  .review-surface { width: min(100%, 720px); }
  .readers { gap: 44px; }
  .readers--editorial {
    grid-template-columns: 1fr;
  }
  .readers--editorial > div,
  .readers--editorial .readers__image {
    grid-column: 1;
    grid-row: auto;
  }
  .readers--editorial .readers__image {
    width: min(100%, 430px);
    margin: 0 auto;
  }
  .readers__image { width: min(100%, 430px); margin: 0 auto; }
  .site-footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
  .site-footer__top > div:first-child { grid-column: 1 / -1; }
  .boundary-map { grid-template-columns: 1fr 1fr; }
  .boundary-map__node:nth-child(3) { border-left: 0; border-top: 1px solid rgba(28, 57, 187, .28); }
  .boundary-map__node:nth-child(4) { border-top: 1px solid rgba(28, 57, 187, .28); }
  .boundary-map__node:nth-child(2)::after { display: none; }
  .product-hero__layout,
  .industry-hero__grid,
  .industry-wedge,
  .resource-index-head,
  .review-layout,
  .scope-builder,
  .story-opening__grid,
  .story-close__inner { grid-template-columns: 1fr; gap: 48px; }
  .story-hero { padding: 82px 0 96px; }
  .story-opening,
  .story-chapters,
  .story-declaration,
  .story-close { padding-top: 92px; padding-bottom: 100px; }
  .story-hero .lede { margin-left: 0; }
  .story-chapter { grid-template-columns: 70px minmax(220px, .7fr) minmax(0, 1fr); gap: 34px; }
  .resource-index-head { gap: 54px; }
  .resource-index-intro { max-width: 650px; }
  .resource-path { grid-template-columns: 48px minmax(220px, .9fr) minmax(0, 1.1fr) 28px; }
  .editorial-page { padding: 72px 0 100px; }
  .editorial-head { margin-bottom: 70px; }
  .editorial-layout { grid-template-columns: 190px minmax(0, 1fr); gap: 58px; }
  .editorial-copy blockquote { width: auto; margin-right: 0; margin-left: 0; }
  .review-copy { position: static; }
  .scope-result { border-top: 3px solid var(--blue-bright); border-left: 0; }
  .product-console { grid-template-columns: 190px minmax(0, 1fr); }
  .product-hero { min-height: 0; padding: 72px 0 84px; }
  .product-hero--film .product-hero__layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .product-hero__copy .display { max-width: 11ch; }
  .product-answer {
    width: min(100%, 680px);
    max-width: none;
    justify-self: start;
  }
  .film__frame { box-shadow: 12px 14px 0 var(--blue-soft); }
  .product-outcome-list { grid-template-columns: 1fr; }
  .product-outcome-list article,
  .product-outcome-list article + article {
    display: grid;
    grid-template-columns: 56px minmax(220px, .9fr) minmax(0, 1.1fr);
    gap: 24px;
    min-height: 0;
    padding: 30px 0;
    border-left: 0;
  }
  .product-outcome-list h3,
  .product-outcome-list p { margin: 0; }
  .console-detail {
    display: block;
    grid-column: 1 / -1;
    border-top: 1px solid var(--hair);
    border-left: 0;
  }
  .console-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    padding: 22px;
  }
  .console-timeline::before { display: none; }
  .console-event { min-width: 0; padding: 20px 0 0; }
  .console-event::before { top: 0; left: 0; }
  .console-export { margin-top: 0; }
  .split-feature { grid-template-columns: 1fr; }
  .split-feature__item,
  .split-feature__item + .split-feature__item { min-height: auto; padding: 40px 38px 44px; border-left: 1px solid rgba(28, 57, 187, .16); }
  .split-feature__item h3 { margin-top: 70px; }
  .industry-wedge__map { border-top: 1px solid var(--hair); border-left: 0; }
  .sector { grid-template-columns: 180px 1fr; }
  .sector__detail { grid-column: 2; }
  .crosswalk-tabs { grid-template-columns: repeat(3, 1fr); }
  .crosswalk-tab:nth-child(3) { border-right: 0; }
  .crosswalk-tab:nth-child(n+4) { border-top: 1px solid var(--hair); }
}

@media (max-width: 640px) {
  .shell, .shell--narrow { width: min(100% - 32px, var(--max)); }
  .display { font-size: clamp(44px, 12vw, 58px); }
  .page-hero--context .display { font-size: clamp(46px, 11.6vw, 48px); }
  .page-hero__copy .lede {
    margin-top: 24px;
  }
  .context-riso--hero {
    width: min(100%, 340px);
    margin-top: 2px;
  }
  .context-boundary {
    grid-template-columns: minmax(0, 1fr) 118px;
    min-height: 172px;
  }
  .context-boundary__sources {
    gap: 7px;
    padding: 14px;
  }
  .context-boundary__sources span {
    padding: 8px 6px;
    font-size: 9px;
  }
  .title { font-size: clamp(36px, 10vw, 46px); }
  .hero { padding-top: 48px; }
  .home-page .hero { padding-top: 48px; padding-bottom: 68px; }
  .home-page .section { padding: 96px 0; }
  .home-page .section--tight { padding: 80px 0; }
  .home-page .section--chapter { padding: 120px 0; }
  .site-nav { padding-right: 16px; padding-left: 16px; }
  .site-nav__mobile-actions { grid-template-columns: 1fr; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .record-figure { min-height: 0; padding: 24px 20px; box-shadow: 10px 12px 0 var(--blue-soft); }
  .record-event { grid-template-columns: 48px 1fr; }
  .record-event__source { display: none; }
  .reason__statement { font-size: clamp(42px, 12vw, 52px); }
  .market-evidence { margin-top: 64px; }
  .market-evidence__stats { grid-template-columns: 1fr; gap: 0; }
  .market-evidence__stat {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    padding: 22px 0;
    border-top: 1px solid rgba(28, 57, 187, .18);
  }
  .market-evidence__stat:first-child { padding-top: 0; border-top: 0; }
  .market-evidence__stat + .market-evidence__stat {
    padding-left: 0;
    border-left: 0;
  }
  .market-evidence__stat dt { font-size: 40px; }
  .market-evidence__stat dd { margin-top: 0; }
  .section-heading--process .title { font-size: clamp(36px, 10vw, 44px); }
  .mechanism__step,
  .mechanism__step + .mechanism__step { padding-left: 62px; text-align: left; }
  .mechanism__step:not(:last-child)::after { top: 18px; bottom: -18px; left: 17px; }
  .mechanism__number { width: 36px; height: 36px; font-size: 10px; }
  .product-stage { grid-template-columns: 1fr; }
  .home-product__intro { grid-template-columns: 1fr; gap: 40px; }
  .home-product .product-console { min-height: 0; box-shadow: 10px 12px 0 rgba(79, 107, 255, .14); }
  .console-timeline { grid-template-columns: 1fr; gap: 0; padding: 22px 20px 4px 44px; }
  .console-event { padding: 0 0 23px; }
  .console-event::before { top: 2px; left: -21px; }
  .with-arkna { gap: 54px; }
  .with-arkna__title { font-size: clamp(58px, 18vw, 82px); }
  .with-arkna--benefits .with-arkna__title { margin-bottom: 54px; }
  .with-arkna--benefits .outcome-list { grid-template-columns: 1fr; }
  .with-arkna--benefits .outcome,
  .with-arkna--benefits .outcome:first-child,
  .with-arkna--benefits .outcome:last-child,
  .with-arkna--benefits .outcome:nth-child(2n),
  .with-arkna--benefits .outcome:nth-child(2n+1) {
    min-height: 0;
    padding: 28px 0 32px;
    border-right: 0;
  }
  .with-arkna--benefits .outcome h3 { margin-top: 42px; }
  .outcome { grid-template-columns: 28px 1fr; gap: 12px; }
  .outcome p { grid-column: 2; }
  .review-surface { box-shadow: 10px 12px 0 rgba(79, 107, 255, .14); }
  .product-answer { box-shadow: 10px 12px 0 var(--blue-soft); }
  .product-answer__top {
    align-items: flex-start;
    padding: 18px 20px;
  }
  .product-answer__question { padding: 24px 20px 22px; }
  .product-answer__response { margin: 0 20px; padding: 19px 18px 20px; }
  .product-answer__facts { margin-right: 20px; margin-left: 20px; }
  .product-answer__facts div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 13px 0;
  }
  .product-answer__foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding: 16px 20px;
  }
  .review-surface__top { align-items: flex-start; }
  .review-brief { padding-right: 20px; padding-left: 20px; }
  .review-brief__item { grid-template-columns: 28px minmax(0, 1fr); gap: 12px; }
  .review-brief__source { grid-column: 2; margin-top: -8px; }
  .sequence-figure { padding: 20px; box-shadow: 9px 10px 0 rgba(79, 107, 255, .13); }
  .sequence-figure__head { align-items: flex-start; flex-direction: column; gap: 4px; }
  .sequence-figure__events::before { left: 68px; }
  .sequence-figure__events li { grid-template-columns: 54px 12px minmax(0, 1fr); gap: 10px; padding-right: 6px; padding-left: 6px; }
  .sequence-figure__foot { align-items: flex-start; flex-direction: column; gap: 6px; }
  .reader { grid-template-columns: 1fr; gap: 5px; }
  .mission > * { min-width: 0; }
  .mission blockquote { overflow-wrap: anywhere; }
  .cta .button { width: 100%; }
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 42px 28px; }
  .site-footer__top > div:first-child { grid-column: 1 / -1; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .journey::before { left: 21px; }
  .journey__step { grid-template-columns: 44px 1fr; gap: 18px; }
  .journey__number { width: 44px; height: 44px; }
  .journey__step p { grid-column: 2; margin-top: -18px; }
  .deliverable { grid-template-columns: 1fr; gap: 7px; }
  .boundary-map { grid-template-columns: 1fr; }
  .boundary-map__node + .boundary-map__node { border-top: 1px solid rgba(28, 57, 187, .28); border-left: 0; }
  .boundary-map__node::after { display: none; }
  .truth-pair { grid-template-columns: 1fr; }
  .truth-pair__item { min-height: 300px; padding: 34px 26px; }
  .truth-pair__item h3 { margin-top: 54px; }
  .engagement-path { grid-template-columns: 1fr; gap: 12px; border: 0; background: transparent; }
  .engagement-path::before { display: none; }
  .engagement-stage { min-height: 0; padding: 28px 24px 30px; border: 1px solid rgba(28, 57, 187, .22); }
  .engagement-stage + .engagement-stage { border-left: 1px solid rgba(28, 57, 187, .22); }
  .engagement-stage h3 { margin: 34px 0 14px; font-size: 28px; }
  .engagement-stage p { max-width: none; }
  .engagement-stage__outcome { margin-top: 32px; }
  .status-table {
    display: block;
    width: 100%;
    overflow: visible;
    border-top: 2px solid var(--ink);
  }
  .status-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .status-table tbody { display: block; }
  .status-table tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 18px;
    padding: 22px 0 24px;
    border-bottom: 1px solid var(--hair);
  }
  .status-table td,
  .status-table td:first-child {
    width: auto;
    min-width: 0;
    padding: 0;
    border: 0;
  }
  .status-table td:first-child {
    align-self: center;
    font-size: 17px;
    line-height: 1.3;
  }
  .status-table td:nth-child(2) {
    align-self: start;
    justify-self: end;
  }
  .status-table td:nth-child(3) {
    grid-column: 1 / -1;
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.55;
  }
  .status-table td:nth-child(3)::before {
    display: block;
    margin-bottom: 7px;
    color: var(--ink-3);
    content: "Public position";
    font-family: "IBM Plex Mono", monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .03em;
  }
  .product-hero { padding-top: 56px; padding-bottom: 72px; }
  .product-hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .film-stage { padding: 0 18px; }
  .film__frame { box-shadow: 8px 10px 0 var(--blue-soft); }
  .film__ignite-mark { width: 56px; height: 56px; }
  .film__controls { gap: 8px; padding: 26px 10px 10px; }
  .film__time { display: none; }
  .film__volume:hover .film__volume-slider,
  .film__volume:focus-within .film__volume-slider { width: 56px; }
  .film__foot { padding: 16px 0 0; }
  .product-outcomes { padding-top: 88px; }
  .product-outcome-list { margin-top: 54px; }
  .product-outcome-list article,
  .product-outcome-list article + article { display: block; padding: 28px 0 32px; }
  .product-outcome-list h3 { margin: 38px 0 14px; font-size: 27px; }
  .product-console { grid-template-columns: 1fr; min-height: 0; }
  .console-sidebar { display: none; }
  .console-main__top,
  .console-summary,
  .console-run-head,
  .console-run { min-width: 0; }
  .console-summary { grid-template-columns: 1fr 1fr; }
  .console-stat:nth-child(3) { display: none; }
  .console-run-head,
  .console-run { grid-template-columns: 1.35fr .65fr; }
  .console-run-head span:nth-child(n+3),
  .console-run > span:nth-child(n+3) { display: none; }
  .capture-line { grid-template-columns: 1fr; gap: 10px; }
  .boundary-comparison { box-shadow: 10px 12px 0 var(--blue-soft); }
  .industry-wedge__copy { padding: 34px 26px; }
  .industry-wedge__copy h2 { margin-top: 64px; }
  .wedge-row { grid-template-columns: 1fr; gap: 7px; }
  .sector { grid-template-columns: 1fr; gap: 14px; }
  .sector__detail { grid-column: auto; }
  .crosswalk-tabs { grid-template-columns: 1fr 1fr; }
  .crosswalk-tab { min-height: 100px; border-top: 1px solid var(--hair); }
  .crosswalk-tab:nth-child(odd) { border-right: 1px solid var(--hair); }
  .crosswalk-tab:nth-child(even) { border-right: 0; }
  .crosswalk-tab:first-child,
  .crosswalk-tab:nth-child(2) { border-top: 0; }
  .crosswalk-panel { grid-template-columns: 1fr; }
  .crosswalk-panel__side { min-height: 230px; padding: 28px; }
  .crosswalk-panel__side h3 { max-width: 100%; margin-top: 44px; font-size: 24px; }
  .crosswalk-source { align-items: flex-start; }
  .page-hero--about { min-height: 0; padding: 64px 0 78px; }
  .page-hero--about .display { font-size: clamp(46px, 13vw, 62px); }
  .resource-index-hero { min-height: 0; padding: 72px 0 64px; }
  .resource-index-list { padding-bottom: 72px; }
  .resource-index-head { gap: 44px; }
  .resource-index-head .display { font-size: clamp(46px, 13vw, 62px); }
  .resource-paths { margin-top: 0; }
  .resource-path {
    grid-template-columns: 36px minmax(0, 1fr) 24px;
    gap: 14px 18px;
    padding: 24px 0 26px;
  }
  .resource-path:hover { padding-right: 0; padding-left: 0; }
  .resource-path strong { font-size: 21px; }
  .resource-path > span:nth-child(3) { grid-column: 2 / 4; font-size: 15px; }
  .resource-path__arrow {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
  .story-chapter { grid-template-columns: 1fr; gap: 18px; padding: 48px 0 56px; }
  .story-chapter h2 { max-width: 12ch; }
  .story-opening__copy p,
  .story-chapter__copy p,
  .story-declaration p,
  .story-close p { font-size: 17px; }
  .editorial-layout { grid-template-columns: 1fr; gap: 36px; }
  .editorial-layout--single { gap: 0; }
  .editorial-rail { position: static; }
  .editorial-head .display,
  .editorial-head--essay .display { font-size: clamp(46px, 13vw, 62px); }
  .editorial-meta { gap: 8px 14px; margin-top: 26px; }
  .editorial-copy blockquote { width: auto; margin-right: 0; margin-left: 0; }
  .editorial-copy p { font-size: 17px; }
  .editorial-copy > p:first-child { font-size: 24px; }
  .editorial-copy h2 { margin-top: 58px; font-size: 34px; }
  .editorial-copy blockquote { margin-top: 58px; margin-bottom: 68px; padding: 36px 28px 40px; box-shadow: 10px 12px 0 var(--blue-soft); }
  .editorial-copy blockquote::before { margin-bottom: 40px; }
  .review-page { padding-top: 54px; }
  .review-jump {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
  }
  .review-form { padding: 30px 22px; box-shadow: 10px 12px 0 var(--blue-soft); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .scope-controls,
  .scope-result { padding: 30px 22px; }
}
