:root {
  color-scheme: light;
  --ink: #152736;
  --ink-2: #20374a;
  --ink-soft: #33475a;
  --white: #faf8f0;
  --paper: #fffdf8;
  --paper-warm: #f4f1e8;
  --muted: #72808c;
  --muted-light: #a4a89f;
  --line: #ded9c8;
  --line-dark: rgba(255, 255, 255, 0.28);
  --blue: #09568c;
  --green: #2e7d4f;
  --amber: #a9761c;
  --red: #b04438;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  --sans: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --label: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.panel-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 40px;
  padding: 0 clamp(18px, 3.2vw, 42px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(21, 39, 54, 0.94);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.announcement[hidden] {
  display: none;
}

.announcement p {
  margin: 0;
  color: rgba(250, 248, 240, 0.84);
  font-family: var(--label);
  font-size: 13px;
  font-weight: 420;
  line-height: 1.35;
}

.site-header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 70px;
  padding: 0 clamp(22px, 3.2vw, 42px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(13, 30, 44, 0.72), rgba(13, 30, 44, 0.22));
  backdrop-filter: blur(12px);
}

body.announcement-closed .site-header {
  top: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  font-weight: 320;
  line-height: 1;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-light img {
  width: 30px;
  height: 30px;
}

.brand span {
  font-size: 22px;
  font-weight: 320;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-light span {
  font-size: 23px;
  transform: translateY(-1px);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 36px);
  min-width: 0;
  color: rgba(250, 248, 240, 0.8);
  font-size: 13px;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-actions,
.mobile-command-bar,
.panel-chrome,
.popular-searches,
.filter-row,
.segmented-control {
  display: flex;
  align-items: center;
}

.header-actions {
  justify-content: flex-end;
  gap: 12px;
}

.outline-action,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 0 28px;
  font-weight: 440;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.outline-action:hover,
.outline-action:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.outline-action-dark {
  color: var(--ink);
}

.outline-action-dark:hover,
.outline-action-dark:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.login-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 24px;
  border: 1px solid transparent;
  background: var(--white);
  color: var(--blue);
  font-weight: 600;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}

.login-action:hover,
.login-action:focus-visible {
  background: var(--blue);
  color: var(--white);
}

.text-link {
  min-height: auto;
  padding: 0;
  border-width: 0 0 1px;
  color: var(--ink);
}

.text-link::before {
  content: "+";
  margin-right: 8px;
}

.icon-button {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.icon-button-dark:hover,
.icon-button-dark:focus-visible {
  background: transparent;
  color: var(--white);
}

.icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}

.icon-search::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 9px;
  height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.icon-search::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 8px;
  height: 1.5px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
}

.icon-menu::before,
.icon-menu::after,
.icon-close::before,
.icon-close::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  height: 1.5px;
  background: currentColor;
}

.icon-menu::before {
  top: 5px;
}

.icon-menu::after {
  bottom: 5px;
}

.icon-close::before,
.icon-close::after {
  top: 8px;
}

.icon-close::before {
  transform: rotate(45deg);
}

.icon-close::after {
  transform: rotate(-45deg);
}

.menu-panel,
.search-panel {
  position: fixed;
  inset: 0;
  z-index: 95;
  overflow: auto;
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-panel.open,
.search-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.panel-chrome {
  justify-content: space-between;
  min-height: 104px;
  padding: 0 clamp(22px, 3.2vw, 42px);
}

.menu-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) minmax(360px, 1fr) minmax(260px, 0.95fr);
  gap: clamp(28px, 3.2vw, 44px);
  padding: 34px clamp(22px, 3.2vw, 42px) 72px;
}

.menu-column {
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
}

.menu-column a,
.menu-column h3 {
  display: block;
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 360;
  line-height: 1.28;
  overflow-wrap: break-word;
}

.menu-primary a:nth-child(n + 3) {
  color: rgba(250, 248, 240, 0.66);
}

.menu-column article {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-bottom: 28px;
}

.menu-column article span,
.tiny-label,
.mini-label {
  display: block;
  color: var(--muted);
  font-family: var(--label);
  font-size: 11px;
  font-weight: 640;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-column .tiny-label,
.search-panel .popular-searches span {
  color: rgba(250, 248, 240, 0.56);
}

.search-panel {
  display: grid;
  align-content: start;
}

.search-box {
  display: block;
  padding: clamp(80px, 12vh, 150px) clamp(22px, 3.2vw, 42px) 0;
}

.search-box input {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(250, 248, 240, 0.86);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  padding: 0 12px;
  font-size: 18px;
}

.search-box input::placeholder {
  color: rgba(250, 248, 240, 0.36);
}

.search-box input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.2);
}

.popular-searches {
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px clamp(22px, 3.2vw, 42px) 0;
}

.popular-searches button {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--white);
  padding: 0 0 2px;
  cursor: pointer;
  font-size: 18px;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 44px clamp(22px, 3.2vw, 42px) 72px;
}

.search-result {
  min-height: 168px;
  border-top: 1px solid var(--line-dark);
  padding-top: 18px;
}

.search-result span {
  color: rgba(250, 248, 240, 0.52);
  font-family: var(--label);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.search-result h3 {
  margin: 18px 0 0;
  color: var(--white);
  font-size: 28px;
  font-weight: 360;
  line-height: 1.16;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.58) contrast(1.05) brightness(0.55);
  transform: scale(1.08);
  transform-origin: center;
  animation: heroImageDrift 22s ease-in-out infinite alternate;
  will-change: transform, filter;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 36%, rgba(250, 248, 240, 0.18) 46%, transparent 56%),
    radial-gradient(circle at 26% 34%, rgba(9, 86, 140, 0.26), transparent 28%),
    radial-gradient(circle at 76% 60%, rgba(250, 248, 240, 0.12), transparent 30%);
  mix-blend-mode: screen;
  opacity: 0.42;
  transform: translate3d(-8%, 0, 0);
  animation: heroSignalSweep 11s ease-in-out infinite;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(21, 39, 54, 0.16), rgba(21, 39, 54, 0.3) 35%, rgba(21, 39, 54, 0.86) 100%),
    radial-gradient(circle at 50% 40%, rgba(9, 86, 140, 0.22), transparent 36%),
    rgba(21, 39, 54, 0.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-self: center;
  width: min(1720px, calc(100vw - clamp(44px, 6vw, 120px)));
  margin: 0 auto;
  padding-top: 104px;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 18px;
  color: rgba(250, 248, 240, 0.72);
  font-family: var(--label);
  font-size: 12px;
  font-weight: 640;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero h1 {
  width: min(100%, 1600px);
  max-width: 1600px;
  margin: 0;
  color: var(--white);
  font-size: clamp(54px, 6.2vw, 112px);
  font-weight: 320;
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero h1 span {
  display: inline;
}

.hero h1 .mobile-title-line {
  display: none;
}

.hero-content p:not(.hero-kicker) {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(250, 248, 240, 0.78);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 360;
  line-height: 1.5;
}

.hero-footer {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(22px, 3.2vw, 42px) 28px;
}

.hero-footer a,
.hero-footer div {
  min-height: 76px;
  border-top: 1px solid var(--line-dark);
  padding: 18px 18px 0 0;
}

.hero-footer a {
  color: rgba(250, 248, 240, 0.82);
  font-family: var(--label);
  font-size: 14px;
  font-weight: 520;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-footer span,
.slab-copy p,
.feature-index-top p,
.section-heading > p,
.roi-intro p,
.pilot-split p,
.site-footer p {
  color: var(--muted);
}

.hero-footer span {
  display: block;
  color: rgba(250, 248, 240, 0.5);
  font-family: var(--label);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-footer b {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 16px;
  font-weight: 460;
  line-height: 1.25;
}

.feature-index,
.workflow-section,
.governance-section,
.roi-section,
.pilot-section {
  padding: clamp(82px, 10vw, 132px) clamp(18px, 3.2vw, 42px);
}

.feature-index {
  background: var(--paper);
}

.feature-index-top,
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  align-items: end;
  gap: clamp(28px, 4vw, 58px);
  margin-bottom: 38px;
}

.feature-index h2,
.thesis h2,
.product-slab h2,
.workflow-section h2,
.governance-section h2,
.roi-section h2,
.pilot-section h2 {
  margin: 10px 0 0;
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 330;
  line-height: 0.98;
  letter-spacing: 0;
}

.feature-index-top .text-link {
  justify-self: end;
}

.module-tabs {
  display: flex;
  gap: 24px;
  max-width: 100%;
  margin-bottom: 22px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.module-tab {
  flex: 0 0 auto;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 0 0 9px;
  cursor: pointer;
  font-size: 16px;
  white-space: nowrap;
}

.module-tab.active,
.module-tab:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.module-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(280px, 1fr));
  gap: 1px;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--line);
  scrollbar-width: thin;
}

.module-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.module-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: top left;
  filter: saturate(0.65) contrast(1.03) brightness(0.78);
  transition: transform 220ms ease, filter 220ms ease;
}

.module-card.active img,
.module-card:hover img {
  filter: saturate(0.9) contrast(1.04) brightness(0.88);
  transform: scale(1.02);
}

.module-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 20px;
  background: rgba(21, 39, 54, 0.88);
  color: var(--white);
}

.module-card span {
  color: rgba(250, 248, 240, 0.58);
  font-family: var(--label);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.module-card h3 {
  margin: 14px 0 0;
  color: var(--white);
  font-size: 22px;
  font-weight: 360;
  line-height: 1.18;
}

.thesis {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(110px, 15vw, 178px) clamp(18px, 3.2vw, 42px);
  background: var(--paper-warm);
  text-align: center;
}

.thesis span {
  color: var(--muted);
  font-family: var(--label);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.06em;
}

.thesis h2 {
  max-width: 1150px;
  color: #747777;
  font-size: clamp(42px, 6.4vw, 94px);
}

.thesis p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.product-slab {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(28px, 4.5vw, 70px);
  align-items: center;
  min-height: 720px;
  padding: clamp(86px, 10vw, 140px) clamp(18px, 3.2vw, 42px);
  overflow: hidden;
}

.slab-dark {
  background: var(--ink);
  color: var(--white);
}

.slab-light {
  background: var(--paper);
  color: var(--ink);
}

.slab-word {
  position: absolute;
  left: clamp(18px, 3.2vw, 42px);
  top: clamp(34px, 6vw, 76px);
  z-index: 0;
  color: currentColor;
  font-size: clamp(86px, 16vw, 240px);
  font-weight: 320;
  line-height: 0.8;
  opacity: 0.11;
  white-space: nowrap;
  pointer-events: none;
}

.slab-copy,
.slab-media,
.evidence-console {
  position: relative;
  z-index: 1;
}

.slab-copy {
  max-width: 670px;
}

.slab-copy h2 {
  color: currentColor;
}

.slab-copy p:not(.tiny-label) {
  margin: 24px 0 0;
  color: currentColor;
  opacity: 0.72;
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 360;
  line-height: 1.58;
}

.slab-media {
  margin: 0;
}

.slab-media img,
.pilot-split figure img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: top left;
}

.slab-light .slab-media img {
  border-color: var(--line);
}

.media-left {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.9fr);
}

.workflow-section {
  background: var(--paper-warm);
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading > p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.segmented-control {
  justify-content: flex-end;
  width: max-content;
  max-width: 100%;
  border: 1px solid var(--ink);
}

.segment,
.step-button,
.filter-button {
  cursor: pointer;
}

.segment {
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 18px;
}

.segment.active {
  background: var(--ink);
  color: var(--white);
}

.workflow-board {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  border: 1px solid var(--ink);
  background: var(--paper);
}

.workflow-steps {
  display: grid;
  align-content: start;
  border-right: 1px solid var(--ink);
}

.step-button {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 14px 16px;
  text-align: left;
}

.step-button span {
  color: var(--muted);
  font-family: var(--label);
  font-size: 12px;
  font-weight: 520;
}

.step-button b {
  font-weight: 420;
}

.step-button.active {
  background: var(--ink);
  color: var(--white);
}

.workflow-detail {
  min-height: 470px;
  padding: clamp(28px, 4.5vw, 58px);
}

.detail-meta {
  margin: 0 0 16px;
  color: var(--muted);
  font-family: var(--label);
  font-size: 12px;
  font-weight: 640;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.workflow-detail h3 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 330;
  line-height: 1.02;
}

.workflow-detail > p:not(.detail-meta) {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.62;
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.detail-columns div {
  min-height: 170px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.detail-columns ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.detail-columns li {
  color: var(--ink-soft);
  line-height: 1.45;
}

.evidence-console {
  display: grid;
  gap: 14px;
  border: 1px solid var(--ink);
  background: var(--paper);
  padding: 18px;
}

.filter-row {
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  min-height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0 14px;
  color: var(--ink);
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.evidence-table {
  display: grid;
  gap: 8px;
}

.claim-record {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  border-top: 1px solid var(--line);
  padding: 14px 0 0;
}

.status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status.direct {
  background: var(--green);
}

.status.benchmark {
  background: var(--blue);
}

.status.gap {
  background: var(--red);
}

.status.stale {
  background: var(--amber);
}

.claim-record h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 440;
}

.claim-record p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.claim-record em {
  justify-self: end;
  color: var(--muted);
  font-family: var(--label);
  font-size: 11px;
  font-weight: 520;
  font-style: normal;
  text-transform: uppercase;
}

.governance-section {
  background: var(--ink);
  color: var(--white);
}

.governance-section h2,
.governance-section h3 {
  color: var(--white);
}

.governance-section .section-heading > p {
  color: rgba(250, 248, 240, 0.68);
}

.governance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.governance-grid article {
  min-height: 250px;
  padding: 20px;
  background: var(--ink);
}

.governance-grid span,
.pilot-grid span {
  display: block;
  color: var(--muted);
  font-family: var(--label);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.governance-grid h3 {
  margin: 36px 0 0;
  font-size: clamp(20px, 2.1vw, 29px);
  font-weight: 360;
  line-height: 1.18;
}

.roi-section {
  background: var(--paper);
}

.roi-intro {
  max-width: 990px;
  margin-bottom: 38px;
}

.roi-intro p:not(.tiny-label) {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.6;
}

.roi-board {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(340px, 1fr);
  gap: 1px;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.roi-controls,
.roi-results {
  background: var(--paper);
  padding: 22px;
}

.roi-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.roi-controls label {
  display: grid;
  gap: 8px;
}

.roi-controls span {
  color: var(--muted);
  font-family: var(--label);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.roi-controls input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 10px;
}

.roi-controls input:focus {
  outline: 2px solid rgba(9, 86, 140, 0.18);
  border-color: var(--blue);
}

.roi-results {
  display: grid;
  gap: 1px;
  background: var(--ink);
  padding: 0;
}

.result-main {
  display: grid;
  align-content: center;
  min-height: 210px;
  padding: 28px;
  background: var(--blue);
  color: var(--white);
}

.result-main span,
.result-grid span {
  color: rgba(250, 248, 240, 0.7);
  font-family: var(--label);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.result-main strong {
  margin-top: 10px;
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 330;
  line-height: 1;
}

.result-main p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(250, 248, 240, 0.74);
  font-size: 17px;
  line-height: 1.48;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
}

.result-grid div {
  min-height: 126px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  background: var(--paper);
}

.result-grid span {
  color: var(--muted);
}

.result-grid b {
  color: var(--ink);
  font-size: 28px;
  font-weight: 360;
}

.roi-investor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  border: 1px solid var(--ink);
  border-top: 0;
  background: var(--ink);
}

.roi-investor-grid article {
  min-height: 238px;
  display: grid;
  align-content: space-between;
  gap: 26px;
  padding: 22px;
  background: var(--paper);
}

.roi-investor-grid span {
  color: var(--muted);
  font-family: var(--label);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.roi-investor-grid h3 {
  margin: 0;
  font-size: clamp(20px, 2.1vw, 29px);
  font-weight: 360;
  line-height: 1.16;
}

.roi-investor-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.pilot-section {
  background: var(--paper-warm);
}

.pilot-split {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.86fr);
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
}

.pilot-split figure {
  margin: 0;
}

.pilot-split figure img {
  border-color: var(--line);
}

.pilot-split p:not(.tiny-label) {
  margin: 24px 0;
  font-size: 18px;
  line-height: 1.62;
}

.pilot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.pilot-grid article {
  min-height: 230px;
  padding: 20px;
  background: var(--paper-warm);
}

.pilot-grid h3 {
  margin: 36px 0 0;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 360;
  line-height: 1.18;
}

.mobile-command-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 75;
  justify-content: flex-end;
  gap: 8px;
  color: var(--white);
  pointer-events: none;
}

.mobile-command-bar > * {
  pointer-events: auto;
  background: rgba(21, 39, 54, 0.86);
  backdrop-filter: blur(12px);
}

.mobile-command-bar .outline-action {
  display: none;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(160px, 0.7fr));
  gap: 0;
  padding: clamp(54px, 6vw, 82px) clamp(18px, 3.2vw, 42px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(9, 86, 140, 0.16), rgba(9, 86, 140, 0) 42%),
    var(--ink);
  border-top: 1px solid rgba(250, 248, 240, 0.22);
  color: var(--white);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: rgba(250, 248, 240, 0.5);
}

.footer-brand,
.site-footer nav {
  min-width: 0;
  padding-right: clamp(22px, 3vw, 42px);
}

.site-footer nav {
  padding-left: clamp(20px, 2.6vw, 36px);
  border-left: 1px solid rgba(250, 248, 240, 0.16);
}

.site-footer .brand img {
  width: 34px;
  height: 34px;
}

.site-footer .brand span {
  color: var(--white);
  font-size: 24px;
  font-weight: 320;
  line-height: 1;
}

.footer-brand p {
  max-width: 420px;
  margin: 24px 0 0;
  color: rgba(250, 248, 240, 0.72);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 360;
  line-height: 1.35;
}

.site-footer h2 {
  margin: 0 0 20px;
  color: rgba(250, 248, 240, 0.5);
  font-family: var(--label);
  font-size: 11px;
  font-weight: 640;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 13px;
}

.site-footer a {
  color: rgba(250, 248, 240, 0.84);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 420;
  line-height: 1.35;
  transition: color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

@keyframes heroImageDrift {
  0% {
    transform: scale(1.08) translate3d(-0.8%, -0.4%, 0);
    filter: saturate(0.54) contrast(1.06) brightness(0.52);
  }

  50% {
    transform: scale(1.12) translate3d(1.1%, 0.7%, 0);
    filter: saturate(0.62) contrast(1.08) brightness(0.58);
  }

  100% {
    transform: scale(1.09) translate3d(-0.2%, 1%, 0);
    filter: saturate(0.57) contrast(1.05) brightness(0.54);
  }
}

@keyframes heroSignalSweep {
  0%,
  100% {
    opacity: 0.25;
    transform: translate3d(-14%, -2%, 0) rotate(-2deg);
  }

  45% {
    opacity: 0.54;
    transform: translate3d(8%, 3%, 0) rotate(2deg);
  }

  70% {
    opacity: 0.34;
    transform: translate3d(16%, -1%, 0) rotate(1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .hero-media::before {
    animation: none;
  }
}

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

  .site-header .outline-action {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .menu-grid {
    grid-template-columns: minmax(220px, 0.9fr) minmax(300px, 1fr) minmax(220px, 0.8fr);
  }

  .menu-column a,
  .menu-column h3 {
    font-size: 30px;
  }

  .hero h1 {
    font-size: clamp(48px, 5.5vw, 64px);
    line-height: 0.98;
  }

  .feature-index-top,
  .split-heading,
  .product-slab,
  .media-left,
  .pilot-split {
    grid-template-columns: 1fr;
  }

  .slab-copy {
    max-width: 850px;
  }

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

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 38px;
  }
}

@media (max-width: 900px) {
  .announcement {
    min-height: 46px;
    padding-right: 12px;
  }

  .announcement p {
    font-size: 12px;
  }

  .site-header {
    top: 46px;
    min-height: 64px;
  }

  .site-header .outline-action,
  .site-header [data-search-open] {
    display: none;
  }

  .brand span {
    font-size: 18px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    align-self: end;
    padding: 122px 0 230px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 68px);
  }

  .hero-footer {
    padding-bottom: 108px;
  }

  .hero-footer a,
  .hero-footer div {
    min-height: 0;
    padding: 14px 0 0;
  }

  .menu-grid,
  .search-results,
  .workflow-board,
  .roi-board,
  .roi-investor-grid,
  .pilot-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 132px;
    padding-bottom: 132px;
  }

  .footer-brand,
  .site-footer nav {
    padding-right: 0;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 28px;
  }

  .site-footer nav {
    padding-left: clamp(16px, 2.8vw, 26px);
    padding-top: 24px;
    border-left: 1px solid rgba(250, 248, 240, 0.16);
    border-top: 1px solid rgba(250, 248, 240, 0.16);
  }

  .site-footer nav:nth-of-type(even) {
    padding-left: clamp(16px, 2.8vw, 26px);
    border-left: 1px solid rgba(250, 248, 240, 0.16);
  }

  .footer-brand p {
    max-width: 620px;
    margin-top: 18px;
    font-size: 20px;
  }

  .menu-column a,
  .menu-column h3 {
    font-size: 28px;
  }

  .search-box {
    padding-top: 64px;
  }

  .module-gallery {
    grid-template-columns: repeat(6, minmax(260px, 80vw));
  }

  .module-card,
  .module-card img {
    min-height: 410px;
  }

  .workflow-steps {
    grid-template-columns: repeat(5, minmax(154px, 1fr));
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .step-button {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .roi-controls,
  .result-grid,
  .roi-investor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-command-bar .outline-action {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .announcement {
    align-items: start;
    min-height: 56px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-header {
    top: 65px;
    padding: 0 18px;
  }

  .brand-light img {
    width: 24px;
    height: 24px;
  }

  .site-header .brand span {
    display: inline;
    font-size: 20px;
  }

  .hero {
    min-height: 844px;
  }

  .hero-media img {
    object-position: 58% top;
  }

  .hero-content {
    width: min(100%, calc(100vw - 32px));
    justify-items: start;
    text-align: left;
    padding-top: 142px;
    padding-bottom: 82px;
  }

  .hero h1 {
    font-size: clamp(29px, 8.5vw, 40px);
    line-height: 1;
    overflow-wrap: break-word;
  }

  .hero h1 span {
    display: block;
  }

  .hero h1 .desktop-title-line {
    display: none;
  }

  .hero h1 .mobile-title-line {
    display: block;
  }

  .hero-content p:not(.hero-kicker) {
    max-width: 280px;
    font-size: 15px;
  }

  .hero-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 116px;
  }

  .hero-footer a,
  .hero-footer div {
    padding-right: 12px;
  }

  .hero-footer b {
    font-size: 14px;
  }

  .feature-index,
  .workflow-section,
  .governance-section,
  .roi-section,
  .pilot-section,
  .product-slab,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-index h2,
  .thesis h2,
  .product-slab h2,
  .workflow-section h2,
  .governance-section h2,
  .roi-section h2,
  .pilot-section h2 {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .slab-word {
    left: 16px;
    font-size: clamp(58px, 23vw, 120px);
  }

  .module-tab {
    font-size: 15px;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 72px;
    padding-bottom: 120px;
  }

  .site-footer nav {
    padding-left: 0;
    border-left: 0;
  }

  .site-footer nav:nth-of-type(even) {
    padding-left: 18px;
    border-left: 1px solid rgba(250, 248, 240, 0.16);
  }

  .site-footer nav:nth-of-type(3) {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
  }

  .module-gallery {
    margin-left: -16px;
    margin-right: -16px;
    border-left: 0;
    border-right: 0;
  }

  .module-card {
    min-height: 392px;
  }

  .module-card img {
    min-height: 392px;
  }

  .module-card div {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }

  .module-card h3 {
    font-size: 20px;
  }

  .detail-columns,
  .roi-controls,
  .result-grid,
  .roi-investor-grid {
    grid-template-columns: 1fr;
  }

  .workflow-detail h3 {
    font-size: 34px;
  }

  .claim-record {
    grid-template-columns: 12px minmax(0, 1fr);
  }

  .claim-record em {
    grid-column: 2;
    justify-self: start;
  }

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

  .mobile-command-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .mobile-command-bar .outline-action {
    min-width: 0;
    flex: 1 1 auto;
    padding: 0 14px;
  }
}
