:root {
  --navy-950: #041426;
  --navy-900: #071b33;
  --navy-800: #0c2b4b;
  --teal: #32b9bd;
  --cyan-rgb: 50, 185, 189;
  --teal-dark: #168f98;
  --teal-soft: #dff7f6;
  --ink: #0b2139;
  --slate: #526579;
  --mist: #eef4f6;
  --white: #fff;
  --line: rgba(11, 33, 57, .12);
  --line-strong: rgba(11, 33, 57, .18);
  --shadow-soft: 0 18px 45px rgba(4, 20, 38, .08);
  --shadow-lift: 0 26px 60px rgba(4, 20, 38, .16);
  --display: "Space Grotesk", sans-serif;
  --body: "Inter", sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; transition: color .3s ease-in-out; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

:focus-visible {
  outline: 3px solid rgba(50,185,189,.45);
  outline-offset: 4px;
}

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

.section { padding: clamp(84px, 9vw, 128px) 0; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  background: var(--white);
  padding: 10px 16px;
}

.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 42px);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  transition: all .3s ease-in-out;
}

.site-header.is-scrolled {
  height: 78px;
  box-shadow: 0 8px 30px rgba(4, 20, 38, .07);
}

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

.brand img {
  width: clamp(198px, 22vw, 265px);
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .3s ease-in-out;
}

.site-nav > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active { color: var(--teal-dark); }
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.language-switcher {
  position: relative;
  display: grid;
  place-items: center;
}

.language {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--navy-900);
  border: 1px solid rgba(9,13,22,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.82);
  cursor: pointer;
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  transition: all .3s ease-in-out;
}

.language:hover,
.language-switcher:hover .language,
.language-switcher:focus-within .language {
  color: var(--white);
  border-color: rgba(0,180,216,.42);
  background: var(--navy-900);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, .1);
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 112px;
  padding: 8px;
  border: 1px solid rgba(226,232,240,.8);
  border-radius: 12px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 40px rgba(9, 13, 22, .12);
  backdrop-filter: blur(8px);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: all .3s ease;
}

.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu,
.language-switcher.is-open .language-menu {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.language-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 8px;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.language-menu a:hover,
.language-menu a.is-current {
  color: var(--white);
  background: linear-gradient(135deg, #00b4d8, var(--teal-dark));
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  margin-top: 86px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.hero-media,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("../img/voltarix-hero.png") center / cover no-repeat;
  animation: heroScale 14s var(--ease) both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 20, 38, .98) 0%, rgba(4, 20, 38, .84) 45%, rgba(4, 20, 38, .18) 78%),
    linear-gradient(0deg, rgba(4, 20, 38, .55), transparent 55%);
}

.hero-grid {
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: calc(100% - 64px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 16px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--teal);
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark { color: var(--teal-dark); }

.hero h1,
.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.25rem, 6.4vw, 6.8rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: .98;
}

.hero-copy {
  max-width: 650px;
  margin: 32px 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

.button:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(4, 20, 38, .18); }
.button-primary { color: var(--navy-950); background: var(--teal); }
.button-primary:hover { background: var(--teal-dark); color: var(--white); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.35); }
.button-ghost:hover { border-color: var(--teal); color: var(--teal); }
.button-dark { color: var(--white); background: var(--navy-900); }
.button-dark:hover { background: var(--navy-800); }

.hero-rail {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  color: rgba(255,255,255,.58);
  font-family: var(--display);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.statement { background: var(--mist); }

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.3rem, 4.5vw, 4.7rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
}

.lead {
  margin: 0;
  color: var(--slate);
  font-size: 1.08rem;
  line-height: 1.8;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 76px);
}

.services {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #0b0f19;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .46;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000, transparent 72%);
}

.services .container {
  position: relative;
  z-index: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.service-card {
  --spot-x: 50%;
  --spot-y: 20%;
  position: relative;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  isolation: isolate;
  background: #0e1420;
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
  transform: translateZ(0);
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(var(--cyan-rgb), .16), transparent 26%),
    rgba(9,13,22,.48);
  opacity: 1;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

.service-card-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0b0f19;
}

.service-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,13,22,.18), rgba(9,13,22,.72));
  opacity: 1;
  transition: opacity .4s cubic-bezier(.16, 1, .3, 1);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.08);
  transform: scale(1.02);
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

.service-card:hover,
.service-card:focus-visible {
  z-index: 1;
  border-color: rgba(50,185,189,.5);
  box-shadow: 0 34px 80px rgba(0,0,0,.34), 0 0 22px rgba(var(--cyan-rgb), .12);
}

.service-card:hover::before,
.service-card:focus-visible::before {
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(var(--cyan-rgb), .2), transparent 28%),
    rgba(9,13,22,.34);
}

.service-card:hover .service-card-image img,
.service-card:focus-visible .service-card-image img {
  transform: scale(1.05);
  filter: saturate(1.06) contrast(1.1);
}

.service-card:hover .service-card-image::after,
.service-card:focus-visible .service-card-image::after { opacity: .72; }

.service-card-body {
  position: relative;
  z-index: 4;
  display: grid;
  min-height: inherit;
  grid-template-rows: auto minmax(72px, auto) minmax(112px, 1fr) auto auto;
  padding: 30px;
  color: var(--white);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.service-index {
  display: inline-grid;
  min-width: 48px;
  height: 48px;
  place-items: center;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  background: var(--teal);
  border-radius: 6px;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

.service-icon,
.service-glyph {
  color: rgba(255,255,255,.76);
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

.service-card h3 {
  max-width: 420px;
  align-self: end;
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(1.38rem, 1.75vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

.service-card p {
  margin: 0;
  max-width: 520px;
  color: rgba(255,255,255,.74);
  font-size: .94rem;
  line-height: 1.68;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

.service-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  opacity: .86;
  transform: translateY(10px);
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

.service-signals li {
  padding: 8px 10px;
  border: 1px solid rgba(var(--cyan-rgb), .42);
  border-radius: 6px;
  color: rgba(255,255,255,.88);
  background: rgba(14,20,32,.62);
  box-shadow: none;
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.text-link {
  position: relative;
  display: inline-flex;
  width: max-content;
  min-height: 42px;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 0 14px;
  overflow: hidden;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--teal);
  border-radius: 6px;
  box-shadow: 0 0 0 rgba(var(--cyan-rgb), 0);
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

.text-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.2);
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.text-link b {
  position: relative;
  font-size: 1rem;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.service-card:hover .service-index,
.service-card:focus-visible .service-index {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 0 12px rgba(var(--cyan-rgb), .5), 0 0 0 1px rgba(50,185,189,.38);
}

.service-card:hover .service-icon,
.service-card:focus-visible .service-icon {
  color: var(--teal);
  transform: translateX(-4px);
}

.service-card:hover p,
.service-card:focus-visible p { color: rgba(255,255,255,.88); }

.service-card:hover .service-signals,
.service-card:focus-visible .service-signals {
  opacity: 1;
  transform: none;
}

.service-card:hover .service-signals li,
.service-card:focus-visible .service-signals li {
  border-color: rgba(var(--cyan-rgb), .58);
  box-shadow: 0 0 12px rgba(var(--cyan-rgb), .14);
}

.service-card:hover .text-link,
.service-card:focus-visible .text-link {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 0 12px rgba(var(--cyan-rgb), .5);
}

.service-card:hover .text-link::before,
.service-card:focus-visible .text-link::before { transform: translateX(0); }

.service-card:hover .text-link b,
.service-card:focus-visible .text-link b { transform: translate(4px, -4px); }

.process {
  position: relative;
  color: var(--white);
  background: #090d16;
}

.section-heading.light .lead { color: rgba(255,255,255,.55); }

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

.process-step {
  min-height: 310px;
  padding: 34px 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.03);
  transition: all .3s ease-in-out;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(50,185,189,.42);
  background: rgba(255,255,255,.06);
}

.process-step > span {
  color: var(--teal);
  font-family: var(--display);
  font-size: .68rem;
  letter-spacing: .12em;
}

.process-step h3 {
  margin: 88px 0 18px;
  font-family: var(--display);
  font-size: 1.3rem;
}

.process-step p { margin: 0; color: rgba(255,255,255,.55); font-size: .92rem; }

.continuity-canvas {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #090d16;
}

.continuity-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  background:
    radial-gradient(ellipse at 70% 18%, rgba(0,180,216,.32) 0%, rgba(0,180,216,.16) 28%, transparent 62%),
    radial-gradient(ellipse at 24% 42%, rgba(0,180,216,.16) 0%, rgba(9,13,22,.22) 40%, transparent 72%),
    radial-gradient(ellipse at 50% 58%, rgba(255,255,255,.84) 0%, rgba(255,255,255,.58) 24%, rgba(255,255,255,.22) 48%, transparent 78%),
    linear-gradient(to bottom, #090d16 0%, #090d16 30%, rgba(0,180,216,.18) 46%, rgba(255,255,255,.5) 58%, #ffffff 66%, rgba(255,255,255,.74) 74%, rgba(0,180,216,.12) 84%, #090d16 100%);
  filter: blur(28px) saturate(1.08);
  transform: scale(1.06);
}

.continuity-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .08;
  background-image:
    linear-gradient(rgba(9,13,22,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9,13,22,.16) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 86%, transparent);
}

.cta {
  position: relative;
  padding: clamp(104px, 10vw, 146px) 0 clamp(150px, 13vw, 210px);
  overflow: visible;
  color: #ffffff;
  background: transparent;
  isolation: isolate;
}

.cta::before {
  content: none;
}

.cta::after {
  content: none;
}

.cta-inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8%;
  bottom: -150%;
  left: -8%;
  height: 260px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255,255,255,.9), rgba(255,255,255,.44) 42%, transparent 72%);
  filter: blur(46px);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.cta .eyebrow.dark { color: #00b4d8; }
.cta h2 {
  max-width: 790px;
  color: #ffffff;
  text-shadow: 0 12px 34px rgba(9,13,22,.55);
}
.cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.78);
  text-shadow: 0 8px 24px rgba(9,13,22,.42);
}
.cta .button { flex: 0 0 auto; }

.page-hero {
  margin-top: 86px;
  padding: clamp(110px, 11vw, 150px) 0 clamp(86px, 9vw, 118px);
  color: #090d16;
  background: #ffffff;
}

.page-hero h1 { max-width: 900px; font-size: clamp(3rem, 6vw, 6rem); }
.page-hero .lead { max-width: 680px; margin-top: 28px; color: rgba(9,13,22,.72); }

.back-link {
  display: inline-block;
  margin-bottom: 50px;
  color: rgba(9,13,22,.72);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .3s ease-in-out;
}

.back-link:hover { color: var(--teal); }

.service-page-shell {
  position: relative;
  margin-top: 86px;
  overflow: hidden;
  padding: clamp(96px, 10vw, 148px) 0;
  color: #090d16;
  background: #ffffff;
}

.service-page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .7;
  background-image:
    linear-gradient(rgba(9,13,22,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9,13,22,.07) 1px, transparent 1px);
  background-size: 45px 45px;
}

.service-page-shell .container {
  position: relative;
  z-index: 1;
}

.service-back {
  margin-bottom: clamp(38px, 5vw, 62px);
}

.service-page-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 32px);
  align-items: stretch;
}

.service-page-hero {
  grid-column: 1 / -1;
  position: relative;
  height: clamp(350px, 38vw, 450px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(9,13,22,.12);
  border-radius: 18px;
  background: rgba(9,13,22,.12);
  box-shadow: 0 20px 40px -15px rgba(9, 13, 22, .12);
  transform: translateZ(0);
}

.service-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(9,13,22,.18)),
    linear-gradient(90deg, rgba(9,13,22,.22), transparent 45%);
}

.service-page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: serviceHeroBreath 9s var(--ease) both;
  will-change: transform;
}

.service-page-vision {
  grid-column: span 5;
  max-width: 100%;
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(9,13,22,.12);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.82) 100%);
  box-shadow: 0 30px 60px -15px rgba(9, 13, 22, .04);
  backdrop-filter: blur(12px);
}

.service-page-copy {
  min-width: 0;
}

.service-page-vision .service-glyph {
  margin-bottom: 24px;
  color: var(--teal);
}

.service-page-vision h1 {
  max-width: 100%;
  overflow-wrap: normal;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4.35rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  word-break: keep-all;
  hyphens: none;
}

.service-page-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(9,13,22,.72);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.8;
}

.service-page-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.service-page-tags li {
  padding: 9px 11px;
  border: 1px solid rgba(203,213,225,.9);
  border-radius: 8px;
  color: #090d16;
  background: rgba(241,245,249,.86);
  font-family: var(--display);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  transition: all .3s ease-in-out;
}

.service-page-tags li:hover,
.service-page-tags li:focus-within {
  color: #ffffff;
  border-color: #00b4d8;
  background: #00b4d8;
  box-shadow: 0 0 0 4px rgba(0, 180, 216, .12);
  transform: translateY(-2px);
}

.service-consultation-cta {
  margin-top: 34px;
  box-shadow: 0 18px 34px -18px rgba(22, 143, 152, .78);
  transform: translateZ(0);
}

.service-consultation-cta span {
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.service-consultation-cta:hover,
.service-consultation-cta:focus-visible {
  box-shadow: 0 22px 46px -18px rgba(22, 143, 152, .82), 0 0 0 5px rgba(0, 180, 216, .12);
}

.service-consultation-cta:hover span,
.service-consultation-cta:focus-visible span {
  transform: translate(5px, -5px);
}

.engineering-matrix {
  grid-column: span 7;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.engineering-matrix article {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(226, 232, 240, .8);
  border-radius: 14px;
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 30px 60px -15px rgba(9, 13, 22, .04);
  backdrop-filter: blur(12px);
  transform: translateZ(0);
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.engineering-matrix article:not(.engineering-value-card):hover,
.engineering-matrix article:not(.engineering-value-card):focus-within {
  border-color: rgba(0, 180, 216, .5);
  box-shadow: 0 34px 70px -18px rgba(9, 13, 22, .09), 0 0 0 1px rgba(0, 180, 216, .18);
  transform: translateY(-8px);
}

.engineering-matrix article > span {
  color: var(--teal);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.engineering-matrix h2 {
  margin: 34px 0 24px;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  font-weight: 700;
  line-height: 1.12;
  word-break: keep-all;
  hyphens: none;
}

.engineering-matrix ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.engineering-matrix li {
  position: relative;
  margin: 14px 0;
  padding-left: 28px;
  color: rgba(9,13,22,.72);
  font-size: .94rem;
  line-height: 1.68;
  transition: transform .3s cubic-bezier(.25, 1, .5, 1), color .3s ease-in-out;
}

.engineering-matrix li::before {
  content: "\2014";
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  color: #00b4d8;
  background: transparent;
  box-shadow: none;
  font-weight: 800;
}

.engineering-matrix article:hover li,
.engineering-matrix article:focus-within li {
  color: rgba(9,13,22,.82);
  transform: translateX(5px);
}

.engineering-matrix article:hover li:nth-child(2),
.engineering-matrix article:focus-within li:nth-child(2) {
  transition-delay: .035s;
}

.engineering-matrix article:hover li:nth-child(3),
.engineering-matrix article:focus-within li:nth-child(3) {
  transition-delay: .07s;
}

.engineering-matrix article:hover li:nth-child(4),
.engineering-matrix article:focus-within li:nth-child(4) {
  transition-delay: .105s;
}

.engineering-value-card {
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #090d16 0%, #090d16 100%) !important;
  border-color: rgba(var(--cyan-rgb), .72) !important;
  box-shadow: 0 34px 70px -20px rgba(9, 13, 22, .38), 0 0 24px rgba(0, 180, 216, .16);
}

.engineering-value-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #00b4d8;
  box-shadow: 0 0 18px rgba(0, 180, 216, .75), 0 0 42px rgba(0, 180, 216, .28);
}

.engineering-value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 180, 216, .18), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,.04), transparent 42%);
}

.engineering-value-card h2 {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.engineering-value-card > span {
  position: relative;
  z-index: 1;
}

.engineering-value-card p {
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  line-height: 1.75;
}

.service-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(56px, 8vw, 108px);
  align-items: start;
}

.service-intro { position: sticky; top: 120px; }
.service-glyph { display: block; margin-bottom: 26px; }
.service-intro h2 { font-size: clamp(2rem, 3.4vw, 3.5rem); }

.service-visual {
  position: relative;
  margin: 38px 0 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 10;
  background: var(--mist);
  box-shadow: var(--shadow-soft);
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 0 0 1px rgba(4,20,38,.08);
  pointer-events: none;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.detail-grid article {
  min-height: 360px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(4, 20, 38, .06);
}

.detail-grid article > span {
  color: var(--teal-dark);
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 800;
}

.detail-grid h3 {
  margin: 48px 0 24px;
  font-family: var(--display);
  font-size: 1.2rem;
}

.detail-grid ul,
.detail-grid ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-grid li {
  position: relative;
  margin: 10px 0;
  padding-left: 18px;
  color: var(--slate);
  font-size: .92rem;
}

.detail-grid li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.value-card { color: var(--white); background: var(--navy-900) !important; }
.value-card p { color: rgba(255,255,255,.68); }

.contact-section {
  --contact-spot-x: 50%;
  --contact-spot-y: 45%;
  position: relative;
  overflow: hidden;
  color: #090d16;
  background:
    radial-gradient(circle 440px at var(--contact-spot-x) var(--contact-spot-y), rgba(0, 180, 216, .05), transparent 62%),
    #ffffff;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .72;
  background-image:
    linear-gradient(rgba(9,13,22,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9,13,22,.12) 1px, transparent 1px);
  background-size: 40px 40px;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(9,13,22,.12);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.86));
  box-shadow: 0 20px 40px -15px rgba(9, 13, 22, .06);
  backdrop-filter: blur(12px);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(9,13,22,.12);
  border-radius: 14px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  box-shadow: 0 20px 40px -15px rgba(9, 13, 22, .06);
}

.field { display: flex; flex-direction: column; gap: 9px; }
.field-wide, .form-notice { grid-column: 1 / -1; }

.field label {
  font-family: var(--display);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(9,13,22,.82);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(9,13,22,.18);
  border-radius: 12px;
  outline: 0;
  background: #ffffff;
  padding: 15px 16px;
  color: #090d16;
  transition: all .3s ease-in-out;
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(9,13,22,.46); }

.field input,
.field select { height: 54px; }
.field textarea { resize: vertical; min-height: 160px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #00b4d8;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 180, 216, .12);
}

.contact-form .button { justify-self: start; }

.contact-form .button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  box-shadow: 0 18px 34px -18px rgba(22, 143, 152, .78);
}

.contact-form .button-primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy-900) 100%);
  box-shadow: 0 24px 44px -20px rgba(7, 27, 51, .58);
}

.contact-form .button-primary span {
  transition: transform .3s ease-in-out;
}

.contact-form .button-primary:hover span {
  transform: translate(4px, -4px);
}

.hp { position: absolute; left: -9999px; }

.form-notice {
  padding: 15px 18px;
  border-left: 3px solid var(--teal-dark);
  background: var(--teal-soft);
  color: #090d16;
}

.form-notice.error {
  border-color: #bd3f3f;
  background: #fff0f0;
}

.contact-card {
  position: relative;
  align-self: start;
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid rgba(9,13,22,.12);
  border-radius: 14px;
  color: #090d16;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
  box-shadow: 0 20px 40px -15px rgba(9, 13, 22, .06);
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -76px;
  width: 300px;
  height: 300px;
  opacity: .055;
  pointer-events: none;
  background:
    linear-gradient(rgba(9,13,22,.72) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9,13,22,.72) 1px, transparent 1px),
    radial-gradient(circle at center, transparent 35%, rgba(9,13,22,.92) 36%, rgba(9,13,22,.92) 37%, transparent 38%);
  background-size: 26px 26px, 26px 26px, 100% 100%;
  transform: rotate(-10deg);
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,180,216,.2), transparent 38%),
    linear-gradient(180deg, rgba(0,180,216,.06), transparent 32%);
  opacity: .72;
}

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

.contact-card h2 { margin-bottom: 42px; font-size: 2rem; letter-spacing: .1em; }
.contact-card a,
.contact-card > p:not(.eyebrow) {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  color: rgba(9,13,22,.82);
}

.contact-card a span,
.contact-card > p:not(.eyebrow) span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(0,180,216,.2);
  border-radius: 10px;
  color: var(--teal-dark);
  background: rgba(0, 180, 216, .06);
  font-size: .86rem;
  transition: all .3s ease-in-out;
}

.contact-card a:hover { color: var(--teal); }
.contact-card a:hover span {
  color: #ffffff;
  border-color: #00b4d8;
  background: #00b4d8;
  box-shadow: 0 0 0 4px rgba(0, 180, 216, .12);
  transform: translateY(-1px) scale(1.04);
  animation: contactIconPulse .9s ease-in-out both;
}

.contact-card-line { height: 1px; margin: 36px 0; background: rgba(9,13,22,.12); }
.contact-card small {
  color: rgba(9,13,22,.62);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@keyframes contactIconPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0, 180, 216, .12); }
  50% { box-shadow: 0 0 0 7px rgba(0, 180, 216, .08); }
}

.site-footer {
  position: relative;
  isolation: isolate;
  padding: clamp(64px, 8vw, 104px) 0 30px;
  margin-top: 0;
  overflow: hidden;
  color: rgba(255,255,255,.55);
  background:
    linear-gradient(to bottom, #ffffff 0%, rgba(255,255,255,.92) 22%, rgba(0,180,216,.12) 46%, #090d16 78%, #090d16 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  top: -18%;
  right: -28%;
  left: -28%;
  height: 126%;
  opacity: .96;
  background:
    radial-gradient(ellipse at 34% 2%, rgba(255,255,255,.98) 0%, rgba(255,255,255,.78) 34%, rgba(0,180,216,.08) 58%, transparent 80%),
    radial-gradient(ellipse at 72% 54%, rgba(0,180,216,.12), transparent 54%),
    linear-gradient(to bottom, rgba(255,255,255,.92) 0%, rgba(255,255,255,.7) 28%, rgba(0,180,216,.1) 54%, #090d16 100%);
  filter: blur(72px) saturate(1.08);
}

.continuity-canvas .site-footer {
  overflow: visible;
  background: transparent !important;
}

.continuity-canvas .site-footer::before {
  content: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr .7fr 1fr;
  gap: 80px;
  align-items: start;
}

.footer-brand {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: inline-flex;
  width: min(330px, 100%);
}

.footer-logo-asset {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 18px 30px rgba(0, 180, 216, .16)) drop-shadow(0 4px 18px rgba(255,255,255,.08));
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  padding-top: clamp(96px, 10vw, 150px);
}

.footer-label {
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--display);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-grid a { transition: color .3s ease-in-out; }
.footer-grid a:hover { color: var(--teal); }
.footer-grid p { margin: 0; }

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin-top: 56px;
  padding-top: 0;
  font-size: .74rem;
}

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

.reveal.is-visible { opacity: 1; transform: none; }

@keyframes heroScale {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

@keyframes serviceHeroBreath {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

@keyframes ctaAuroraDrift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1.02); }
  to { transform: translate3d(1.5%, 1%, 0) scale(1.06); }
}

@media (max-width: 1050px) {
  .container { width: min(100% - 56px, 1280px); }
  .section { padding: 92px 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6) {
    grid-column: auto;
    min-height: 520px;
  }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .service-page-layout {
    grid-template-columns: 1fr;
  }
  .service-page-hero,
  .service-page-vision,
  .engineering-matrix { grid-column: 1 / -1; }
  .service-page-vision h1 { font-size: clamp(2.4rem, 7vw, 4.6rem); }
  .service-layout { grid-template-columns: 1fr; gap: 60px; }
  .service-intro { position: static; max-width: 720px; }
  .contact-grid { gap: 50px; }
}

@media (max-width: 820px) {
  .site-header { height: 72px; padding: 0 28px; }
  .site-header.is-scrolled { height: 72px; }
  .brand img { width: 205px; }
  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    transition: all .3s ease-in-out;
  }
  .menu-toggle:hover { border-color: var(--teal-dark); }
  .menu-toggle span { width: 18px; height: 2px; background: var(--ink); transition: all .3s ease-in-out; }
  .menu-toggle b { position: absolute; width: 1px; height: 1px; overflow: hidden; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 104px 32px 36px;
    visibility: hidden;
    opacity: 0;
    background: var(--white);
    overflow-y: auto;
    transform: translateY(-18px);
    transition: all .3s ease-in-out;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav > a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 56px;
    border-bottom: 1px solid rgba(7, 27, 51, .1);
    color: var(--navy-900);
    font-size: 1.15rem;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .site-nav > a::after { content: none; }
  .language-switcher {
    width: 100%;
    place-items: start;
    margin-top: 24px;
  }
  .site-nav .language { font-size: .75rem; }
  .language-menu {
    position: static;
    display: flex;
    gap: 8px;
    width: max-content;
    margin-top: 12px;
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .language-menu a { width: 44px; }
  .hero { min-height: 700px; margin-top: 72px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(4,20,38,.96), rgba(4,20,38,.54)); }
  .hero h1 { font-size: clamp(3.1rem, 10vw, 5.2rem); }
  .hero-rail { padding: 0 28px; }
  .hero-rail span:nth-child(2) { display: none; }
  .statement-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-heading { grid-template-columns: 1fr; gap: 32px; margin-bottom: 50px; }
  .cta-inner { align-items: flex-start; flex-direction: column; gap: 38px; }
  .page-hero { margin-top: 72px; padding: 100px 0 90px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 52px; }
  .footer-brand { grid-column: 1 / -1; }
  .engineering-matrix { grid-template-columns: 1fr; }
  .engineering-matrix article { min-height: auto; }
}

@media (max-width: 600px) {
  .container { width: calc(100% - 36px); }
  .section { padding: 72px 0; }
  .hero { min-height: 690px; }
  .hero-content { padding-bottom: 40px; }
  .hero h1 { font-size: 3.3rem; }
  .hero-copy { margin-top: 24px; }
  .hero-actions { width: 100%; flex-direction: column; align-items: stretch; margin-top: 32px; }
  .service-grid,
  .process-grid,
  .detail-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 500px; }
  .service-card-body { padding: 24px; }
  .service-card-image { position: absolute; inset: 0; height: auto; margin: 0; }
  .service-card h3 { font-size: clamp(1.45rem, 7vw, 2rem); }
  .service-signals li { font-size: .58rem; }
  .service-page-shell { margin-top: 72px; padding: 72px 0; }
  .service-page-hero { height: clamp(260px, 64vw, 350px); border-radius: 14px; }
  .service-page-vision { padding: 24px; }
  .service-page-vision h1 { font-size: clamp(2.15rem, 11vw, 3.25rem); }
  .service-page-tags li { font-size: .58rem; }
  .service-consultation-cta { width: 100%; }
  .process-step { min-height: 270px; }
  .process-step h3 { margin-top: 70px; }
  .contact-form { grid-template-columns: 1fr; }
  .field-wide, .form-notice { grid-column: auto; }
  .contact-card { padding: 34px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-brand { grid-column: auto; }
  .footer-grid > div:not(.footer-brand) {
    padding-top: 0;
    color: var(--navy-900);
  }
  .footer-label { color: var(--navy-950); }
  .footer-grid a,
  .footer-grid p { color: var(--navy-900); }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

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