/* ════════════════════════════════════════════════════════════
   AJAIA — Homepage  (V2)
   Centered hero · futuristic AI globe · AI Transformation Model
   Brand: navy #001D6B · sky #97C2F8 · paper #F1F7FF · Poppins
   ════════════════════════════════════════════════════════════ */
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins.woff2") format("woff2-variations"),
       url("fonts/Poppins.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat.woff2") format("woff2-variations"),
       url("fonts/Montserrat.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter.woff2") format("woff2-variations"),
       url("fonts/Inter.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fragment Mono";
  src: url("fonts/Fragment_Mono.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy:        #001d6b;
  --navy-2:      #001244;
  --navy-3:      #00091f;
  --navy-4:      #00060f;
  --sky:         #97c2f8;
  --sky-soft:    #c4dcfb;
  --paper:       #f1f7ff;
  --muted:       #aebfe2;
  --muted-2:     #8093c4;
  --ink-subtle:  #6b7280;
  --ink-700:     #0b2e8e;
  --line:        rgba(151,194,248,0.14);
  --line-2:      rgba(151,194,248,0.26);
  --accent-h:    210;                 /* hue driven by Tweaks   */
  --accent:      hsl(var(--accent-h) 90% 70%);
  --accent-bright: hsl(var(--accent-h) 100% 78%);
  --sky-50:      #f1f7ff;
  --ink-ink:     #1b1c1c;
  --ink-muted:   #272d3b;
  --cream-100:   #f8f4e8;
  --ink-900:     #001d6b;
  --sky-400:     #97c2f8;
  --font-head:   "Poppins", system-ui, sans-serif;
  --font-sans:    "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:    "Fragment Mono", "Inter", "SF Mono", ui-monospace, Menlo, monospace;
  --fs-display:  72px;
  --fs-hero:     64px;
  --fs-h1:       52px;
  --fs-h2:       44px;
  --fs-h3:       30px;
  --fs-h4:       22px;
  --fs-h5:       18px;
  --fs-body-lg:  17.5px;
  --fs-body:     16px;
  --fs-body-sm:  14px;
  --fs-eyebrow:  13px;
  --fs-nav:      13.5px;
  --lh-display:  1.06;
  --lh-h1:       1.10;
  --lh-h2:       1.10;
  --lh-h3:       1.26;
  --lh-h4:       1.36;
  --lh-body:     1.6;
  --tr-display:  -0.025em;
  --tr-hero:     -0.03em;
  --tr-h1:       -0.025em;
  --tr-h2:       -0.025em;
  --tr-h3:       -0.02em;
  --tr-h4:       -0.01em;
  --tr-body:     -0.002em;
  --tr-eyebrow:  0.12em;
  --glow:        1;
  --ease:        cubic-bezier(.22,.61,.36,1);
  --ease-out:    cubic-bezier(.16,1,.3,1);
  --ds-ease:     cubic-bezier(0.32, 0.72, 0, 1);   /* design-system motion */
  --ds-dur:      180ms;
  --maxw:        1240px;
  --nav-h:       72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 18px); }
body {
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--navy-3);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(var(--maxw), 100% - 80px); margin-inline: auto; }

/* ── reveal ── */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 80ms);
}
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ════════════════ NAV (design-system) ════════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--nav-h);
  background: rgba(0,0,0,0.60);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .4s var(--ease), border-color .4s;
}
.nav.is-stuck {
  background: rgba(0,0,0,0.72);
  border-bottom-color: rgba(255,255,255,0.1);
}
.nav__inner {
  width: min(1600px, 100% - 128px); margin-inline: auto;
  height: var(--nav-h); display: flex; align-items: center; gap: 48px;
}
.nav__logo img { height: 32px; width: auto; display: block; }
.nav__links {
  display: flex; gap: 32px; margin-left: 24px;
  font-size: 14px; font-weight: 500; letter-spacing: -.005em;
  color: rgba(255,255,255,0.85);
}
.nav__links a { position: relative; padding: 6px 0; transition: color .18s var(--ease); }
.nav__links a:hover { color: var(--sky); }
.nav__cta { margin-left: auto; }

/* ── Ajaia split CTA (design-system) ── */
.aj-cta {
  display: inline-flex; align-items: stretch; text-decoration: none;
  border-radius: 0; position: relative; overflow: hidden; cursor: pointer;
  transition: transform var(--ds-dur) var(--ds-ease), filter var(--ds-dur) var(--ds-ease);
}
.aj-cta:hover { transform: translateY(-1px); filter: brightness(1.04); }
.aj-cta__label {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; padding: 0 14px;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: 15px;
  line-height: 1; letter-spacing: -.01em; white-space: nowrap;
}
.aj-cta__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; width: 38px;
}
.aj-cta--lg .aj-cta__label { height: 56px; padding: 0 24px; font-size: 17px; }
.aj-cta--lg .aj-cta__arrow { height: 56px; width: 56px; }
.aj-cta--md .aj-cta__label { height: 48px; padding: 0 20px; }
.aj-cta--md .aj-cta__arrow { height: 48px; width: 49px; }
/* primary: sky-400 bg, navy text */
.aj-cta--primary .aj-cta__label { background: var(--sky); color: var(--navy); }
.aj-cta--primary .aj-cta__arrow { background: var(--sky); color: var(--navy); border-left: 1px solid rgba(0,29,107,0.15); }
/* dark: navy bg, white text */
.aj-cta--dark .aj-cta__label { background: var(--navy); color: #fff; }
.aj-cta--dark .aj-cta__arrow { background: var(--navy); color: #fff; border-left: 1px solid rgba(255,255,255,0.18); }
/* outline on dark */
.aj-cta--outline .aj-cta__label { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.30); border-right: none; }
.aj-cta--outline .aj-cta__arrow { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.30); border-left: 1px solid rgba(255,255,255,0.30); }

/* ════════════════ shared ════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sky);
}
.eyebrow--center { justify-content: center; }
.eyebrow__dot {
  width: 7px; height: 7px; background: var(--accent);
  box-shadow: 0 0 12px 2px hsl(var(--accent-h) 95% 65% / calc(.8 * var(--glow)));
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0%,100%{ opacity:.5; transform:scale(.8);} 50%{ opacity:1; transform:scale(1.15);} }

.sec-title {
  font-family: "Poppins", system-ui, sans-serif; font-weight: 700; letter-spacing: -.025em;
  font-size: clamp(32px, 3.6vw, 48px); line-height: 1.06; margin: 18px 0 16px;
  color: #fff; text-wrap: balance;
}
.sec-title--sm { font-size: clamp(26px, 3vw, 40px); }
.sec-sub { font-size: 18px; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ════════════════════════════════════════════════════════════
   HERO — centered, globe horizon
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  padding: calc(var(--nav-h) + 64px) 0 0;
  display: flex; flex-direction: column;
  background:
    radial-gradient(120% 80% at 50% -10%, #0a2a86 0%, transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  overflow: hidden; isolation: isolate;
}
#globe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
/* veil keeps the headline crisp over the globe glow */
.hero__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(80% 55% at 50% 26%, rgba(0,9,31,.55) 0%, transparent 70%);
}
/* soft shadow that grounds the globe — no bright gradient line */
.hero__glowline {
  position: absolute; left: 0; right: 0; bottom: 0; height: 34%; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 100% at 50% 130%, rgba(0,0,0,.55) 0%, rgba(0,5,20,.32) 38%, transparent 70%);
  filter: blur(2px); opacity: .9;
}

.hero__inner {
  position: relative; z-index: 3;
  width: min(960px, 100% - 64px); margin: 0 auto;
  text-align: center;
  padding-top: clamp(10px, 4vh, 56px);
}
.hero__title {
  font-family: "Poppins", system-ui, sans-serif; font-weight: 700; letter-spacing: -.035em;
  font-size: clamp(40px, 6vw, 78px); line-height: 1.02; margin: 24px 0 22px;
}
.hero__title .line { display: block; }
.hero__title .w { display: inline-block; opacity: 0; transform: translateY(22px) rotateX(40deg); transform-origin: bottom; }
.hero__title.is-in .w { animation: wordIn .82s var(--ease-out) forwards; animation-delay: calc(var(--wi,0) * 90ms); }
@keyframes wordIn { to { opacity: 1; transform: none; } }
.hero__title .grad {
  background: linear-gradient(100deg, var(--sky) 0%, var(--accent-bright) 45%, #eaf3ff 70%, var(--sky) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: sheen 7s linear infinite;
}
@keyframes sheen { to { background-position: 220% 0; } }
@media (prefers-reduced-motion: reduce) {
  .hero__title .w { opacity: 1; transform: none; animation: none; }
  .hero__title .grad { animation: none; }
}

.hero__desc {
  font-size: 18px; line-height: 1.62; color: var(--sky-soft); font-weight: 300;
  max-width: 660px; margin: 0 auto;
}

/* ── service cards ── */
.cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  max-width: 800px; margin: 40px auto 0;
}
.card {
  position: relative; isolation: isolate;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; min-height: 68px;
  background: linear-gradient(165deg, rgba(18,48,112,0.98), rgba(6,22,66,0.98));
  border: 1px solid var(--line-2);
  box-shadow: 0 20px 50px -28px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s, background .4s;
  text-align: left; overflow: hidden;
}
/* animated conic border on hover */
.card__border {
  position: absolute; inset: -1px; z-index: -1; opacity: 0; pointer-events: none;
  background: conic-gradient(from 0deg, transparent 0deg, hsl(var(--accent-h) 95% 72% / .9) 60deg, transparent 130deg, transparent 240deg, hsl(var(--accent-h) 95% 80% / .7) 300deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; padding: 1px;
  transition: opacity .4s; animation: spinborder 5s linear infinite;
}
@keyframes spinborder { to { transform: rotate(360deg); } }
.card__ico {
  flex: 0 0 auto; width: 34px; height: 34px; display: grid; place-items: center;
  color: var(--accent);
  background: rgba(151,194,248,0.08);
  border: 1px solid var(--line-2);
  transition: transform .45s var(--ease-out), color .4s, background .4s;
}
.card__ico svg { width: 19px; height: 19px; }
.card__label { font-size: 14.5px; font-weight: 600; line-height: 1.16; color: #eef5ff; letter-spacing: -.01em; }
.card__arrow {
  margin-left: auto; color: var(--accent); font-size: 18px;
  opacity: 0; transform: translateX(-6px); transition: opacity .4s, transform .4s var(--ease-out);
}
.card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  background: linear-gradient(165deg, rgba(24,58,134,1), rgba(8,28,80,0.98));
  box-shadow: 0 36px 70px -34px hsl(var(--accent-h) 90% 55% / calc(.7 * var(--glow))), inset 0 1px 0 rgba(255,255,255,.1);
}
.card:hover .card__border { opacity: 1; }
.card:hover .card__ico { transform: translateY(-3px) scale(1.06); color: #fff; background: hsl(var(--accent-h) 90% 60% / .22); }
.card:hover .card__arrow { opacity: 1; transform: translateX(0); }

/* scroll hint */
.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted-2);
}
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(var(--accent), transparent); animation: scrolly 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes scrolly { 0%{ transform: scaleY(0); opacity:0;} 40%{opacity:1;} 100%{ transform: scaleY(1); opacity:0;} }

/* ════════════════════════════════════════════════════════════
   STATS BAND (navy)
   ════════════════════════════════════════════════════════════ */
.stats {
  background: var(--navy);
  padding: 18px 0;
}
.stats__inner {
  width: min(1600px, 100% - 96px); margin-inline: auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.stat {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 26px 34px;
  display: flex; flex-direction: column; gap: 4px;
}
.stat__num {
  font-family: "Poppins", sans-serif; font-weight: 700; color: #fff;
  font-size: clamp(36px, 4.2vw, 58px); line-height: 1; letter-spacing: -.03em;
  display: flex; align-items: flex-start;
}
.stat__pre { font-size: .62em; font-weight: 700; margin-right: 1px; align-self: flex-start; line-height: 1.05; }
.stat__suf { font-size: .46em; font-weight: 700; margin-left: 3px; align-self: flex-start; line-height: 1.4; letter-spacing: 0; }
.stat__cap { font-size: 15px; font-weight: 500; color: var(--sky-soft); letter-spacing: -.005em; }

/* ════════════════════════════════════════════════════════════
   AI TRANSFORMATION MODEL
   ════════════════════════════════════════════════════════════ */
.tmodel {
  position: relative; padding: 132px 0 150px;
  background: linear-gradient(180deg, var(--navy-3) 0%, var(--navy-4) 100%);
  overflow: hidden;
  scroll-margin-top: var(--nav-h);
}
/* light variant — white background, navy text */
.tmodel--light {
  background: #fff; padding: 56px 0 56px;
}
.tmodel__ambient {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(46% 36% at 78% 30%, hsl(var(--accent-h) 90% 50% / calc(.18 * var(--glow))), transparent 70%),
    radial-gradient(40% 50% at 10% 80%, hsl(var(--accent-h) 80% 45% / calc(.08 * var(--glow))), transparent 70%);
}
.tmodel--light .tmodel__ambient { display: none; }

/* centered header with logo */
.tmodel__head { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.tmodel__titlerow {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.tmodel__logo { height: 34px; width: auto; }
.sec-title--ink { color: var(--navy); }
.sec-sub--ink { color: var(--ink-subtle); margin-top: 8px; }

.tmodel__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: center;
}

/* ── left: stepper (temple-piece marks) ── */
.tmodel__copy { max-width: 560px; }
.steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.step {
  position: relative; padding: 20px 0 20px 60px; min-height: 40px;
  border-top: 1px solid rgba(0,29,107,0.09);
  transition: transform .4s var(--ease-out);
}
.step:first-child { border-top: none; }
/* connecting rail behind the marks */
.step::before {
  content: ""; position: absolute; left: 20px; top: -1px; bottom: 0; width: 1px;
  background: rgba(0,29,107,0.12);
}
.step:first-child::before { top: 50%; }
.step:last-child::before { bottom: 50%; }
.step__mark {
  position: absolute; left: 4px; top: 22px; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0,29,107,0.1), 0 6px 16px -8px rgba(0,29,107,0.25);
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.step__mark svg { display: block; }
.step.is-active .step__mark {
  transform: scale(1.12);
  box-shadow: 0 0 0 1px rgba(0,29,107,0.18), 0 0 0 5px rgba(151,194,248,0.22), 0 10px 22px -8px rgba(0,29,107,0.4);
}
.step__body { display: flex; flex-direction: column; gap: 5px; }
.step__top { display: flex; align-items: baseline; gap: 12px; }
.step__no {
  font-family: "Fragment Mono", "Poppins", monospace; font-weight: 500;
  font-size: 13px; letter-spacing: .04em; color: var(--sky-500, #2a6fdb);
  line-height: 1; transition: color .3s;
}
.step.is-active .step__no { color: var(--ink-700); }
.step__title {
  font-family: "Poppins", sans-serif; font-weight: 600; letter-spacing: -.012em;
  font-size: 20px; line-height: 1.18; color: var(--navy); margin: 0;
  transition: color .3s;
}
.step__desc { font-size: 14.5px; color: var(--ink-subtle); line-height: 1.5; font-weight: 400; max-width: 400px; margin: 0; }
.step.is-active .step__title { color: var(--ink-700); }

/* ── right: animated AI temple (3 pillars) ── */
.stage {
  position: relative; width: 100%; min-height: 480px;
  display: grid; place-items: center; padding: 10px;
}
.temple {
  width: min(100%, 560px); height: auto; overflow: visible;
  animation: templeFloat 9s var(--ease) infinite;
}
@keyframes templeFloat { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }

/* every part starts hidden; reveals when the stage scrolls in */
.temple .t-part { opacity: 0; }
.temple .glow-base { opacity: 0; }

.stage.is-in .temple .stylobate { animation: tRiseUp .7s var(--ease-out) .05s forwards; }
.stage.is-in .temple .col { animation: tGrow .8s var(--ease-out) forwards; }
.stage.is-in .temple .col-1 { animation-delay: .22s; }
.stage.is-in .temple .col-2 { animation-delay: .36s; }
.stage.is-in .temple .col-3 { animation-delay: .50s; }
.stage.is-in .temple .entablature { animation: tRiseUp .7s var(--ease-out) .72s forwards; }
.stage.is-in .temple .pediment { animation: tDropIn .8s var(--ease-out) .86s forwards; }
.stage.is-in .temple .glow-base { animation: tFadeGlow 1s ease-out 1.1s forwards; }

@keyframes tGrow {
  from { opacity: 0; transform: scaleY(0.04); }
  to   { opacity: 1; transform: scaleY(1); }
}
@keyframes tRiseUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tDropIn {
  from { opacity: 0; transform: translateY(-26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tFadeGlow { to { opacity: 1; } }

/* columns scale from their own base */
.temple .col { transform-box: fill-box; transform-origin: 50% 100%; }
.temple .stylobate, .temple .entablature, .temple .pediment { transform-box: fill-box; }

/* fluting + structural strokes */
.temple .flute { stroke: rgba(255,255,255,0.22); stroke-width: 1; }
.temple .edge  { stroke: rgba(255,255,255,0.16); stroke-width: 1; }

/* rising light sweep inside each shaft (continuous) */
.temple .sweep { transform-box: fill-box; transform-origin: 50% 50%; mix-blend-mode: screen; opacity: 0; }
.stage.is-in .temple .sweep { animation: tSweep 3.6s linear infinite; }
.stage.is-in .temple .sweep-2 { animation-delay: 1.2s; }
.stage.is-in .temple .sweep-3 { animation-delay: 2.4s; }
@keyframes tSweep {
  0%   { transform: translateY(86px); opacity: 0; }
  18%  { opacity: .9; }
  82%  { opacity: .9; }
  100% { transform: translateY(-86px); opacity: 0; }
}

/* energy sparks rising up the columns (continuous) */
.temple .spark { transform-box: fill-box; transform-origin: 50% 50%; opacity: 0; }
.stage.is-in .temple .spark { animation: tSpark 2.8s var(--ease) infinite; }
@keyframes tSpark {
  0%   { transform: translateY(80px) scale(.6); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(-78px) scale(1); opacity: 0; }
}

/* capital top-light pulse */
.temple .capglow { mix-blend-mode: screen; opacity: 0; }
.stage.is-in .temple .capglow { animation: tCapPulse 3.2s var(--ease) infinite; }
@keyframes tCapPulse { 0%,100%{ opacity: .25; } 50%{ opacity: .8; } }

/* active sync: a stepper stage lights its matching part */
.temple .col { transition: filter .45s var(--ease); }
.temple .col.is-active { filter: drop-shadow(0 0 12px hsl(var(--accent-h) 95% 62% / .9)) brightness(1.12); }
.temple .frame { transition: filter .45s var(--ease); }
.temple.is-foundation .frame { filter: drop-shadow(0 0 12px hsl(var(--accent-h) 95% 62% / .85)) brightness(1.1); }

/* hover affordance on columns */
.temple .col { cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  .temple, .temple .t-part, .temple .glow-base, .temple .sweep, .temple .spark, .temple .capglow {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
  .temple .sweep, .temple .spark { opacity: 0 !important; }
}

/* ════════════════ AI TRANSFORMATION MODEL — centered monument ════════════════ */
.sec { position: relative; overflow: hidden; }
.tmpl {
  position: relative; min-height: 100vh; color: #fff; display: flex;
  background:
    radial-gradient(900px 540px at 50% 64%, rgba(46,86,180,.34), transparent 60%),
    radial-gradient(1100px 600px at 50% 0%, rgba(11,46,142,.34), transparent 58%),
    linear-gradient(180deg, #020a24 0%, #03113c 54%, #020a24 100%);
  overflow: hidden; isolation: isolate;
  scroll-margin-top: var(--nav-h);
}
.tmpl::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image: radial-gradient(rgba(151,194,247,.12) 1px, transparent 1.5px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 26%, #000 74%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 26%, #000 74%, transparent);
}
.tmpl__stack {
  position: relative; z-index: 2; margin: auto; width: 100%; max-width: 1040px;
  text-align: center; padding: clamp(96px,12vh,140px) clamp(24px,4vw,60px) clamp(56px,8vh,96px);
}
.tmpl__brandrow { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.tmpl__brandrow img { height: 26px; width: auto; }
.tmpl__eb {
  font-family: "Fragment Mono", monospace; font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sky);
  padding: 5px 12px; border: 1px solid rgba(151,194,247,.3); border-radius: 999px;
  background: rgba(151,194,247,.06); white-space: nowrap;
}
.tmpl__title {
  font-family: "Poppins", system-ui, sans-serif; font-size: clamp(34px,4.8vw,60px);
  line-height: 1.04; letter-spacing: -.025em; font-weight: 700; margin: 0 0 14px; color: #fff;
}
.tmpl__title-logo {
  display: inline-block;
  width: auto;
  height: .72em;
  margin-right: .28em;
  transform: translateY(.07em);
  vertical-align: baseline;
}
.tmpl__title .ac { color: var(--sky); }
.tmpl__sub {
  font-size: clamp(15px,1.25vw,18px); line-height: 1.55; color: var(--sky-soft);
  max-width: 600px; margin: 0 auto clamp(30px,5vh,52px); font-weight: 300;
}

.tmpl .temple { position: relative; width: min(580px, 96%); margin: 0 auto; animation: none; overflow: visible; }
.tmpl .temple .strategyTag {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
  padding: 8px 16px; border-radius: 999px; white-space: nowrap; max-width: 100%; text-decoration: none;
  background: rgba(151,194,247,.1); border: 1px solid rgba(151,194,247,.3);
  font-size: clamp(11px,1.1vw,13px); font-weight: 600; color: #fff;
  transition: background .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.tmpl .temple .strategyTag:hover { background: rgba(151,194,247,.2); transform: translateY(-1px); border-color: rgba(151,194,247,.5); }
.tmpl .temple .strategyTag b { color: var(--sky); font-family: "Fragment Mono", monospace; font-weight: 600; }
.tmpl .temple .strategyTag .tri { width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 11px solid var(--sky); }
.tmpl .temple .pediment {
  position: relative; width: 100%; height: clamp(80px,12vw,128px); transform-origin: 50% 100%;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, #1c3f8e, #0a2466);
  box-shadow: inset 0 2px 0 rgba(151,194,247,.55);
}
.tmpl .temple .pediment::after { display: none; }
.tmpl .temple .beam {
  height: clamp(18px,2.2vw,26px); width: 100%; margin-top: 3px; border-radius: 2px;
  background: linear-gradient(180deg, #1b3f93, #0c2a72); box-shadow: inset 0 1px 0 rgba(151,194,247,.4);
}
.tmpl .temple .cols { display: flex; justify-content: space-between; gap: clamp(14px,3vw,36px); padding: 0 clamp(10px,2.4vw,26px); margin-top: 6px; }
.tmpl .temple .slot { position: relative; flex: 1; height: clamp(186px,28vw,278px); }
.tmpl .temple .col {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  clip-path: inset(0 0 0 0); text-decoration: none; transform: none; filter: none;
}
.tmpl .temple .capital, .tmpl .temple .cbase {
  position: relative; flex: none; border-radius: 6px;
  background: linear-gradient(180deg, #1c3f8e 0%, #123174 54%, #0a2466 100%);
  border: 4px solid #173782;
  box-shadow: inset 0 1px 0 rgba(151,194,247,.34), 0 10px 22px -18px color-mix(in srgb, var(--pc) 55%, #000);
}
.tmpl .temple .capital { width: 128%; height: 20px; margin-bottom: 3px; }
.tmpl .temple .capital::after {
  content: ""; position: absolute; left: 10%; right: 10%; top: calc(100% + 3px);
  height: 15px; border-radius: 0 0 6px 6px;
  background: linear-gradient(180deg, #1b3f93 0%, #102d70 58%, #0a2466 100%);
  border: 4px solid #173782;
  border-top: 0;
}
.tmpl .temple .cbase { width: 106%; height: 24px; margin-top: 8px; }
.tmpl .temple .cbase::after {
  content: ""; position: absolute; left: -16%; right: -16%; top: calc(100% + 5px);
  height: 24px; border-radius: 7px;
  background: linear-gradient(180deg, #1b3f93 0%, #102d70 58%, #091f5e 100%);
  border: 5px solid #173782;
}
.tmpl .temple .shaft {
  position: relative; flex: 1; width: 78%; margin: 15px 0 0; border-radius: 0; overflow: visible;
  background: transparent; box-shadow: none; transition: filter .3s var(--ease);
}
.tmpl .temple .shaft::before {
  content: ""; position: absolute; inset: 0 auto 0 4%; width: 38%;
  background: linear-gradient(180deg, #1c3f8e 0%, #143476 48%, #0a2466 100%);
  border-left: 5px solid #173782;
  border-right: 5px solid #173782;
  box-shadow: inset 0 1px 0 rgba(151,194,247,.2), inset 10px 0 16px rgba(151,194,247,.045);
}
.tmpl .temple .shaft::after {
  content: ""; position: absolute; inset: 0 4% 0 auto; width: 38%;
  background: linear-gradient(180deg, #1c3f8e 0%, #143476 48%, #0a2466 100%);
  border-left: 5px solid #173782;
  border-right: 5px solid #173782;
  box-shadow: inset 0 1px 0 rgba(151,194,247,.2), inset 10px 0 16px rgba(151,194,247,.045);
  pointer-events: none;
}
.tmpl .temple .shaft .glowedge { z-index: 2; }
.tmpl .temple .shaft > .glowedge::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0 8%, #b6d4fa 8% 46%, transparent 46% 54%, #b6d4fa 54% 92%, transparent 92%);
}
.tmpl .temple .glowedge {
  position: absolute; left: -4%; right: -4%; height: 3px; top: 0; border-radius: 3px; opacity: 0;
  background: #b6d4fa; box-shadow: 0 0 16px 4px color-mix(in srgb, var(--pc) 75%, transparent);
}
.tmpl .temple .base {
  height: clamp(20px,2.6vw,30px); width: 108%; margin: 5px -4% 0; border-radius: 3px;
  background: linear-gradient(180deg, #1b3f93, #091f5e);
  box-shadow: 0 24px 50px -18px rgba(0,0,0,.7), inset 0 1px 0 rgba(151,194,247,.4);
}
.tmpl .temple .labels {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px,2vw,24px);
  margin: clamp(22px,3vh,34px) auto 0; width: 100%; padding: 0 clamp(10px,2.4vw,26px);
}
.tmpl .temple .lab { text-align: center; text-decoration: none; transition: transform .25s var(--ease); }
.tmpl .temple .lab .ln { font-family: "Fragment Mono", monospace; font-size: 12px; color: var(--pc); font-weight: 600; }
.tmpl .temple .lab .lt { font-family: "Poppins", system-ui, sans-serif; font-size: clamp(13px,1.15vw,16px); font-weight: 600; margin: 4px 0 3px; line-height: 1.25; letter-spacing: -.01em; color: #eef5ff; }
.tmpl .temple .lab .ld { font-size: 12.5px; color: var(--sky-soft); opacity: .75; line-height: 1.4; }
.tmpl .temple .lab:hover { transform: translateY(-3px); }
.tmpl .temple .lab:hover .lt { color: #fff; }
.tmpl.play .strategyTag { animation: tmplTagIn .55s var(--ease) both; }
.tmpl.play .pediment { animation: tmplPed .75s var(--ease) both .15s; }
.tmpl.play .beam { animation: tmplFadeUp .45s var(--ease) both .5s; }
.tmpl.play .base { animation: tmplFadeUp .45s var(--ease) both .55s; }
.tmpl.play .col { animation: tmplGrow .8s var(--ease) both; animation-delay: var(--cdelay); }
.tmpl.play .glowedge { animation: tmplEdge .8s var(--ease) both; animation-delay: var(--cdelay); }
.tmpl.play .lab { animation: tmplFadeUp .5s var(--ease) both; animation-delay: var(--ldelay); }
@keyframes tmplTagIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; } }
@keyframes tmplPed { from { opacity: 0; transform: scale(.5); } to { opacity: 1; transform: scale(1); } }
@keyframes tmplFadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; } }
@keyframes tmplGrow { from { clip-path: inset(100% 0 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes tmplEdge { 0% { opacity: 0; top: 100%; } 15% { opacity: 1; } 90% { opacity: 1; } 100% { opacity: 0; top: 0; } }
.tmpl .pediment, .tmpl .beam, .tmpl .base, .tmpl .strategyTag { opacity: 0; }
.tmpl .col { clip-path: inset(100% 0 0 0); }
.tmpl .lab { opacity: 0; }
.tmpl.play .pediment, .tmpl.play .beam, .tmpl.play .base, .tmpl.play .strategyTag, .tmpl.play .lab { opacity: 1; }
.tmpl__replay {
  position: absolute; right: clamp(18px,3vw,40px); bottom: clamp(18px,3vw,34px); z-index: 5;
  display: inline-flex; align-items: center; gap: 8px; font-family: "Poppins", system-ui, sans-serif;
  font-size: 13px; font-weight: 600; color: #fff;
  background: rgba(151,194,247,.1); border: 1px solid rgba(151,194,247,.3); border-radius: 999px;
  padding: 9px 15px; cursor: pointer; transition: all .2s var(--ease);
}
.tmpl__replay:hover { background: rgba(151,194,247,.18); transform: translateY(-1px); }
.tmpl__replay svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2; }
@media (prefers-reduced-motion: reduce) {
  .tmpl .pediment, .tmpl .beam, .tmpl .base, .tmpl .strategyTag, .tmpl .lab { opacity: 1 !important; }
  .tmpl .col { clip-path: inset(0 0 0 0) !important; }
  .tmpl .glowedge { opacity: 0 !important; }
  .tmpl__replay { display: none; }
}
@media (max-width: 560px) {
  .tmpl__stack { padding-top: 92px; }
  .tmpl .temple { width: min(100%, 360px); }
  .tmpl .temple .strategyTag { max-width: calc(100vw - 44px); padding: 9px 14px; font-size: 12px; }
  .tmpl .temple .pediment { height: clamp(82px, 24vw, 118px); }
  .tmpl .temple .beam { height: 17px; }
  .tmpl .temple .cols { gap: 12px; padding-inline: 6px; }
  .tmpl .temple .slot { height: clamp(172px, 52vw, 224px); }
  .tmpl .temple .capital { height: 36px; border-radius: 7px; }
  .tmpl .temple .capital::after { height: 16px; inset: 9px 5px 5px; }
  .tmpl .temple .cbase { height: 32px; border-radius: 6px; }
  .tmpl .temple .cbase::after { height: 14px; inset: 8px 6px 5px; }
  .tmpl .temple .shaft { top: auto; bottom: auto; margin-top: 2px; }
  .tmpl .temple .base { height: 25px; }
  .tmpl .temple .labels { gap: 8px; margin-top: 18px; }
  .tmpl .temple .lab .ln { font-size: 10.5px; }
  .tmpl .temple .lab .lt { font-size: 11.5px; line-height: 1.16; margin-top: 3px; }
  .tmpl .temple .lab .ld { display: none; }
}

/* ════════════════ ABOUT AJAIA ════════════════ */
.about-ajaia {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: var(--nav-h);
  padding: clamp(88px, 10vw, 132px) 0;
  color: var(--paper);
  background:
    radial-gradient(760px 460px at 18% 10%, rgba(42,76,255,.22), transparent 68%),
    radial-gradient(780px 520px at 88% 68%, rgba(59,109,245,.18), transparent 70%),
    linear-gradient(180deg, #07103a 0%, #081747 52%, #050b25 100%);
}
.about-ajaia__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .72;
  background-image:
    linear-gradient(to right, rgba(151,194,247,0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(151,194,247,0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 16%, #000 0%, transparent 74%);
}
.about-ajaia::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .08;
  mix-blend-mode: overlay;
  background-image: radial-gradient(circle, rgba(255,255,255,.7) 1px, transparent 1.4px);
  background-size: 19px 19px;
}
.about-ajaia__inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 100% - 96px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}
.about-ajaia__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky);
}
.about-ajaia__eyebrow span {
  width: 7px;
  height: 7px;
  background: var(--sky);
  box-shadow: 0 0 0 7px rgba(151,194,248,.09);
}
.about-ajaia h2 {
  max-width: 840px;
  margin: 0;
  color: #f8f4e8;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.06;
  letter-spacing: -.025em;
  font-weight: 700;
  text-wrap: balance;
}
.about-ajaia__copy p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--paper);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.62;
  font-weight: 400;
}
.about-ajaia__panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow: 0 12px 40px -12px rgba(0,0,0,.45);
  backdrop-filter: blur(16px);
}
.about-ajaia__metric {
  padding: 22px 22px 20px;
  border: 1px solid rgba(151,194,248,.14);
  background: rgba(151,194,247,.055);
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
}
.about-ajaia__metric:hover {
  transform: translateY(-3px);
  border-color: rgba(151,194,248,.34);
  background: rgba(151,194,247,.085);
}
.about-ajaia__metric span {
  display: block;
  margin-bottom: 10px;
  font-family: "Fragment Mono", monospace;
  font-size: 12px;
  color: var(--sky);
}
.about-ajaia__metric strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.about-ajaia__metric p {
  margin: 8px 0 0;
  color: var(--sky-soft);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

/* ════════════════ PARTNERS / INTEGRATIONS (white) ════════════════ */
.partners {
  position: relative;
  padding: 88px 0;
  background: #fff;
  text-align: center;
  overflow: hidden;
}
.partners::before,
.partners::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(140px, 12vw);
  pointer-events: none;
}
.partners::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%);
}
.partners::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%);
}
.partners__head {
  max-width: 820px;
  margin: 0 auto;
}
.partners__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 31px;
  padding: 7px 16px 6px;
  border: 1px solid rgba(0,29,107,.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(241,247,255,.86));
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: 0 10px 34px rgba(0,29,107,.07);
}
.partners__pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 4px rgba(151,194,248,.18);
}
.sec-title--center { text-align: center; }
.partners .sec-title {
  margin: 24px 0 0;
}
.partners__heading-main,
.partners__heading-accent {
  display: block;
}
.partners__heading-accent {
  color: var(--sky);
}
.partners__cap {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 80px auto 0;
  max-width: 860px;
}
.partners__cap span { color: rgba(0,29,107,.56); }
.partners__cap--mt { margin-top: 72px; }

.logo-rail {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin: 42px 0 0 calc(50% - 50vw);
  overflow: hidden;
}
.logo-rail__track {
  display: flex;
  align-items: center;
  gap: clamp(44px, 5vw, 76px);
  width: max-content;
  padding: 0 clamp(40px, 8vw, 110px);
  animation: logo-marquee 34s linear infinite;
  will-change: transform;
}
.logo-rail--reverse .logo-rail__track {
  animation-direction: reverse;
  animation-duration: 38s;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #1b1c1c;
  opacity: 1;
  white-space: nowrap;
  transition: opacity .3s var(--ease), transform .3s var(--ease), filter .3s var(--ease);
}
.logo:hover { opacity: 1; transform: translateY(-2px); filter: saturate(1.12); }
.logo__img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}
.logo__img--wide {
  width: 142px;
  height: 34px;
}
.logo__img--wordmark {
  width: 164px;
  height: 28px;
}
.logo--wide {
  gap: 0;
}
.logo__mark { display: block; flex: 0 0 auto; }
.logo__mark--ant { width: 24px; height: 24px; background: #c28f8b; -webkit-mask: radial-gradient(circle at 50% 120%, transparent 38%, #000 39%); mask: radial-gradient(circle at 50% 120%, transparent 38%, #000 39%); }
.logo__word {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.02em;
  color: #1f2b3d;
}
.logo:has(img[src*="openai"]) .logo__word { color: #111827; }
.logo:has(img[src*="anthropic"]) .logo__word { color: #8b5f3d; }
.logo:has(img[src*="googlegemini"]) .logo__word { color: #4285f4; }
.logo:has(img[src*="meta"]) .logo__word { color: #0467df; }
.logo:has(img[src*="mistralai"]) .logo__word { color: #f15a24; }
.logo:has(img[src*="xai"]) .logo__word { color: #111827; }
.logo:has(img[src*="deepseek"]) .logo__word { color: #315efb; }
.logo:has(img[src*="amazonaws"]) .logo__word { color: #232f3e; }
.logo:has(img[src*="microsoftazure"]) .logo__word,
.logo:has(img[src*="microsoft"]) .logo__word { color: #5e5e5e; }
.logo:has(img[src*="salesforce"]) .logo__word { color: #00a1e0; }
.logo:has(img[src*="hubspot"]) .logo__word { color: #ff7a59; }
.logo:has(img[src*="microsoftsharepoint"]) .logo__word { color: #0078d4; }
.logo:has(img[src*="slack"]) .logo__word { color: #4a154b; }
.logo:has(img[src*="notion"]) .logo__word { color: #111827; }
.logo:has(img[src*="snowflake"]) .logo__word { color: #29b5e8; }
.logo:has(img[src*="atlassian"]) .logo__word { color: #0052cc; }
.logo:has(img[src*="google"]) .logo__word { color: #4285f4; }
.logo__word--lg { font-size: 24px; letter-spacing: .04em; }
.logo__word--lg b { font-weight: 800; }
.logo__word--sf { font-weight: 600; color: #0a7bbf; font-style: italic; }
.logo__word--soft { color: rgba(27,28,28,.52); }
.logo__word--slack { letter-spacing: -.04em; }
.logo__bars {
  width: 24px;
  height: 24px;
  display: inline-block;
  background:
    linear-gradient(90deg, #111 0 18%, transparent 18% 27%, #d67b39 27% 45%, transparent 45% 55%, #111 55% 73%, transparent 73% 82%, #d67b39 82% 100%);
  border: 1px solid rgba(0,0,0,.12);
}
.logo__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #05133d, #4d80f2);
}
.logo__dot--green {
  background: linear-gradient(135deg, #59796e, #f06b4e);
}
.logo__x {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
  color: #1b1c1c;
}
.logo__sharepoint {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #2b8fc9;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}
@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-rail__track { animation: none; transform: translateX(0); }
}

/* ════════════════ INTERACTIVE SERVICES NETWORK ════════════════ */
.service-network {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(780px 440px at 48% 38%, rgba(46,86,180,.22), transparent 62%),
    radial-gradient(900px 520px at 50% 0%, rgba(11,46,142,.24), transparent 60%),
    linear-gradient(180deg, #020a24 0%, #03113c 54%, #020a24 100%);
  height: calc(100svh - var(--nav-h));
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: clamp(16px, 2.8vh, 34px) 0;
  scroll-margin-top: var(--nav-h);
  color: #f5f8ff;
}
.service-network::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image: radial-gradient(rgba(151,194,247,.12) 1px, transparent 1.5px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, transparent, #000 26%, #000 74%, transparent);
}
.service-network__inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 100% - 96px);
  margin-inline: auto;
}
.service-network__head {
  display: grid;
  justify-items: center;
  gap: clamp(10px, 1.8vh, 18px);
  text-align: center;
  margin-bottom: clamp(16px, 3vh, 30px);
}
.service-network__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 12px;
  border: 1px solid rgba(151,194,247,.3);
  border-radius: 999px;
  background: rgba(151,194,247,.06);
  color: var(--sky);
  font-family: "Fragment Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .18em;
  line-height: 1.1;
  text-transform: uppercase;
}
.service-network__eyebrow span {
  width: 7px;
  height: 7px;
  background: var(--sky);
}
.service-network__head h2 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -.025em;
}
.service-network__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}
.service-detail {
  min-width: 0;
}
.service-detail__media {
  display: grid;
  place-items: center;
  min-height: clamp(140px, 18vw, 245px);
  margin-bottom: clamp(10px, 1.8vh, 18px);
}
.service-detail__media img {
  width: min(100%, 500px);
  max-height: clamp(140px, 20vw, 260px);
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.26)) drop-shadow(0 0 22px rgba(151,194,248,.11));
  transform-origin: 50% 58%;
}
.service-detail.is-changing .service-detail__media img,
.service-detail.is-changing .service-detail__copy {
  animation: serviceSwap .36s var(--ease-out) both;
}
.service-detail__copy h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -.025em;
}
.service-detail__copy p {
  max-width: 560px;
  margin: 0 0 14px;
  color: var(--sky-soft);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.5;
  font-weight: 300;
}
.service-detail__points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 650px;
  margin: 0;
}
.service-detail__points li {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(196,220,251,.18);
  border-radius: 8px;
  background: rgba(151,194,247,.055);
  color: rgba(245,248,255,.92);
  font-size: 12px;
  font-weight: 500;
}
.service-detail__points li span {
  flex: 0 0 auto;
  font-family: "Fragment Mono", "Poppins", monospace;
  color: #c4dcfb;
  letter-spacing: .09em;
}
.service-detail__link {
  display: none;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.service-detail__link span {
  font-size: 30px;
  line-height: .7;
  transition: transform .22s var(--ease);
}
.service-detail__link:hover span {
  transform: translateX(6px);
}
.service-menu {
  position: relative;
  padding-left: clamp(28px, 4.3vw, 54px);
  min-height: auto;
}
.service-menu::before {
  content: "";
  position: absolute;
  top: 54px;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(196,220,251,.64), rgba(196,220,251,.18));
}
.service-menu h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -.025em;
}
.service-menu__line {
  width: min(100%, 380px);
  height: 1px;
  margin: 8px 0 12px;
  background: rgba(196,220,251,.56);
}
.service-menu__items {
  display: grid;
  gap: clamp(6px, 1.2vh, 10px);
}
.service-menu__item {
  position: relative;
  width: 100%;
  min-height: 54px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 9px 14px 9px 14px;
  color: #f5f8ff;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  font: inherit;
  cursor: pointer;
  opacity: .82;
  overflow: hidden;
  transition: opacity .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease), box-shadow .24s var(--ease), transform .24s var(--ease);
}
.service-menu__ico {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--sky);
  border: 1px solid rgba(151,194,248,.24);
  border-radius: 8px;
  background: rgba(151,194,248,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: color .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease), box-shadow .24s var(--ease), transform .24s var(--ease);
}
.service-menu__ico svg {
  width: 17px;
  height: 17px;
  display: block;
}
.service-menu__item::before {
  content: "";
  position: absolute;
  inset: -1px auto -1px -42%;
  width: 42%;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(151,194,248,.32), transparent);
  transform: skewX(-18deg);
  transition: opacity .2s var(--ease);
}
.service-menu__item span {
  position: relative;
  z-index: 1;
  display: block;
  color: #fff;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.018em;
}
.service-menu__item > span:not(.service-menu__ico) {
  min-width: 0;
}
.service-menu__item small {
  display: none;
}
.service-menu__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: var(--sky);
  box-shadow: 0 0 18px rgba(151,194,248,.8);
  opacity: 0;
  transform: scaleY(.4);
  transform-origin: center;
  transition: opacity .24s var(--ease), transform .24s var(--ease);
}
.service-menu__item:hover,
.service-menu__item:focus-visible,
.service-menu__item.is-active {
  opacity: 1;
  transform: translateX(2px);
  border-color: rgba(151,194,247,.26);
  background:
    radial-gradient(circle at 0% 50%, rgba(151,194,248,.18), transparent 58%),
    linear-gradient(90deg, rgba(151,194,248,.10), rgba(151,194,248,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 0 28px rgba(151,194,248,.08);
  outline: none;
}
.service-menu__item:hover .service-menu__ico,
.service-menu__item:focus-visible .service-menu__ico,
.service-menu__item.is-active .service-menu__ico {
  color: #fff;
  border-color: rgba(151,194,248,.56);
  background: rgba(151,194,248,.18);
  box-shadow: 0 0 18px rgba(151,194,248,.24), inset 0 1px 0 rgba(255,255,255,.08);
  transform: translateY(-1px);
}
.service-menu__item:hover::before,
.service-menu__item:focus-visible::before,
.service-menu__item.is-active::before {
  opacity: 1;
  animation: serviceScan 1.2s linear infinite;
}
.service-menu__item:hover span,
.service-menu__item:focus-visible span,
.service-menu__item.is-active span {
  color: #c4dcfb;
}
.service-menu__item.is-active::after,
.service-menu__item:hover::after,
.service-menu__item:focus-visible::after {
  opacity: 1;
  transform: scaleY(1);
}
@keyframes serviceSwap {
  0% { opacity: .1; transform: translateY(12px) scale(.985); filter: blur(4px); }
  100% { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes serviceScan {
  from { transform: translateX(0) skewX(-18deg); }
  to { transform: translateX(340%) skewX(-18deg); }
}

/* ════════════════ HOMEPAGE REFERENCE SECTIONS ════════════════ */
.sec { position: relative; }
.sec--tint { background: var(--sky-50); color: var(--ink-ink); }
.sec__pad { padding: clamp(78px, 8.6vw, 126px) 0; }
.sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.2;
  text-transform: uppercase;
}
.sec-kicker--ink { color: var(--ink-700); }
.sec-kicker--sky { color: var(--sky); }
.sec-kicker__sq {
  width: 7px;
  height: 7px;
  display: inline-block;
  background: currentColor;
  flex: 0 0 auto;
}
.lead-ink {
  color: var(--ink-subtle);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.62;
  font-weight: 400;
}

.ref-about {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--sky-50) 100%);
  color: var(--ink-ink);
}
.about-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.about-bg__grid {
  position: absolute;
  inset: 0;
  opacity: .46;
  background:
    linear-gradient(rgba(0,29,107,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,29,107,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 24% 52%, #000 0%, transparent 62%);
}
.about-bg__orbit {
  position: absolute;
  right: max(-120px, -8vw);
  top: 50%;
  width: min(620px, 52vw);
  transform: translateY(-50%);
  opacity: .28;
}
.about-bg__orbit circle {
  fill: none;
  stroke: rgba(0,29,107,.28);
  stroke-width: 1;
}
.about-bg__orbit .pdot { fill: var(--sky); stroke: none; filter: drop-shadow(0 0 12px rgba(151,194,248,.7)); }
.about-bg__orbit .spin,
.about-bg__orbit .spin2 {
  transform-origin: 310px 310px;
  animation: aboutOrbit 18s linear infinite;
}
.about-bg__orbit .spin2 { animation-duration: 26s; animation-direction: reverse; }
.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(420px, 1.18fr);
  gap: clamp(46px, 6vw, 78px);
  align-items: start;
}
.about__sticky { position: sticky; top: 110px; }
.about__lead {
  margin: 18px 0 0;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.about__accent { color: var(--ink-700); }
.about__tagline {
  display: inline-block;
  max-width: 640px;
  color: var(--ink-ink);
  font-size: clamp(24px, 2.5vw, 36px);
  letter-spacing: -.025em;
  line-height: 1.14;
}
.about__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-self: stretch;
  background: rgba(0,29,107,.1);
  border: 1px solid rgba(0,29,107,.12);
}
.about-point {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 2.8vw, 38px);
  background:
    radial-gradient(circle at 18% 10%, rgba(151,194,248,.34), transparent 42%),
    rgba(255,255,255,.88);
  transition: transform .34s var(--ease-out), box-shadow .34s var(--ease-out), background .34s var(--ease-out);
}
.about-point:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 22px 60px rgba(0,29,107,.12);
}
.about-point__ico {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--navy);
  border: 1px solid rgba(0,29,107,.14);
  background: rgba(151,194,248,.22);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .08em;
}
.about-point__ico svg {
  width: 28px;
  height: 28px;
}
.about-point__ico--dev { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.about-point__title {
  color: var(--navy);
  font-size: clamp(21px, 1.9vw, 28px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.025em;
  max-width: 260px;
}
.about__ctas {
  grid-column: 2;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -26px;
}
.ref-about .aj-cta--outline .aj-cta__label,
.ref-about .aj-cta--outline .aj-cta__arrow {
  color: var(--navy);
  border-color: rgba(0,29,107,.22);
}

/* ════════════════ WHO WE SERVE LIGHT SECTION ════════════════ */
.serve-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(34,86,184,.34), transparent 38%),
    radial-gradient(circle at 86% 64%, rgba(22,58,151,.26), transparent 42%),
    linear-gradient(180deg, #07133f 0%, #061137 56%, #08286f 100%);
  color: #fff;
  padding: clamp(76px, 8vw, 118px) 0 clamp(74px, 7vw, 104px);
}
.serve-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background:
    radial-gradient(circle at 10px 10px, rgba(151,194,248,.22) 1px, transparent 1.8px);
  background-size: 30px 30px;
}
.serve-band__inner {
  position: relative;
  z-index: 1;
  width: min(1600px, 100% - clamp(40px, 6vw, 96px));
  margin: 0 auto;
}
.serve-band__head {
  max-width: 900px;
  margin: 0 auto clamp(34px, 4.5vw, 58px);
  text-align: center;
}
.serve-band__head h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.045em;
}
.serve-band__head h2 span {
  color: var(--sky);
}
.serve-group + .serve-group {
  margin-top: clamp(40px, 4.5vw, 58px);
}
.serve-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: rgba(184,211,255,.88);
  font-family: var(--font-mono);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 600;
  letter-spacing: .2em;
  line-height: 1;
  text-transform: uppercase;
}
.serve-kicker span {
  width: 34px;
  height: 2px;
  background: var(--sky);
  display: inline-block;
}
.serve-grid {
  display: grid;
  gap: clamp(16px, 1.8vw, 28px);
}
.serve-grid--industries {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.serve-grid--partners {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.serve-card {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  padding: clamp(22px, 2.1vw, 30px);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(151,194,248,.12);
  border-radius: 8px;
  box-shadow:
    0 24px 55px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.035);
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease);
}
.serve-card:hover {
  transform: translateY(-3px);
  border-color: rgba(151,194,248,.28);
  background: rgba(151,194,248,.09);
  box-shadow:
    0 28px 62px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.055);
}
.serve-card__icon {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--sky);
  border-radius: 0;
  background: rgba(151,194,248,.1);
  border: 1px solid rgba(151,194,248,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}
.serve-card__icon svg {
  width: 32px;
  height: 32px;
}
.serve-card strong {
  color: rgba(255,255,255,.94);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -.025em;
}
.serve-sizes {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1.55fr repeat(4, 1fr);
  align-items: center;
  gap: 0;
  margin-top: clamp(34px, 4vw, 54px);
  padding: 0 clamp(20px, 2.5vw, 38px);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(151,194,248,.12);
  border-radius: 8px;
  box-shadow: 0 24px 55px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.035);
}
.serve-sizes__label {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}
.serve-sizes strong {
  color: rgba(235,244,255,.94);
  font-family: var(--font-mono);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.serve-size-item {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.88);
  font-size: clamp(15px, 1.15vw, 19px);
  font-weight: 400;
  line-height: 1.2;
  border-left: 1px solid rgba(151,194,248,.18);
}
.serve-size-item svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--sky);
  opacity: .95;
}

@media (min-width: 721px) {
  .serve-band__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(270px, .72fr);
    column-gap: clamp(34px, 5.5vw, 90px);
    align-items: start;
  }
  .serve-band__head {
    grid-column: 1 / -1;
    max-width: 1120px;
    margin-bottom: clamp(38px, 5vw, 70px);
  }
  .serve-group {
    margin: 0;
  }
  .serve-group:not(.serve-group--partners) {
    grid-column: 1;
    grid-row: 2;
  }
  .serve-group--partners {
    grid-column: 2;
    grid-row: 2 / span 2;
    padding-left: clamp(28px, 4vw, 66px);
    border-left: 1px solid rgba(151,194,248,.25);
  }
  .serve-group + .serve-group {
    margin-top: 0;
  }
  .serve-grid--industries {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .serve-grid--partners {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .serve-grid--partners .serve-card {
    min-height: 88px;
    padding: 18px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(151,194,248,.16);
    border-radius: 0;
    box-shadow: none;
  }
  .serve-grid--partners .serve-card:hover {
    transform: translateX(4px);
    background: transparent;
    border-color: rgba(151,194,248,.28);
    box-shadow: none;
  }
  .serve-grid--partners .serve-card__icon {
    width: 42px;
    height: 42px;
  }
  .serve-grid--partners .serve-card__icon svg {
    width: 23px;
    height: 23px;
  }
  .serve-grid--partners .serve-card strong {
    font-size: clamp(18px, 1.45vw, 24px);
  }
  .serve-sizes {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: clamp(28px, 3.4vw, 46px);
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .serve-sizes.reveal {
    opacity: 1;
    transform: none;
  }
  .serve-sizes__label {
    grid-column: 1 / -1;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(151,194,248,.2);
  }
  .serve-size-item {
    min-height: 52px;
    justify-content: flex-start;
    border-left: 0;
    border-bottom: 1px solid rgba(151,194,248,.2);
  }
  .serve-size-item:nth-child(even) {
    padding-left: clamp(16px, 2.5vw, 34px);
    border-left: 1px solid rgba(151,194,248,.14);
  }
}

/* ════════════════ ABOUT AJAIA DARK BAND ════════════════ */
.about-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 54%, rgba(22,58,151,.32), transparent 42%),
    linear-gradient(180deg, #07133f 0%, #07123b 54%, #08286f 100%);
  color: #fff;
  padding: clamp(84px, 9vw, 126px) 0 clamp(76px, 8vw, 112px);
}
.about-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background:
    radial-gradient(circle at 10px 10px, rgba(151,194,248,.22) 1px, transparent 1.8px);
  background-size: 30px 30px;
}
.about-band__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
}
.about-band__orbit {
  position: absolute;
  right: -10vw;
  top: 50%;
  border: 1px solid rgba(151,194,248,.13);
  border-radius: 50%;
  transform: translateY(-50%);
}
.about-band__orbit--one { width: min(720px, 56vw); aspect-ratio: 1; }
.about-band__orbit--two { width: min(520px, 42vw); aspect-ratio: 1; right: 1vw; }
.about-band__orbit--three { width: min(330px, 28vw); aspect-ratio: 1; right: 10vw; }
.about-band__inner {
  position: relative;
  z-index: 1;
  width: min(1600px, 100% - clamp(40px, 6vw, 96px));
  margin: 0 auto;
}
.about-band__rule {
  height: 1px;
  background: rgba(151,194,248,.22);
  margin-bottom: 28px;
}
.about-band__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(184,211,255,.88);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.about-band__eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--sky);
  display: inline-block;
}
.about-band__copy {
  margin: clamp(48px, 6vw, 74px) auto 0;
  text-align: center;
}
.about-band__copy h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(54px, 7.2vw, 96px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.045em;
}
.about-band__copy h2 span {
  color: var(--sky);
}
.about-band__copy p {
  margin: 24px 0 0;
  color: rgba(255,255,255,.95);
  font-size: clamp(28px, 3vw, 52px);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 400;
}
.about-band__tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 38px);
  margin-top: clamp(48px, 6vw, 68px);
}
.about-band__tile {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px clamp(24px, 3vw, 42px);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(151,194,248,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
}
.about-band__tile:hover {
  transform: translateY(-3px);
  border-color: rgba(151,194,248,.26);
  background: rgba(151,194,248,.095);
}
.about-band__icon {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--sky);
}
.about-band__icon svg {
  width: 34px;
  height: 34px;
}
.about-band__icon--dev {
  width: 78px;
  height: 50px;
  border-radius: 0;
  background: transparent;
  border: 1px solid rgba(151,194,248,.56);
  color: var(--sky);
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .12em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}
.about-band__tile strong {
  color: rgba(255,255,255,.94);
  font-size: clamp(18px, 1.55vw, 26px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -.02em;
}
.about-band__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  margin-top: clamp(38px, 5vw, 52px);
  flex-wrap: wrap;
}
.about-band .aj-cta--md .aj-cta__label {
  min-width: 230px;
  height: 56px;
  padding: 0 28px;
  justify-content: center;
}
.about-band .aj-cta--md .aj-cta__arrow {
  width: 56px;
  height: 56px;
}
.about-band .aj-cta--outline .aj-cta__label,
.about-band .aj-cta--outline .aj-cta__arrow {
  background: rgba(255,255,255,.01);
  color: #fff;
  border-color: rgba(151,194,248,.32);
}

.faq2__group {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.faq2__intro {
  position: sticky;
  top: 112px;
}
.faq2__title {
  margin-top: 18px;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.faq__list { border-top: 1px solid rgba(0,29,107,.12); }
.faq-item { border-bottom: 1px solid rgba(0,29,107,.12); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  padding: 24px 4px;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -.01em;
  transition: color .25s var(--ease), padding .25s var(--ease);
}
.faq-item__q:hover,
.faq-item.is-open .faq-item__q { color: var(--ink-700); }
.faq-item__icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,29,107,.14);
  background: rgba(255,255,255,.55);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--ink-700);
  transition: transform .35s var(--ease-out), background .3s var(--ease);
}
.faq-item__icon::before { width: 12px; height: 2px; }
.faq-item__icon::after { width: 2px; height: 12px; }
.faq-item.is-open .faq-item__icon {
  background: var(--ink-700);
  border-color: var(--ink-700);
}
.faq-item.is-open .faq-item__icon::before,
.faq-item.is-open .faq-item__icon::after { background: #fff; }
.faq-item.is-open .faq-item__icon::after { transform: rotate(90deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease-out);
}
.faq-item__a-inner {
  max-width: 700px;
  padding: 0 4px 27px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.66;
}

.fcta {
  position: relative;
  min-height: clamp(360px, 48vw, 462px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy-3) 58%, var(--navy-4) 100%);
}
#globe2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: .34;
  filter: saturate(.55) brightness(.7);
  mask: linear-gradient(180deg, #000 0%, #000 58%, transparent 86%);
}
.fcta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(0,18,68,.78) 42%, var(--navy) 100%);
}
.fcta__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(70% 60% at 50% 42%, rgba(0,9,31,.5) 0%, transparent 72%);
}
.fcta__inner {
  position: relative;
  z-index: 3;
  width: min(820px, 100% - 64px);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 76px) 0;
  text-align: center;
}
.fcta__title {
  margin: 16px 0 0;
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.fcta__title .grad {
  color: transparent;
  background: linear-gradient(100deg, var(--sky) 0%, var(--accent-bright) 50%, #eaf3ff 75%, var(--sky) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: sheen 7s linear infinite;
}
.fcta__sub {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--sky-soft);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 300;
}
.fcta__btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.mag {
  display: inline-flex;
  will-change: transform;
  transition: transform .3s var(--ease-out);
}

.foot {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
  border-top: 1px solid rgba(255,255,255,.07);
}
.foot__bigmark {
  position: absolute;
  right: -2%;
  bottom: -34px;
  z-index: 0;
  opacity: .05;
  pointer-events: none;
}
.foot__bigmark img {
  height: 220px;
  width: auto;
}
.ftrx {
  position: relative;
  z-index: 1;
  width: min(1320px, 100% - 80px);
  margin: 0 auto;
  padding: clamp(66px, 8vw, 96px) 0 34px;
}
.ftrx__cols {
  display: grid;
  grid-template-columns: 1.24fr .7fr .98fr 1.1fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}
.ftrx__brand-logo {
  width: 172px;
  height: auto;
  margin-bottom: 26px;
}
.ftrx__brand-desc {
  max-width: 420px;
  color: rgba(241,247,255,.78);
  font-size: 15px;
  line-height: 1.72;
}
.ftrx__brand-meta {
  margin-top: 28px;
  color: rgba(241,247,255,.62);
  font-size: 13px;
  line-height: 1.65;
}
.ftrx__brand-meta a,
.ftrx a { transition: color .22s var(--ease); }
.ftrx a:hover { color: var(--sky); }
.ftr-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--sky);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.ftr-chip__sq {
  width: 7px;
  height: 7px;
  background: currentColor;
}
.ftrx__col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.ftrx__col a {
  color: rgba(241,247,255,.78);
  font-size: 14px;
  line-height: 1.45;
}
.ftrx__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: clamp(52px, 7vw, 86px);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.ftrx__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}
.ftrx__legal a,
.ftrx__copy {
  color: rgba(241,247,255,.58);
  font-size: 12.5px;
}

@keyframes aboutOrbit {
  to { transform: rotate(360deg); }
}
@keyframes sheen {
  to { background-position: -220% 0; }
}

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 860px) {
  .nav__inner { width: min(1600px, 100% - 56px); gap: 28px; }
  .stats__inner { width: min(1600px, 100% - 56px); }
  .tmodel__grid { grid-template-columns: 1fr; gap: 48px; }
  .tmodel__copy { max-width: 640px; margin: 0 auto; }
  .stage { max-width: 520px; margin: 0 auto; }
  .cards { max-width: 600px; grid-template-columns: repeat(2, 1fr); }
  .logos { flex-wrap: wrap; justify-content: center; gap: 28px 48px; }
  .service-network__inner { width: min(1320px, 100% - 56px); }
  .service-network__grid { grid-template-columns: 1fr; gap: 58px; }
  .service-menu {
    min-height: auto;
    padding-left: 0;
    border-top: 1px solid rgba(196,220,251,.42);
    padding-top: 34px;
  }
  .service-menu::before { display: none; }
  .service-menu__items { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 30px; }
  .service-menu__item {
    min-height: 118px;
    padding: 22px 48px 22px 0;
    border-bottom: 1px solid rgba(151,194,248,.22);
  }
  .service-menu__item::after { display: none; }
  .about-ajaia__inner { width: min(1280px, 100% - 56px); grid-template-columns: 1fr; gap: 34px; }
  .about-ajaia__panel { grid-template-columns: 1fr; }
  .about__grid,
  .faq2__group,
  .ftrx__cols {
    grid-template-columns: 1fr;
  }
  .about__sticky,
  .faq2__intro {
    position: relative;
    top: auto;
  }
  .about__points { grid-template-columns: 1fr; }
  .about__ctas { grid-column: auto; margin-top: 24px; }
  .faq2__group { gap: 40px; }
  .ftrx__brand-desc { max-width: 620px; }
}
@media (min-width: 861px) and (max-height: 720px) {
  .service-network { padding-block: 10px; }
  .service-network__head h2 { font-size: clamp(32px, 4.05vw, 44px); }
  .service-network__head { margin-bottom: 12px; }
  .service-detail__media { min-height: 112px; margin-bottom: 8px; }
  .service-detail__media img { max-height: 145px; }
  .service-detail__copy h3 { font-size: clamp(22px, 2vw, 28px); }
  .service-detail__copy p { display: none; }
  .service-menu__line { margin-bottom: 8px; }
  .service-menu__items { gap: 4px; }
  .service-menu__item { min-height: 40px; grid-template-columns: 28px minmax(0, 1fr); gap: 9px; padding: 6px 13px 6px 13px; }
  .service-menu__ico { width: 26px; height: 26px; border-radius: 7px; }
  .service-menu__ico svg { width: 15px; height: 15px; }
  .service-menu__item span { font-size: clamp(15px, 1.34vw, 19px); }
  .service-menu__item small { display: none; }
  .service-detail__points li { min-height: 27px; padding-block: 6px; font-size: 11.5px; }
}
@media (min-width: 721px) and (max-width: 980px) {
  .serve-band__inner {
    grid-template-columns: minmax(0, 1fr) minmax(250px, .68fr);
    column-gap: 34px;
  }
  .serve-band__head h2 {
    font-size: clamp(40px, 6.2vw, 54px);
  }
  .serve-card {
    min-height: 92px;
    padding: 18px;
  }
  .serve-card__icon {
    width: 50px;
    height: 50px;
  }
  .serve-card__icon svg {
    width: 27px;
    height: 27px;
  }
}
@media (max-width: 720px) {
  .serve-grid--industries,
  .serve-grid--partners {
    grid-template-columns: 1fr;
  }
  .serve-sizes {
    grid-template-columns: 1fr;
    gap: 18px 0;
    padding-block: 24px;
  }
  .serve-sizes__label {
    grid-column: 1 / -1;
  }
  .serve-size-item {
    justify-content: start;
    padding-left: 20px;
  }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__inner { gap: 16px; width: min(1600px, 100% - 40px); }
  .stats__inner { width: min(1600px, 100% - 40px); grid-template-columns: 1fr; }
  .container { width: min(var(--maxw), 100% - 40px); }
  .hero__inner { width: min(960px, 100% - 40px); }
  .cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card { min-height: 64px; padding: 13px 14px; }
  .service-network { height: auto; min-height: calc(100svh - var(--nav-h)); padding: 72px 0 76px; }
  .service-network__inner { width: min(1320px, 100% - 40px); }
  .service-network__eyebrow {
    max-width: 100%;
    letter-spacing: .14em;
    font-size: 10px;
    white-space: normal;
    justify-content: center;
  }
  .service-network__head { margin-bottom: 48px; }
  .service-detail__media { min-height: 220px; margin-bottom: 28px; }
  .service-detail__media img { max-height: 240px; }
  .service-detail__points li { align-items: flex-start; min-height: 52px; padding: 14px 0; font-size: 14px; }
  .service-menu__items { grid-template-columns: 1fr; gap: 12px; }
  .service-menu__line { margin-bottom: 24px; }
  .service-menu__item {
    min-height: auto;
    padding: 18px 42px 18px 0;
  }
  .service-menu__item span { font-size: 20px; }
  .stage { min-height: 420px; }
  .serve-band { padding: 70px 0 72px; }
  .serve-band__inner { width: min(1600px, 100% - 40px); }
  .serve-band__head { margin-bottom: 38px; }
  .serve-band__head h2 { font-size: clamp(36px, 10vw, 48px); }
  .serve-card {
    min-height: 86px;
    padding: 18px 20px;
    border-radius: 11px;
  }
  .serve-card__icon {
    width: 54px;
    height: 54px;
  }
  .serve-card__icon svg {
    width: 28px;
    height: 28px;
  }
  .serve-sizes {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .serve-size-item {
    min-height: 30px;
    border-left: 0;
    border-top: 1px solid rgba(151,194,248,.16);
    padding: 14px 0 0;
    justify-content: flex-start;
  }
  .about-ajaia { padding: 72px 0; }
  .about-ajaia__inner { width: min(1280px, 100% - 40px); }
  .about-ajaia h2 { font-size: clamp(34px, 10vw, 46px); }
  .about-ajaia__copy p { font-size: 15px; }
  .about-ajaia__panel { padding: 12px; }
  .about-ajaia__metric { padding: 18px; }
  .sec__pad { padding: 68px 0; }
  .about__lead,
  .faq2__title { font-size: clamp(34px, 10vw, 46px); }
  .about__tagline { font-size: clamp(24px, 7vw, 32px); }
  .about-point { min-height: 210px; }
  .faq-item__q { padding: 21px 0; gap: 18px; }
  .fcta__inner { width: min(820px, 100% - 40px); }
  .fcta__btns { flex-direction: column; align-items: center; }
  .ftrx { width: min(1320px, 100% - 40px); }
  .ftrx__bottom { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
}

/* ════════════════ TRAINING SITE TYPOGRAPHY MATCH ════════════════ */
body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--tr-body);
  text-rendering: optimizeLegibility;
}
.display,
h1.display {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  font-weight: 700;
  letter-spacing: var(--tr-display);
  margin: 0;
}
.h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
  font-weight: 700;
  letter-spacing: var(--tr-h1);
  margin: 0;
}
.h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  font-weight: 700;
  letter-spacing: var(--tr-h2);
  margin: 0;
}
.h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  font-weight: 700;
  letter-spacing: var(--tr-h3);
  margin: 0;
}
.h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  font-weight: 600;
  letter-spacing: var(--tr-h4);
  margin: 0;
}
.h5 {
  font-family: var(--font-sans);
  font-size: var(--fs-h5);
  line-height: var(--lh-h4);
  font-weight: 600;
  letter-spacing: var(--tr-h5);
  margin: 0;
}
p,
.body,
li {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  letter-spacing: var(--tr-body);
}
.body-lg,
.lead {
  font-family: var(--font-sans);
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: var(--tr-body);
}
.body-sm,
small {
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: var(--tr-body);
}
.mono {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0;
}
.nav__links {
  font-family: var(--font-sans);
  font-size: var(--fs-nav);
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: -.005em;
}
.aj-cta__label,
button,
input,
textarea {
  font-family: var(--font-sans);
}
.aj-cta__label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.eyebrow,
.sec-kicker,
.service-network__eyebrow,
.partners__cap {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: var(--tr-eyebrow);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.2vw, var(--fs-hero));
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: var(--tr-hero);
}
.hero__desc {
  font-family: var(--font-sans);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  font-weight: 400;
  letter-spacing: -.005em;
}
.sec-title,
.service-network__head h2,
.faq2__title,
.fcta__title,
.tmpl__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, var(--fs-h2));
  line-height: var(--lh-h2);
  font-weight: 700;
  letter-spacing: var(--tr-h2);
}
.sec-title--sm {
  font-size: clamp(28px, 3vw, 40px);
  line-height: var(--lh-h2);
  letter-spacing: var(--tr-h2);
}
.service-detail__copy h3,
.service-menu h3,
.about-ajaia h2,
.step__title,
.faq-item__q,
.ftrx__col .ftr-chip + ul,
.h3 {
  font-family: var(--font-display);
}
.service-detail__copy h3,
.service-menu h3,
.step__title {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  font-weight: 700;
  letter-spacing: var(--tr-h3);
}
.service-menu__item span,
.about-ajaia__metric strong,
.card__label {
  font-family: var(--font-sans);
  letter-spacing: -.01em;
}
.service-menu__item span {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.22;
}
.service-detail__copy p,
.step__desc,
.sec-sub,
.lead-ink,
.fcta__sub,
.ftrx__brand-desc {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  letter-spacing: var(--tr-body);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat__cap,
.service-detail__points li,
.faq-item__a-inner,
.ftrx__col a {
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  line-height: 1.55;
  letter-spacing: var(--tr-body);
}
.faq-item__q {
  font-size: 17px;
  line-height: 1.36;
  font-weight: 600;
  letter-spacing: -.01em;
}

@media (max-width: 900px) {
  .hero__title {
    font-size: 44px;
    line-height: 1.05;
  }
  .sec-title,
  .service-network__head h2,
  .faq2__title,
  .fcta__title,
  .tmpl__title {
    font-size: 36px;
    line-height: 1.1;
  }
  .service-detail__copy h3,
  .service-menu h3,
  .step__title {
    font-size: 24px;
    line-height: 1.2;
  }
}

@media (max-width: 760px) {
  .hero__title {
    font-size: 38px;
    line-height: 1.06;
  }
  .sec-title,
  .service-network__head h2,
  .faq2__title,
  .fcta__title,
  .tmpl__title {
    font-size: 28px;
    line-height: 1.15;
  }
  .hero__desc,
  .sec-sub,
  .lead-ink,
  .fcta__sub {
    font-size: 16px;
  }
  .service-menu__item span {
    font-size: 19px;
  }
}

@media (max-width: 520px) {
  .hero__title { font-size: 32px; }
  .sec-title,
  .service-network__head h2,
  .faq2__title,
  .fcta__title,
  .tmpl__title {
    font-size: 24px;
  }
}

/* ════════════════ TRAINING SITE FOOTER MATCH ════════════════ */
.training-footer {
  position: relative;
  overflow: hidden;
  background: var(--ink-900);
  color: var(--paper);
}
.training-footer .reveal {
  opacity: 1;
  transform: none;
}
.training-footer__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image:
    linear-gradient(to right, rgba(151,194,247,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(151,194,247,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 70%);
}
.training-footer__inner {
  position: relative;
  width: min(1280px, 100% - 160px);
  margin: 0 auto;
  padding: 96px 0 48px;
}
.training-footer__cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 44px 56px;
  color: var(--ink-900);
  background: linear-gradient(135deg, var(--sky-400) 0%, #b6d4fa 100%);
}
.training-footer__cta-title {
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.26;
  font-weight: 700;
  letter-spacing: -.015em;
}
.training-footer__cta-copy {
  max-width: 640px;
  margin-top: 10px;
  color: var(--ink-muted);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: var(--tr-body);
}
.training-footer__cta-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: stretch;
  justify-self: end;
  text-decoration: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform var(--ds-dur) var(--ds-ease), filter var(--ds-dur) var(--ds-ease);
}
.training-footer__cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left .6s var(--ease);
}
.training-footer__cta-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}
.training-footer__cta-button:hover::before { left: 110%; }
.training-footer__cta-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background: var(--ink-900);
  color: var(--paper);
}
.training-footer__cta-button span:first-child {
  padding: 0 22px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.training-footer__cta-button span:last-child {
  width: 50px;
  border-left: 1px solid rgba(255,255,255,.18);
}
.training-footer__step {
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  background: var(--ink-900);
}
.training-footer__step--a {
  top: 16px;
  right: 0;
}
.training-footer__step--b {
  top: 0;
  right: 16px;
}
.training-footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-top: 72px;
}
.training-footer__logo {
  display: block;
  height: 28px;
  width: auto;
}
.training-footer__brand p {
  max-width: 320px;
  margin-top: 18px;
  color: rgba(255,255,255,.7);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}
.training-footer__brand address {
  margin-top: 20px;
  color: rgba(255,255,255,.55);
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.6;
  font-style: normal;
}
.training-footer a {
  transition: color var(--ds-dur) var(--ds-ease);
}
.training-footer__brand a,
.training-footer__col a {
  color: inherit;
}
.training-footer__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  color: var(--sky-400);
  background: rgba(151,194,247,.08);
  border: 1px solid rgba(151,194,247,.18);
  backdrop-filter: blur(10px);
  font-family: var(--font-sans);
  font-size: 11.5px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.training-footer__chip span {
  width: 6px;
  height: 6px;
  background: var(--sky-400);
}
.training-footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
}
.training-footer__col a {
  color: rgba(255,255,255,.75);
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: var(--tr-body);
}
.training-footer__col a:hover,
.training-footer__brand a:hover,
.training-footer__legal a:hover {
  color: var(--sky-400);
}
.training-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.training-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.training-footer__legal a {
  color: rgba(255,255,255,.5);
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.6;
}
.training-footer__copy {
  color: rgba(255,255,255,.4);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .training-footer__inner {
    width: min(1280px, 100% - 64px);
    padding-top: 88px;
  }
  .training-footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .training-footer__inner {
    width: min(1280px, 100% - 40px);
    padding: 64px 0 42px;
  }
  .training-footer__cta {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px;
  }
  .training-footer__cta-title {
    font-size: 24px;
    line-height: 1.18;
  }
  .training-footer__cta-copy {
    font-size: 15px;
  }
  .training-footer__cta-button {
    justify-self: start;
  }
  .training-footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
  }
  .training-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 48px;
  }
}

@media (max-width: 520px) {
  .training-footer__inner {
    width: min(1280px, 100% - 32px);
    padding-top: 56px;
  }
  .training-footer__cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .training-footer__legal {
    gap: 14px 22px;
  }
}

/* ════════════════ AI TRAINING PAGE TEXT SYSTEM FINAL CASCADE ════════════════ */
body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  letter-spacing: var(--tr-body);
  text-rendering: optimizeLegibility;
}
h1,
h2,
h3,
h4,
h5,
h6,
.display,
.h1,
.h2,
.h3,
.h4,
.h5,
.hero__title,
.sec-title,
.tmpl__title,
.service-network__head h2,
.service-detail__copy h3,
.service-menu h3,
.faq2__title,
.fcta__title {
  font-family: var(--font-display);
  font-weight: 500;
  margin-top: 0;
  text-wrap: balance;
}
p,
li,
.body,
.sec-sub,
.hero__desc,
.tmpl__sub,
.step__desc,
.service-detail__copy p,
.lead-ink,
.fcta__sub,
.ftrx__brand-desc {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  letter-spacing: var(--tr-body);
}
.hero__title {
  font-size: 64px;
  line-height: 1.04;
  letter-spacing: -.03em;
}
.hero__desc {
  font-size: 17.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  letter-spacing: -.005em;
}
.sec-title,
.tmpl__title,
.service-network__head h2,
.faq2__title,
.fcta__title {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -.025em;
}
.service-detail__copy h3,
.service-menu h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  letter-spacing: -.02em;
}
.step__title,
.faq-item__q {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.36;
  font-weight: 500;
  letter-spacing: var(--tr-h5);
}
.eyebrow,
.sec-kicker,
.service-network__eyebrow,
.partners__cap,
.ftr-chip {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
}
.service-network__eyebrow,
.tmpl__eyebrow,
.ftr-chip {
  font-family: var(--font-mono);
  font-weight: 400;
  letter-spacing: .12em;
}
.hero,
.tmpl,
.service-network,
.fcta,
.foot {
  color: var(--fg-onbrand);
}
.hero .hero__title,
.tmpl__title,
.service-network__head h2,
.fcta__title {
  color: #fff;
}
.tmpl__title .ac,
.hero__title .grad,
.fcta__title .grad {
  color: transparent;
}
.tmpl__sub,
.service-detail__copy p,
.fcta__sub {
  color: rgba(255,255,255,.78);
}
.partners,
.sec--tint {
  color: var(--fg-strong);
}
.partners .sec-title,
.sec-title--ink,
.faq2__title,
.faq-item__q {
  color: var(--ink-900);
}
.partners p,
.lead-ink,
.faq-item__a-inner {
  color: var(--ink-muted);
}
.card__label,
.service-menu__item span {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: var(--tr-h5);
}
.service-detail__points li,
.stat__cap,
.ftrx__col a {
  font-size: var(--fs-body-sm);
  line-height: 1.55;
}
.ftrx__brand-meta,
.ftrx__copy {
  font-family: var(--font-mono);
  letter-spacing: 0;
}

.tmpl__title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .28em;
  flex-wrap: wrap;
}
.tmpl__title-logo {
  flex: 0 0 auto;
  height: .72em;
  margin-right: 0;
}
.tmpl__title-text {
  display: inline-block;
}
.tmpl__title .ac {
  display: none;
}

@media (max-width: 900px) {
  .hero__title {
    font-size: 44px;
    line-height: 1.05;
  }
  .sec-title,
  .tmpl__title,
  .service-network__head h2,
  .faq2__title,
  .fcta__title {
    font-size: 36px;
    line-height: 1.1;
  }
  .service-detail__copy h3,
  .service-menu h3 {
    font-size: 24px;
    line-height: 1.2;
  }
}

@media (max-width: 760px) {
  .hero__title {
    font-size: 38px;
    line-height: 1.06;
  }
  .sec-title,
  .tmpl__title,
  .service-network__head h2,
  .faq2__title,
  .fcta__title {
    font-size: 28px;
    line-height: 1.15;
  }
  .hero__desc,
  .sec-sub,
  .tmpl__sub,
  .service-detail__copy p,
  .lead-ink,
  .fcta__sub {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
  }
}

@media (max-width: 520px) {
  .hero__title {
    font-size: 32px;
  }
  .sec-title,
  .tmpl__title,
  .service-network__head h2,
  .faq2__title,
  .fcta__title {
    font-size: 24px;
  }
  .tmpl__title {
    gap: .22em;
  }
  .tmpl__title-logo {
    height: .62em;
  }
}

@media (max-width: 980px) {
  .about-band__tiles {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-band__tile {
    min-height: 78px;
  }
  .about-band__orbit--one { width: 720px; right: -360px; }
  .about-band__orbit--two { width: 520px; right: -240px; }
  .about-band__orbit--three { width: 340px; right: -150px; }
}

@media (max-width: 760px) {
  .about-band {
    padding: 70px 0;
  }
  .about-band__inner {
    width: min(100% - 32px, 720px);
  }
  .about-band__copy {
    margin-top: 42px;
  }
  .about-band__copy h2 {
    font-size: 52px;
    line-height: 1.04;
  }
  .about-band__copy p {
    font-size: 30px;
    line-height: 1.16;
  }
  .about-band__tile {
    gap: 18px;
    padding: 20px;
  }
  .about-band__icon {
    width: 44px;
    height: 44px;
  }
  .about-band__icon--dev {
    width: 62px;
    height: 42px;
    font-size: 16px;
  }
  .about-band__tile strong {
    font-size: 18px;
  }
  .about-band__ctas {
    flex-direction: column;
    align-items: stretch;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-band .aj-cta {
    width: 100%;
  }
  .about-band .aj-cta--md .aj-cta__label {
    flex: 1 1 auto;
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .about-band__eyebrow {
    font-size: 11px;
    letter-spacing: .22em;
  }
  .about-band__copy h2 {
    font-size: 42px;
  }
  .about-band__copy p {
    font-size: 24px;
  }
}

/* Services detail: clean line-based layout */
.service-detail__copy {
  max-width: 720px;
}
.service-detail {
  display: grid;
  grid-template-columns: minmax(190px, .42fr) minmax(320px, .58fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
}
.service-detail__media {
  min-height: 0;
  margin-bottom: 0;
}
.service-detail__media img {
  width: min(100%, 300px);
  max-height: 240px;
}
.service-detail__copy p {
  display: none;
}
.service-detail__points {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 430px;
  margin-top: 18px;
  padding-top: 2px;
  border-top: 1px solid rgba(196,220,251,.24);
}
.service-detail__points li {
  position: relative;
  min-height: 0;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(196,220,251,.18);
  border-radius: 0;
  background: transparent;
  color: rgba(245,248,255,.88);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -.01em;
}
.service-detail__points li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--sky);
  transition: width .3s var(--ease);
}
.service-detail__points li:hover::before {
  width: 100%;
}
.service-detail__points li span {
  min-width: 24px;
  color: var(--sky);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: .08em;
  opacity: .94;
}

@media (max-width: 760px) {
  .service-detail {
    display: block;
  }
  .service-detail__media {
    margin-bottom: 28px;
  }
  .service-detail__media img {
    width: min(100%, 300px);
    max-height: 230px;
  }
  .service-detail__points {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: none;
  }
  .service-detail__points li {
    padding: 12px 0;
    font-size: 14px;
  }
}

.service-menu__item {
  border-radius: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  padding-left: 14px;
}
.service-menu__item::after {
  display: none;
}
.service-menu__item:hover,
.service-menu__item:focus-visible,
.service-menu__item.is-active {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
  opacity: 1;
}
.service-menu__item::before {
  width: 2px;
  left: 0;
  top: 12px;
  bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(151,194,248,.95), transparent);
  opacity: 0;
}
.service-menu__item:hover::before,
.service-menu__item:focus-visible::before,
.service-menu__item.is-active::before {
  opacity: 1;
  animation: none;
}
.service-menu__item + .service-menu__item {
  border-top: 1px solid rgba(196,220,251,.08);
}
.service-menu__ico {
  background: rgba(151,194,248,.045);
}
.service-menu__item:hover .service-menu__ico,
.service-menu__item:focus-visible .service-menu__ico,
.service-menu__item.is-active .service-menu__ico {
  background: rgba(151,194,248,.12);
  box-shadow: 0 0 24px rgba(151,194,248,.12);
}

/* Services: regular text + non-box hover treatment */
.service-network,
.service-network__head h2,
.service-detail__copy h3,
.service-detail__points li,
.service-detail__points li span,
.service-menu h3,
.service-menu__item,
.service-menu__item span,
.service-menu__item small {
  font-weight: 400 !important;
}
.service-detail__points {
  border-top: 1px solid rgba(196,220,251,.22) !important;
}
.service-detail__points li {
  border: 0 !important;
  border-bottom: 1px solid rgba(196,220,251,.16) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.service-menu__item {
  border: 0 !important;
  border-top: 1px solid rgba(196,220,251,.08) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}
.service-menu__item:first-child {
  border-top: 0 !important;
}
.service-menu__item:hover,
.service-menu__item:focus-visible,
.service-menu__item.is-active {
  background: transparent !important;
  border-color: rgba(196,220,251,.08) !important;
  box-shadow: none !important;
  transform: none !important;
}
.service-menu__item::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  bottom: auto !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: var(--sky) !important;
  opacity: 0 !important;
  transform: translateY(-50%) scale(.5) !important;
  box-shadow: 0 0 18px rgba(151,194,248,.72) !important;
  transition: opacity .22s var(--ease), transform .22s var(--ease) !important;
  animation: none !important;
}
.service-menu__item::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -1px !important;
  top: auto !important;
  width: auto !important;
  height: 1px !important;
  border-radius: 0 !important;
  background: linear-gradient(90deg, var(--sky), rgba(151,194,248,0)) !important;
  box-shadow: none !important;
  opacity: 0 !important;
  transform: scaleX(.32) !important;
  transform-origin: left center !important;
  transition: opacity .24s var(--ease), transform .24s var(--ease) !important;
}
.service-menu__item:hover::before,
.service-menu__item:focus-visible::before,
.service-menu__item.is-active::before {
  opacity: 1 !important;
  transform: translateY(-50%) scale(1) !important;
}
.service-menu__item:hover::after,
.service-menu__item:focus-visible::after,
.service-menu__item.is-active::after {
  opacity: .8 !important;
  transform: scaleX(1) !important;
}
.service-menu__item:hover span,
.service-menu__item:focus-visible span,
.service-menu__item.is-active span {
  color: #fff !important;
}
.service-menu__ico,
.service-menu__item:hover .service-menu__ico,
.service-menu__item:focus-visible .service-menu__ico,
.service-menu__item.is-active .service-menu__ico {
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Services: spacious visual-first composition */
.service-network {
  height: auto !important;
  min-height: calc(100svh - var(--nav-h)) !important;
  align-items: center !important;
  padding: clamp(30px, 4.8vh, 50px) 0 clamp(28px, 4.5vh, 48px) !important;
}
.service-network__inner {
  width: min(1180px, 100% - clamp(40px, 7vw, 96px)) !important;
}
.service-network__head {
  gap: 14px !important;
  margin-bottom: clamp(22px, 3.4vh, 34px) !important;
}
.service-network__head h2 {
  max-width: 920px !important;
  font-size: clamp(34px, 4vw, 46px) !important;
  line-height: 1.08 !important;
  font-weight: 400 !important;
}
.service-network__grid {
  grid-template-columns: minmax(0, 1fr) minmax(250px, .32fr) !important;
  gap: clamp(30px, 4vw, 48px) !important;
  align-items: center !important;
}
.service-detail {
  grid-template-columns: minmax(320px, .56fr) minmax(280px, .44fr) !important;
  gap: clamp(26px, 3.2vw, 42px) !important;
  align-items: center !important;
}
.service-detail__media {
  position: relative !important;
  min-height: 320px !important;
  display: grid !important;
  place-items: center !important;
}
.service-detail__media::before {
  content: "" !important;
  position: absolute !important;
  inset: 10% 4% !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(151,194,248,.18), transparent 66%) !important;
  filter: blur(8px) !important;
  opacity: .8 !important;
}
.service-detail__media img {
  position: relative !important;
  z-index: 1 !important;
  width: min(100%, 450px) !important;
  max-height: 350px !important;
  opacity: .98 !important;
  filter: drop-shadow(0 22px 36px rgba(0,0,0,.24)) drop-shadow(0 0 20px rgba(151,194,248,.16)) !important;
}
.service-detail__copy h3 {
  font-size: clamp(25px, 2.3vw, 32px) !important;
  line-height: 1.08 !important;
  margin-bottom: 18px !important;
  font-weight: 400 !important;
}
.service-detail__points {
  max-width: 500px !important;
  margin-top: 0 !important;
}
.service-detail__points li {
  padding: 12px 0 !important;
  font-size: 15px !important;
}
.service-menu {
  padding-left: clamp(24px, 3.2vw, 42px) !important;
}
.service-menu::before {
  top: 48px !important;
}
.service-menu h3 {
  font-size: clamp(24px, 2vw, 30px) !important;
  line-height: 1.08 !important;
}
.service-menu__items {
  gap: 0 !important;
}
.service-menu__item {
  min-height: 36px !important;
  grid-template-columns: 30px minmax(0, 1fr) !important;
  gap: 10px !important;
  padding: 5px 0 5px 14px !important;
}
.service-menu__item span {
  font-size: clamp(14px, 1.1vw, 17px) !important;
  line-height: 1.18 !important;
}
.service-menu__ico {
  width: 26px !important;
  height: 26px !important;
  border-color: rgba(151,194,248,.28) !important;
}

@media (max-width: 980px) {
  .service-network {
    min-height: auto !important;
    padding: 64px 0 !important;
  }
  .service-network__grid,
  .service-detail {
    grid-template-columns: 1fr !important;
  }
  .service-detail__media {
    min-height: 260px !important;
  }
  .service-detail__media img {
    max-height: 280px !important;
  }
}

@media (max-width: 760px) {
  .service-network__inner {
    width: min(100% - 32px, 720px) !important;
  }
  .service-network__head h2 {
    font-size: 34px !important;
  }
  .service-detail__media {
    min-height: 220px !important;
    margin-bottom: 6px !important;
  }
  .service-detail__copy h3 {
    font-size: 28px !important;
  }
  .service-menu {
    padding-left: 0 !important;
  }
  .service-menu::before {
    display: none !important;
  }
}

/* Who We Serve: force every card icon badge square */
#who-we-serve .serve-card__icon {
  border-radius: 0 !important;
}

/* Who We Serve: restored light theme */
#who-we-serve.serve-band {
  background:
    radial-gradient(circle at 20% 0%, rgba(151,194,248,.28), transparent 34%),
    radial-gradient(circle at 86% 72%, rgba(151,194,248,.18), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 48%, #eef6ff 100%) !important;
  color: #17243a !important;
}
#who-we-serve.serve-band::before {
  opacity: .18 !important;
  background:
    radial-gradient(circle at 10px 10px, rgba(0,29,107,.13) 1px, transparent 1.7px) !important;
  background-size: 30px 30px !important;
}
#who-we-serve .serve-band__head h2 {
  color: #17243a !important;
}
#who-we-serve .serve-band__head h2 span {
  color: #1f6bff !important;
}
#who-we-serve .serve-kicker {
  color: #17243a !important;
}
#who-we-serve .serve-kicker span {
  background: #1f6bff !important;
}
#who-we-serve .serve-card {
  background: rgba(255,255,255,.86) !important;
  border: 1px solid rgba(0,29,107,.1) !important;
  color: #17243a !important;
  box-shadow: 0 18px 42px rgba(0,29,107,.09) !important;
}
#who-we-serve .serve-card:hover {
  background: #fff !important;
  border-color: rgba(31,107,255,.22) !important;
  box-shadow: 0 24px 54px rgba(0,29,107,.13) !important;
}
#who-we-serve .serve-card strong {
  color: #17243a !important;
}
#who-we-serve .serve-card__icon {
  color: #1f6bff !important;
  background: rgba(31,107,255,.07) !important;
  border-color: rgba(31,107,255,.16) !important;
  box-shadow: none !important;
}
#who-we-serve .serve-group--partners {
  border-left-color: rgba(0,29,107,.12) !important;
}
#who-we-serve .serve-grid--partners .serve-card {
  background: transparent !important;
  border-color: rgba(0,29,107,.12) !important;
  box-shadow: none !important;
}
#who-we-serve .serve-grid--partners .serve-card:hover {
  background: rgba(255,255,255,.72) !important;
  border-color: rgba(31,107,255,.18) !important;
}
#who-we-serve .serve-sizes {
  background: rgba(255,255,255,.82) !important;
  border: 1px solid rgba(0,29,107,.1) !important;
  box-shadow: 0 18px 42px rgba(0,29,107,.08) !important;
}
#who-we-serve .serve-sizes__label,
#who-we-serve .serve-size-item {
  border-color: rgba(0,29,107,.12) !important;
}
#who-we-serve .serve-sizes strong,
#who-we-serve .serve-size-item {
  color: #17243a !important;
}
#who-we-serve .serve-size-item svg {
  color: #1f6bff !important;
}

/* Who We Serve: restore original full-width layout */
@media (min-width: 721px) {
  #who-we-serve .serve-band__inner {
    display: block !important;
    width: min(1600px, 100% - clamp(40px, 6vw, 96px)) !important;
  }
  #who-we-serve .serve-band__head {
    max-width: 1040px !important;
    margin: 0 auto clamp(34px, 4.5vw, 58px) !important;
  }
  #who-we-serve .serve-group {
    margin: 0 !important;
  }
  #who-we-serve .serve-group + .serve-group {
    margin-top: clamp(40px, 4.5vw, 58px) !important;
  }
  #who-we-serve .serve-group--partners {
    padding-left: 0 !important;
    border-left: 0 !important;
  }
  #who-we-serve .serve-grid--industries {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(16px, 1.8vw, 28px) !important;
  }
  #who-we-serve .serve-grid--partners {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(16px, 1.8vw, 28px) !important;
  }
  #who-we-serve .serve-grid--partners .serve-card {
    min-height: 104px !important;
    padding: clamp(22px, 2.1vw, 30px) !important;
    background: rgba(255,255,255,.86) !important;
    border: 1px solid rgba(0,29,107,.1) !important;
    border-radius: 8px !important;
    box-shadow: 0 18px 42px rgba(0,29,107,.09) !important;
  }
  #who-we-serve .serve-grid--partners .serve-card:hover {
    transform: translateY(-3px) !important;
    background: #fff !important;
    border-color: rgba(31,107,255,.22) !important;
    box-shadow: 0 24px 54px rgba(0,29,107,.13) !important;
  }
  #who-we-serve .serve-grid--partners .serve-card__icon {
    width: 64px !important;
    height: 64px !important;
  }
  #who-we-serve .serve-grid--partners .serve-card__icon svg {
    width: 32px !important;
    height: 32px !important;
  }
  #who-we-serve .serve-grid--partners .serve-card strong {
    font-size: clamp(17px, 1.35vw, 22px) !important;
  }
  #who-we-serve .serve-sizes {
    display: grid !important;
    grid-template-columns: 1.55fr repeat(4, minmax(0, 1fr)) !important;
    align-items: center !important;
    gap: 0 !important;
    min-height: 78px !important;
    margin-top: clamp(34px, 4vw, 54px) !important;
    padding: 0 clamp(20px, 2.5vw, 38px) !important;
    background: rgba(255,255,255,.82) !important;
    border: 1px solid rgba(0,29,107,.1) !important;
    border-radius: 8px !important;
    box-shadow: 0 18px 42px rgba(0,29,107,.08) !important;
  }
  #who-we-serve .serve-sizes__label {
    grid-column: auto !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
  }
  #who-we-serve .serve-size-item {
    min-height: 34px !important;
    justify-content: center !important;
    border-bottom: 0 !important;
    border-left: 1px solid rgba(0,29,107,.12) !important;
    padding: 0 !important;
  }
  #who-we-serve .serve-size-item:nth-child(even) {
    padding-left: 0 !important;
    border-left: 1px solid rgba(0,29,107,.12) !important;
  }
}

/* Services: reference-aligned two-column placement */
.service-network__grid {
  grid-template-columns: minmax(0, .98fr) minmax(330px, .62fr) !important;
  gap: clamp(42px, 6vw, 86px) !important;
  align-items: start !important;
}
.service-detail {
  display: block !important;
}
.service-detail__media {
  min-height: clamp(280px, 29vw, 430px) !important;
  margin: 0 0 clamp(28px, 3.4vw, 46px) !important;
  place-items: center !important;
}
.service-detail__media img {
  width: min(100%, 560px) !important;
  max-height: clamp(300px, 32vw, 450px) !important;
}
.service-detail__copy {
  max-width: 650px !important;
}
.service-detail__copy h3 {
  margin-bottom: clamp(22px, 2.6vw, 32px) !important;
}
.service-detail__points {
  max-width: 620px !important;
}
.service-menu {
  padding-left: clamp(36px, 4.8vw, 70px) !important;
}
.service-menu::before {
  top: 70px !important;
}
.service-menu__line {
  margin-bottom: clamp(24px, 3vw, 40px) !important;
}
.service-menu__items {
  gap: clamp(18px, 2.2vw, 34px) !important;
}
.service-menu__item {
  min-height: auto !important;
  grid-template-columns: 34px minmax(0, 1fr) !important;
  padding: 0 0 clamp(16px, 2vw, 24px) 16px !important;
  align-items: start !important;
}
.service-menu__item span {
  font-size: clamp(19px, 1.7vw, 27px) !important;
}
.service-menu__item small {
  display: block !important;
  grid-column: 2;
  margin-top: 9px;
  color: var(--sky-soft);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.45;
  font-weight: 300 !important;
}
.service-menu__ico {
  margin-top: 2px !important;
}

/* Services: clean aligned key-services menu */
.service-menu {
  overflow: visible !important;
}
.service-menu__items {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}
.service-menu__item {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  column-gap: 18px !important;
  row-gap: 3px !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 74px !important;
  padding: 16px 0 16px 0 !important;
  overflow: visible !important;
  border-top: 1px solid rgba(196,220,251,.12) !important;
}
.service-menu__item::before {
  display: none !important;
}
.service-menu__item::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 60px !important;
  right: 0 !important;
  bottom: -1px !important;
  width: auto !important;
  height: 1px !important;
  background: linear-gradient(90deg, rgba(151,194,248,.42), rgba(151,194,248,0)) !important;
  opacity: .42 !important;
  transform: none !important;
}
.service-menu__item:first-child {
  border-top: 0 !important;
}
.service-menu__item:hover,
.service-menu__item:focus-visible,
.service-menu__item.is-active {
  background: transparent !important;
  border-color: rgba(196,220,251,.12) !important;
}
.service-menu__item:hover::after,
.service-menu__item:focus-visible::after,
.service-menu__item.is-active::after {
  opacity: .95 !important;
  background: linear-gradient(90deg, var(--sky), rgba(151,194,248,0)) !important;
}
.service-menu__ico {
  width: 42px !important;
  height: 42px !important;
  margin: 0 !important;
  display: grid !important;
  place-items: center !important;
  color: rgba(196,220,251,.82) !important;
  border: 1px solid rgba(151,194,248,.2) !important;
  border-radius: 8px !important;
  background: rgba(151,194,248,.045) !important;
}
.service-menu__ico svg {
  width: 20px !important;
  height: 20px !important;
}
.service-menu__item:hover .service-menu__ico,
.service-menu__item:focus-visible .service-menu__ico,
.service-menu__item.is-active .service-menu__ico {
  color: var(--sky) !important;
  border-color: rgba(151,194,248,.48) !important;
  background: rgba(151,194,248,.1) !important;
}
.service-menu__item > span:not(.service-menu__ico) {
  min-width: 0 !important;
}
.service-menu__item span {
  display: block !important;
  color: rgba(235,244,255,.9) !important;
  font-size: clamp(18px, 1.35vw, 22px) !important;
  line-height: 1.16 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}
.service-menu__item small {
  grid-column: 2 !important;
  display: block !important;
  max-width: 34ch !important;
  margin-top: 2px !important;
  color: rgba(196,220,251,.62) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

@media (max-width: 980px) {
  .service-detail__media {
    min-height: 260px !important;
    margin-bottom: 28px !important;
  }
  .service-menu__item small {
    display: none !important;
  }
  .service-menu__item {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    column-gap: 14px !important;
    min-height: 62px !important;
    padding: 12px 0 !important;
  }
  .service-menu__ico {
    width: 38px !important;
    height: 38px !important;
  }
  .service-menu__ico svg {
    width: 18px !important;
    height: 18px !important;
  }
  .service-menu__item span {
    font-size: clamp(17px, 2.1vw, 20px) !important;
    line-height: 1.16 !important;
  }
}
