:root {
  --font-body: 'Cairo', sans-serif;
  --font-display: 'Kufam', sans-serif;
  --black: #020408;
  --navy: #060d1a;
  --navy-mid: #0a1628;
  --navy-light: #0f2040;
  --blue-glow: #099bca;
  --blue-bright: #099bca;
  --blue-soft: rgba(9, 155, 202, 0.15);
  --white: #f0f4ff;
  --white-dim: rgba(240, 244, 255, 0.6);
  --white-faint: rgba(240, 244, 255, 0.08);
  --gold: #c9a84c;
  --gold-soft: rgba(201, 168, 76, 0.3);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

body.is-en {
  --font-body: 'Montserrat', sans-serif;
  --font-display: 'Montserrat', sans-serif;
}

/* EN: uppercase nav + titles (Arabic text unaffected by case mapping) */
body.is-en .nav-links a,
body.is-en .nav-cta,
body.is-en .lang-btn,
body.is-en .mobile-nav-kicker,
body.is-en .mobile-nav-brand,
body.is-en .mobile-nav-link .mn-label,
body.is-en .mobile-nav-cta,
body.is-en .mobile-nav-foot-note,
body.is-en .hero-tag,
body.is-en .hero-headline,
body.is-en .hero-scroll-hint,
body.is-en .section-label,
body.is-en .section-title,
body.is-en .stat-label,
body.is-en .service-title,
body.is-en .platform-name,
body.is-en .platform-link span,
body.is-en .work-tab,
body.is-en .work-overlay-title,
body.is-en .work-overlay-tag,
body.is-en .step-title,
body.is-en .value-name,
body.is-en .role-tag,
body.is-en .t-label,
body.is-en .footer-copy,
body.is-en .footer-tagline,
body.is-en .footer-powered-link {
  text-transform: uppercase;
}

/* ── AMBIENT SOUND TOGGLE ── */
.ambient-toggle {
  position: fixed;
  inset-block-end: 22px;
  inset-inline-end: 22px;
  z-index: 10040;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(9, 155, 202, 0.28);
  background: rgba(6, 13, 26, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(240, 244, 255, 0.85);
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.ambient-toggle:hover {
  border-color: rgba(9, 155, 202, 0.55);
  color: var(--blue-bright);
  box-shadow: 0 0 28px rgba(9, 155, 202, 0.22);
  transform: scale(1.04);
}
.ambient-toggle i {
  font-size: 17px;
  pointer-events: none;
}

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--blue-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: screen;
}
#cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid rgba(9,155,202,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}
body:hover #cursor { opacity: 1; }

/* ── LOADING SCREEN ── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
#loader .logo-mark {
  width: 100px;
  height: 100px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  animation: pulse 1.5s ease-in-out infinite;
}
#loader .progress-bar {
  width: 200px; height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
#loader .progress-fill {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, transparent, var(--blue-bright));
  transition: width 0.05s linear;
}
#loader .loader-text {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--white-dim);
  text-transform: uppercase;
}
@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 20px;
  mix-blend-mode: normal;
}
nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2,4,8,0.9), transparent);
  pointer-events: none;
}
.nav-logo {
  display: block;
  width: 56px;
  height: 56px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(1.2);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  position: relative;
  z-index: 1;
}
.nav-links a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; right: 0;
  width: 0%; height: 1px;
  background: var(--blue-bright);
  transition: width .3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  position: relative;
  z-index: 1;
  padding: 10px 24px;
  border: 1px solid rgba(9,155,202,0.4);
  color: var(--blue-bright);
  font-size: 13px;
  font-family: var(--font-body);
  cursor: pointer;
  background: transparent;
  transition: all .3s;
}
.nav-cta:hover {
  background: var(--blue-soft);
  box-shadow: 0 0 20px rgba(9,155,202,0.3);
}

.lang-switch {
  display: inline-flex;
  gap: 2px;
  padding: 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.lang-btn {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  color: var(--white-dim);
  font-family: var(--font-body);
  transition: background 0.2s, color 0.2s;
}
.lang-btn:hover {
  color: var(--white);
}
.lang-btn.is-active {
  background: var(--blue-soft);
  color: var(--blue-bright);
}

html[dir="ltr"] .nav-links a::after {
  left: 0;
  right: auto;
}

html[dir="ltr"] .mobile-nav-panel {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 1px solid rgba(9, 155, 202, 0.22);
  box-shadow: 24px 0 80px rgba(0, 0, 0, 0.55);
  transform: translate3d(-105%, 0, 0);
}
html[dir="ltr"] body.mobile-nav-open .mobile-nav-panel {
  transform: translate3d(0, 0, 0);
}

html[dir="ltr"] .platform-link .fa-arrow-left-long,
html[dir="ltr"] .mobile-nav-link .mn-chev {
  transform: scaleX(-1);
}

/* ── THREE.JS CANVAS ── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8vw;
  overflow: hidden;
  z-index: 1;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,4,8,0.85) 40%, rgba(6,13,26,0.5));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--blue-bright);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
}
.hero-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 12px var(--blue-bright);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(46px, 5.75vw, 82px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
}
.hero-headline .line { display: block; }
.hero-headline .accent { color: var(--blue-bright); }
.hero-headline .outline-text {
  color: rgba(240, 244, 255, 0.55);
}

.hero-sub {
  font-size: 16px;
  color: var(--white-dim);
  line-height: 1.8;
  max-width: 480px;
  opacity: 0;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  opacity: 0;
}
.btn-primary {
  padding: 16px 36px;
  background: var(--blue-glow);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all .3s;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .5s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { box-shadow: 0 0 30px rgba(9,155,202,0.6); }

.btn-ghost {
  padding: 16px 36px;
  background: transparent;
  color: var(--white-dim);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(240,244,255,0.15);
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-ghost:hover { border-color: rgba(240,244,255,0.4); color: var(--white); }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 10px;
  color: var(--white-dim);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--blue-bright), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── SECTION COMMON ── */
section {
  position: relative;
  z-index: 1;
}
.section-label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--blue-bright);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* ── ABOUT ── */
#about {
  padding: 140px 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  overflow: hidden;
}
.about-visual-inner {
  position: relative;
  aspect-ratio: 4/5;
  overflow: visible;
  perspective: 960px;
}
.about-visual-inner video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.2);
}
.about-visual-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,155,202,0.2), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* ── About: floating 3D logo (continuous motion) ── */
.about-3d-stage {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.about-3d-pulse {
  position: absolute;
  width: min(70%, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(9, 155, 202, 0.45) 0%, rgba(9, 155, 202, 0.08) 45%, transparent 70%);
  filter: blur(32px);
  z-index: 0;
  animation: about-3d-pulse 4.2s ease-in-out infinite;
}
@keyframes about-3d-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.88); }
  50% { opacity: 1; transform: scale(1.12); }
}
.about-3d-orbit {
  position: absolute;
  width: min(88%, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(9, 155, 202, 0.12);
  z-index: 1;
  animation: about-3d-orbit 22s linear infinite;
}
.about-3d-orbit::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(9, 155, 202, 0.22);
  animation: about-3d-orbit-rev 16s linear infinite;
}
@keyframes about-3d-orbit {
  to { transform: rotate(360deg); }
}
@keyframes about-3d-orbit-rev {
  to { transform: rotate(-360deg); }
}
.about-3d-logo {
  position: relative;
  z-index: 2;
  width: min(78%, 360px);
  height: auto;
  max-height: 85%;
  object-fit: contain;
  transform-style: preserve-3d;
  animation:
    about-3d-float 6.5s ease-in-out infinite,
    about-3d-glow 3.5s ease-in-out infinite;
  will-change: transform, filter;
}
@keyframes about-3d-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotateY(-6deg) rotateX(3deg) scale(1);
  }
  20% {
    transform: translate3d(8px, -14px, 24px) rotateY(8deg) rotateX(-2deg) scale(1.02);
  }
  45% {
    transform: translate3d(-6px, -22px, 36px) rotateY(-10deg) rotateX(5deg) scale(1.04);
  }
  70% {
    transform: translate3d(-10px, -8px, 14px) rotateY(5deg) rotateX(-4deg) scale(1.01);
  }
}
@keyframes about-3d-glow {
  0%, 100% {
    filter: drop-shadow(0 12px 28px rgba(9, 155, 202, 0.35)) drop-shadow(0 0 20px rgba(9, 155, 202, 0.2));
  }
  50% {
    filter: drop-shadow(0 26px 48px rgba(9, 155, 202, 0.55)) drop-shadow(0 0 36px rgba(9, 155, 202, 0.35));
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-3d-logo,
  .about-3d-orbit,
  .about-3d-orbit::before,
  .about-3d-pulse {
    animation: none !important;
  }
  .about-3d-logo {
    filter: drop-shadow(0 16px 32px rgba(9, 155, 202, 0.35));
  }
}
.about-frame {
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 1px solid rgba(9,155,202,0.2);
  pointer-events: none;
}
.about-frame2 {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border: 1px solid var(--gold-soft);
}
.about-year {
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(9,155,202,0.3);
  line-height: 1;
  z-index: 5;
}
.about-text .big-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--white);
}
.about-text p {
  color: var(--white-dim);
  line-height: 2;
  font-size: 15px;
  margin-bottom: 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--white-faint);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--blue-bright);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--white-dim);
  margin-top: 8px;
  display: block;
}

/* ── SERVICES ── */
#services {
  padding: 140px 8vw;
  background: linear-gradient(180deg, transparent, var(--navy) 20%, var(--navy) 80%, transparent);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
}
.services-header p {
  max-width: 360px;
  color: var(--white-dim);
  line-height: 1.8;
  font-size: 15px;
  text-align: left;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  padding: 44px 36px;
  background: var(--white-faint);
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  cursor: pointer;
  transition: background .4s;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-soft), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.service-card:hover { background: rgba(9,155,202,0.05); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-num { color: var(--blue-bright); }
.service-card:hover .service-line { width: 100%; }

.service-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 20px;
  transition: color .3s, -webkit-text-stroke .3s;
}
.service-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.service-desc {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.9;
  position: relative;
  z-index: 1;
}
.service-line {
  position: absolute;
  bottom: 0; right: 0;
  height: 1px; width: 0%;
  background: var(--blue-bright);
  transition: width .4s ease;
}
.service-icon {
  position: absolute;
  bottom: 24px; left: 24px;
  font-size: 28px;
  opacity: 0.15;
  transition: opacity .3s;
}
.service-card:hover .service-icon { opacity: 0.4; }
.service-icon i { font-size: 1em; line-height: 1; }

/* ── PLATFORMS ── */
#platforms {
  padding: 140px 8vw;
  overflow: hidden;
}
.platforms-intro {
  max-width: 600px;
  margin-bottom: 80px;
}
.platforms-intro p {
  color: var(--white-dim);
  line-height: 1.9;
  font-size: 16px;
  margin-top: 16px;
}
.platforms-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.platform-card {
  position: relative;
  padding: 48px 44px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .4s cubic-bezier(0.23, 1, 0.32, 1);
}
.platform-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
  transition: border-color .4s;
}
.platform-card:hover { transform: translateY(-8px); }
.platform-card:hover::before { border-color: rgba(9,155,202,0.3); }
.platform-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s;
}
.platform-card:hover .platform-bg { opacity: 1; }
.pc-1 .platform-bg { background: radial-gradient(ellipse at 30% 70%, rgba(9,155,202,0.15), transparent 70%); }
.pc-2 .platform-bg { background: radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.1), transparent 70%); }
.pc-3 .platform-bg { background: radial-gradient(ellipse at 30% 30%, rgba(9,155,202,0.12), transparent 70%); }
.pc-4 .platform-bg { background: radial-gradient(ellipse at 70% 70%, rgba(201,168,76,0.08), transparent 70%); }

.platform-logo {
  height: 56px;
  object-fit: contain;
  object-position: right;
  filter: brightness(1.1);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.platform-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.platform-desc {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.9;
  position: relative;
  z-index: 1;
  max-width: 400px;
}
.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--blue-bright);
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: gap .3s;
}
.platform-link:hover { gap: 14px; }

/* ── WORK / PORTFOLIO ── */
#work {
  padding: 140px 8vw;
  background: linear-gradient(180deg, transparent, var(--navy-mid) 10%, var(--navy-mid) 90%, transparent);
}
.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px 24px;
  margin-bottom: 56px;
}
.work-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  max-width: 100%;
  min-width: 0;
}
.work-tab {
  padding: 10px 18px;
  font-size: 12px;
  font-family: var(--font-body);
  background: var(--white-faint);
  color: var(--white-dim);
  border: none;
  cursor: pointer;
  transition: all .3s;
  text-align: center;
  line-height: 1.25;
  white-space: normal;
  flex: 0 1 auto;
}
.work-tab.active {
  background: var(--blue-glow);
  color: #fff;
}
.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.work-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.work-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.work-item.tall { grid-row: span 2; aspect-ratio: 1/2; }
.work-item.work-item--filtered-out {
  display: none;
}
.work-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(0.23, 1, 0.32, 1), filter .4s;
  filter: brightness(0.75) saturate(0.9);
}
.work-item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.1);
}
.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,4,8,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.work-item:hover .work-overlay { opacity: 1; }
.work-overlay-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}
.work-overlay-tag {
  font-size: 11px;
  color: var(--blue-bright);
  margin-top: 4px;
}
.work-glow {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(9,155,202,0);
  transition: border-color .4s;
  pointer-events: none;
}
.work-item:hover .work-glow {
  border-color: rgba(9,155,202,0.4);
  box-shadow: inset 0 0 30px rgba(9,155,202,0.1);
}

/* ── WORKFLOW ── */
#workflow {
  padding: 140px 8vw;
  overflow: hidden;
}
.workflow-title-area {
  text-align: center;
  margin-bottom: 100px;
}
.workflow-title-area .section-label { justify-content: center; }
.workflow-title-area .section-label::before { display: none; }
.workflow-steps {
  display: flex;
  gap: 0;
  position: relative;
}
.workflow-steps::before {
  content: '';
  position: absolute;
  top: 32px; right: 10%; left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(9,155,202,0.3), transparent);
}
.workflow-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(9,155,202,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  transition: all .4s;
  background: var(--navy);
}
.step-circle::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(var(--blue-bright) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}
.workflow-step:hover .step-circle {
  box-shadow: 0 0 30px rgba(9,155,202,0.4);
}
.workflow-step:hover .step-circle::before { opacity: 1; }
.step-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--blue-bright);
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.9;
}

/* ── TEAM ── */
#team {
  padding: 140px 8vw;
  background: var(--navy);
}
.team-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.team-text p {
  color: var(--white-dim);
  line-height: 2;
  font-size: 15px;
  margin-bottom: 20px;
}
.team-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.role-tag {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: var(--white-dim);
  transition: all .3s;
}
.role-tag:hover {
  border-color: var(--blue-bright);
  color: var(--blue-bright);
  background: var(--blue-soft);
}
.team-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}
.team-stat-block {
  padding: 40px 32px;
  background: var(--white-faint);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.04);
}
.team-stat-block.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--blue-soft), rgba(9,155,202,0.05));
  border-color: rgba(9,155,202,0.15);
}
.t-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--blue-bright);
  line-height: 1;
  display: block;
}
.t-label {
  font-size: 13px;
  color: var(--white-dim);
  margin-top: 8px;
}

/* ── PARTNERS ── */
#partners {
  padding: 100px 8vw;
}
.partners-title { text-align: center; margin-bottom: 56px; }
.partners-track-wrap {
  overflow: hidden;
  position: relative;
}
.partners-track-wrap::before,
.partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
}
.partners-track-wrap::before { right: 0; background: linear-gradient(to left, var(--black), transparent); }
.partners-track-wrap::after { left: 0; background: linear-gradient(to right, var(--black), transparent); }

.partners-track {
  display: flex;
  gap: 60px;
  animation: scrollTrack 20s linear infinite;
  width: max-content;
}
@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 36px;
  border: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: rgba(240,244,255,0.4);
  transition: color .3s;
}
.partner-item:hover { color: var(--white); }
.partner-item i {
  color: var(--blue-bright);
  opacity: 0.45;
  font-size: 15px;
  flex-shrink: 0;
}
.partner-item:hover i { opacity: 1; }

/* ── VALUES ── */
#values {
  padding: 140px 8vw;
  position: relative;
}
#values::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0; height: 600px;
  background: radial-gradient(ellipse at 50% 0%, rgba(9,155,202,0.08), transparent 70%);
  pointer-events: none;
}
.values-header { text-align: center; max-width: 500px; margin: 0 auto 80px; }
.values-header p { color: var(--white-dim); font-size: 15px; line-height: 1.9; margin-top: 16px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.value-block {
  padding: 48px 28px;
  text-align: center;
  background: var(--white-faint);
  border: 1px solid rgba(255,255,255,0.04);
  cursor: default;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}
.value-block::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0; height: 2px;
  background: var(--blue-bright);
  transform: scaleX(0);
  transition: transform .4s;
}
.value-block:hover { background: rgba(9,155,202,0.06); transform: translateY(-4px); }
.value-block:hover::before { transform: scaleX(1); }
.value-icon { display: block; margin-bottom: 20px; color: var(--blue-bright); }
.value-icon i { font-size: 28px; line-height: 1; }
.value-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}
.value-desc {
  font-size: 12px;
  color: var(--white-dim);
  margin-top: 10px;
  line-height: 1.8;
}

/* ── VIDEO REEL ── */
#reel {
  padding: 100px 8vw;
  text-align: center;
}
.reel-wrap {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  cursor: pointer;
}
.reel-video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.reel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,4,8,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.reel-wrap:hover .reel-overlay { background: rgba(2,4,8,0.2); }
.play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(9,155,202,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  transition: all .3s;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}
.reel-wrap:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(9,155,202,0.6);
}
.play-btn i { font-size: 28px; line-height: 1; pointer-events: none; }
.play-btn:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 4px;
}
.reel-border {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(9,155,202,0.15);
  pointer-events: none;
}

/* ── CONTACT ── */
#contact {
  padding: 140px 8vw 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text .section-title { margin-bottom: 24px; }
.contact-text p {
  color: var(--white-dim);
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 48px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--white-faint);
  color: var(--white-dim);
  font-size: 14px;
  transition: color .3s;
}
.contact-info-item:hover { color: var(--white); }
.contact-info-item--stack {
  align-items: flex-start;
}
.contact-info-item--stack .info-icon {
  margin-top: 2px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1.5;
}
.contact-inline-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.contact-sep {
  color: rgba(240, 244, 255, 0.25);
  user-select: none;
}
.contact-info-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info-item a:hover {
  color: var(--blue-bright);
}
.info-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(9,155,202,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all .3s;
}
.contact-info-item:hover .info-icon {
  border-color: var(--blue-bright);
  background: var(--blue-soft);
}
.info-icon i { font-size: 15px; line-height: 1; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { position: relative; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 18px 20px;
  background: var(--white-faint);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color .3s, background .3s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(9,155,202,0.5);
  background: rgba(9,155,202,0.05);
}
.form-group textarea { height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240,244,255,0.3);
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.social-link {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  text-decoration: none;
  font-size: 16px;
  transition: all .3s;
}
.social-link:hover {
  border-color: var(--blue-bright);
  color: var(--blue-bright);
  background: var(--blue-soft);
  box-shadow: 0 0 20px rgba(9,155,202,0.2);
}
.social-link i { font-size: 17px; line-height: 1; }
.btn-ghost > i { font-size: 15px; opacity: 0.95; flex-shrink: 0; }
.platform-link i { font-size: 11px; opacity: 0.85; }

/* ── FOOTER ── */
footer {
  padding: 60px 8vw 40px;
  border-top: 1px solid var(--white-faint);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
}
.footer-logo {
  width: 72px;
  height: 72px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.8;
}
.footer-copy {
  font-size: 12px;
  color: rgba(240,244,255,0.3);
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(240,244,255,0.3);
}

.footer-powered {
  flex-basis: 100%;
  margin: 8px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(240, 244, 255, 0.06);
  text-align: center;
  font-size: 11px;
  color: rgba(240, 244, 255, 0.22);
}
.footer-powered-link {
  color: rgba(240, 244, 255, 0.35);
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.footer-powered-link:hover {
  color: var(--blue-bright);
  text-shadow: 0 0 20px rgba(9, 155, 202, 0.35);
}

/* ── DECORATIVE LINES ── */
.deco-line {
  position: absolute;
  background: linear-gradient(to bottom, transparent, rgba(9,155,202,0.1), transparent);
  width: 1px;
  height: 200px;
  pointer-events: none;
}

/* ── GSAP INIT STATES ── */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-scale { opacity: 0; transform: scale(0.9); }

/* ── GLOW EFFECTS ── */
.glow-text {
  text-shadow: 0 0 40px rgba(9,155,202,0.5);
}

/* scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(9,155,202,0.3); border-radius: 2px; }

body.mobile-nav-open {
  overflow: hidden;
  touch-action: none;
}

@media (min-width: 901px) {
  .mobile-nav,
  .nav-menu-toggle {
    display: none !important;
  }
}

@media (max-width: 900px) {
  body {
    cursor: auto;
  }
  #cursor,
  #cursor-ring {
    display: none !important;
    pointer-events: none;
  }

  #about { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .platforms-showcase { grid-template-columns: 1fr; }
  .work-gallery { grid-template-columns: 1fr 1fr; }

  #work {
    padding: 100px 5vw 120px;
  }
  .work-header {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 36px;
  }
  .work-header > div:first-child {
    max-width: 100%;
  }
  .work-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 108px), 1fr));
    gap: 8px;
    width: 100%;
  }
  .work-tab {
    width: 100%;
    min-height: 42px;
    padding: 10px 10px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .workflow-steps { flex-direction: column; gap: 40px; }
  .workflow-steps::before { display: none; }
  .team-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  #contact { grid-template-columns: 1fr; }
  .footer-logo {
    width: 64px;
    height: 64px;
  }
  nav {
    padding: 12px 16px;
    align-items: center;
  }
  body.mobile-nav-open nav {
    z-index: 10060;
  }
  .nav-logo {
    width: 72px;
    height: 72px;
  }
  .nav-links,
  .nav-cta {
    display: none !important;
  }
  #hero { padding: 0 6vw; }

  /* ── Mobile menu trigger ── */
  .nav-menu-toggle {
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(9, 155, 202, 0.35);
    border-radius: 12px;
    background: rgba(9, 155, 202, 0.08);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
  }
  .nav-menu-toggle:hover {
    background: rgba(9, 155, 202, 0.15);
    border-color: var(--blue-bright);
    box-shadow: 0 0 24px rgba(9, 155, 202, 0.25);
  }
  .nav-menu-toggle-lines {
    width: 18px;
    height: 11px;
    position: relative;
    display: block;
  }
  .nmt-bar {
    position: absolute;
    right: 0;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(240, 244, 255, 0.5), var(--blue-bright));
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s, top 0.25s;
  }
  .nmt-bar:nth-child(1) { top: 0; }
  .nmt-bar:nth-child(2) { top: 4.5px; }
  .nmt-bar:nth-child(3) { top: 9px; }
  body.mobile-nav-open .nmt-bar:nth-child(1) {
    top: 4.5px;
    transform: rotate(-45deg);
  }
  body.mobile-nav-open .nmt-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
  }
  body.mobile-nav-open .nmt-bar:nth-child(3) {
    top: 4.5px;
    transform: rotate(45deg);
  }

  /* ── Mobile drawer shell ── */
  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 10050;
    pointer-events: none;
    visibility: hidden;
  }
  body.mobile-nav-open .mobile-nav {
    pointer-events: auto;
    visibility: visible;
  }
  .mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 4, 8, 0.72);
    opacity: 0;
    transition: opacity 0.45s ease;
    backdrop-filter: blur(8px);
  }
  body.mobile-nav-open .mobile-nav-backdrop {
    opacity: 1;
  }

  .mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(92vw, 380px);
    height: 100%;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding: 28px 24px 32px;
    overflow: hidden;
    transform: translate3d(105%, 0, 0);
    transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 1px solid rgba(9, 155, 202, 0.22);
    box-shadow: -24px 0 80px rgba(0, 0, 0, 0.55);
  }
  body.mobile-nav-open .mobile-nav-panel {
    transform: translate3d(0, 0, 0);
  }

  .mobile-nav-panel-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(120% 80% at 100% 0%, rgba(9, 155, 202, 0.18) 0%, transparent 55%),
      radial-gradient(80% 60% at 0% 100%, rgba(9, 155, 202, 0.08) 0%, transparent 50%),
      linear-gradient(180deg, rgba(6, 13, 26, 0.98) 0%, rgba(2, 4, 8, 0.99) 100%);
    z-index: 0;
  }
  .mobile-nav-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
    animation: mn-orb-float 8s ease-in-out infinite;
  }
  .mobile-nav-orb--1 {
    width: 180px;
    height: 180px;
    top: 12%;
    left: -20%;
    background: var(--blue-bright);
  }
  .mobile-nav-orb--2 {
    width: 140px;
    height: 140px;
    bottom: 18%;
    right: -15%;
    background: #0ab8e8;
    animation-delay: -3s;
  }
  @keyframes mn-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.35; }
    50% { transform: translate(12px, -16px) scale(1.08); opacity: 0.55; }
  }
  .mobile-nav-grid {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
      linear-gradient(rgba(240, 244, 255, 0.4) 1px, transparent 1px),
      linear-gradient(90deg, rgba(240, 244, 255, 0.35) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 88%, transparent);
  }
  .mobile-nav-scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
    opacity: 0.55;
    z-index: 1;
    pointer-events: none;
    animation: mn-scan 4.5s ease-in-out infinite;
  }
  @keyframes mn-scan {
    0%, 100% { top: 18%; opacity: 0; }
    10% { opacity: 0.7; }
    50% { top: 72%; }
    90% { opacity: 0.7; }
    100% { top: 18%; opacity: 0; }
  }

  .mobile-nav-head,
  .mobile-nav-quote,
  .mobile-nav-links,
  .mobile-nav-footer {
    position: relative;
    z-index: 2;
  }

  .mobile-nav-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
  }
  .mobile-nav-head-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }
  .lang-switch--drawer {
    align-self: center;
  }
  .mobile-nav-kicker {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    color: var(--blue-bright);
    margin-bottom: 4px;
  }
  .mobile-nav-brand {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
  }
  .mobile-nav-close {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
  }
  .mobile-nav-close:hover {
    border-color: rgba(9, 155, 202, 0.5);
    background: rgba(9, 155, 202, 0.12);
  }
  .mobile-nav-close-icon {
    width: 18px;
    height: 18px;
    position: relative;
    display: block;
  }
  .mobile-nav-close-icon::before,
  .mobile-nav-close-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
  }
  .mobile-nav-close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .mobile-nav-close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-nav-quote {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--white-dim);
    line-height: 1.7;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .mobile-nav-quote em {
    font-style: normal;
    color: var(--blue-bright);
    text-shadow: 0 0 28px rgba(9, 155, 202, 0.45);
  }

  .mobile-nav-links {
    list-style: none;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0 4px 0 0;
  }
  .mobile-nav-links li {
    margin-bottom: 6px;
    opacity: 0;
    transform: translate3d(22px, 0, 0);
  }
  body.mobile-nav-open .mobile-nav-links li {
    animation: mn-link-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(0.08s + var(--mn-i) * 0.075s);
  }
  @keyframes mn-link-in {
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
  }
  .mobile-nav-link:active {
    transform: scale(0.98);
  }
  .mobile-nav-link:hover,
  .mobile-nav-link:focus-visible {
    background: rgba(9, 155, 202, 0.1);
    border-color: rgba(9, 155, 202, 0.35);
    outline: none;
  }
  .mn-num {
    font-size: 11px;
    font-weight: 700;
    color: rgba(9, 155, 202, 0.85);
    min-width: 1.6em;
    font-variant-numeric: tabular-nums;
  }
  .mn-label {
    flex: 1;
  }
  .mn-chev {
    font-size: 11px;
    opacity: 0.35;
    transition: transform 0.35s, opacity 0.35s;
  }
  .mobile-nav-link:hover .mn-chev,
  .mobile-nav-link:focus-visible .mn-chev {
    opacity: 1;
    transform: translateX(-4px);
  }

  .mobile-nav-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .mobile-nav-cta {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-bright), #067a9e);
    box-shadow: 0 12px 40px rgba(9, 155, 202, 0.35);
    transition: transform 0.2s, box-shadow 0.3s;
  }
  .mobile-nav-cta:active {
    transform: scale(0.98);
  }
  .mobile-nav-foot-note {
    margin-top: 14px;
    text-align: center;
    font-size: 11px;
    color: rgba(240, 244, 255, 0.35);
    font-family: var(--font-body);
  }
}
