/* === DESIGN TOKENS === */
:root {
  --brand: #7C3AED;
  --brand-light: #A78BFA;
  --brand-dark: #5B21B6;
  --accent: #F59E0B;
  --teal: #10B981;
  --danger: #EF4444;
  --bg: #07090F;
  --bg2: #0E1018;
  --bg3: #141620;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.15);
  --text: #F0F2FF;
  --text-muted: rgba(240,242,255,0.55);
  --text-faint: rgba(240,242,255,0.3);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 25px 60px rgba(0,0,0,0.5);
  --glow: 0 0 60px rgba(124,58,237,0.35);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* === UTILITY === */
.gradient-text {
  background: linear-gradient(135deg, var(--brand-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === NAVBAR === */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--text);
  background: var(--surface);
}
.nav-link-cta {
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--brand-light);
}
.nav-link-cta:hover {
  background: rgba(124,58,237,0.25);
  color: var(--brand-light);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 32px 16px;
  background: rgba(7,9,15,0.95);
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
/* === END NAVBAR LINKS === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 32px;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.navbar.scrolled {
  background: rgba(7,9,15,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark { display: flex; align-items: center; }
.logo-text { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700; }
.logo-brand { color: var(--text); }
.nav-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.4); }
}

/* === HERO === */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}
.hero-content { flex: 1; max-width: 580px; }
.hero-eyebrow { margin-bottom: 24px; }
.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.35);
  color: var(--brand-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--text); }

/* App Name Reveal */
.app-name-reveal {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  padding: 20px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.app-logo-large { flex-shrink: 0; }
.app-name-text {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.app-title-word { color: var(--text); }
.app-title-word.accent {
  background: linear-gradient(135deg, var(--brand-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.app-by { font-size: 0.82rem; color: var(--text-faint); margin-top: 4px; }
.app-by strong { color: var(--text-muted); }

/* CTA */
.cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(124,58,237,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(124,58,237,0.6);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 14px 24px;
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Store Badges */
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: background 0.2s;
}
.store-badge.coming { opacity: 0.7; cursor: default; }
.store-badge div { display: flex; flex-direction: column; }
.store-badge small { font-size: 0.68rem; opacity: 0.6; line-height: 1; text-transform: uppercase; letter-spacing: 0.05em; }
.store-badge strong { font-size: 0.9rem; color: var(--text); }

/* === PHONE MOCKUP === */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-mockup {
  position: relative;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(-2deg); }
}
.phone-frame {
  width: 280px;
  height: 580px;
  background: #10141F;
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.04), 0 40px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.phone-frame::before {
  content: '';
  display: block;
  width: 100px; height: 28px;
  background: #10141F;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  border: 2px solid rgba(255,255,255,0.08);
  border-top: none;
}
.phone-screen {
  flex: 1;
  padding: 10px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.screen-header {}
.screen-greeting { font-size: 0.72rem; color: var(--text-faint); }
.screen-title { font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--text); }
.screen-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.service-card {
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.service-card:hover { transform: scale(1.04); }
.service-card.food { background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(124,58,237,0.08)); border: 1px solid rgba(124,58,237,0.25); }
.service-card.taxi { background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.06)); border: 1px solid rgba(245,158,11,0.2); }
.service-card.ship { background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(16,185,129,0.06)); border: 1px solid rgba(16,185,129,0.2); }
.card-icon { font-size: 1.4rem; margin-bottom: 4px; }
.card-label { font-size: 0.7rem; font-weight: 700; color: var(--text); }
.card-sub { font-size: 0.58rem; color: var(--text-faint); margin-top: 2px; }
.screen-map { flex: 1; min-height: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: #141c2e; }
.map-img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center center; }
.screen-status { display: flex; align-items: center; gap: 7px; font-size: 0.65rem; color: var(--teal); background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); border-radius: 8px; padding: 7px 10px; }
.status-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse-dot 1.5s ease-in-out infinite; }
.phone-glow { position: absolute; inset: -40px; background: radial-gradient(ellipse at center, rgba(124,58,237,0.3) 0%, transparent 65%); z-index: 1; pointer-events: none; filter: blur(20px); }

/* === HERO MOCKUP IMAGE === */
.hero-mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 5s ease-in-out infinite;
}
.hero-mockup-img {
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  filter: drop-shadow(0 30px 60px rgba(124,58,237,0.3));
  position: relative;
  z-index: 2;
}
.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.25) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
  filter: blur(20px);
}
/* === STATS BAR === */
.stats-bar {
  position: relative; z-index: 1;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.88rem; color: var(--text-muted); margin-top: 4px; }

/* === HOW IT WORKS === */
.how-it-works {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, var(--bg2) 20%, var(--bg2) 80%, transparent);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: left;
}
.how-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  transition: transform 0.3s, border-color 0.3s;
}
.how-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,0.3);
}
.how-icon { font-size: 2rem; margin-bottom: 14px; }
.how-card h4 { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.how-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
/* === SHARED SECTIONS === */
section { position: relative; z-index: 1; }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px;
  text-align: center;
}
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* === SERVICES GRID === */
.services { background: linear-gradient(180deg, transparent, var(--bg2) 30%, var(--bg2) 70%, transparent); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; text-align: left; }
.service-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), background 0.4s, border-color 0.4s, box-shadow 0.4s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c1, var(--brand)), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-block:hover { transform: translateY(-8px); background: var(--surface-hover); border-color: rgba(255,255,255,0.12); box-shadow: 0 24px 56px rgba(0,0,0,0.4); }
.service-block:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.service-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c1); margin-bottom: 8px; }
.service-block h3 { font-family: 'Outfit', sans-serif; font-size: 1.35rem; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.service-block > p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; flex-grow: 1; margin-bottom: 16px; }
.service-cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-light);
  text-decoration: none;
  transition: color 0.2s;
}
.service-cta:hover { color: var(--accent); }

/* === TIMELINE === */
.status-section { background: linear-gradient(180deg, transparent, var(--bg2) 30%, var(--bg2) 70%, transparent); }
.timeline { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; text-align: left; }
.timeline-item { display: flex; gap: 20px; padding: 24px 0; border-left: 2px solid var(--border); padding-left: 28px; position: relative; }
.tl-icon { position: absolute; left: -20px; width: 36px; height: 36px; border-radius: 50%; background: var(--bg); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.timeline-item.done .tl-icon { border-color: var(--teal); }
.timeline-item.active .tl-icon { border-color: var(--brand); box-shadow: 0 0 12px rgba(124,58,237,0.4); }
.timeline-item.pending .tl-icon { opacity: 0.5; }
.tl-content h4 { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.timeline-item.done .tl-content h4 { color: var(--teal); }
.timeline-item.active .tl-content h4 { color: var(--brand-light); }
.timeline-item.pending .tl-content h4 { color: var(--text-faint); }
.tl-content p { font-size: 0.88rem; color: var(--text-muted); }

/* === PRE-PRODUCTION SECTION === */
.notify-section { padding: 80px 32px; position: relative; z-index: 1; }
.notify-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(245,158,11,0.06));
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 32px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.notify-glow { position: absolute; inset: -80px; background: radial-gradient(ellipse at 50% 50%, rgba(124,58,237,0.2), transparent 65%); pointer-events: none; }
.notify-content { position: relative; z-index: 2; }
.notify-icon { font-size: 2.5rem; margin-bottom: 16px; }
.notify-card h2 { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 900; margin-bottom: 12px; }
.notify-card > .notify-content > p { color: var(--text-muted); font-size: 1rem; margin-bottom: 32px; }

/* Pre-prod options */
.pre-prod-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 24px; }
.pre-prod-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: transform 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.pre-prod-btn:hover { transform: translateY(-4px); background: var(--surface-hover); }
.pp-icon { font-size: 1.5rem; flex-shrink: 0; }
.pp-text { font-size: 0.95rem; font-weight: 600; }
.pp-sub { font-size: 0.78rem; color: var(--text-faint); margin-top: 2px; }
.pre-prod-btn.delivery:hover { border-color: var(--teal); box-shadow: 0 8px 24px rgba(16,185,129,0.2); }
.pre-prod-btn.taxi:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(245,158,11,0.2); }
.pre-prod-btn.partner:hover { border-color: var(--brand-light); box-shadow: 0 8px 24px rgba(124,58,237,0.2); }

/* === NOTIFY FORM === */
.notify-form {}
.form-row { display: flex; gap: 10px; max-width: 440px; margin: 0 auto 16px; }
.form-row input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 14px 22px;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
}
.form-row input::placeholder { color: var(--text-faint); }
.form-row input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(124,58,237,0.2); }
.btn-submit {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
  border: none; border-radius: 999px;
  padding: 14px 24px;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(124,58,237,0.4); }
.form-success { display: none; color: var(--teal); font-weight: 600; font-size: 0.95rem; margin-top: 12px; }
.form-success.show { display: block; }
.form-error { display: none; color: #F87171; font-weight: 500; font-size: 0.9rem; margin-top: 12px; }
.form-error a { color: var(--accent); text-decoration: underline; }
.form-error.show { display: block; }
.privacy-note { font-size: 0.78rem; color: var(--text-faint); margin-top: 14px; }

/* === FOOTER === */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 48px 32px; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.footer-tagline { font-size: 0.88rem; color: var(--text-faint); max-width: 380px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 28px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { padding-top: 20px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.8rem; color: var(--text-faint); }
.footer-bottom strong { color: var(--text-muted); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding-top: 100px; text-align: center; gap: 48px; }
  .hero-content { max-width: 100%; }
  .cta-group { justify-content: center; }
  .store-badges { justify-content: center; }
  .app-name-reveal { justify-content: center; }
  .break-lg { display: none; }
  .hero-visual { order: -1; }
  .phone-frame { width: 240px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .navbar { padding: 14px 20px; }
  .section-inner { padding: 70px 20px; }
  .notify-card { padding: 36px 24px; }
  .form-row { flex-direction: column; }
  .footer-links { gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
}
