@font-face {
  font-family: "InterVariable";
  src: local("Inter");
  font-display: swap;
}

:root {
  --blue: #356A93;
  --blue-bright: #4D83AC;
  --ink: #0A0C0F;
  --ink-soft: #12161B;
  --white: #F5F7F9;
  --muted: #9AA5AF;
  --line: rgba(255,255,255,.16);
  --header-h: 86px;
}

* { box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: InterVariable, Inter, Arial, sans-serif;
}

button, a { font: inherit; }

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, transparent 0 37%, rgba(0,0,0,.11) 66%, rgba(0,0,0,.66) 100%),
    linear-gradient(180deg, rgba(0,0,0,.22), transparent 24%, transparent 76%, rgba(0,0,0,.32));
  z-index: 2;
}

#orbCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.atmosphere {
  position: fixed;
  width: min(78vw, 980px);
  height: min(78vw, 980px);
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(53,106,147,.18) 0,
    rgba(53,106,147,.07) 38%,
    rgba(53,106,147,.018) 58%,
    transparent 72%);
  filter: blur(24px);
  z-index: 1;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4.2vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  background: rgba(10,12,15,.48);
}

.brand {
  display: block;
  width: clamp(146px, 14vw, 205px);
}
.brand img { display: block; width: 100%; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.primary-nav button,
.mobile-menu button {
  color: rgba(255,255,255,.72);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px 14px;
  transition: color .2s ease;
}
.primary-nav button:hover,
.primary-nav button.active { color: white; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span { width: 17px; height: 1px; background: white; }

.experience {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
}

.content-shell {
  position: absolute;
  left: clamp(28px, 7vw, 110px);
  top: 50%;
  transform: translateY(-49%);
  width: min(590px, 42vw);
  z-index: 8;
  transition: opacity .32s ease, transform .5s cubic-bezier(.22,.8,.22,1);
}
.content-shell.transitioning {
  opacity: 0;
  transform: translateY(-43%) translateX(-22px);
}

.eyebrow {
  color: #82A6C1;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .19em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 22px;
}

h1 {
  margin: 0;
  font-size: clamp(41px, 5vw, 76px);
  line-height: .99;
  letter-spacing: -.052em;
  max-width: 760px;
  font-weight: 630;
}

.rule {
  width: 58px;
  height: 3px;
  background: var(--blue);
  margin: 28px 0 24px;
}

.lead {
  max-width: 620px;
  margin: 0;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.58;
  color: rgba(245,247,249,.75);
}

.fact {
  min-height: 54px;
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255,255,255,.9);
}
.fact strong {
  font-size: clamp(28px, 3vw, 44px);
  color: white;
  display: inline-block;
  margin-right: 10px;
  letter-spacing: -.04em;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.actions a, .actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  border-radius: 999px;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.actions .primary {
  color: white;
  background: var(--blue);
  border: 1px solid var(--blue);
}
.actions .secondary {
  color: white;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.22);
}

.stage-label {
  position: absolute;
  right: clamp(26px, 4.2vw, 72px);
  top: calc(var(--header-h) + 30px);
  display: flex;
  gap: 13px;
  align-items: center;
  text-align: left;
  z-index: 9;
}
.stage-label > span {
  font-size: 12px;
  color: #82A6C1;
  border: 1px solid rgba(130,166,193,.42);
  border-radius: 50%;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
}
.stage-label small {
  display: block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 9px;
  color: rgba(255,255,255,.42);
  margin-bottom: 4px;
}
.stage-label strong {
  font-size: 13px;
  font-weight: 580;
}

.journey-ui {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(760px, 72vw);
}

.journey-arrow {
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(10,12,15,.64);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease;
}
.journey-arrow:hover {
  transform: scale(1.06);
  border-color: rgba(255,255,255,.55);
}

.journey-track {
  position: relative;
  height: 54px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.journey-track::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22) 8%, rgba(255,255,255,.22) 92%, transparent);
}
.stop-button {
  position: relative;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}
.stop-button::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #5E6871;
  box-shadow: 0 0 0 5px rgba(10,12,15,.8);
  transition: all .3s ease;
}
.stop-button:hover::before { background: #A2ABB3; transform: scale(1.15); }
.stop-button.active::before {
  inset: 8px;
  background: var(--blue-bright);
  box-shadow: 0 0 0 5px rgba(53,106,147,.22), 0 0 22px rgba(53,106,147,.45);
}
.stop-button span {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 10px;
  color: rgba(255,255,255,.46);
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.stop-button:hover span,
.stop-button.active span { opacity: 1; color: rgba(255,255,255,.82); }

.travel-status {
  position: absolute;
  z-index: 12;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  display: flex;
  gap: 11px;
  align-items: center;
  opacity: 0;
  transition: opacity .25s ease;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
}
.travel-status.visible { opacity: 1; }
.travel-status span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 18px rgba(77,131,172,.8);
  animation: pulse 1s infinite ease-in-out;
}
@keyframes pulse { 50% { transform: scale(1.7); opacity: .45; } }

.soundless-hint {
  position: absolute;
  left: clamp(28px, 7vw, 110px);
  bottom: 42px;
  z-index: 7;
  color: rgba(255,255,255,.38);
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 11px;
  letter-spacing: .05em;
}

.mobile-menu {
  display: none;
  position: fixed;
  z-index: 25;
  inset: var(--header-h) 0 0 0;
  background: rgba(10,12,15,.98);
  padding: 38px 26px;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open { display: flex; }
.mobile-menu button {
  width: 100%;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  font-size: 22px;
  color: white;
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .site-header { padding: 0 22px; }
  .brand { width: 145px; }
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .content-shell {
    left: 24px;
    top: 48%;
    width: calc(100% - 48px);
    max-width: 580px;
    transform: translateY(-50%);
  }
  h1 { font-size: clamp(38px, 10vw, 58px); max-width: 92%; }
  .lead { max-width: 88%; font-size: 16px; }
  .stage-label { right: 22px; top: 91px; }
  .journey-ui { width: calc(100% - 28px); bottom: 22px; gap: 6px; }
  .journey-arrow { width: 40px; height: 40px; flex-basis: 40px; }
  .journey-track { overflow: hidden; }
  .stop-button span { display: none; }
  .soundless-hint { display: none; }
  .fact { margin-top: 20px; }
  .actions { margin-top: 22px; }
  .atmosphere { width: 115vw; height: 115vw; left: 68%; }
}

@media (max-width: 600px) {
  .content-shell {
    top: 46%;
  }
  .eyebrow { margin-bottom: 14px; }
  h1 { font-size: clamp(34px, 9.6vw, 48px); }
  .rule { margin: 18px 0; }
  .lead { font-size: 14px; line-height: 1.48; max-width: 94%; }
  .fact { font-size: 12px; min-height: 42px; }
  .fact strong { font-size: 28px; }
  .actions { flex-wrap: wrap; gap: 8px; }
  .actions a, .actions button { min-height: 42px; padding: 0 17px; font-size: 12px; }
  .stage-label div { display: none; }
}


/* =========================================================
   Layered drill-down experience
   ========================================================= */

body.overlay-open .experience,
body.overlay-open .site-header {
  filter: blur(3px) saturate(.78);
}
body.overlay-open #orbCanvas,
body.overlay-open .atmosphere {
  filter: blur(2px);
}

.overlay-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(1,3,5,.58);
  opacity: 0;
  visibility: hidden;
  transition: opacity .34s ease, visibility .34s ease;
  backdrop-filter: blur(10px);
}
.overlay-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 41;
  display: grid;
  place-items: center;
  padding: 34px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(.985);
  transition:
    opacity .38s ease,
    visibility .38s ease,
    transform .48s cubic-bezier(.22,.8,.22,1);
}
.detail-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.overlay-frame {
  width: min(1450px, 94vw);
  height: min(900px, 92vh);
  border: 1px solid rgba(106,153,190,.42);
  background:
    linear-gradient(180deg, rgba(16,20,24,.93), rgba(8,11,14,.96)),
    radial-gradient(circle at 76% 12%, rgba(53,106,147,.14), transparent 36%);
  box-shadow:
    0 30px 90px rgba(0,0,0,.62),
    inset 0 0 0 1px rgba(255,255,255,.025);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 76px 1fr;
}

.overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(8,11,14,.58);
}
.overlay-branding {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.overlay-kicker {
  color: #8CB0C9;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 750;
}
.overlay-route {
  color: rgba(255,255,255,.4);
  font-size: 12px;
}
.overlay-close {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.025);
  color: white;
  cursor: pointer;
  font-size: 29px;
  line-height: 1;
  font-weight: 300;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.overlay-close:hover {
  transform: rotate(7deg) scale(1.04);
  border-color: rgba(255,255,255,.52);
  background: rgba(255,255,255,.06);
}

.overlay-layout {
  min-height: 0;
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
}

.overlay-sidebar {
  padding: 30px 24px 28px 30px;
  border-right: 1px solid rgba(255,255,255,.085);
  background: rgba(255,255,255,.015);
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.overlay-sidebar-title {
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 9px;
  margin-bottom: 20px;
}
.overlay-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.overlay-sidebar nav button {
  text-align: left;
  background: transparent;
  border: 0;
  border-left: 2px solid transparent;
  padding: 10px 12px;
  color: rgba(255,255,255,.46);
  cursor: pointer;
  font-size: 12px;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.overlay-sidebar nav button:hover,
.overlay-sidebar nav button.active {
  color: white;
  border-left-color: var(--blue-bright);
  background: rgba(53,106,147,.09);
}
.overlay-sidebar-proof {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
}
.overlay-sidebar-proof strong {
  display: block;
  font-size: 35px;
  letter-spacing: -.04em;
  margin-bottom: 6px;
}
.overlay-sidebar-proof span {
  color: rgba(255,255,255,.48);
  font-size: 11px;
  line-height: 1.45;
}

.overlay-content {
  overflow-y: auto;
  scroll-behavior: smooth;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(95,137,168,.72) rgba(255,255,255,.05);
}
.overlay-content::-webkit-scrollbar { width: 9px; }
.overlay-content::-webkit-scrollbar-track { background: rgba(255,255,255,.03); }
.overlay-content::-webkit-scrollbar-thumb {
  background: rgba(95,137,168,.68);
  border-radius: 99px;
}

.overlay-hero,
.overlay-section {
  position: relative;
  padding: clamp(58px, 7vw, 108px) clamp(42px, 7vw, 112px);
  border-bottom: 1px solid rgba(255,255,255,.085);
}
.overlay-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(270px, .62fr);
  gap: 64px;
  align-items: center;
}
.overlay-hero h2 {
  font-size: clamp(46px, 5vw, 77px);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 930px;
  margin: 0;
}
.overlay-hero p,
.overlay-section > p {
  color: rgba(255,255,255,.68);
  font-size: 18px;
  line-height: 1.65;
  max-width: 830px;
}
.overlay-section-number {
  display: inline-flex;
  color: #86A9C2;
  font-size: 10px;
  letter-spacing: .15em;
  margin-bottom: 22px;
}
.overlay-hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}
.overlay-primary-cta {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  color: white;
  background: var(--blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}
.overlay-text-cta {
  color: rgba(255,255,255,.66);
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 6px;
}
.overlay-hero-proof {
  padding: 34px;
  border: 1px solid rgba(126,166,194,.31);
  background: rgba(255,255,255,.026);
}
.proof-figure span,
.proof-figure em {
  display: block;
  font-style: normal;
}
.proof-figure span {
  color: rgba(255,255,255,.42);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
}
.proof-figure strong {
  display: block;
  font-size: clamp(50px, 6vw, 86px);
  letter-spacing: -.055em;
  line-height: 1;
  margin: 4px 0 10px;
}
.proof-figure em {
  font-size: 14px;
  color: #8DB0C8;
}
.proof-line {
  width: 52px;
  height: 2px;
  background: var(--blue);
  margin: 28px 0 24px;
}
.overlay-hero-proof p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.57);
}

.overlay-section h3 {
  margin: 0 0 34px;
  font-size: clamp(34px, 4vw, 59px);
  max-width: 930px;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.statement-list {
  border-top: 1px solid rgba(255,255,255,.12);
}
.statement-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.statement-list b {
  color: #8DB0C8;
  font-size: 14px;
}
.statement-list span {
  color: rgba(255,255,255,.7);
  font-size: 17px;
}

.editorial-grid {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
}
.editorial-grid.two-col { grid-template-columns: 1fr 1fr; }
.editorial-grid > div {
  background: #0D1115;
  padding: 33px;
}
.editorial-grid h4 {
  margin: 0 0 12px;
  font-size: 19px;
}
.editorial-grid p {
  margin: 0;
  color: rgba(255,255,255,.58);
  line-height: 1.62;
  font-size: 14px;
}

.automation-band {
  background:
    linear-gradient(112deg, rgba(53,106,147,.18), transparent 52%),
    rgba(255,255,255,.015);
}
.automation-flow {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}
.automation-flow div {
  min-height: 125px;
  border: 1px solid rgba(255,255,255,.17);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  color: rgba(255,255,255,.72);
}
.automation-flow div.active {
  border-color: rgba(119,164,196,.72);
  background: rgba(53,106,147,.18);
  box-shadow: 0 0 32px rgba(53,106,147,.15);
}
.automation-flow i {
  font-style: normal;
  font-size: 24px;
  color: rgba(255,255,255,.34);
}
.clarifier {
  border-left: 3px solid var(--blue);
  padding-left: 20px;
  color: white !important;
  font-weight: 650;
}

.scope-lines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 38px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.scope-lines span {
  padding: 19px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.72);
}

.outcome-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.outcome-row > div {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.018);
}
.outcome-row strong {
  display: block;
  font-size: clamp(39px, 5vw, 70px);
  letter-spacing: -.05em;
  margin-bottom: 8px;
}
.outcome-row span {
  color: rgba(255,255,255,.5);
  font-size: 13px;
  line-height: 1.45;
}
.outcome-section blockquote {
  margin: 58px 0 0;
  padding: 0 0 0 28px;
  border-left: 3px solid var(--blue);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.18;
  max-width: 980px;
  color: rgba(255,255,255,.87);
}

.overlay-final {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

@media (max-width: 960px) {
  .detail-overlay { padding: 14px; }
  .overlay-frame {
    width: 100%;
    height: calc(100vh - 28px);
    border-radius: 18px;
  }
  .overlay-route { display: none; }
  .overlay-layout { grid-template-columns: 1fr; }
  .overlay-sidebar { display: none; }
  .overlay-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 35px;
  }
  .overlay-hero,
  .overlay-section {
    padding: 50px 28px;
  }
  .overlay-hero h2 { font-size: clamp(38px, 9vw, 62px); }
  .editorial-grid.two-col,
  .scope-lines,
  .outcome-row {
    grid-template-columns: 1fr;
  }
  .automation-flow {
    grid-template-columns: 1fr;
  }
  .automation-flow i {
    transform: rotate(90deg);
    justify-self: center;
  }
}


/* =========================================================
   V4: six-stop narrative + evolving orb
   ========================================================= */

.headline-rotator {
  display: inline;
}
.headline-rotator .swap {
  display: inline;
  transition: opacity .28s ease, transform .28s ease;
}
.headline-rotator .swap.out {
  opacity: 0;
  transform: translateY(10px);
}

.stop-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.stop-subnav button {
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.02);
  padding: 9px 13px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
}
.stop-subnav button:hover {
  color: white;
  border-color: rgba(255,255,255,.42);
}

.orb-phase {
  position: fixed;
  right: clamp(24px, 4.2vw, 72px);
  bottom: 96px;
  z-index: 8;
  text-align: right;
  color: rgba(255,255,255,.35);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.orb-phase strong {
  display: block;
  color: #87A9C1;
  font-size: 12px;
  letter-spacing: .05em;
  margin-top: 4px;
}

.overlay-content .comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,.1);
}
.overlay-content .comparison > div {
  padding: 34px;
  background: rgba(255,255,255,.015);
}
.overlay-content .comparison > div + div {
  border-left: 1px solid rgba(255,255,255,.1);
}
.overlay-content .comparison h4 {
  margin: 0 0 17px;
  font-size: 22px;
}
.overlay-content .comparison ul {
  padding-left: 18px;
  margin: 0;
  color: rgba(255,255,255,.66);
  line-height: 1.7;
}

.overlay-quote {
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.04em;
  max-width: 980px;
  margin: 0;
}

.overlay-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.1);
}
.overlay-proof-strip > div {
  background: #0D1115;
  padding: 28px;
}
.overlay-proof-strip strong {
  display: block;
  font-size: clamp(37px, 4vw, 62px);
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: 9px;
}
.overlay-proof-strip span {
  color: rgba(255,255,255,.48);
  font-size: 12px;
  line-height: 1.45;
}

.solution-list {
  border-top: 1px solid rgba(255,255,255,.12);
}
.solution-list article {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.solution-list h4 {
  margin: 0;
  font-size: 23px;
}
.solution-list p {
  margin: 0;
  color: rgba(255,255,255,.58);
  line-height: 1.55;
}
.solution-list a {
  color: #8CB0C9;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.service-feature {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
}
.service-feature > div {
  background: #0D1115;
  padding: 38px;
}
.service-feature .featured {
  background:
    radial-gradient(circle at 80% 10%, rgba(53,106,147,.20), transparent 48%),
    #0D1115;
}
.service-feature h4 {
  font-size: 28px;
  margin: 0 0 12px;
}
.service-feature p {
  color: rgba(255,255,255,.6);
  line-height: 1.62;
}

@media (max-width: 960px) {
  .overlay-proof-strip { grid-template-columns: 1fr 1fr; }
  .overlay-content .comparison,
  .service-feature { grid-template-columns: 1fr; }
  .overlay-content .comparison > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .solution-list article { grid-template-columns: 1fr; gap: 10px; }
  .orb-phase { display: none; }
}


/* =========================================================
   V4.1: new Jennason identity + clearer orb evolution
   ========================================================= */

.brand {
  width: clamp(190px, 17vw, 270px);
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.orb-phase {
  min-width: 132px;
  padding: 11px 14px 10px;
  border: 1px solid rgba(129,166,193,.20);
  background: rgba(8,11,14,.38);
  backdrop-filter: blur(10px);
  border-radius: 8px;
}

.orb-phase span {
  display: block;
}

.orb-phase strong {
  transition: color .35s ease, letter-spacing .35s ease;
}

body[data-orb-stage="0"] .orb-phase strong { color: rgba(255,255,255,.62); }
body[data-orb-stage="1"] .orb-phase strong { color: #6F98B6; }
body[data-orb-stage="2"] .orb-phase strong { color: #79A3C0; }
body[data-orb-stage="3"] .orb-phase strong { color: #89B2CF; letter-spacing: .08em; }
body[data-orb-stage="4"] .orb-phase strong { color: #A3C0D4; letter-spacing: .10em; }
body[data-orb-stage="5"] .orb-phase strong { color: #B8D0E0; letter-spacing: .12em; }

@media (max-width: 900px) {
  .brand { width: 178px; }
}


/* =========================================================
   V5 overrides: scene-based orb redesign + small-logo refinement
   ========================================================= */

body {
  transition: color .35s ease, background-color .35s ease;
}

.site-header,
.primary-nav button,
.stage-label > span,
.stage-label small,
.stage-label strong,
.journey-arrow,
.stop-button::before,
.travel-status,
.soundless-hint,
.eyebrow,
.rule,
.lead,
.fact,
.actions .secondary,
.orb-phase {
  transition: background-color .35s ease, color .35s ease, border-color .35s ease, opacity .35s ease, box-shadow .35s ease;
}

.brand {
  width: clamp(220px, 20vw, 320px);
}
.brand img {
  width: 100%;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
}

body::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), transparent 24%, transparent 76%, rgba(0,0,0,.10));
}

.atmosphere {
  opacity: .45;
  transition: opacity .4s ease;
}

.orb-phase {
  min-width: 132px;
  padding: 11px 14px 10px;
  border: 1px solid rgba(129,166,193,.20);
  background: rgba(8,11,14,.28);
  backdrop-filter: blur(10px);
  border-radius: 8px;
}
.orb-phase span { display:block; }
.orb-phase strong { transition: color .35s ease, letter-spacing .35s ease; }

/* Light scenes: Solutions and Insights */
body[data-theme="light"] {
  color: #10161d;
}
body[data-theme="light"] .site-header {
  background: rgba(255,255,255,.72);
  border-bottom-color: rgba(15,23,32,.10);
}
body[data-theme="light"] .primary-nav button,
body[data-theme="light"] .travel-status,
body[data-theme="light"] .soundless-hint,
body[data-theme="light"] .lead,
body[data-theme="light"] .fact,
body[data-theme="light"] .stage-label strong,
body[data-theme="light"] .stage-label small {
  color: rgba(16,22,29,.72);
}
body[data-theme="light"] .primary-nav button:hover,
body[data-theme="light"] .primary-nav button.active,
body[data-theme="light"] .stage-label strong {
  color: #10161d;
}
body[data-theme="light"] .eyebrow { color: #356A93; }
body[data-theme="light"] h1,
body[data-theme="light"] .fact strong,
body[data-theme="light"] .content-shell,
body[data-theme="light"] .journey-arrow {
  color: #10161d;
}
body[data-theme="light"] .rule { background: #356A93; }
body[data-theme="light"] .actions .secondary {
  color: #10161d;
  border-color: rgba(16,22,29,.16);
  background: rgba(16,22,29,.02);
}
body[data-theme="light"] .journey-arrow {
  background: rgba(255,255,255,.72);
  border-color: rgba(16,22,29,.18);
}
body[data-theme="light"] .journey-track::before {
  background: linear-gradient(90deg, transparent, rgba(16,22,29,.18) 8%, rgba(16,22,29,.18) 92%, transparent);
}
body[data-theme="light"] .stop-button::before {
  background: #A5B0B8;
  box-shadow: 0 0 0 5px rgba(255,255,255,.85);
}
body[data-theme="light"] .stop-button.active::before {
  background: #4D83AC;
  box-shadow: 0 0 0 5px rgba(53,106,147,.18), 0 0 20px rgba(53,106,147,.18);
}
body[data-theme="light"] .stop-button span { color: rgba(16,22,29,.46); }
body[data-theme="light"] .stage-label > span {
  color: #356A93;
  border-color: rgba(53,106,147,.32);
}
body[data-theme="light"] .orb-phase {
  background: rgba(255,255,255,.62);
  border-color: rgba(16,22,29,.10);
  color: rgba(16,22,29,.52);
}
body[data-theme="light"] .orb-phase strong { color: #356A93; }
body[data-theme="light"]::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 26%, transparent 74%, rgba(255,255,255,.06));
}
body[data-theme="light"] .atmosphere { opacity: .16; }

/* Scene-specific color nuance */
body[data-orb-stage="0"] .orb-phase strong { color: rgba(255,255,255,.82); }
body[data-orb-stage="1"] .orb-phase strong { color: #356A93; letter-spacing: .08em; }
body[data-orb-stage="2"] .orb-phase strong { color: #9FC2DA; letter-spacing: .08em; }
body[data-orb-stage="3"] .orb-phase strong { color: #356A93; letter-spacing: .12em; }
body[data-orb-stage="4"] .orb-phase strong { color: #B9CCD9; letter-spacing: .06em; }
body[data-orb-stage="5"] .orb-phase strong { color: #D8E6EF; letter-spacing: .14em; }

@media (max-width: 900px) {
  .brand { width: 205px; }
  .brand img { max-height: 38px; }
}


/* =========================================================
   V5.1 corrections
   - The overall page remains dark at every stop.
   - Only the orb changes its design and color treatment.
   - Prevent hero/header and CTA/navigation collisions.
   ========================================================= */

body[data-theme="light"] {
  color: var(--white);
}

body[data-theme="light"] .site-header {
  background: rgba(10,12,15,.48);
  border-bottom-color: rgba(255,255,255,.08);
}

body[data-theme="light"] .primary-nav button,
body[data-theme="light"] .travel-status,
body[data-theme="light"] .soundless-hint,
body[data-theme="light"] .lead,
body[data-theme="light"] .fact,
body[data-theme="light"] .stage-label strong,
body[data-theme="light"] .stage-label small,
body[data-theme="light"] .eyebrow,
body[data-theme="light"] h1,
body[data-theme="light"] .fact strong,
body[data-theme="light"] .content-shell,
body[data-theme="light"] .journey-arrow {
  color: inherit;
}

body[data-theme="light"] .primary-nav button:hover,
body[data-theme="light"] .primary-nav button.active,
body[data-theme="light"] .stage-label strong {
  color: #fff;
}

body[data-theme="light"] .eyebrow {
  color: #82A6C1;
}

body[data-theme="light"] .actions .secondary {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.02);
}

body[data-theme="light"] .journey-arrow {
  color: #fff;
  background: rgba(10,12,15,.64);
  border-color: rgba(255,255,255,.22);
}

body[data-theme="light"] .journey-track::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.22) 8%,
    rgba(255,255,255,.22) 92%,
    transparent
  );
}

body[data-theme="light"] .stop-button::before {
  background: #5E6871;
  box-shadow: 0 0 0 5px rgba(10,12,15,.8);
}

body[data-theme="light"] .stop-button.active::before {
  background: var(--blue-bright);
  box-shadow: 0 0 0 5px rgba(53,106,147,.22), 0 0 22px rgba(53,106,147,.45);
}

body[data-theme="light"] .stop-button span {
  color: rgba(255,255,255,.46);
}

body[data-theme="light"] .stage-label > span {
  color: #82A6C1;
  border-color: rgba(130,166,193,.42);
}

body[data-theme="light"] .orb-phase {
  background: rgba(8,11,14,.38);
  border-color: rgba(129,166,193,.20);
  color: rgba(255,255,255,.35);
}

/* Keep the hero fully below the fixed header and reserve the bottom for navigation. */
.content-shell {
  top: calc(var(--header-h) + clamp(26px, 5.5vh, 62px));
  transform: none;
  max-height: calc(100vh - var(--header-h) - 150px);
  width: min(610px, 43vw);
}

.content-shell.transitioning {
  transform: translateX(-22px);
}

h1 {
  font-size: clamp(40px, min(5vw, 7.6vh), 76px);
}

/* Move the orb journey controls to the lower-right so they do not collide with CTAs. */
.journey-ui {
  left: auto;
  right: clamp(22px, 4.2vw, 72px);
  transform: none;
  width: min(720px, 57vw);
  bottom: 28px;
}

/* Remove the instructional helper text. */
.soundless-hint {
  display: none !important;
}

@media (max-height: 860px) and (min-width: 901px) {
  .content-shell {
    top: calc(var(--header-h) + 24px);
    max-height: calc(100vh - var(--header-h) - 126px);
  }

  h1 {
    font-size: clamp(36px, min(4.7vw, 7vh), 63px);
    line-height: 1;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .rule {
    margin: 18px 0 16px;
  }

  .lead {
    font-size: 15px;
    line-height: 1.48;
  }

  .fact {
    margin-top: 17px;
    min-height: 42px;
  }

  .fact strong {
    font-size: clamp(25px, 2.6vw, 36px);
  }

  .actions {
    margin-top: 18px;
  }
}

@media (max-width: 900px) {
  .content-shell {
    top: 46%;
    transform: translateY(-50%);
    max-height: none;
    width: calc(100% - 48px);
  }

  .content-shell.transitioning {
    transform: translateY(-44%) translateX(-16px);
  }

  .journey-ui {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    bottom: 22px;
  }
}


/* =========================================================
   V5.2 corrections
   - One fully visible orb design is used at all stops.
   - The orb is smaller and shifted right to reduce text overlap.
   - Rotating landing headlines reserve one consistent text area.
   ========================================================= */

/* The old evolution status no longer applies. */
.orb-phase {
  display: none !important;
}

/* Reserve a consistent area while landing-page headlines rotate. */
.headline-rotator {
  display: block;
  width: 100%;
}

.headline-rotator .swap {
  display: block;
  width: 100%;
}

.headline-measurement {
  position: absolute;
  left: -100000px;
  top: 0;
  display: block;
  width: 100%;
  visibility: hidden;
  pointer-events: none;
  white-space: normal;
}

/* Give the text a little more separation from the orb on medium desktops. */
@media (min-width: 900px) and (max-width: 1249px) {
  .content-shell {
    width: min(500px, 42vw);
  }

  h1 {
    font-size: clamp(36px, min(4.6vw, 6.8vh), 60px);
  }
}


/* =========================================================
   V5.4 — faithful production logo assets
   ========================================================= */

.brand {
  width: clamp(235px, 19vw, 300px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
  image-rendering: auto;
}

@media (max-width: 900px) {
  .brand {
    width: 210px;
  }

  .brand img {
    max-height: 40px;
  }
}


/* =========================================================
   V5.5 — utility navigation and legal access
   ========================================================= */

.site-header {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  gap: 24px;
}

.primary-nav {
  justify-self: center;
}

.header-utilities {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.customer-login {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 999px;
  color: rgba(255,255,255,.84);
  background: rgba(8,11,14,.34);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .015em;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.customer-login:hover,
.customer-login:focus-visible {
  color: #fff;
  border-color: rgba(130,166,193,.72);
  background: rgba(53,106,147,.16);
}

.login-lock {
  position: relative;
  width: 11px;
  height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
}

.login-lock::before {
  content: "";
  position: absolute;
  left: 1.5px;
  top: -7px;
  width: 5px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.legal-utility {
  position: absolute;
  z-index: 15;
  left: clamp(24px, 4.2vw, 72px);
  bottom: 26px;
  color: rgba(255,255,255,.58);
}

.legal-utility summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(7,10,14,.5);
  backdrop-filter: blur(12px);
}

.legal-utility summary::-webkit-details-marker {
  display: none;
}

.legal-utility[open] summary {
  border-color: rgba(130,166,193,.5);
  color: white;
}

.legal-utility nav {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  width: 205px;
  display: grid;
  padding: 9px;
  border: 1px solid rgba(106,153,190,.28);
  border-radius: 14px;
  background: rgba(9,12,16,.96);
  box-shadow: 0 18px 55px rgba(0,0,0,.42);
  backdrop-filter: blur(18px);
}

.legal-utility a,
.legal-utility button {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 10px 11px;
  color: rgba(255,255,255,.66);
  background: transparent;
  text-decoration: none;
  text-align: left;
  font-size: 11px;
  cursor: pointer;
}

.legal-utility a:hover,
.legal-utility button:hover,
.legal-utility a:focus-visible,
.legal-utility button:focus-visible {
  color: white;
  background: rgba(53,106,147,.13);
}

.mobile-utility-links {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.mobile-utility-links a,
.mobile-utility-links button {
  display: block;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 14px 0;
  color: rgba(255,255,255,.64);
  background: transparent;
  text-decoration: none;
  text-align: left;
  font-size: 13px;
  cursor: pointer;
}

.mobile-utility-links a:first-child {
  color: #9ABBD1;
  font-weight: 700;
}

@media (max-width: 1240px) and (min-width: 901px) {
  .site-header {
    grid-template-columns: minmax(190px, 1fr) auto minmax(150px, 1fr);
    gap: 14px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .primary-nav button {
    padding-left: 9px;
    padding-right: 9px;
    font-size: 12px;
  }

  .brand {
    width: 210px;
  }

  .customer-login {
    padding: 0 13px;
  }
}

@media (max-width: 900px) {
  .site-header {
    display: flex;
  }

  .header-utilities {
    margin-left: auto;
  }

  .customer-login {
    min-height: 36px;
    padding: 0 12px;
  }

  .customer-login span:last-child {
    display: none;
  }

  .legal-utility {
    display: none;
  }
}

@media (max-width: 500px) {
  .mobile-utility-links {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   V5.7 — simplified journey controls
   The lower stop track, labels, dots, and connecting line are removed.
   Previous/next arrows remain as compact standalone controls.
   ========================================================= */

.journey-ui {
  left: auto;
  right: clamp(22px, 4.2vw, 72px);
  bottom: 28px;
  width: auto;
  transform: none;
  gap: 9px;
}

.journey-track {
  display: none !important;
}

.journey-arrow {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  background: rgba(8, 11, 15, .82);
  border-color: rgba(255, 255, 255, .28);
  box-shadow: 0 9px 30px rgba(0, 0, 0, .24);
  backdrop-filter: blur(13px);
}

.journey-arrow:hover,
.journey-arrow:focus-visible {
  background: rgba(53, 106, 147, .28);
  border-color: rgba(140, 180, 208, .78);
}

@media (max-width: 900px) {
  .journey-ui {
    left: auto;
    right: 18px;
    bottom: 18px;
    width: auto;
    transform: none;
  }
}


/* =========================================================
   V5.8 — move "Current stop" indicator away from the orb
   The stage label now sits on the left under the header, aligned
   with the content column, instead of floating over the orb.
   ========================================================= */

.stage-label {
  left: clamp(28px, 7vw, 110px);
  right: auto;
  top: calc(var(--header-h) + 18px);
  display: inline-flex;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(8, 11, 15, .50);
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
}

.stage-label > span {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  background: rgba(255,255,255,.02);
}

.stage-label small {
  margin-bottom: 3px;
}

body[data-theme="light"] .stage-label {
  background: rgba(255,255,255,.66);
  border-color: rgba(15,23,32,.10);
  box-shadow: 0 10px 28px rgba(16,22,29,.07);
}

body[data-theme="light"] .stage-label > span {
  background: rgba(255,255,255,.72);
}

@media (max-width: 900px) {
  .stage-label {
    left: 18px;
    right: auto;
    top: calc(var(--header-h) + 12px);
    padding: 9px 12px;
  }

  .stage-label > span {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 11px;
  }

  .stage-label small {
    font-size: 8px;
  }

  .stage-label strong {
    font-size: 12px;
  }
}


/* =========================================================
   V5.10 — reposition current-stop indicator to clear content
   Move the stage label to the top-center beneath the header so it
   does not overlap the left content column or the orb.
   ========================================================= */

.stage-label {
  left: 50%;
  right: auto;
  top: calc(var(--header-h) + 14px);
  transform: translateX(-50%);
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  max-width: min(280px, calc(100vw - 40px));
  background: rgba(8, 11, 15, .56);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
}

.stage-label > div {
  min-width: 0;
}

.stage-label strong {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body[data-theme="light"] .stage-label {
  background: rgba(255,255,255,.72);
  border-color: rgba(15,23,32,.10);
  box-shadow: 0 10px 28px rgba(16,22,29,.07);
}

@media (max-width: 1100px) {
  .stage-label {
    left: auto;
    right: 18px;
    top: calc(var(--header-h) + 10px);
    transform: none;
  }
}

@media (max-width: 900px) {
  .stage-label {
    left: 18px;
    right: auto;
    top: calc(var(--header-h) + 10px);
    transform: none;
    max-width: calc(100vw - 36px);
  }
}


/* V6.0 content callout */
.overlay-callout {
  margin: 28px 0 0;
  padding: 20px 22px;
  border: 1px solid rgba(105,151,185,.34);
  border-left: 3px solid var(--blue);
  background: rgba(53,106,147,.09);
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 1.6;
}

.overlay-callout strong {
  color: white;
}
