:root {
  --navy: #0b1e3d;
  --navy-2: #0f2f5c;
  --navy-3: #0d3566;
  --teal: #00a8b5;
  --teal-2: #00a8b5;
  --aqua-soft: #e0f7fa;
  --ink: #0b1e3d;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f4f7fb;
  --white: #ffffff;
  --amber: #e5a920;
  --amber-strong: #b7791f;
  --green: #16a34a;
  --green-strong: #15803d;
  --shadow: 0 18px 50px rgba(10, 34, 66, 0.14);
  --radius: 8px;
  --section: clamp(72px, 8vw, 120px);
  font-family: "Inter", "Sarabun", sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", "Sarabun", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  --scroll-progress: 0;
}

[hidden] {
  display: none !important;
}

body.menu-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 96px;
  right: clamp(12px, 1.8vw, 26px);
  bottom: 32px;
  z-index: 44;
  width: 2px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: calc(var(--scroll-progress) * 100%);
  border-radius: inherit;
  background: linear-gradient(180deg, var(--teal), rgba(229, 169, 32, 0.9));
  box-shadow: 0 0 16px rgba(0, 168, 181, 0.34);
  transition: height 0.12s linear;
}

body[data-route="home"] .scroll-progress {
  background: rgba(255, 255, 255, 0.13);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 78px;
  padding: 0 clamp(24px, 4vw, 52px);
  background: linear-gradient(180deg, rgba(6, 23, 45, 0.82), rgba(6, 23, 45, 0.28) 70%, transparent);
  color: var(--white);
  border: 0;
  border-radius: 0;
  backdrop-filter: blur(12px);
  box-shadow: none;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, height 0.25s ease;
}

.site-header.scrolled,
.site-header.light-mode {
  height: 72px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(10, 34, 66, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand img {
  width: auto;
  height: 40px;
  object-fit: contain;
  transition: filter 0.25s ease;
}

.site-header:not(.scrolled):not(.light-mode) .brand img,
.footer-brand img {
  filter: brightness(0) invert(1);
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2px;
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.site-header.scrolled .desktop-nav,
.site-header.light-mode .desktop-nav {
  background: transparent;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: inherit;
  opacity: 1;
  line-height: 20px;
  transition: background 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.desktop-nav a::after {
  display: none;
}

.desktop-nav a.active,
.desktop-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  opacity: 1;
}

.site-header.scrolled .desktop-nav a.active,
.site-header.scrolled .desktop-nav a:hover,
.site-header.light-mode .desktop-nav a.active,
.site-header.light-mode .desktop-nav a:hover {
  background: rgba(0, 168, 181, 0.1);
  color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-toggle,
.menu-toggle,
.menu-close,
.mobile-language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: inherit;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  min-height: 30px;
  padding: 6px 12px;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.site-header:not(.scrolled):not(.light-mode) .language-toggle {
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.8);
}

.site-header:not(.scrolled):not(.light-mode) .language-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.site-header.scrolled .language-toggle,
.site-header.light-mode .language-toggle {
  background: rgba(11, 30, 61, 0.06);
  color: var(--ink);
}

.site-header.scrolled .language-toggle:hover,
.site-header.light-mode .language-toggle:hover {
  background: rgba(0, 168, 181, 0.1);
  color: var(--teal);
}

.language-toggle svg,
.mobile-language svg,
.button svg,
.outline-link svg,
.menu-toggle svg,
.menu-close svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
}

.primary-cta {
  --button-hover: #0096a2;
  --button-shadow: rgba(0, 168, 181, 0.24);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  min-height: 40px;
  padding: 10px 24px;
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(0, 168, 181, 0.18);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button {
  --button-bg: var(--teal);
  --button-hover: #0096a2;
  --button-color: var(--white);
  --button-border: transparent;
  --button-shadow: rgba(0, 168, 181, 0.24);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--button-border);
  border-radius: 6px;
  min-height: 40px;
  padding: 10px 24px;
  background: var(--button-bg);
  color: var(--button-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-cta::after,
.button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.25) 46%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.primary-cta:hover::after,
.button:hover::after {
  transform: translateX(130%);
}

.primary-cta:hover,
.button.solid:hover {
  transform: translateY(-1px);
  background: var(--button-hover);
  box-shadow: 0 12px 28px var(--button-shadow);
}

.primary-cta:focus-visible,
.button:focus-visible,
.outline-link:focus-visible,
.green-outline-link:focus-visible,
.language-toggle:focus-visible,
.mobile-language:focus-visible,
.menu-toggle:focus-visible,
.menu-close:focus-visible,
.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible,
.project-full-card:focus-visible,
.contact-choice-row button:focus-visible,
.project-filters button:focus-visible {
  outline: 3px solid rgba(0, 168, 181, 0.32);
  outline-offset: 3px;
}

.trust-logos a:focus-visible,
.partner-logo-card:focus-visible {
  outline: 3px solid rgba(0, 168, 181, 0.32);
  outline-offset: 3px;
}

.button.ghost {
  --button-bg: transparent;
  --button-hover: rgba(255, 255, 255, 0.1);
  --button-color: var(--white);
  --button-border: rgba(255, 255, 255, 0.3);
  --button-shadow: rgba(0, 0, 0, 0);
}

.button.ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: var(--button-hover);
}

.button.ghost.dark {
  --button-bg: var(--white);
  --button-hover: var(--soft);
  --button-color: var(--ink);
  --button-border: var(--line);
}

.button.solid {
  --button-bg: var(--teal);
  --button-hover: #0096a2;
  --button-shadow: rgba(0, 168, 181, 0.24);
}

.button.green {
  --button-bg: var(--green);
  --button-hover: var(--green-strong);
  --button-shadow: rgba(22, 163, 74, 0.24);
}

.button.amber {
  --button-bg: var(--amber);
  --button-hover: var(--amber-strong);
  --button-shadow: rgba(229, 169, 32, 0.25);
}

.button.small {
  width: max-content;
  min-height: 40px;
  padding: 0 16px;
}

.button.solid.small {
  --button-bg: #00a8b5;
  --button-hover: #0b1e3d;
  --button-color: #ffffff;
  --button-shadow: rgba(11, 30, 61, 0.22);
  border-color: transparent;
}

.button.solid.small:hover {
  border-color: rgba(0, 168, 181, 0.3);
  color: #ffffff;
}

.button.submit {
  width: 100%;
  min-height: 50px;
  font-size: 15px;
}

.wide {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 0;
  padding: 0;
  width: 38px;
  height: 38px;
}

.site-header:not(.scrolled):not(.light-mode) .menu-toggle {
  border: 0;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.site-header.scrolled .menu-toggle,
.site-header.light-mode .menu-toggle {
  border: 0;
  background: rgba(11, 30, 61, 0.06);
  color: var(--ink);
}

.site-header.scrolled .menu-toggle:hover,
.site-header.light-mode .menu-toggle:hover {
  background: rgba(0, 168, 181, 0.1);
  color: var(--teal);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(7, 27, 54, 0.58);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  width: min(390px, 100%);
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  color: var(--ink);
  transform: translateX(-100%);
  transition: transform 0.25s ease;
}

.mobile-menu.open .mobile-menu-inner {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}

.menu-close {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  color: var(--ink);
}

.mobile-nav {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 500;
}

.mobile-nav a::after {
  content: ">";
  color: #98a6ba;
}

.mobile-nav a.active {
  color: var(--teal);
  background: var(--aqua-soft);
}

.mobile-language {
  border-color: transparent;
  color: var(--ink);
  justify-content: flex-start;
  width: 100%;
  margin: 6px 0 22px;
  padding: 0 16px;
  font-size: 14px;
}

.page {
  display: none;
  min-height: 60vh;
  overflow: hidden;
}

.page.active {
  display: block;
}

body.motion-enabled .page.active {
  animation: pageSurfaceIn 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes pageSurfaceIn {
  from {
    opacity: 0.96;
  }
  to {
    opacity: 1;
  }
}

body.motion-enabled .motion-reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, var(--reveal-distance, 24px), 0);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

body.motion-enabled .hero-kicker.motion-reveal,
body.motion-enabled .hero-buttons.motion-reveal,
body.motion-enabled .hero-proof-row.motion-reveal {
  --reveal-distance: 14px;
}

body.motion-enabled .motion-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

#page-about,
#page-solutions,
#page-projects,
#page-partners,
#page-contact,
#page-admin {
  padding-top: 72px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1e3d 0%, #0f2f5c 50%, #0b1e3d 100%);
  color: var(--white);
  --hero-grid-y: 0px;
  --hero-rings-y: 0px;
  --hero-visual-y: 0px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  align-items: center;
  gap: 32px;
  min-height: 100vh;
  max-width: 1280px;
  margin: 0 auto;
  padding: 118px 24px 64px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(0, 168, 181, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 181, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
  pointer-events: none;
  transform: translate3d(0, var(--hero-grid-y), 0);
  will-change: transform;
}

.home-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5%;
  pointer-events: none;
  transform: translate3d(0, var(--hero-rings-y), 0);
  will-change: transform;
}

.home-rings span {
  position: absolute;
  border: 1px solid rgba(45, 212, 191, 0.12);
  border-radius: 50%;
  animation: pulseRing 3s ease-in-out infinite;
}

.home-rings span:nth-child(1) {
  width: 320px;
  height: 320px;
}

.home-rings span:nth-child(2) {
  width: 440px;
  height: 440px;
  animation-delay: 0.8s;
}

.home-rings span:nth-child(3) {
  width: 560px;
  height: 560px;
  animation-delay: 1.6s;
}

@keyframes pulseRing {
  0%, 100% { opacity: 0.42; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.03); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 630px;
}

.section-heading > span,
.mini-label,
.sub-hero > span,
.nex-eyebrow {
  display: inline;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  margin: 0 0 24px;
  border: 1px solid rgba(0, 168, 181, 0.4);
  border-radius: 9999px;
  background: rgba(0, 168, 181, 0.1);
}

.hero h1,
.sub-hero h1,
.section-heading h2,
.cta-band h2 {
  margin: 0;
  font-family: "Prompt", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 720px;
  font-size: 48px;
  line-height: 1;
  margin: 0 0 24px;
}

.hero h1 span {
  color: #00a8b5;
}

.hero-copy {
  max-width: 576px;
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.625;
}

.hero-buttons,
.cta-actions,
.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-buttons {
  gap: 16px;
  margin-top: 0;
}

.hero-buttons .button {
  min-height: 58px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.hero-buttons .button.solid {
  display: inline-block;
  border-radius: 6px;
  padding-inline: 24px;
}

.hero-buttons .button.ghost {
  display: inline-block;
  border-radius: 8px;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.hero-proof-row svg {
  width: 14px;
  height: 14px;
  color: var(--amber);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 512px;
  margin-top: 53px;
}

.hero-stats div {
  display: grid;
  align-content: center;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats strong {
  color: var(--teal);
  font-family: "Prompt", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.hero-stats span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 400;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: 520px;
  height: 520px;
  min-height: 0;
  transform: translate3d(0, var(--hero-visual-y), 0);
  will-change: transform;
}

.globe-stage {
  position: absolute;
  inset: 0;
}

.orbit {
  position: absolute;
  inset: 48px;
  border: 1px solid rgba(0, 168, 181, 0.16);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.orbit::before,
.orbit::after {
  position: absolute;
  inset: 42px;
  content: "";
  border: 1px solid rgba(0, 168, 181, 0.11);
  border-radius: 50%;
}

.orbit::after {
  inset: -44px;
}

.earth {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.08) 49% 51%, transparent 52%),
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(255, 255, 255, 0.09) 31px, transparent 32px),
    radial-gradient(circle at 32% 34%, rgba(255, 255, 255, 0.55), transparent 4%),
    radial-gradient(circle at 60% 44%, rgba(0, 199, 212, 0.42), transparent 30%),
    radial-gradient(circle at 42% 22%, rgba(255, 255, 255, 0.18), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(46, 185, 108, 0.35), transparent 17%),
    linear-gradient(135deg, #315f82, #10243b 62%, #091326);
  box-shadow: inset 26px -40px 90px rgba(0, 0, 0, 0.66), 0 0 80px rgba(0, 199, 212, 0.2);
  transform: translate(-50%, -50%);
  overflow: hidden;
  animation: globeBreath 7s ease-in-out infinite;
}

.globe-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.globe-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.globe-stage.globe-ready .fallback-earth {
  display: none;
}

.earth::before,
.earth::after {
  position: absolute;
  content: "";
  border-radius: 45% 55% 52% 48%;
  background: rgba(118, 166, 148, 0.42);
  filter: blur(1px);
}

.earth::before {
  width: 38%;
  height: 28%;
  top: 18%;
  left: 28%;
  transform: rotate(22deg);
}

.earth::after {
  width: 28%;
  height: 18%;
  right: 18%;
  bottom: 30%;
  transform: rotate(-28deg);
}

@keyframes globeBreath {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.12); }
}

.globe-links {
  position: absolute;
  inset: 0;
  opacity: 0.22;
}

.globe-links line {
  stroke: #00a8b5;
  stroke-width: 1.1;
  stroke-dasharray: 5 6;
  animation: dashMove 1.8s linear infinite;
}

@keyframes dashMove {
  to { stroke-dashoffset: -22; }
}

.service-float {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  min-width: 156px;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--card-color) 34%, transparent);
  border-radius: 16px;
  background: rgba(8, 20, 45, 0.82);
  color: var(--white);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
  animation: floatCard 3.7s ease-in-out infinite;
}

.service-float span {
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--card-color) 16%, transparent);
  color: var(--card-color);
}

.service-float span svg {
  width: 14px;
  height: 14px;
}

.service-float strong {
  font-size: 11px;
  line-height: 1.1;
}

.service-float small {
  color: var(--card-color);
  font-size: 10px;
  line-height: 1.1;
}

.service-float b {
  grid-row: 1 / 3;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--card-color);
  animation: pulseDot 1.4s ease-in-out infinite;
}

.float-one {
  top: 32px;
  left: -28px;
}

.float-two {
  top: 32px;
  right: -28px;
  animation-delay: 0.45s;
}

.float-three {
  left: -28px;
  bottom: 72px;
  animation-delay: 0.85s;
}

.float-four {
  right: -28px;
  bottom: 72px;
  animation-delay: 1.1s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.14); }
}

.signal {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(7, 27, 54, 0.86);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.signal svg {
  width: 16px;
  height: 16px;
  color: var(--teal-2);
}

.signal-one {
  top: 120px;
  left: 72px;
}

.signal-two {
  top: 128px;
  right: 0;
}

.signal-three {
  left: 74px;
  bottom: 128px;
}

.signal-four {
  right: 30px;
  bottom: 110px;
}

.scroll-indicator {
  position: absolute;
  bottom: 42px;
  left: 50%;
  width: 18px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
}

.scroll-indicator::after {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: var(--teal-2);
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.3; }
  50% { transform: translate(-50%, 9px); opacity: 1; }
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--section) clamp(18px, 4vw, 48px);
}

.section.light,
.trust-band {
  max-width: none;
  background: var(--soft);
}

.section.light > * {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 520px;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2 {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.hex-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 26px;
  align-items: center;
}

.hex-card {
  position: relative;
  min-height: 230px;
  padding: 28px 20px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background: var(--navy);
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  isolation: isolate;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.hex-card:hover {
  transform: translateY(-6px);
  filter: saturate(1.1);
}

.hex-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
  opacity: 0.62;
  z-index: -2;
}

.hex-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(4, 18, 38, 0.35), rgba(4, 18, 38, 0.82));
  z-index: -1;
}

.hex-card i,
.solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
}

.hex-card svg,
.solution-icon svg,
.why-list svg,
.contact-items svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.3;
}

.hex-card h3 {
  margin: 0 auto;
  max-width: 170px;
  font-size: 16px;
  line-height: 1.28;
}

.hx-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.section.light > .hx-grid {
  max-width: 1080px;
}

.hx-row {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hx-row-1 {
  transform: translateX(-5.25%);
}

.hx-row-2 {
  margin-top: -3.8%;
  transform: translateX(5.25%);
}

.hx2 {
  position: relative;
  width: 21%;
  flex-shrink: 0;
}

.hx2::before {
  display: block;
  padding-bottom: 115.47%;
  content: "";
}

.hx2-wrap {
  position: absolute;
  inset: 2% 5%;
  display: block;
  overflow: hidden;
  cursor: pointer;
  color: var(--white);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.hx2-wrap:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
}

.hx2-bg-img,
.hx2-overlay,
.hx2-content {
  position: absolute;
  inset: 0;
}

.hx2-bg-img {
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease;
}

.hx2-wrap:hover .hx2-bg-img {
  transform: scale(1.08);
}

.hx2-overlay {
  background: linear-gradient(to bottom, rgba(11, 30, 61, 0.35) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.hx2-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20% 12%;
  text-align: center;
}

.hx2-number {
  position: absolute;
  top: 18%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 22px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(8, 20, 45, 0.36);
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 900;
  transform: translateX(-50%);
}

.hx2-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--service-color) 60%, transparent);
}

.hx2-icon svg {
  width: 15px;
  height: 15px;
  color: var(--white);
}

.hx2 h3 {
  margin: 0;
  color: var(--white);
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.hx2 small {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(8, 20, 45, 0.34);
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(460px, 1.26fr);
  gap: 70px;
  align-items: start;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.why-list article,
.dna-grid article,
.cert-panel,
.capability-panel,
.contact-card,
.contact-form,
.project-card,
.network-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 32px rgba(10, 34, 66, 0.06);
}

.why-list article {
  padding: 28px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.why-list article:hover {
  border-color: rgba(0, 168, 181, 0.3);
  box-shadow: 0 16px 38px rgba(10, 34, 66, 0.1);
  transform: translateY(-2px);
}

.why-list svg {
  color: var(--teal);
}

.why-list h3 {
  margin: 18px 0 10px;
  font-size: 18px;
}

.why-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.trust-band {
  padding: 54px clamp(18px, 4vw, 48px) 62px;
  text-align: center;
  border-top: 1px solid rgba(220, 229, 240, 0.75);
  border-bottom: 1px solid rgba(220, 229, 240, 0.75);
  overflow: hidden;
}

.trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 0 auto 34px;
}

.trust-proof-grid span {
  display: grid;
  gap: 4px;
  min-height: 82px;
  align-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(10, 34, 66, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.trust-proof-grid span:hover {
  border-color: rgba(0, 168, 181, 0.32);
  box-shadow: 0 18px 38px rgba(10, 34, 66, 0.11);
  transform: translateY(-3px);
}

.trust-proof-grid strong {
  color: var(--navy);
  font-family: "Prompt", sans-serif;
  font-size: 18px;
  line-height: 1.1;
}

.trust-proof-grid small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.trust-band p {
  margin: 0 0 24px;
  color: #9aa7b9;
  font-size: 13px;
  font-weight: 800;
}

.trust-logos {
  display: flex;
  gap: 14px;
  width: max-content;
  max-width: none;
  margin: 0;
  padding: 4px 0;
  animation: partnerMarquee 34s linear infinite;
}

.trust-logos > span,
.trust-logos > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 62px;
  padding: 10px 14px;
  border: 1px solid #e6edf4;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(10, 34, 66, 0.055);
  color: var(--ink);
  text-align: center;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.trust-logos > span::before,
.trust-logos > a::before {
  display: none;
}

.trust-logos > span::after,
.trust-logos > a::after {
  display: none;
}

.trust-logos > span > *,
.trust-logos > a > * {
  position: relative;
  z-index: 1;
}

.trust-logos > span:hover,
.trust-logos > a:hover {
  border-color: #cbd8e5;
  box-shadow: 0 16px 34px rgba(10, 34, 66, 0.09);
  transform: translateY(-2px);
}

.trust-logos > span:hover .partner-mark,
.trust-logos > a:hover .partner-mark {
  border-color: #dbe4ee;
}

.partner-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.partner-mark::before {
  display: none;
}

.partner-logo-img {
  display: block;
  width: auto;
  min-width: 0;
  max-width: 100%;
  max-height: 100%;
  filter: none;
  opacity: 0.9;
  object-fit: contain;
  transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

a:hover .partner-logo-img {
  filter: none;
  opacity: 1;
  transform: scale(1.03);
}

.partner-logo-fallback {
  color: var(--navy);
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-logos .partner-mark {
  width: 112px;
  height: 38px;
  padding: 0;
}

.trust-logos .partner-logo-img {
  max-width: 108px;
  max-height: 34px;
}

.client-logo-section {
  position: relative;
  padding: clamp(54px, 7vw, 84px) clamp(18px, 4vw, 48px);
  overflow: hidden;
}

.home-client-section {
  border-bottom: 1px solid rgba(220, 229, 240, 0.78);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 168, 181, 0.075), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.partners-client-section {
  border-top: 1px solid rgba(220, 229, 240, 0.7);
  border-bottom: 1px solid rgba(220, 229, 240, 0.7);
  background:
    linear-gradient(90deg, rgba(0, 168, 181, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  background-size: 62px 62px, auto;
}

.client-logo-heading {
  margin-bottom: 28px;
}

.client-logo-heading h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(820px, 100%);
  margin: 0 auto;
}

.client-logo-card {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  height: 106px;
  padding: 18px 22px;
  border: 1px solid #e3ebf3;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(10, 34, 66, 0.058);
  color: var(--ink);
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.client-logo-card::before {
  position: absolute;
  inset: auto 18px 0;
  z-index: -1;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--client-color);
  opacity: 0.55;
  transform: scaleX(0.38);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.client-logo-card:hover {
  border-color: #cbd8e5;
  box-shadow: 0 20px 44px rgba(10, 34, 66, 0.11);
  transform: translateY(-3px);
}

.client-logo-card:hover::before {
  opacity: 0.78;
  transform: scaleX(1);
}

.client-logo-mark {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 100%;
  height: 66px;
  min-width: 0;
}

.client-logo-img {
  display: block;
  width: auto;
  max-width: 176px;
  max-height: 58px;
  object-fit: contain;
  opacity: 0.94;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.client-logo-card:hover .client-logo-img {
  opacity: 1;
  transform: scale(1.025);
}

.client-logo-fallback {
  display: block;
  color: var(--navy);
  font-family: "Prompt", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

@keyframes partnerMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 7px), 0, 0);
  }
}

.trust-logos em {
  overflow: hidden;
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trust-logos small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}

.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 26px;
  border: 2px solid var(--teal);
  border-radius: 6px;
  color: var(--teal);
  font-weight: 900;
}

.home-proof-section {
  position: relative;
  background:
    linear-gradient(180deg, var(--white) 0%, #f8fbff 44%, #eef7fb 100%);
  overflow: hidden;
}

.home-proof-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(0, 168, 181, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 181, 0.07) 1px, transparent 1px),
    repeating-linear-gradient(118deg, transparent 0 84px, rgba(11, 30, 61, 0.05) 85px, transparent 87px);
  background-size: 58px 58px, 58px 58px, 230px 230px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 86%, transparent);
  pointer-events: none;
}

.home-proof-section > * {
  position: relative;
  z-index: 1;
}

.featured-projects,
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.project-card {
  --project-color: var(--teal);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.home-project-card {
  position: relative;
  display: block;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: linear-gradient(180deg, var(--white), #f8fafc);
  box-shadow: 0 18px 48px rgba(10, 34, 66, 0.1);
  isolation: isolate;
}

.home-project-card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--project-color), color-mix(in srgb, var(--project-color) 26%, white));
}

.home-project-card::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(120deg, transparent 0%, color-mix(in srgb, var(--project-color) 11%, transparent) 42%, transparent 68%);
  transform: translateX(-120%);
  transition: opacity 0.25s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.home-project-card:hover {
  border-color: color-mix(in srgb, var(--project-color) 38%, #dbeafe);
  box-shadow: 0 26px 64px rgba(10, 34, 66, 0.16);
}

.home-project-card:hover::after {
  opacity: 1;
  transform: translateX(120%);
}

.home-project-card:hover h3 {
  color: var(--project-color);
}

.project-image {
  position: relative;
  height: 245px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center calc(50% + var(--media-shift, 0px));
  transition: background-position 0.16s linear, filter 0.28s ease;
}

.project-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to bottom, rgba(8, 22, 41, 0.1), rgba(8, 22, 41, 0.72));
}

.category-pill {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.project-visual-tag {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 36px);
  min-height: 31px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(8, 20, 45, 0.54);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}

.project-body {
  padding: 26px;
}

.project-body h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.home-project-card .project-image {
  height: 208px;
  filter: saturate(1.03);
}

.home-project-card:hover .project-image {
  filter: saturate(1.14) contrast(1.04);
}

.home-project-card .project-body {
  padding: 24px;
}

.home-project-card .project-body h3 {
  color: #1f2937;
  font-size: 16px;
  transition: color 0.2s ease;
}

.project-year {
  margin: 0 0 8px;
  color: var(--teal);
  font-weight: 900;
  font-size: 13px;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.metric-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--aqua-soft);
  color: var(--teal);
  font-weight: 900;
  font-size: 14px;
}

.home-project-card .metric-row {
  gap: 12px;
  margin-top: 18px;
}

.home-project-card .metric-row span {
  min-height: 32px;
  font-size: 13px;
}

.home-project-card .featured-outcome {
  border: 1px solid color-mix(in srgb, var(--project-color) 18%, white);
  background: color-mix(in srgb, var(--project-color) 11%, white);
  color: var(--project-color);
}

.home-project-card .featured-metric {
  border: 1px solid color-mix(in srgb, var(--project-color) 12%, #e2e8f0);
  background: #f8fafc;
  color: #64748b;
  font-weight: 700;
}

.home-next-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(76px, 8vw, 118px) clamp(18px, 4vw, 48px);
  color: var(--white);
  background: linear-gradient(135deg, #06172d 0%, var(--navy) 48%, #0c335f 100%);
  overflow: hidden;
  isolation: isolate;
}

.home-next-section::before,
.home-next-section::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.home-next-section::before {
  z-index: -2;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(0, 168, 181, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 181, 0.12) 1px, transparent 1px),
    repeating-linear-gradient(118deg, transparent 0 82px, rgba(255, 255, 255, 0.08) 83px, transparent 85px);
  background-size: 58px 58px, 58px 58px, 240px 240px;
  animation: subHeroGridDrift 28s linear infinite;
}

.home-next-section::after {
  z-index: -1;
  opacity: 0.72;
  background:
    linear-gradient(105deg, transparent 0%, rgba(0, 168, 181, 0.22) 34%, rgba(229, 169, 32, 0.1) 46%, transparent 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 48%, rgba(6, 23, 45, 0.36));
}

.home-next-copy {
  max-width: 430px;
}

.home-next-copy h2 {
  margin: 10px 0 16px;
  color: var(--white);
  font-family: "Prompt", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.home-next-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.78;
}

.home-next-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-next-grid::before {
  position: absolute;
  top: 50%;
  left: 6%;
  right: 6%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(0, 168, 181, 0.5), rgba(229, 169, 32, 0.38), transparent);
  transform: translateY(-50%);
  animation: dataLinePulse 3.8s ease-in-out infinite;
}

.home-next-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--next-color) 28%, rgba(255, 255, 255, 0.14));
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.home-next-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background:
    linear-gradient(120deg, transparent 0%, color-mix(in srgb, var(--next-color) 24%, transparent) 42%, transparent 64%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 44px 44px;
  transform: translateX(-100%);
  transition: opacity 0.25s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.home-next-card.featured {
  background: linear-gradient(180deg, color-mix(in srgb, var(--next-color) 22%, rgba(255, 255, 255, 0.08)), rgba(255, 255, 255, 0.075));
  transform: translateY(-12px);
}

.home-next-card:hover {
  border-color: color-mix(in srgb, var(--next-color) 64%, rgba(255, 255, 255, 0.22));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  box-shadow: 0 26px 66px rgba(0, 0, 0, 0.3);
  transform: translateY(-8px);
}

.home-next-card.featured:hover {
  transform: translateY(-18px);
}

.home-next-card:hover::before {
  opacity: 1;
  transform: translateX(100%);
}

.home-next-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--next-color) 20%, transparent);
  color: var(--next-color);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--next-color) 24%, transparent);
}

.home-next-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.4;
}

.home-next-card small {
  position: absolute;
  top: 22px;
  right: 22px;
  color: color-mix(in srgb, var(--next-color) 88%, white);
  font-family: "Prompt", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-next-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: "Prompt", sans-serif;
  font-size: 20px;
  line-height: 1.28;
}

.home-next-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.72;
}

.home-next-card b {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: auto;
  padding-top: 24px;
  color: color-mix(in srgb, var(--next-color) 86%, white);
  font-size: 14px;
}

@keyframes dataLinePulse {
  0%, 100% {
    opacity: 0.34;
    transform: translateY(-50%) scaleX(0.86);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-50%) scaleX(1);
  }
}

.project-grid .metric-row span {
  display: grid;
  min-width: 112px;
  min-height: 58px;
  border: 1px solid color-mix(in srgb, var(--metric-color, var(--project-color)) 14%, #e2e8f0);
  color: var(--ink);
  background: color-mix(in srgb, var(--metric-color, var(--project-color)) 7%, white);
}

.project-grid .metric-row strong {
  color: var(--metric-color, var(--project-color));
  font-size: 19px;
  line-height: 1;
}

.project-grid .metric-row small {
  color: var(--muted);
  font-weight: 700;
}

.cta-band {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(330px, 38vw, 430px);
  padding: clamp(84px, 9vw, 128px) clamp(18px, 4vw, 48px);
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, #06172d 0%, var(--navy) 48%, #0c335f 100%);
  overflow: hidden;
  isolation: isolate;
}

.cta-band.compact {
  min-height: clamp(300px, 34vw, 390px);
  padding: clamp(76px, 8vw, 112px) clamp(18px, 4vw, 48px);
}

.cta-band::before,
.cta-band::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.cta-band::before {
  z-index: -2;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(0, 168, 181, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 181, 0.12) 1px, transparent 1px),
    repeating-linear-gradient(118deg, transparent 0 82px, rgba(255, 255, 255, 0.08) 83px, transparent 85px);
  background-size: 58px 58px, 58px 58px, 240px 240px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  animation: subHeroGridDrift 28s linear infinite;
}

.cta-band::after {
  z-index: -1;
  opacity: 0.58;
  background:
    linear-gradient(105deg, transparent 0%, rgba(0, 168, 181, 0.24) 36%, rgba(229, 169, 32, 0.09) 48%, transparent 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(6, 23, 45, 0.28));
  transform: translate3d(0, var(--subhero-shift, 0px), 0);
}

.cta-band h2 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(30px, 4.2vw, 50px);
}

.cta-band p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.cta-actions {
  position: relative;
  z-index: 1;
  justify-content: center;
}

.cta-band > .button {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}

.sub-hero {
  position: relative;
  padding: 70px 24px 82px;
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, #0b1e3d 0%, #0f2f5c 100%);
  overflow: hidden;
  isolation: isolate;
  --subhero-shift: 0px;
  --subhero-grid-shift: 0px;
  --subhero-fade: 1;
}

.sub-hero::before,
.sub-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.sub-hero::before {
  z-index: -2;
  opacity: calc(var(--subhero-fade) * 0.58);
  background-image:
    linear-gradient(rgba(0, 168, 181, 0.105) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 181, 0.105) 1px, transparent 1px),
    repeating-linear-gradient(118deg, transparent 0 72px, rgba(255, 255, 255, 0.055) 73px, transparent 75px);
  background-size: 58px 58px, 58px 58px, 220px 220px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  transform: translate3d(0, var(--subhero-grid-shift), 0);
  animation: subHeroGridDrift 22s linear infinite;
}

.sub-hero::after {
  z-index: -1;
  opacity: 0.7;
  background:
    linear-gradient(118deg, transparent 0%, rgba(0, 168, 181, 0.18) 43%, rgba(229, 169, 32, 0.08) 50%, transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%);
  transform: translate3d(0, var(--subhero-shift), 0);
  mix-blend-mode: screen;
}

.sub-hero > * {
  position: relative;
  z-index: 1;
}

@keyframes subHeroGridDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 0 58px, 58px 0, 220px 220px;
  }
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb a:hover,
.breadcrumb span {
  color: var(--white);
}

.breadcrumb svg {
  width: 13px;
  height: 13px;
  color: var(--teal);
}

.sub-hero h1 {
  max-width: 896px;
  margin: 12px 0 16px;
  margin-inline: auto;
  font-size: 48px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.sub-hero p {
  max-width: 896px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.6);
  line-height: 28px;
  font-size: 18px;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 54px;
  align-items: start;
}

.about-story h2,
.cert-panel h2,
.capability-panel h2,
.contact-card h2,
.contact-form h2,
.nex-card h2 {
  margin: 10px 0 20px;
  font-family: "Prompt", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.about-story p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 17px;
}

.founding-card {
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--navy-3));
  box-shadow: var(--shadow);
}

.founding-card strong {
  display: block;
  color: var(--teal-2);
  font-family: "Prompt", sans-serif;
  font-size: 64px;
  line-height: 1;
}

.founding-card span {
  display: block;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.founding-card blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.75;
}

.founding-card p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.dna-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.dna-grid article {
  min-height: 180px;
  padding: 28px;
}

.dna-grid h3 {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 20px;
}

.dna-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.capability-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}

.cert-panel,
.capability-panel {
  padding: 34px;
}

.cert-list,
.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cert-list span,
.capability-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.exact-about-story {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: center;
}

.about-story-copy p + p {
  margin-top: 20px;
}

.story-image-card {
  position: relative;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(10, 34, 66, 0.22);
}

.story-image-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transform: scale(1.06) translate3d(0, calc(var(--media-shift, 0px) * 0.36), 0);
  transform-origin: center;
  transition: transform 0.16s linear;
  will-change: transform;
}

.story-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 30, 61, 0.6), transparent);
}

.story-year {
  position: absolute;
  left: 26px;
  bottom: 24px;
}

.story-year strong {
  display: block;
  color: var(--teal);
  font-family: "Prompt", sans-serif;
  font-size: 36px;
  line-height: 1;
}

.story-year span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.md-section {
  padding: var(--section) clamp(18px, 4vw, 48px);
  background: var(--soft);
}

.md-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid rgba(220, 229, 240, 0.78);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(10, 34, 66, 0.07);
  overflow: hidden;
}

.md-orb {
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.05;
  transform: translate(30%, -30%);
}

.md-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 34px;
  align-items: flex-start;
}

.md-avatar {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 18px 38px rgba(10, 34, 66, 0.22);
}

.md-avatar span {
  color: var(--white);
  font-family: "Prompt", sans-serif;
  font-size: 26px;
  font-weight: 800;
}

.md-copy blockquote {
  margin: 14px 0 24px;
  color: #4b5563;
  font-size: 19px;
  font-style: italic;
  line-height: 1.78;
}

.md-name {
  color: var(--navy);
  font-weight: 900;
}

.md-title {
  margin-top: 4px;
  color: #6b7280;
  font-size: 14px;
}

.about-dna-section {
  background: var(--white);
}

.about-centered-title {
  margin: 0 auto 54px;
  text-align: center;
}

.about-centered-title span {
  display: inline-flex;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-centered-title h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font-family: "Prompt", sans-serif;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.16;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.vision-mission-grid article {
  padding: 32px;
  border-left: 4px solid var(--teal);
  border-radius: 16px;
  background: var(--soft);
}

.vision-mission-grid .mission-card {
  border-left-color: var(--amber);
}

.vision-mission-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 19px;
}

.vision-mission-grid p {
  margin: 0;
  color: #5f6878;
  line-height: 1.78;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.value-grid article {
  padding: 30px 24px;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  background: var(--white);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.value-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(10, 34, 66, 0.1);
}

.value-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--value-color) 12%, transparent);
  color: var(--value-color);
}

.value-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}

.value-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
}

.value-grid small {
  display: block;
  min-height: 19px;
  margin: 4px 0 12px;
  color: #9ca3af;
  font-size: 12px;
}

.value-grid p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.65;
}

.standards-section {
  padding: var(--section) clamp(18px, 4vw, 48px);
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, var(--navy), #0f2f5c);
}

.standards-inner {
  max-width: 1020px;
  margin: 0 auto;
}

.standards-section h2 {
  margin: 12px 0 48px;
  color: var(--white);
  font-family: "Prompt", sans-serif;
  font-size: clamp(30px, 3.2vw, 42px);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.standards-grid article {
  position: relative;
  padding: 28px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.standards-grid article::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.16) 45%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.standards-grid article:hover {
  border-color: rgba(0, 168, 181, 0.34);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.standards-grid article:hover::before {
  transform: translateX(130%);
}

.standards-grid strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 6px;
  color: var(--standard-color);
  font-family: "Prompt", sans-serif;
  font-size: clamp(24px, 2.5vw, 32px);
}

.standards-grid span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.capability-section {
  text-align: center;
}

.capability-section .about-centered-title {
  margin-bottom: 44px;
}

.capability-checks {
  justify-content: center;
}

.capability-checks span {
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border: 1.5px solid rgba(0, 168, 181, 0.3);
  background: rgba(0, 168, 181, 0.05);
}

.capability-checks svg {
  width: 15px;
  height: 15px;
  color: var(--teal);
  stroke-width: 2.5;
}

.about-cta-section {
  padding: clamp(64px, 8vw, 104px) clamp(18px, 4vw, 48px);
  background:
    linear-gradient(180deg, var(--white), var(--soft));
  text-align: center;
}

.about-cta-section > div {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 54px);
  border: 1px solid rgba(0, 168, 181, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 251, 0.94)),
    linear-gradient(90deg, rgba(0, 168, 181, 0.08) 1px, transparent 1px);
  background-size: auto, 42px 42px;
  box-shadow: 0 22px 54px rgba(10, 34, 66, 0.1);
  overflow: hidden;
}

.about-cta-section > div::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.5;
  background:
    linear-gradient(rgba(0, 168, 181, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 181, 0.07) 1px, transparent 1px),
    repeating-linear-gradient(118deg, transparent 0 76px, rgba(229, 169, 32, 0.16) 77px, transparent 79px);
  background-size: 48px 48px, 48px 48px, 220px 220px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  pointer-events: none;
}

.about-cta-section > div > * {
  position: relative;
  z-index: 1;
}

.about-cta-section h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: "Prompt", sans-serif;
  font-size: clamp(26px, 3vw, 34px);
}

.about-cta-section p {
  margin: 0 0 30px;
  color: #6b7280;
}

.solution-list {
  display: grid;
  gap: 64px;
  max-width: 1160px;
}

.solution-item {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 56px);
  align-items: center;
}

.solution-item:nth-child(even) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-item:nth-child(even) .solution-copy {
  order: 2;
}

.solution-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.solution-copy h2 {
  margin: 0;
  font-family: "Prompt", sans-serif;
  color: #0b1e3d;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.35;
}

.solution-copy p {
  margin: 20px 0 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.82;
}

.solution-media {
  position: relative;
  height: 288px;
  border-radius: 16px;
  overflow: hidden;
  background-image: var(--bg);
  background-size: cover;
  background-position: center calc(50% + var(--media-shift, 0px));
  box-shadow: var(--shadow);
  transition: background-position 0.16s linear, filter 0.28s ease, transform 0.28s ease;
}

.solution-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, color-mix(in srgb, var(--solution-color) 74%, transparent), transparent 60%);
}

.solution-item:hover .solution-media {
  filter: saturate(1.08) contrast(1.03);
}

.solution-media span {
  position: absolute;
  left: 22px;
  bottom: 16px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.22);
  font-family: "Prompt", sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.solution-media em {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  max-width: calc(100% - 120px);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(8, 20, 45, 0.44);
  color: rgba(255, 255, 255, 0.9);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.solution-icon {
  background: color-mix(in srgb, var(--solution-color) 12%, white);
  color: var(--solution-color);
}

.solution-number {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--solution-color);
  background: color-mix(in srgb, var(--solution-color) 10%, white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.solution-consult {
  margin-top: 28px;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--solution-color);
  font-size: 14px;
  font-weight: 900;
  transition: gap 0.2s ease;
}

.solution-link:hover {
  gap: 12px;
}

.solution-link svg {
  width: 14px;
  height: 14px;
}

.project-filter-bar {
  position: sticky;
  top: 76px;
  z-index: 30;
  padding: 32px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid #e2e8f0;
  background: var(--white);
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  max-width: 1160px;
  margin: 0 auto;
}

.project-filters button {
  min-height: 40px;
  padding: 0 20px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f4f7fb;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.project-filters button.active {
  background: #0b1e3d;
  border-color: #0b1e3d;
  color: var(--white);
}

.projects-grid-section {
  padding: 64px clamp(18px, 4vw, 48px);
  background: var(--white);
}

.projects-grid-section .project-grid {
  max-width: 1160px;
  margin: 0 auto;
  gap: 28px;
}

.project-shell {
  min-width: 0;
}

.project-full-card {
  cursor: pointer;
  border-color: #eef2f7;
  outline: none;
}

.project-full-card:focus-visible {
  box-shadow: 0 0 0 4px rgba(0, 168, 181, 0.18), var(--shadow);
}

.project-full-card.expanded,
.project-full-card:hover {
  box-shadow: var(--shadow);
}

.project-full-card .project-image {
  height: 208px;
  transition: filter 0.3s ease;
}

.project-full-card:hover .project-image {
  filter: saturate(1.08);
}

.project-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-badges .category-pill {
  position: static;
  top: auto;
  left: auto;
}

.year-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.project-full-card .project-body {
  padding: 24px;
}

.project-full-card .project-body h3 {
  color: #1f2937;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.project-full-card:hover .project-body h3,
.project-full-card.expanded .project-body h3 {
  color: var(--project-color);
}

.project-grid .project-full-card .metric-row {
  gap: 8px;
  margin: 18px 0 0;
}

.project-grid .project-full-card .metric-row span {
  min-width: 0;
  min-height: 56px;
  padding: 8px 12px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--metric-color) 8%, white);
  text-align: center;
}

.project-grid .project-full-card .metric-row strong {
  color: var(--metric-color);
  font-size: 15px;
}

.project-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--project-color);
  font-size: 14px;
  font-weight: 900;
}

.project-detail-link svg {
  width: 14px;
  height: 14px;
}

.project-detail-panel {
  margin-top: 8px;
  padding: 32px;
  border: 1px solid color-mix(in srgb, var(--project-color) 28%, transparent);
  border-radius: 16px;
  background: #f4f7fb;
  overflow: hidden;
}

.project-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.project-detail-block {
  margin-bottom: 24px;
}

.detail-label {
  margin: 0 0 8px;
  color: var(--project-color);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-detail-panel p:not(.detail-label) {
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.75;
}

.project-outcome-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-outcome-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--project-color);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.project-detail-panel .button.solid {
  --button-bg: var(--project-color);
  --button-hover: color-mix(in srgb, var(--project-color) 82%, #06172d);
  --button-shadow: color-mix(in srgb, var(--project-color) 25%, transparent);
}

.partners-feature-section {
  padding: 80px clamp(18px, 4vw, 48px);
  background: var(--white);
}

.partners-feature-card {
  width: min(1160px, 100%);
  min-width: 0;
  max-width: 1160px;
  margin: 0 auto;
  border: 1px solid #e3ebf3;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(10, 34, 66, 0.12);
  overflow: hidden;
}

.nex-main {
  position: relative;
  padding: clamp(40px, 6vw, 64px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 83, 45, 0.72), rgba(11, 30, 61, 0.96)),
    linear-gradient(90deg, #0b1e3d, #102844);
  overflow: hidden;
}

.nex-main::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    repeating-linear-gradient(118deg, transparent 0 70px, rgba(255, 255, 255, 0.12) 71px, transparent 73px);
  background-size: 52px 52px, 52px 52px, 180px 180px;
  animation: subHeroGridDrift 24s linear infinite;
  pointer-events: none;
}

.nex-main > * {
  position: relative;
  z-index: 1;
}

.nex-heading-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.nex-heading-row > div {
  min-width: 0;
}

.nex-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.nex-icon svg {
  width: 32px;
  height: 32px;
}

.nex-eyebrow {
  margin-bottom: 4px;
  color: #67e8f9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.nex-main h2 {
  margin: 0;
  color: var(--white);
  font-family: "Prompt", sans-serif;
  font-size: 36px;
  line-height: 1.1;
}

.nex-heading-row p,
.nex-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  overflow-wrap: anywhere;
}

.nex-copy {
  max-width: 720px;
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.78;
}

.nex-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.nex-solution-grid article {
  display: flex;
  gap: 16px;
  min-width: 0;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.075);
  transition: transform 0.22s ease, background 0.22s ease;
}

.nex-solution-grid article:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-3px);
}

.nex-solution-grid span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.nex-solution-grid svg {
  width: 16px;
  height: 16px;
}

.nex-solution-grid h3 {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.nex-solution-grid p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.nex-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: #f8fbff;
}

.nex-footer p {
  margin: 0 0 4px;
  color: var(--navy);
  font-weight: 900;
}

.nex-footer small {
  color: #64748b;
  font-size: 14px;
}

.nex-footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.button.green,
.button.solid.green {
  background: #16a34a;
}

.button.green:hover,
.button.solid.green:hover {
  background: #15803d;
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.24);
}

.green-outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid #86efac;
  border-radius: 8px;
  color: #15803d;
  font-size: 13px;
  font-weight: 900;
  transition: background 0.2s ease;
}

.green-outline-link:hover {
  background: #dcfce7;
}

.green-outline-link svg {
  width: 14px;
  height: 14px;
}

.partners-network-section {
  position: relative;
  padding: clamp(72px, 8vw, 108px) clamp(18px, 4vw, 48px);
  background:
    linear-gradient(180deg, #f8fbff, var(--soft)),
    linear-gradient(90deg, rgba(0, 168, 181, 0.06) 1px, transparent 1px);
  background-size: auto, 56px 56px;
  overflow: hidden;
}

.partners-network-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.42;
  background:
    repeating-linear-gradient(118deg, transparent 0 88px, rgba(0, 168, 181, 0.08) 89px, transparent 91px);
  pointer-events: none;
}

.partners-network-section .section-heading.centered {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}

.network-grid {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  grid-auto-flow: dense;
  gap: 12px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  min-width: 0;
}

.network-card {
  height: 100%;
  min-height: 0;
}

.partner-logo-card {
  position: relative;
  display: grid;
  place-items: center;
  align-items: stretch;
  min-width: 0;
  height: 108px;
  padding: 18px 20px;
  text-align: center;
  border: 1px solid #e6edf4;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(10, 34, 66, 0.055);
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.partner-logo-card::before {
  display: none;
}

.partner-logo-card::after {
  display: none;
}

.partner-logo-card:hover {
  border-color: #cbd8e5;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(10, 34, 66, 0.095);
}

.partner-logo-card:hover::before {
  display: none;
}

.partner-logo-card:hover .partner-logo-avatar {
  background: transparent;
}

.partner-logo-avatar {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 58px;
  padding: 0;
  flex: 0 0 auto;
  background: transparent;
}

.partner-logo-avatar .partner-logo-img {
  max-width: 156px;
  max-height: 48px;
}

.partners-become-section {
  position: relative;
  padding: clamp(78px, 9vw, 118px) clamp(18px, 4vw, 48px);
  background: var(--white);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.partners-become-section::after {
  position: absolute;
  inset: 18px clamp(18px, 6vw, 90px);
  z-index: -1;
  content: "";
  border: 1px solid rgba(0, 168, 181, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(244, 247, 251, 0.95), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(118deg, transparent 0 80px, rgba(0, 168, 181, 0.1) 81px, transparent 83px);
  box-shadow: 0 22px 54px rgba(10, 34, 66, 0.08);
}

.partners-become-section::before {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  content: "BECOME A PARTNER";
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.partners-become-section h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: var(--navy);
  font-family: "Prompt", sans-serif;
  font-size: clamp(30px, 3vw, 40px);
}

.partners-become-section p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto 36px;
  color: #64748b;
  line-height: 1.75;
}

.partners-become-section .button {
  position: relative;
  z-index: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
}

.contact-card,
.contact-form {
  padding: 34px;
}

.contact-card p,
.form-note {
  color: var(--muted);
  line-height: 1.72;
}

.contact-items {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-items > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  line-height: 1.6;
}

.contact-items svg {
  color: var(--teal);
  flex: 0 0 auto;
  margin-top: 2px;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label,
.field-block {
  display: grid;
  gap: 9px;
}

label > span,
.field-block > span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 14px;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(5, 174, 187, 0.12);
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.segmented button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.segmented button.selected {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  line-height: 1.55;
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.form-success {
  padding: 14px 16px;
  border: 1px solid rgba(46, 185, 108, 0.25);
  border-radius: 8px;
  background: rgba(46, 185, 108, 0.08);
  color: #16804a;
  font-weight: 800;
}

.exact-contact {
  grid-template-columns: minmax(300px, 2fr) minmax(0, 3fr);
  gap: 52px;
}

.contact-sidebar {
  display: grid;
  gap: 24px;
  align-self: start;
}

.contact-intro h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: "Prompt", sans-serif;
  font-size: 30px;
  line-height: 1.18;
}

.contact-intro p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.exact-contact-items {
  margin-top: 0;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  background: var(--soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contact-info-item:hover {
  background: var(--white);
  box-shadow: 0 14px 30px rgba(10, 34, 66, 0.1);
  transform: translateY(-3px);
}

.contact-info-item > div {
  display: block;
  min-width: 0;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: rgba(0, 168, 181, 0.1);
  color: var(--teal);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

.contact-info-item small {
  display: block;
  margin-bottom: 3px;
  color: #9ca3af;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info-item span:not(.contact-icon) {
  display: block;
  color: #374151;
  font-size: 14px;
  line-height: 1.55;
}

.contact-map {
  border: 1px solid #eef2f7;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(10, 34, 66, 0.08);
  overflow: hidden;
  transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.contact-map:hover {
  box-shadow: 0 20px 44px rgba(10, 34, 66, 0.14);
  transform: translateY(-2px);
}

.contact-map iframe {
  display: block;
  transform: translate3d(0, calc(var(--media-shift, 0px) * 0.18), 0) scale(1.04);
  transform-origin: center;
  transition: transform 0.16s linear;
  will-change: transform;
}

.contact-form-wrap {
  min-width: 0;
  padding: 32px;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(10, 34, 66, 0.08);
}

.exact-contact-form {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.exact-contact-form h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-family: "Inter", "Prompt", sans-serif;
  font-size: 22px;
  line-height: 1.25;
}

.contact-step-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 8px;
}

.contact-step-row span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}

.contact-step-row b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.contact-step-row small {
  color: #475569;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.exact-contact-form label > span,
.exact-contact-form .field-block > span {
  color: #374151;
  font-size: 14px;
  font-weight: 700;
}

.exact-contact-form input,
.exact-contact-form textarea {
  min-height: 48px;
  border-radius: 12px;
  border-color: #e2e8f0;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
}

.exact-contact-form input:focus,
.exact-contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 168, 181, 0.14);
}

.exact-contact-form input.invalid,
.exact-contact-form textarea.invalid {
  border-color: #ef4444;
}

.exact-contact-form textarea {
  min-height: 128px;
  padding-top: 14px;
}

.contact-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-choice-row button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: var(--white);
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.contact-choice-row[data-contact-org] button.selected {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.contact-choice-row[data-contact-services] button.selected {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.contact-error {
  min-height: 16px;
  color: #ef4444;
  font-size: 12px;
  line-height: 1.35;
}

.consent-error {
  margin-top: -14px;
  margin-left: 28px;
}

.exact-contact-form .submit {
  min-height: 56px;
  border-radius: 12px;
  font-size: 15px;
}

.contact-success-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 52px 28px;
  border: 2px dashed var(--teal);
  border-radius: 24px;
  text-align: center;
}

.contact-success-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(0, 168, 181, 0.1);
  color: var(--teal);
}

.contact-success-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 2.2;
}

.contact-success-panel h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 27px;
  line-height: 1.2;
}

.contact-success-panel p {
  max-width: 430px;
  margin: 0;
  color: #6b7280;
  line-height: 1.72;
}

.admin-page {
  min-height: 100vh;
  padding-top: 76px;
  background: var(--soft);
}

.admin-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px clamp(18px, 4vw, 48px) 80px;
}

.admin-header {
  margin-bottom: 32px;
}

.admin-kicker {
  display: inline-flex;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-header h1 {
  margin: 8px 0 6px;
  color: var(--navy);
  font-family: "Prompt", sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.12;
}

.admin-header p {
  margin: 0;
  color: #64748b;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.admin-tabs button,
.admin-add-button,
.admin-save,
.admin-cancel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: var(--white);
  color: #64748b;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
}

.admin-tabs button.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.admin-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
}

.admin-side {
  padding: 8px;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(10, 34, 66, 0.06);
  align-self: start;
}

.admin-page-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #64748b;
  font-weight: 800;
  text-align: left;
}

.admin-page-button.active {
  background: var(--navy);
  color: var(--white);
}

.admin-count {
  font-size: 12px;
  opacity: 0.65;
}

.admin-main {
  display: grid;
  gap: 12px;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.admin-toolbar h2 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
}

.admin-add-button,
.admin-save {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.admin-empty {
  padding: 48px 20px;
  border: 1px dashed #d7e1ec;
  border-radius: 18px;
  background: var(--white);
  color: #94a3b8;
  text-align: center;
}

.admin-record {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 12px 14px 12px 18px;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  background: var(--white);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.admin-record:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(10, 34, 66, 0.08);
}

.admin-record-body {
  min-width: 0;
  flex: 1;
}

.admin-record-title {
  overflow: hidden;
  color: #1f2937;
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-record-meta {
  margin-top: 3px;
  color: #94a3b8;
  font-size: 12px;
}

.admin-record-actions {
  display: flex;
  gap: 6px;
}

.admin-icon-button {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #94a3b8;
}

.admin-icon-button:hover {
  background: #f1f5f9;
}

.admin-icon-button.edit {
  color: #3b82f6;
}

.admin-icon-button.delete {
  color: #f87171;
}

.admin-icon-button.active {
  color: var(--teal);
}

.admin-form {
  padding: 24px;
  border: 1px solid #dfe7f0;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(10, 34, 66, 0.06);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-field,
.admin-field-full {
  display: grid;
  gap: 6px;
}

.admin-field-full {
  grid-column: 1 / -1;
}

.admin-field label,
.admin-field-full label {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
  outline: 0;
}

.admin-form textarea {
  resize: vertical;
}

.admin-bilingual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0;
  padding: 18px;
  border-radius: 16px;
  background: var(--soft);
}

.admin-language-title {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-language-title.en {
  color: #2563eb;
}

.admin-stack {
  display: grid;
  gap: 12px;
}

.admin-check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #64748b;
  font-size: 14px;
}

.admin-check-row input {
  width: 16px;
  min-height: 16px;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.admin-cancel {
  color: #64748b;
}

.admin-json-hint {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
  text-transform: none;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #06172d;
  padding-top: clamp(46px, 6vw, 76px);
}

.footer-conversion {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: calc(100% - clamp(36px, 8vw, 96px));
  max-width: 1160px;
  margin: 0 auto;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(118deg, transparent 0 86px, rgba(0, 168, 181, 0.08) 87px, transparent 89px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.footer-conversion::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(0, 168, 181, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 181, 0.14) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: translate3d(0, var(--subhero-grid-shift, 0px), 0);
  animation: subHeroGridDrift 26s linear infinite;
  pointer-events: none;
}

.footer-conversion > * {
  position: relative;
  z-index: 1;
}

.footer-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-conversion h2 {
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font-family: "Prompt", sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.28;
}

.footer-conversion p {
  max-width: 690px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.footer-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.footer-proof-row svg {
  width: 14px;
  height: 14px;
  color: var(--amber);
}

.footer-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 190px;
}

.site-footer .button {
  display: inline-flex;
  width: 100%;
  min-height: 38px;
  padding: 8px 16px;
  margin: 0;
  color: var(--white);
  font-size: 13px;
  line-height: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 0.9fr 1fr;
  gap: 44px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px clamp(18px, 4vw, 48px) 48px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 18px;
}

.site-footer h3 {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 14px;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}

.site-footer .footer-conversion p {
  max-width: 690px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-certs span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px clamp(18px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .scroll-progress {
    display: none;
  }

  .desktop-nav,
  .header-actions .primary-cta,
  .language-toggle {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding-top: 110px;
    justify-items: center;
  }

  .hero-content {
    max-width: 760px;
    text-align: center;
  }

  .hero-copy,
  .hero-stats,
  .hero-proof-row {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-proof-row {
    justify-content: center;
  }

  .hero-visual {
    width: 480px;
    height: 480px;
  }

  .earth {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .float-one { left: -8px; top: 36px; }
  .float-two { right: -8px; top: 36px; }
  .float-three { left: -8px; bottom: 56px; }
  .float-four { right: -8px; bottom: 56px; }

  .hex-grid {
    grid-template-columns: repeat(2, minmax(210px, 1fr));
  }

  .hx-grid {
    max-width: 760px;
  }

  .hx-row {
    flex-wrap: wrap;
  }

  .hx-row-1,
  .hx-row-2 {
    margin-right: 0;
    transform: none;
  }

  .hx-row-2 {
    margin-top: -5%;
    margin-left: 0;
  }

  .hx2 {
    width: 30%;
  }

  .split,
  .about-story,
  .exact-about-story,
  .capability-wrap,
  .solution-item,
  .solution-item:nth-child(even),
  .home-next-section,
  .partner-feature,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-next-copy {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
  }

  .home-next-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

  .home-next-card {
    min-height: 286px;
  }

  .footer-conversion {
    grid-template-columns: 1fr;
    width: calc(100% - clamp(36px, 8vw, 96px));
    margin: 0 auto;
  }

  .footer-cta-actions {
    flex-direction: row;
    min-width: 0;
  }

  .site-footer .button {
    width: auto;
  }

  .solution-item:nth-child(even) .solution-copy {
    order: 0;
  }

  .network-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .value-grid,
  .standards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-layout,
  .admin-bilingual {
    grid-template-columns: 1fr;
  }

  .nex-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nex-footer-actions {
    justify-content: flex-start;
  }

  .project-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    padding: 0 18px;
    border-radius: 0;
  }

  .brand-mark {
    font-size: 16px;
  }

  .brand-sub {
    font-size: 12px;
  }

  .hero {
    padding: 96px 18px 56px;
  }

  .hero-content {
    padding-top: 4px;
  }

  .project-filter-bar {
    top: 62px;
    padding: 20px 18px;
  }

  .project-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }

  .project-filters button {
    flex: 0 0 auto;
  }

  .projects-grid-section {
    padding: 52px 18px;
  }

  .project-full-card .project-body,
  .project-detail-panel {
    padding: 24px;
  }

  .client-logo-section {
    padding: 48px 18px;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(520px, 100%);
  }

  .client-logo-card {
    height: 96px;
    padding: 16px;
  }

  .client-logo-img {
    max-width: 148px;
    max-height: 50px;
  }

  .sub-hero h1 {
    max-width: min(330px, 100%);
    font-size: clamp(30px, 8.5vw, 36px);
    line-height: 1.12;
    word-break: break-all;
  }

  .sub-hero > span {
    display: block;
    margin-top: 12px;
  }

  .sub-hero p {
    max-width: min(320px, 100%);
    font-size: 16px;
    line-height: 1.65;
    word-break: break-all;
  }

  .breadcrumb {
    justify-content: center;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .section-heading h2,
  .client-logo-heading h2 {
    max-width: min(340px, 100%);
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.18;
    word-break: break-all;
  }

  .client-logo-heading h2 {
    word-break: normal;
  }

  .nex-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .nex-main {
    padding: 32px 24px;
  }

  .nex-main h2 {
    font-size: 30px;
  }

  .nex-heading-row p,
  .nex-copy,
  .nex-solution-grid h3,
  .nex-solution-grid p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .nex-copy {
    font-size: 15px;
    line-height: 1.68;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 26px;
  }

  .hero-copy {
    font-size: 18px;
    line-height: 1.625;
  }

  .hero-buttons {
    display: grid;
    margin-top: 0;
  }

  .hero-proof-row {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .hero-buttons .button.solid {
    min-height: 44px;
    padding: 10px 24px;
  }

  .hero-buttons .button.ghost {
    min-height: 58px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 48px;
  }

  .hero-visual {
    width: min(340px, 100%);
    height: min(340px, 92vw);
  }

  .earth {
    width: 78%;
  }

  .orbit,
  .service-float,
  .globe-links,
  .home-rings {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

  .section {
    padding: 70px 18px;
  }

  .sub-hero {
    padding: 110px 18px 58px;
  }

  .hex-grid,
  .why-list,
  .dna-grid,
  .vision-mission-grid,
  .value-grid,
  .standards-grid,
  .featured-projects,
  .home-next-grid,
  .project-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .home-next-section {
    padding: 70px 18px;
  }

  .home-next-grid::before {
    top: 6%;
    bottom: 6%;
    left: 50%;
    right: auto;
    width: 1px;
    height: auto;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, rgba(0, 168, 181, 0.45), rgba(229, 169, 32, 0.34), transparent);
    animation: none;
  }

  .home-next-card,
  .home-next-card.featured,
  .home-next-card:hover,
  .home-next-card.featured:hover {
    min-height: auto;
    transform: none;
  }

  .network-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-proof-grid,
  .contact-step-row {
    grid-template-columns: 1fr;
  }

  .nex-heading-row,
  .nex-solution-grid article {
    align-items: flex-start;
  }

  .nex-heading-row {
    flex-direction: column;
  }

  .nex-solution-grid {
    grid-template-columns: 1fr;
  }

  .nex-footer-actions,
  .nex-footer-actions a {
    width: 100%;
  }

  .nex-footer-actions a {
    justify-content: center;
  }

  .md-content {
    flex-direction: column;
  }

  .story-image-card,
  .story-image-card img {
    min-height: 260px;
    height: 260px;
  }

  .hex-card {
    min-height: 210px;
  }

  .hx-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hx-row {
    flex-wrap: wrap;
    gap: 0;
  }

  .hx-row-2 {
    margin-top: -8%;
  }

  .hx2 {
    width: 50%;
  }

  .hx2 h3 {
    font-size: 11px;
  }

  .section-row,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-conversion {
    width: auto;
    margin: 0 18px;
    padding: 24px;
  }

  .footer-cta-actions,
  .site-footer .button {
    width: 100%;
  }

  .footer-cta-actions {
    flex-direction: column;
  }

  .project-image {
    height: 210px;
  }

  .contact-card,
  .contact-form,
  .contact-form-wrap,
  .nex-card,
  .cert-panel,
  .capability-panel {
    padding: 24px;
  }

  .admin-page {
    padding-top: 62px;
  }

  .admin-wrap {
    padding: 28px 16px 60px;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-record {
    align-items: flex-start;
  }

  .admin-record-actions {
    flex-direction: column;
  }

  .nex-metrics div {
    min-height: 140px;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 520px) {
  .client-logo-grid {
    width: 100%;
    max-width: 354px;
    gap: 10px;
  }

  .client-logo-card {
    height: 88px;
    padding: 14px 12px;
  }

  .client-logo-mark {
    height: 52px;
  }

  .client-logo-img {
    max-width: 130px;
    max-height: 44px;
  }

  .partners-feature-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .sub-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .partners-network-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .network-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    margin-left: 0;
    margin-right: 0;
  }

  .network-card {
    min-height: 0;
  }

  .partner-logo-card {
    width: 100%;
    height: 86px;
    padding: 12px;
    min-height: 0;
  }

  .partner-logo-avatar {
    width: 100%;
    height: 46px;
  }

  .partner-logo-avatar .partner-logo-img {
    max-width: 100%;
    max-height: 38px;
  }

  .trust-logos > a {
    min-width: 138px;
    min-height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-logos {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* Home-only responsive layer. Desktop styles above 1199px stay untouched. */
@media (max-width: 1199px) {
  #page-home {
    overflow: hidden;
  }

  #page-home .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 30px;
    padding: 108px clamp(22px, 5vw, 56px) 68px;
    text-align: center;
  }

  #page-home .hero-content {
    max-width: 780px;
    margin: 0 auto;
  }

  #page-home .hero-kicker {
    max-width: 100%;
    margin-bottom: 22px;
    white-space: normal;
  }

  #page-home .hero h1 {
    max-width: 760px;
    margin: 0 auto 24px;
    font-size: clamp(38px, 6.2vw, 56px);
    line-height: 1.1;
  }

  #page-home .hero-copy {
    max-width: 650px;
    margin: 0 auto 30px;
  }

  #page-home .hero-buttons,
  #page-home .hero-proof-row {
    justify-content: center;
  }

  #page-home .hero-proof-row {
    margin-left: auto;
    margin-right: auto;
  }

  #page-home .hero-stats {
    width: min(560px, 100%);
    margin: 38px auto 0;
  }

  #page-home .hero-visual {
    width: min(520px, 82vw);
    height: min(520px, 82vw);
    margin: 0 auto;
  }

  #page-home .home-rings {
    justify-content: center;
    padding-right: 0;
  }

  #page-home .float-one {
    left: -6px;
    top: 38px;
  }

  #page-home .float-two {
    right: -6px;
    top: 38px;
  }

  #page-home .float-three {
    left: -6px;
    bottom: 56px;
  }

  #page-home .float-four {
    right: -6px;
    bottom: 56px;
  }

  #page-home .section,
  #page-home .trust-band,
  #page-home .client-logo-section,
  #page-home .home-proof-section,
  #page-home .home-next-section {
    padding-left: clamp(22px, 5vw, 56px);
    padding-right: clamp(22px, 5vw, 56px);
  }

  #page-home .split,
  #page-home .home-next-section {
    grid-template-columns: 1fr;
  }

  #page-home .split .section-heading,
  #page-home .home-next-copy {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  #page-home .split .button {
    margin-left: auto;
    margin-right: auto;
  }

  #page-home .why-list {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  #page-home .hx-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: min(760px, 100%);
  }

  #page-home .hx-row {
    display: contents;
  }

  #page-home .hx-row-1,
  #page-home .hx-row-2 {
    margin: 0;
    transform: none;
  }

  #page-home .hx2 {
    width: 100%;
  }

  #page-home .hx2::before {
    padding-bottom: 76%;
  }

  #page-home .hx2-wrap {
    inset: 0;
    border-radius: 16px;
    clip-path: none;
  }

  #page-home .hx2-number {
    top: 14px;
    left: auto;
    right: 14px;
    transform: none;
  }

  #page-home .hx2-content {
    padding: 24px;
  }

  #page-home .hx2 h3 {
    max-width: 240px;
    font-size: 16px;
  }

  #page-home .home-next-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(920px, 100%);
    margin: 0 auto;
  }

  #page-home .home-next-card,
  #page-home .home-next-card.featured {
    min-height: 280px;
    transform: none;
  }
}

@media (max-width: 900px) {
  #page-home .hero {
    padding-top: 96px;
  }

  #page-home .hero h1 {
    font-size: clamp(34px, 8vw, 48px);
  }

  #page-home .hero-copy {
    font-size: 16px;
  }

  #page-home .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #page-home .hero-visual {
    width: min(430px, 88vw);
    height: min(430px, 88vw);
  }

  #page-home .service-float {
    display: none;
  }

  #page-home .hx-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: min(680px, 100%);
  }

  #page-home .hx-row {
    display: contents;
  }

  #page-home .hx-row-1,
  #page-home .hx-row-2 {
    margin: 0;
    transform: none;
  }

  #page-home .hx2 {
    width: 100%;
  }

  #page-home .hx2::before {
    padding-bottom: 78%;
  }

  #page-home .hx2-wrap {
    inset: 0;
    border-radius: 16px;
    clip-path: none;
  }

  #page-home .hx2-number {
    top: 14px;
    left: auto;
    right: 14px;
    transform: none;
  }

  #page-home .hx2-content {
    padding: 22px;
  }

  #page-home .hx2 h3 {
    max-width: 220px;
    font-size: 15px;
  }

  #page-home .trust-proof-grid,
  #page-home .featured-projects,
  #page-home .home-next-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #page-home .home-next-card {
    min-height: 240px;
  }
}

@media (max-width: 720px) {
  #page-home .hero {
    padding: 88px 18px 54px;
    gap: 22px;
  }

  #page-home .hero-kicker {
    padding: 7px 12px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  #page-home .hero h1 {
    font-size: clamp(30px, 9.2vw, 38px);
    line-height: 1.16;
  }

  #page-home .hero-copy {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.72;
  }

  #page-home .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: min(340px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  #page-home .hero-buttons .button {
    width: 100%;
    min-height: 48px;
    padding: 12px 20px;
  }

  #page-home .hero-proof-row {
    display: grid;
    grid-template-columns: 1fr;
    width: min(340px, 100%);
  }

  #page-home .hero-proof-row span {
    justify-content: center;
  }

  #page-home .hero-stats {
    width: min(340px, 100%);
    margin-top: 28px;
  }

  #page-home .hero-visual {
    width: min(320px, 86vw);
    height: min(320px, 86vw);
  }

  #page-home .orbit,
  #page-home .globe-links,
  #page-home .home-rings {
    display: none;
  }

  #page-home .section,
  #page-home .trust-band,
  #page-home .client-logo-section,
  #page-home .home-proof-section,
  #page-home .home-next-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  #page-home .section-heading.centered,
  #page-home .client-logo-heading {
    margin-bottom: 34px;
  }

  #page-home .section-heading h2,
  #page-home .home-next-copy h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.2;
  }

  #page-home .hx-grid,
  #page-home .why-list,
  #page-home .trust-proof-grid,
  #page-home .featured-projects,
  #page-home .home-next-grid {
    grid-template-columns: 1fr;
  }

  #page-home .hx-grid {
    width: min(360px, 100%);
  }

  #page-home .hx2::before {
    padding-bottom: 72%;
  }

  #page-home .why-list {
    width: min(360px, 100%);
  }

  #page-home .trust-proof-grid {
    width: min(360px, 100%);
  }

  #page-home .client-logo-grid {
    width: min(354px, 100%);
  }

  #page-home .section-row {
    align-items: center;
    text-align: center;
  }

  #page-home .section-row .outline-link {
    margin: 0 auto;
  }

  #page-home .home-next-grid::before {
    display: none;
  }

  #page-home .home-next-card {
    min-height: auto;
    padding: 22px;
  }
}

@media (max-width: 430px) {
  #page-home .hero {
    padding-top: 82px;
  }

  #page-home .hero h1 {
    font-size: 29px;
  }

  #page-home .hero-stats div {
    min-height: 66px;
    padding: 10px;
  }

  #page-home .hero-visual {
    width: min(290px, 84vw);
    height: min(290px, 84vw);
  }

  #page-home .client-logo-card {
    height: 86px;
  }
}

/* Home mobile experiment: show visual sooner and avoid an 8-card vertical tunnel. */
@media (max-width: 767px) {
  #page-home .hero {
    min-height: clamp(620px, 94svh, 760px);
    align-content: start;
    gap: 16px;
    padding: 78px 18px 34px;
  }

  #page-home .hero-content {
    max-width: 390px;
  }

  #page-home .hero-kicker {
    margin-bottom: 14px;
    padding: 6px 11px;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0.07em;
  }

  #page-home .hero h1 {
    max-width: 390px;
    margin-bottom: 14px;
    font-size: clamp(29px, 7.4vw, 36px);
    line-height: 1.14;
  }

  #page-home .hero-copy {
    max-width: 340px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.65;
  }

  #page-home .hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: min(370px, 100%);
  }

  #page-home .hero-buttons .button {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.25;
  }

  #page-home .hero-proof-row,
  #page-home .hero-stats {
    display: none;
  }

  #page-home .hero-visual {
    width: min(250px, 64vw);
    height: min(250px, 64vw);
    margin-top: 4px;
  }

  #page-home .earth {
    width: 82%;
  }

  #page-home .section.light {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  #page-home .section.light .section-heading.centered {
    margin-bottom: 24px;
  }

  #page-home .section.light .section-heading p {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
  }

  #page-home .hx-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: min(388px, 100%);
    max-width: 388px;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  #page-home .hx-row {
    display: contents;
  }

  #page-home .hx-row-1,
  #page-home .hx-row-2 {
    margin: 0;
    transform: none;
  }

  #page-home .hx2 {
    width: 100%;
    min-width: 0;
    flex: none;
    scroll-snap-align: none;
  }

  #page-home .hx2::before {
    padding-bottom: 104%;
  }

  #page-home .hx2-wrap {
    inset: 0;
    border-radius: 16px;
    clip-path: none;
  }

  #page-home .hx2-number {
    top: 10px;
    right: 10px;
    left: auto;
    min-width: 26px;
    min-height: 20px;
    transform: none;
  }

  #page-home .hx2-content {
    gap: 5px;
    padding: 18px 10px 14px;
  }

  #page-home .hx2-icon {
    width: 30px;
    height: 30px;
  }

  #page-home .hx2 h3 {
    max-width: 138px;
    font-size: 12px;
    line-height: 1.3;
  }

  #page-home .hx2 small {
    max-width: 118px;
    min-height: 18px;
    padding: 0 7px;
    overflow: hidden;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.motion-enabled #page-home .hx2.motion-reveal {
    filter: none;
    transition-delay: 0ms !important;
    transition-duration: 0.46s;
  }
}

@media (max-width: 390px) {
  #page-home .hero {
    min-height: 740px;
  }

  #page-home .hero-content,
  #page-home .hero h1,
  #page-home .hero-copy,
  #page-home .hero-kicker {
    max-width: 322px;
  }

  #page-home .hero h1 {
    font-size: 28px;
  }

  #page-home .hero-buttons {
    grid-template-columns: 1fr;
    width: min(318px, 100%);
  }

  #page-home .hero-visual {
    width: min(230px, 66vw);
    height: min(230px, 66vw);
  }

  #page-home .hx-grid {
    gap: 10px;
    width: min(340px, 100%);
  }

  #page-home .hx2 h3 {
    max-width: 124px;
    font-size: 11px;
  }
}

/* Compact footer for desktop-down breakpoints. */
@media (max-width: 1100px) {
  .site-footer {
    padding-top: 34px;
  }

  .footer-conversion {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    width: calc(100% - clamp(32px, 6vw, 72px));
    padding: 22px 24px;
  }

  .footer-eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .footer-conversion h2 {
    max-width: 580px;
    font-size: clamp(21px, 2.6vw, 26px);
  }

  .site-footer .footer-conversion p {
    max-width: 560px;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.55;
  }

  .footer-proof-row {
    gap: 8px;
    margin-top: 12px;
  }

  .footer-proof-row span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  .footer-cta-actions {
    flex-direction: column;
    min-width: 168px;
  }

  .site-footer .button {
    min-height: 36px;
    padding: 7px 14px;
    font-size: 12px;
  }

  .footer-grid {
    grid-template-columns: 0.72fr 0.96fr 1.2fr;
    gap: 26px 34px;
    padding: 34px clamp(18px, 4vw, 40px) 30px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
  }

  .footer-brand,
  .footer-certs {
    margin: 0;
  }

  .footer-grid > div:first-child p {
    max-width: 520px;
    margin: 0;
  }

  .site-footer h3 {
    margin-bottom: 12px;
  }

  .site-footer p,
  .site-footer a {
    margin-bottom: 8px;
    line-height: 1.5;
  }

  .footer-bottom {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

@media (max-width: 860px) {
  .footer-conversion {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-conversion h2,
  .site-footer .footer-conversion p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-proof-row,
  .footer-cta-actions {
    justify-content: center;
  }

  .footer-cta-actions {
    flex-direction: row;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:first-child {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding-top: 26px;
  }

  .footer-conversion {
    margin: 0 16px;
    padding: 18px;
    text-align: left;
  }

  .footer-eyebrow {
    margin-bottom: 7px;
    font-size: 10px;
  }

  .footer-conversion h2 {
    font-size: 20px;
    line-height: 1.25;
  }

  .site-footer .footer-conversion p,
  .footer-proof-row {
    display: none;
  }

  .footer-cta-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .site-footer .footer-conversion .button {
    width: 100%;
    min-height: 40px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 18px;
    padding: 28px 18px 22px;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:first-child {
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    gap: 12px;
    text-align: left;
  }

  .footer-grid > div:first-child p {
    display: none;
  }

  .footer-certs {
    grid-column: 1 / -1;
    gap: 6px;
  }

  .footer-certs span {
    min-height: 26px;
    padding: 0 8px;
    font-size: 10px;
  }

  .site-footer h3 {
    margin-bottom: 9px;
    font-size: 12px;
  }

  .site-footer p,
  .site-footer a {
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.45;
  }

  .footer-bottom {
    gap: 6px;
    padding: 16px 18px;
    font-size: 11px;
  }
}
