/* =====================================================================
   SURL Technologies - Core Styles
   Dark, futuristic, glassmorphic design system
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette */
  --primary:   #2563EB;
  --secondary: #4F46E5;
  --accent:    #06B6D4;
  --bg:        #050816;
  --surface:   #0F172A;
  --text:      #FFFFFF;
  --muted:     #94A3B8;

  /* Derived */
  --surface-2: #131c33;
  --line:      rgba(148, 163, 184, 0.14);
  --line-2:    rgba(148, 163, 184, 0.28);
  --glass:     rgba(255, 255, 255, 0.04);
  --glass-2:   rgba(255, 255, 255, 0.06);

  --grad-primary: linear-gradient(135deg, #2563EB 0%, #4F46E5 50%, #06B6D4 100%);
  --grad-text:    linear-gradient(120deg, #60A5FA 0%, #818CF8 45%, #22D3EE 100%);
  --grad-soft:    linear-gradient(135deg, rgba(37,99,235,.18), rgba(79,70,229,.10) 60%, rgba(6,182,212,.16));

  --glow-blue:   0 0 60px rgba(37, 99, 235, 0.45);
  --glow-purple: 0 0 60px rgba(79, 70, 229, 0.40);
  --glow-cyan:   0 0 60px rgba(6, 182, 212, 0.35);

  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 18px 50px rgba(2, 6, 23, 0.55);
  --shadow-lg: 0 30px 80px rgba(2, 6, 23, 0.7);

  /* Type */
  --font-display: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-head:    "Plus Jakarta Sans", "Outfit", system-ui, sans-serif;
  --font-body:    "Inter", "Outfit", system-ui, sans-serif;

  /* Spacing & radius */
  --radius:    16px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --section-pad: clamp(54px, 6vw, 92px);
  --container: 1200px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
::selection { background: rgba(37, 99, 235, 0.45); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--primary), var(--accent)); border-radius: 99px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
main { position: relative; z-index: 1; }
section { position: relative; }
.section { padding-block: var(--section-pad); }
.section--tight { padding-block: clamp(38px, 4vw, 62px); }

.grid { display: grid; gap: 28px; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxw-720 { max-width: 720px; }
.maxw-620 { max-width: 620px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
p { color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: #bcd0ff;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: var(--glass);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  margin-bottom: 22px;
  white-space: nowrap; max-width: 100%;
}
.eyebrow i { color: var(--accent); }

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  margin-bottom: 18px;
}
.section-title .grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.section-head { margin-bottom: 42px; }
.section-head p { font-size: 1.08rem; }

.grad-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  position: relative;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, background .3s ease;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}
.btn--sm { padding: 11px 22px; font-size: .9rem; }
.btn i { transition: transform .3s ease; }
.btn:hover i { transform: translateX(4px); }

.btn--primary { background: var(--grad-primary); color: #fff; box-shadow: 0 10px 30px rgba(37,99,235,.4); }
.btn--primary::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, #3b82f6, #6366f1, #22d3ee);
  opacity: 0; transition: opacity .35s ease;
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 45px rgba(37,99,235,.55); }
.btn--primary:hover::after { opacity: 1; }

.btn--ghost {
  background: var(--glass); color: #fff;
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: rgba(96,165,250,.6); background: var(--glass-2); box-shadow: var(--glow-blue); }

/* Ripple */
.ripple { position: absolute; border-radius: 50%; transform: scale(0); background: rgba(255,255,255,.35); pointer-events: none; animation: ripple .6s ease-out; }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ---------- Glass surface ---------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
}

/* =====================================================================
   BACKGROUND LAYER
   ===================================================================== */
.bg-layer { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }

.bg-grid {
  position: absolute; inset: -48px;
  background-image:
    linear-gradient(to right, rgba(148,163,184,.085) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148,163,184,.085) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 110% 90% at 50% 35%, #000 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 110% 90% at 50% 35%, #000 45%, transparent 100%);
  animation: gridDrift 24s linear infinite;
  transition: transform .3s ease-out;
}
@keyframes gridDrift { from { background-position: 0 0; } to { background-position: 58px 58px; } }

/* Laser layer: subtle vertical streaks travel along grid lines (spawned by JS) */
.bg-beams {
  position: absolute; inset: 0; overflow: hidden;
  mask-image: radial-gradient(ellipse 110% 90% at 50% 35%, #000 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 110% 90% at 50% 35%, #000 45%, transparent 100%);
}
.grid-laser {
  position: absolute; top: 0; width: 1.5px; height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(96,165,250,.65) 70%, rgba(96,165,250,.85));
  box-shadow: 0 0 10px 1px rgba(96,165,250,.35);
  opacity: .4; pointer-events: none; will-change: transform;
}
.grid-laser--cyan {
  background: linear-gradient(to bottom, transparent, rgba(34,211,238,.6) 70%, rgba(34,211,238,.8));
  box-shadow: 0 0 10px 1px rgba(34,211,238,.32);
}
.grid-laser--down { animation: laserDown linear forwards; }
.grid-laser--up   { animation: laserUp linear forwards; }
@keyframes laserDown { from { transform: translateY(-170px); } to { transform: translateY(100vh); } }
@keyframes laserUp {
  from { transform: translateY(100vh) scaleY(-1); }
  to   { transform: translateY(-170px) scaleY(-1); }
}

/* Drifting particle field */
.bg-stars {
  position: absolute; inset: -20%;
  background-image:
    radial-gradient(2px 2px at 12% 22%, rgba(255,255,255,.55), transparent),
    radial-gradient(2px 2px at 78% 16%, rgba(126,176,255,.6), transparent),
    radial-gradient(1.5px 1.5px at 42% 64%, rgba(34,211,238,.55), transparent),
    radial-gradient(2px 2px at 64% 82%, rgba(255,255,255,.45), transparent),
    radial-gradient(1.5px 1.5px at 28% 88%, rgba(129,140,248,.6), transparent),
    radial-gradient(1.5px 1.5px at 88% 56%, rgba(255,255,255,.4), transparent),
    radial-gradient(2px 2px at 8% 60%, rgba(126,176,255,.5), transparent),
    radial-gradient(1.5px 1.5px at 54% 34%, rgba(255,255,255,.5), transparent);
  background-repeat: no-repeat;
  opacity: .7;
  animation: starDrift 26s ease-in-out infinite alternate;
  transition: transform .3s ease-out;
}
@keyframes starDrift { from { transform: translate3d(0,0,0); } to { transform: translate3d(26px,-22px,0); } }

.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .6; will-change: transform; }
.orb--blue   { width: 580px; height: 580px; background: radial-gradient(circle, rgba(37,99,235,.75), transparent 70%); top: -150px; left: -120px; animation: float1 18s ease-in-out infinite; }
.orb--purple { width: 540px; height: 540px; background: radial-gradient(circle, rgba(79,70,229,.65), transparent 70%); top: 24%; right: -180px; animation: float2 22s ease-in-out infinite; }
.orb--cyan   { width: 480px; height: 480px; background: radial-gradient(circle, rgba(6,182,212,.55), transparent 70%); bottom: -150px; left: 26%; animation: float3 20s ease-in-out infinite; }
.orb--mag    { width: 440px; height: 440px; background: radial-gradient(circle, rgba(99,102,241,.5), transparent 70%); top: 46%; left: 40%; animation: float4 24s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(80px,60px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-90px,40px); } }
@keyframes float3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(60px,-70px); } }
@keyframes float4 { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-40%,-50px); } }

.bg-noise {
  position: absolute; inset: 0; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Cursor glow */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 420px; height: 420px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(37,99,235,.16), transparent 65%);
  transform: translate(-50%, -50%); transition: opacity .3s ease;
  will-change: transform; opacity: 0;
}

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--grad-primary); z-index: 1000;
  box-shadow: 0 0 12px rgba(37,99,235,.8);
}

/* =====================================================================
   NAVBAR
   ===================================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 18px 0;
  transition: padding .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(5, 8, 22, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.navbar__logo img { height: 54px; width: auto; transition: height .35s ease; }
.navbar.scrolled .navbar__logo img { height: 46px; }

.navbar__menu ul { display: flex; align-items: center; gap: 6px; }
.navbar__menu a {
  position: relative;
  font-family: var(--font-head); font-weight: 500; font-size: .96rem;
  color: var(--muted);
  padding: 10px 16px; border-radius: var(--radius-pill);
  transition: color .25s ease, background .25s ease;
}
.navbar__menu a::after {
  content: ""; position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%);
  width: 0; height: 2px; border-radius: 2px; background: var(--grad-primary);
  transition: width .3s ease;
}
.navbar__menu a:hover { color: #fff; }
.navbar__menu a:hover::after { width: 22px; }
.navbar__menu a.active { color: #fff; background: var(--glass); }
.navbar__menu a.active::after { width: 22px; }

.navbar__right { display: flex; align-items: center; gap: 14px; }

.navbar__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.navbar__toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }

/* Mobile drawer */
.drawer {
  position: fixed; top: 0; right: -340px; width: 320px; max-width: 85vw; height: 100vh; z-index: 999;
  background: rgba(10, 15, 32, 0.96); backdrop-filter: blur(24px);
  border-left: 1px solid var(--line);
  padding: 26px 24px; display: flex; flex-direction: column;
  transition: right .4s cubic-bezier(.16,1,.3,1);
}
.drawer.open { right: 0; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.drawer__head img { height: 48px; width: auto; }
.drawer__head button { font-size: 1.4rem; color: var(--muted); }
.drawer__menu { display: flex; flex-direction: column; gap: 4px; }
.drawer__menu a { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; padding: 14px 12px; border-radius: 12px; color: var(--muted); transition: all .25s ease; }
.drawer__menu a:hover, .drawer__menu a.active { color: #fff; background: var(--glass); padding-left: 20px; }
.drawer__foot { margin-top: auto; display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--line); padding-top: 22px; }
.drawer__foot a { color: var(--muted); font-size: .95rem; }
.drawer__foot .btn { margin-top: 6px; }
.drawer__overlay { position: fixed; inset: 0; background: rgba(2,6,23,.6); backdrop-filter: blur(2px); z-index: 998; opacity: 0; visibility: hidden; transition: all .35s ease; }
.drawer__overlay.show { opacity: 1; visibility: visible; }

/* Scroll-top button */
.scroll-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 800;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--grad-primary); color: #fff; font-size: 1rem;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,99,235,.5);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all .35s ease;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { padding-top: 180px; padding-bottom: 90px; text-align: center; overflow: hidden; }
.hero__badge { margin-bottom: 26px; }
.hero__title { font-size: clamp(2.6rem, 6.4vw, 5rem); line-height: 1.04; margin-bottom: 24px; }
.hero__title .grad-text { display: inline-block; }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 660px; margin: 0 auto 40px; color: #b8c4dc; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 70px; }

.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 880px; margin: 0 auto; padding: 30px 26px;
}
.hero__stat .num { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__stat .lbl { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
.hero__stat + .hero__stat { border-left: 1px solid var(--line); }

/* Hero associated brands */
.hero__brands { max-width: 760px; margin: 0 auto; padding: 22px 26px; text-align: center; }
.hero__brands-label { display: block; font-family: var(--font-head); font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.hero__brands-list { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero__brand { display: inline-flex; align-items: center; gap: 10px; padding: 9px 16px; border-radius: var(--radius-pill); background: rgba(255,255,255,.03); border: 1px solid var(--line); transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease; }
.hero__brand:hover { transform: translateY(-3px); border-color: rgba(96,165,250,.5); background: var(--glass-2); box-shadow: var(--glow-blue); }
.hero__brand img { width: 26px; height: 26px; object-fit: contain; border-radius: 6px; background: #fff; padding: 3px; flex-shrink: 0; }
.hero__brand span { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: #cdd8ec; white-space: nowrap; }

/* Floating decorative chips */
.hero__float { position: absolute; pointer-events: none; }
.hero__float.glass { padding: 14px 18px; display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; box-shadow: var(--shadow-md); }
.hero__float i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--grad-primary); color: #fff; }
.hero__float--1 { top: 122px; left: 2.5%; animation: bob 6s ease-in-out infinite; }
.hero__float--2 { top: 470px; right: 2.5%; animation: bob 7s ease-in-out infinite .8s; }
.hero__float--3 { top: 470px; left: 2.5%; animation: bob 6.5s ease-in-out infinite .4s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@media (max-width: 1200px) { .hero__float { display: none !important; } }

/* =====================================================================
   MARQUEE / TRUST
   ===================================================================== */
.marquee { padding-block: 40px; border-block: 1px solid var(--line); overflow: hidden; }
.marquee__label { text-align: center; color: var(--muted); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 22px; }
.marquee__track { display: flex; gap: 60px; width: max-content; animation: scrollX 28s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: rgba(148,163,184,.4); white-space: nowrap; transition: color .3s ease; }
.marquee:hover .marquee__track span { color: rgba(148,163,184,.7); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* =====================================================================
   ABOUT (split layout)
   ===================================================================== */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__media { position: relative; min-height: 460px; }
.about__media img { border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-md); position: absolute; }
.about__media .img-1 { width: 70%; top: 0; left: 0; z-index: 2; }
.about__media .img-2 { width: 52%; bottom: 0; right: 0; z-index: 3; }
.about__media .img-3 { width: 40%; top: 38%; left: 36%; z-index: 4; }
.about__media .about__glowdot { position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(37,99,235,.25), transparent 60%); filter: blur(30px); z-index: 1; }

.about__list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 26px 0 32px; }
.about__list li { display: flex; align-items: center; gap: 10px; color: #cdd8ec; font-family: var(--font-head); font-weight: 500; }
.about__list i { color: var(--accent); }

.about__pillars { display: grid; gap: 14px; margin: 26px 0 34px; }
.about__pillar { display: flex; gap: 16px; padding: 18px 20px; }
.about__pillar i { font-size: 1.2rem; width: 48px; height: 48px; flex-shrink: 0; display: grid; place-items: center; border-radius: 12px; background: var(--grad-soft); border: 1px solid var(--line-2); color: #9ec5ff; }
.about__pillar h4 { font-size: 1.05rem; margin-bottom: 4px; }
.about__pillar p { font-size: .92rem; margin: 0; }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  position: relative; padding: 34px 30px; border-radius: var(--radius-lg);
  background: var(--glass); border: 1px solid var(--line);
  backdrop-filter: blur(14px); overflow: hidden;
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .4s ease, box-shadow .4s ease;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; padding: 1px; border-radius: inherit;
  background: var(--grad-primary); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .4s ease;
}
.service-card::after {
  content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.22), transparent 70%);
  top: var(--my, -40%); left: var(--mx, 50%); transform: translate(-50%,-50%);
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.service-card:hover { transform: translateY(-8px); border-color: transparent; box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }

.service-card__icon {
  width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-soft); border: 1px solid var(--line-2); margin-bottom: 22px;
  transition: transform .4s ease;
}
.service-card__icon img { width: 34px; height: 34px; object-fit: contain; }
.service-card__icon i { font-size: 1.5rem; color: #9ec5ff; }
.service-card:hover .service-card__icon { transform: rotate(-6deg) scale(1.05); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { font-size: .96rem; margin-bottom: 18px; }
.service-card__link { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: #7eb0ff; display: inline-flex; align-items: center; gap: 8px; }
.service-card__link i { transition: transform .3s ease; }
.service-card:hover .service-card__link i { transform: translateX(5px); }
.service-card__num { position: absolute; top: 24px; right: 28px; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: rgba(148,163,184,.18); }

/* =====================================================================
   WHY CHOOSE US
   ===================================================================== */
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.features__grid--4 { grid-template-columns: repeat(4, 1fr); }
.feature-card {
  padding: 30px 28px; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid var(--line); position: relative; overflow: hidden;
  transition: transform .4s ease, border-color .4s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.feature-card__icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-primary); color: #fff; font-size: 1.3rem; margin-bottom: 20px; box-shadow: 0 8px 24px rgba(37,99,235,.4); }
.feature-card h4 { font-size: 1.18rem; margin-bottom: 10px; }
.feature-card p { font-size: .95rem; }
.feature-card__line { position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--grad-primary); transform: scaleY(0); transform-origin: top; transition: transform .4s ease; }
.feature-card:hover .feature-card__line { transform: scaleY(1); }

/* =====================================================================
   PORTFOLIO
   ===================================================================== */
.portfolio__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.portfolio-card {
  position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 4 / 3; background: var(--surface);
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .4s ease, box-shadow .4s ease;
}
.portfolio-card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow-lg); }
.portfolio-card__img { position: absolute; inset: 0; }
.portfolio-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.portfolio-card:hover .portfolio-card__img img { transform: scale(1.08); }
.portfolio-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,8,22,.94) 0%, rgba(5,8,22,.45) 45%, transparent 75%); transition: opacity .4s ease; }
.portfolio-card__overlay { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; }
.portfolio-card__cat { font-family: var(--font-head); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #9ec5ff; margin-bottom: 7px; }
.portfolio-card__overlay h3 { font-size: 1.25rem; color: #fff; }
.portfolio-card__link { font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: #cdd8ec; display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; opacity: 0; transform: translateY(10px); transition: opacity .4s ease, transform .4s ease; }
.portfolio-card:hover .portfolio-card__link { opacity: 1; transform: translateY(0); }
@media (max-width: 1024px) { .portfolio__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .portfolio__grid { grid-template-columns: 1fr; } }

/* =====================================================================
   STATS BAND
   ===================================================================== */
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 56px 40px; }
.stat__item { text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__plus { -webkit-text-fill-color: initial; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; }
.stat__label { color: var(--muted); margin-top: 10px; font-family: var(--font-head); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; }
.stat__item + .stat__item { position: relative; }
.stat__item + .stat__item::before { content: ""; position: absolute; left: -12px; top: 15%; bottom: 15%; width: 1px; background: var(--line); }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testi { position: relative; }
.testi__viewport { overflow: hidden; }
.testi__track { display: flex; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.testi__slide { min-width: 100%; padding: 6px; }
@media (min-width: 768px) { .testi__slide { min-width: 50%; } }
@media (min-width: 1100px){ .testi__slide { min-width: 33.3333%; } }

.testi-card { padding: 34px 30px; height: 100%; border-radius: var(--radius-lg); background: var(--glass); border: 1px solid var(--line); backdrop-filter: blur(14px); display: flex; flex-direction: column; }
.testi-card__quote { font-size: 2.4rem; color: var(--primary); opacity: .5; line-height: 1; margin-bottom: 12px; font-family: Georgia, serif; }
.testi-card__stars { color: #fbbf24; margin-bottom: 16px; font-size: .9rem; letter-spacing: 2px; }
.testi-card p { color: #d4def0; font-size: 1rem; flex: 1; margin-bottom: 22px; }
.testi-card__person { display: flex; align-items: center; gap: 14px; }
.testi-card__person img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--line-2); padding: 4px; background: var(--surface); }
.testi-card__person h4 { font-size: 1rem; margin-bottom: 2px; }
.testi-card__person span { font-size: .82rem; color: var(--muted); }

.testi__controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 40px; }
.testi__btn { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-2); background: var(--glass); color: #fff; transition: all .3s ease; }
.testi__btn:hover { background: var(--grad-primary); border-color: transparent; transform: scale(1.06); }
.testi__dots { display: flex; gap: 8px; }
.testi__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); transition: all .3s ease; cursor: pointer; }
.testi__dot.active { width: 26px; border-radius: 99px; background: var(--grad-primary); }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq__wrap { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { border-radius: var(--radius); background: var(--glass); border: 1px solid var(--line); overflow: hidden; transition: border-color .3s ease, background .3s ease; }
.faq-item.open { border-color: var(--line-2); background: var(--glass-2); }
.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 26px; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: #fff; }
.faq-item__q i { flex-shrink: 0; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--glass); border: 1px solid var(--line-2); transition: transform .35s ease, background .35s ease; color: #9ec5ff; }
.faq-item.open .faq-item__q i { transform: rotate(45deg); background: var(--grad-primary); color: #fff; border-color: transparent; }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item__a p { padding: 0 26px 24px; color: var(--muted); margin: 0; }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: stretch; }
.contact__info { display: flex; flex-direction: column; gap: 18px; }
.contact__card { display: flex; gap: 16px; padding: 24px 26px; align-items: flex-start; }
.contact__card i { font-size: 1.1rem; width: 50px; height: 50px; flex-shrink: 0; display: grid; place-items: center; border-radius: 14px; background: var(--grad-soft); border: 1px solid var(--line-2); color: #9ec5ff; }
.contact__card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.contact__card p, .contact__card a { color: var(--muted); font-size: .95rem; }
.contact__card a:hover { color: #fff; }
.contact__map { margin-top: auto; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 180px; position: relative; }
.contact__map iframe { width: 100%; height: 100%; min-height: 180px; border: 0; filter: grayscale(1) invert(.92) hue-rotate(180deg) contrast(.9); }
.contact__map-load {
  width: 100%; min-height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background:
    radial-gradient(circle at 30% 20%, rgba(37,99,235,.22), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(6,182,212,.18), transparent 55%),
    linear-gradient(0deg, rgba(255,255,255,.02), rgba(255,255,255,.02));
  color: #cdd8ec; font-family: var(--font-head); font-weight: 600; transition: background .3s ease;
  background-size: cover;
}
.contact__map-load:hover { background-color: rgba(255,255,255,.04); }
.contact__map-pin { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--grad-primary); color: #fff; font-size: 1.1rem; box-shadow: 0 10px 28px rgba(37,99,235,.45); }
.contact__map-load small { color: var(--muted); font-weight: 500; }

.contact__form { padding: 38px 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .88rem; margin-bottom: 8px; color: #cdd8ec; }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  color: #fff; transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #5a6884; }
.field input:focus, .field textarea:focus { outline: none; border-color: rgba(96,165,250,.6); background: rgba(255,255,255,.05); box-shadow: 0 0 0 4px rgba(37,99,235,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.contact__form .btn { width: 100%; margin-top: 6px; }

/* Select (matches inputs) */
.field select {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  color: #fff; color-scheme: dark; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
}
.field select:focus { outline: none; border-color: rgba(96,165,250,.6); background-color: rgba(255,255,255,.05); box-shadow: 0 0 0 4px rgba(37,99,235,.12); }
.field select option { background: #0f172a; color: #fff; }

/* File upload drop zone */
.field label.file-drop, .file-drop {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  padding: 28px 20px; border-radius: 14px; cursor: pointer; text-align: center;
  background: rgba(255,255,255,.03); border: 1.5px dashed var(--line-2);
  margin-bottom: 0;
  transition: border-color .3s ease, background .3s ease;
}
.file-drop:hover, .file-drop.dragover { border-color: rgba(96,165,250,.7); background: rgba(37,99,235,.07); }
.file-drop input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.file-drop__icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--grad-soft); border: 1px solid var(--line-2); color: #9ec5ff; font-size: 1.15rem; }
.file-drop__text { color: var(--muted); font-size: .95rem; }
.file-drop__text b { color: #9ec5ff; font-weight: 600; }
.file-drop.has-file { border-style: solid; border-color: rgba(52,211,153,.5); background: rgba(52,211,153,.06); }
.file-drop.has-file .file-drop__icon { background: rgba(52,211,153,.18); color: #34d399; }

/* =====================================================================
   JOBS / CAREERS
   ===================================================================== */
.jobs__list { display: grid; gap: 16px; max-width: 920px; margin-inline: auto; }
.job-card {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 30px; border-radius: var(--radius-lg);
  background: var(--glass); border: 1px solid var(--line); backdrop-filter: blur(14px);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.job-card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--shadow-md); }
.job-card__dept { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #9ec5ff; padding: 5px 12px; border-radius: var(--radius-pill); background: var(--grad-soft); border: 1px solid var(--line-2); margin-bottom: 12px; }
.job-card__main h3 { font-size: 1.3rem; margin-bottom: 12px; }
.job-card__meta { display: flex; flex-wrap: wrap; gap: 18px; }
.job-card__meta li { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: .9rem; }
.job-card__meta i { color: var(--accent); }
.job-card .btn { flex-shrink: 0; }

/* =====================================================================
   CTA STRIP
   ===================================================================== */
.cta-strip { padding-block: clamp(40px, 6vw, 70px); }
.cta-strip__card { text-align: center; padding: clamp(40px, 6vw, 70px) 32px; position: relative; overflow: hidden; }
.cta-strip__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(37,99,235,.3), transparent 65%); pointer-events: none; }
.cta-strip__card h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; position: relative; }
.cta-strip__card p { max-width: 560px; margin: 0 auto 30px; position: relative; }
.cta-strip__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--line); background: linear-gradient(180deg, transparent, rgba(15,23,42,.6)); margin-top: 40px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px; padding-block: 70px 50px; }
.footer__logo { height: 64px; width: auto; margin-bottom: 18px; }
.footer__brand p { font-size: .95rem; margin-bottom: 22px; max-width: 320px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--glass); border: 1px solid var(--line); color: var(--muted); transition: all .3s ease; }
.footer__social a:hover { color: #fff; background: var(--grad-primary); border-color: transparent; transform: translateY(-3px); }
.footer__col h4 { font-size: 1.05rem; margin-bottom: 20px; font-family: var(--font-head); }
.footer__col ul { display: grid; gap: 12px; }
.footer__col a { color: var(--muted); font-size: .94rem; }
.footer__col a:hover { color: #fff; padding-left: 5px; }
.footer__newsletter p { font-size: .92rem; margin-bottom: 16px; }
.newsletter { display: flex; gap: 8px; margin-bottom: 22px; }
.newsletter input { flex: 1; padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,.04); border: 1px solid var(--line); color: #fff; }
.newsletter input:focus { outline: none; border-color: rgba(96,165,250,.6); }
.newsletter button { width: 48px; border-radius: 12px; background: var(--grad-primary); color: #fff; flex-shrink: 0; transition: transform .3s ease; }
.newsletter button:hover { transform: translateY(-2px); }
.footer__contact { display: grid; gap: 12px; }
.footer__contact li { display: flex; gap: 10px; color: var(--muted); font-size: .9rem; align-items: flex-start; }
.footer__contact i { color: var(--accent); margin-top: 4px; }
.footer__bottom { border-top: 1px solid var(--line); padding-block: 22px; }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer__bottom p { font-size: .85rem; color: var(--muted); margin: 0; }
.footer__bottom a { color: #9ec5ff; }
.footer__legal { display: flex; align-items: center; gap: 14px; }
.footer__legal a { font-size: .85rem; color: var(--muted); transition: color .25s ease; }
.footer__legal a:hover { color: #fff; }
.footer__legal-sep { color: var(--line-2); font-size: .8rem; }

/* =====================================================================
   PAGE HEADER (interior pages)
   ===================================================================== */
.page-hero { padding-top: 170px; padding-bottom: 60px; text-align: center; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); margin-bottom: 16px; }
.page-hero p { max-width: 620px; margin: 0 auto; font-size: 1.08rem; }
.breadcrumb { display: inline-flex; gap: 8px; align-items: center; font-size: .88rem; color: var(--muted); margin-top: 18px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: .7rem; }

/* =====================================================================
   LEGAL / PROSE PAGES
   ===================================================================== */
.legal { max-width: 880px; margin-inline: auto; }
.legal__updated { color: var(--muted); font-size: .9rem; margin-top: 16px; }
.legal__body { padding: clamp(28px, 4vw, 52px); }
.legal__body h2 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); margin: 38px 0 14px; }
.legal__body h2:first-child { margin-top: 0; }
.legal__body p { color: var(--muted); margin-bottom: 16px; line-height: 1.85; }
.legal__body a { color: #9ec5ff; }
.legal__body a:hover { color: #fff; }
.legal__body strong { color: #e8eefb; font-weight: 600; }
.legal__body ul { margin: 0 0 18px; display: grid; gap: 10px; }
.legal__body li { position: relative; padding-left: 22px; color: var(--muted); line-height: 1.7; }
.legal__body li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--grad-primary);
}
.legal__divider { height: 1px; background: var(--line); margin: 6px 0 0; }

/* =====================================================================
   CEO MESSAGE
   ===================================================================== */
.ceo__card { display: grid; grid-template-columns: 340px 1fr; overflow: hidden; padding: 0; }
.ceo__media { position: relative; min-height: 100%; }
.ceo__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ceo__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,8,22,.1) 40%, rgba(5,8,22,.65)); }

/* Shadowed silhouette placeholder (no real person) */
.ceo__media--ph {
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(37,99,235,.22), transparent 62%),
    linear-gradient(160deg, #0b1326, #0c1320);
}
.ceo__media--ph::after { display: none; }
.ceo__ph-icon {
  font-size: clamp(5rem, 13vw, 8.5rem);
  color: rgba(148,163,184,.20);
  filter: drop-shadow(0 24px 44px rgba(0,0,0,.7));
  line-height: 1;
}
.ceo__badge { position: absolute; left: 18px; bottom: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 9px; padding: 9px 15px; border-radius: var(--radius-pill); background: rgba(5,8,22,.55); border: 1px solid var(--line-2); backdrop-filter: blur(8px); font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: #fff; }
.ceo__badge i { color: #9ec5ff; }
.ceo__body { padding: clamp(30px, 4vw, 52px); position: relative; display: flex; flex-direction: column; justify-content: center; }
.ceo__qmark { font-family: Georgia, serif; font-size: 4rem; line-height: .5; color: var(--primary); opacity: .4; margin-bottom: 14px; }
.ceo__body p { color: #cdd8ec; font-size: 1.05rem; line-height: 1.85; margin-bottom: 16px; }
.ceo__sign { margin-top: 14px; display: flex; align-items: center; gap: 16px; }
.ceo__sign-line { width: 44px; height: 2px; background: var(--grad-primary); flex-shrink: 0; }
.ceo__sign h4 { font-size: 1.15rem; margin-bottom: 2px; }
.ceo__sign span { color: var(--muted); font-size: .9rem; }
@media (max-width: 820px) {
  .ceo__card { grid-template-columns: 1fr; }
  .ceo__media { min-height: 300px; position: relative; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__media { min-height: 380px; max-width: 520px; margin-inline: auto; width: 100%; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__float { display: none; }
}

@media (max-width: 860px) {
  .navbar__menu { display: none; }
  .navbar__toggle { display: flex; }
  .navbar__right .btn--sm { display: none; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .stat__item + .stat__item::before { display: none; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
  .hero__stat + .hero__stat { border-left: none; }
  .hero__stat:nth-child(2) { border-left: 1px solid var(--line); }
  .hero__stat:nth-child(4) { border-left: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .job-card { flex-direction: column; align-items: flex-start; gap: 18px; padding: 24px; }
  .job-card .btn { width: 100%; }
}

@media (max-width: 620px) {
  :root { --section-pad: 64px; }
  .container { padding-inline: 18px; }
  .services__grid, .features__grid, .footer__grid { grid-template-columns: 1fr; }
  .about__list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); padding: 40px 20px; }
  .hero { padding-top: 130px; }
  .page-hero { padding-top: 130px; }
  .hero__actions { gap: 12px; }
  .hero__actions .btn { width: 100%; }
  .contact__form { padding: 26px 20px; }
  .about__media { min-height: 320px; }
  .btn { padding: 13px 24px; }
  .footer__social { justify-content: flex-start; }
  .scroll-top { right: 16px; bottom: 16px; width: 46px; height: 46px; }
  .eyebrow { font-size: .58rem; letter-spacing: .05em; padding: 6px 13px; gap: 6px; }
}

@media (max-width: 380px) {
  .hero__title { font-size: 2.3rem; }
  .stats__inner, .hero__stats { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 1.9rem; }
  .eyebrow { font-size: .5rem; letter-spacing: .03em; padding: 5px 10px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .orb, .bg-grid, .marquee__track { animation: none !important; }
}
