html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}


/* ============================================================
   STG MARKETING LLC — Brand Design System (native port)
   Colors, type, and motion primitives derived from the
   official brand guidelines (v1.1, June 2026).
   ============================================================ */

:root {
  --navy: #060912;        /* Midnight navy — primary background */
  --panel: #0d1320;       /* Panel navy — cards, containers */
  --electric: #1d4ed8;    /* Electric blue — primary accent, CTAs */
  --glow: #4a90ff;        /* Glow blue — highlights, glow, links */
  --chrome: #c7d2e3;      /* Chrome silver — secondary mark, borders */
  --offwhite: #e8ecf5;    /* Off white — primary text on dark */
  --slate: #8c98b8;       /* Slate gray — secondary / body text */
  --hairline: #1a2236;    /* Hairline — dividers, borders */

  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system,
    Segoe UI, Roboto, sans-serif;

  --shadow-glow-sm: 0 0 20px -4px rgba(74, 144, 255, 0.45);
  --shadow-glow: 0 0 60px -12px rgba(74, 144, 255, 0.55);

  --container: 80rem;   /* max-w-7xl */
  --pad-x: 1.25rem;     /* px-5 */
}

@media (min-width: 640px) {
  :root { --pad-x: 2rem; } /* sm:px-8 */
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  scroll-behavior: smooth;       /* fallback for reduced-motion / no-JS */
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  background-color: var(--navy);
  color: var(--offwhite);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

::selection {
  background: rgba(29, 78, 216, 0.4);
  color: #fff;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--electric), var(--glow));
  border-radius: 99px;
  border: 2px solid var(--navy);
}

/* Layout container */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section {
  position: relative;
  padding-block: 7rem; /* py-28 */
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.icon--sm { width: 1rem; height: 1rem; }

/* ============================================================
   Keyframes
   ============================================================ */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.85) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.1) rotate(45deg); }
}
@keyframes aurora {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.55; }
  33% { transform: translate3d(6%, -4%, 0) scale(1.12); opacity: 0.8; }
  66% { transform: translate3d(-5%, 5%, 0) scale(0.95); opacity: 0.6; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes spin-reverse {
  to { transform: rotate(-360deg); }
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

/* ============================================================
   Reusable brand utilities
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--glow);
}
.eyebrow--center { justify-content: center; }
.eyebrow .spark { width: 0.875rem; height: 0.875rem; }

/* Chrome/glass gradient text echoing the logo */
.text-chrome {
  color: var(--chrome);
  background: linear-gradient(180deg, #ffffff 0%, var(--chrome) 45%, #7d8aa8 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.text-gradient {
  color: var(--glow);
  background: linear-gradient(100deg, var(--glow) 0%, #7fb0ff 40%, var(--chrome) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Glass panel — cards / containers */
.glass {
  background:
    linear-gradient(180deg, rgba(199, 210, 227, 0.05), rgba(13, 19, 32, 0.2)),
    var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 1.25rem;
  backdrop-filter: blur(10px);
}

/* Fine grid background */
.grid-bg {
  background-image:
    linear-gradient(to right, rgba(199, 210, 227, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(199, 210, 227, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
}

/* Shine sweep for buttons/cards */
.shine {
  position: relative;
  overflow: hidden;
}
.shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 48%,
    rgba(255, 255, 255, 0.05) 55%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}
.shine:hover::after { transform: translateX(120%); }

/* Primary CTA */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  border-radius: 0.85rem;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  border: none;
  cursor: pointer;
  background: linear-gradient(180deg, var(--glow), var(--electric));
  box-shadow:
    0 10px 30px -10px rgba(29, 78, 216, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 45px -12px rgba(74, 144, 255, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.7; cursor: default; transform: none; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 0.85rem;
  font-weight: 500;
  color: var(--offwhite);
  border: 1px solid var(--hairline);
  background: rgba(199, 210, 227, 0.03);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.btn-ghost:hover {
  border-color: rgba(74, 144, 255, 0.5);
  background: rgba(74, 144, 255, 0.08);
  transform: translateY(-2px);
}

/* Gradient hairline divider */
.rule {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--hairline) 20%,
    rgba(74, 144, 255, 0.4) 50%,
    var(--hairline) 80%,
    transparent
  );
}

/* Card lift hover */
.lift {
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1),
    border-color 0.35s ease, box-shadow 0.35s ease;
}
.lift:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 144, 255, 0.45);
  box-shadow: 0 30px 60px -30px rgba(74, 144, 255, 0.4);
}

/* 4-point spark base color */
.spark { color: var(--glow); }
.bullet {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: var(--glow);
  flex-shrink: 0;
}

/* Section head (centered) */
.section__head {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}
.section__title {
  margin-top: 1.25rem;
  font-size: clamp(1.875rem, 1.2rem + 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--chrome);
}
.section__lead {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate);
}

/* ============================================================
   Fixed decorative background
   ============================================================ */
.bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
}
.bg__wash {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% -10%, #0e1a3a 0%, #070b18 45%, #050710 100%);
}
.bg__aurora {
  position: absolute;
  border-radius: 999px;
  animation: aurora 18s ease-in-out infinite;
}
.bg__aurora--1 {
  top: -10rem;
  left: 50%;
  width: 46rem;
  height: 46rem;
  transform: translateX(-50%);
  filter: blur(120px);
  background: radial-gradient(circle, rgba(29, 78, 216, 0.55), transparent 65%);
}
.bg__aurora--2 {
  top: 40%;
  left: -10rem;
  width: 34rem;
  height: 34rem;
  filter: blur(130px);
  background: radial-gradient(circle, rgba(74, 144, 255, 0.32), transparent 65%);
  animation-delay: -6s;
}
.bg__aurora--3 {
  bottom: -10%;
  right: -10%;
  width: 38rem;
  height: 38rem;
  filter: blur(140px);
  background: radial-gradient(circle, rgba(29, 78, 216, 0.28), transparent 65%);
  animation-delay: -11s;
}
.bg__grid { position: absolute; inset: 0; }
.bg__sparks { position: absolute; inset: 0; }
.bg__sparks .spark { position: absolute; }
.bg__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(3, 5, 12, 0.75) 100%);
}



.flex-col{display: flex;flex-direction: column;}
.uppercase{text-transform: uppercase;}
.text-offwhite{color: #e8ecf5;}
.text-glow{color: #4a90ff;}
.text-xl{font-size: 1.25rem;letter-spacing:0.22em; font-weight: 700;line-height: 1;}

.text-xs{margin-top:calc(0.25rem * 1.5); letter-spacing:0.22em;font-weight: 700;line-height: 1;}
/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  transform: translateY(-80px);
  opacity: 0;
}
.nav.nav--in {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__bar {
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
}
.nav__bar.is-scrolled {
  border-bottom-color: var(--hairline);
  background: rgba(6, 9, 18, 0.7);
  backdrop-filter: blur(20px);
}
.nav__inner {
  display: flex;
  height: 4.5rem;
  max-width: var(--container);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem var(--pad-x);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: calc(0.25rem * 3);
}
.nav__logo img {
  height: 3.5rem;
  width: auto;
  filter: drop-shadow(0 0 18px rgba(74, 144, 255, 0.45));
  transition: transform 0.5s ease;
}
.nav__logo:hover img { transform: scale(1.05); }

.nav__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  position: relative;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s ease;
}
.nav__link:hover { color: var(--offwhite); }
.nav__underline {
  position: absolute;
  inset-inline: 1rem;
  bottom: -0.125rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(to right, var(--glow), var(--electric));
  transition: transform 0.3s ease;
}
.nav__link:hover .nav__underline { transform: scaleX(1); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__cta {
  display: none;
  font-size: 0.875rem;
}
.nav__toggle {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid var(--hairline);
  background: rgba(13, 19, 32, 0.6);
  cursor: pointer;
}
.nav__burger {
  position: relative;
  height: 1rem;
  width: 1.25rem;
}
.nav__burger-line {
  position: absolute;
  left: 0;
  height: 2px;
  width: 1.25rem;
  border-radius: 2px;
  background: var(--offwhite);
  transition: all 0.3s ease;
}
.nav__burger-line--top { top: 0; }
.nav__burger-line--mid { top: 0.375rem; }
.nav__burger-line--bot { top: 0.75rem; }
.nav__toggle[aria-expanded="true"] .nav__burger-line--top { top: 0.375rem; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__burger-line--mid { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__burger-line--bot { top: 0.375rem; transform: rotate(-45deg); }

.nav__progress {
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(to right, var(--electric), var(--glow), var(--chrome));
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset-inline: 0;
  top: 4.6rem;
  z-index: 40;
  margin-inline: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--hairline);
  background: rgba(6, 9, 18, 0.95);
  padding: 0.75rem;
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu.is-open { opacity: 1; transform: translateY(0); }
.mobile-menu__link {
  display: block;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate);
  transition: background 0.2s ease, color 0.2s ease;
}
.mobile-menu__link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--offwhite);
}
.mobile-menu__cta {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7rem var(--pad-x) 4rem;
  text-align: center;
}
.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
}
.hero__video,
.hero__poster {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__video {
  /* opacity: 0; */
  transition: opacity 1.4s ease-out;
}
.hero__video.is-ready { opacity: 1; }
.hero__poster { display: none; } /* shown only when reduced motion / no video */

.hero__overlay { position: absolute; inset: 0; }
.hero__overlay--navy { background: rgba(6, 9, 18, 0.55); }
.hero__overlay--electric {
  background: rgba(29, 78, 216, 0.15);
  mix-blend-mode: color;
}
.hero__overlay--top {
  inset: 0 0 auto 0;
  height: 11rem;
  background: linear-gradient(to bottom, var(--navy), rgba(6, 9, 18, 0.8), transparent);
}
.hero__overlay--bottom {
  inset: auto 0 0 0;
  height: 15rem;
  background: linear-gradient(to top, var(--navy), rgba(6, 9, 18, 0.9), transparent);
}
.hero__overlay--radial {
  background: radial-gradient(ellipse 55% 50% at 50% 44%, rgba(6, 9, 18, 0.78), transparent 72%);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: rgba(13, 19, 32, 0.6);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--slate);
  backdrop-filter: blur(6px);
}
.dot {
  position: relative;
  display: inline-flex;
  height: 0.5rem;
  width: 0.5rem;
}
.dot__ping {
  position: absolute;
  inset: 0;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: var(--glow);
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.dot__core {
  position: relative;
  display: inline-flex;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 999px;
  background: var(--glow);
}

.hero__title {
  max-width: 56rem;
  margin-inline: auto;
  font-size: clamp(2.25rem, 1rem + 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero__title .word {
  display: inline-block;
  margin-right: 0.28em;
}

.hero__sub {
  max-width: 42rem;
  margin: 1.75rem auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate);
  text-wrap: pretty;
}

.hero__ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero__platform {
  position: relative;
  margin-top: 4rem;
  width: 100%;
  max-width: 48rem;
  perspective: 1200px;
}
.hero__tilt {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}
.hero__glow-pad {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  height: 6rem;
  width: 70%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(74, 144, 255, 0.3);
  filter: blur(32px);
}
.hero__float {
  position: relative;
  transform: translateZ(60px);
  animation: float 7s ease-in-out infinite;
}
.hero__lockup {
  margin-inline: auto;
  width: 100%;
  max-width: 18rem;
  filter: drop-shadow(0 20px 60px rgba(29, 78, 216, 0.5));
}
.hero__spark { position: absolute; }
.hero__spark--1 {
  right: -0.5rem;
  top: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--glow);
  animation: twinkle 3.2s ease-in-out infinite;
}
.hero__spark--2 {
  left: -0.75rem;
  bottom: 2rem;
  width: 1rem;
  height: 1rem;
  color: var(--chrome);
  animation: twinkle 4s ease-in-out infinite;
  animation-delay: 1s;
}

.hero__stats {
  margin-top: 4rem;
  display: grid;
  width: 100%;
  max-width: 48rem;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 1rem;
  border: 1px solid var(--hairline);
  background: rgba(13, 19, 32, 0.4);
  backdrop-filter: blur(6px);
}
.hero__stat {
  padding: 1.25rem 0.75rem;
}
.hero__stat + .hero__stat { border-left: 1px solid var(--hairline); }
.hero__stat-k {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--chrome);
}
.hero__stat-v {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--slate);
}

.hero__scroll {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate);
}
.hero__scroll-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
}
.hero__scroll-track {
  display: flex;
  height: 2.25rem;
  width: 1.25rem;
  align-items: flex-start;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  padding: 0.25rem;
}
.hero__scroll-dot {
  height: 0.5rem;
  width: 0.25rem;
  border-radius: 999px;
  background: var(--glow);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--hairline);
  background: rgba(13, 19, 32, 0.3);
  padding-block: 1.25rem;
}
.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.marquee__text {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(140, 152, 184, 0.7);
  transition: color 0.2s ease;
}
.marquee__text:hover { color: var(--offwhite); }
.marquee__item .spark {
  width: 0.875rem;
  height: 0.875rem;
  color: rgba(74, 144, 255, 0.6);
}
.marquee__fade {
  position: absolute;
  inset-block: 0;
  width: 6rem;
  pointer-events: none;
}
.marquee__fade--left { left: 0; background: linear-gradient(to right, var(--navy), transparent); }
.marquee__fade--right { right: 0; background: linear-gradient(to left, var(--navy), transparent); }

/* ============================================================
   About
   ============================================================ */
.about__grid {
  display: grid;
  align-items: start;
  gap: 3.5rem;
}
.about__title {
  margin-top: 1.25rem;
  font-size: clamp(1.875rem, 1.2rem + 3vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--chrome);
}
.about__lead {
  margin-top: 1.5rem;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate);
}
.about__link { margin-top: 2rem; }
.about__arrow { transition: transform 0.3s ease; }
.about__link:hover .about__arrow { transform: translateX(4px); }

.about__cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about__card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
}
.about__icon {
  position: relative;
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px solid var(--hairline);
  background: rgba(6, 9, 18, 0.7);
  color: var(--glow);
}
.about__icon-glow {
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  background: rgba(74, 144, 255, 0.1);
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about__card:hover .about__icon-glow { opacity: 1; }
.about__icon .icon { position: relative; }
.about__card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--offwhite);
}
.about__card-body {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--slate);
}
.about__num {
  margin-left: auto;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--hairline);
  transition: color 0.3s ease;
}
.about__card:hover .about__num { color: var(--glow); }

/* ============================================================
   Services
   ============================================================ */
.services__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.svc-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--hairline);
  background: rgba(13, 19, 32, 0.6);
  padding: 1.75rem;
  transition: border-color 0.3s ease;
}
.svc-card:hover { border-color: rgba(74, 144, 255, 0.4); }
.svc-card__spot {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(
    360px circle at var(--mx, 50%) var(--my, 50%),
    rgba(74, 144, 255, 0.14),
    transparent 65%
  );
}
.svc-card:hover .svc-card__spot { opacity: 1; }
.svc-card__rule {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(to right, var(--glow), var(--electric));
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-card__rule { transform: scaleX(1); }
.svc-card__inner { position: relative; }
.svc-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.svc-card__icon {
  position: relative;
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px solid var(--hairline);
  background: rgba(6, 9, 18, 0.7);
  color: var(--glow);
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-card__icon { transform: translateY(-4px) scale(1.1); }
.svc-card__num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  transition: color 0.3s ease;
}
.svc-card:hover .svc-card__num { color: rgba(255, 255, 255, 0.08); }
.svc-card__title {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--offwhite);
}
.svc-card__body {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--slate);
}
.svc-card__points {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.svc-card__points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(199, 210, 227, 0.8);
}

/* ============================================================
   Experience
   ============================================================ */
.experience { overflow: hidden; }
.experience__grid {
  display: grid;
  align-items: center;
  gap: 4rem;
}
.experience__title {
  margin-top: 1.25rem;
  font-size: clamp(1.875rem, 1.2rem + 3vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--chrome);
}
.experience__lead {
  margin-top: 1.5rem;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate);
}

.medallion-row {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.medallion {
  position: relative;
  display: flex;
  height: 11rem;
  width: 11rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.medallion__ring {
  position: absolute;
  border-radius: 999px;
}
.medallion__ring--outer {
  inset: 0;
  border: 1px solid rgba(74, 144, 255, 0.25);
  animation: spin 26s linear infinite;
}
.medallion__ring--inner {
  inset: 0.75rem;
  border: 1px dashed rgba(199, 210, 227, 0.15);
  animation: spin-reverse 26s linear infinite;
}
.medallion__core-glow {
  position: absolute;
  inset: 1.5rem;
  border-radius: 999px;
  background: rgba(74, 144, 255, 0.1);
  filter: blur(12px);
}
.medallion__label {
  position: relative;
  text-align: center;
}
.medallion__num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--chrome);
  line-height: 1;
}
.medallion__unit {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--slate);
}
.medallion__facts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.medallion__fact-k {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--offwhite);
}
.medallion__fact-v {
  font-size: 0.875rem;
  color: var(--slate);
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.benefit {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
}
.benefit__check {
  margin-top: 0.125rem;
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  color: #fff;
  background: linear-gradient(135deg, var(--glow), var(--electric));
  box-shadow: 0 6px 18px -6px rgba(74, 144, 255, 0.9);
}
.benefit__check .icon { width: 1.25rem; height: 1.25rem; }
.benefit__title {
  font-weight: 600;
  color: var(--offwhite);
}
.benefit__body {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--slate);
}
.benefit__num {
  margin-left: auto;
  align-self: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hairline);
  transition: color 0.3s ease;
}
.benefit:hover .benefit__num { color: var(--glow); }

/* ============================================================
   Clients
   ============================================================ */
.clients { overflow: hidden; }
.clients__globe {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 42rem;
  width: 42rem;
  transform: translate(-50%, -50%);
  opacity: 0.4;
  pointer-events: none;
}
.clients__ring {
  position: absolute;
  border-radius: 999px;
}
.clients__ring--1 { inset: 0; border: 1px solid var(--hairline); animation: spin 26s linear infinite; }
.clients__ring--2 { inset: 12%; border: 1px solid var(--hairline); }
.clients__ring--3 { inset: 24%; border: 1px solid rgba(74, 144, 255, 0.15); animation: spin-reverse 40s linear infinite; }
.clients__ring--4 { inset: 36%; border: 1px solid var(--hairline); }
.clients__content { position: relative; }

.clients__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.region {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  text-align: center;
}
.region__dots {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(199, 210, 227, 0.6) 1px, transparent 1px);
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black, transparent 70%);
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 70%);
}
.region__inner { position: relative; }
.region__badge {
  margin-inline: auto;
  display: flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: rgba(6, 9, 18, 0.7);
}
.region__ping-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.region__ping {
  position: absolute;
  height: 2rem;
  width: 2rem;
  border-radius: 999px;
  background: rgba(74, 144, 255, 0.3);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.region__spark {
  position: relative;
  height: 1.5rem;
  width: 1.5rem;
  color: var(--glow);
}
.region__tag {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--glow);
}
.region__name {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--offwhite);
}
.region__body {
  margin: 0.75rem auto 0;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--slate);
}

/* ============================================================
   Subscribe
   ============================================================ */
.subscribe { padding-block: 6rem; }
.subscribe__panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--hairline);
  background: rgba(13, 19, 32, 0.6);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.subscribe__glow {
  position: absolute;
  top: -6rem;
  left: 50%;
  height: 16rem;
  width: 40rem;
  max-width: 100%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.25);
  filter: blur(110px);
  pointer-events: none;
}
.subscribe__dots {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(199, 210, 227, 0.5) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 75%);
}
.subscribe__inner { position: relative; }
.subscribe__title {
  margin: 1.25rem auto 0;
  max-width: 42rem;
  font-size: clamp(1.875rem, 1.2rem + 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--chrome);
}
.subscribe__lead {
  margin: 1.25rem auto 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate);
}
.subscribe__form-wrap {
  margin: 2.25rem auto 0;
  max-width: 28rem;
}
.subscribe__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.subscribe__field {
  position: relative;
  flex: 1;
}
.subscribe__mail {
  position: absolute;
  left: 1rem;
  top: 28px;
  height: 1.25rem;
  width: 1.25rem;
  transform: translateY(-50%);
  color: var(--slate);
  pointer-events: none;
}
.subscribe__field input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--hairline);
  background: rgba(6, 9, 18, 0.7);
  padding: 0.875rem 1rem 0.875rem 3rem;
  color: var(--offwhite);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.subscribe__field input::placeholder { color: rgba(140, 152, 184, 0.6); }
.subscribe__field input:focus {
  border-color: rgba(74, 144, 255, 0.6);
  box-shadow: 0 0 0 2px rgba(74, 144, 255, 0.2);
}
.subscribe__submit { justify-content: center; }
.subscribe__submit-label { display: inline-flex; align-items: center; gap: 0.55rem; }
.subscribe__spinner {
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
}
.subscribe__done {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(74, 144, 255, 0.4);
  background: rgba(74, 144, 255, 0.1);
  padding: 1rem 1.5rem;
  color: var(--offwhite);
  font-weight: 500;
  animation: done-in 0.4s ease;
}
@keyframes done-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.subscribe__done-check {
  display: flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--glow), var(--electric));
}
.subscribe__done-check .icon { width: 1.25rem; height: 1.25rem; }
.subscribe__error,
.msg_error {
  display: block;
  margin-top: 0.6rem;
  font-size: 12px;
  line-height: 1.4;
  color: #ff4d4f;
}
.subscribe__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(140, 152, 184, 0.7);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  position: relative;
  border-top: 1px solid var(--hairline);
}
.footer__inner { padding-block: 4rem; }
.footer__cols {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
.footer__logo {
  height: 4rem;
  width: auto;
  filter: drop-shadow(0 0 24px rgba(74, 144, 255, 0.35));
}
.footer__blurb {
  margin-top: 1.25rem;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--slate);
}
.footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(140, 152, 184, 0.7);
}
.footer__list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__link {
  font-size: 0.875rem;
  color: var(--slate);
  transition: color 0.2s ease;
}
.footer__link:hover { color: var(--offwhite); }
.footer__rule { margin-block: 2.5rem; }
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--slate);
}
.footer__tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(140, 152, 184, 0.6);
}
.footer__tag-llc { color: var(--glow); }

/* ============================================================
   Entrance / scroll-reveal animations
   ============================================================ */
html:not(.js-ready) .nav {
  opacity: 1 !important;
  transform: none !important;
}
html:not(.js-ready) .anim,
html:not(.js-ready) .reveal,
html:not(.js-ready) .hero__title .word {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* Hero on-load anims (.anim) */
.anim {
  opacity: 0;
  will-change: transform, opacity, filter;
}
.anim--up { transform: translateY(20px); }
.anim--scale { transform: scale(0.9); }
.anim--fade { transform: none; }
.anim.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hero headline words */
.hero__title .word {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
}
.hero__title.is-in .word {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Scroll reveal (.reveal) */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(6px);
  will-change: transform, opacity, filter;
}
.reveal[data-reveal-dir="left"] { transform: translateX(48px); }
.reveal[data-reveal-dir="right"] { transform: translateX(-48px); }
.reveal[data-reveal-dir="down"] { transform: translateY(-36px); }
.reveal[data-reveal-dir="none"] { transform: none; }
.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 640px) {
  .hero__stat { padding: 1.25rem 1.5rem; }
  .hero__stat-k { font-size: 1.875rem; }
  .hero__stat-v { font-size: 0.875rem; }
  .subscribe__panel { padding: 5rem 4rem; }
  .subscribe__form { flex-direction: row; }
  .footer__bottom { flex-direction: row; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
  .clients__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__cols { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .about__grid { grid-template-columns: 1fr 1.15fr; }
  .about__head { position: sticky; top: 7rem; }
  .services__grid { grid-template-columns: repeat(4, 1fr); }
  .experience__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 640px) {
  .nav__cta { display: inline-flex; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__video { display: none; }
  .hero__poster { display: block; }
  /* Ensure content is visible without JS-driven transitions */
  .anim,
  .reveal,
  .hero__title .word { opacity: 1 !important; transform: none !important; filter: none !important; }
}
