/* ==========================================================================
   REGALO - Premium Dark Mode Enterprise Landing Page System
   Design Principles:
   - High spatial hierarchy, edge-to-edge breathing room
   - Elimination of repetitive boxed card containers in favor of organic typography, floating media, structural split layouts, and subtle horizontal dividers
   - Custom Glowing Neon Gradients (Mint Teal -> Electric Blue -> Vibrant Purple)
   ========================================================================== */

:root {
  --bg-dark: #07090E;
  --bg-surface: #0E121B;
  --bg-glass: rgba(14, 18, 27, 0.85);
  --border-color: rgba(255, 255, 255, 0.07);
  --border-highlight: rgba(0, 229, 163, 0.4);

  --text-main: #F9FAFB;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;

  /* Accent Colors & Gradients */
  --teal-mint: #00E5A3;
  --electric-blue: #3B82F6;
  --vibrant-purple: #9333EA;

  --gradient-brand: linear-gradient(135deg, #00E5A3 0%, #3B82F6 50%, #9333EA 100%);
  --gradient-glow: radial-gradient(circle, rgba(0, 229, 163, 0.35) 0%, rgba(59, 130, 246, 0.25) 45%, rgba(147, 51, 234, 0.3) 70%, transparent 95%);

  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-pill: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating Glow Keyframes */
@keyframes floatGlow {
  0% { transform: translateX(-50%) translateY(0) scale(1); }
  50% { transform: translateX(-48%) translateY(-20px) scale(1.05); }
  100% { transform: translateX(-50%) translateY(0) scale(1); }
}

@keyframes pulseMapDot {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(0, 229, 163, 0.8); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 14px rgba(0, 229, 163, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(0, 229, 163, 0); }
}

/* Scroll Reveal Utility Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger-1 { transition-delay: 0.1s; }
.reveal-stagger-2 { transition-delay: 0.25s; }
.reveal-stagger-3 { transition-delay: 0.4s; }

.reveal-up.active, .reveal-scale.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
}

/* Typography & Layout Spacing */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 120px 0;
  position: relative;
}

/* Header Navbar */
.header {
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #FFFFFF;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07090E;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 0 25px rgba(0, 229, 163, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-normal);
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-brand);
  color: #07090E;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(0, 229, 163, 0.35);
  transition: var(--transition-normal);
}

.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(59, 130, 246, 0.5);
}

.btn-link {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-normal);
}

.btn-link:hover {
  color: var(--teal-mint);
  transform: translateX(4px);
}

/* Full-Width Panoramic Hero Section with Background Pickup Photo Cover */
.hero {
  min-height: 95vh;
  padding-top: 230px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(7, 9, 14, 0.95) 0%, rgba(7, 9, 14, 0.88) 45%, rgba(7, 9, 14, 0.35) 75%, rgba(7, 9, 14, 0.5) 100%),
              url('regalo_live_pickup_hero_1786504475754.jpg') right center/cover no-repeat;
}



/* Enhancement 7: Warm amber/orange light leak on right side — cinematic depth */
.hero-light-leak {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 85% 40%, rgba(251, 146, 60, 0.12) 0%, rgba(245, 158, 11, 0.08) 35%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Enhancement 4: Floating food badges */
.hero-floating-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.float-badge {
  position: absolute;
  font-size: 28px;
  opacity: 0.55;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
  animation: floatBadge 6s ease-in-out infinite;
}
.fb-1 { top: 22%; right: 22%; animation-delay: 0s;    animation-duration: 7s; }
.fb-2 { top: 55%; right: 34%; animation-delay: 1.2s;  animation-duration: 5.5s; font-size: 22px; }
.fb-3 { top: 38%; right: 14%; animation-delay: 2.4s;  animation-duration: 8s; }
.fb-4 { top: 70%; right: 24%; animation-delay: 0.8s;  animation-duration: 6.5s; font-size: 24px; opacity: 0.4; }
.fb-5 { top: 28%; right: 42%; animation-delay: 3s;    animation-duration: 7.5s; font-size: 20px; opacity: 0.35; }

@keyframes floatBadge {
  0%,100% { transform: translateY(0px) rotate(-3deg); }
  33%      { transform: translateY(-14px) rotate(3deg); }
  66%      { transform: translateY(6px) rotate(-1deg); }
}

/* ========================================================
   LIVE TICKER BAR — Transparent Floating Strip Above Navbar
   ======================================================== */
.live-ticker-bar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1010;
  height: 40px;
  width: calc(100% - 64px);
  max-width: 1100px;
  display: flex;
  align-items: center;
  background: transparent;
  overflow: hidden;
}

/* LIVE badge — left anchor */
.live-ticker-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 0 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--teal-mint);
  white-space: nowrap;
  flex-shrink: 0;
  height: 100%;
  background: transparent;
  text-shadow: 0 0 12px rgba(0, 229, 163, 0.6);
}

/* Vertical divider between badge and track */
.live-ticker-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* Scrolling track */
.live-ticker-track {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
}

.live-ticker-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: tickerScroll 42s linear infinite;
  padding-left: 32px;
}

/* Individual structured notification pill */
.ticker-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Colored status dot */
.ticker-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ticker-pill-dot.green  { background: #22C55E; box-shadow: 0 0 6px rgba(34,197,94,0.7); }
.ticker-pill-dot.teal   { background: #00E5A3; box-shadow: 0 0 6px rgba(0,229,163,0.7); }
.ticker-pill-dot.orange { background: #F97316; box-shadow: 0 0 6px rgba(249,115,22,0.7); }
.ticker-pill-dot.yellow { background: #EAB308; box-shadow: 0 0 6px rgba(234,179,8,0.7); }
.ticker-pill-dot.purple { background: #A855F7; box-shadow: 0 0 6px rgba(168,85,247,0.7); }

/* Truck/event name — bold white */
.ticker-pill-name {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

/* Status detail — muted */
.ticker-pill-status {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}

/* Separator dot between pills */
.ticker-sep {
  color: rgba(255, 255, 255, 0.15);
  font-size: 16px;
  flex-shrink: 0;
  user-select: none;
}

/* Pulsing dot shared by LIVE badge */
.ticker-dot {
  width: 7px;
  height: 7px;
  background: var(--teal-mint);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseGlow 1.5s ease-in-out infinite;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



/* Enhancement 3: Animated shimmer gradient on hero key phrase */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.text-gradient-shimmer {
  background: linear-gradient(90deg, #00E5A3 0%, #3B82F6 30%, #9333EA 50%, #00E5A3 70%, #3B82F6 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* Enhancement 9: Audience role pill switcher */
.hero-role-switcher {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.role-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
}
.role-pill.active {
  background: rgba(0,229,163,0.15);
  border-color: var(--teal-mint);
  color: var(--teal-mint);
  box-shadow: 0 0 18px rgba(0,229,163,0.2);
}
.role-pill:hover:not(.active) {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* Enhancement 5: Outlined secondary CTA pill */
.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.35);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  backdrop-filter: blur(6px);
}
.btn-outline-pill:hover {
  border-color: var(--teal-mint);
  color: var(--teal-mint);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0,229,163,0.2);
}

/* Enhancement 6: App store download badges */
.hero-store-badges {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 36px;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 18px;
  text-decoration: none;
  color: #fff;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
}
.store-badge:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.store-badge .fa-apple,
.store-badge .fa-google-play {
  font-size: 26px;
  opacity: 0.9;
}
.store-badge-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  margin-bottom: 2px;
}
.store-badge-main {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

/* Enhancement 8: Scroll indicator arrow */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.6;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.scroll-arrow-wrap {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  backdrop-filter: blur(6px);
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 0.9; }
}

.hero-bg-glow {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 1100px;
  height: 650px;
  background: var(--gradient-glow);
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
  animation: floatGlow 12s infinite ease-in-out;
}



.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 68px);
  color: #FFFFFF;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.95);
}

.hero-subtitle {
  font-size: 20px;
  color: #E5E7EB;
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
}

.hero-actions-container {
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-store-badges {
  display: flex;
  gap: 12px;
  margin-top: 0;
  margin-bottom: 0;
}

.hero-vendor-prompt {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-vendor-link {
  color: var(--teal-mint);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.hero-vendor-link:hover {
  text-decoration: underline;
  color: #FFFFFF;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}


/* ========================================================
   DATA INTELLIGENCE SECTION — PREMIUM DARK REBUILD
   ======================================================== */

/* Two-column intel split */
.intel-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .intel-split { grid-template-columns: 1fr; gap: 40px; }
}

/* Left copy column */
.intel-copy { display: flex; flex-direction: column; }

.intel-tabs {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 28px;
}

.intel-tab {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-fast);
}
.intel-tab.active, .intel-tab:hover {
  background: var(--teal-mint);
  border-color: var(--teal-mint);
  color: #07090E;
}

.intel-metrics {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.intel-metric-card {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 20px;
}
.intel-metric-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.intel-metric-value {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.intel-metric-value.teal { color: var(--teal-mint); }
.intel-metric-sub { font-size: 12px; color: var(--text-muted); }

.intel-bars { display: flex; flex-direction: column; gap: 14px; }

.intel-bar-item { display: flex; flex-direction: column; gap: 6px; }

.intel-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.intel-bar-label .teal { color: var(--teal-mint); font-weight: 700; }

.intel-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.intel-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--teal-mint);
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.intel-bar-fill.secondary { background: var(--electric-blue); }
.intel-bar-fill.purple { background: var(--vibrant-purple); }

/* ---- Right column: iPad hardware shell ---- */
.intel-ipad-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ipad-hardware {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: #1a1a1e;
  border-radius: 28px;
  border: 2px solid #333;
  box-shadow:
    0 0 0 1px #111,
    0 40px 120px rgba(0,0,0,0.9),
    0 0 60px rgba(0,229,163,0.12),
    inset 0 1px 0 rgba(255,255,255,0.06);
  padding: 14px;
}

/* Simulated home indicator bar at bottom */
.ipad-hardware::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  margin: 10px auto 2px;
}

/* ---- Dark dashboard screen ---- */
.ipad-screen-ui {
  background: #0B0D14;
  border-radius: 18px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-body);
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 380px;
}

/* Top bar */
.dsh-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dsh-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}
.dsh-logo-dot {
  width: 8px; height: 8px;
  background: var(--teal-mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--teal-mint);
}
.dsh-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,229,163,0.12);
  border: 1px solid rgba(0,229,163,0.3);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--teal-mint);
}
.dsh-pulse {
  width: 6px; height: 6px;
  background: var(--teal-mint);
  border-radius: 50%;
  animation: pulseGlow 1.5s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,229,163,0.6); }
  50% { box-shadow: 0 0 0 4px rgba(0,229,163,0); }
}

/* KPI row */
.dsh-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.dsh-kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}
.dsh-kpi-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.dsh-kpi-val {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.dsh-kpi-change {
  font-size: 9px;
  font-weight: 700;
  margin-top: 3px;
}
.dsh-kpi-change.up { color: var(--teal-mint); }
.dsh-kpi-change.down { color: #F87171; }

/* Body row: sparkline + sellers */
.dsh-body-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
}
.dsh-chart-card, .dsh-sellers-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 10px 12px;
}
.dsh-card-title {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.dsh-sparkline {
  width: 100%;
  height: 52px;
  display: block;
}
.dsh-chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}
.dsh-chart-labels span {
  font-size: 8px;
  color: rgba(255,255,255,0.3);
}

/* Top sellers */
.dsh-seller-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dsh-seller-row:last-child { border-bottom: none; }
.dsh-seller-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.teal-dot { background: var(--teal-mint); }
.blue-dot { background: var(--electric-blue); }
.purple-dot { background: var(--vibrant-purple); }
.dsh-seller-name { font-size: 10px; color: rgba(255,255,255,0.7); flex: 1; }
.dsh-seller-pct { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.5); }

/* Inventory + location row */
.dsh-inv-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
}
.dsh-inv-card, .dsh-location-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 10px 12px;
}
.dsh-inv-item {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 7px;
}
.dsh-inv-item:last-child { margin-bottom: 0; }
.dsh-inv-item > span:first-child {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  width: 64px;
  flex-shrink: 0;
}
.dsh-inv-bar-track {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.dsh-inv-bar-fill {
  height: 100%;
  border-radius: 999px;
}
.dsh-inv-status {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 999px;
  flex-shrink: 0;
}
.dsh-inv-status.ok { background: rgba(0,229,163,0.12); color: var(--teal-mint); }
.dsh-inv-status.warn { background: rgba(245,158,11,0.15); color: #F59E0B; }

/* Location card */
.dsh-location-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.dsh-location-toggle-row > span {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
}
.dsh-toggle {
  width: 30px; height: 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
}
.dsh-toggle.on { background: var(--teal-mint); }
.dsh-toggle-knob {
  position: absolute;
  top: 2px; right: 2px;
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.dsh-location-address {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.dsh-location-viewers {
  font-size: 9px;
  color: var(--teal-mint);
  font-weight: 700;
}



/* Large Real Front-Facing iPad Pro Photograph Showcase */
.real-ipad-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.95), 0 0 60px rgba(0, 229, 163, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.real-ipad-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.real-ipad-photo-wrapper:hover .real-ipad-photo {
  transform: scale(1.015);
}

.real-ipad-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.overlay-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: auto;
}

.overlay-badge {
  background: rgba(7, 9, 14, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  border: 1px solid rgba(0, 229, 163, 0.35);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.overlay-tabs {
  display: flex;
  gap: 6px;
  background: rgba(7, 9, 14, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.overlay-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.overlay-tab.active, .overlay-tab:hover {
  background: var(--teal-mint);
  color: #07090E;
}

.overlay-metric-badge {
  align-self: flex-start;
  background: rgba(7, 9, 14, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 229, 163, 0.4);
  padding: 14px 22px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  pointer-events: auto;
  text-align: left;
}
.full-ipad-showcase {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

.full-ipad-bezel {
  background: #11151F;
  border: 14px solid #1C2230;
  border-radius: 36px;
  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.95), 0 0 70px rgba(0, 229, 163, 0.18);
  padding: 16px;
  position: relative;
}

.ipad-camera-dot {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #07090E;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.ipad-screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 8px;
}

.ipad-brand-logo {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ipad-status-pill {
  font-size: 12px;
  color: var(--teal-mint);
  font-weight: 600;
  background: rgba(0, 229, 163, 0.12);
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 163, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ipad-dashboard-view {
  background: #07090E;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 28px;
}

.ipad-dash-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dash-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
}

.ipad-tab-group {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px;
  border-radius: 999px;
}

.ipad-dash-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.ipad-dash-tab.active, .ipad-dash-tab:hover {
  background: var(--teal-mint);
  color: #07090E;
}

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

.ipad-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
}

.card-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.card-main-val {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  margin-top: 6px;
  margin-bottom: 4px;
}

.mini-trend-tag {
  font-size: 12px;
  color: var(--teal-mint);
  font-weight: 600;
}

.ipad-chart-canvas {
  margin-top: 14px;
  height: 52px;
  background: linear-gradient(180deg, rgba(0, 229, 163, 0.2) 0%, rgba(0, 229, 163, 0) 100%);
  border-top: 2px solid var(--teal-mint);
  border-radius: 8px;
}

.ipad-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.ipad-breakdown-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #FFFFFF;
}

.inventory-grid-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .ipad-grid-top {
    grid-template-columns: 1fr;
  }
  .inventory-grid-mini {
    grid-template-columns: 1fr;
  }
}
.real-ipad-container {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9), 0 0 60px rgba(0, 229, 163, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.real-ipad-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.real-ipad-container:hover .real-ipad-img {
  transform: scale(1.02);
}

.ipad-screen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.ipad-hotspot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: auto;
}

.ipad-hotspot-badge {
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  border: 1px solid rgba(0, 229, 163, 0.3);
}

.ipad-interactive-tabs {
  display: flex;
  gap: 6px;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(12px);
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ipad-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.ipad-tab-btn.active, .ipad-tab-btn:hover {
  background: var(--teal-mint);
  color: #07090E;
}

.ipad-metric-spotlight {
  align-self: flex-start;
  background: rgba(7, 9, 14, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 229, 163, 0.35);
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  pointer-events: auto;
}
.tablet-simulator-bezel {
  background: #0E121B;
  border: 10px solid #1A202C;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9), 0 0 50px rgba(0, 229, 163, 0.15);
  padding: 16px;
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

.tablet-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 4px;
}

.tablet-brand {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tablet-screen-content {
  background: #07090E;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px;
}

.tablet-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.tablet-dash-title {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}

.tablet-tab-group {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 999px;
}

.tablet-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tablet-tab-btn.active, .tablet-tab-btn:hover {
  background: var(--teal-mint);
  color: #07090E;
}

.tablet-dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.dash-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
}

.dash-card-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.dash-card-value {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--teal-mint);
  margin-top: 4px;
  margin-bottom: 10px;
}

.chart-line-preview {
  height: 48px;
  background: linear-gradient(180deg, rgba(0, 229, 163, 0.25) 0%, rgba(0, 229, 163, 0) 100%);
  border-top: 2px solid var(--teal-mint);
  border-radius: 6px;
}

.breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #FFFFFF;
}

.tablet-bottom-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
}

.stock-progress-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.stock-progress-bar {
  height: 100%;
  background: var(--gradient-brand);
  border-radius: 999px;
  transition: width 0.6s ease;
}

/* Floating Interactive Food Badges */
.floating-badge {
  position: absolute;
  background: rgba(14, 18, 27, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 229, 163, 0.35);
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 229, 163, 0.2);
  z-index: 3;
  transition: var(--transition-normal);
}

.floating-badge:hover {
  transform: translateY(-6px) scale(1.05);
  border-color: var(--teal-mint);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(59, 130, 246, 0.4);
}

.floating-badge img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.floating-badge strong {
  display: block;
  font-size: 13px;
  color: #FFFFFF;
  line-height: 1.2;
}

.badge-sub {
  font-size: 11px;
  color: var(--teal-mint);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--teal-mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--teal-mint);
}

/* Float Animations for Badges */
.badge-1 {
  top: -20px;
  left: -24px;
  animation: floatBadge1 6s infinite ease-in-out;
}

.badge-2 {
  bottom: -20px;
  right: -20px;
  animation: floatBadge2 7s infinite ease-in-out;
}

@keyframes floatBadge1 {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

@keyframes floatBadge2 {
  0% { transform: translateY(0px); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(0px); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 20px;
  background: rgba(0, 229, 163, 0.12);
  border: 1px solid rgba(0, 229, 163, 0.35);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-mint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 68px;
  color: #FFFFFF;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
  font-size: 21px;
  color: #E5E7EB;
  margin-bottom: 44px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-stat-desc {
  font-size: 14px;
  color: #D1D5DB;
}

/* Unboxed Enterprise Feature Splits (No Card Containers) */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  margin-bottom: 140px;
}

.feature-split.reverse {
  direction: rtl;
}

.feature-split.reverse .feature-split-content {
  direction: ltr;
}

.feature-split-content {
  max-width: 540px;
}

.feature-tagline {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-mint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.feature-heading {
  font-size: 44px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.feature-paragraph {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: var(--text-main);
}

.feature-bullets li i {
  color: var(--teal-mint);
  font-size: 18px;
  margin-top: 4px;
}

.feature-media-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.feature-media-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-media-frame:hover img {
  transform: scale(1.03);
}

/* ========================================================
   VENDOR MAP SECTION — FULL-BLEED OVERLAY REDESIGN
   ======================================================== */

/* Make the split give more room to the map column */
.vendor-map-split {
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 64px;
}

@media (max-width: 900px) {
  .vendor-map-split { grid-template-columns: 1fr; }
}

/* Outer wrapper — no card, no background, no border */
.vendor-map-frame {
  position: relative;
  width: 100%;
}

.toggle-status-label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}

.switch-btn {
  width: 60px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
}

.switch-btn::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.switch-btn.active {
  background: var(--gradient-brand);
}

.switch-btn.active::after {
  transform: translateX(28px);
}

/* Full-bleed dark vector map — taller, no card border */
.demo-map-preview {
  position: relative;
  height: 520px;
  background: url('sj_dark_vector_map_1786506585084.jpg') center/cover no-repeat;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255,255,255,0.06);
}

.demo-map-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(14, 18, 27, 0.52);
  transition: opacity 0.5s ease;
  z-index: 1;
}

.demo-map-preview.active .demo-map-overlay {
  opacity: 0.12;
}

/* Glassmorphic toggle pill — floating TOP of the map */
.map-overlay-toggle {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(7, 9, 14, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 18px 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,229,163,0.08);
  white-space: nowrap;
  min-width: 240px;
  justify-content: space-between;
}

.map-toggle-left {
  display: flex;
  align-items: center;
  gap: 9px;
}

/* Pulsing status dot beside label */
.map-toggle-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s ease;
  flex-shrink: 0;
}
.map-toggle-status-dot.live {
  background: var(--teal-mint);
  animation: pulseGlow 1.4s ease-in-out infinite;
  box-shadow: 0 0 8px var(--teal-mint);
}

/* Map center idle prompt */
.map-center-prompt {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
  background: rgba(7, 9, 14, 0.82);
  padding: 8px 20px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-center-prompt.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Map pins */
.live-map-pin {
  width: 28px;
  height: 28px;
  background: #9333EA;
  border: 2px solid #00E5A3;
  border-radius: 50%;
  position: absolute;
  display: none;
  z-index: 2;
  box-shadow: 0 0 18px #00E5A3;
  animation: pulseMapDot 1.8s infinite ease-in-out;
}

.live-map-pin.active {
  display: block;
}

/* Live alert — bottom strip INSIDE the map */
.map-live-alert {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 14px 20px;
  background: rgba(0, 229, 163, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(0, 229, 163, 0.3);
  color: var(--teal-mint);
  font-size: 13px;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 10px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-live-alert.active {
  display: flex;
  transform: translateY(0);
}

/* Legacy: keep banner-alert hidden if referenced elsewhere */
.live-banner-alert { display: none !important; }

/* Dynamic Bar Graph Preview */
.analytics-chart-preview {
  margin-top: 24px;
}

.chart-bar-row {
  margin-bottom: 16px;
}

.chart-bar-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.chart-bar-track {
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.chart-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient-brand);
  border-radius: 999px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Open Spatial Food Truck Showcase Gallery */
.cuisine-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.gallery-filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.gallery-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.gallery-tab:hover, .gallery-tab.active {
  color: #FFFFFF;
  border-color: var(--teal-mint);
  background: rgba(0, 229, 163, 0.12);
  box-shadow: 0 0 15px rgba(0, 229, 163, 0.2);
}

.cuisine-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.cuisine-gallery-item {
  position: relative;
}

.cuisine-img-container {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

.cuisine-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cuisine-gallery-item:hover .cuisine-img-container img {
  transform: scale(1.08);
}

.cuisine-meta-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-mint);
  border: 1px solid rgba(0, 229, 163, 0.3);
}

.cuisine-title {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.cuisine-sub {
  font-size: 14px;
  color: var(--text-muted);
}

/* Minimalist Workflow Row (Unboxed Step Numbers) */
.workflow-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 60px;
}

.workflow-item {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.workflow-step-badge {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.workflow-item-title {
  font-size: 22px;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.workflow-item-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* High-Impact Full Banner CTA */
.enterprise-cta-section {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(circle at 50% 50%, rgba(0, 229, 163, 0.18) 0%, rgba(59, 130, 246, 0.15) 40%, rgba(147, 51, 234, 0.18) 70%, transparent 95%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cta-max-width {
  max-width: 760px;
  margin: 0 auto;
}

.cta-heading {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.cta-subtext {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Minimalist Footer */
.footer {
  padding: 60px 0 40px 0;
  background: #040508;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-rights {
  color: var(--text-dim);
  font-size: 14px;
}

/* Live Activity Ticker Bar */
.activity-ticker {
  background: rgba(0, 229, 163, 0.06);
  border-bottom: 1px solid rgba(0, 229, 163, 0.15);
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.ticker-dot {
  width: 8px;
  height: 8px;
  background-color: var(--teal-mint);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal-mint);
  animation: pulse 1.8s infinite;
}

/* Floating Glassmorphic Navbar Pill */
.header {
  position: fixed;
  top: 72px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: calc(100% - 64px);
  max-width: 1240px;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 163, 0.15);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.header.nav-hidden {
  transform: translateX(-50%) translateY(-140px);
  opacity: 0;
  pointer-events: none;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 28px;
}

.mobile-nav-drawer {
  display: none;
  background: rgba(7, 9, 14, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px 32px;
  position: absolute;
  top: 78px;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07090E;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 0 20px rgba(0, 229, 163, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: var(--transition-normal);
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Live Cuisine Search Input Bar */
.search-bar-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
}

.search-bar-wrap input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: var(--transition-normal);
}

.search-bar-wrap input:focus {
  border-color: var(--teal-mint);
  box-shadow: 0 0 20px rgba(0, 229, 163, 0.25);
}

/* Fluid Typography & Scaling Rules */
.hero-title {
  font-size: clamp(36px, 5.5vw, 68px);
  color: #FFFFFF;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
}

.feature-heading {
  font-size: clamp(28px, 4vw, 44px);
  color: #FFFFFF;
  margin-bottom: 20px;
}

.cta-heading {
  font-size: clamp(20px, 2.5vw, 32px);
  color: #FFFFFF;
  margin-bottom: 20px;
}

/* Mobile Toggle Hamburger Button & Drawer */
.mobile-toggle-btn {
  display: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav-drawer {
  display: none;
  background: rgba(7, 9, 14, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 32px;
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  z-index: 999;
}

.mobile-nav-drawer.active {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: block;
}

/* Mobile Responsiveness Media Queries */
@media (max-width: 1024px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .mobile-toggle-btn {
    display: block;
  }
  .hero {
    padding-top: 130px;
    padding-bottom: 80px;
  }
  .hero-stats-row {
    gap: 28px;
    flex-wrap: wrap;
  }
  .hero-stat-num {
    font-size: 28px;
  }
  .feature-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cuisine-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
  .hero-subtitle {
    font-size: 17px;
  }
  .cuisine-gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn-pill, .hero-actions .btn-link {
    width: 100%;
    justify-content: center;
  }
  .demo-map-preview {
    height: 280px;
  }
  .faq-question {
    padding: 18px 20px;
    font-size: 16px;
  }
  .faq-answer-inner {
    padding: 0 20px 20px 20px;
    font-size: 14px;
  }
}

/* ==========================================================================
   FAQ Accordion Section Styles
   ========================================================================== */
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
  border-color: var(--border-highlight);
  background: rgba(14, 18, 27, 0.95);
  box-shadow: 0 8px 30px rgba(0, 229, 163, 0.08);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--teal-mint);
}

.faq-icon {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform var(--transition-normal), color var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--teal-mint);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 28px 24px 28px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

