:root {
  --navy: #031326;
  --navy-2: #071d34;
  --blue: #16bde7;
  --blue-light: #63dcf4;
  --ink: #081a2b;
  --muted: #617183;
  --line: #dbe3e9;
  --paper: #f4f7f9;
  --white: #ffffff;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

.data-journey {
  position: absolute;
  z-index: 8;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.data-journey-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.data-route,
.data-route-progress {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.data-route {
  stroke: rgba(45, 198, 233, .14);
  stroke-width: 1;
}

.data-route-progress {
  stroke: #24cff1;
  stroke-width: 1.7;
  stroke-linecap: round;
  filter: url(#data-glow);
}

.data-packet {
  opacity: 0;
  transition: opacity .35s ease;
  will-change: transform;
}

.data-journey.is-ready .data-packet {
  opacity: 1;
}

.data-packet-aura {
  fill: rgba(25, 196, 234, .18);
  filter: url(#data-soft-glow);
}

.data-packet-ring {
  fill: none;
  stroke: rgba(103, 227, 250, .72);
  stroke-width: 1;
  animation: data-ring 1.7s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.data-packet-core {
  fill: #e9fbff;
  stroke: #18c8ec;
  stroke-width: 2;
  filter: url(#data-glow);
}

.data-node {
  fill: #061b2c;
  stroke: rgba(54, 208, 239, .46);
  stroke-width: 1;
  opacity: .58;
  transition: fill .3s ease, opacity .3s ease, stroke-width .3s ease;
}

.data-node.is-active {
  fill: #dffaff;
  stroke: #24cff1;
  stroke-width: 2;
  opacity: 1;
  filter: url(#data-glow);
}

@keyframes data-ring {
  0% { opacity: .9; transform: scale(.65); }
  80%, 100% { opacity: 0; transform: scale(1.65); }
}

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

.shell {
  width: min(1380px, calc(100% - 96px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.hero {
  position: relative;
  min-height: max(780px, 100svh);
  overflow: hidden;
  background: var(--navy);
  color: white;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 16, 31, .98) 0%, rgba(2, 16, 31, .83) 32%, rgba(2, 16, 31, .18) 68%, rgba(2, 16, 31, .12) 100%),
    linear-gradient(0deg, rgba(2, 15, 29, .92) 0%, rgba(2, 15, 29, .08) 38%);
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, calc(100% - 80px));
  height: 112px;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: top .35s var(--ease-out), width .35s var(--ease-out), height .35s var(--ease-out), padding .35s var(--ease-out), background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
  top: 12px;
  width: min(1240px, calc(100% - 32px));
  height: 74px;
  padding: 0 22px;
  border: 1px solid rgba(112, 220, 244, .2);
  background: rgba(3, 19, 38, .9);
  box-shadow: 0 16px 44px rgba(0, 8, 18, .24);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: white;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 205px;
  height: auto;
  object-fit: contain;
  transition: width .35s var(--ease-out), opacity .2s ease;
}

.footer-brand .brand-logo {
  width: 205px;
}

.site-header.is-scrolled .brand-logo {
  width: 150px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.desktop-nav a {
  position: relative;
  transition: color .2s ease;
}

.desktop-nav a::before {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(.3);
  transition: opacity .2s ease, transform .25s var(--ease-out);
}

.desktop-nav a:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -22px;
  width: 1px;
  height: 16px;
  background: rgba(28, 194, 232, .65);
  content: "";
  transform: translateY(-50%);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  color: var(--blue-light);
}

.desktop-nav a.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav-contact::before {
  display: none;
}

.nav-contact {
  padding: 11px 18px;
  border: 1px solid rgba(89, 217, 245, .55);
}

.mobile-nav {
  display: none;
}

.hero-visual {
  position: absolute;
  inset: 0;
  background:
    url("../images/hero-mendoza.png") center center / cover no-repeat;
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.04);
  transform-origin: center;
  will-change: transform;
}

.hero-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity .8s ease;
}

.hero-video.is-playing {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: max(780px, 100svh);
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 132px;
  padding-bottom: 42px;
}

.hero-copy {
  width: min(650px, 54%);
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(43px, 3.65vw, 58px);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1.065;
}

.hero h1 em {
  color: white;
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .77);
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 680;
  transition: transform .25s var(--ease-out), background .2s ease, border .2s ease, box-shadow .25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 18, 35, .16);
}

.button.primary {
  background: var(--blue);
  color: #001522;
}

.button.primary:hover {
  background: var(--blue-light);
}

.button.secondary {
  border-color: rgba(31, 196, 232, .85);
  color: var(--blue-light);
  background: rgba(2, 20, 36, .42);
}

.metrics {
  display: flex;
  width: min(760px, 66%);
  align-items: flex-end;
  margin-top: 38px;
}

.metrics div {
  min-width: 31%;
  padding: 0 44px;
  border-right: 1px solid rgba(37, 204, 239, .7);
}

.metrics div:first-child {
  padding-left: 0;
}

.metrics div:last-child {
  border: 0;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: clamp(34px, 3.6vw, 56px);
  letter-spacing: -.055em;
  line-height: 1;
}

.metrics span {
  margin-top: 8px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 650;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  right: 37px;
  bottom: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  width: 1px;
  height: 38px;
  background: var(--blue);
}

.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 120px;
}

.group-section {
  padding-block: 100px;
}

.section h2 {
  margin: 0;
  font-size: clamp(40px, 4.6vw, 68px);
  font-weight: 620;
  letter-spacing: -.052em;
  line-height: 1.05;
}

.section-intro h2 {
  max-width: 560px;
}

.group-copy {
  padding-top: 34px;
}

.group-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.group-copy .large-copy {
  margin-bottom: 26px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.55;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.principles span {
  color: var(--ink);
}

.principles strong {
  display: block;
  margin-top: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.capabilities {
  background: var(--paper);
  padding-block: 104px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.capability-list {
  border-top: 1px solid #cad5dd;
}

.capability-row {
  display: grid;
  grid-template-columns: minmax(330px, 34%) 1fr;
  min-height: 370px;
  overflow: hidden;
  border-right: 1px solid #cad5dd;
  border-bottom: 1px solid #cad5dd;
  border-left: 1px solid #cad5dd;
  background: rgba(255, 255, 255, .44);
  transition: background .3s ease, box-shadow .3s ease;
}

.capability-row:nth-child(even) {
  grid-template-columns: 1fr minmax(330px, 34%);
}

.capability-row:nth-child(even) .capability-image {
  order: 2;
  border-right: 0;
  border-left: 1px solid #cad5dd;
}

.capability-row:hover {
  z-index: 1;
  background: #fff;
  box-shadow: 0 22px 54px rgba(6, 35, 55, .09);
}

.capability-image {
  position: relative;
  min-width: 0;
  min-height: 370px;
  overflow: hidden;
  margin: 0;
  border-right: 1px solid #cad5dd;
  background: var(--navy);
}

.capability-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 19, 38, .04), rgba(1, 174, 229, .13));
  content: "";
  pointer-events: none;
}

.capability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out), filter .4s ease;
}

.capability-row:hover .capability-image img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.capability-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 48px 54px;
}

.capability-number {
  margin-bottom: 12px;
  color: var(--blue);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}

.capability-copy h3 {
  margin: 0 0 17px;
  font-size: 29px;
  font-weight: 660;
  letter-spacing: -.03em;
}

.capability-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.capability-copy p + p {
  margin-top: 11px;
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.capability-tags span {
  padding: 7px 10px;
  border: 1px solid #c7d5df;
  color: #27465e;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .015em;
}

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

.units .section-heading > p {
  color: rgba(255, 255, 255, .58);
}

.unit-list {
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.unit-card {
  position: relative;
  display: grid;
  grid-template-columns: 70px 390px 1fr 40px;
  gap: 36px;
  align-items: center;
  min-height: 148px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: background .22s ease, padding .22s ease;
}

.unit-westnet { --unit-accent: #f23e66; --brand-color: #ff5578; }
.unit-gridnode { --unit-accent: #36d0cf; --brand-color: #45dedc; }
.unit-nexmetra { --unit-accent: #32a9ed; --brand-color: #52bcf7; }
.unit-visionfor { --unit-accent: #588cff; --brand-color: #78a4ff; }
.unit-plusground { --unit-accent: #f1b55f; --brand-color: #f4bf71; }
.unit-napear { --unit-accent: #8a63f4; --brand-color: #a888ff; }

.unit-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--unit-accent) 14%, transparent), transparent 75%);
  content: "";
  opacity: 0;
  transition: opacity .22s ease;
}

.unit-card:hover {
  padding-inline: 20px;
}

.unit-card:hover::before {
  opacity: 1;
}

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

.unit-number {
  color: var(--unit-accent);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.unit-title small {
  color: var(--unit-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.unit-title h3 {
  margin: 0;
  color: var(--brand-color, white);
  font-size: 34px;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.unit-brand {
  display: flex;
  min-height: 64px;
  align-items: center;
  margin-top: 8px;
}

.unit-brand--text {
  min-height: 46px;
}

.unit-logo-shell {
  display: inline-flex;
  width: 220px;
  height: 64px;
  flex: 0 0 220px;
  align-items: center;
  justify-content: flex-start;
}

.unit-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: left center;
}

.unit-logo-shell--westnet,
.unit-logo-shell--visionfor,
.unit-logo-shell--plusground,
.unit-logo-shell--nexmetra {
  width: 300px;
  flex-basis: 300px;
  gap: 14px;
}

.unit-logo.unit-logo--westnet-symbol {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}

.unit-logo.unit-logo--westnet-wordmark {
  width: 190px;
  max-height: 48px;
}

.unit-logo.unit-logo--visionfor-symbol {
  width: auto;
  height: 58px;
  flex: 0 0 auto;
}

.unit-logo.unit-logo--visionfor-wordmark {
  width: 190px;
  max-height: 42px;
}

.unit-logo.unit-logo--plusground-symbol {
  width: auto;
  height: 58px;
  flex: 0 0 auto;
}

.unit-logo.unit-logo--plusground-wordmark {
  width: 215px;
  max-height: 38px;
}

.unit-logo-shell--gridnode {
  width: 300px;
  flex-basis: 300px;
  gap: 14px;
}

.unit-logo.unit-logo--gridnode-symbol {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}

.unit-logo.unit-logo--gridnode-wordmark {
  width: 210px;
  max-height: 46px;
}

.unit-logo.unit-logo--nexmetra-symbol {
  width: auto;
  height: 54px;
  flex: 0 0 auto;
}

.unit-logo.unit-logo--nexmetra-wordmark {
  width: 185px;
  max-height: 38px;
}

.unit-logo-shell--napear {
  width: 240px;
  flex-basis: 240px;
}

.unit-logo.unit-logo--napear {
  width: 220px;
  max-height: 60px;
}

.unit-card > p {
  max-width: 630px;
  margin: 0;
  color: rgba(255, 255, 255, .61);
  font-size: 15px;
  line-height: 1.65;
}

.unit-arrow {
  color: var(--unit-accent);
  font-size: 24px;
  transition: transform .2s ease;
}

.unit-card:hover .unit-arrow {
  transform: translate(4px, -4px);
}

.infrastructure {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: #07192a;
}

.infra-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 18, 32, .82) 0%, rgba(3, 18, 32, .46) 43%, rgba(3, 18, 32, .08) 76%),
    url("../images/datacenter-infrastructure.png") center / cover no-repeat;
  opacity: .9;
  transform: scale(1.025);
  transition: transform 1.2s var(--ease-out);
}

.infrastructure.is-visible .infra-photo {
  transform: scale(1);
}

.infra-content {
  position: relative;
  z-index: 1;
}

.infra-panel {
  max-width: 690px;
  padding: 100px 0;
  color: white;
}

.infra-panel > p:not(.kicker) {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
  line-height: 1.75;
}

.infra-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.infra-stats span {
  padding-top: 22px;
  border-top: 1px solid rgba(58, 207, 239, .5);
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  line-height: 1.45;
}

.infra-stats strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: 29px;
}

.project-section {
  background: white;
}

.project-grid {
  display: grid;
  grid-template-columns: .5fr 1fr 1.15fr;
  gap: 70px;
}

.project-title p {
  max-width: 470px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.process {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process li {
  display: block;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.process li:first-child {
  padding-top: 0;
}

.process strong {
  font-size: 18px;
}

.process p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact {
  background: #eaf3f6;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 120px;
  align-items: end;
}

.contact-copy p {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

footer {
  padding: 70px 0 26px;
  background: var(--navy);
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 56px;
}

.footer-main > p {
  margin: 0;
  color: rgba(255, 255, 255, .54);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  justify-content: flex-end;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--blue-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .4);
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

@media (min-width: 1251px) {
  .footer-main {
    grid-template-columns: 250px minmax(320px, 1fr) auto;
    gap: 60px;
  }

  .footer-links {
    flex-wrap: nowrap;
    gap: 18px;
    white-space: nowrap;
  }
}

@media (min-width: 721px) and (max-width: 1250px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

.js .hero-animate {
  opacity: 0;
  transform: translateY(22px);
}

.js .hero.is-loaded .hero-animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .72s var(--ease-out) var(--animation-delay, 0ms), transform .72s var(--ease-out) var(--animation-delay, 0ms);
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .68s var(--ease-out) var(--reveal-delay, 0ms), transform .68s var(--ease-out) var(--reveal-delay, 0ms);
}

.scroll-cue i {
  animation: cue-pulse 1.8s ease-in-out infinite;
  transform-origin: top;
}

@keyframes cue-pulse {
  0%, 100% { opacity: .45; transform: scaleY(.55); }
  50% { opacity: 1; transform: scaleY(1); }
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  .shell { width: min(100% - 52px, 920px); }
  .desktop-nav { display: none; }
  .mobile-nav { display: block; position: relative; }
  .mobile-nav summary {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .28);
    cursor: pointer;
    list-style: none;
  }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav summary span { width: 18px; height: 1px; background: white; }
  .mobile-nav > div {
    position: absolute;
    top: 54px;
    right: 0;
    display: flex;
    width: 220px;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(3, 19, 38, .97);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  }
  .mobile-nav > div a { padding: 15px 18px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
  .hero-copy { width: 72%; }
  .metrics { width: 88%; }
  .split, .contact-inner { grid-template-columns: 1fr; gap: 52px; }
  .group-copy { padding-top: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .capability-row { grid-template-columns: minmax(290px, 38%) 1fr; }
  .capability-row:nth-child(even) { grid-template-columns: 1fr minmax(290px, 38%); }
  .capability-copy { padding: 40px 38px; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .project-grid > .kicker { grid-column: 1 / -1; }
  .unit-card { grid-template-columns: 54px 330px 1fr 30px; gap: 22px; }
  .site-header.is-scrolled { width: calc(100% - 28px); }
  .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 860px) {
  .unit-card { grid-template-columns: 44px 1fr 28px; gap: 18px; padding: 28px 0; }
  .unit-card > p { grid-column: 2 / -1; }
}

@media (max-width: 720px) {
  .shell { width: calc(100% - 38px); }
  .section { padding: 86px 0; }
  .site-header { width: calc(100% - 36px); height: 84px; }
  .brand-logo { width: 165px; }
  .footer-brand .brand-logo { width: 190px; }
  .site-header.is-scrolled { top: 8px; width: calc(100% - 20px); height: 66px; padding: 0 14px; }
  .site-header.is-scrolled .brand-logo { width: 132px; }
  .hero, .hero-content { min-height: 0; }
  .hero-content { justify-content: flex-start; padding-top: 136px; padding-bottom: 44px; }
  .hero-copy { width: 100%; }
  .hero-visual {
    background-position: 64% center;
  }
  .hero-video { display: none; }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(2, 16, 31, .96) 0%, rgba(2, 16, 31, .74) 68%, rgba(2, 16, 31, .38) 100%),
      linear-gradient(0deg, rgba(2, 15, 29, .94) 0%, rgba(2, 15, 29, .08) 45%);
  }
  .hero h1 { font-size: clamp(38px, 11.2vw, 52px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .metrics { display: grid; width: 100%; grid-template-columns: repeat(3, 1fr); margin-top: 48px; }
  .metrics div { min-width: 0; padding: 0 11px; }
  .metrics div:first-child { padding-left: 0; }
  .metrics strong { font-size: 27px; }
  .metrics span { font-size: 11px; }
  .scroll-cue { display: none; }
  .section h2 { font-size: 40px; }
  .eyebrow, .kicker { font-size: 10px; line-height: 1.6; }
  .principles { grid-template-columns: 1fr; }
  .capability-row,
  .capability-row:nth-child(even) { grid-template-columns: 1fr; min-height: 0; }
  .capability-row:nth-child(even) .capability-image { order: 0; border-left: 0; }
  .capability-image { min-height: 0; aspect-ratio: 16 / 9; border-right: 0; border-bottom: 1px solid #cad5dd; }
  .capability-copy { padding: 34px 26px 38px; }
  .capability-copy h3 { font-size: 26px; }
  .capability-tags { margin-top: 19px; }
  .unit-card { grid-template-columns: 34px 1fr 28px; gap: 15px; padding: 28px 0; }
  .unit-card > p { grid-column: 2 / -1; }
  .unit-title h3 { font-size: 29px; }
  .unit-brand { min-height: 56px; }
  .unit-logo-shell { width: 160px; height: 56px; flex-basis: 160px; }
  .unit-logo-shell--westnet,
  .unit-logo-shell--visionfor,
  .unit-logo-shell--plusground,
  .unit-logo-shell--nexmetra { width: 220px; flex-basis: 220px; gap: 10px; }
  .unit-logo.unit-logo--westnet-symbol { width: 44px; height: 44px; flex-basis: 44px; }
  .unit-logo.unit-logo--westnet-wordmark { width: 150px; max-height: 40px; }
  .unit-logo.unit-logo--visionfor-symbol { height: 46px; }
  .unit-logo.unit-logo--visionfor-wordmark { width: 145px; max-height: 34px; }
  .unit-logo.unit-logo--plusground-symbol { height: 46px; }
  .unit-logo.unit-logo--plusground-wordmark { width: 158px; max-height: 30px; }
  .unit-logo-shell--gridnode { width: 220px; flex-basis: 220px; gap: 10px; }
  .unit-logo.unit-logo--gridnode-symbol { width: 44px; height: 44px; flex-basis: 44px; }
  .unit-logo.unit-logo--gridnode-wordmark { width: 155px; max-height: 36px; }
  .unit-logo.unit-logo--nexmetra-symbol { height: 44px; }
  .unit-logo.unit-logo--nexmetra-wordmark { width: 145px; max-height: 32px; }
  .unit-logo-shell--napear { width: 190px; flex-basis: 190px; }
  .unit-logo.unit-logo--napear { width: 180px; max-height: 54px; }
  .infrastructure { min-height: 760px; }
  .infra-stats { grid-template-columns: 1fr; }
  .infra-stats span { display: grid; grid-template-columns: 90px 1fr; align-items: center; }
  .infra-stats strong { margin: 0; }
  .project-grid { grid-template-columns: 1fr; gap: 44px; }
  .project-grid > .kicker { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-video { display: none; }
  .js .hero-animate,
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .data-journey { display: none; }
}
