:root {
  --ink: #101820;
  --muted: #9aa6ad;
  --line: rgba(255, 255, 255, 0.12);
  --surface: #07090a;
  --panel: #11171b;
  --steel: #c8d0d5;
  --graphite: #24313b;
  --brand-blue: #2f2f92;
  --brand-blue-bright: #585bff;
  --copper: var(--brand-blue-bright);
  --signal: var(--brand-blue-bright);
  --teal: #4b7dff;
  --green: #607a50;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f3f6f7;
  background:
    radial-gradient(circle at 70% 0%, rgba(22, 138, 143, 0.16), transparent 34rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--surface);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(12, 16, 18, 0.72);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 286px;
}

.brand-logo {
  width: 205px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(88, 91, 255, 0.28));
}

.site-header a {
  color: white;
}

.brand small {
  display: block;
}

.brand small {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(10, 14, 17, 0.94);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.mobile-menu a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0 16px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 900;
}

.mobile-menu a:hover {
  background: rgba(88, 91, 255, 0.16);
  color: white;
}

.header-call,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  font-weight: 800;
}

.header-call {
  padding: 0 18px;
  background: var(--signal);
  color: white;
  font-size: 13px;
  box-shadow: 0 0 30px rgba(88, 91, 255, 0.28);
}

.hero {
  position: relative;
  min-height: 100vh;
}

.video-hero {
  min-height: 420vh;
  background: #050607;
}

.hero-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-video {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
  transform: translateX(6%) scale(1.02);
  transform-origin: center;
  background: #050607;
}

.hero-shade {
  z-index: -2;
  opacity: var(--hero-shade-strength, 1);
  background:
    radial-gradient(circle at 68% 50%, transparent 0 34%, rgba(5, 6, 7, 0.22) 58%, rgba(5, 6, 7, 0.72) 88%),
    linear-gradient(90deg, rgba(5, 6, 7, 0.92), rgba(5, 6, 7, 0.7) 28%, rgba(5, 6, 7, 0.22) 52%, rgba(5, 6, 7, 0.08) 76%),
    linear-gradient(0deg, rgba(5, 6, 7, 0.7), transparent 28%, transparent 70%, rgba(5, 6, 7, 0.48));
}

.hero-copy {
  width: min(450px, calc(100% - 48px));
  margin-left: clamp(24px, 8vw, 124px);
  margin-right: auto;
  padding-top: 88px;
  color: white;
  opacity: var(--hero-copy-opacity, 1);
  transform: translateY(calc((1 - var(--hero-copy-opacity, 1)) * -28px));
  transition: opacity 80ms linear, transform 80ms linear;
  will-change: opacity, transform;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 450px;
  font-size: clamp(40px, 3.65vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-lede,
.exchange-copy p,
.split-band p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.video-hero .hero-lede {
  max-width: 450px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.primary-action,
.secondary-action {
  padding: 0 22px;
  border: 1px solid var(--ink);
}

.primary-action {
  background: var(--ink);
  color: white;
}

.secondary-action {
  background: rgba(255, 255, 255, 0.7);
}

.video-hero .primary-action {
  border-color: white;
  background: white;
  color: var(--ink);
}

.video-hero .secondary-action {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  backdrop-filter: blur(14px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.video-hero .hero-stats {
  max-width: 450px;
}

.video-hero .hero-stats div {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-stats dt {
  font-size: 19px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.video-hero .hero-stats dd {
  color: rgba(255, 255, 255, 0.64);
}

.hero-scrub-ui {
  position: absolute;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(26px, 5vw, 58px);
  width: min(280px, calc(100% - 48px));
  color: white;
}

.hero-scrub-ui span {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-scrub-track {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-scrub-track i {
  display: block;
  width: calc(var(--hero-progress, 0) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-bright), white);
}

.engine-stage {
  position: relative;
  min-height: 570px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(88, 91, 255, 0.2), transparent 31%),
    linear-gradient(145deg, #17222b, #2d3a43 52%, #17222b);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.scanline {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 9px);
  opacity: 0.7;
}

.engine-shadow {
  position: absolute;
  left: 9%;
  right: 8%;
  bottom: 16%;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  filter: blur(18px);
}

.engine-core {
  position: absolute;
  left: 17%;
  right: 18%;
  top: 49%;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, #aab4ba, white, #aab4ba);
}

.engine-part {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 1px 24px rgba(255, 255, 255, 0.14), 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 120ms linear;
}

.engine-part span {
  position: absolute;
  top: calc(100% + 16px);
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.part-intake {
  left: 9%;
  width: 20%;
  height: 34%;
  border-radius: 48% 12% 12% 48%;
  background: linear-gradient(90deg, #6e7b83, #dfe6e9 44%, #7b8990);
}

.part-compressor {
  left: 25%;
  width: 24%;
  height: 43%;
  border-radius: 18px;
  background: repeating-linear-gradient(90deg, #d4dadd 0 10px, #8e9aa1 10px 18px);
}

.part-liner {
  left: 45%;
  width: 17%;
  height: 50%;
  border-radius: 46%;
  background: radial-gradient(circle, #9ca8ff, #4f53d7 48%, #242660 72%);
}

.part-turbine {
  left: 59%;
  width: 18%;
  height: 44%;
  border-radius: 18px 40% 40% 18px;
  background: repeating-conic-gradient(from 15deg, #ccd4d8 0deg 12deg, #5b6870 12deg 24deg);
}

.part-exhaust {
  left: 73%;
  width: 19%;
  height: 30%;
  border-radius: 12% 50% 50% 12%;
  background: linear-gradient(90deg, #77848b, #f0f3f3, #737f85);
}

.exploded-section {
  position: relative;
  display: none;
  min-height: 320vh;
  padding: 0 24px;
}

.exploded-section h2 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 46px);
}

.sticky-engine {
  position: sticky;
  top: 0;
  min-height: 100vh;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 88px 0 24px;
}

.section-heading {
  max-width: 780px;
}

.exploded-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 24px;
  align-items: stretch;
}

.progress-panel {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(16, 24, 32, 0.08);
}

.progress-meter {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.12);
}

#progressFill {
  position: absolute;
  inset: 0 0 auto;
  height: calc(var(--progress, 0) * 100%);
  border-radius: inherit;
  background: linear-gradient(var(--teal), var(--signal));
}

.progress-panel ol {
  display: grid;
  align-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.progress-panel li {
  transition: color 160ms ease;
}

.progress-panel li.active {
  color: var(--ink);
}

.exploded-canvas {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background:
    radial-gradient(circle at 50% 50%, rgba(22, 138, 143, 0.2), transparent 34%),
    linear-gradient(140deg, #101820, #263946 60%, #111920);
  box-shadow: var(--shadow);
}

.axis-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.exploded-part {
  --x: 0px;
  --y: 0px;
  --r: 0deg;
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(108px, 12vw, 146px);
  height: clamp(82px, 9vw, 112px);
  display: grid;
  align-content: end;
  gap: 4px;
  padding: 14px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 28px rgba(255, 255, 255, 0.12), 0 30px 64px rgba(0, 0, 0, 0.28);
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) rotate(var(--r));
  transition: transform 80ms linear;
}

.exploded-part::before {
  content: "";
  position: absolute;
  inset: 12px 16px 40px;
  border-radius: 50%;
  border: 12px solid var(--steel);
  box-shadow: inset 0 0 0 10px rgba(16, 24, 32, 0.48);
}

.exploded-part b,
.exploded-part small {
  position: relative;
}

.exploded-part b {
  font-size: 13px;
}

.exploded-part small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.ex-exhaust {
  border-radius: 12% 50% 50% 12%;
}

.ex-large {
  border-radius: 12px 44px 44px 12px;
}

.ex-combustion {
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 91, 255, 0.5), rgba(47, 47, 146, 0.24) 52%, rgba(255, 255, 255, 0.05));
}

.ex-stator,
.ex-shroud {
  border-radius: 18px;
}

.ex-bearing {
  border-radius: 50%;
}

.capabilities-deck,
.exchange-section,
.proof-section,
.leadership-section,
.quote-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
}

.capabilities-deck,
.exchange-section,
.proof-section,
.leadership-section,
.quote-section,
footer {
  color: #f3f6f7;
}

.deck-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}

.deck-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -34px;
}

.deck-heading h2 {
  grid-column: 1;
  margin-bottom: 0;
}

.deck-heading p:last-child {
  grid-column: 2;
  margin-bottom: 8px;
}

.deck-heading p:last-child,
.proof-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.capability-command {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  min-height: 560px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 28% 50%, rgba(88, 91, 255, 0.2), transparent 18rem),
    radial-gradient(circle at 78% 20%, rgba(22, 138, 143, 0.16), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.36);
}

.capability-command::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 52px 52px;
  mask-image: radial-gradient(circle at 48% 46%, black, transparent 78%);
}

.process-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.ring-one {
  width: min(390px, 90%);
  aspect-ratio: 1;
  box-shadow: inset 0 0 70px rgba(22, 138, 143, 0.16), 0 0 120px rgba(22, 138, 143, 0.16);
}

.ring-two {
  width: min(260px, 62%);
  aspect-ratio: 1;
  border-color: rgba(88, 91, 255, 0.42);
  box-shadow: inset 0 0 40px rgba(88, 91, 255, 0.16);
}

.hub {
  position: relative;
  display: grid;
  width: 138px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: radial-gradient(circle, #2c363b, #101619 72%);
  color: white;
  font-size: 36px;
  font-weight: 900;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.46);
}

.node {
  position: absolute;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 15, 18, 0.78);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.node-a {
  top: 14%;
  left: 13%;
}

.node-b {
  top: 30%;
  right: 8%;
}

.node-c {
  right: 20%;
  bottom: 16%;
}

.node-d {
  bottom: 28%;
  left: 9%;
}

.capability-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: center;
  position: relative;
  z-index: 1;
}

.capability-grid article {
  min-height: 0;
  padding: 28px;
  border-top: 4px solid var(--copper);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.card-index {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.capability-grid article:nth-child(2) {
  border-color: var(--teal);
}

.capability-grid article:nth-child(3) {
  border-color: var(--green);
}

.capability-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.service-photo-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 16px;
  margin-top: 18px;
}

.service-photo-strip figure {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(88, 91, 255, 0.18);
  background: #080b0d;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.28);
}

.service-photo-strip figure:first-child {
  min-height: 390px;
}

.service-photo-strip img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
  opacity: 0.86;
  transition: transform 260ms ease, opacity 260ms ease;
}

.service-photo-strip figure:hover img {
  transform: scale(1.035);
  opacity: 1;
}

.service-photo-strip figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(4, 6, 8, 0.88)),
    linear-gradient(90deg, rgba(47, 47, 146, 0.2), transparent 45%);
}

.service-photo-strip figcaption {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 6px;
}

.service-photo-strip strong {
  color: white;
  font-size: 20px;
}

.service-photo-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.exchange-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 42px;
  align-items: center;
  margin-top: 40px;
  padding-top: 150px;
  padding-bottom: 150px;
}

.exchange-section::before,
.proof-section::before,
.quote-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0 calc(50% - 50vw);
  pointer-events: none;
}

.exchange-section::before {
  background:
    radial-gradient(ellipse at 78% 32%, rgba(88, 91, 255, 0.2), transparent 34rem),
    radial-gradient(ellipse at 14% 70%, rgba(75, 125, 255, 0.13), transparent 28rem),
    repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, #050607 0%, #0c1115 48%, #060708 100%);
  clip-path: polygon(0 5%, 100% 0, 100% 94%, 0 100%);
}

.exchange-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -4vw;
  top: 72px;
  width: min(620px, 50vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(88, 91, 255, 0.16);
  box-shadow:
    inset 0 0 0 74px rgba(255, 255, 255, 0.018),
    inset 0 0 0 128px rgba(88, 91, 255, 0.035),
    0 0 120px rgba(88, 91, 255, 0.16);
  opacity: 0.78;
}

.exchange-board {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(88, 91, 255, 0.32);
  background:
    linear-gradient(90deg, rgba(88, 91, 255, 0.1), transparent 24%),
    linear-gradient(145deg, rgba(17, 25, 30, 0.96), rgba(5, 7, 9, 0.96));
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.board-header,
.board-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.72fr;
  gap: 18px;
  align-items: center;
}

.board-header {
  padding: 16px 22px;
  background:
    linear-gradient(90deg, rgba(88, 91, 255, 0.18), transparent 72%),
    rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.board-row {
  position: relative;
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent);
}

.board-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: var(--brand-blue-bright);
  box-shadow: 0 0 24px rgba(88, 91, 255, 0.45);
}

.board-row strong {
  font-size: 18px;
}

.board-row span {
  color: var(--muted);
  font-weight: 700;
}

.board-row em {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(88, 91, 255, 0.18);
  color: #d7dcff;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.exchange-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.exchange-metrics span {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
}

.exchange-metrics b {
  display: block;
  color: white;
  font-size: 24px;
  line-height: 1;
}

.proof-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 150px;
  border: 0;
}

.proof-section::before {
  background:
    linear-gradient(90deg, #07090a, rgba(11, 16, 19, 0.94), #07090a),
    radial-gradient(ellipse at 28% 20%, rgba(88, 91, 255, 0.12), transparent 30rem);
}

.proof-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -10vw;
  bottom: 24px;
  width: min(460px, 42vw);
  aspect-ratio: 1.8;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: rotate(-12deg);
  box-shadow: inset 0 0 0 48px rgba(88, 91, 255, 0.035);
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.proof-card {
  min-height: 240px;
  position: relative;
  display: grid;
  align-content: space-between;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(88, 91, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(88, 91, 255, 0.1), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 86% 12%, rgba(88, 91, 255, 0.18), transparent 10rem);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.28);
}

.proof-card::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 26px rgba(255, 255, 255, 0.025);
}

.proof-card-pdf::after {
  content: "PDF";
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.1);
  font-size: 54px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.proof-card-image img {
  position: absolute;
  inset: 18px 18px auto auto;
  width: 96px;
  max-height: 128px;
  object-fit: cover;
  opacity: 0.28;
  filter: grayscale(1);
}

.proof-cards span {
  position: relative;
  color: var(--signal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.proof-cards strong {
  position: relative;
  max-width: 270px;
  font-size: 28px;
  line-height: 1.05;
}

.proof-cards small {
  position: relative;
  color: var(--muted);
  font-weight: 800;
}

.leadership-section {
  position: relative;
  isolation: isolate;
  padding-top: 0;
}

.leadership-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 48px calc(50% - 50vw) 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 10%, rgba(88, 91, 255, 0.14), transparent 34rem),
    linear-gradient(180deg, transparent, rgba(9, 13, 16, 0.72));
}

.leadership-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.leadership-heading h2 {
  grid-column: 2;
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.leadership-heading .eyebrow {
  grid-column: 1;
}

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

.team-grid article {
  position: relative;
  min-height: 470px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(88, 91, 255, 0.2);
  background: #0a0e11;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
}

.team-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 34%, rgba(4, 6, 8, 0.16) 52%, rgba(4, 6, 8, 0.93)),
    linear-gradient(90deg, rgba(47, 47, 146, 0.18), transparent 52%);
}

.team-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.86) contrast(1.05);
}

.team-grid div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.team-grid h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.team-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
}

.quote-section {
  position: relative;
  isolation: isolate;
  padding-top: 0;
  padding-bottom: 140px;
}

.quote-section::before {
  background:
    radial-gradient(ellipse at 50% 10%, rgba(88, 91, 255, 0.16), transparent 34rem),
    linear-gradient(180deg, transparent, #050607 40%, #06080a);
}

.quote-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 34px;
  align-items: start;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(88, 91, 255, 0.24);
  background:
    radial-gradient(circle at 22% 0%, rgba(88, 91, 255, 0.22), transparent 22rem),
    linear-gradient(145deg, #151d22, #090d0f);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.36);
}

.quote-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 48%, transparent 0 9rem, rgba(255, 255, 255, 0.04) 9rem 9.1rem, transparent 9.1rem 15rem, rgba(255, 255, 255, 0.035) 15rem 15.1rem, transparent 15.1rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 70px);
  opacity: 0.56;
}

.quote-panel h2 {
  max-width: 760px;
}

.quote-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.08);
}

.quote-steps span {
  position: relative;
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.quote-steps b {
  display: block;
  margin-bottom: 7px;
  color: var(--brand-blue-bright);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.contact-card {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(88, 91, 255, 0.12), transparent 38%),
    linear-gradient(145deg, #151d22, #0c1114);
  color: white;
  box-shadow: var(--shadow);
}

.contact-card a {
  font-size: 19px;
  font-weight: 900;
}

.contact-card span,
.contact-card address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.55;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr 0.6fr 0.9fr 0.9fr;
  gap: 22px;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.site-footer div {
  display: grid;
  align-content: start;
  gap: 7px;
}

.site-footer strong {
  color: white;
  font-size: 13px;
}

.site-footer a,
.site-footer address,
.site-footer span {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.site-footer a:hover {
  color: white;
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    border-radius: 24px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-header.menu-open .mobile-menu {
    display: grid;
  }

  .exploded-layout,
  .deck-heading,
  .capability-command,
  .exchange-section,
  .proof-section,
  .proof-cards,
  .leadership-heading,
  .team-grid,
  .quote-panel,
  .quote-steps,
  .service-photo-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 96px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .process-visual {
    min-height: 360px;
  }

  .service-photo-strip figure,
  .service-photo-strip figure:first-child {
    min-height: 260px;
  }

  .board-header {
    display: none;
  }

  .board-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quote-steps {
    gap: 0;
  }

  .deck-heading .eyebrow,
  .deck-heading h2,
  .deck-heading p:last-child,
  .leadership-heading .eyebrow,
  .leadership-heading h2 {
    grid-column: 1;
    margin-bottom: 0;
  }

  .contact-card {
    grid-column: auto;
    grid-row: auto;
  }

  .team-grid article {
    min-height: 380px;
  }

  .team-grid img {
    object-position: center 18%;
  }

  .progress-panel {
    grid-template-columns: 1fr;
  }

  .progress-meter {
    height: 8px;
  }

  #progressFill {
    width: calc(var(--progress, 0) * 100%);
    height: 100%;
  }

  .exploded-canvas {
    min-height: 560px;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 580px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-call {
    display: none;
  }

  .brand-logo {
    width: 190px;
  }

  .sticky-engine {
    padding-top: 92px;
  }

  h1 {
    font-size: 40px;
  }

  .video-hero {
    min-height: 430vh;
  }

  .hero-video {
    object-position: 58% center;
    transform: translateX(0) scale(1.08);
  }

  .hero-shade {
    background:
      radial-gradient(circle at 54% 46%, transparent 0 28%, rgba(5, 6, 7, 0.22) 58%, rgba(5, 6, 7, 0.74) 88%),
      linear-gradient(0deg, rgba(5, 6, 7, 0.76), transparent 30%, transparent 62%, rgba(5, 6, 7, 0.42));
  }

  .hero-copy {
    width: calc(100% - 32px);
    padding-top: 118px;
  }

  .video-hero .hero-lede {
    max-width: 320px;
    font-size: 16px;
    line-height: 1.48;
  }

  .video-hero .hero-actions {
    margin: 20px 0;
  }

  .video-hero .hero-stats {
    display: none;
  }

  .hero-scrub-ui {
    left: 16px;
    right: 16px;
    bottom: 20px;
    width: auto;
  }

  .site-footer {
    gap: 14px;
    font-size: 12px;
  }

  .site-footer div {
    min-height: 86px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
  }
}
