/* ==========================================================================
   SwiftPikup marketing site — consolidated stylesheet
   Replaces: preview-design.css, marketing-bridge.css, site.css,
             marketing-pages.css, marketing-system.css
   Organized: tokens -> reset -> typography -> nav -> buttons -> hero ->
              shared components -> homepage sections -> secondary .sp-*
              page system -> footer -> responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* surfaces */
  --sp-bg: #020408;
  --sp-bg-alt: #0a0f1a;
  --sp-surface: #0d1520;
  --sp-surface-2: #111827;
  --sp-surface-1: #070b12;

  /* text */
  --sp-text: #f7fafc;
  --sp-muted: #d5deea;
  --sp-muted-2: #b6c3d6;

  /* brand */
  --sp-blue: #0ea5e9;
  --sp-cyan: #06d6e8;
  --sp-purple: #8b5cf6;
  --sp-success: #22c55e;

  /* glows */
  --sp-glow-blue: rgba(14, 165, 233, 0.15);
  --sp-glow-cyan: rgba(6, 214, 232, 0.2);
  --sp-glow-purple: rgba(139, 92, 246, 0.12);

  /* borders / radii */
  --sp-border: rgba(255, 255, 255, 0.08);
  --sp-radius: 16px;
  --sp-radius-sm: 12px;
  --sp-space: 8px;

  /* type */
  --sp-font: 'Outfit', system-ui, sans-serif;
  --sp-display: 'Syne', 'Outfit', system-ui, sans-serif;
  --sp-mono: 'DM Mono', ui-monospace, monospace;
  --sp-text-sm: 0.8125rem;
  --sp-text-base: 0.9375rem;
  --sp-text-lg: 1.0625rem;
  --sp-fs-label: 0.7rem;
  --sp-fs-small: 0.875rem;

  /* layout */
  --sp-nav-h: 64px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--sp-bg);
  color: var(--sp-text);
  font-family: var(--sp-font);
  font-weight: 400;
  font-size: var(--sp-text-base);
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: auto;
}

img {
  max-width: 100%;
}

/* anchor-target offset so fixed nav doesn't cover in-page sections */
#flow,
#ai-section,
#api-section,
#network,
#drivers,
#app-section,
#testimonials,
#pricing,
#faq,
#cta-section,
#hero {
  scroll-margin-top: 88px;
}

.sp-marketing a:focus-visible,
.sp-marketing button:focus-visible,
.sp-marketing summary:focus-visible,
.cta-primary:focus-visible,
.cta-secondary:focus-visible,
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.sp-btn:focus-visible {
  outline: 2px solid var(--sp-cyan);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   3. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.sp-container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}
.sp-container--narrow {
  width: min(720px, 92vw);
}

.sp-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 2000;
  background: linear-gradient(90deg, var(--sp-cyan), var(--sp-purple));
  box-shadow: 0 0 12px var(--sp-glow-cyan);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   4. NAV
   -------------------------------------------------------------------------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 40px;
  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: var(--sp-display);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: white;
  transform: translateY(-4px);
}
.nav-logo img,
.logo-mark {
  transform: translateY(1px);
}
.logo-mark {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--sp-blue), var(--sp-cyan));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(6, 214, 232, 0.4);
  color: #000;
}
.nav-logo img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--sp-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: white;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-signin {
  color: var(--sp-text);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  margin-right: 4px;
  padding: 8px 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-signin:hover {
  color: #fff;
}

.sp-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.sp-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--sp-text);
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn-ghost,
.btn-primary,
.cta-primary,
.cta-secondary,
.sp-btn {
  text-decoration: none;
}

.btn-ghost {
  background: none;
  border: 1px solid var(--sp-border);
  color: var(--sp-text);
  padding: 7px 16px;
  border-radius: 8px;
  font-family: var(--sp-font);
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
}
.btn-ghost:hover {
  border-color: rgba(14, 165, 233, 0.25);
  color: var(--sp-cyan);
}
.btn-primary {
  background: linear-gradient(135deg, var(--sp-blue), var(--sp-cyan));
  border: none;
  color: #000;
  padding: 7px 16px;
  border-radius: 8px;
  font-family: var(--sp-font);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
  display: inline-flex;
  align-items: center;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.5);
}

.cta-primary {
  background: linear-gradient(135deg, var(--sp-blue), var(--sp-cyan));
  color: #000;
  border: none;
  padding: 11px 22px;
  border-radius: 9px;
  font-family: var(--sp-font);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.35);
  display: inline-flex;
  align-items: center;
}
.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: 11px 22px;
  border-radius: 9px;
  font-family: var(--sp-font);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.25s;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
}
.cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

/* Secondary .sp-* page button system */
.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.15rem;
  border-radius: 8px;
  font-family: var(--sp-font);
  font-weight: 600;
  font-size: var(--sp-text-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.sp-btn:hover {
  transform: translateY(-1px);
}
.sp-btn--primary {
  background: linear-gradient(135deg, var(--sp-blue), var(--sp-cyan));
  color: #020408;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.28);
}
.sp-btn--glass {
  background: rgba(255, 255, 255, 0.05);
  color: var(--sp-text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
}
.sp-btn--ghost {
  background: transparent;
  color: var(--sp-text);
  border: 1px solid var(--sp-border);
  font-weight: 500;
}
.sp-btn--lg {
  padding: 0.65rem 1.35rem;
  font-size: var(--sp-text-base);
  border-radius: 10px;
}
.sp-btn--sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
}
.sp-btn--block {
  width: 100%;
  justify-content: center;
}

.store-badge-link {
  display: inline-flex;
  min-height: 44px;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   6. HERO (homepage) — side-by-side copy + framed media
   -------------------------------------------------------------------------- */
#hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(380px, 1.15fr);
  gap: clamp(18px, 2vw, 32px);
  align-items: center;
  min-height: 0;
  max-width: none;
  width: 100%;
  margin: 0;
  overflow: visible;
  padding: 84px 40px 20px;
  background: var(--sp-bg);
  box-sizing: border-box;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0;
  align-self: center;
  max-width: none;
  width: 100%;
}

.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: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--sp-cyan);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--sp-cyan);
  border-radius: 50%;
  animation: sp-pulse 2s infinite;
}
@keyframes sp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

h1.hero-title {
  font-family: var(--sp-display);
  font-weight: 600;
  font-size: clamp(2.15rem, 3.8vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: 14px;
  color: var(--sp-text);
}
.hero-title__accent {
  background: linear-gradient(135deg, #a8d8f0 0%, var(--sp-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  font-family: var(--sp-font);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 34ch;
  margin-bottom: 22px;
  color: var(--sp-muted);
}

.hero-ctas {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--sp-radius);
  border: 1px solid var(--sp-border);
  background: rgba(13, 21, 32, 0.9);
  color: var(--sp-muted);
  font-size: 0.82rem;
}
.trust-pill__val {
  color: #fff;
  font-family: var(--sp-display);
  font-weight: 700;
}

/* Hero right: framed media panel (not full-bleed) */
#hero-right {
  position: relative;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: #070b14;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(6, 214, 232, 0.06),
    0 20px 48px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(6, 214, 232, 0.07);
}
#hero-right::before {
  display: none;
}
.hero-logistics-stage,
.hero-logistics-stage--video {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #070b14;
}
.hero-video-wrap {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #070b14;
}
.hero-truck-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}
.hero-truck-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  background: transparent;
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.hero-video-wrap.is-playing .hero-truck-video,
.hero-truck-video.is-playing {
  opacity: 1;
}
.hero-video-wrap.is-playing .hero-truck-poster {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.hero-stage-fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  /* Light vignette only — heavy soft fades made the media look blurry */
  background:
    linear-gradient(180deg, rgba(2, 4, 8, 0.2) 0%, transparent 16%, transparent 78%, rgba(2, 4, 8, 0.45) 100%);
}
.hero-fleet-chip {
  position: absolute;
  z-index: 7;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 14, 26, 0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  color: #d7deea;
  font-size: 0.78rem;
}
.hero-fleet-chip strong {
  font-family: var(--sp-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}
.hero-fleet-chip__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sp-success);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: sp-fleet-pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes sp-fleet-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-truck-video { display: none !important; }
  .hero-truck-poster { opacity: 1 !important; z-index: 2; }
  .marquee-track { animation: none !important; }
}

/* --------------------------------------------------------------------------
   7. MARQUEE — feature ticker under hero
   -------------------------------------------------------------------------- */
.marquee-wrap {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #060a12;
  margin: 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: sp-marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes sp-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  color: #a8b3c7;
  font-family: var(--sp-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
  font-weight: 500;
}
.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--sp-cyan);
  border-radius: 1px;
  box-shadow: 0 0 10px rgba(6, 214, 232, 0.55);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   8. SECTION HEADERS & SPLIT LAYOUT
   -------------------------------------------------------------------------- */
section {
  padding: 72px 40px;
  position: relative;
}

.section-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sp-cyan);
  margin-bottom: 12px;
  font-family: var(--sp-mono);
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--sp-fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sp-cyan);
  font-family: var(--sp-mono);
  margin-bottom: calc(var(--sp-space) * 2);
}
.section-kicker span {
  width: 18px;
  height: 2px;
  background: var(--sp-cyan);
  display: inline-block;
  border-radius: 2px;
}

h2.section-title {
  font-family: var(--sp-display);
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 14px;
}
.section-desc {
  color: var(--sp-muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  max-width: 560px;
}
.section-intro-wide {
  max-width: none;
  margin: 0 0 28px;
}
.section-intro-wide--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-intro-wide--center .section-kicker {
  justify-content: center;
}
.section-intro-wide--center .section-title {
  max-width: 18ch;
}
.section-intro-wide .section-desc {
  max-width: 60ch;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(380px, 1.15fr);
  gap: clamp(18px, 2vw, 32px);
  align-items: center;
  max-width: none;
  width: 100%;
  margin: 0;
}
.section-split__main {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}
.section-split__intro .section-desc {
  max-width: 38ch;
  margin-bottom: 0;
}
.section-split__intro .section-title {
  max-width: 16ch;
}
.section-split__media {
  position: relative;
  min-width: 0;
  width: 100%;
}
.section-split__media .terminal {
  height: auto;
  min-height: clamp(380px, 50vh, 520px);
  margin: 0;
}

/* Shared visual frame — same language as #hero-right */
.visual-panel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #070b14;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(6, 214, 232, 0.06),
    0 20px 48px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(6, 214, 232, 0.07);
}
.visual-panel__chip {
  position: absolute;
  z-index: 7;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 14, 26, 0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  color: #d7deea;
  font-size: 0.78rem;
}
.visual-panel__chip strong {
  font-family: var(--sp-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}
.visual-panel__chip--top {
  top: 18px;
  bottom: auto;
  left: 18px;
}
.section-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.visual-panel--pad {
  padding: 0;
}
.terminal--flush {
  border: none;
  border-radius: 0;
  box-shadow: none;
  min-height: clamp(380px, 50vh, 520px);
  background: transparent;
}
.phone-visual-panel {
  min-height: clamp(480px, 58vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 20px 64px;
}
.driver-visual-panel {
  min-height: clamp(420px, 52vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.driver-viz-area {
  position: relative;
  height: auto;
  min-height: 0;
  display: block;
  width: 100%;
}
.pricing-visual-panel {
  min-height: clamp(380px, 48vh, 520px);
  display: flex;
  align-items: stretch;
}
.pricing-card--panel {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 40px 36px 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pricing-card__meta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--sp-muted);
  font-size: 0.9rem;
}
.pricing-card__meta span {
  color: #fff;
  font-family: var(--sp-display);
  font-weight: 700;
  margin-right: 6px;
}
.faq-grid--panel {
  max-width: none;
  margin: 0;
  width: 100%;
}
.cta-visual-panel {
  max-width: none;
  width: 100%;
  padding: 64px 40px;
  text-align: center;
}
.cta-visual-panel .cta-title,
.cta-visual-panel .cta-sub {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   9. FLOW SECTION ("How it works")
   -------------------------------------------------------------------------- */
#flow {
  background: var(--sp-bg-alt);
}
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow-step {
  display: flex;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--sp-border);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.flow-step:last-child {
  border-bottom: none;
}
.flow-step.active .step-num {
  color: var(--sp-cyan);
  border-color: var(--sp-cyan);
}
.flow-step.active .step-title {
  color: white;
}
.step-num {
  font-family: var(--sp-mono);
  font-size: 0.75rem;
  color: var(--sp-muted);
  border: 1px solid var(--sp-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: var(--sp-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 6px;
  transition: color 0.3s;
}
.step-desc {
  font-size: 0.9375rem;
  color: var(--sp-muted);
  line-height: 1.6;
}
.flow-visual,
.ai-viz {
  position: relative;
  height: clamp(420px, 52vh, 560px);
  width: 100%;
  background: linear-gradient(135deg, #070b14 0%, #0d1520 100%);
  border-radius: 0;
  border: none;
  overflow: hidden;
  box-shadow: none;
}
.flow-visual canvas,
.ai-viz canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* --------------------------------------------------------------------------
   10. AI SECTION
   -------------------------------------------------------------------------- */
#ai-section {
  background: var(--sp-bg);
}
.ai-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
  z-index: 0;
}
.ai-card {
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  padding: 18px 18px 16px;
  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(--sp-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;
}
.mkt-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--sp-radius-sm);
  display: grid;
  place-items: center;
  background: rgba(6, 214, 232, 0.12);
  color: var(--sp-cyan);
  border: 1px solid rgba(6, 214, 232, 0.22);
}
.ai-card-icon {
  margin-bottom: 12px;
}
.api-feat-icon,
.benefit-icon,
.app-feat-icon {
  flex-shrink: 0;
  margin-bottom: 0;
}
.ai-card-title {
  font-family: var(--sp-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.ai-card-desc {
  font-size: 0.8125rem;
  color: var(--sp-muted);
  line-height: 1.5;
}

.metrics-bar {
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  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(--sp-border);
}
.metric-row:last-child {
  border-bottom: none;
}
.metric-name {
  font-size: 0.8rem;
  color: var(--sp-muted-2);
}
.metric-val {
  font-family: var(--sp-mono);
  font-size: 0.875rem;
  color: var(--sp-cyan);
}
.metric-bar-track {
  flex: 1;
  height: 3px;
  background: var(--sp-border);
  border-radius: 4px;
  margin: 0 16px;
  overflow: hidden;
}
.metric-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--sp-blue), var(--sp-cyan));
  transform-origin: left;
  animation: sp-bar-fill 2s ease-out forwards;
}
@keyframes sp-bar-fill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* --------------------------------------------------------------------------
   11. API SECTION / TERMINAL
   -------------------------------------------------------------------------- */
#api-section {
  background: linear-gradient(135deg, var(--sp-bg) 0%, var(--sp-bg-alt) 100%);
}
.api-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
  z-index: 0;
}
.api-feat {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  transition: all 0.3s;
  align-items: flex-start;
}
.api-feat:hover {
  border-color: rgba(14, 165, 233, 0.2);
  transform: translateY(-2px);
}
.api-feat-title {
  font-family: var(--sp-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.api-feat-desc {
  font-size: 0.8125rem;
  color: var(--sp-muted);
  line-height: 1.45;
}

.terminal {
  background: #050a12;
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  overflow: hidden;
  font-family: var(--sp-mono);
  font-size: 0.8rem;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--sp-border);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--sp-bg-alt);
  border-bottom: 1px solid var(--sp-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(--sp-cyan); }
.t-str { color: #a3e635; }
.t-num { color: #f97316; }
.t-punc { color: var(--sp-muted-2); }
.t-method { color: var(--sp-purple); }
.t-label { color: var(--sp-blue); }
.t-response {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--sp-border);
}
.t-success { color: var(--sp-success); }

/* --------------------------------------------------------------------------
   12. NETWORK MAP
   -------------------------------------------------------------------------- */
#network {
  background: var(--sp-bg-alt);
}
.map-container {
  position: relative;
  margin-top: 28px;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  border-radius: 18px;
  overflow: hidden;
  height: clamp(520px, 58vh, 680px);
  background: linear-gradient(180deg, #f8f5f2 0%, #efeae5 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(6, 214, 232, 0.06),
    0 20px 48px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(6, 214, 232, 0.07);
}
.map-overlay {
  position: absolute;
  top: 28px;
  left: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}
.map-stat {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  border-radius: 10px;
  padding: 10px 16px;
  box-shadow: 0 14px 35px rgba(30, 26, 20, 0.12);
}
.map-stat-label {
  font-size: 0.65rem;
  color: #667085;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.map-stat-val {
  font-family: var(--sp-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--sp-cyan);
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.live-dot {
  width: 5px;
  height: 5px;
  background: var(--sp-success);
  border-radius: 50%;
  animation: sp-pulse 1.5s infinite;
}

.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, 0.9), rgba(240, 236, 232, 0.94) 42%, rgba(230, 225, 220, 0.9) 70%);
}
.network-orbit-map {
  position: relative;
  width: min(68%, 700px);
  height: auto;
  max-width: min(700px, 92%);
  max-height: 90%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 1), rgba(234, 235, 235, 0.92) 31%, rgba(198, 202, 205, 0.76) 61%, rgba(245, 242, 238, 0.96) 74%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(214, 218, 222, 0.7));
  box-shadow: inset -55px -60px 90px rgba(94, 108, 120, 0.24), inset 35px 40px 80px rgba(255, 255, 255, 0.92), 0 35px 70px rgba(52, 48, 43, 0.22);
  transform: none;
}
.network-orbit-map::before {
  content: '';
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  opacity: 0.78;
  background:
    linear-gradient(0deg, transparent 49.7%, rgba(170, 176, 182, 0.38) 50%, transparent 50.3%),
    linear-gradient(90deg, transparent 49.7%, rgba(170, 176, 182, 0.32) 50%, transparent 50.3%),
    repeating-linear-gradient(90deg, transparent 0 10%, rgba(160, 166, 170, 0.2) 10.2% 10.35%, transparent 10.5% 20%),
    repeating-linear-gradient(0deg, transparent 0 12%, rgba(160, 166, 170, 0.2) 12.2% 12.35%, transparent 12.5% 24%),
    radial-gradient(ellipse at 57% 35%, rgba(255, 255, 255, 0.9) 0 8%, transparent 8.5%),
    radial-gradient(ellipse at 47% 43%, rgba(255, 255, 255, 0.8) 0 14%, transparent 14.5%),
    radial-gradient(ellipse at 55% 58%, rgba(255, 255, 255, 0.75) 0 13%, transparent 13.5%),
    radial-gradient(ellipse at 34% 64%, rgba(255, 255, 255, 0.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: var(--sp-blue);
  stroke-width: 3;
  stroke-dasharray: 10 8;
  filter: drop-shadow(0 0 12px rgba(14, 165, 233, 0.55));
  animation: sp-dash-move 2.8s linear infinite;
}
@keyframes sp-dash-move {
  to { stroke-dashoffset: -80; }
}
.network-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sp-cyan);
  border: 5px solid #fff;
  box-shadow: 0 0 0 8px rgba(6, 214, 232, 0.18), 0 0 28px rgba(6, 214, 232, 0.55);
  z-index: 4;
}
.n-lagos { left: 22%; top: 38%; }
.n-enugu { left: 68%; top: 36%; }
.n-ph { left: 72%; top: 68%; }
.n-imo { left: 58%; top: 58%; }
.n-anambra { left: 48%; top: 42%; }
.n-aba { left: 64%; top: 74%; }
.n-ebonyi { left: 76%; top: 48%; }
.n-delta { left: 34%; top: 62%; }
.network-place-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #111827;
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(43, 39, 34, 0.18);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  animation: sp-card-float 4s ease-in-out infinite;
}
@keyframes sp-card-float {
  50% { transform: translateY(-7px); }
}
.network-place-card.lagos { left: 8%; top: 30%; }
.network-place-card.enugu { left: 72%; top: 26%; }
.network-place-card.ph { left: 70%; top: 78%; }
.network-place-card.imo { left: 52%; top: 66%; }
.network-place-card.anambra { left: 30%; top: 44%; }
.network-place-card.aba { left: 48%; top: 82%; }
.network-place-card.ebonyi { left: 78%; top: 52%; }
.network-place-card.delta { left: 14%; top: 68%; }
.flag-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sp-blue), var(--sp-cyan));
  box-shadow: 0 0 10px rgba(6, 214, 232, 0.6);
  flex-shrink: 0;
}
.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(6, 214, 232, 0.7));
  animation: sp-cube-pulse 2.6s ease-in-out infinite;
}
@keyframes sp-cube-pulse {
  50% { transform: rotateX(-14deg) rotateY(48deg) translateY(-10px); }
}
.network-cargo-cube span {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sp-blue), #0284c7);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.network-cargo-cube .front {
  transform: translateZ(40px);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--sp-display);
  font-weight: 900;
}
.network-cargo-cube .right {
  transform: rotateY(90deg) translateZ(40px);
  filter: brightness(0.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, var(--sp-blue), var(--sp-cyan));
  box-shadow: 0 0 20px rgba(6, 214, 232, 0.65);
  animation: sp-packet-travel 5.2s linear infinite;
}
.network-packet::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255, 255, 255, 0.35);
}
.network-packet::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 11px;
  height: 4px;
  background: rgba(255, 255, 255, 0.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 sp-packet-travel {
  0% { opacity: 0; transform: translate(0, 0) scale(0.6) rotate(0deg); }
  10% { opacity: 1; }
  35% { transform: translate(-290px, -150px) scale(0.9) rotate(120deg); }
  65% { transform: translate(275px, -210px) scale(0.9) rotate(240deg); }
  90% { opacity: 1; transform: translate(360px, 30px) scale(0.75) rotate(330deg); }
  100% { opacity: 0; transform: translate(390px, 45px) scale(0.55) rotate(360deg); }
}

/* --------------------------------------------------------------------------
   13. TESTIMONIALS
   -------------------------------------------------------------------------- */
#testimonials {
  background: var(--sp-bg);
  overflow: hidden;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: none;
  margin: 28px 0 0;
  width: 100%;
}
.tcard {
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  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(--sp-purple), transparent);
}
.tcard-quote {
  font-size: 1.75rem;
  line-height: 1;
  color: var(--sp-purple);
  margin-bottom: 12px;
  opacity: 0.55;
}
.tcard-text {
  font-size: 0.9375rem;
  color: var(--sp-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.tcard-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(6, 214, 232, 0.14);
  color: var(--sp-cyan);
  font-family: var(--sp-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
}
.tcard-name {
  font-family: var(--sp-display);
  font-weight: 700;
  font-size: 0.9rem;
}
.tcard-role {
  font-size: 0.8125rem;
  color: var(--sp-muted);
}

/* --------------------------------------------------------------------------
   14. DRIVERS
   -------------------------------------------------------------------------- */
#drivers {
  background: linear-gradient(135deg, var(--sp-bg-alt), var(--sp-bg));
}
.drivers-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(380px, 1.15fr);
  gap: clamp(18px, 2vw, 32px);
  align-items: center;
  max-width: none;
  margin: 0;
  width: 100%;
}
.drivers-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.drivers-copy .section-title {
  max-width: 14ch;
}
.drivers-copy .section-desc {
  margin-bottom: 16px;
}
.drivers-copy .section-trust {
  margin-bottom: 24px;
}
.drivers-copy .benefit-cards {
  margin-top: 0;
  position: relative;
  z-index: 0;
}
.drivers-cta {
  margin-top: 24px;
  display: inline-flex;
  text-decoration: none;
}
.benefit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  clear: both;
}
.benefit-card {
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  padding: 18px;
  transition: all 0.3s;
}
.benefit-card:hover {
  border-color: rgba(6, 214, 232, 0.2);
  transform: translateY(-3px);
}
.benefit-icon {
  margin-bottom: 12px;
}
.benefit-title {
  font-family: var(--sp-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.benefit-desc {
  font-size: 0.8125rem;
  color: var(--sp-muted);
  line-height: 1.45;
}

.driver-viz-area {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.driver-avatar-wrap {
  position: relative;
}
.driver-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sp-blue), var(--sp-cyan));
  border: 1px solid rgba(14, 165, 233, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: transparent;
  position: relative;
  z-index: 2;
  animation: sp-float 4s ease-in-out infinite;
}
.driver-circle::after {
  content: 'SP';
  font-size: 1.35rem;
  font-family: var(--sp-display);
  font-weight: 800;
  color: #041018;
}
@keyframes sp-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: sp-spin 30s linear infinite;
}
.driver-ring-2 {
  position: absolute;
  inset: -60px;
  border: 1px dashed rgba(139, 92, 246, 0.1);
  border-radius: 50%;
  animation: sp-spin 50s linear infinite reverse;
}
@keyframes sp-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(--sp-border);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.8rem;
  white-space: nowrap;
  z-index: 10;
}
.section-split__main > .section-trust + .flow-steps,
.section-split__main > .section-trust + .ai-cards,
.section-split__main > .section-trust + .api-features,
.section-split__main > .section-trust + .hero-ctas {
  margin-top: 0;
}
.section-intro-wide > .section-trust {
  margin-bottom: 0;
  margin-top: 18px;
}
.section-intro-wide + .map-container,
.section-intro-wide + .testimonial-grid {
  margin-top: 28px;
}
/* Keep right-panel float badges clipped so they cannot cover left copy */
.driver-visual-panel,
.visual-panel {
  overflow: hidden;
}
.float-badge.b2 { bottom: 48px; right: 18px; }
.float-badge.b3 { bottom: 48px; left: 18px; }
.badge-val {
  font-family: var(--sp-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--sp-cyan);
}
.badge-lab {
  font-size: 0.65rem;
  color: var(--sp-muted);
}

/* --------------------------------------------------------------------------
   15. APP SECTION (phone mockup)
   -------------------------------------------------------------------------- */
#app-section {
  background: var(--sp-bg);
}
.app-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(380px, 1.15fr);
  gap: clamp(18px, 2vw, 32px);
  align-items: center;
  max-width: none;
  margin: 0;
  width: 100%;
}
.app-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.app-copy .section-title {
  max-width: 14ch;
}
.app-copy__lead {
  max-width: 38ch;
  margin: 0 0 16px;
}
.app-copy .section-trust {
  margin-bottom: 24px;
}
.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  min-height: 520px;
}
.phone-wrap {
  transform: rotateY(-8deg) rotateX(5deg);
  transition: transform 0.5s ease;
}
.phone-wrap:hover {
  transform: rotateY(0deg) rotateX(0deg);
}
.phone-frame {
  width: 280px;
  background: var(--sp-bg-alt);
  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(--sp-bg);
  border-radius: 28px;
  overflow: hidden;
  height: 500px;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: var(--sp-bg-alt);
  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: var(--sp-display);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.pcard {
  background: rgba(13, 21, 32, 0.8);
  border: 1px solid var(--sp-border);
  border-radius: 12px;
  padding: 12px;
  font-size: 0.7rem;
}
.pcard--compact {
  margin-top: auto;
}
.pcard-label {
  color: var(--sp-muted);
  margin-bottom: 4px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pcard-val {
  font-family: var(--sp-display);
  font-weight: 700;
}
.phone-map {
  position: relative;
  flex: 1;
  min-height: 160px;
  border-radius: 14px;
  border: 1px solid rgba(14, 165, 233, 0.22);
  background:
    radial-gradient(circle at 30% 70%, rgba(6, 214, 232, 0.18), transparent 42%),
    radial-gradient(circle at 70% 28%, rgba(14, 165, 233, 0.16), transparent 40%),
    linear-gradient(160deg, #0b1524, #07101c 60%, #050b14);
  overflow: hidden;
}
.phone-map__route {
  position: absolute;
  inset: 28% 18% 24% 22%;
  border: 2px dashed rgba(6, 214, 232, 0.55);
  border-radius: 40% 60% 45% 55%;
  opacity: 0.85;
}
.phone-map__pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sp-cyan);
  box-shadow: 0 0 0 6px rgba(6, 214, 232, 0.2);
}
.phone-map__pin--a { left: 22%; top: 68%; }
.phone-map__pin--b { right: 20%; top: 24%; background: var(--sp-blue); }
.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(--sp-border);
  color: var(--sp-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.app-tab.active {
  background: var(--sp-blue);
  color: white;
}
.app-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}
.app-feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.app-feat-icon {
  flex-shrink: 0;
}
.app-feat-title {
  font-family: var(--sp-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--sp-text);
}
.app-feat-desc {
  font-size: 0.8125rem;
  color: var(--sp-muted);
  line-height: 1.45;
}
.store-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* --------------------------------------------------------------------------
   16. PRICING
   -------------------------------------------------------------------------- */
.pricing-card {
  border-radius: var(--sp-radius);
  border: 1px solid var(--sp-border);
  background: var(--sp-surface);
  padding: calc(var(--sp-space) * 4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.pricing-card__label {
  color: var(--sp-muted-2);
  font-size: 0.8rem;
  margin-bottom: 8px;
}
.pricing-card__amount {
  font-family: var(--sp-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}
.pricing-card__note {
  color: var(--sp-muted);
  margin-top: 8px;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   17. FAQ
   -------------------------------------------------------------------------- */
.faq-grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border-radius: var(--sp-radius);
  border: 1px solid var(--sp-border);
  background: var(--sp-surface);
  padding: 4px 18px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-family: var(--sp-display);
  font-weight: 700;
  color: #fff;
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item p {
  color: var(--sp-muted);
  padding: 0 0 16px;
  line-height: 1.65;
  margin: 0;
  font-size: 0.9375rem;
}

/* --------------------------------------------------------------------------
   18. CTA SECTION
   -------------------------------------------------------------------------- */
#cta-section {
  background: var(--sp-bg-alt);
  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-panel {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--sp-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-sub {
  color: var(--sp-muted);
  font-size: 1.05rem;
  max-width: 42ch;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

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

/* --------------------------------------------------------------------------
   20. SECONDARY PAGES — mkt-page system (about / contact / delivery-partner /
       privacy / terms / partner-success)
   -------------------------------------------------------------------------- */
.mkt-page {
  padding: 110px 0 72px;
  background: var(--sp-bg);
  min-height: 70vh;
}
.mkt-page__wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.mkt-page__eyebrow {
  font-family: var(--sp-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sp-cyan);
  margin-bottom: 14px;
}
.mkt-page__title {
  font-family: var(--sp-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--sp-text);
  margin-bottom: 16px;
  max-width: 16ch;
}
.mkt-page__lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--sp-muted);
  max-width: 58ch;
  margin-bottom: 40px;
  font-weight: 400;
}
.mkt-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}
.mkt-card {
  background: rgba(13, 21, 32, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.mkt-card h3 {
  font-family: var(--sp-display);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #fff;
}
.mkt-card p,
.mkt-prose p,
.mkt-prose li {
  color: var(--sp-muted);
  line-height: 1.7;
  font-size: 0.98rem;
}
.mkt-prose {
  background: rgba(13, 21, 32, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px clamp(20px, 4vw, 40px);
  color: #cbd5e1;
  line-height: 1.75;
}
.mkt-prose h1,
.mkt-prose h2,
.mkt-prose h3,
.mkt-prose h4 {
  font-family: var(--sp-display);
  color: #f8fafc;
  margin: 1.4em 0 0.55em;
  letter-spacing: -0.02em;
}
.mkt-prose h1 {
  margin-top: 0;
  font-size: 1.8rem;
}
.mkt-prose a {
  color: var(--sp-cyan);
}
.mkt-prose ul {
  padding-left: 1.2rem;
  margin: 0.6rem 0 1rem;
}
.mkt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.mkt-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2e8f0;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 10px;
}
.mkt-link:hover {
  border-color: rgba(6, 214, 232, 0.35);
  background: rgba(6, 214, 232, 0.06);
  color: #fff;
}
.mkt-link span {
  color: var(--sp-muted-2);
  font-size: 0.82rem;
  display: block;
}
.mkt-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.mkt-benefit {
  background: rgba(13, 21, 32, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--sp-radius);
  padding: 22px;
  text-align: left;
}
.mkt-benefit__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--sp-radius-sm);
  display: grid;
  place-items: center;
  background: rgba(6, 214, 232, 0.12);
  color: var(--sp-cyan);
  font-family: var(--sp-display);
  font-weight: 800;
  margin-bottom: 14px;
}
.mkt-benefit h4 {
  font-family: var(--sp-display);
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.mkt-benefit p {
  color: var(--sp-muted-2);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}
.mkt-media {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--sp-bg-alt);
  object-fit: cover;
  max-height: 420px;
}
.mkt-empty {
  color: var(--sp-muted-2);
  font-size: 0.95rem;
  padding: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

/* --------------------------------------------------------------------------
   21. FORMS — mkt-form system (get-started / partner-request)
   -------------------------------------------------------------------------- */
.mkt-form-shell {
  padding: 110px 0 80px;
  background: radial-gradient(circle at 20% 0%, rgba(6, 214, 232, 0.08), transparent 40%), var(--sp-bg);
}
.mkt-form-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--sp-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.mkt-form-card__head {
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.25), rgba(6, 214, 232, 0.12));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mkt-form-card__head h1,
.mkt-form-card__head h2 {
  font-family: var(--sp-display);
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}
.mkt-form-card__head p {
  color: var(--sp-muted);
  margin: 0;
}
.mkt-form-card__body {
  padding: 28px 32px 36px;
}
.mkt-form-card label {
  display: block;
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.mkt-form-card .form-control,
.mkt-form-card input,
.mkt-form-card select,
.mkt-form-card textarea {
  width: 100%;
  background: var(--sp-surface-1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
  border-radius: var(--sp-radius-sm);
  padding: 12px 14px;
  font-family: inherit;
}
.mkt-form-card .form-control:focus,
.mkt-form-card input:focus,
.mkt-form-card select:focus,
.mkt-form-card textarea:focus {
  border-color: rgba(6, 214, 232, 0.55);
  box-shadow: 0 0 0 3px rgba(6, 214, 232, 0.15);
  outline: none;
}
.mkt-form-card .form-section-title {
  color: var(--sp-cyan);
  font-family: var(--sp-display);
  font-size: 1rem;
  margin: 18px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mkt-form-card .btn-primary,
.mkt-form-card button[type='submit'],
.mkt-form-card .submit-btn {
  background: linear-gradient(135deg, var(--sp-blue), var(--sp-cyan));
  border: none;
  color: #041018;
  font-weight: 700;
  border-radius: var(--sp-radius-sm);
  padding: 14px 22px;
  box-shadow: 0 10px 30px rgba(6, 214, 232, 0.25);
  cursor: pointer;
  font-family: var(--sp-font);
  font-size: 1rem;
}
.mkt-form-card .form-icon-wrapper i {
  color: var(--sp-cyan);
}
.mkt-form-card .required-asterisk,
.required-asterisk {
  color: #f87171;
}
.mkt-form-card .text-danger,
.text-danger {
  color: #f87171;
}
.mkt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mkt-form-group {
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   22. SECONDARY .sp-* PAGE SYSTEM (tracking / order-history / partial pages)
   -------------------------------------------------------------------------- */
.sp-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sp-cyan);
  margin: 0 0 0.65rem;
  font-family: var(--sp-mono);
}
.sp-lead {
  color: var(--sp-muted);
  font-size: var(--sp-text-base);
  font-weight: 400;
  line-height: 1.65;
  margin: 0;
  max-width: 40ch;
}
.sp-lead--center {
  margin: 0 auto;
  max-width: 480px;
}
.sp-muted {
  color: var(--sp-muted);
}

.sp-page-hero {
  padding: calc(var(--sp-nav-h) + 4rem) 24px 3rem;
  background: radial-gradient(circle at 70% 20%, rgba(6, 214, 232, 0.1), transparent 36%), var(--sp-bg);
}
.sp-page-hero--compact {
  padding-bottom: 2rem;
}
.sp-history-head h1 {
  margin: 0.5rem 0;
  font-family: var(--sp-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #fff;
  letter-spacing: -0.03em;
}

.sp-track-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.sp-track-card {
  background: var(--sp-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.sp-track-card__label {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sp-muted-2);
}
.sp-track-form {
  display: grid;
  gap: 1rem;
}
.sp-input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--sp-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--sp-surface-1);
  color: var(--sp-text);
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 0;
}
.sp-input:focus {
  outline: none;
  border-color: var(--sp-cyan);
  box-shadow: 0 0 0 3px rgba(6, 214, 232, 0.15);
}
.sp-track-card__help {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sp-border);
}
.sp-track-card__help h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}
.sp-track-card__help p {
  margin: 0;
  color: var(--sp-muted-2);
  font-size: 0.9rem;
}

.sp-alert {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.sp-alert--error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}
.sp-alert--success {
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: var(--sp-cyan);
}

.sp-section {
  padding: 4rem 24px 5rem;
  position: relative;
}
.sp-section--alt {
  background: linear-gradient(180deg, transparent, rgba(13, 21, 32, 0.55), transparent);
}
.sp-section__head {
  margin-bottom: 2.25rem;
  max-width: 560px;
}
.sp-section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 620px;
}
.sp-section h2,
.sp-section__head h2 {
  font-family: var(--sp-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.65rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
}

.sp-track-steps {
  display: grid;
  gap: 1rem;
}
.sp-track-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--sp-radius);
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
}
.sp-track-step__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--sp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  background: linear-gradient(135deg, var(--sp-blue), var(--sp-purple));
}
.sp-track-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}
.sp-track-step p {
  margin: 0;
  color: var(--sp-muted-2);
  font-size: 0.9rem;
}

.sp-timeline-card {
  padding: 2rem;
  border-radius: var(--sp-radius);
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
}
.sp-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sp-timeline__item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 1.75rem;
  border-left: 2px solid var(--sp-border);
  margin-left: 0.5rem;
}
.sp-timeline__item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}
.sp-timeline__dot {
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sp-cyan);
  box-shadow: 0 0 16px var(--sp-glow-cyan);
}
.sp-timeline__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}
.sp-timeline__body p {
  margin: 0 0 0.5rem;
  color: var(--sp-muted-2);
}
.sp-timeline__body time {
  font-size: 0.8rem;
  color: var(--sp-muted-2);
}

/* Logistics scene partial (pickup/drop animation) */
.sp-logistics-section {
  padding-top: 4rem;
}
.sp-logistics {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(200px, 2fr) minmax(140px, 1fr);
  gap: 1rem;
  align-items: stretch;
  min-height: 320px;
}
.sp-hub {
  padding: 1.25rem;
  border-radius: var(--sp-radius);
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.sp-hub--pickup.is-active,
.sp-logistics.is-loading .sp-hub--pickup {
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.12);
}
.sp-logistics.is-dropping .sp-hub--drop {
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow: 0 0 40px rgba(167, 139, 250, 0.12);
}
.sp-hub__badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--sp-cyan), var(--sp-blue));
  margin-bottom: 0.75rem;
}
.sp-hub h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}
.sp-hub p {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: var(--sp-muted-2);
}
.sp-hub__dock {
  flex: 1;
  min-height: 120px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed var(--sp-border);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.75rem;
}
.sp-packages {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  align-content: flex-end;
  width: 100%;
}
.sp-package {
  width: 28px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(145deg, #c4a574, #8b6914);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(12px) scale(0.6);
  transition: opacity 0.35s, transform 0.35s;
}
.sp-package.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.sp-package--ghost {
  opacity: 0.15;
  transform: scale(0.85);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--sp-border);
  box-shadow: none;
}
.sp-package--ghost.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  background: linear-gradient(145deg, #c4a574, #8b6914);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
.sp-logistics__lane {
  position: relative;
  min-height: 200px;
  border-radius: var(--sp-radius);
  background: linear-gradient(180deg, rgba(18, 21, 31, 0.8), rgba(5, 5, 8, 0.9));
  border: 1px solid var(--sp-border);
  overflow: hidden;
}
#sp-logistics-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}
.sp-logistics__road {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 62%;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  z-index: 1;
}
.sp-logistics__status {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sp-cyan);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
}
.sp-logistics.is-transit .sp-logistics__status {
  animation: sp-status-pulse 1.2s ease-in-out infinite;
}
@keyframes sp-status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(34, 211, 238, 0); }
}

/* Nigeria network map partial (canvas-based) */
.sp-map-container {
  position: relative;
  height: 520px;
  border-radius: 24px;
  border: 1px solid var(--sp-border);
  background: var(--sp-surface);
  overflow: hidden;
}
#sp-nigeria-map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.sp-map-overlay {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sp-map-stat {
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: rgba(10, 15, 26, 0.88);
  border: 1px solid var(--sp-border);
  backdrop-filter: blur(16px);
}
.sp-map-stat__label {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sp-muted-2);
}
.sp-map-stat__val {
  font-family: var(--sp-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--sp-cyan);
}
.sp-map-stat__val--live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
}
.sp-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sp-success);
  animation: sp-pulse 1.5s ease-in-out infinite;
}
.sp-world-map__caption {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--sp-muted-2);
}

/* --------------------------------------------------------------------------
   23. SCROLL REVEAL — fixed so content is never hidden by a missed/late
       IntersectionObserver callback. Cosmetic-only, non-blocking transition.
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 1;
  transform: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-sp-reveal] {
  opacity: 1;
  transform: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   24. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 80px 24px 20px;
    gap: 20px;
  }
  h1.hero-title {
    font-size: clamp(2.1rem, 7vw, 2.85rem);
    max-width: none;
  }
  .hero-content {
    max-width: none;
  }
  #hero-right {
    max-width: none;
    justify-self: stretch;
    border-radius: 16px;
  }
  .hero-stage-fade {
    background: linear-gradient(180deg, rgba(2, 4, 8, 0.15) 0%, transparent 20%, transparent 72%, rgba(2, 4, 8, 0.5) 100%);
  }
  .hero-fleet-chip {
    left: 14px;
    bottom: 14px;
  }
  .hero-truck-video {
    object-position: center center;
  }
  section {
    padding: 72px 24px;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 12px 18px;
  }
  .nav-logo {
    transform: translateY(-2px);
  }
  nav {
    flex-wrap: wrap;
  }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 4px;
    order: 3;
  }
  .nav-links.is-open {
    display: flex;
    margin-top: 14px;
    padding: 14px 4px 6px;
    background: rgba(2, 4, 8, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links.is-open a {
    padding: 10px 4px;
  }
  .nav-actions {
    margin-left: auto;
  }
  .sp-nav__toggle {
    display: flex;
  }

  .hero-content {
    padding: 0;
    max-width: none;
  }
  #hero {
    padding: 76px 18px 16px;
  }
  h1.hero-title {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
    max-width: none;
  }
  section {
    padding: 64px 18px;
  }

  .sp-track-hero {
    grid-template-columns: 1fr;
  }
  .sp-map-container {
    height: 360px;
  }
  .sp-logistics {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .sp-logistics__lane {
    min-height: 180px;
    order: 0;
  }
  .sp-hub--pickup {
    order: 1;
  }
  .sp-hub--drop {
    order: 2;
  }

  .mkt-grid,
  .mkt-benefit-grid,
  .mkt-form-row {
    grid-template-columns: 1fr;
  }
  .mkt-page {
    padding-top: 96px;
  }
  .mkt-form-card__body {
    padding: 22px 18px 28px;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 12px 14px;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-signin,
  .nav-actions .btn-ghost {
    display: none;
  }
  .nav-actions .btn-primary {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 24px;
  }
  .drivers-grid,
  .app-grid,
  .section-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ai-cards,
  .api-features,
  .app-features,
  .testimonial-grid,
  .benefit-cards {
    grid-template-columns: 1fr;
  }
  .phone-mockup {
    min-height: 0;
  }
  .app-copy .section-title,
  .drivers-copy .section-title {
    max-width: none;
  }
  .section-split__media {
    position: static;
  }
  .faq-grid--panel {
    order: 1;
  }
  .flow-visual,
  .ai-viz {
    height: min(360px, 55vh);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .benefit-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .terminal-content {
    font-size: 0.72rem;
    overflow-x: auto;
  }
}
