:root {
  --cap-blue: #0057ab;
  --cap-blue-2: #0070ce;
  --cyan: #16b8f3;
  --navy: #111937;
  --navy-2: #182342;
  --ink: #202533;
  --muted: #667085;
  --line: #d8deea;
  --paper: oklch(99% .006 245);
  --wash: #f3f6fb;
  --steel: #edf2f8;
  --story-bg: #f6f9fe;
  --shadow: 0 28px 80px rgba(17, 25, 55, .18);
  --shadow-soft: 0 18px 54px rgba(17, 25, 55, .1);
  --font-latin: Ubuntu, "Aptos", "Segoe UI", sans-serif;
  --font-cn: "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, oklch(99% .006 245) 0%, #f7f9fd 52%, oklch(99% .006 245) 100%);
  font-family: var(--font-latin), var(--font-cn);
  line-height: 1.5;
  line-break: strict;
  text-rendering: geometricPrecision;
}

body.menu-open,
body.modal-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img, video { display: block; max-width: 100%; }
.nowrap { white-space: nowrap; }
.title-line {
  display: inline-block;
  white-space: nowrap;
}

:focus-visible {
  outline: 2px solid rgba(22,184,243,.72);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 0 clamp(22px, 4vw, 58px);
  color: #fff;
  background: #010b1e;
  border-bottom: 0;
  transition: background .28s ease, box-shadow .28s ease, height .28s ease;
}

.site-header.is-scrolled {
  background: #010b1e;
  box-shadow: 0 12px 34px rgba(17, 25, 55, .24);
  height: 66px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.brand-name {
  color: rgba(255,255,255,.92);
  font-size: 18px;
  font-weight: 620;
  letter-spacing: .01em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 2.4vw, 34px);
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  white-space: nowrap;
}

.nav a {
  position: relative;
  padding: 27px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.nav a:hover,
.nav a.is-active { color: #fff; }
.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.text-link {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.24);
  transition: background .2s ease, border-color .2s ease;
}

.text-link:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.42);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .32);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 76px 0 auto;
  z-index: 45;
  display: none;
  padding: 18px 22px 28px;
  background: rgba(17, 25, 55, .98);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,.84);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.mobile-menu.is-open { display: block; }

.section {
  position: relative;
  padding: clamp(78px, 9vw, 132px) clamp(22px, 6vw, 92px);
  border-top: 0;
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(0,87,171,.38), transparent 44%),
    radial-gradient(circle at 72% 22%, rgba(22,184,243,.2), transparent 30%),
    var(--navy);
}

.section-light {
  color: var(--ink);
  background:
    linear-gradient(180deg, oklch(99% .006 245), oklch(96% .016 244));
}

.section-soft { background: var(--wash); }

.platform {
  overflow: hidden;
  color: oklch(98% .006 240);
  background: #101736;
}

.platform .section-head {
  position: relative;
  z-index: 3;
  max-width: 980px;
  margin-right: auto;
  margin-bottom: clamp(18px, 3vw, 34px);
  margin-left: auto;
  text-align: center;
}

.platform .section-head h2 {
  color: oklch(98% .006 240);
  font-size: clamp(28px, 3.6vw, 54px);
  margin-right: auto;
  margin-left: auto;
}

.platform .section-head p {
  color: rgba(255,255,255,.72);
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.modules {
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.modules::before,
.experience::before,
.flow::before,
.contact::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.modules::before {
  background:
    linear-gradient(90deg, rgba(17,25,55,.96), rgba(17,25,55,.78) 46%, rgba(17,25,55,.5)),
    linear-gradient(180deg, rgba(17,25,55,.2), rgba(17,25,55,.92)),
    url("assets/backgrounds/modules-abstract.jpg") center / cover no-repeat;
  opacity: 1;
}

.modules .section-head h2 {
  color: #fff;
}

.modules .section-head p {
  color: rgba(255,255,255,.72);
}

.experience {
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, oklch(98.5% .008 244) 0%, oklch(95.5% .017 246) 100%);
}

.experience::before {
  inset: -10% -7%;
  background:
    radial-gradient(circle at 16% 24%, rgba(22,184,243,.14), transparent 24%),
    linear-gradient(90deg, rgba(247,250,255,.96) 0%, rgba(247,250,255,.6) 50%, rgba(247,250,255,.92) 100%),
    linear-gradient(180deg, rgba(247,250,255,.62), rgba(247,250,255,.96)),
    url("assets/backgrounds/workflow-abstract.jpg") center / cover no-repeat;
  opacity: .56;
  transform: translate3d(0, calc(var(--parallax-y, 0px) * .28), 0) scale(1.08);
  transition: transform .08s linear;
  will-change: transform;
}

.experience .section-head h2 {
  color: var(--ink);
}

.experience .section-head p {
  color: oklch(42% .034 252);
}

.flow {
  overflow: hidden;
  color: var(--ink);
  background: var(--story-bg);
}

.flow::before {
  display: none;
}

.flow .section-head h2 {
  color: var(--ink);
}

.flow .section-head p {
  color: oklch(42% .034 252);
}

@media (min-width: 861px) {
  .product-intro {
    position: sticky;
    top: 0;
    z-index: 0;
    min-height: 100vh;
    display: grid;
    align-items: center;
  }

  .platform {
    position: relative;
    z-index: 2;
    box-shadow: 0 -44px 120px rgba(7, 12, 28, .34);
  }
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 1080px;
  margin-bottom: clamp(36px, 5vw, 68px);
}

.section-head h2,
.contact h2 {
  margin: 0;
  max-width: 1040px;
  color: var(--navy);
  font-size: clamp(30px, 4.2vw, 62px);
  line-height: 1.06;
  font-weight: 520;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
}

.section-dark .section-head h2,
.contact-panel h2 { color: #fff; }

.section-head p:not(.kicker),
.contact-panel p {
  max-width: 900px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.24vw, 19px);
  line-height: 1.72;
  text-wrap: pretty;
  overflow-wrap: normal;
}

.section-dark .section-head p:not(.kicker),
.contact-panel p { color: rgba(255,255,255,.72); }

.kicker,
.eyebrow {
  margin: 0;
  color: var(--cap-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-dark .kicker,
.section-dark .eyebrow { color: var(--cyan); }

.hero {
  min-height: 100vh;
  padding: 126px clamp(22px, 6vw, 92px) 38px;
  overflow: hidden;
  border-top: 0;
  background:
    linear-gradient(90deg, rgba(17,25,55,.96) 0%, rgba(17,25,55,.82) 42%, rgba(17,25,55,.5) 100%),
    url("assets/backgrounds/hero-abstract.jpg") center / cover no-repeat,
    var(--navy);
}

.hero::before {
  background:
    radial-gradient(circle at 20% 38%, rgba(22,184,243,.16), transparent 26%),
    linear-gradient(180deg, rgba(17,25,55,.18), rgba(17,25,55,.86));
}

.hero-brand {
  min-height: 86vh;
  display: grid;
  align-items: stretch;
  padding: 118px clamp(22px, 6vw, 92px) clamp(58px, 8vw, 108px);
  background:
    url("assets/backgrounds/proxima-hero-abstract.jpg") right center / cover no-repeat,
    var(--navy);
}

.hero-brand::before {
  display: none;
}

.hero-brand-grid {
  min-height: calc(86vh - 226px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .78fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.hero-brand-copy {
  --hero-brand-measure: 900px;
  max-width: 940px;
}

.hero-brand-copy h1 {
  margin: 20px 0 0;
  color: #fff;
  font-size: clamp(54px, 6.8vw, 108px);
  line-height: .96;
  font-weight: 520;
  letter-spacing: 0;
}

.hero-brand-copy h1 span,
.hero-brand-copy h1 small {
  display: block;
}

.hero-brand-copy h1 small {
  width: fit-content;
  margin-top: 16px;
  padding-top: 14px;
  color: rgba(22,184,243,.9);
  border-top: 1px solid rgba(22,184,243,.38);
  font-family: var(--font-latin);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.08;
  font-weight: 520;
  letter-spacing: .08em;
}

.hero-brand-copy h2 {
  max-width: var(--hero-brand-measure);
  margin: clamp(24px, 3.2vw, 44px) 0 0;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.16;
  font-weight: 520;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-brand-text {
  max-width: var(--hero-brand-measure);
  margin-top: clamp(22px, 2.6vw, 34px);
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.78;
}

.hero-brand-text p {
  margin: 0;
  text-wrap: pretty;
}

.hero-brand-text p + p {
  margin-top: 18px;
}

.hero-brand .hero-actions {
  margin-top: clamp(26px, 3.2vw, 42px);
}

.hero-brand .button-primary {
  color: #fff;
  background:
    linear-gradient(135deg, var(--cyan), var(--cap-blue));
  border-color: rgba(22,184,243,.72);
  box-shadow: 0 18px 44px rgba(0,87,171,.34);
}

.hero-brand .button-primary:hover {
  background:
    linear-gradient(135deg, #35c8ff, #0069c9);
  border-color: rgba(53,200,255,.9);
  box-shadow: 0 22px 54px rgba(22,184,243,.28);
}

.hero-brand-visual {
  min-height: min(60vh, 620px);
  border-left: 1px solid rgba(255,255,255,.18);
  background: transparent;
}

.product-intro {
  min-height: auto;
  padding-top: clamp(76px, 8vw, 112px);
  padding-bottom: clamp(78px, 8vw, 118px);
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, oklch(99% .006 245) 0%, oklch(96% .018 244) 56%, oklch(98% .01 238) 100%);
}

.product-intro::before {
  inset: -8% -6%;
  background:
    linear-gradient(90deg, rgba(247,250,255,.98) 0%, rgba(247,250,255,.84) 42%, rgba(247,250,255,.18) 100%),
    linear-gradient(180deg, rgba(247,250,255,.2), rgba(247,250,255,.96)),
    url("assets/backgrounds/hero-abstract.jpg") 70% center / cover no-repeat;
  opacity: .74;
  transform: translate3d(0, calc(var(--parallax-y, 0px) * .36), 0) scale(1.08);
  transition: transform .08s linear;
  will-change: transform;
}

.product-intro-copy h1 {
  max-width: 520px;
  color: var(--navy);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.2;
}

.product-intro-copy h1 span {
  white-space: nowrap;
}

.product-intro-copy h1 em {
  color: var(--cyan);
  font-style: normal;
  font-weight: 620;
}

.product-intro-copy .hero-lead {
  max-width: 660px;
  color: oklch(39% .035 252);
  font-size: clamp(15px, 1.12vw, 18px);
  line-height: 1.72;
}

.product-intro .hero-product {
  min-height: 460px;
}

.product-intro .hero-product::before {
  color: rgba(17,25,55,.045);
  transform: translate3d(0, calc(var(--parallax-y, 0px) * -.18), 0);
  transition: transform .08s linear;
  will-change: transform;
}

.product-intro .hero-video-shell {
  border-color: rgba(17,25,55,.14);
  background: rgba(17,25,55,.88);
  box-shadow:
    0 34px 88px rgba(17,25,55,.2),
    0 1px 0 rgba(255,255,255,.9) inset;
}

.product-intro .window-bar {
  border-bottom-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
}

.product-intro .proof-line {
  color: oklch(39% .035 252);
  border-top-color: rgba(17,25,55,.12);
  border-bottom-color: rgba(17,25,55,.1);
  background: rgba(255,255,255,.54);
  box-shadow: 0 20px 54px rgba(17,25,55,.08);
}

.product-intro .proof-line span {
  border-right-color: rgba(17,25,55,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.5));
}

.hero-grid {
  min-height: calc(100vh - 246px);
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr);
  gap: clamp(36px, 5vw, 74px);
  align-items: center;
}

.hero-grid.product-intro-grid {
  min-height: auto;
  grid-template-columns: minmax(0, .84fr) minmax(420px, .9fr);
  gap: clamp(112px, 11vw, 220px);
}

.hero-copy h1 {
  margin: 18px 0 0;
  max-width: 880px;
  font-size: clamp(42px, 5.8vw, 88px);
  line-height: .98;
  font-weight: 520;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: block;
}

.hero-lead {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(16px, 1.32vw, 20px);
  line-height: 1.62;
  font-weight: 360;
  text-wrap: pretty;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
}

.button-primary {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}

.contact .button-primary {
  color: #fff;
  background: var(--cap-blue);
  border-color: var(--cap-blue);
}

.button-secondary {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.38);
}

.button-outline {
  color: #fff;
  border-color: rgba(255,255,255,.44);
}

.proof-line {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  width: min(100%, 820px);
  margin-top: 34px;
  color: rgba(255,255,255,.76);
  font-size: clamp(12px, .9vw, 13px);
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
}

.proof-line span {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 12px;
  border-right: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  white-space: nowrap;
  text-align: center;
}

.proof-line span:last-child { border-right: 0; }

.proof-line strong {
  color: var(--cyan);
  display: inline-block;
  margin-right: 0;
  font-size: 16px;
}

.hero-product {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
}

.hero-product::before {
  content: "AI";
  position: absolute;
  right: -7vw;
  top: -2vw;
  color: rgba(255,255,255,.034);
  font-size: clamp(180px, 24vw, 380px);
  line-height: 1;
  font-weight: 700;
}

.hero-video-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  transform-origin: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(8, 14, 33, .72);
  box-shadow:
    0 36px 100px rgba(0,0,0,.36),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.hero-video-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 3;
  border: 1px solid rgba(22,184,243,.28);
  pointer-events: none;
}

.window-bar {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
}

.window-bar span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.46);
}

.hero-video {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #050a18;
  color: #fff;
  cursor: pointer;
}

.hero-video video {
  width: 100%;
  aspect-ratio: 16 / 9.2;
  object-fit: cover;
  opacity: .9;
  transition: transform .32s ease, opacity .32s ease;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(5,10,24,.82)),
    linear-gradient(90deg, rgba(5,10,24,.38), transparent 42%);
  pointer-events: none;
}

.hero-video:hover video {
  opacity: 1;
  transform: scale(1.015);
}

.hero-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.46);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 42px rgba(0,0,0,.35);
}

.hero-video-play::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 27px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid #fff;
}

.principle-map {
  position: relative;
  z-index: 1;
  min-height: clamp(470px, 46vw, 620px);
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.principle-map::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at var(--active-x, 31%) var(--active-y, 48%), rgba(22,184,243,.26), transparent 17%),
    radial-gradient(circle at var(--active-x, 31%) var(--active-y, 48%), rgba(76,216,255,.12), transparent 31%);
  transition: background .48s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}

.principle-map::after {
  content: "";
  position: absolute;
  inset: 0 -7% -6%;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(17,25,55,.98) 0%, rgba(17,25,55,.1) 18%, rgba(17,25,55,.05) 78%, rgba(17,25,55,.98) 100%),
    linear-gradient(180deg, rgba(17,25,55,.94) 0%, rgba(17,25,55,.16) 18%, rgba(17,25,55,.08) 74%, rgba(17,25,55,.98) 100%),
    linear-gradient(180deg, rgba(17,25,55,.06), rgba(17,25,55,.22)),
    url("assets/backgrounds/workflow-abstract.jpg") 50% 40% / cover no-repeat;
  opacity: .58;
  pointer-events: none;
}

.principle-map[data-active="workflow"] { --active-x: 16%; --active-y: 46%; }
.principle-map[data-active="context"] { --active-x: 35%; --active-y: 40%; }
.principle-map[data-active="asset"] { --active-x: 54%; --active-y: 39%; }
.principle-map[data-active="governance"] { --active-x: 72%; --active-y: 34%; }

.principle-canvas {
  position: relative;
  z-index: 2;
  min-height: inherit;
}

.principle-canvas::before,
.principle-canvas::after {
  content: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(58vw, 640px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(22,184,243,.14);
  border-radius: 50%;
  pointer-events: none;
}

.principle-canvas::after {
  width: min(38vw, 420px);
  border-style: dashed;
  opacity: .72;
}

.principle-core {
  display: none;
}

.principle-core span {
  max-width: 8em;
  color: rgba(255,255,255,.74);
  font-size: clamp(13px, 1.35vw, 20px);
  font-weight: 650;
  line-height: 1.22;
  text-align: center;
}

.principle-point {
  position: absolute;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  color: rgba(255,255,255,.82);
  border: 1px solid rgba(22,184,243,.66);
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 30%, rgba(255,255,255,.32), transparent 36%),
    radial-gradient(circle, rgba(22,184,243,.72), rgba(0,87,171,.82) 68%);
  box-shadow: 0 0 0 7px rgba(22,184,243,.09), 0 14px 34px rgba(0,0,0,.22);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform .36s cubic-bezier(.16, 1, .3, 1), border-color .28s ease, background .28s ease, box-shadow .36s ease;
}

.principle-point::before {
  content: "";
  position: absolute;
  inset: -11px;
  border-radius: 999px;
  border: 1px solid rgba(22,184,243,.24);
  background: radial-gradient(circle, rgba(22,184,243,.22), transparent 64%);
  opacity: .48;
  animation: pulsePoint 3.6s cubic-bezier(.16, 1, .3, 1) infinite;
  pointer-events: none;
}

.principle-point::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(22,184,243,.12), 0 0 22px rgba(22,184,243,.74);
  pointer-events: none;
}

.principle-point span {
  position: relative;
  display: grid;
  place-items: center;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  box-shadow: inset 0 0 8px rgba(255,255,255,.18);
}

.principle-point strong {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  color: oklch(98% .006 240);
  border: 1px solid rgba(22,184,243,.26);
  background: rgba(8,16,38,.66);
  box-shadow: 0 14px 36px rgba(0,0,0,.22), 0 0 28px rgba(22,184,243,.1);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 8px 24px rgba(0,0,0,.4);
  transition: color .28s ease, transform .36s cubic-bezier(.16, 1, .3, 1), border-color .28s ease, background .28s ease;
}

.principle-point strong b {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 780;
}

.principle-point:hover,
.principle-point.is-active {
  transform: translate(-50%, -50%) scale(1.24);
  color: oklch(98% .006 240);
  border-color: rgba(22,184,243,.72);
  background:
    radial-gradient(circle at 36% 28%, rgba(255,255,255,.28), transparent 34%),
    radial-gradient(circle, rgba(22,184,243,.42), rgba(0,87,171,.72) 68%);
  box-shadow: 0 0 0 10px rgba(22,184,243,.12), 0 0 48px rgba(22,184,243,.32), 0 20px 54px rgba(0,0,0,.3);
}

.principle-point:hover strong,
.principle-point.is-active strong {
  color: oklch(98% .006 240);
  border-color: rgba(22,184,243,.5);
  background: rgba(7,18,45,.82);
  transform: translateX(-50%) translateY(2px);
}

.point-workflow { left: 16%; top: 46%; }
.point-context { left: 35%; top: 40%; }
.point-asset { left: 54%; top: 39%; }
.point-governance { left: 72%; top: 34%; }

.principle-detail {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.principle-links {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.principle-link {
  opacity: 0;
  fill: none;
  stroke: rgba(22,184,243,.86);
  stroke-width: .38;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 7px rgba(22,184,243,.7));
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: opacity .24s ease;
}

.principle-map[data-active="workflow"] .link-workflow,
.principle-map[data-active="context"] .link-context,
.principle-map[data-active="governance"] .link-governance,
.principle-map[data-active="asset"] .link-asset {
  opacity: 1;
  animation: linkDraw .72s cubic-bezier(.16, 1, .3, 1) both;
}

.principle-detail article {
  display: none;
  position: absolute;
  width: min(230px, 19vw);
  padding: 13px 15px 15px;
  border: 1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(135deg, rgba(17,25,55,.86), rgba(12,20,44,.74)),
    rgba(17,25,55,.72);
  box-shadow: 0 18px 48px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  pointer-events: auto;
}

.principle-detail article::before {
  content: none;
}

.principle-detail article::after {
  content: none;
  position: absolute;
  width: 8px;
  height: 8px;
  left: var(--dot-x, -4px);
  top: var(--dot-y, calc(50% - 4px));
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(22,184,243,.72);
}

.principle-detail article.is-active {
  display: block;
  animation: detailIn .5s cubic-bezier(.16, 1, .3, 1) .42s both;
}

.principle-detail [data-principle-panel="workflow"] {
  left: 3%;
  top: 10%;
}

.principle-detail [data-principle-panel="context"] {
  left: 8%;
  top: 12%;
}

.principle-detail [data-principle-panel="asset"] {
  left: 30%;
  top: 6%;
}

.principle-detail [data-principle-panel="governance"] {
  right: 20%;
  top: 3%;
}

.principle-detail span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}

.principle-detail h3 {
  margin: 9px 0 8px;
  color: oklch(98% .006 240);
  font-size: clamp(16px, 1.25vw, 20px);
}

.principle-detail p {
  max-width: 30ch;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.55;
}

@keyframes pulsePoint {
  0% { transform: scale(.78); opacity: .58; }
  100% { transform: scale(1.18); opacity: 0; }
}

@keyframes linkDraw {
  0% { stroke-dashoffset: 120; opacity: 0; }
  18% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes detailIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.96);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.principle-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
  padding: clamp(16px, 2.4vw, 28px);
  border: 1px solid oklch(85% .018 240);
  background:
    linear-gradient(90deg, oklch(100% .004 240 / .88), oklch(96% .014 235 / .74)),
    linear-gradient(135deg, oklch(58% .18 238 / .08), transparent 54%);
  box-shadow: 0 22px 70px rgba(17,25,55,.08);
  overflow: hidden;
}

.principle-grid::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 3vw, 40px);
  z-index: 0;
  background:
    linear-gradient(90deg, oklch(67% .13 232 / .12) 1px, transparent 1px),
    linear-gradient(180deg, oklch(67% .13 232 / .1) 1px, transparent 1px);
  background-size: 42px 42px;
}

.principle-grid::after {
  content: "";
  position: absolute;
  right: clamp(18px, 3vw, 40px);
  bottom: clamp(18px, 3vw, 40px);
  z-index: 0;
  width: min(28vw, 360px);
  height: min(28vw, 360px);
  border: 1px solid oklch(67% .13 232 / .18);
  border-radius: 50%;
  background: radial-gradient(circle, oklch(72% .13 230 / .14), transparent 64%);
  pointer-events: none;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.principle-card,
.role-card,
.module-card,
.flow-step {
  border: 1px solid var(--line);
  background: #fff;
}

.principle-card,
.role-card {
  min-height: 288px;
  padding: 32px 28px;
}

.principle-card {
  position: relative;
  z-index: 1;
  grid-column: span 6;
  min-height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: oklch(99% .005 240 / .92);
  box-shadow: 0 18px 54px rgba(17,25,55,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.principle-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,87,171,.28);
  box-shadow: 0 26px 70px rgba(17,25,55,.12);
}

.principle-card-wide {
  grid-column: span 6;
  background:
    linear-gradient(135deg, oklch(99% .005 240 / .95), oklch(94% .025 238 / .92));
}

.role-card > span,
.module-card > span {
  color: var(--cap-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.principle-card span {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: oklch(43% .1 240);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .02em;
  text-transform: none;
}

.principle-card span strong {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  height: 24px;
  color: oklch(98% .006 240);
  background: oklch(49% .16 238);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.principle-card h3 {
  margin-top: clamp(28px, 3vw, 42px);
}

.principle-card p {
  max-width: 56ch;
}

h3 {
  margin: 18px 0 12px;
  color: var(--navy);
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.2;
  font-weight: 540;
  text-wrap: balance;
  word-break: keep-all;
}

.principle-card p,
.role-card p,
.module-card p,
.flow-step p,
.contact-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.74;
  text-wrap: pretty;
}

.module-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.module-card {
  grid-column: span 5;
  min-height: 330px;
  padding: clamp(30px, 4vw, 50px);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.module-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22,184,243,.3);
  box-shadow: 0 28px 78px rgba(0,0,0,.18);
}

.module-card:nth-child(2),
.module-card:nth-child(3) {
  grid-column: span 7;
}

.modules .module-card:not(.module-featured) {
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.24);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.module-card ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.module-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  text-wrap: pretty;
}

.module-card li + li { margin-top: 9px; }
.module-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 8px;
  height: 2px;
  background: var(--cap-blue);
}

.module-featured {
  grid-column: span 7;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(22,184,243,.22), transparent 48%),
    rgba(7, 13, 31, .78);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 24px 70px rgba(0,0,0,.3);
  backdrop-filter: blur(10px);
}

.module-featured:nth-child(4) {
  grid-column: span 5;
}

.module-featured h3 { color: #fff; }
.module-featured p,
.module-featured li { color: rgba(255,255,255,.68); }
.module-featured span { color: var(--cyan); }
.module-featured li::before { background: var(--cyan); }

.module-showcase {
  overflow: clip;
  background: var(--story-bg);
}

.module-showcase::before,
.impact::before,
.flow::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: none;
}

.module-showcase::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(22,184,243,.1), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.22), transparent 42%);
}

.impact,
.flow {
  background: var(--story-bg);
}

.impact::before {
  background:
    radial-gradient(circle at 86% 16%, rgba(22,184,243,.09), transparent 24%),
    linear-gradient(180deg, transparent, rgba(255,255,255,.16) 54%, transparent);
}

.flow::after {
  background:
    radial-gradient(circle at 18% 2%, rgba(22,184,243,.07), transparent 22%);
}

.module-showcase .section-head {
  max-width: 980px;
}

.module-showcase .section-head p {
  color: oklch(42% .034 252);
}

.module-showcase-grid {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.18fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}

.module-track {
  position: relative;
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  padding-left: 24px;
}

.module-dots {
  display: none;
}

.module-track::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(180deg, rgba(22,184,243,.74), rgba(17,25,55,.12));
}

.module-step {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 0 0 clamp(4px, 1vw, 10px);
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: transform .24s cubic-bezier(.16, 1, .3, 1), opacity .24s ease;
}

.module-step:hover,
.module-step:focus-visible,
.module-step.is-active {
  transform: translateX(4px);
}

.module-step > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: 3px;
  color: var(--cap-blue);
  border: 1px solid rgba(0,87,171,.24);
  border-radius: 999px;
  background: oklch(98.5% .01 244);
  box-shadow: 0 0 0 7px rgba(22,184,243,.06);
  font-size: 11px;
  font-weight: 760;
}

.module-step.is-active > span {
  color: oklch(98% .006 240);
  border-color: rgba(22,184,243,.6);
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,.32), transparent 38%),
    var(--cap-blue);
  box-shadow: 0 0 0 8px rgba(22,184,243,.12), 0 14px 34px rgba(0,87,171,.2);
}

.module-step small {
  color: var(--cap-blue);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.module-step h3 {
  margin: 8px 0 10px;
  font-size: clamp(20px, 2vw, 28px);
}

.module-step p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.module-step:not(.is-active) {
  opacity: .68;
}

.module-stage {
  position: sticky;
  top: 96px;
  min-height: 620px;
  display: grid;
  align-content: start;
  gap: 18px;
}

.module-stage-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17,25,55,.12);
  background: var(--paper);
  box-shadow: 0 34px 100px rgba(17,25,55,.18);
}

.module-stage-window::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}

.module-stage-window img {
  width: 100%;
  aspect-ratio: 16 / 9.4;
  object-fit: cover;
  object-position: left top;
  background: var(--paper);
  transition: transform .28s cubic-bezier(.16, 1, .3, 1);
}

.module-stage-copy {
  display: block;
  width: 100%;
  padding: 16px 2px 0;
}

.module-stage-copy small {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 8px;
  color: var(--cap-blue);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.module-stage-copy p {
  margin: 0;
  max-width: 100%;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
  text-wrap: pretty;
}

.experience-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 0;
  align-items: start;
  padding: clamp(18px, 2.6vw, 34px);
  border: 1px solid rgba(17,25,55,.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.68)),
    rgba(247,250,255,.82);
  box-shadow: 0 38px 100px rgba(17,25,55,.16);
  transform: translate3d(0, calc(var(--parallax-y, 0px) * -.08), 0);
  transition: transform .08s linear;
  will-change: transform;
}

.experience-shell::before {
  content: "";
  position: absolute;
  left: clamp(18px, 2.6vw, 34px);
  right: clamp(18px, 2.6vw, 34px);
  top: clamp(18px, 2.6vw, 34px);
  height: 42px;
  border: 1px solid rgba(17,25,55,.1);
  background:
    linear-gradient(90deg, rgba(22,184,243,.12), transparent 38%),
    rgba(17,25,55,.035);
  pointer-events: none;
}

.experience-stage {
  position: relative;
  z-index: 1;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(17,25,55,.12);
  background: var(--paper);
  box-shadow: 0 34px 92px rgba(17,25,55,.18);
}

.experience-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.24);
  pointer-events: none;
}

.experience-stage img {
  width: 100%;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
  object-position: left top;
  transition: opacity .22s ease;
}

.experience-stage.is-changing img { opacity: .35; }

.experience-caption {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-top: 1px solid rgba(17,25,55,.1);
}

.experience-caption strong {
  padding: 24px;
  color: oklch(98% .006 240);
  background:
    linear-gradient(135deg, rgba(22,184,243,.14), transparent 62%),
    var(--navy);
  font-size: 22px;
  font-weight: 540;
  word-break: keep-all;
}

.experience-caption span {
  padding: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
  text-wrap: pretty;
}

.experience-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 42px 0 0 18px;
  border: 0;
  background: transparent;
}

.experience-tab {
  min-height: 106px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid rgba(17,25,55,.12);
  background: rgba(255,255,255,.7);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(17,25,55,.07);
  transition: transform .22s cubic-bezier(.16, 1, .3, 1), border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.experience-tab:hover {
  border-color: rgba(22,184,243,.34);
  background: rgba(255,255,255,.94);
  transform: translateX(-4px);
}

.experience-tab span {
  color: var(--cyan);
  font-size: 22px;
  font-weight: 700;
}

.experience-tab strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 540;
  word-break: keep-all;
}

.experience-tab.is-active {
  background:
    linear-gradient(135deg, rgba(22,184,243,.18), transparent 56%),
    rgba(255,255,255,.96);
  border-color: rgba(22,184,243,.46);
  box-shadow: 0 22px 60px rgba(17,25,55,.12);
}

.experience-tab.is-active span { color: var(--cyan); }
.experience-tab.is-active strong { color: var(--navy); }

.impact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(17,25,55,.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.7)),
    rgba(247,250,255,.82);
  box-shadow: 0 34px 100px rgba(17,25,55,.14);
}

.impact-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(17,25,55,.08) 49.8% 50%, transparent 50%),
    linear-gradient(180deg, transparent 0 49.8%, rgba(17,25,55,.06) 49.8% 50%, transparent 50%);
  opacity: .38;
  pointer-events: none;
}

.impact-major {
  position: relative;
  z-index: 1;
  padding: clamp(38px, 6vw, 72px);
  border: 0;
  border-right: 1px solid rgba(17,25,55,.1);
  background:
    radial-gradient(circle at 24% 18%, rgba(22,184,243,.2), transparent 34%),
    linear-gradient(135deg, rgba(0,87,171,.12), rgba(255,255,255,.5) 62%);
}

.big-number {
  display: block;
  color: var(--cap-blue);
  font-size: clamp(82px, 11vw, 148px);
  line-height: .82;
  font-weight: 620;
}

.big-number sup {
  font-size: 38%;
  vertical-align: top;
}

.impact-major p {
  max-width: 520px;
  margin: 26px 0 16px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.45;
}

.impact-major small {
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.impact-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 0;
}

.impact-list article {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 40px;
  border: 0;
  border-bottom: 1px solid rgba(17,25,55,.1);
  background:
    linear-gradient(90deg, rgba(255,255,255,.62), rgba(255,255,255,.2));
}

.impact-list article:last-child { border-bottom: 0; }

.impact-list strong {
  min-width: 112px;
  color: var(--cap-blue);
  font-size: 44px;
  line-height: 1;
}

.impact-list span {
  color: oklch(39% .035 252);
  font-size: 16px;
  word-break: keep-all;
}

.impact .role-grid {
  margin-top: 44px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(17,25,55,.1);
  background: rgba(255,255,255,.62);
}

.impact .role-card {
  min-height: 190px;
  background: rgba(255,255,255,.54);
  border-color: rgba(17,25,55,.1);
  transition: background .2s ease, border-color .2s ease;
}

.impact .role-card:hover {
  background: rgba(255,255,255,.86);
  border-color: rgba(22,184,243,.32);
}

.impact .role-card h3 {
  color: var(--navy);
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.2;
  font-weight: 540;
}
.impact .role-card p { color: var(--muted); }
.impact .role-card > span { color: var(--cap-blue); }

.flow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 28px;
  border: 1px solid rgba(17,25,55,.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.68)),
    rgba(247,250,255,.82);
  box-shadow: 0 34px 92px rgba(17,25,55,.14);
}

.flow-rail::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 53px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,87,171,.12), rgba(0,87,171,.58), rgba(0,87,171,.12));
}

.flow-step {
  position: relative;
  min-height: 246px;
  padding: 72px 22px 26px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(17,25,55,.1);
  box-shadow: none;
  backdrop-filter: none;
}

.flow-step:last-child { border-right: 0; }

.flow-step > span {
  position: absolute;
  left: 22px;
  top: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.28), transparent 42%),
    var(--cap-blue);
  border: 1px solid rgba(22,184,243,.58);
  box-shadow: 0 0 0 7px rgba(22,184,243,.08), 0 18px 42px rgba(0,0,0,.24);
  font-size: 24px;
  line-height: 1;
  font-weight: 620;
}

.flow-step::after {
  content: "";
  position: absolute;
  left: 42px;
  top: 50px;
  width: 10px;
  height: 10px;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(22,184,243,.7);
}

.flow-step h3 {
  color: var(--navy);
}

.flow-step p {
  color: var(--muted);
}

.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th, td {
  padding: 13px 15px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--navy);
  background: var(--steel);
}

.contact {
  border-top: 0;
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(17,25,55,.96), rgba(17,25,55,.78) 58%, rgba(17,25,55,.48)),
    url("assets/backgrounds/contact-abstract.jpg") center / cover no-repeat,
    var(--navy);
  overflow: hidden;
}

.contact::before {
  background:
    linear-gradient(180deg, rgba(17,25,55,.18), rgba(17,25,55,.78)),
    radial-gradient(circle at 24% 16%, rgba(22,184,243,.18), transparent 30%);
}

.contact-panel {
  max-width: 980px;
}

.contact-panel .kicker { color: #fff; }

.contact-card {
  width: min(100%, 680px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-option {
  flex: 1 1 220px;
  min-height: 124px;
  display: grid;
  align-content: start;
  justify-items: start;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.055);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.contact-option:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.28);
}

.contact-option h3 {
  margin: 10px 0 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.3;
}

.contact-card p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.7;
}

.contact-option .button {
  min-height: 40px;
  margin-top: 16px;
  padding: 0 16px;
  font-size: 13px;
}

.contact-label {
  display: block;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(22px, 4vw, 58px);
  color: rgba(255,255,255,.65);
  background: var(--navy);
  font-size: 12px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 650;
}

.footer-brand .brand-mark {
  width: 32px;
  height: 32px;
}

.site-footer a:not(.footer-brand) {
  color: rgba(255,255,255,.78);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.video-modal.is-open { display: flex; }
.demo-modal.is-open { display: flex; }

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 28, .82);
  backdrop-filter: blur(10px);
}

.demo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 28, .78);
  backdrop-filter: blur(12px);
}

.video-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  background: #000;
  box-shadow: 0 40px 120px rgba(0,0,0,.52);
}

.video-dialog video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.demo-dialog {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  height: min(760px, calc(100vh - 44px));
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(216,222,234,.8);
  box-shadow: 0 40px 120px rgba(0,0,0,.46);
}

.demo-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 14px 22px;
  border-bottom: 1px solid rgba(216,222,234,.78);
}

.demo-dialog-head h2 {
  margin: 6px 0 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 620;
}

.demo-dialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.demo-fallback {
  display: inline-flex;
  justify-content: center;
  padding: 10px 18px 14px;
  color: var(--cap-blue);
  font-size: 12px;
  font-weight: 650;
  border-top: 1px solid rgba(216,222,234,.7);
  background: #fff;
}

.video-close {
  position: absolute;
  right: 0;
  top: -48px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.36);
  background: rgba(255,255,255,.08);
  cursor: pointer;
}

.demo-close {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.video-close::before,
.video-close::after,
.demo-close::before,
.demo-close::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 2px;
}

.video-close::before,
.video-close::after {
  left: 11px;
  top: 20px;
  background: #fff;
}

.demo-close::before,
.demo-close::after {
  left: 7px;
  top: 15px;
  background: var(--navy);
}

.video-close::before { transform: rotate(45deg); }
.video-close::after { transform: rotate(-45deg); }
.demo-close::before { transform: rotate(45deg); }
.demo-close::after { transform: rotate(-45deg); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s ease, transform .72s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero-grid,
  .hero-brand-grid,
  .module-showcase-grid,
  .experience-shell,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .hero-product { min-height: auto; }

  .hero-brand {
    min-height: auto;
  }

  .hero-brand-grid {
    min-height: auto;
  }

  .hero-brand-visual {
    min-height: 240px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.16);
  }

  .hero-brand-copy h2 {
    white-space: normal;
  }

  .principle-map {
    min-height: auto;
  }

  .principle-canvas {
    min-height: 520px;
  }

  .principle-detail {
    border: 0;
  }

  .principle-card,
  .principle-card-wide {
    grid-column: auto;
  }

  .principle-grid,
  .role-grid,
  .flow-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .principle-grid::before,
  .principle-grid::after {
    display: none;
  }

  .module-card,
  .module-card:nth-child(2),
  .module-card:nth-child(3),
  .module-featured,
  .module-featured:nth-child(4) {
    grid-column: auto;
  }

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

  .hero-video-shell {
    transform: none;
  }

  .module-stage {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .module-stage-copy {
    width: 100%;
  }

  .impact-major {
    border-right: 0;
    border-bottom: 1px solid rgba(17,25,55,.1);
  }

  .experience-tabs {
    margin: 18px 0 0;
  }

  .flow-rail {
    gap: 14px;
  }

  .flow-rail::before { display: none; }

  .flow-step {
    min-height: auto;
    padding-top: 82px;
    border: 1px solid rgba(17,25,55,.1);
  }

  .flow-step:last-child {
    border-right: 1px solid rgba(17,25,55,.1);
  }

  .flow-step::after {
    display: none;
  }
}

@media (max-width: 860px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    grid-template-columns: minmax(0, auto) 1fr auto;
    height: 68px;
    gap: 14px;
    padding: 0 18px;
  }

  .brand {
    min-width: 0;
  }

  .header-actions {
    justify-self: end;
  }

  .nav,
  .text-link { display: none; }
  .menu-toggle { display: block; }
  .brand-mark {
    width: 32px;
    height: 32px;
  }
  .brand-name {
    font-size: 16px;
  }
  .mobile-menu {
    top: 68px;
    padding: 8px 18px 18px;
    background: #010b1e;
    box-shadow: 0 24px 60px rgba(1,11,30,.32);
  }
  .mobile-menu a {
    padding: 16px 4px;
    font-size: 16px;
  }
  .site-header.is-scrolled { height: 68px; }
  .hero { padding-top: 104px; }

  .section {
    padding: clamp(58px, 11vw, 86px) 20px;
  }

  .contact {
    min-height: auto;
  }

  .hero-brand {
    min-height: auto;
    padding: 104px 20px 64px;
    background-image:
      linear-gradient(90deg, rgba(17,25,55,.94) 0%, rgba(17,25,55,.82) 48%, rgba(17,25,55,.5) 100%),
      url("assets/backgrounds/proxima-hero-abstract.jpg");
    background-position: left top, right -54px top 70px;
    background-size: auto, auto 76%;
    background-repeat: no-repeat;
  }

  .hero-brand-grid {
    display: block;
    min-height: auto;
  }

  .hero-brand-copy {
    max-width: 100%;
    text-shadow: 0 2px 18px rgba(1,11,30,.42);
  }

  .hero-brand-copy h1 {
    font-size: clamp(48px, 14vw, 78px);
  }

  .hero-brand-copy h1 small {
    font-size: clamp(19px, 5.6vw, 28px);
  }

  .hero-brand-copy h2 {
    max-width: 13em;
    font-size: clamp(21px, 6vw, 30px);
    line-height: 1.2;
    white-space: normal;
  }

  .hero-brand-text {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-brand-visual {
    display: none;
  }

  .product-intro {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .hero-grid.product-intro-grid {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: start;
  }

  .product-intro-copy h1 {
    max-width: 100%;
    font-size: clamp(24px, 6.4vw, 34px);
  }

  .product-intro-copy h1 span {
    white-space: normal;
  }

  .product-intro-copy .hero-lead {
    max-width: 100%;
    margin-top: 18px;
    font-size: 15px;
  }

  .product-intro .hero-product {
    width: 100%;
    min-height: auto;
  }

  .product-intro .hero-product::before {
    display: none;
  }

  .product-intro .hero-video-shell {
    transform: none;
    box-shadow: 0 18px 48px rgba(17,25,55,.16);
  }

  .product-intro .window-bar {
    height: 26px;
  }

  .product-intro .hero-video video {
    aspect-ratio: 16 / 10;
  }

  .product-intro .proof-line {
    width: 100%;
    margin-top: 24px;
    flex-wrap: wrap;
  }

  .product-intro .proof-line span {
    flex: 1 1 100%;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(17,25,55,.1);
  }

  .product-intro .proof-line span:last-child {
    border-bottom: 0;
  }

  .section-head,
  .module-layout,
  .module-stage-copy,
  .role-grid,
  .flow-rail,
  .contact-panel,
  .experience-caption,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .module-card,
  .module-step,
  .principle-card,
  .role-card,
  .flow-step { min-height: auto; }

  .platform .section-head {
    margin-bottom: 20px;
  }

  .platform .section-head h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .platform .section-head p {
    font-size: 15px;
    line-height: 1.7;
  }

  .module-track {
    order: 2;
    display: flex;
    gap: 12px;
    margin: 2px -20px 0;
    padding: 2px 20px 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .module-track::before {
    display: none;
  }

  .module-track::-webkit-scrollbar {
    display: none;
  }

  .module-dots {
    order: 3;
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: -2px;
  }

  .module-dots span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(17,25,55,.22);
    transition: width .24s cubic-bezier(.16, 1, .3, 1), background .24s ease;
  }

  .module-dots span.is-active {
    width: 22px;
    background: var(--cap-blue);
  }

  .module-step {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: center;
    grid-template-columns: 34px 1fr;
    padding: 16px;
    border: 1px solid rgba(17,25,55,.1);
    background: rgba(255,255,255,.7);
    box-shadow: 0 14px 34px rgba(17,25,55,.07);
  }

  .module-step:not(.is-active) {
    opacity: 1;
  }

  .module-step:hover,
  .module-step:focus-visible,
  .module-step.is-active {
    transform: none;
  }

  .module-step.is-active {
    border-color: rgba(0,87,171,.28);
    background: #fff;
    box-shadow: 0 18px 46px rgba(17,25,55,.12);
  }

  .module-step h3 {
    font-size: 19px;
  }

  .module-step p {
    font-size: 14px;
    line-height: 1.62;
  }

  .module-stage {
    order: 1;
    gap: 12px;
  }

  .module-stage-window img {
    aspect-ratio: 16 / 10.5;
  }

  .module-stage-copy {
    padding-top: 8px;
  }

  .principle-canvas {
    display: none;
    min-height: 0;
  }

  .principle-map {
    min-height: auto;
    margin-right: 0;
    margin-left: 0;
    overflow: visible;
    background: transparent;
  }

  .principle-map::before,
  .principle-map::after {
    display: none;
  }

  .principle-map::before {
    background:
      radial-gradient(circle at var(--active-x, 31%) var(--active-y, 48%), rgba(22,184,243,.22), transparent 16%);
  }

  .principle-map::after {
    inset: 0;
    opacity: .42;
    background:
      linear-gradient(90deg, rgba(17,25,55,.92), rgba(17,25,55,.04) 22%, rgba(17,25,55,.04) 78%, rgba(17,25,55,.92)),
      linear-gradient(180deg, rgba(17,25,55,.92), rgba(17,25,55,.08) 24%, rgba(17,25,55,.9)),
      url("assets/backgrounds/workflow-abstract.jpg") 50% 40% / cover no-repeat;
  }

  .principle-point {
    width: 22px;
    height: 22px;
  }

  .principle-point strong {
    top: calc(100% + 9px);
    padding: 5px 7px;
    font-size: 10px;
    white-space: nowrap;
  }

  .principle-point span {
    width: 10px;
    height: 10px;
  }

  .principle-links {
    display: none;
  }

  .point-workflow { left: 18%; top: 42%; }
  .point-context { left: 42%; top: 36%; }
  .point-asset { left: 60%; top: 36%; }
  .point-governance { left: 78%; top: 30%; }

  .principle-detail article,
  .principle-detail [data-principle-panel="workflow"],
  .principle-detail [data-principle-panel="context"],
  .principle-detail [data-principle-panel="asset"],
  .principle-detail [data-principle-panel="governance"] {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    display: block;
    width: 100%;
    padding: 16px;
    border-color: rgba(255,255,255,.14);
    background:
      linear-gradient(135deg, rgba(20,31,68,.94), rgba(13,21,48,.9)),
      var(--navy);
    box-shadow: 0 16px 38px rgba(0,0,0,.18);
    animation: none;
  }

  .principle-detail {
    position: relative;
    inset: auto;
    display: grid;
    gap: 12px;
    pointer-events: auto;
  }

  .principle-detail p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.62;
  }

  .principle-detail article::before,
  .principle-detail article::after {
    display: none;
  }

  .impact .role-grid {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .impact-grid {
    box-shadow: 0 18px 54px rgba(17,25,55,.1);
  }

  .impact-major {
    padding: 34px 26px;
  }

  .big-number {
    font-size: clamp(72px, 23vw, 110px);
  }

  .experience-tab {
    min-height: 92px;
  }

  .contact-card {
    width: 100%;
  }

}

@media (max-width: 560px) {
  .section-head h2,
  .contact h2 {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.12;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .title-line {
    white-space: normal;
  }

  .nowrap {
    white-space: normal;
  }

  .brand-name {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 58px;
  }

  .hero-brand {
    padding-top: 96px;
    padding-bottom: 56px;
    background-position: left top, right -84px top 76px;
    background-size: auto, auto 62%;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-brand-copy h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-brand-copy h1 small {
    font-size: clamp(18px, 5.2vw, 26px);
  }

  .hero-brand-copy h2 {
    font-size: clamp(22px, 6.4vw, 30px);
  }

  .hero-brand-text {
    font-size: 14px;
    line-height: 1.72;
  }

  .product-intro-copy h1 {
    font-size: clamp(24px, 6.5vw, 32px);
  }

  .hero-product::before {
    display: none;
  }

  .hero-video-play {
    width: 62px;
    height: 62px;
  }

  .hero-video-play::before {
    left: 25px;
    top: 19px;
  }

  .hero-actions,
  .contact-actions,
  .button {
    width: 100%;
  }

  .proof-line span,
  .experience-tab,
  .contact-option {
    width: 100%;
  }

  .proof-line span {
    flex-basis: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 13px 16px;
  }

  .product-intro .proof-line span {
    border-bottom-color: rgba(17,25,55,.1);
  }

  .proof-line {
    flex-wrap: wrap;
  }

  .proof-line span:last-child {
    border-bottom: 0;
  }

  .impact-list article {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
  }

  .flow-rail {
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .flow-step {
    padding: 74px 20px 22px;
    background: rgba(255,255,255,.72);
  }

  .contact-option {
    min-height: 116px;
    padding: 15px;
  }

  .demo-modal,
  .video-modal {
    padding: 12px;
  }

  .demo-dialog {
    height: calc(100vh - 24px);
  }

  .demo-dialog-head {
    padding: 14px 14px 12px 16px;
  }

  .demo-dialog-head h2 {
    font-size: 18px;
  }

  .demo-fallback {
    padding: 9px 14px 12px;
  }

  .site-footer .brand-mark {
    width: 32px;
    height: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .product-intro::before,
  .product-intro .hero-product::before,
  .experience::before,
  .experience-shell {
    transform: none;
  }
}
