@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap");

:root {
  --navy-950: #06122f;
  --navy-900: #06163d;
  --navy-800: #0b2858;
  --navy-700: #123c75;
  --blue-600: #087ff0;
  --blue-500: #149cff;
  --blue-100: #dff1ff;
  --blue-50: #f1f8ff;
  --ink: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --surface: #ffffff;
  --background: #f8fafc;
  --success: #059669;
  --warning: #d97706;
  --danger: #dc2626;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 16px;
  --shadow-md: 0 8px 24px rgba(15, 45, 87, 0.12);
  --container: 1240px;
  --header-height: 84px;
  --z-dropdown: 30;
  --z-anchor: 35;
  --z-sticky: 40;
  --z-drawer: 50;
  --z-skip: 60;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family: "Hanken Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { touch-action: manipulation; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -0.025em; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 5vw, 4.8rem); margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 3.4vw, 3.4rem); margin-bottom: 18px; }
h3 { font-size: 1.15rem; margin-bottom: 10px; letter-spacing: -0.02em; }
p { max-width: 72ch; color: var(--slate-600); text-wrap: pretty; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(76px, 8vw, 112px) 0; }
.section-sm { padding: clamp(52px, 6vw, 72px) 0; }
.surface-muted { background: var(--slate-100); }
.surface-blue { background: var(--blue-50); }
.surface-dark { color: #fff; background: var(--navy-900); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: var(--z-skip);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--navy-950);
  transition: top 180ms ease-out;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 3px; }

.eyebrow {
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-600);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.eyebrow.light { color: #7dd3fc; }
.lead { max-width: 720px; font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.65; }
.text-light { color: #c8ddf4; }
.text-muted { color: var(--slate-500); }
.kicker { color: var(--slate-600); font-size: 0.92rem; font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(203, 213, 225, 0.75);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 216px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  position: relative;
  width: 204px;
  height: 72px;
  overflow: hidden;
  display: block;
  flex: 0 0 auto;
}
.brand img {
  width: 220px;
  height: 124px;
  max-width: none;
  transform: translate(-8px, -27px);
}

.desktop-nav { display: flex; justify-content: center; gap: 34px; align-self: stretch; }
.nav-group { position: relative; display: flex; align-items: stretch; }
.nav-link {
  min-width: 44px;
  min-height: 44px;
  padding: 0 6px;
  border: 0;
  border-bottom: 3px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--slate-700);
  background: transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease-out, border-color 180ms ease-out;
}
.nav-link:hover, .nav-link[aria-expanded="true"], .nav-link.active { color: var(--blue-600); border-bottom-color: var(--blue-600); }
.nav-chevron { width: 16px; height: 16px; transition: transform 180ms ease-out; }
.nav-link[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  width: min(680px, calc(100vw - 40px));
  padding: 18px;
  z-index: var(--z-dropdown);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 45, 87, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease-out, transform 180ms ease-out, visibility 180ms;
}
.nav-group.open .mega-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-link {
  min-height: 64px;
  padding: 12px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  transition: background 180ms ease-out;
}
.mega-link:hover { background: var(--blue-50); }
.mega-link strong { display: block; color: var(--ink); font-size: 0.92rem; }
.mega-link span { display: block; color: var(--slate-500); font-size: 0.76rem; line-height: 1.35; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.mobile-menu-button {
  min-width: 44px;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  color: var(--slate-700);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}
.mobile-menu-button { display: none; padding: 10px; }
.mobile-menu-button svg { width: 22px; height: 22px; }

.button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: var(--blue-600);
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease-out, border-color 180ms ease-out, color 180ms ease-out, transform 180ms ease-out;
}
.button:hover { background: #066ed2; }
.button:active { transform: translateY(1px); }
.button.secondary { color: var(--ink); background: #fff; border-color: var(--slate-300); box-shadow: none; }
.button.secondary:hover { color: var(--blue-600); border-color: var(--blue-600); }
.button.dark { background: var(--navy-950); }
.button .icon { width: 19px; height: 19px; }

.mobile-panel {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: var(--z-drawer);
  padding: 18px 20px 40px;
  overflow-y: auto;
  background: #fff;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), visibility 240ms;
}
body.nav-open .mobile-panel { visibility: visible; pointer-events: auto; transform: translateX(0); }
.mobile-nav-link { min-height: 52px; border-bottom: 1px solid var(--slate-200); display: flex; align-items: center; justify-content: space-between; color: var(--ink); font-weight: 800; text-decoration: none; }
.mobile-subnav { padding: 6px 0 18px 16px; display: grid; gap: 6px; }
.mobile-subnav a { padding: 9px 0; color: var(--slate-600); font-size: 0.9rem; text-decoration: none; }
.mobile-actions { margin-top: 22px; display: grid; gap: 10px; }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
}
.dark-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(125, 211, 252, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(125, 211, 252, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 13, 35, 0.99) 0%, rgba(4, 18, 46, 0.91) 34%, rgba(4, 19, 48, 0.35) 65%, rgba(3, 13, 35, 0.18) 100%);
}
.hero-rays { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; opacity: 0.5; }
.hero-rays::before {
  content: "";
  position: absolute;
  top: -45%;
  left: 15%;
  width: 58%;
  height: 190%;
  background: linear-gradient(112deg, transparent 35%, rgba(65, 176, 255, 0.17) 49%, rgba(65, 176, 255, 0.03) 60%, transparent 70%);
  filter: blur(12px);
  transform: translate3d(-8%, 0, 0) rotate(-4deg);
  animation: hero-ray-drift 8s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 42px; align-items: center; }
.hero-copy { padding: 96px 0 122px; }
.hero-copy h1 { max-width: 660px; font-size: clamp(3.1rem, 5vw, 4.8rem); }
.hero-copy .lead { max-width: 610px; color: #d4e3f3; }
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-visual { position: relative; min-height: 560px; }
.ops-card {
  position: absolute;
  right: -18px;
  width: 220px;
  padding: 16px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 12px;
  background: rgba(5, 23, 58, 0.82);
  backdrop-filter: blur(16px);
}
.ops-card.top { top: 102px; }
.ops-card.bottom { bottom: 92px; }
.ops-card-title { margin-bottom: 12px; color: #b9d8f5; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; }
.ops-line { padding: 7px 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; gap: 10px; color: #d8e7f6; font-size: 0.72rem; }
.status { display: inline-flex; align-items: center; gap: 6px; color: #95e6bd; }
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #34d399; }

@keyframes hero-ray-drift {
  from { transform: translate3d(-8%, 0, 0) rotate(-4deg); opacity: 0.48; }
  to { transform: translate3d(18%, 0, 0) rotate(2deg); opacity: 0.9; }
}

.metrics-strip { position: relative; z-index: 2; margin-top: -44px; }
.metrics-grid { padding: 24px; border-radius: var(--radius-md); display: grid; grid-template-columns: repeat(4, 1fr); color: #fff; background: linear-gradient(100deg, #071c47, #0b3670); box-shadow: var(--shadow-md); }
.metric-item { padding: 8px 24px; border-left: 1px solid rgba(255,255,255,0.18); display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; }
.metric-item:first-child { border-left: 0; }
.metric-item .icon { width: 38px; height: 38px; color: #48b4ff; }
.metric-number { display: block; font-size: 1.85rem; font-weight: 800; line-height: 1; }
.metric-label { color: #bfd4ea; font-size: 0.78rem; }

.section-heading { margin-bottom: 42px; display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.section-heading > div { max-width: 760px; }
.section-heading p { max-width: 520px; margin-bottom: 0; }
.section-heading.center { display: block; text-align: center; }
.section-heading.center > div, .section-heading.center p { margin-inline: auto; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card {
  min-width: 0;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: #fff;
  transition: border-color 180ms ease-out, background 180ms ease-out, transform 180ms ease-out;
}
.card:hover { border-color: #8bc8f7; background: #fbfdff; transform: translateY(-2px); }
.service-card { min-height: 244px; padding: 26px; display: flex; flex-direction: column; }
.icon-box { width: 48px; height: 48px; margin-bottom: 22px; border-radius: 12px; display: grid; place-items: center; color: var(--blue-600); background: var(--blue-50); }
.icon-box .icon { width: 25px; height: 25px; }
.service-card p { flex: 1; font-size: 0.9rem; }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; color: var(--blue-600); font-size: 0.86rem; font-weight: 800; text-decoration: none; }
.text-link .icon { width: 16px; height: 16px; }

[data-spotlight-card] { --mouse-x: 50%; --mouse-y: 50%; --spotlight-color: rgba(20, 156, 255, 0.18); position: relative; isolation: isolate; overflow: hidden; }
[data-spotlight-card]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle 240px at var(--mouse-x) var(--mouse-y), var(--spotlight-color), transparent 72%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
[data-spotlight-card]:hover::before, [data-spotlight-card]:focus-within::before { opacity: 1; }
[data-spotlight-card] > * { position: relative; z-index: 1; }

.environment-section { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, #04102c, #082554 58%, #06366b); }
.environment-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 75% 20%, rgba(20, 156, 255, 0.2), transparent 32%); }
.environment-section .container { position: relative; }
.environment-section .section-heading p { color: #c6d8ec; }
.environment-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 22px; perspective: 1200px; }
.environment-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-scale: 1;
  position: relative;
  min-height: 470px;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #06163d;
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(var(--tilt-scale));
  transform-style: preserve-3d;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
.environment-card-infrastructure { min-height: 420px; margin-top: 50px; }
.environment-card img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; transition: filter 260ms ease-out, transform 500ms cubic-bezier(0.22, 1, 0.36, 1); }
.environment-card-infrastructure img { object-position: 66% center; }
.environment-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 34%, rgba(3, 13, 35, 0.92) 100%); pointer-events: none; }
.environment-card[data-spotlight-card]::before { z-index: 2; --spotlight-color: rgba(80, 188, 255, 0.2); }
.environment-card:hover img { filter: saturate(1.08) contrast(1.03); transform: scale(1.025); }
.environment-card figcaption { position: absolute; left: 28px; right: 28px; bottom: 26px; z-index: 3; display: grid; gap: 4px; transform: translateZ(34px); }
.environment-card figcaption strong { font-size: clamp(1.35rem, 2vw, 2rem); letter-spacing: -0.02em; }
.environment-card figcaption > span:last-child { max-width: 46ch; color: #d7e6f4; font-size: 0.9rem; }
.environment-tag { color: #73c9ff; font-size: 0.78rem; font-weight: 800; }
.environment-outcomes { margin-top: 28px; padding: 20px 24px; border-top: 1px solid rgba(125, 211, 252, 0.24); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px 28px; color: #d7e8f6; }
.environment-outcomes span { display: inline-flex; align-items: center; gap: 10px; font-size: 0.86rem; font-weight: 700; }
.environment-outcomes span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #22a7ff; box-shadow: 0 0 0 5px rgba(34, 167, 255, 0.12); }

@media (prefers-reduced-motion: no-preference) {
  [data-hero-sequence] > * { animation: hero-content-in 680ms cubic-bezier(0.16, 1, 0.3, 1) both; }
  [data-hero-sequence] > :nth-child(2) { animation-delay: 80ms; }
  [data-hero-sequence] > :nth-child(3) { animation-delay: 150ms; }
  [data-hero-sequence] > :nth-child(4) { animation-delay: 220ms; }
}
@keyframes hero-content-in {
  from { opacity: 0; transform: translate3d(0, 20px, 0); filter: blur(6px); }
  to { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}

.path-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.path-card { position: relative; min-height: 300px; padding: 34px; overflow: hidden; color: #fff; background: var(--navy-900); }
.path-card:nth-child(2) { background: linear-gradient(135deg, #0b2b5f, #075b9d); }
.path-card::after { content: ""; position: absolute; right: -80px; bottom: -90px; width: 260px; height: 260px; border: 1px solid rgba(125,211,252,0.32); border-radius: 50%; box-shadow: 0 0 0 40px rgba(125,211,252,0.05), 0 0 0 80px rgba(125,211,252,0.035); }
.path-card p { max-width: 540px; color: #c6d9ee; }
.path-list { margin: 26px 0 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.path-list li { display: flex; align-items: center; gap: 10px; color: #e9f4ff; font-size: 0.9rem; }
.path-list .icon { width: 18px; height: 18px; color: #62c2ff; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.process-step { position: relative; padding: 26px 20px; }
.process-step:not(:last-child)::after { content: ""; position: absolute; top: 48px; left: calc(100% - 6px); width: 30px; border-top: 1px dashed #8ec8f3; }
.step-number { width: 38px; height: 38px; margin-bottom: 18px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--blue-600); font-size: 0.82rem; font-weight: 800; }
.process-step p { margin-bottom: 0; font-size: 0.84rem; }

.proof-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 26px; align-items: stretch; }
.proof-panel { position: relative; padding: 44px; border-radius: var(--radius-lg); overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); }
.proof-panel p { color: #c6d8ec; }
.mini-metrics { margin-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mini-metric { padding: 16px; border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; background: rgba(255,255,255,0.05); }
.mini-metric strong { display: block; color: #5fc2ff; font-size: 1.45rem; }
.case-list { display: grid; gap: 14px; }
.case-card { padding: 22px; display: grid; grid-template-columns: 42px 1fr; gap: 16px; align-items: start; }
.case-card .icon { width: 30px; height: 30px; color: var(--blue-600); }
.case-card p { margin-bottom: 0; font-size: 0.84rem; }

.page-hero { position: relative; padding: 88px 0 76px; overflow: hidden; }
.page-hero.dark { color: #fff; background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); }
.page-hero.dark::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(125,211,252,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(125,211,252,0.06) 1px, transparent 1px); background-size: 44px 44px; }
.page-hero .container { position: relative; }
.page-hero h1 { max-width: 940px; }
.breadcrumb { margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 9px; color: var(--slate-500); font-size: 0.82rem; font-weight: 700; }
.page-hero.dark .breadcrumb, .page-hero.dark .lead { color: #c6d8ec; }

.page-hero.visual-hero {
  min-height: 560px;
  padding: 0;
  display: grid;
  align-items: center;
  color: #fff;
  background: var(--navy-950);
}
.page-hero.visual-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(rgba(125,211,252,0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(125,211,252,0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,0.76) 52%, transparent 86%);
}
.page-hero.visual-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(3, 13, 35, 0.98) 0%, rgba(4, 18, 46, 0.88) 42%, rgba(4, 19, 48, 0.38) 72%, rgba(3, 13, 35, 0.22) 100%);
}
.page-hero.visual-hero .container { z-index: 2; }
.page-hero.visual-hero .breadcrumb { color: #b8d0e7; }
.page-hero.visual-hero .lead { color: #d4e3f3; }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.solutions-hero .page-hero-media img, .about-hero .page-hero-media img { object-position: 70% center; }
.hero-page-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.62fr); gap: 48px; align-items: center; }
.page-hero-copy { padding: 112px 0; max-width: 820px; }
.page-hero-card {
  padding: 24px;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(5, 23, 58, 0.9), rgba(5, 18, 48, 0.96));
}
.page-hero-card-title { margin-bottom: 18px; color: #b9d8f5; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.page-hero-card h2, .page-hero-card h3 { margin-bottom: 12px; font-size: clamp(1.35rem, 2vw, 1.85rem); }
.page-hero-card p { color: #c7daee; font-size: 0.9rem; }
.page-hero-list { margin: 22px 0 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.page-hero-list li {
  min-height: 42px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #e7f3ff;
  font-size: 0.86rem;
  font-weight: 700;
}
.page-hero-list span:last-child { color: #7dd3fc; font-size: 0.78rem; }
.page-hero-kpis { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.page-hero-kpi { padding: 14px; border: 1px solid rgba(125,211,252,0.16); border-radius: 12px; background: rgba(255,255,255,0.045); }
.page-hero-kpi strong { display: block; color: #71c8ff; font-size: 1.25rem; line-height: 1; }
.page-hero-kpi span { color: #c6d8ec; font-size: 0.72rem; }

.anchor-nav { position: sticky; top: var(--header-height); z-index: var(--z-anchor); border-bottom: 1px solid var(--slate-200); background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); }
.anchor-list { min-height: 58px; display: flex; align-items: center; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.anchor-list::-webkit-scrollbar { display: none; }
.anchor-list a { min-height: 40px; padding: 0 14px; border-radius: 8px; display: inline-flex; align-items: center; color: var(--slate-600); font-size: 0.8rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.anchor-list a:hover { color: var(--blue-600); background: var(--blue-50); }

.detail-section { scroll-margin-top: 150px; }
.detail-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 72px; align-items: start; }
.detail-sticky { position: sticky; top: 158px; }
.scope-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.scope-card { min-height: 150px; padding: 22px; }
.scope-card p { margin-bottom: 0; font-size: 0.86rem; }
.bullet-list { margin: 22px 0 0; padding: 0; display: grid; gap: 11px; list-style: none; }
.bullet-list li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; color: var(--slate-600); font-size: 0.9rem; }
.bullet-list .icon { width: 18px; height: 18px; color: var(--success); }

.assurance-console { padding: 24px; border-radius: var(--radius-lg); color: #fff; background: var(--navy-900); }
.console-header { margin-bottom: 20px; display: flex; justify-content: space-between; color: #a9cbe9; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; }
.console-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 14px; }
.console-box { padding: 18px; border: 1px solid rgba(125,211,252,0.2); border-radius: 12px; background: rgba(255,255,255,0.035); }
.console-score { width: 86px; height: 86px; margin: 12px auto; border: 10px solid #1e5f9f; border-top-color: #34d399; border-right-color: #34d399; border-radius: 50%; display: grid; place-items: center; font-size: 1.6rem; font-weight: 800; }
.console-row { padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; color: #d7e7f5; font-size: 0.75rem; }
.console-tag { padding: 1px 8px; border-radius: 999px; color: #042341; background: #6ee7b7; font-size: 0.68rem; font-weight: 800; }
.console-tag.warning { background: #fbbf24; }

.coverage-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 30px; align-items: stretch; }
.coverage-map { min-height: 560px; padding: 28px; border-radius: var(--radius-lg); position: relative; overflow: hidden; color: #fff; background: var(--navy-900); }
.coverage-map svg { width: 100%; height: 470px; }
.coverage-sidebar { padding: 38px; }
.coverage-stats { margin: 30px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.coverage-stat { padding: 15px 10px; border: 1px solid var(--slate-200); border-radius: 10px; text-align: center; }
.coverage-stat strong { display: block; color: var(--blue-600); font-size: 1.5rem; }
.region-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.region-card { padding: 22px; }
.region-card p { margin-bottom: 0; font-size: 0.84rem; }

.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 54px; align-items: start; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.value-card { padding: 22px; }
.contact-panel { padding: 34px; }
.contact-panel[data-spotlight-card] { border-color: #c8dff5; background: linear-gradient(180deg, #ffffff, #f7fbff); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--slate-700); font-size: 0.78rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: #fff;
}
.field input::placeholder, .field textarea::placeholder { color: #52627a; opacity: 1; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #94a3b8; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-600); outline: 3px solid rgba(8,127,240,0.16); }
.field-help { color: var(--slate-500); font-size: 0.72rem; }
.check-field { min-height: 44px; grid-column: 1 / -1; display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; color: var(--slate-600); font-size: 0.8rem; }
.check-field input { width: 18px; height: 18px; margin-top: 2px; }
.form-status { min-height: 24px; margin: 12px 0 0; font-size: 0.8rem; font-weight: 700; }
.form-status.error { color: var(--danger); }
.form-status.success { color: var(--success); }

.cta-band { padding: 44px 0; color: #fff; background: linear-gradient(110deg, var(--navy-900), var(--navy-700)); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-inner h2 { margin-bottom: 8px; font-size: clamp(1.75rem, 3vw, 2.7rem); }
.cta-inner p { margin-bottom: 0; color: #c9dbed; }

.site-footer { padding: 54px 0 24px; border-top: 1px solid var(--slate-200); background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr; gap: 42px; }
.footer-brand p { max-width: 350px; font-size: 0.84rem; }
.footer-title { margin-bottom: 14px; color: var(--ink); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: var(--slate-600); font-size: 0.82rem; text-decoration: none; }
.footer-links a:hover { color: var(--blue-600); }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--slate-200); display: flex; justify-content: space-between; gap: 20px; color: var(--slate-500); font-size: 0.75rem; }

.reveal { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 216px 1fr auto; }
  .desktop-nav { gap: 18px; }
  .header-actions .button { display: none; }
  .detail-grid, .proof-grid, .coverage-layout, .about-grid { grid-template-columns: 1fr; }
  .hero-page-grid { grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr); gap: 24px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr); gap: 18px; }
  .hero-visual { min-height: 520px; }
  .ops-card { right: 0; }
  .environment-grid { grid-template-columns: 1fr; }
  .environment-card-infrastructure { margin-top: 0; }
  .detail-sticky { position: static; }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --header-height: 74px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .header-inner { min-height: var(--header-height); grid-template-columns: 1fr auto; }
  .brand { width: 170px; height: 60px; }
  .brand img { width: 184px; height: 104px; transform: translate(-7px, -22px); }
  .desktop-nav { display: none; }
  .mobile-menu-button { display: inline-grid; place-items: center; }
  .hero { min-height: 660px; align-items: end; }
  .hero-media img { object-position: 68% center; }
  .hero-home::after { background: linear-gradient(90deg, rgba(3, 13, 35, 0.99) 0%, rgba(4, 18, 46, 0.96) 44%, rgba(4, 19, 48, 0.58) 100%); }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-copy { padding: 78px 0 94px; }
  .hero-copy h1 { max-width: 620px; }
  .hero-visual { display: none; }
  .page-hero.visual-hero { min-height: auto; align-items: stretch; }
  .page-hero.visual-hero::after { background: linear-gradient(90deg, rgba(3, 13, 35, 0.99) 0%, rgba(4, 18, 46, 0.96) 48%, rgba(4, 19, 48, 0.6) 100%); }
  .page-hero-media img { object-position: 68% center; }
  .solutions-hero .page-hero-media img, .about-hero .page-hero-media img { object-position: 76% center; }
  .hero-page-grid { grid-template-columns: 1fr; gap: 0; }
  .page-hero-copy { padding: 78px 0 24px; }
  .page-hero-card { max-width: 560px; margin-bottom: 76px; }
  .metrics-strip { margin-top: 0; background: var(--navy-900); }
  .metrics-grid { border: 0; border-radius: 0; grid-template-columns: repeat(2, 1fr); box-shadow: none; }
  .metric-item { border-left: 0; border-top: 1px solid rgba(255,255,255,0.14); }
  .metric-item:nth-child(-n+2) { border-top: 0; }
  .environment-card { min-height: 380px; }
  .environment-outcomes { justify-content: flex-start; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .path-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { display: grid; grid-template-columns: 48px 1fr; gap: 14px; }
  .process-step:not(:last-child)::after { top: calc(100% - 8px); left: 38px; width: 0; height: 28px; border-top: 0; border-left: 1px dashed #8ec8f3; }
  .mini-metrics { grid-template-columns: 1fr; }
  .scope-grid, .values-grid { grid-template-columns: 1fr; }
  .console-grid { grid-template-columns: 1fr; }
  .coverage-map { min-height: 480px; }
  .coverage-map svg { height: 390px; }
  .about-grid { gap: 34px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2.35rem, 12vw, 2.65rem); }
  h2 { font-size: 2rem; }
  .hero { min-height: 620px; }
  .hero-media img { object-position: 72% center; }
  .hero-copy { padding: 64px 0 78px; }
  .page-hero-copy { padding: 64px 0 22px; }
  .page-hero-card { padding: 18px; margin-bottom: 64px; }
  .page-hero-list li { display: grid; grid-template-columns: 1fr auto; }
  .page-hero-kpis { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; padding: 14px; }
  .metric-item, .metric-item:nth-child(-n+2) { border-top: 1px solid rgba(255,255,255,0.14); }
  .metric-item:first-child { border-top: 0; }
  .environment-card { min-height: 320px; }
  .environment-card figcaption { left: 20px; right: 20px; bottom: 20px; }
  .environment-outcomes { display: grid; grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 18px; }
  .card-grid { grid-template-columns: 1fr; }
  .path-card { padding: 26px; }
  .page-hero { padding: 64px 0 52px; }
  .anchor-nav { top: var(--header-height); }
  .region-grid { grid-template-columns: 1fr; }
  .coverage-stats { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full, .check-field { grid-column: 1; }
  .contact-panel { padding: 24px; }
  .cta-inner { display: block; }
  .cta-inner .button { margin-top: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-rays { display: none; }
  .environment-card { transform: none !important; }
}
