/* Extracted from user preview (1).html */
:root {
  --black: #020408;
  --graphite: #0a0f1a;
  --surface: #0d1520;
  --surface2: #111827;
  --blue: #0ea5e9;
  --cyan: #06d6e8;
  --purple: #8b5cf6;
  --glow-blue: rgba(14,165,233,0.15);
  --glow-cyan: rgba(6,214,232,0.12);
  --glow-purple: rgba(139,92,246,0.12);
  --white: #f0f4f8;
  --muted: #64748b;
  --border: rgba(255,255,255,0.06);
  --border-glow: rgba(14,165,233,0.25);
}

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

html { scroll-behavior: smooth; }

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

/* CUSTOM CURSOR */
#cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--cyan); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  mix-blend-mode: normal;
  transition: transform 0.15s ease, width 0.2s, height 0.2s, background 0.2s;
  transform: translate(-50%,-50%);
}
#cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(6,214,232,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transition: transform 0.4s cubic-bezier(.23,1,.32,1), width 0.3s, height 0.3s, border-color 0.2s;
  transform: translate(-50%,-50%);
}
body:has(a:hover) #cursor, body:has(button:hover) #cursor { width: 18px; height: 18px; background: var(--blue); }
body:has(a:hover) #cursor-ring, body:has(button:hover) #cursor-ring { width: 54px; height: 54px; border-color: var(--blue); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, rgba(2,4,8,0.95) 0%, transparent 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.25rem; letter-spacing: -0.02em; text-decoration: none; color: white;
}
.logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
  box-shadow: 0 0 20px rgba(6,214,232,0.4);
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.875rem;
  font-weight: 400; letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.btn-ghost {
  background: none; border: 1px solid var(--border);
  color: var(--white); padding: 8px 20px; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: 0.875rem; cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--border-glow); color: var(--cyan); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border: none; color: #000; padding: 8px 20px; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: 0.875rem;
  font-weight: 600; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 0 20px rgba(14,165,233,0.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 30px rgba(14,165,233,0.5); }

/* HERO */
#hero {
  min-height: 100vh; position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; overflow: hidden; padding: 0;
  background: var(--black);
}
#hero-canvas { display: none; }
.hero-content {
  position: relative; z-index: 3;
  padding: 120px 40px 60px 60px;
}
#hero-right {
  position: relative; height: 100vh; overflow: hidden;
  background: var(--black);
}
#hero-right::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100px; height: 100%;
  background: linear-gradient(90deg, var(--black), transparent);
  z-index: 10; pointer-events: none;
}
#truck-scene-wrap { display: none; }
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-content { padding: 100px 24px 40px; }
  #hero-right { height: 50vw; min-height: 280px; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.2);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 32px;
  font-size: 0.75rem; color: var(--cyan); letter-spacing: 0.1em; text-transform: uppercase;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--cyan); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }

h1.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #a0c4d8 50%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.2rem; color: var(--muted);
  font-weight: 300; line-height: 1.7;
  max-width: 560px; margin-bottom: 40px;
  letter-spacing: 0.01em;
}
.hero-ctas { display: flex; gap: 14px; margin-bottom: 64px; }
.cta-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #000; border: none;
  padding: 14px 32px; border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
  cursor: pointer; transition: all 0.25s;
  box-shadow: 0 0 30px rgba(14,165,233,0.35);
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(14,165,233,0.55); }
.cta-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: white; padding: 14px 32px; border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 1rem;
  cursor: pointer; transition: all 0.25s; backdrop-filter: blur(10px);
}
.cta-secondary:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.08); }

/* STATS STRIP */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; backdrop-filter: blur(20px);
  background-color: rgba(13,21,32,0.8);
}
.stat-card {
  padding: 24px 28px; background: rgba(13,21,32,0.6);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--glow-blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-card:hover::before { opacity: 1; }
.stat-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 8px;
}
.stat-value {
  font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800;
  color: white; letter-spacing: -0.03em;
}
.stat-value span { color: var(--cyan); }
.stat-delta {
  font-size: 0.75rem; color: #22c55e; margin-top: 4px;
}

/* SECTIONS GENERAL */
section { padding: 120px 48px; position: relative; }

.section-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--cyan); margin-bottom: 16px; font-family: 'DM Mono', monospace;
}
h2.section-title {
  font-family: 'Syne', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 20px;
}
.section-desc {
  color: var(--muted); font-size: 1.1rem; line-height: 1.7;
  max-width: 560px; font-weight: 300;
}

/* MARQUEE */
.marquee-wrap {
  overflow: hidden; padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--graphite);
}
.marquee-track {
  display: flex; gap: 64px; animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.875rem; color: var(--muted); font-family: 'DM Mono', monospace;
  letter-spacing: 0.05em; text-transform: uppercase; flex-shrink: 0;
}
.marquee-dot { width: 4px; height: 4px; background: var(--cyan); border-radius: 50%; }

/* HOW IT WORKS -- FLOW */
#flow { background: var(--graphite); }
.flow-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 64px;
}
.flow-steps { display: flex; flex-direction: column; gap: 0; }
.flow-step {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: all 0.3s;
  position: relative;
}
.flow-step:last-child { border-bottom: none; }
.flow-step.active .step-num { color: var(--cyan); border-color: var(--cyan); }
.flow-step.active .step-title { color: white; }
.step-num {
  font-family: 'DM Mono', monospace; font-size: 0.75rem;
  color: var(--muted); border: 1px solid var(--border);
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s;
}
.step-title {
  font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: rgba(255,255,255,0.5); margin-bottom: 6px; transition: color 0.3s;
}
.step-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.flow-visual {
  position: relative; height: 480px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  border-radius: 20px; border: 1px solid var(--border);
  overflow: hidden;
}
.flow-visual canvas { width: 100%; height: 100%; }

/* AI SECTION */
#ai-section { background: var(--black); }
.ai-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; margin-top: 64px;
}
.ai-cards { display: flex; flex-direction: column; gap: 16px; }
.ai-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 24px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.ai-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.ai-card:hover { border-color: rgba(14,165,233,0.2); transform: translateY(-2px); }
.ai-card:hover::before { opacity: 1; }
.ai-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--glow-blue); border: 1px solid var(--border-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 14px;
}
.ai-card-title {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem;
  margin-bottom: 6px;
}
.ai-card-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.ai-viz {
  position: sticky; top: 100px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; height: 500px;
}
.ai-viz canvas { width: 100%; height: 100%; }

/* METRICS BAR */
.metrics-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 32px;
  margin-top: 20px;
}
.metric-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.metric-row:last-child { border-bottom: none; }
.metric-name { font-size: 0.8rem; color: var(--muted); }
.metric-val {
  font-family: 'DM Mono', monospace; font-size: 0.875rem; color: var(--cyan);
}
.metric-bar-track {
  flex: 1; height: 3px; background: var(--border);
  border-radius: 4px; margin: 0 16px; overflow: hidden;
}
.metric-bar-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform-origin: left; animation: barFill 2s ease-out forwards;
}
@keyframes barFill { from{transform:scaleX(0)} to{transform:scaleX(1)} }

/* API SECTION */
#api-section {
  background: linear-gradient(135deg, var(--black) 0%, var(--graphite) 100%);
}
.api-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center; margin-top: 64px;
}
.terminal {
  background: #050a12; border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  font-family: 'DM Mono', monospace; font-size: 0.8rem;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}
.terminal-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: #0a0f1a; border-bottom: 1px solid var(--border);
}
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-content { padding: 24px; line-height: 1.8; }
.t-comment { color: #4a5568; }
.t-key { color: var(--cyan); }
.t-str { color: #a3e635; }
.t-num { color: #f97316; }
.t-punc { color: var(--muted); }
.t-method { color: var(--purple); }
.t-label { color: var(--blue); }
.t-response {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.t-success { color: #22c55e; }
.api-features { display: flex; flex-direction: column; gap: 20px; }
.api-feat {
  display: flex; gap: 16px; padding: 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; transition: all 0.3s;
}
.api-feat:hover { border-color: rgba(14,165,233,0.2); transform: translateX(4px); }
.api-feat-icon { font-size: 1.4rem; flex-shrink: 0; }
.api-feat-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.api-feat-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

/* NETWORK MAP */
#network { background: var(--graphite); }
.map-container {
  position: relative; margin-top: 64px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden; height: 520px;
}
.map-container canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-overlay {
  position: absolute; top: 24px; left: 24px;
  display: flex; flex-direction: column; gap: 8px; z-index: 10;
}
.map-stat {
  background: rgba(10,15,26,0.85); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 10px 16px;
}
.map-stat-label { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.map-stat-val { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--cyan); }

/* TESTIMONIALS */
#testimonials { background: var(--black); overflow: hidden; }
.testimonial-scroll {
  display: flex; gap: 24px; margin-top: 64px;
  animation: testScroll 30s linear infinite;
}
.testimonial-scroll:hover { animation-play-state: paused; }
@keyframes testScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.tcard {
  flex-shrink: 0; width: 380px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  position: relative; overflow: hidden;
  transition: transform 0.3s;
}
.tcard:hover { transform: translateY(-4px); }
.tcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
}
.tcard-quote {
  font-size: 2rem; line-height: 1;
  color: var(--purple); margin-bottom: 16px; opacity: 0.5;
}
.tcard-text {
  font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7;
  margin-bottom: 24px;
}
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem;
}
.tcard-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; }
.tcard-role { font-size: 0.75rem; color: var(--muted); }
.tcard-stats {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex; gap: 20px;
}
.tcard-metric { }
.tcard-metric-val { font-family: 'DM Mono', monospace; font-size: 1rem; color: var(--cyan); font-weight: 500; }
.tcard-metric-label { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* DRIVERS */
#drivers {
  background: linear-gradient(135deg, var(--graphite), var(--black));
}
.drivers-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 64px;
}
.benefit-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.benefit-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px; transition: all 0.3s;
}
.benefit-card:hover { border-color: rgba(6,214,232,0.2); transform: translateY(-3px); }
.benefit-icon { font-size: 1.8rem; margin-bottom: 12px; }
.benefit-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.benefit-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.earnings-widget {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; margin-top: 24px;
}
.earnings-title { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 12px; }
.earnings-amount { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; margin-bottom: 4px; }
.earnings-amount span { color: var(--cyan); }
.earnings-bar {
  height: 6px; background: var(--border); border-radius: 4px; margin-top: 16px; overflow: hidden;
}
.earnings-fill {
  height: 100%; width: 72%; border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  animation: barFill 2s ease-out forwards;
}
.driver-viz-area {
  position: relative; height: 480px; display: flex; align-items: center; justify-content: center;
}
.driver-avatar-wrap { position: relative; }
.driver-circle {
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(14,165,233,0.15), transparent 70%);
  border: 1px solid rgba(14,165,233,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; z-index: 2;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.driver-ring {
  position: absolute; inset: -30px;
  border: 1px dashed rgba(14,165,233,0.15);
  border-radius: 50%; animation: spin 30s linear infinite;
}
.driver-ring-2 {
  position: absolute; inset: -60px;
  border: 1px dashed rgba(139,92,246,0.1);
  border-radius: 50%; animation: spin 50s linear infinite reverse;
}
@keyframes spin { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.float-badge {
  position: absolute; background: rgba(13,21,32,0.9);
  backdrop-filter: blur(20px); border: 1px solid var(--border);
  border-radius: 12px; padding: 10px 16px;
  font-size: 0.8rem; white-space: nowrap; z-index: 10;
}
.float-badge.b1 { top: 20px; right: -20px; }
.float-badge.b2 { bottom: 40px; right: -30px; }
.float-badge.b3 { bottom: 40px; left: -30px; }
.badge-val { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: var(--cyan); }
.badge-lab { font-size: 0.65rem; color: var(--muted); }

/* APP SECTION */
#app-section { background: var(--black); }
.app-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 64px;
}
.phone-mockup {
  position: relative; display: flex; justify-content: center;
  perspective: 1200px;
}
.phone-wrap {
  transform: rotateY(-8deg) rotateX(5deg);
  transition: transform 0.5s ease;
}
.phone-wrap:hover { transform: rotateY(0deg) rotateX(0deg); }
.phone-frame {
  width: 260px;
  background: #0a0f1a; border: 2px solid rgba(255,255,255,0.1);
  border-radius: 40px; padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05),
              inset 0 0 0 1px rgba(255,255,255,0.05),
              0 0 60px rgba(14,165,233,0.15);
  position: relative;
}
.phone-screen {
  background: var(--black); border-radius: 28px; overflow: hidden;
  height: 480px; position: relative;
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100px; height: 24px; background: #0a0f1a; border-radius: 0 0 16px 16px; z-index: 10;
}
.phone-inner {
  padding: 32px 16px 16px; height: 100%; overflow: hidden;
  background: linear-gradient(180deg, #060d18, #020408);
}
.pscreen {
  display: none; flex-direction: column; gap: 12px; height: 100%;
}
.pscreen.active { display: flex; }
.pscreen-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.pcard {
  background: rgba(13,21,32,0.8); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px; font-size: 0.7rem;
}
.pcard-label { color: var(--muted); margin-bottom: 4px; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; }
.pcard-val { font-family: 'Syne', sans-serif; font-weight: 700; }
.map-preview {
  flex: 1; background: var(--surface);
  border: 1px solid var(--border); border-radius: 12px;
  position: relative; overflow: hidden;
}
.map-dot { position: absolute; width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 10px var(--cyan); }
.map-line { position: absolute; height: 1px; background: var(--cyan); opacity: 0.3; transform-origin: left; }
.app-tabs { display: flex; gap: 8px; margin-bottom: 8px; }
.app-tab { flex: 1; padding: 6px; border-radius: 6px; text-align: center; font-size: 0.65rem; background: var(--border); color: var(--muted); cursor: pointer; transition: all 0.2s; }
.app-tab.active { background: var(--blue); color: white; }
.app-features { display: flex; flex-direction: column; gap: 16px; }
.app-feat { display: flex; gap: 16px; align-items: start; }
.app-feat-icon { width: 44px; height: 44px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.app-feat-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.app-feat-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.store-btns { display: flex; gap: 12px; margin-top: 32px; }
.store-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 12px 20px; border-radius: 12px; cursor: pointer;
  transition: all 0.2s; text-decoration: none; color: white;
}
.store-btn:hover { border-color: rgba(14,165,233,0.3); transform: translateY(-2px); }
.store-icon { font-size: 1.4rem; }
.store-label { font-size: 0.65rem; color: var(--muted); }
.store-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; }

/* CTA SECTION */
#cta-section {
  background: var(--graphite); text-align: center;
  position: relative; overflow: hidden;
}
#cta-section::before {
  content: ''; position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title { font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 20px; line-height: 1.1; }
.cta-sub { color: var(--muted); font-size: 1.1rem; max-width: 500px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; }

/* FOOTER */
footer {
  background: var(--black); border-top: 1px solid var(--border);
  padding: 64px 48px 32px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 0.875rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--muted);
}
.footer-bottom a { color: var(--muted); text-decoration: none; margin-left: 24px; transition: color 0.2s; }
.footer-bottom a:hover { color: white; }

/* GLOW BLOBS */
.glow-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* TYPEWRITER */
.typewriter { border-right: 2px solid var(--cyan); animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{border-color:var(--cyan)} 50%{border-color:transparent} }

/* LIVE INDICATOR */
.live-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2);
  padding: 4px 10px; border-radius: 100px; font-size: 0.7rem; color: #22c55e;
  font-family: 'DM Mono', monospace;
}
.live-dot { width: 5px; height: 5px; background: #22c55e; border-radius: 50%; animation: pulse 1.5s infinite; }

@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 80px 24px; }
  #hero { padding: 0 24px; }
  .hero-content { padding-top: 80px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .flow-grid, .ai-grid, .api-grid, .drivers-grid, .app-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .benefit-cards { grid-template-columns: 1fr; }
}


/* === GPT FIX: Cinematic logistics hero replacing toy truck canvas === */
body { cursor: auto; }
#cursor, #cursor-ring { display:none !important; }
#hero {
  grid-template-columns: minmax(430px, 0.86fr) minmax(560px, 1.14fr);
  gap: 20px;
}
.hero-content { padding-left: 48px; padding-right: 18px; }
h1.hero-title {
  font-size: clamp(3.4rem, 5.3vw, 5.75rem);
  line-height: .92;
  max-width: 720px;
}
.hero-sub { max-width: 620px; }
#hero-right {
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:0;
  isolation:isolate;
}
#truck-canvas-3d { display:none !important; }
.hero-logistics-stage {
  position:absolute;
  inset:0;
  overflow:hidden;
  background:
    radial-gradient(circle at 60% 38%, rgba(6,214,232,.22), transparent 26%),
    radial-gradient(circle at 78% 48%, rgba(139,92,246,.17), transparent 27%),
    linear-gradient(180deg, rgba(4,8,17,.05), #020408 78%);
}
.hero-logistics-stage::before {
  content:'';
  position:absolute;
  inset:26% -15% -10% 2%;
  background:
    linear-gradient(rgba(6,214,232,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,214,232,.08) 1px, transparent 1px);
  background-size:42px 42px;
  transform:perspective(780px) rotateX(64deg) translateY(30px);
  opacity:.55;
  mask-image:linear-gradient(to bottom, transparent 0%, #000 30%, transparent 100%);
}
.hero-orbit-map {
  position:absolute;
  width:min(54vw,760px);
  aspect-ratio:1/1;
  right:6%;
  top:8%;
  border-radius:50%;
  background:
    radial-gradient(circle at 38% 35%, rgba(255,255,255,.95), rgba(213,224,232,.78) 31%, rgba(73,99,121,.38) 62%, rgba(8,16,30,.05) 72%, transparent 73%),
    radial-gradient(circle at 54% 55%, rgba(6,214,232,.2), transparent 35%);
  filter: drop-shadow(0 24px 80px rgba(6,214,232,.15));
  opacity:.96;
  transform:translate3d(0,0,0);
}
.hero-orbit-map::before {
  content:'';
  position:absolute;
  inset:7%;
  border-radius:50%;
  background:
    radial-gradient(ellipse at 55% 45%, transparent 0 18%, rgba(255,255,255,.42) 18.4% 19.2%, transparent 19.5%),
    linear-gradient(40deg, transparent 39%, rgba(255,255,255,.50) 40% 42%, transparent 43%),
    linear-gradient(128deg, transparent 46%, rgba(255,255,255,.35) 47% 48%, transparent 49%),
    radial-gradient(ellipse at 58% 34%, rgba(255,255,255,.82) 0 8%, transparent 8.5%),
    radial-gradient(ellipse at 45% 45%, rgba(255,255,255,.72) 0 14%, transparent 14.5%),
    radial-gradient(ellipse at 55% 58%, rgba(255,255,255,.7) 0 13%, transparent 13.5%),
    radial-gradient(ellipse at 34% 64%, rgba(255,255,255,.55) 0 10%, transparent 10.5%);
  opacity:.72;
}
.hero-route-svg {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  overflow:visible;
}
.route-line {
  fill:none;
  stroke:#7c3cff;
  stroke-width:2.4;
  stroke-dasharray:8 8;
  opacity:.9;
  filter:drop-shadow(0 0 10px rgba(124,60,255,.65));
  animation:dashMove 3.2s linear infinite;
}
@keyframes dashMove { to { stroke-dashoffset:-80; } }
.route-node {
  position:absolute;
  width:16px;height:16px;border-radius:50%;
  background:#6d35ff;
  border:4px solid rgba(255,255,255,.82);
  box-shadow:0 0 0 7px rgba(109,53,255,.2), 0 0 30px rgba(109,53,255,.8);
  z-index:4;
}
.node-lagos { left:38%; top:54%; }
.node-enugu { left:56%; top:62%; }
.node-london { left:63%; top:26%; }
.node-dubai { left:78%; top:48%; }
.node-ny { left:16%; top:31%; }
.place-card {
  position:absolute;
  z-index:5;
  display:flex;align-items:center;gap:10px;
  padding:10px 14px;
  border-radius:13px;
  background:rgba(255,255,255,.96);
  color:#111827;
  font-weight:700;
  font-size:14px;
  box-shadow:0 14px 35px rgba(0,0,0,.18);
  white-space:nowrap;
  animation:cardFloat 4.5s ease-in-out infinite;
}
.flag { font-size:20px; }
.place-card.lagos { left:26%; top:55%; }
.place-card.enugu { left:61%; top:64%; animation-delay:.4s; }
.place-card.london { left:66%; top:20%; animation-delay:.2s; }
.place-card.dubai { left:81%; top:47%; animation-delay:.8s; }
.place-card.ny { left:6%; top:30%; animation-delay:.6s; }
@keyframes cardFloat { 50% { transform:translateY(-7px); } }
.cargo-cube {
  position:absolute;
  left:47%; top:48%;
  width:76px;height:76px;
  transform-style:preserve-3d;
  transform:rotateX(-18deg) rotateY(34deg);
  animation:cubePulse 2.6s ease-in-out infinite;
  z-index:7;
  filter:drop-shadow(0 0 28px rgba(124,60,255,.85));
}
.cargo-cube span { position:absolute; inset:0; border-radius:8px; background:linear-gradient(135deg,#7c3cff,#4f20d8); border:1px solid rgba(255,255,255,.22); }
.cargo-cube .front { transform:translateZ(38px); display:grid;place-items:center;color:white;font-weight:900;font-family:Syne; }
.cargo-cube .right { transform:rotateY(90deg) translateZ(38px); filter:brightness(.75); }
.cargo-cube .top { transform:rotateX(90deg) translateZ(38px); filter:brightness(1.25); }
@keyframes cubePulse { 50% { transform:rotateX(-14deg) rotateY(48deg) translateY(-10px); } }
.real-truck {
  position:absolute;
  right:-3%;
  bottom:7%;
  width:min(49vw,720px);
  height:230px;
  z-index:10;
  filter:drop-shadow(0 26px 38px rgba(0,0,0,.7));
  animation:truckSettle 5.5s ease-in-out infinite;
}
@keyframes truckSettle { 50% { transform:translateY(-4px); } }
.truck-body {
  position:absolute;right:0;bottom:58px;width:70%;height:108px;border-radius:20px 18px 18px 10px;
  background:linear-gradient(180deg,#3c4656 0%,#111827 48%,#050911 100%);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:inset 0 18px 35px rgba(255,255,255,.08), inset 0 -20px 35px rgba(0,0,0,.45);
}
.truck-body::before { content:'';position:absolute;inset:18px 28px;border-radius:18px;border:1px solid rgba(6,214,232,.28);background:linear-gradient(90deg,rgba(6,214,232,.12),rgba(255,255,255,.03)); }
.brand-decal { position:absolute;right:62px;top:39px;display:flex;align-items:center;gap:18px;font-family:Syne;font-size:30px;font-weight:800;color:white;letter-spacing:-.04em;text-shadow:0 2px 8px rgba(0,0,0,.45); }
.brand-decal b { display:grid;place-items:center;width:54px;height:54px;border-radius:14px;background:linear-gradient(135deg,#0ea5e9,#06d6e8);color:#06101d;font-size:14px;box-shadow:0 0 22px rgba(6,214,232,.45); }
.truck-cab {
  position:absolute;left:8%;bottom:58px;width:31%;height:126px;
  background:linear-gradient(140deg,#17263a 0%,#0a1422 52%,#050911 100%);
  clip-path:polygon(18% 33%,34% 0,82% 0,100% 30%,100% 100%,8% 100%,0 58%);
  border-radius:12px;
  box-shadow:inset 0 20px 30px rgba(255,255,255,.08), inset 0 -25px 35px rgba(0,0,0,.55);
}
.truck-cab::before { content:'';position:absolute;left:34%;top:20px;width:36%;height:58px;border-radius:6px;background:linear-gradient(135deg,rgba(151,217,255,.85),rgba(13,86,140,.35));box-shadow:inset 0 0 16px rgba(255,255,255,.25);transform:skewX(-15deg); }
.truck-cab::after { content:'';position:absolute;left:72%;top:30px;width:22%;height:50px;border-radius:5px;background:linear-gradient(135deg,rgba(114,202,255,.75),rgba(10,59,105,.35));transform:skewX(10deg); }
.truck-nose { position:absolute;left:0;bottom:58px;width:21%;height:72px;border-radius:18px 14px 12px 28px;background:linear-gradient(180deg,#172234,#050911);box-shadow:inset 0 10px 25px rgba(255,255,255,.08); }
.truck-light { position:absolute;left:3%;bottom:92px;width:44px;height:10px;border-radius:10px;background:#dff6ff;box-shadow:0 0 22px rgba(180,235,255,.85); }
.truck-grill { position:absolute;left:18%;bottom:86px;width:55px;height:9px;border-radius:8px;background:rgba(202,230,255,.65);box-shadow:0 19px 0 rgba(202,230,255,.35); }
.wheel { position:absolute;bottom:18px;width:86px;height:86px;border-radius:50%;background:radial-gradient(circle,#8da0b8 0 18%,#1f2937 19% 35%,#03060b 36% 58%,#111827 59% 72%,#03060b 73%);border:8px solid #05070c;box-shadow:inset 0 0 0 8px rgba(255,255,255,.05),0 8px 16px rgba(0,0,0,.45);animation:wheelSpin 1.5s linear infinite; }
.wheel::after { content:'';position:absolute;inset:24px;border-radius:50%;border:5px dashed rgba(190,210,230,.65); }
.w1 { left:14%; }.w2 { right:28%; }.w3 { right:4%; }
@keyframes wheelSpin { to { transform:rotate(360deg); } }
.truck-shadow { position:absolute;left:8%;right:3%;bottom:8px;height:25px;border-radius:50%;background:radial-gradient(ellipse,rgba(0,0,0,.75),transparent 68%);filter:blur(8px); }
.truck-top-port { position:absolute;left:52%;bottom:168px;width:90px;height:12px;border-radius:99px;background:linear-gradient(90deg,transparent,#06d6e8,transparent);box-shadow:0 0 22px rgba(6,214,232,.65);opacity:.9; }
.air-packet { position:absolute;z-index:13;width:28px;height:28px;border-radius:7px;background:linear-gradient(135deg,#7c3cff,#06d6e8);box-shadow:0 0 28px rgba(6,214,232,.9);left:52%;bottom:172px;animation:packetToMap 4.2s cubic-bezier(.16,1,.3,1) infinite; }
.air-packet.p2{ animation-delay:1.35s; transform:scale(.82); }
.air-packet.p3{ animation-delay:2.7s; transform:scale(.72); }
@keyframes packetToMap {
  0%{ opacity:0; transform:translate(0,0) scale(.5) rotate(0); }
  12%{ opacity:1; transform:translate(10px,-35px) scale(1) rotate(80deg); }
  50%{ opacity:1; transform:translate(-120px,-245px) scale(.9) rotate(220deg); }
  76%{ opacity:.95; transform:translate(-250px,-295px) scale(.65) rotate(330deg); }
  100%{ opacity:0; transform:translate(-330px,-310px) scale(.3) rotate(420deg); }
}
.hero-fleet-card { position:absolute;z-index:12;padding:14px 18px;border-radius:16px;background:rgba(8,14,26,.78);backdrop-filter:blur(18px);border:1px solid rgba(255,255,255,.13);box-shadow:0 16px 35px rgba(0,0,0,.35); }
.hero-fleet-card strong{ display:block;font-family:Syne;font-size:17px;margin-bottom:6px; }.hero-fleet-card small{color:#a9b4c4}.fleet-live{right:58%;bottom:18%;}.route-ai{right:10%;top:34%;}
@media (max-width: 1100px){
  #hero{grid-template-columns:1fr;min-height:auto;padding-top:80px;}
  .hero-content{padding:40px 24px 20px;}
  #hero-right{height:620px;}
  .hero-orbit-map{width:min(92vw,650px);right:3%;top:2%;}
  .real-truck{width:min(92vw,690px);right:0;bottom:8%;}
}
@media (max-width: 720px){
 h1.hero-title{font-size:clamp(3rem,15vw,4.2rem)}
 .place-card{font-size:11px;padding:8px 10px}.ny,.london,.dubai{display:none!important;}
 .real-truck{height:180px}.brand-decal{font-size:20px;right:35px}.brand-decal b{width:42px;height:42px}.wheel{width:66px;height:66px}.truck-body{height:88px}.truck-cab{height:98px}.truck-nose{height:58px}.hero-fleet-card{display:none;}
}



/* === GPT REVISION 2: hero truck focus + move globe to network section === */
#hero {
  grid-template-columns: minmax(360px,.72fr) minmax(680px,1.28fr) !important;
  gap: 8px !important;
  min-height: 100vh;
}
.hero-content {
  padding: 118px 20px 42px 48px !important;
  align-self:center;
}
h1.hero-title {
  font-size: clamp(2.85rem, 4.05vw, 4.65rem) !important;
  line-height: .96 !important;
  max-width: 560px !important;
  margin-bottom: 18px !important;
  letter-spacing: -.045em !important;
}
.hero-sub {
  font-size: 1.05rem !important;
  line-height: 1.55 !important;
  margin-bottom: 30px !important;
}
.hero-ctas { margin-bottom: 42px !important; }
.stats-strip { max-width: 520px; grid-template-columns: repeat(4,1fr); }
.stat-card { padding: 18px 18px !important; }
.stat-value { font-size: 1.45rem !important; }
.stat-label { font-size: .62rem !important; }
#hero-right {
  height:100vh !important;
  overflow:hidden !important;
  background:
    radial-gradient(circle at 52% 38%, rgba(6,214,232,.13), transparent 30%),
    radial-gradient(circle at 72% 60%, rgba(139,92,246,.10), transparent 32%),
    #020408 !important;
}
#hero-right .hero-orbit-map,
#hero-right .place-card,
#hero-right .route-node,
#hero-right .cargo-cube,
#hero-right .route-ai { display:none !important; }
.hero-logistics-stage {
  background:
    radial-gradient(circle at 57% 42%, rgba(6,214,232,.14), transparent 27%),
    linear-gradient(180deg, rgba(4,8,17,.05), #020408 82%) !important;
}
.hero-logistics-stage::before {
  inset:36% -10% -14% -4% !important;
  opacity:.72 !important;
  background-size:50px 50px !important;
}
.real-truck {
  width:min(68vw,1040px) !important;
  height:300px !important;
  right:-36% !important;
  bottom:11% !important;
  animation: truckDriveAcross 8.5s cubic-bezier(.45,.02,.25,1) infinite !important;
}
@keyframes truckDriveAcross {
  0%   { transform:translateX(42vw) translateY(0); opacity:0; }
  10%  { opacity:1; }
  40%  { transform:translateX(-6vw) translateY(-3px); opacity:1; }
  66%  { transform:translateX(-6vw) translateY(-6px); opacity:1; }
  92%  { transform:translateX(-78vw) translateY(-2px); opacity:1; }
  100% { transform:translateX(-92vw) translateY(0); opacity:0; }
}
.truck-body { height:136px !important; bottom:70px !important; border-radius:24px 22px 22px 12px !important; }
.truck-cab { height:156px !important; bottom:70px !important; }
.truck-nose { height:86px !important; bottom:70px !important; }
.truck-light { bottom:112px !important; }
.truck-grill { bottom:104px !important; }
.wheel { width:104px !important; height:104px !important; bottom:20px !important; animation-duration:.82s !important; }
.truck-shadow { bottom:6px !important; height:34px !important; }
.truck-top-port { left:52%; bottom:218px !important; height:10px !important; }
.brand-decal { font-size:36px !important; right:74px !important; top:48px !important; }
.brand-decal b { width:64px !important; height:64px !important; }
.fleet-live { right:52% !important; bottom:24% !important; }
.air-packet {
  width:34px !important;
  height:34px !important;
  border-radius:6px !important;
  left:53% !important;
  bottom:224px !important;
  background:linear-gradient(135deg,#0ea5e9,#06d6e8) !important;
  box-shadow:0 0 20px rgba(6,214,232,.65), inset 0 0 0 1px rgba(255,255,255,.25) !important;
  transform-style:preserve-3d;
  animation: packetLiftFromTruck 3.2s cubic-bezier(.16,1,.3,1) infinite !important;
}
.air-packet::before {
  content:''; position:absolute; left:14px; top:0; bottom:0; width:5px;
  background:rgba(255,255,255,.36); border-radius:2px;
}
.air-packet::after {
  content:''; position:absolute; left:0; right:0; top:14px; height:5px;
  background:rgba(255,255,255,.30); border-radius:2px;
}
.air-packet.p2 { animation-delay:1s !important; }
.air-packet.p3 { animation-delay:2s !important; }
@keyframes packetLiftFromTruck {
  0%   { opacity:0; transform:translate(0,10px) scale(.45) rotate(0deg); }
  12%  { opacity:1; transform:translate(15px,-35px) scale(1) rotate(45deg); }
  52%  { opacity:1; transform:translate(-30px,-145px) scale(.9) rotate(145deg); }
  82%  { opacity:.9; transform:translate(-92px,-220px) scale(.72) rotate(245deg); }
  100% { opacity:0; transform:translate(-130px,-255px) scale(.42) rotate(360deg); }
}
.hero-fleet-card { transform:scale(.92); }

#network .map-container {
  height: 680px !important;
  background:linear-gradient(180deg,#f8f5f2 0%,#efeae5 100%) !important;
  border:none !important;
  box-shadow:0 30px 90px rgba(0,0,0,.32) !important;
}
#network .map-container canvas { display:none !important; }
.network-globe-stage {
  position:absolute; inset:0; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  background:radial-gradient(circle at 48% 45%, rgba(255,255,255,.9), rgba(240,236,232,.94) 42%, rgba(230,225,220,.9) 70%);
}
.network-orbit-map {
  position:relative;
  width:min(76vw,980px);
  aspect-ratio:1/1;
  border-radius:50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,1), rgba(234,235,235,.92) 31%, rgba(198,202,205,.76) 61%, rgba(245,242,238,.96) 74%),
    linear-gradient(120deg,rgba(255,255,255,.92),rgba(214,218,222,.7));
  box-shadow:inset -55px -60px 90px rgba(94,108,120,.24), inset 35px 40px 80px rgba(255,255,255,.92), 0 35px 70px rgba(52,48,43,.22);
  transform:translateY(18px);
}
.network-orbit-map::before {
  content:''; position:absolute; inset:5%; border-radius:50%; opacity:.78;
  background:
    linear-gradient(0deg, transparent 49.7%, rgba(170,176,182,.38) 50%, transparent 50.3%),
    linear-gradient(90deg, transparent 49.7%, rgba(170,176,182,.32) 50%, transparent 50.3%),
    repeating-linear-gradient(90deg, transparent 0 10%, rgba(160,166,170,.20) 10.2% 10.35%, transparent 10.5% 20%),
    repeating-linear-gradient(0deg, transparent 0 12%, rgba(160,166,170,.20) 12.2% 12.35%, transparent 12.5% 24%),
    radial-gradient(ellipse at 57% 35%, rgba(255,255,255,.9) 0 8%, transparent 8.5%),
    radial-gradient(ellipse at 47% 43%, rgba(255,255,255,.8) 0 14%, transparent 14.5%),
    radial-gradient(ellipse at 55% 58%, rgba(255,255,255,.75) 0 13%, transparent 13.5%),
    radial-gradient(ellipse at 34% 64%, rgba(255,255,255,.62) 0 10%, transparent 10.5%);
}
.network-route-svg { position:absolute; inset:0; width:100%; height:100%; overflow:visible; }
.network-route-line {
  fill:none; stroke:#7c3cff; stroke-width:3; stroke-dasharray:10 8;
  filter:drop-shadow(0 0 12px rgba(124,60,255,.6));
  animation:dashMove 2.8s linear infinite;
}
.network-node {
  position:absolute; width:18px; height:18px; border-radius:50%;
  background:#7c3cff; border:5px solid #fff;
  box-shadow:0 0 0 8px rgba(124,60,255,.18), 0 0 28px rgba(124,60,255,.85);
  z-index:4;
}
.n-lagos { left:37%; top:56%; } .n-enugu{left:55%;top:66%;} .n-london{left:64%;top:28%;} .n-dubai{left:80%;top:50%;} .n-ny{left:18%;top:34%;}
.network-place-card {
  position:absolute; z-index:6; display:flex; align-items:center; gap:10px;
  background:white; color:#111827; padding:13px 18px; border-radius:14px;
  box-shadow:0 18px 38px rgba(43,39,34,.18); font-weight:800; font-size:16px; white-space:nowrap;
  animation:cardFloat 4s ease-in-out infinite;
}
.network-place-card.ny{left:4%;top:31%;}.network-place-card.london{left:66%;top:20%;}.network-place-card.dubai{left:82%;top:47%;}.network-place-card.lagos{left:25%;top:57%;}.network-place-card.enugu{left:60%;top:68%;}
.network-cargo-cube {
  position:absolute; left:47%; top:49%; width:80px; height:80px; z-index:7;
  transform-style:preserve-3d; transform:rotateX(-18deg) rotateY(34deg);
  filter:drop-shadow(0 0 38px rgba(124,60,255,.9)); animation:cubePulse 2.6s ease-in-out infinite;
}
.network-cargo-cube span { position:absolute; inset:0; border-radius:8px; background:linear-gradient(135deg,#7c3cff,#5020d8); border:1px solid rgba(255,255,255,.28); }
.network-cargo-cube .front { transform:translateZ(40px); display:grid; place-items:center; color:#fff; font-family:Syne; font-weight:900; }
.network-cargo-cube .right { transform:rotateY(90deg) translateZ(40px); filter:brightness(.75); }
.network-cargo-cube .top { transform:rotateX(90deg) translateZ(40px); filter:brightness(1.25); }
.network-packet {
  position:absolute; width:26px; height:26px; border-radius:6px; z-index:8;
  background:linear-gradient(135deg,#7c3cff,#06d6e8); box-shadow:0 0 20px rgba(124,60,255,.7);
  animation:networkPacketTravel 5.2s linear infinite;
}
.network-packet::before { content:'';position:absolute;left:11px;top:0;bottom:0;width:4px;background:rgba(255,255,255,.35); }
.network-packet::after { content:'';position:absolute;left:0;right:0;top:11px;height:4px;background:rgba(255,255,255,.32); }
.network-packet.p1 { left:48%; top:50%; animation-delay:0s; }
.network-packet.p2 { left:48%; top:50%; animation-delay:1.7s; }
.network-packet.p3 { left:48%; top:50%; animation-delay:3.4s; }
@keyframes networkPacketTravel {
  0% { opacity:0; transform:translate(0,0) scale(.6) rotate(0deg); }
  10% { opacity:1; }
  35% { transform:translate(-290px,-150px) scale(.9) rotate(120deg); }
  65% { transform:translate(275px,-210px) scale(.9) rotate(240deg); }
  90% { opacity:1; transform:translate(360px,30px) scale(.75) rotate(330deg); }
  100% { opacity:0; transform:translate(390px,45px) scale(.55) rotate(360deg); }
}
#network .map-overlay { top:28px; left:28px; }
#network .map-stat { background:rgba(255,255,255,.86) !important; color:#111827; box-shadow:0 14px 35px rgba(30,26,20,.12); }
#network .map-stat-label { color:#667085 !important; }
@media (max-width:1100px){
  #hero { grid-template-columns:1fr !important; }
  .hero-content { padding:110px 24px 20px !important; }
  h1.hero-title { font-size:clamp(2.7rem,9vw,4rem) !important; }
  #hero-right { height:520px !important; }
  .real-truck { width:min(112vw,760px) !important; right:-44% !important; }
}