:root {
  --background: #eef4fb;
  --foreground: #07182d;
  --primary: #071a33;
  --primary-foreground: #f6fbff;
  --secondary: #123a63;
  --secondary-foreground: #f6fbff;
  --accent: #38bdf8;
  --accent-foreground: #031827;
  --card: #f8fbff;
  --border: rgba(7, 26, 51, 0.12);
  --muted: #dbeafe;
  --muted-foreground: #536a86;
  --shadow: 0 24px 70px rgba(7, 26, 51, 0.16);
  --soft-shadow: 0 16px 44px rgba(7, 26, 51, 0.08);
  --radius-xl: 28px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 0%, rgba(56, 189, 248, 0.22), transparent 27rem),
    linear-gradient(180deg, rgba(7, 26, 51, 0.05), transparent 34rem),
    var(--background);
  color: var(--foreground);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 3vw, 2rem);
  background: rgba(238, 244, 251, 0.88);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(7, 26, 51, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(56, 189, 248, 0.52);
  border-radius: 14px;
  padding: 0.18rem;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
  box-shadow: 0 0 0 1px rgba(7, 26, 51, 0.04);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
}

.brand small {
  color: var(--muted-foreground);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.8rem);
  color: #0b5fa5;
  font-size: 0.88rem;
  font-weight: 700;
}

.main-nav a {
  border-radius: 999px;
  color: #0b5fa5;
  padding: 0.45rem 0.1rem;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.case-card a:hover {
  color: var(--accent);
}

.main-nav .active-link {
  background: rgba(56, 189, 248, 0.12);
  color: #0284c7;
  padding-inline: 0.8rem;
}

.header-cta {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(56, 189, 248, 0.42);
  border-radius: 999px;
  color: #075985;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--accent);
  color: var(--accent-foreground);
  transform: translateY(-1px);
}

main {
  flex: 1;
}

.hero-section,
.section-block,
.final-section {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
}

.bento-grid,
.section-block,
.final-section,
.site-footer {
  width: min(100%, 80rem);
  margin-inline: auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

.hero-primary,
.stat-card,
.service-card,
.trust-band,
.wide-cta,
.case-card,
.trust-grid article,
.final-cta {
  border-radius: var(--radius-xl);
}

.hero-primary {
  position: relative;
  display: grid;
  grid-column: span 8;
  grid-row: span 2;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  gap: clamp(1rem, 3vw, 3rem);
  min-height: 28rem;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(56, 189, 248, 0.22), transparent 19rem),
    linear-gradient(135deg, #06172d 0%, #082242 48%, #0d315c 100%);
  color: var(--primary-foreground);
  box-shadow: var(--shadow);
}

.hero-primary::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -8rem;
  width: 22rem;
  height: 22rem;
  background: var(--accent);
  filter: blur(90px);
  opacity: 0.23;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.eyebrow,
.section-heading span,
.case-card span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(56, 189, 248, 0.42);
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.section-heading h2,
.final-cta h2 {
  font-family: ui-sans-serif, system-ui, sans-serif;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.65rem, 5vw, 5.85rem);
  line-height: 0.95;
}

h1 span {
  color: var(--accent);
}

.hero-copy p {
  max-width: 38rem;
  margin-bottom: 2rem;
  color: rgba(247, 245, 239, 0.78);
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions,
.wide-cta,
.trust-band {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(7, 26, 51, 0.12);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  box-shadow: 0 18px 34px rgba(7, 26, 51, 0.16);
  transform: translateY(-2px);
}

.button-accent {
  padding: 0.95rem 1.45rem;
  background: var(--accent);
  color: var(--accent-foreground);
}

.button-ghost {
  padding: 0.95rem 1.45rem;
  border: 1px solid rgba(247, 245, 239, 0.22);
  color: var(--primary-foreground);
}

.button-ghost:hover {
  background: rgba(247, 245, 239, 0.1);
}

.button-primary {
  width: max-content;
  padding: 0.95rem 1.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
}

.ops-visual {
  position: relative;
  z-index: 1;
  min-height: 22rem;
  align-self: stretch;
}

.radar {
  position: absolute;
  inset: 2rem 0 1rem;
  border: 1px solid rgba(246, 251, 255, 0.16);
  border-radius: 50%;
  background:
    linear-gradient(rgba(246, 251, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 251, 255, 0.08) 1px, transparent 1px);
  background-size: 2.8rem 2.8rem;
  box-shadow: inset 0 0 70px rgba(56, 189, 248, 0.08);
  animation: radarDrift 10s linear infinite;
}

.radar::before,
.radar::after,
.radar span {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.radar::before {
  inset: 18%;
  border: 1px solid rgba(56, 189, 248, 0.38);
  animation: pulseRing 2.8s ease-in-out infinite;
}

.radar::after {
  inset: 36%;
  background: var(--accent);
  box-shadow: 0 0 44px rgba(56, 189, 248, 0.9);
  animation: pulseCore 2.2s ease-in-out infinite;
}

.radar span {
  width: 0.66rem;
  height: 0.66rem;
  background: var(--primary-foreground);
  box-shadow: 0 0 18px rgba(246, 251, 255, 0.84);
  animation: nodeBlink 2.7s ease-in-out infinite;
}

.radar span:nth-child(1) {
  top: 24%;
  left: 22%;
}

.radar span:nth-child(2) {
  right: 17%;
  top: 35%;
  animation-delay: 0.55s;
}

.radar span:nth-child(3) {
  right: 34%;
  bottom: 18%;
  animation-delay: 1.1s;
}

.ops-card {
  position: absolute;
  z-index: 3;
  width: 8.5rem;
  padding: 1rem;
  border: 1px solid rgba(247, 245, 239, 0.18);
  border-radius: 16px;
  background: rgba(247, 245, 239, 0.08);
  backdrop-filter: blur(14px);
}

.ops-card b,
.ops-card small {
  display: block;
}

.ops-card b {
  color: var(--accent);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 1.35rem;
}

.ops-card small {
  color: rgba(247, 245, 239, 0.7);
  font-weight: 800;
  text-transform: uppercase;
}

.card-one {
  top: 7%;
  right: 0;
}

.card-two {
  left: 0;
  bottom: 8%;
}

.route-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.95), transparent);
  transform-origin: left center;
  opacity: 0.82;
  animation: signalFlow 2.7s ease-in-out infinite;
}

.route-a {
  top: 44%;
  left: 12%;
  width: 72%;
  transform: rotate(18deg);
}

.route-b {
  top: 64%;
  left: 16%;
  width: 60%;
  transform: rotate(-24deg);
  animation-delay: 0.7s;
}

.motion-orbit {
  position: absolute;
  z-index: 2;
  inset: 13%;
  border: 1px dashed rgba(56, 189, 248, 0.32);
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
}

.orbit-two {
  inset: 25%;
  border-color: rgba(246, 251, 255, 0.24);
  animation-duration: 12s;
  animation-direction: reverse;
}

.motion-sweep {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.95), transparent);
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.8));
  transform-origin: left center;
  animation: sweepRotate 4.4s linear infinite;
}

.stat-card,
.service-card,
.wide-cta,
.case-card,
.trust-grid article {
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.stat-card {
  position: relative;
  grid-column: span 4;
  display: flex;
  min-height: 12.5rem;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.stat-card strong,
.trust-band strong {
  position: relative;
  z-index: 2;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.5rem, 3vw, 3.6rem);
  line-height: 1;
}

.stat-card span,
.trust-band span {
  position: relative;
  z-index: 2;
  color: var(--muted-foreground);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-dark {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.stat-dark span {
  color: rgba(247, 245, 239, 0.66);
}

.stat-motion::before,
.stat-motion::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.stat-motion::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.16), transparent),
    linear-gradient(rgba(7, 26, 51, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 51, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 2.1rem 2.1rem, 2.1rem 2.1rem;
  transform: translateX(-100%);
  animation: statScan 3.8s ease-in-out infinite;
}

.stat-motion::after {
  right: 1.35rem;
  bottom: 1.15rem;
  width: 4.6rem;
  height: 4.6rem;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 50%;
  box-shadow: inset 0 0 28px rgba(56, 189, 248, 0.08);
  animation: statPulse 2.9s ease-in-out infinite;
}

.stat-motion strong {
  animation: statNumberGlow 2.6s ease-in-out infinite;
}

.stat-dark::before {
  background:
    linear-gradient(90deg, transparent, rgba(246, 251, 255, 0.16), transparent),
    linear-gradient(rgba(246, 251, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 251, 255, 0.07) 1px, transparent 1px);
  background-size: 100% 100%, 2.1rem 2.1rem, 2.1rem 2.1rem;
}

.stat-dark::after {
  border-color: rgba(246, 251, 255, 0.28);
}

.stat-display {
  position: absolute;
  inset: 1rem;
  z-index: 1;
  pointer-events: none;
}

.stat-display i {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.75);
  opacity: 0.72;
  animation: statNodeFloat 3.2s ease-in-out infinite;
}

.stat-display i:nth-child(1) {
  top: 18%;
  right: 20%;
}

.stat-display i:nth-child(2) {
  right: 38%;
  bottom: 22%;
  animation-delay: 0.55s;
}

.stat-display i:nth-child(3) {
  right: 12%;
  bottom: 42%;
  animation-delay: 1.1s;
}

.service-card {
  grid-column: span 3;
  display: block;
  min-height: 14.5rem;
  padding: 1.5rem;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: rgba(56, 189, 248, 0.78);
  box-shadow: 0 18px 46px rgba(16, 35, 31, 0.08);
  transform: translateY(-3px);
}

.icon-box {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--muted);
  color: var(--primary);
  transition: background 180ms ease, color 180ms ease;
}

.service-card:hover .icon-box {
  background: var(--accent);
  color: var(--accent-foreground);
}

.icon-box svg,
.check-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h2 {
  margin-bottom: 0.65rem;
  color: var(--primary);
  font-size: 1.12rem;
}

.service-card p,
.wide-cta p,
.case-card p,
.trust-grid p,
.final-cta p {
  color: var(--muted-foreground);
  line-height: 1.65;
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.trust-band {
  grid-column: span 4;
  justify-content: space-between;
  min-height: 10rem;
  padding: 2rem;
  background: var(--accent);
  color: var(--accent-foreground);
}

.trust-band span {
  color: rgba(17, 20, 15, 0.72);
}

.trust-band small {
  display: block;
  margin-top: 0.45rem;
  color: rgba(17, 20, 15, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.certs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
  max-width: 8rem;
}

.certs small {
  flex-basis: 100%;
  color: rgba(17, 20, 15, 0.65);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
}

.certs span {
  padding: 0.38rem 0.55rem;
  border-radius: 8px;
  background: rgba(17, 20, 15, 0.09);
  color: var(--accent-foreground);
  font-size: 0.65rem;
  font-weight: 900;
}

.wide-cta {
  grid-column: span 8;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 10rem;
  padding: 2rem;
}

.wide-cta h2 {
  margin-bottom: 0.35rem;
  color: var(--primary);
  font-size: 1.35rem;
}

.wide-cta p {
  margin-bottom: 0;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
}

.section-heading h2,
.section-heading h1 {
  margin: 0.45rem 0 0;
  color: var(--primary);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.06;
}

.standalone-page {
  padding-top: clamp(2rem, 4vw, 3.25rem);
  min-height: 58vh;
}

.standalone-grid {
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

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

.standalone-card {
  grid-column: auto;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

.case-card {
  grid-column: span 3;
  min-height: 20rem;
  padding: 2rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.case-card:hover,
.trust-grid article:hover,
.standalone-card:hover {
  border-color: rgba(56, 189, 248, 0.46);
  box-shadow: 0 22px 54px rgba(7, 26, 51, 0.12);
  transform: translateY(-3px);
}

.case-large {
  grid-column: span 6;
}

.case-card h3 {
  margin: 0.75rem 0;
  color: var(--primary);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.case-card p {
  margin-bottom: 1.5rem;
}

.case-card a {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--accent);
  font-weight: 800;
}

.case-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.case-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.case-primary h3,
.case-secondary h3 {
  color: inherit;
}

.case-primary p,
.case-secondary p {
  color: rgba(247, 245, 239, 0.7);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

.trust-grid article {
  display: flex;
  gap: 1rem;
  min-height: 10.5rem;
  padding: 1.5rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.check-icon {
  display: grid;
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  color: var(--accent);
}

.trust-grid h3 {
  margin-bottom: 0.4rem;
  color: var(--primary);
  font-size: 1rem;
}

.trust-grid p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.leadership-card {
  display: grid;
  grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.96)),
    var(--card);
  box-shadow: 0 24px 70px rgba(7, 26, 51, 0.12);
}

.leader-profile {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding-right: clamp(0rem, 2vw, 2rem);
  border-right: 1px solid var(--border);
}

.leader-photo {
  position: relative;
  width: min(100%, 20rem);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.32);
  border-radius: 20px;
  background: var(--muted);
  box-shadow: 0 18px 46px rgba(16, 35, 31, 0.12);
}

.leader-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: inherit;
  pointer-events: none;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 22%;
}

.leader-kicker {
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.leader-profile h2,
.leader-profile h3 {
  margin-bottom: 0.65rem;
  color: var(--primary);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
}

.leadership-page {
  padding-top: clamp(2rem, 4vw, 3.25rem);
}

.leader-role {
  margin-bottom: 0;
  color: var(--secondary);
  font-weight: 800;
  line-height: 1.55;
}

.leader-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.leader-credentials span {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(56, 189, 248, 0.26);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.09);
  color: #075985;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leader-bio {
  columns: 2 19rem;
  column-gap: clamp(1.5rem, 3vw, 2.5rem);
}

.leader-bio p {
  break-inside: avoid;
  margin-bottom: 1rem;
  color: #435a78;
  line-height: 1.75;
}

.leader-bio p:first-child {
  color: var(--primary);
  font-size: 1.03rem;
  font-weight: 650;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.55fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--primary);
  color: var(--primary-foreground);
  overflow: hidden;
}

.final-cta h1,
.final-cta h2 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  line-height: 1;
}

.final-cta p {
  max-width: 42rem;
  color: rgba(247, 245, 239, 0.78);
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  align-self: center;
  padding: 1.25rem;
  border: 1px solid rgba(247, 245, 239, 0.16);
  border-radius: 20px;
  background: rgba(247, 245, 239, 0.08);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-form span {
  color: rgba(247, 245, 239, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select {
  min-height: 3rem;
  width: 100%;
  border: 1px solid rgba(247, 245, 239, 0.16);
  border-radius: 10px;
  outline: none;
  padding: 0 0.9rem;
  background: rgba(247, 245, 239, 0.94);
  color: var(--primary);
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.22);
}

.site-footer {
  display: block;
  padding: clamp(2rem, 4vw, 3rem) 2rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.35), rgba(219, 234, 254, 0.62));
  color: var(--muted-foreground);
  font-size: 0.88rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(16rem, 1.35fr) repeat(3, minmax(10rem, 0.7fr));
  gap: clamp(1.5rem, 3vw, 3rem);
}

.footer-company p {
  max-width: 23rem;
  margin: 1rem 0 0;
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.55;
}

.footer-company .founded-line {
  margin-top: 0.45rem;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  display: block;
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(56, 189, 248, 0.52);
  border-radius: 16px;
  padding: 0.22rem;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
  box-shadow: 0 0 0 1px rgba(7, 26, 51, 0.04);
}

.footer-brand span {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  font-style: normal;
}

.footer-column h2 {
  margin: 0 0 0.35rem;
  color: var(--primary);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: var(--muted-foreground);
  line-height: 1.45;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-contact a,
.footer-contact span {
  max-width: 15rem;
}

@keyframes radarDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 2.8rem 2.8rem, 2.8rem 2.8rem;
  }
}

@keyframes pulseRing {
  0%,
  100% {
    opacity: 0.56;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes pulseCore {
  0%,
  100% {
    opacity: 0.88;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes nodeBlink {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes signalFlow {
  0%,
  100% {
    opacity: 0.28;
    filter: drop-shadow(0 0 0 rgba(56, 189, 248, 0));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.82));
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sweepRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes statScan {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-105%);
  }
  18%,
  70% {
    opacity: 1;
  }
  82% {
    opacity: 0;
    transform: translateX(105%);
  }
}

@keyframes statPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes statNumberGlow {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(56, 189, 248, 0);
    transform: translateY(0);
  }
  50% {
    text-shadow: 0 0 18px rgba(56, 189, 248, 0.38);
    transform: translateY(-2px);
  }
}

@keyframes statNodeFloat {
  0%,
  100% {
    opacity: 0.38;
    transform: translateY(0) scale(0.88);
  }
  50% {
    opacity: 1;
    transform: translateY(-0.55rem) scale(1.15);
  }
}

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

@media (max-width: 1060px) {
  .hero-primary {
    grid-column: span 12;
  }

  .stat-card {
    grid-column: span 6;
  }

  .service-card {
    grid-column: span 6;
  }

  .trust-band,
  .wide-cta {
    grid-column: span 12;
  }

  .case-large,
  .case-card {
    grid-column: span 12;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .header-cta {
    display: none;
  }

  .hero-primary {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ops-visual {
    min-height: 17rem;
  }

  .stat-card,
  .service-card {
    grid-column: span 12;
  }

  .wide-cta,
  .trust-band {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .button-primary {
    width: 100%;
  }

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

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

  .leadership-card {
    grid-template-columns: 1fr;
  }

  .leader-profile {
    padding-right: 0;
    padding-bottom: 1.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .final-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .hero-primary,
  .stat-card,
  .service-card,
  .trust-band,
  .wide-cta,
  .case-card,
  .trust-grid article,
  .leadership-card,
  .final-cta {
    border-radius: 20px;
  }

  .hero-primary,
  .final-cta {
    padding: 1.35rem;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .ops-card {
    width: 7.4rem;
  }
}
