:root {
  --font-inter: "Inter";
  --font-mono: "IBM Plex Mono";
  --navy: #0a1628;
  --navy-deep: #07111f;
  --emerald: #1b5e4b;
  --teal: #2a7f8c;
  --cyan: #3bafd4;
  --sand: #c4b9a8;
  --silver: #a8a29e;
  --white: #ffffff;
  --offwhite: #f5f3ef;
  --charcoal: #1a1a1a;
  --gray: #6b7280;
  --line: #d9d8d3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--offwhite);
  color: var(--navy);
  font-family: var(--font-inter), Inter, Arial, sans-serif;
  margin: 0;
}

::selection {
  background: rgba(59, 175, 212, 0.28);
  color: var(--navy);
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

main {
  overflow: hidden;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(22px) saturate(135%);
  background: rgba(248, 249, 249, 0.88);
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 78px;
  padding: 0 5vw;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
}

.site-header::after {
  background: linear-gradient(90deg, transparent, rgba(59, 175, 212, 0.8), transparent);
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0.65;
  position: absolute;
  width: 32%;
  animation: header-scan 9s ease-in-out infinite;
}

.brand {
  display: block;
  justify-self: start;
  line-height: 0;
}

.brand img {
  height: auto;
  width: 174px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 28px;
}

.desktop-nav a {
  color: #334155;
  font-size: 12px;
  font-weight: 550;
  position: relative;
  transition: color 200ms ease;
}

.desktop-nav a::after {
  background: var(--cyan);
  bottom: -9px;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: transform 220ms ease;
  width: 100%;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--teal);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 13px;
  font-weight: 650;
  gap: 28px;
  justify-content: center;
  letter-spacing: -0.01em;
  min-height: 52px;
  padding: 0 22px;
  position: relative;
  overflow: hidden;
  transition: background 180ms ease, border 180ms ease, color 180ms ease,
    transform 180ms ease, box-shadow 180ms ease;
}

.button::before {
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.28) 50%, transparent 75%);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-130%);
  transition: transform 650ms ease;
}

.button:hover {
  box-shadow: 0 16px 40px rgba(7, 17, 31, 0.18);
  transform: translateY(-2px);
}

.button:hover::before {
  transform: translateX(130%);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.button span {
  font-size: 16px;
}

.button-header {
  background: var(--navy);
  color: white;
  justify-self: end;
  min-height: 42px;
}

.button-header:hover {
  background: var(--emerald);
}

.button-primary {
  background: var(--teal);
  color: white;
}

.button-primary:hover {
  background: #31909e;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: white;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: white;
}

.button-large {
  min-height: 60px;
  padding: 0 28px;
}

.mobile-nav {
  display: none;
}

.hero {
  background:
    radial-gradient(circle at 78% 28%, rgba(42, 127, 140, 0.2), transparent 31%),
    radial-gradient(circle at 18% 82%, rgba(59, 175, 212, 0.08), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0a1628 50%, #071524 100%);
  color: white;
  min-height: 870px;
  padding: 78px 5vw 0;
  position: relative;
}

.gateway-pattern,
.contact-pattern {
  background-image: url("assets/valt-gateway-icon.png");
  background-position: center;
  background-repeat: repeat;
  background-size: 105px;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  position: absolute;
}

.gateway-pattern {
  animation: pattern-drift 32s linear infinite;
  background-size: 120px;
  mask-image: linear-gradient(90deg, transparent, black 30%, black 75%, transparent);
}

.ambient-orb {
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  position: absolute;
}

.ambient-orb-one {
  background: rgba(42, 127, 140, 0.15);
  box-shadow: 0 0 120px 45px rgba(42, 127, 140, 0.12);
  height: 320px;
  right: 8%;
  top: 15%;
  width: 320px;
  animation: orb-float 10s ease-in-out infinite;
}

.ambient-orb-two {
  background: rgba(59, 175, 212, 0.07);
  box-shadow: 0 0 100px 35px rgba(59, 175, 212, 0.08);
  bottom: 5%;
  height: 220px;
  left: 12%;
  width: 220px;
  animation: orb-float 13s ease-in-out -4s infinite reverse;
}

.hero::after {
  background: var(--cyan);
  content: "";
  height: 3px;
  left: 5vw;
  position: absolute;
  top: 78px;
  width: 96px;
}

.hero-inner {
  display: grid;
  gap: 7vw;
  grid-template-columns: minmax(510px, 1.03fr) minmax(500px, 0.97fr);
  margin: 0 auto;
  max-width: 1440px;
  min-height: 665px;
  padding: 86px 0 60px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  align-self: center;
  animation: hero-copy-in 900ms cubic-bezier(.2,.8,.2,1) both;
}

.eyebrow,
.section-label {
  align-items: center;
  color: var(--teal);
  display: flex;
  font-size: 10px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--cyan);
  max-width: 610px;
}

.eyebrow::before,
.section-label::before {
  background: currentColor;
  content: "";
  height: 2px;
  margin-right: 14px;
  width: 24px;
}

.eyebrow span,
.section-label {
  flex: 1;
}

.eyebrow b,
.section-label span {
  font-family: var(--font-mono), monospace;
  font-size: 9px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(54px, 5.3vw, 80px);
  font-weight: 610;
  letter-spacing: -0.052em;
  line-height: 1.02;
  margin: 32px 0 28px;
  max-width: 780px;
}

.hero h1 span {
  -webkit-background-clip: text;
  background: linear-gradient(100deg, #79c5d3 0%, #d8f4f3 48%, #69b8c7 100%);
  background-clip: text;
  background-size: 200% 100%;
  color: transparent;
  animation: text-sheen 8s ease-in-out infinite;
}

.hero-lead {
  color: #b9c5d2;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 665px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.system-visual {
  align-self: center;
  background: rgba(7, 17, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  min-height: 500px;
  padding: 28px;
  position: relative;
  transform-style: preserve-3d;
  animation: visual-arrive 1100ms 120ms cubic-bezier(.2,.8,.2,1) both,
    visual-float 8s 1.3s ease-in-out infinite;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25), inset 0 0 60px rgba(59, 175, 212, 0.025);
  overflow: hidden;
}

.system-visual::before,
.system-visual::after {
  border-color: var(--cyan);
  border-style: solid;
  content: "";
  height: 26px;
  position: absolute;
  width: 26px;
}

.system-scan {
  background: linear-gradient(90deg, transparent, rgba(93, 222, 237, 0.28), transparent);
  height: 1px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 4;
  animation: system-scan 5.5s 1.2s ease-in-out infinite;
}

.system-visual::before {
  border-width: 2px 0 0 2px;
  left: -1px;
  top: -1px;
}

.system-visual::after {
  border-width: 0 2px 2px 0;
  bottom: -1px;
  right: -1px;
}

.visual-topline {
  color: #8495a8;
  display: flex;
  font-family: var(--font-mono), monospace;
  font-size: 8px;
  justify-content: space-between;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-status {
  align-items: center;
  display: flex;
  gap: 7px;
}

.live-status i {
  background: #65c89b;
  border-radius: 50%;
  height: 6px;
  width: 6px;
  animation: status-pulse 2.2s ease-out infinite;
}

.visual-gateway {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  gap: 22px;
  margin-top: 42px;
  padding-bottom: 28px;
}

.visual-gateway img {
  height: 96px;
  object-fit: cover;
  object-position: center;
  width: 96px;
  animation: gateway-breathe 5s ease-in-out infinite;
}

.visual-gateway div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.visual-gateway span {
  color: var(--cyan);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.visual-gateway strong {
  font-size: 20px;
  font-weight: 550;
  letter-spacing: -0.02em;
}

.visual-map {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 78px 1fr;
  margin-top: 28px;
}

.map-column {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.map-column small {
  color: #718398;
  font-family: var(--font-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.12em;
  margin-bottom: 3px;
}

.map-column span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #b8c5d2;
  font-size: 9px;
  padding: 9px 10px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.map-column span:hover {
  background: rgba(59, 175, 212, 0.08);
  border-color: rgba(59, 175, 212, 0.55);
  transform: translateX(3px);
}

.map-connector {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.map-connector i {
  background: rgba(59, 175, 212, 0.4);
  height: 1px;
  animation: connector-pulse 2.6s ease-in-out infinite;
}

.map-connector b {
  align-items: center;
  background: var(--emerald);
  display: flex;
  font-family: var(--font-mono), monospace;
  font-size: 8px;
  font-weight: 500;
  height: 46px;
  justify-content: center;
  left: 50%;
  letter-spacing: 0.1em;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  box-shadow: 0 0 28px rgba(42, 127, 140, 0.35);
  animation: core-pulse 3.4s ease-in-out infinite;
}

.visual-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  bottom: 25px;
  color: #73879b;
  display: flex;
  font-family: var(--font-mono), monospace;
  font-size: 7px;
  justify-content: space-between;
  left: 28px;
  letter-spacing: 0.1em;
  padding-top: 14px;
  position: absolute;
  right: 28px;
}

.hero-proof {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1440px;
  min-height: 127px;
  position: relative;
  z-index: 2;
}

.hero-proof div {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 4px 16px;
  grid-template-columns: 36px 1fr;
  padding: 27px 34px 24px 0;
}

.hero-proof div:not(:first-child) {
  padding-left: 34px;
}

.hero-proof div:last-child {
  border: 0;
}

.hero-proof span {
  color: var(--cyan);
  font-family: var(--font-mono), monospace;
  font-size: 9px;
  grid-row: 1 / 3;
  padding-top: 3px;
}

.hero-proof strong {
  font-size: 13px;
  font-weight: 600;
}

.hero-proof small {
  color: #7f90a3;
  font-size: 10px;
}

.section {
  padding: 118px max(5vw, calc((100vw - 1440px) / 2));
}

@supports (animation-timeline: view()) {
  .section-heading,
  .outcome-grid,
  .driver-grid,
  .module-grid,
  .coorb-partner-banner,
  .partner-solution-grid,
  .governance-stack,
  .cloud-architecture,
  .delivery-grid,
  .ecosystem-layout,
  .contact-copy {
    animation: section-reveal linear both;
    animation-range: entry 5% cover 25%;
    animation-timeline: view();
  }
}

.section-heading {
  display: grid;
  gap: 7vw;
  grid-template-columns: 0.32fr 0.68fr;
}

.section-heading > div {
  max-width: 900px;
}

.section-heading h2,
.compliance h2,
.delivery-intro h2,
.contact h2 {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 590;
  letter-spacing: -0.052em;
  line-height: 1.04;
  margin: 0;
}

.section-heading > div > p,
.large-copy,
.delivery-intro > p:last-child,
.contact-copy > p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.72;
  margin: 28px 0 0;
  max-width: 650px;
}

.outcomes {
  background: var(--offwhite);
}

.outcome-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 82px;
}

.outcome-grid article {
  border-right: 1px solid var(--line);
  min-height: 390px;
  padding: 28px 36px;
  position: relative;
  transition: background 180ms ease;
}

.outcome-grid article:first-child {
  padding-left: 0;
}

.outcome-grid article:last-child {
  border-right: 0;
}

.outcome-grid article:hover {
  background: white;
}

.number,
.module-number {
  color: var(--gray);
  font-family: var(--font-mono), monospace;
  font-size: 9px;
}

.line-icon {
  height: 78px;
  margin: 57px 0 48px;
  position: relative;
  width: 78px;
}

.line-icon i {
  border: 2px solid var(--teal);
  height: 56px;
  left: 10px;
  position: absolute;
  top: 10px;
  transform: rotate(45deg);
  width: 56px;
}

.line-icon i:last-child {
  transform: rotate(45deg) scale(0.55);
}

.line-icon-window i:first-child {
  border-color: var(--emerald);
  border-width: 2px 0 2px 2px;
}

.line-icon-window i:last-child {
  border-color: var(--cyan);
  border-width: 2px 2px 2px 0;
  transform: rotate(45deg);
}

.line-icon-modernize i:first-child {
  border-color: var(--sand);
  left: 0;
}

.line-icon-modernize i:last-child {
  border-color: var(--teal);
  left: 23px;
  transform: rotate(45deg);
}

.outcome-grid article > p {
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.outcome-grid h3 {
  font-size: 24px;
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.24;
  margin: 14px 0 0;
  max-width: 360px;
}

.outcome-grid a {
  bottom: 28px;
  font-size: 22px;
  position: absolute;
  right: 32px;
}

.market-shift {
  background: white;
}

.driver-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 78px;
}

.driver-grid article {
  border-right: 1px solid var(--line);
  min-height: 280px;
  padding: 28px 44px 28px 0;
}

.driver-grid article:not(:first-child) {
  padding-left: 44px;
}

.driver-grid article:last-child {
  border-right: 0;
}

.driver-grid article > span {
  color: var(--teal);
  font-family: var(--font-mono), monospace;
  font-size: 9px;
}

.driver-grid h3 {
  font-size: 25px;
  font-weight: 560;
  letter-spacing: -0.035em;
  margin: 76px 0 16px;
}

.driver-grid p {
  color: var(--gray);
  font-size: 12px;
  line-height: 1.68;
  margin: 0;
  max-width: 330px;
}

.modules {
  background: var(--navy);
  color: white;
}

.section-heading-dark .section-label {
  color: var(--cyan);
}

.section-heading-dark > div > p {
  color: #9baaba;
}

.module-grid {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 78px;
}

.module-grid article {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 290px;
  padding: 24px;
  overflow: hidden;
  position: relative;
  transition: background 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.module-grid article:hover {
  background: linear-gradient(150deg, rgba(42, 127, 140, 0.2), rgba(59, 175, 212, 0.035));
  box-shadow: inset 0 0 40px rgba(59, 175, 212, 0.05);
  transform: translateY(-5px);
}

.module-head {
  display: flex;
  justify-content: space-between;
}

.module-code {
  color: var(--cyan);
  font-family: var(--font-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.product-icon {
  color: var(--cyan);
  fill: none;
  height: 34px;
  margin: 45px 0 34px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  width: 34px;
  filter: drop-shadow(0 0 0 rgba(59, 175, 212, 0));
  transition: filter 260ms ease, transform 260ms ease;
}

.module-grid article:hover .product-icon {
  filter: drop-shadow(0 0 10px rgba(59, 175, 212, 0.55));
  transform: translateY(-3px) scale(1.08);
}

.module-grid h3 {
  font-size: 17px;
  font-weight: 550;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}

.module-grid p {
  color: #8fa0b2;
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
}

.partner-solutions {
  background: var(--offwhite);
}

.coorb-partner-banner {
  align-items: center;
  background: var(--emerald);
  color: white;
  display: grid;
  gap: 5vw;
  grid-template-columns: 0.6fr 1fr auto;
  margin-top: 76px;
  min-height: 132px;
  padding: 28px 34px;
}

.coorb-partner-banner > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.coorb-wordmark {
  font-size: 30px;
  font-weight: 750;
  letter-spacing: -0.055em;
}

.coorb-partner-banner small {
  color: #a8d4c6;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coorb-partner-banner p {
  color: #c7dcd5;
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}

.coorb-partner-banner a {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  font-size: 10px;
  gap: 20px;
  padding-bottom: 6px;
}

.partner-solution-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
}

.partner-solution-grid article {
  background: white;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 315px;
  padding: 28px;
  transition: background 180ms ease, transform 180ms ease;
}

.partner-solution-grid article:hover {
  background: linear-gradient(145deg, #f7fbfa, #e7f3f1);
  box-shadow: 0 24px 55px rgba(10, 22, 40, 0.1);
  position: relative;
  transform: translateY(-7px);
  z-index: 2;
}

.partner-solution-grid article > span {
  color: var(--teal);
  font-family: var(--font-mono), monospace;
  font-size: 9px;
}

.partner-solution-grid .product-icon {
  color: var(--teal);
  height: 42px;
  margin: 49px 0 39px;
  stroke-width: 1.2;
  width: 42px;
}

.partner-solution-grid article:hover .product-icon {
  filter: drop-shadow(0 0 12px rgba(42, 127, 140, 0.35));
  transform: rotate(-3deg) scale(1.08);
}

.partner-solution-grid h3 {
  font-size: 20px;
  font-weight: 580;
  letter-spacing: -0.03em;
  margin: 0 0 13px;
}

.partner-solution-grid p {
  color: var(--gray);
  font-size: 11px;
  line-height: 1.65;
  margin: 0;
  max-width: 360px;
}

.attribution-note,
.ecosystem-disclosure {
  color: var(--gray);
  font-size: 9px;
  line-height: 1.55;
  margin: 20px 0 0 auto;
  max-width: 780px;
}

.compliance {
  background: white;
  display: grid;
  gap: 9vw;
  grid-template-columns: 0.9fr 1.1fr;
}

.compliance-copy {
  align-self: center;
}

.compliance h2 {
  font-size: clamp(40px, 4.3vw, 64px);
  margin-top: 48px;
}

.compliance h2 span {
  color: var(--emerald);
}

.inline-link {
  align-items: center;
  border-bottom: 1px solid var(--navy);
  display: inline-flex;
  font-size: 12px;
  font-weight: 650;
  gap: 24px;
  margin-top: 34px;
  padding-bottom: 7px;
}

.governance-stack {
  border-top: 1px solid var(--line);
}

.governance-stack article {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 36px 1fr auto;
  min-height: 130px;
  padding: 20px 0;
}

.governance-stack article > span,
.governance-stack b {
  color: var(--teal);
  font-family: var(--font-mono), monospace;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.governance-stack b {
  border: 1px solid #d7e5e5;
  color: var(--gray);
  padding: 8px 10px;
}

.governance-stack h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 7px;
}

.governance-stack p {
  color: var(--gray);
  font-size: 11px;
  line-height: 1.55;
  margin: 0;
}

.cloud {
  background: var(--offwhite);
}

.cloud-architecture {
  background: white;
  border: 1px solid var(--line);
  margin-top: 78px;
  padding: 40px;
}

.cloud-row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}

.cloud-row article {
  border: 1px solid #dedfdd;
  display: flex;
  flex-direction: column;
  min-height: 118px;
  padding: 18px;
}

.cloud-row span {
  color: var(--teal);
  font-family: var(--font-mono), monospace;
  font-size: 8px;
}

.cloud-row strong {
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
}

.cloud-row small {
  color: var(--gray);
  font-size: 8px;
  margin-top: 5px;
}

.architecture-lines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 48px;
}

.architecture-lines i {
  border-right: 1px solid var(--teal);
  justify-self: start;
  margin-left: 50%;
  opacity: 0.45;
}

.valt-layer {
  align-items: center;
  background: var(--navy);
  color: white;
  display: flex;
  gap: 36px;
  min-height: 106px;
  padding: 22px 28px;
}

.valt-layer img {
  height: auto;
  width: 190px;
}

.valt-layer div {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 36px;
}

.valt-layer strong {
  font-size: 15px;
}

.valt-layer span {
  color: #8fa1b3;
  font-size: 9px;
}

.capability-row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 10px;
}

.capability-row span {
  background: #edf5f4;
  color: var(--emerald);
  font-size: 9px;
  padding: 14px;
  text-align: center;
}

.delivery {
  background: var(--navy);
  color: white;
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.82fr 1.18fr;
}

.delivery-intro .section-label {
  color: var(--cyan);
}

.delivery-intro h2 {
  font-size: clamp(40px, 4.3vw, 64px);
  margin-top: 48px;
}

.delivery-intro > p:last-child {
  color: #94a4b5;
}

.delivery-steps {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.delivery-steps article {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  min-height: 142px;
  padding: 24px 0;
}

.delivery-steps span {
  color: var(--cyan);
  font-family: var(--font-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.delivery-steps h3 {
  font-size: 18px;
  font-weight: 550;
  margin: 19px 0 7px;
}

.delivery-steps p {
  color: #8999aa;
  font-size: 11px;
  line-height: 1.55;
  margin: 0;
}

.ecosystem {
  background: white;
}

.ecosystem-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.25fr 0.75fr;
  margin-top: 78px;
}

.ecosystem-partners,
.ecosystem-clients {
  border: 1px solid var(--line);
  padding: 30px;
}

.ecosystem-title {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.ecosystem-title span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ecosystem-title small {
  color: var(--gray);
  font-size: 8px;
}

.name-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
}

.partner-name-grid {
  grid-template-columns: repeat(3, 1fr);
}

.client-name-grid {
  grid-template-columns: repeat(2, 1fr);
}

.name-grid > div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 11px;
  justify-content: center;
  min-height: 105px;
  padding: 16px;
  text-align: center;
}

.name-grid img {
  background: white;
  border: 1px solid #e4e8e8;
  border-radius: 12px;
  height: 44px;
  object-fit: contain;
  padding: 8px;
  width: 44px;
  filter: grayscale(1);
  transition: filter 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.name-grid img.official-logo {
  height: 48px;
  padding: 10px;
  width: 96px;
}

.name-grid img.official-logo-dark {
  background: #071522;
  border-color: #071522;
}

.name-grid > div {
  transition: background 220ms ease, transform 220ms ease;
}

.name-grid > div:hover {
  background: #f4faf9;
  transform: translateY(-3px);
}

.name-grid > div:hover img {
  filter: grayscale(0);
  box-shadow: 0 10px 25px rgba(10, 22, 40, 0.1);
  transform: scale(1.12);
}

@keyframes header-scan {
  0%, 100% { left: -15%; opacity: 0; }
  20% { opacity: 0.65; }
  50% { left: 84%; opacity: 0.65; }
  70% { opacity: 0; }
}

@keyframes pattern-drift {
  from { background-position: 0 0; }
  to { background-position: 120px 120px; }
}

@keyframes orb-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(24px, -22px, 0) scale(1.07); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes visual-arrive {
  from { opacity: 0; transform: perspective(1000px) translateY(28px) rotateY(-4deg); }
  to { opacity: 1; transform: perspective(1000px) translateY(0) rotateY(0); }
}

@keyframes visual-float {
  0%, 100% { transform: perspective(1000px) translateY(0) rotateX(0deg); }
  50% { transform: perspective(1000px) translateY(-8px) rotateX(0.7deg); }
}

@keyframes system-scan {
  0% { opacity: 0; top: 3%; }
  10% { opacity: 1; }
  75% { opacity: 0.75; top: 94%; }
  100% { opacity: 0; top: 94%; }
}

@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(101, 200, 155, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(101, 200, 155, 0); }
  100% { box-shadow: 0 0 0 0 rgba(101, 200, 155, 0); }
}

@keyframes gateway-breathe {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(59, 175, 212, 0)); }
  50% { filter: drop-shadow(0 0 18px rgba(59, 175, 212, 0.25)); }
}

@keyframes connector-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@keyframes core-pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(42, 127, 140, 0.22); }
  50% { box-shadow: 0 0 38px rgba(59, 175, 212, 0.42); }
}

@keyframes text-sheen {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes section-reveal {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Bespoke VALT art direction */
.page-rail {
  align-items: center;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  flex-direction: column;
  font-family: var(--font-mono), monospace;
  font-size: 7px;
  gap: 12px;
  left: 18px;
  letter-spacing: 0.12em;
  mix-blend-mode: difference;
  position: fixed;
  text-transform: uppercase;
  z-index: 30;
}

.page-rail > span {
  transform: rotate(-90deg) translateX(38px);
  white-space: nowrap;
}

.page-rail > i {
  background: currentColor;
  height: 54px;
  opacity: 0.45;
  width: 1px;
}

.page-rail a {
  opacity: 0.5;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.page-rail a:hover {
  color: var(--cyan);
  opacity: 1;
  transform: translateX(3px);
}

.hero {
  isolation: isolate;
}

.hero::before {
  background:
    linear-gradient(rgba(59, 175, 212, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 175, 212, 0.08) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  inset: 78px 0 auto 52%;
  height: 73%;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  opacity: 0.3;
  pointer-events: none;
  position: absolute;
  transform: perspective(800px) rotateY(-14deg) rotateX(7deg);
  transform-origin: center;
  z-index: 0;
}

.hero-inner {
  gap: clamp(36px, 5vw, 92px);
  grid-template-columns: minmax(500px, 0.92fr) minmax(520px, 1.08fr);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-copy::after {
  background: linear-gradient(180deg, var(--cyan), transparent);
  content: "";
  height: 180px;
  left: -34px;
  opacity: 0.25;
  position: absolute;
  top: 108px;
  width: 1px;
}

.hero h1 {
  font-size: clamp(62px, 5.6vw, 88px);
  line-height: 0.94;
}

.system-visual {
  background:
    linear-gradient(145deg, rgba(16, 53, 70, 0.98), rgba(5, 20, 32, 0.94));
  border: 0;
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(110, 210, 224, 0.3),
    inset 0 0 80px rgba(59, 175, 212, 0.045);
  clip-path: polygon(8% 0, 100% 0, 100% 90%, 92% 100%, 0 100%, 0 10%);
  min-height: 555px;
  padding: 42px 38px;
}

.system-visual .visual-topline {
  color: #8fa8bb;
}

.system-visual .map-column small,
.system-visual .visual-footer {
  color: #7f9bb0;
}

.system-visual .map-column span {
  background: rgba(5, 16, 28, 0.46);
  border-color: rgba(116, 195, 208, 0.2);
  color: #c0d2dd;
}

.system-visual::before {
  border-width: 1px 0 0 1px;
  height: 58px;
  left: 0;
  top: 0;
  width: 58px;
}

.system-visual::after {
  border-width: 0 1px 1px 0;
  bottom: 0;
  height: 58px;
  right: 0;
  width: 58px;
}

.geometry-orbit {
  border: 1px solid rgba(59, 175, 212, 0.13);
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.geometry-orbit::before,
.geometry-orbit::after {
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(59, 175, 212, 0.7);
  content: "";
  height: 5px;
  left: 50%;
  position: absolute;
  top: -3px;
  width: 5px;
}

.geometry-orbit-a {
  height: 470px;
  right: -230px;
  top: 54px;
  width: 470px;
  animation: orbit-spin 22s linear infinite;
}

.geometry-orbit-b {
  border-style: dashed;
  bottom: -235px;
  height: 420px;
  left: -180px;
  width: 420px;
  animation: orbit-spin 30s linear infinite reverse;
}

.geometry-axis {
  background: linear-gradient(90deg, transparent, rgba(59, 175, 212, 0.3), transparent);
  height: 1px;
  left: 0;
  position: absolute;
  top: 52%;
  transform: rotate(-12deg);
  width: 115%;
}

.visual-topline,
.visual-gateway,
.visual-map,
.visual-footer {
  position: relative;
  z-index: 2;
}

.visual-gateway {
  border-bottom-color: rgba(59, 175, 212, 0.18);
  margin-left: 9%;
  width: 86%;
}

.visual-map {
  margin-left: -3%;
  transform: rotate(-1deg);
  width: 98%;
}

.visual-footer {
  left: 38px;
  right: 38px;
}

.outcomes {
  background:
    linear-gradient(90deg, rgba(42, 127, 140, 0.045) 1px, transparent 1px),
    var(--offwhite);
  background-size: calc(100% / 12) 100%;
}

.outcome-grid {
  border-bottom: 1px solid var(--line);
  border-top: 0;
  margin-left: 16%;
  margin-top: 82px;
  position: relative;
}

.outcome-grid::before {
  color: rgba(10, 22, 40, 0.05);
  content: "PATHWAYS";
  font-size: clamp(80px, 12vw, 190px);
  font-weight: 750;
  left: -21%;
  letter-spacing: -0.07em;
  position: absolute;
  top: -92px;
  writing-mode: vertical-rl;
}

.outcome-grid article {
  min-height: 410px;
  padding-top: 80px;
}

.outcome-grid article:nth-child(2) {
  transform: translateY(52px);
}

.outcome-grid article:nth-child(3) {
  transform: translateY(-34px);
}

.market-shift {
  background: var(--emerald);
  color: white;
  position: relative;
}

.market-shift::after {
  background:
    repeating-conic-gradient(from 45deg, rgba(255,255,255,.055) 0 25%, transparent 0 50%) 0 0 / 58px 58px;
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 32% 100%);
  content: "";
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
}

.market-shift .section-heading,
.market-shift .driver-grid {
  position: relative;
  z-index: 2;
}

.market-shift .section-label,
.market-shift .driver-grid > article > span {
  color: #86d8de;
}

.market-shift .section-heading > div > p,
.market-shift .driver-grid p {
  color: rgba(255,255,255,.65);
}

.driver-grid {
  border: 0;
  gap: 30px;
  margin-left: 21%;
}

.driver-grid article {
  backdrop-filter: blur(12px);
  background: rgba(5, 28, 31, 0.2);
  border: 1px solid rgba(255,255,255,.14) !important;
  min-height: 330px;
  padding: 34px;
}

.driver-grid article:nth-child(2) {
  transform: translateY(56px);
}

.modules {
  background:
    radial-gradient(circle at 84% 18%, rgba(59,175,212,.13), transparent 23%),
    linear-gradient(160deg, #07111f, #0a1628 52%, #071521);
}

.module-grid {
  border: 0;
  gap: 1px;
  grid-template-columns: repeat(12, 1fr);
  margin-left: 6%;
  position: relative;
}

.module-grid::before {
  border: 1px solid rgba(59,175,212,.16);
  content: "";
  height: 180px;
  left: -4%;
  position: absolute;
  top: -36px;
  transform: rotate(45deg);
  width: 180px;
}

.module-grid article {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.12);
  min-height: 280px;
  padding: 30px;
}

.module-grid article:nth-child(1),
.module-grid article:nth-child(6),
.module-grid article:nth-child(9) {
  grid-column: span 5;
}

.module-grid article:nth-child(2),
.module-grid article:nth-child(5),
.module-grid article:nth-child(10) {
  grid-column: span 4;
}

.module-grid article:nth-child(3),
.module-grid article:nth-child(4),
.module-grid article:nth-child(7),
.module-grid article:nth-child(8) {
  grid-column: span 3;
}

.module-grid article:nth-child(1),
.module-grid article:nth-child(9) {
  min-height: 350px;
}

.module-grid article:nth-child(1) {
  background: linear-gradient(145deg, rgba(42,127,140,.34), rgba(255,255,255,.025));
}

.module-grid article:nth-child(6) {
  background: linear-gradient(145deg, rgba(27,94,75,.42), rgba(255,255,255,.02));
}

.module-grid article:nth-child(9) {
  background: linear-gradient(145deg, rgba(59,175,212,.2), rgba(255,255,255,.02));
}

.partner-solutions {
  background:
    linear-gradient(120deg, transparent 0 52%, rgba(42,127,140,.055) 52% 52.1%, transparent 52.1%),
    var(--offwhite);
}

.coorb-partner-banner {
  clip-path: polygon(0 0, 95% 0, 100% 36%, 100% 100%, 5% 100%, 0 64%);
  margin-left: 8%;
  width: 92%;
}

.partner-solution-grid {
  border: 0;
  gap: 20px;
  grid-template-columns: repeat(12, 1fr);
  margin-left: 3%;
  margin-top: 58px;
}

.partner-solution-grid article {
  border: 1px solid var(--line);
  min-height: 330px;
}

.partner-solution-grid article:nth-child(1),
.partner-solution-grid article:nth-child(4),
.partner-solution-grid article:nth-child(6) {
  grid-column: span 7;
}

.partner-solution-grid article:nth-child(2),
.partner-solution-grid article:nth-child(3),
.partner-solution-grid article:nth-child(5) {
  grid-column: span 5;
}

.partner-solution-grid article:nth-child(2),
.partner-solution-grid article:nth-child(5) {
  transform: translateY(48px);
}

.partner-solution-grid article:nth-child(4) {
  margin-left: 9%;
}

.compliance {
  background:
    radial-gradient(circle at 20% 35%, rgba(59,175,212,.11), transparent 25%),
    var(--navy-deep);
  isolation: isolate;
}

.compliance::after {
  border: 1px solid rgba(59,175,212,.16);
  content: "";
  height: 520px;
  left: -220px;
  position: absolute;
  top: 80px;
  transform: rotate(45deg);
  width: 520px;
  z-index: -1;
}

.cloud {
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(59,175,212,.16) 50%, transparent 50.05%),
    var(--offwhite);
}

.delivery {
  background: linear-gradient(145deg, #0f5648, #124236 65%, #071f1d);
}

.ecosystem-layout {
  align-items: start;
  grid-template-columns: 1.45fr .55fr;
}

.ecosystem-clients {
  margin-top: 90px;
}

.name-grid > div {
  overflow: hidden;
  position: relative;
}

.name-grid > div::after {
  background: linear-gradient(110deg, transparent, rgba(59,175,212,.14), transparent);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.name-grid > div:hover::after {
  transform: translateX(120%);
}

.contact {
  background:
    radial-gradient(circle at 70% 50%, rgba(59,175,212,.16), transparent 27%),
    linear-gradient(140deg, #123f35, #0a2d28 62%, #07111f);
}

.contact::after {
  border: 1px solid rgba(255,255,255,.1);
  content: "";
  height: 420px;
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 420px;
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1120px) {
  .module-grid article:nth-child(n),
  .partner-solution-grid article:nth-child(n) {
    grid-column: span 6;
    margin-left: 0;
    transform: none;
  }

  .outcome-grid {
    margin-left: 0;
  }

  .outcome-grid::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .page-rail {
    display: none;
  }

  .hero::before {
    inset: 72px 0 auto 15%;
    width: 100%;
  }

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

  .hero-copy::after {
    display: none;
  }

  .driver-grid {
    margin-left: 0;
  }

  .driver-grid article:nth-child(2) {
    transform: none;
  }

  .module-grid {
    margin-left: 0;
  }

  .ecosystem-layout {
    grid-template-columns: 1fr;
  }

  .ecosystem-clients {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .module-grid,
  .partner-solution-grid {
    grid-template-columns: 1fr;
  }

  .module-grid article:nth-child(n),
  .partner-solution-grid article:nth-child(n) {
    grid-column: auto;
  }

  .system-visual {
    clip-path: none;
    padding: 24px;
  }

  .coorb-partner-banner {
    clip-path: none;
    margin-left: 0;
    width: 100%;
  }
}

.name-grid span {
  color: var(--teal);
  font-family: var(--font-mono), monospace;
  font-size: 7px;
}

.name-grid strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ecosystem-disclosure {
  border-left: 2px solid var(--cyan);
  margin-top: 24px;
  max-width: none;
  padding: 8px 0 8px 16px;
}

.contact {
  background: var(--emerald);
  color: white;
  display: grid;
  gap: 10vw;
  grid-template-columns: 0.7fr 1.3fr;
  min-height: 580px;
  position: relative;
}

.contact-pattern {
  filter: grayscale(1) brightness(2);
  opacity: 0.045;
}

.contact-logo,
.contact-copy {
  align-self: center;
  position: relative;
  z-index: 2;
}

.contact-logo img {
  display: block;
  height: auto;
  width: 320px;
}

.contact-logo span {
  color: #b7d2c9;
  display: block;
  font-size: 9px;
  letter-spacing: 0.16em;
  margin-top: 23px;
  text-transform: uppercase;
}

.contact-copy .section-label {
  color: #94d5df;
}

.contact h2 {
  font-size: clamp(42px, 4.8vw, 70px);
  margin-top: 48px;
}

.contact-copy > p {
  color: #c2d6cf;
}

.contact-copy .button {
  margin-top: 34px;
}

footer {
  background: var(--navy-deep);
  color: white;
  padding: 65px max(5vw, calc((100vw - 1440px) / 2)) 28px;
}

.footer-main {
  align-items: start;
  display: grid;
  grid-template-columns: 0.7fr 1fr 0.5fr;
  min-height: 180px;
}

.footer-main > img {
  height: auto;
  width: 210px;
}

.footer-main p {
  color: #8293a5;
  font-size: 12px;
  line-height: 1.6;
  margin: 8px 0 0;
  max-width: 270px;
}

.footer-main nav {
  display: grid;
  font-size: 10px;
  gap: 13px;
}

.footer-main nav a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #5f7285;
  display: flex;
  font-family: var(--font-mono), monospace;
  font-size: 7px;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding-top: 22px;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 17px;
  }

  .hero-inner {
    gap: 4vw;
    grid-template-columns: 1fr 0.9fr;
  }

  .module-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .coorb-partner-banner {
    grid-template-columns: 0.5fr 1fr;
  }

  .coorb-partner-banner a {
    justify-self: start;
  }

  .ecosystem-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 72px;
  }

  .desktop-nav,
  .site-header > .button {
    display: none;
  }

  .mobile-nav {
    display: block;
    justify-self: end;
    position: relative;
  }

  .mobile-nav summary {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    padding: 10px;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    background: var(--navy);
    height: 1px;
    width: 26px;
  }

  .mobile-nav nav {
    background: white;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    min-width: 235px;
    padding: 12px;
    position: absolute;
    right: 0;
    top: 42px;
  }

  .mobile-nav nav a {
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    padding: 14px 10px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero::after {
    top: 72px;
  }

  .hero-inner,
  .section-heading,
  .compliance,
  .delivery,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 80px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .system-visual {
    min-height: 510px;
  }

  .hero-proof {
    margin-top: 40px;
  }

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

  .driver-grid,
  .partner-solution-grid {
    grid-template-columns: 1fr;
  }

  .driver-grid article,
  .driver-grid article:not(:first-child) {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 235px;
    padding: 28px 0;
  }

  .driver-grid h3 {
    margin-top: 48px;
  }

  .coorb-partner-banner {
    grid-template-columns: 1fr;
  }

  .outcome-grid article,
  .outcome-grid article:first-child {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 340px;
    padding: 28px 0;
  }

  .outcome-grid a {
    right: 0;
  }

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

  .cloud-row,
  .capability-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .architecture-lines {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-logo img {
    width: 260px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0 22px;
  }

  .brand img {
    width: 145px;
  }

  .hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero::after {
    left: 22px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .system-visual {
    min-height: 470px;
    padding: 20px;
  }

  .visual-gateway img {
    height: 76px;
    width: 76px;
  }

  .visual-gateway strong {
    font-size: 16px;
  }

  .visual-map {
    gap: 8px;
    grid-template-columns: 1fr 42px 1fr;
  }

  .visual-footer {
    display: none;
  }

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

  .hero-proof div,
  .hero-proof div:not(:first-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 0;
    padding: 20px 0;
  }

  .section {
    padding: 84px 22px;
  }

  .section-heading {
    gap: 38px;
  }

  .section-heading h2,
  .compliance h2,
  .delivery-intro h2,
  .contact h2 {
    font-size: 41px;
  }

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

  .partner-name-grid,
  .client-name-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecosystem-partners,
  .ecosystem-clients {
    padding: 20px;
  }

  .ecosystem-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .module-grid article {
    min-height: 260px;
  }

  .governance-stack article {
    grid-template-columns: 30px 1fr;
  }

  .governance-stack b {
    display: none;
  }

  .cloud-architecture {
    margin-left: -22px;
    margin-right: -22px;
    padding: 20px;
  }

  .cloud-row {
    grid-template-columns: 1fr 1fr;
  }

  .valt-layer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .valt-layer img {
    width: 160px;
  }

  .valt-layer div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-left: 0;
    padding-top: 18px;
  }

  .capability-row {
    grid-template-columns: 1fr;
  }

  .contact-logo img {
    width: 230px;
  }

  .footer-main {
    gap: 36px;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Layout integrity pass
   Keeps the bespoke VALT art direction while removing conflicting offsets,
   irregular grid spans, and viewport overflow across every section. */

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

main,
.hero,
.section,
footer {
  width: 100%;
}

.hero *,
.section *,
footer * {
  min-width: 0;
}

.site-header {
  max-width: 100vw;
}

section[id] {
  scroll-margin-top: 78px;
}

.hero {
  min-height: auto;
  overflow: hidden;
}

.hero-inner {
  gap: clamp(42px, 5vw, 76px);
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  min-height: 690px;
  width: 100%;
}

.hero h1 {
  font-size: clamp(58px, 5.15vw, 82px);
  max-width: 720px;
}

.system-visual {
  max-width: 100%;
  width: 100%;
}

.hero-proof {
  width: 100%;
}

.section-heading {
  gap: clamp(48px, 7vw, 108px);
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 0.7fr);
}

.section-heading > div {
  max-width: 820px;
}

.outcome-grid,
.driver-grid,
.module-grid,
.coorb-partner-banner,
.partner-solution-grid,
.governance-stack,
.cloud-architecture,
.delivery-steps,
.ecosystem-layout {
  width: 100%;
}

.outcome-grid {
  margin-left: 0;
}

.outcome-grid::before {
  display: none;
}

.outcome-grid article,
.outcome-grid article:nth-child(2),
.outcome-grid article:nth-child(3) {
  min-height: 390px;
  padding: 48px 36px 34px;
  transform: none;
}

.outcome-grid article:first-child {
  padding-left: 36px;
}

.driver-grid {
  gap: 18px;
  margin-left: 0;
}

.driver-grid article,
.driver-grid article:not(:first-child),
.driver-grid article:nth-child(2) {
  min-height: 310px;
  padding: 34px;
  transform: none;
}

.module-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-left: 0;
}

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

.module-grid article,
.module-grid article:nth-child(n) {
  grid-column: auto;
  margin-left: 0;
  min-height: 300px;
  transform: none;
}

.coorb-partner-banner {
  margin-left: 0;
  width: 100%;
}

.partner-solution-grid {
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-left: 0;
}

.partner-solution-grid article,
.partner-solution-grid article:nth-child(n) {
  grid-column: auto;
  margin-left: 0;
  min-height: 330px;
  transform: none;
}

.compliance,
.delivery,
.contact {
  gap: clamp(56px, 8vw, 120px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  position: relative;
}

.governance-stack article {
  grid-template-columns: 36px minmax(0, 1fr) auto;
}

.cloud-architecture {
  overflow: hidden;
}

.cloud-row,
.capability-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.valt-layer {
  max-width: 100%;
}

.delivery-steps {
  align-self: center;
}

.ecosystem-layout {
  align-items: stretch;
  gap: 22px;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
}

.ecosystem-partners,
.ecosystem-clients {
  min-width: 0;
}

.ecosystem-clients {
  margin-top: 0;
}

.contact::after {
  pointer-events: none;
}

.contact-logo,
.contact-copy {
  min-width: 0;
}

@media (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
  }

  .hero h1 {
    font-size: clamp(54px, 5.3vw, 70px);
  }

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

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

@media (max-width: 1024px) {
  .page-rail {
    display: none;
  }

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

  .desktop-nav,
  .site-header > .button {
    display: none;
  }

  .mobile-nav {
    display: block;
    justify-self: end;
    position: relative;
  }

  .mobile-nav summary {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    padding: 10px;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    background: var(--navy);
    height: 1px;
    width: 26px;
  }

  .mobile-nav nav {
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(7, 17, 31, 0.16);
    display: flex;
    flex-direction: column;
    min-width: 235px;
    padding: 12px;
    position: absolute;
    right: 0;
    top: 42px;
  }

  .mobile-nav nav a {
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    padding: 14px 10px;
  }

  section[id] {
    scroll-margin-top: 72px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero::after {
    top: 72px;
  }

  .hero-inner {
    gap: 56px;
    grid-template-columns: 1fr;
    padding-top: 74px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .system-visual {
    justify-self: center;
    max-width: 780px;
  }

  .hero-proof {
    margin-top: 48px;
  }

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

  .compliance,
  .delivery,
  .contact {
    gap: 64px;
    grid-template-columns: 1fr;
  }

  .ecosystem-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section-heading {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .outcome-grid,
  .driver-grid,
  .partner-solution-grid {
    grid-template-columns: 1fr;
  }

  .outcome-grid article,
  .outcome-grid article:first-child,
  .outcome-grid article:nth-child(n) {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 310px;
    padding: 32px 0;
  }

  .outcome-grid a {
    right: 0;
  }

  .driver-grid {
    gap: 12px;
  }

  .driver-grid article,
  .driver-grid article:not(:first-child),
  .driver-grid article:nth-child(n) {
    min-height: 260px;
    padding: 28px;
  }

  .driver-grid h3 {
    margin-top: 48px;
  }

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

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

  .ecosystem-layout {
    gap: 16px;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-inner {
    gap: 44px;
    padding-bottom: 42px;
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 58px);
    line-height: 0.98;
  }

  .system-visual {
    min-height: 455px;
    padding: 24px 20px;
  }

  .visual-gateway {
    margin-left: 0;
    width: 100%;
  }

  .visual-map {
    margin-left: 0;
    width: 100%;
  }

  .hero-proof {
    margin-top: 20px;
  }

  .module-grid,
  .partner-name-grid,
  .client-name-grid {
    grid-template-columns: 1fr;
  }

  .module-grid article,
  .module-grid article:nth-child(n),
  .partner-solution-grid article,
  .partner-solution-grid article:nth-child(n) {
    min-height: 260px;
  }

  .coorb-partner-banner {
    padding: 30px 24px;
  }

  .governance-stack article {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .cloud-architecture {
    padding: 18px;
  }

  .cloud-row {
    grid-template-columns: 1fr;
  }

  .architecture-lines {
    display: none;
  }

  .valt-layer {
    margin-top: 12px;
  }

  .ecosystem-partners,
  .ecosystem-clients {
    padding: 18px;
  }

  .contact {
    min-height: auto;
  }

  .contact-logo img {
    max-width: 230px;
    width: 72vw;
  }

  .footer-main {
    min-height: auto;
  }
}

/* Dark-section contrast correction */
.compliance {
  color: #f4f8fa;
}

.compliance .section-label,
.governance-stack article > span {
  color: #62c9db;
}

.compliance h2 {
  color: #f4f8fa;
}

.compliance h2 span {
  color: #58c59e;
}

.compliance .large-copy {
  color: #aebbc8;
}

.compliance .inline-link {
  border-bottom-color: rgba(98, 201, 219, 0.72);
  color: #dff6fa;
}

.governance-stack {
  border-top-color: rgba(223, 246, 250, 0.38);
}

.governance-stack article {
  border-bottom-color: rgba(223, 246, 250, 0.34);
}

.governance-stack h3 {
  color: #f4f8fa;
}

.governance-stack p {
  color: #aebbc8;
}

.governance-stack b {
  border-color: rgba(223, 246, 250, 0.68);
  color: #c2d0dc;
}
