/* ============================================================
   AnotherBOT — World-Class Futuristic UI
   GSAP + Interactive + Dark Tech
   ============================================================ */

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

/* === DESIGN TOKENS === */
:root {
  --bg:          #03030a;
  --bg-2:        #060610;
  --bg-card:     #0a0a1e;
  --bg-card-h:   #0e0e26;
  --cyan:        #00d4ff;
  --blue:        #0057ff;
  --mid:         #0099dd;
  --glow:        rgba(0,212,255,0.14);
  --border:      rgba(0,212,255,0.18);
  --border-h:    rgba(0,212,255,0.45);
  --white:       #ffffff;
  --light:       #c0ccdf;
  --muted:       #5c6e8a;
  --grad:        linear-gradient(135deg, #0057ff 0%, #00d4ff 100%);
  --grad-card:   linear-gradient(145deg, rgba(0,87,255,0.07), rgba(0,212,255,0.03));
  --font:        'Space Grotesk', 'Inter', system-ui, sans-serif;
  --r-sm:        10px;
  --r-md:        18px;
  --r-lg:        26px;
  --shadow:      0 12px 48px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 50px rgba(0,212,255,0.1);
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --t:           all 0.35s var(--ease);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Touch devices: hide cursor effects */
@media (hover: none) {
  #cursor, #cursor-follower, #cursor-text { display: none !important; }
  * { cursor: auto !important; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.12; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--light); line-height: 1.75; }
a  { color: inherit; text-decoration: none; transition: var(--t); }
em { font-style: normal; }

/* === LAYOUT === */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
section { padding: 110px 0; }

/* === UTILITIES === */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(0,212,255,0.07);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.3; transform:scale(0.6); }
}

.section-header { text-align: center; margin-bottom: 72px; }
.section-header p { max-width: 580px; margin: 18px auto 0; font-size: 1.05rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 34px;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: none;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s ease;
  border-radius: inherit;
}
.btn:hover::before { background: rgba(255,255,255,0.07); }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 5px 24px rgba(0,87,255,0.45);
}
.btn-primary:hover {
  box-shadow: 0 10px 40px rgba(0,87,255,0.6);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(0,212,255,0.07);
  border-color: var(--border-h);
  transform: translateY(-2px);
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
#cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 12px var(--cyan);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  mix-blend-mode: screen;
}
#cursor-follower {
  position: fixed;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(0,212,255,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}
#cursor-text {
  position: fixed;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  transform: translate(-50%,-50%);
  white-space: nowrap;
}

body.cursor-hover #cursor {
  width: 16px; height: 16px;
  background: var(--blue);
}
body.cursor-hover #cursor-follower {
  width: 60px; height: 60px;
  border-color: rgba(0,212,255,0.6);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preloader-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 55px 55px;
  animation: grid-fade 3s ease infinite;
}
@keyframes grid-fade {
  0%,100% { opacity:0.5; }
  50% { opacity:1; }
}

.preloader-inner {
  text-align: center;
  z-index: 1;
}
.preloader-logo {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.pl-another { color: var(--white); }
.pl-bot { color: var(--cyan); text-shadow: 0 0 30px var(--cyan); }

.preloader-bar-wrap {
  width: 240px;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin: 0 auto 16px;
  overflow: hidden;
}
.preloader-bar {
  height: 100%;
  width: 0%;
  background: var(--grad);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--cyan);
}
.preloader-count {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.12em;
}
#loader-num { color: var(--cyan); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--t);
}
.navbar.scrolled {
  background: rgba(3,3,10,0.88);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav-logo img { height: 38px; width: auto; }
.nav-logo em { color: var(--cyan); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-link {
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--light);
  transition: var(--t);
  cursor: none;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--cyan); }

.nav-cta {
  padding: 10px 22px !important;
  background: var(--grad) !important;
  color: #fff !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 18px rgba(0,87,255,0.4);
  display: flex !important;
  align-items: center !important;
  gap: 8px;
}
.nav-cta:hover { box-shadow: 0 8px 32px rgba(0,87,255,0.6) !important; background: rgba(255,255,255,0.07) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}

#neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 90px);
  padding-top: 40px;
  padding-bottom: 80px;
}

/* --- Hero Text --- */
.hero-text { position: relative; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  background: rgba(0,212,255,0.07);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: blink 1.5s infinite;
}

.hero-title {
  display: block;
  margin-bottom: 28px;
  opacity: 0;
}
.split-line {
  display: block;
  overflow: hidden;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--light);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 44px;
  opacity: 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
}
.hero-stat { text-align: center; padding: 0 28px; }
.hero-stat:first-child { padding-left: 0; }
.stat-val {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-lbl { font-size: 0.76rem; color: var(--muted); margin-top: 5px; font-weight: 600; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* --- Hero Robot --- */
.hero-robot-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.robot-halo {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,87,255,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.robot-halo-2 {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-robot {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(0,87,255,0.35)) drop-shadow(0 0 80px rgba(0,212,255,0.12));
  will-change: transform;
}

/* Robot eye/pupil interaction */
.pupil-group { transition: transform 0.25s ease; }

/* Core pulse animation */
@keyframes corePulse {
  0% { r: 23; opacity: 0.6; }
  100% { r: 45; opacity: 0; }
}
.core-pulse {
  animation: corePulseAnim 2.5s ease-out infinite;
}
.core-pulse.delay-1 {
  animation-delay: 1.25s;
}
@keyframes corePulseAnim {
  0% { r: 23px; opacity: 0.5; }
  100% { r: 55px; opacity: 0; }
}

/* Holographic cards */
.holo-card {
  position: absolute;
  background: rgba(10,10,30,0.85);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: none;
  user-select: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.holo-card:hover {
  border-color: var(--border-h);
  box-shadow: var(--shadow), 0 0 24px var(--glow);
  transform: scale(1.04) translateY(-2px) !important;
}
.hc-icon { font-size: 1.3rem; }
.hc-info { display: flex; flex-direction: column; }
.hc-label { font-size: 0.65rem; color: var(--muted); font-weight: 600; letter-spacing: 0.06em; }
.hc-value { font-size: 0.85rem; color: var(--white); }
.hc-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  margin-left: auto;
  box-shadow: 0 0 8px var(--cyan);
  animation: blink 2s infinite;
}

.holo-card-1 { top: 8%; right: -4%; }
.holo-card-2 { bottom: 24%; left: -6%; }
.holo-card-3 { top: 45%; right: -8%; }
.holo-card-4 { bottom: 6%; right: 6%; }

/* Orbit rings */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.12);
  pointer-events: none;
}
.orbit-1 {
  width: 520px; height: 520px;
  animation: orbit-spin 30s linear infinite;
}
.orbit-1::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 14px var(--cyan);
}
.orbit-2 {
  width: 620px; height: 620px;
  border-color: rgba(0,87,255,0.08);
  animation: orbit-spin 45s linear infinite reverse;
}
.orbit-2::after {
  content: '';
  position: absolute;
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  bottom: -3.5px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--blue);
}
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Scroll hint */
.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: 3;
}
.scroll-hint-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  animation: scroll-pulse 2s ease infinite;
}
@keyframes scroll-pulse {
  0%,100% { transform: scaleY(1); opacity:0.7; }
  50% { transform: scaleY(0.6); opacity:0.3; }
}
.scroll-hint span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  padding: 28px 0;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  position: relative;
}
.marquee-fade-left, .marquee-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-left { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee-fade-right { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }

.marquee-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee-run 28s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: color 0.25s ease;
  cursor: none;
}
.marquee-item:hover { color: var(--cyan); }
.marquee-item span { font-size: 1.1rem; }
@keyframes marquee-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-2); position: relative; }
.section-line-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--cyan), var(--border), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-nodes-wrap { position: relative; }

.node-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 3px;
  aspect-ratio: 4/3;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  overflow: hidden;
  position: relative;
}
.node-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(0,87,255,0.12), transparent 60%);
  border-radius: inherit;
}

.node-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--r-sm);
  transition: var(--t);
  cursor: none;
  position: relative;
  z-index: 1;
}
.node-item:hover {
  background: rgba(0,212,255,0.07);
  border-color: var(--border);
  transform: translateY(-3px) scale(1.02);
}
.node-center {
  background: linear-gradient(145deg, rgba(0,87,255,0.12), rgba(0,212,255,0.06));
  border-color: var(--border) !important;
}
.ni-icon { font-size: 1.7rem; }
.ni-label { font-size: 0.67rem; font-weight: 700; color: var(--muted); text-align: center; }
.node-center .ni-label { color: var(--cyan); }

.about-presence-card {
  position: absolute;
  bottom: -22px; right: -22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-glow), var(--shadow);
  backdrop-filter: blur(12px);
}
.apc-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 10px;
}
.flags-row { display: flex; gap: 10px; }
.flag-chip { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 1.4rem; }
.flag-chip span:last-child { font-size: 0.6rem; color: var(--muted); font-weight: 600; }

.about-text .lead { font-size: 1.15rem; color: var(--white); font-weight: 500; margin-bottom: 18px; }
.about-text p { margin-bottom: 14px; }
h2 em { font-style: normal; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 30px; }
.value-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 15px;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--light);
  transition: var(--t);
  cursor: none;
}
.value-chip:hover { background: rgba(0,212,255,0.05); border-color: var(--border-h); transform: translateY(-2px); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--bg-card);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-pill {
  text-align: center;
  padding: 52px 20px;
  position: relative;
  transition: var(--t);
  cursor: none;
}
.stat-pill::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--grad);
  transition: width 0.4s ease;
}
.stat-pill:hover::after { width: 55%; }
.stat-pill:hover { background: rgba(0,212,255,0.02); }
.sp-num {
  font-size: 3.6rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.sp-lbl { font-size: 0.8rem; font-weight: 700; color: var(--muted); letter-spacing: 0.05em; }
.stat-sep { width: 1px; background: rgba(255,255,255,0.05); margin: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { position: relative; overflow: hidden; }
.services-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.svc-card {
  position: relative;
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 40px;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: none;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.svc-card:hover { border-color: var(--border); box-shadow: var(--shadow-glow), var(--shadow); }
.svc-card:hover::before { opacity: 1; }

.svc-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(0,87,255,0.09), rgba(0,212,255,0.04));
  border-color: var(--border);
}
.svc-featured::before { opacity: 1; }

.svc-glow {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--glow);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.svc-card:hover .svc-glow { opacity: 1; }

.svc-icon {
  width: 62px; height: 62px;
  background: var(--glow);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 22px;
  transition: var(--t);
}
.svc-card:hover .svc-icon { background: rgba(0,212,255,0.14); transform: scale(1.05); }

.svc-num { font-size: 0.72rem; font-weight: 700; color: var(--cyan); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.svc-card h3 { margin-bottom: 12px; }
.svc-card p { font-size: 0.93rem; margin-bottom: 22px; line-height: 1.7; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.svc-list li { display: flex; align-items: center; gap: 9px; font-size: 0.855rem; color: var(--light); }
.svc-list li::before { content: ''; width: 5px; height: 5px; background: var(--cyan); border-radius: 50%; flex-shrink: 0; }

.svc-diagram-wrap { position: relative; }
.svc-diagram { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.diag-node {
  aspect-ratio: 1;
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.68rem;
  color: var(--muted);
  transition: var(--t);
  padding: 6px;
  text-align: center;
  cursor: none;
}
.diag-node span:first-child { font-size: 1.2rem; }
.diag-node.active {
  background: rgba(0,87,255,0.18);
  border-color: var(--blue);
  color: var(--cyan);
  box-shadow: 0 0 18px rgba(0,87,255,0.2);
}
.diag-node:hover { background: rgba(0,212,255,0.08); border-color: var(--border); color: var(--light); }

/* ============================================================
   WHY US
   ============================================================ */
.why-us { background: var(--bg-2); }

.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.why-card {
  padding: 34px 32px;
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: none;
}
.why-card:hover { border-color: var(--border); box-shadow: var(--shadow-glow); }
.why-icon-wrap { font-size: 2.4rem; margin-bottom: 18px; }
.why-card h4 { margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; line-height: 1.7; }
.why-card-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--grad);
  transition: width 0.5s ease;
}
.why-card:hover .why-card-line { width: 100%; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--bg); }

.process-track { position: relative; }
.process-connector {
  position: absolute;
  top: 32px;
  left: calc(12.5% - 8px);
  right: calc(12.5% - 8px);
  height: 4px;
}
.connector-svg { width: 100%; height: 4px; display: block; overflow: visible; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.proc-step { text-align: center; padding: 0 20px; cursor: none; }
.proc-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--cyan);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: var(--t);
}
.proc-step:hover .proc-num {
  background: var(--glow);
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(0,212,255,0.3);
  transform: scale(1.08);
}
.proc-step h4 { margin-bottom: 10px; }
.proc-step p { font-size: 0.84rem; line-height: 1.65; }

/* ============================================================
   MARKETS
   ============================================================ */
.markets { background: var(--bg-2); position: relative; overflow: hidden; }
.markets::before {
  content: '';
  position: absolute;
  top: 0; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,87,255,0.08), transparent 70%);
  pointer-events: none;
}

.markets-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }

.mkt-card {
  text-align: center;
  padding: 40px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  cursor: none;
}
.mkt-card:hover { border-color: var(--border); transform: translateY(-7px); box-shadow: var(--shadow-glow), var(--shadow); }
.mkt-flag { font-size: 3.2rem; margin-bottom: 14px; display: block; }
.mkt-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.mkt-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }
.mkt-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  background: var(--glow);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.06em;
}
.mkt-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,212,255,0.04), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mkt-card:hover .mkt-glow { opacity: 1; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-strip-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,87,255,0.1), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(0,212,255,0.06), transparent 60%),
    linear-gradient(135deg, rgba(0,87,255,0.08), rgba(0,212,255,0.04));
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px),
    radial-gradient(ellipse at 30% 50%, rgba(0,87,255,0.1), transparent 60%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
}
.cta-inner { position: relative; z-index: 1; }
.cta-strip h2 { margin-bottom: 16px; }
.cta-strip p { font-size: 1.05rem; max-width: 540px; margin: 0 auto 36px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--bg); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}
.team-card {
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: none;
}
.team-card:hover { border-color: var(--border); box-shadow: var(--shadow-glow), var(--shadow); }

.tc-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,87,255,0.28), rgba(0,212,255,0.18));
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
}
.tc-avatar span {
  font-size: 1.9rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tc-avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.2);
  animation: orbit-spin 8s linear infinite;
}
.tc-avatar-ring::after {
  content: '';
  position: absolute;
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  top: -3.5px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--cyan);
}
.tc-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 5px; }
.tc-role { font-size: 0.82rem; font-weight: 600; color: var(--cyan); letter-spacing: 0.05em; margin-bottom: 16px; }
.tc-bio { font-size: 0.855rem; line-height: 1.7; }
.tc-socials { display: flex; justify-content: center; gap: 10px; margin-top: 22px; }
.tc-social {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--muted);
  transition: var(--t);
  cursor: none;
}
.tc-social:hover { background: var(--glow); border-color: var(--border); color: var(--cyan); }
.tc-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.team-card:hover .tc-glow { opacity: 1; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-2); position: relative; overflow: hidden; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info > p { margin-bottom: 36px; line-height: 1.8; }

.contact-items { display: flex; flex-direction: column; gap: 12px; }
.ci-row {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px;
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-sm);
  transition: var(--t);
  cursor: none;
}
.ci-row:hover { border-color: var(--border); background: rgba(0,212,255,0.03); }
.ci-icon-wrap {
  width: 38px; height: 38px;
  background: var(--glow);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ci-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 2px; }
.ci-val { font-size: 0.88rem; font-weight: 500; }

.contact-form-wrap { }
.form-inner {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-inner h3 { margin-bottom: 6px; }
.form-note { font-size: 0.84rem; color: var(--muted); margin-bottom: 30px; }

.form-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 7px; }
.fg input, .fg select, .fg textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-sm);
  padding: 12px 15px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: var(--t);
  outline: none;
  cursor: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--cyan);
  background: rgba(0,212,255,0.04);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.fg select option { background: var(--bg-card); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; padding: 15px; margin-top: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #000007; }
.footer-top-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--cyan), var(--border), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0 52px;
}
.footer-brand .fb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1.15rem;
  font-weight: 800;
}
.footer-brand .fb-logo img { height: 34px; }
.footer-brand .fb-logo em { color: var(--cyan); font-style: normal; }
.footer-brand > p { font-size: 0.84rem; line-height: 1.7; max-width: 250px; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 8px; }
.fs-link {
  width: 34px; height: 34px;
  border-radius: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  transition: var(--t);
  cursor: none;
}
.fs-link:hover { background: var(--glow); border-color: var(--border); color: var(--cyan); transform: translateY(-2px); }

.footer-col h5 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.84rem; color: var(--muted); cursor: none; }
.footer-col a:hover { color: var(--cyan); padding-left: 4px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px 0;
}
.footer-bottom-inner > p { font-size: 0.78rem; color: var(--muted); }
.footer-bottom-inner span { color: var(--cyan); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 0.78rem; color: var(--muted); cursor: none; }
.footer-legal a:hover { color: var(--cyan); }

/* ============================================================
   GSAP REVEAL — initial state
   ============================================================ */
.gsap-reveal {
  opacity: 0;
  transform: translateY(42px);
}

/* ============================================================
   3D TILT CARDS
   ============================================================ */
.tilt-card { transform-style: preserve-3d; }

/* ============================================================
   MAGNETIC BUTTON
   ============================================================ */
.magnetic-btn { cursor: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .orbit-1 { width: 440px; height: 440px; }
  .orbit-2 { width: 520px; height: 520px; }
  .robot-halo { width: 380px; height: 380px; }
}

@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; min-height: auto; }
  .hero-robot-wrap { order: -1; max-width: 360px; margin: 0 auto; }
  .hero-robot { max-width: 300px; }
  .orbit-1 { width: 360px; height: 360px; }
  .orbit-2 { width: 440px; height: 440px; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .svc-featured { grid-column: span 1; grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .process-connector { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .holo-card-2, .holo-card-4 { display: none; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  h1 { font-size: 2.6rem; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(3,3,10,0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 999;
    backdrop-filter: blur(20px);
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.15rem; padding: 12px 28px; }
  .nav-toggle { display: flex; cursor: pointer; }

  .hero-layout { gap: 24px; padding-top: 20px; padding-bottom: 60px; }
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 16px; }
  .hero-stats .hero-stat:first-child { padding-left: 0; }

  .holo-card { display: none; }
  .holo-card-1 { display: flex; top: 5%; right: -5%; }

  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; }
  .form-duo { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-presence-card { right: 0; bottom: -12px; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat-sep { display: none; }
}

@media (max-width: 480px) {
  .markets-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .orbit-1, .orbit-2 { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
