/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #6C63FF;
  --primary-dark: #4F46E5;
  --secondary: #FF6B6B;
  --accent: #FFD166;
  --bg: #0A0A0F;
  --bg-2: #111118;
  --bg-card: #16161F;
  --border: rgba(255,255,255,0.07);
  --text: #F0F0F5;
  --text-muted: #8B8B9E;
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

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

/* ── Gradient text ────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #a78bfa 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAV ──────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10,10,15,.75);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.15rem; font-weight: 700; letter-spacing: -.02em;
}
.logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.logo-icon-sm {
  width: 28px; height: 28px; border-radius: 8px;
  font-size: .8rem;
}
.nav-cta {
  padding: 8px 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: .875rem;
  font-weight: 600;
  transition: opacity .2s, transform .2s;
}
.nav-cta:hover { opacity: .85; transform: translateY(-1px); }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .35;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #6C63FF, transparent 70%);
  top: -100px; left: -100px;
}
.hero-blob-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, #FF6B6B, transparent 70%);
  top: 200px; right: -80px;
  opacity: .2;
}
.hero-blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #60a5fa, transparent 70%);
  bottom: 0; left: 40%;
  opacity: .18;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}
/* hero text col spans 1, mockup col 2 */
.hero-inner > *:not(.phone-mockup) { grid-column: 1; }
.phone-mockup { grid-column: 2; grid-row: 1 / 6; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(108,99,255,.15);
  border: 1px solid rgba(108,99,255,.3);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  color: #a78bfa;
  width: fit-content;
}
.badge-dot {
  width: 6px; height: 6px;
  background: #6C63FF;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-top: 16px;
}
.hero-sub {
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
  border: none;
  outline: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 32px rgba(108,99,255,.4);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 40px rgba(108,99,255,.5); }
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.04); }
.btn-white {
  background: #fff;
  color: #1a1a2e;
  font-weight: 700;
  white-space: nowrap;
}
.btn-white:hover { background: #f0f0f5; transform: translateY(-1px); }

/* ── Phone Mockup ─────────────────────────────────────── */
.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-frame {
  width: 280px;
  height: 560px;
  background: #1a1a2e;
  border-radius: 40px;
  border: 6px solid rgba(255,255,255,.1);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.05);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #1a1a2e;
  border-radius: 14px;
  z-index: 10;
}
.phone-screen {
  width: 100%; height: 100%;
  background: #e8f4f8;
  display: flex;
  flex-direction: column;
}
.mock-map {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.mock-map-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 30%, #d1fae5 60%, #fef9c3 100%);
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(100,100,200,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,100,200,.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
/* Fake streets */
.map-grid::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(80,80,180,.15) 2px, transparent 2px),
    linear-gradient(90deg, rgba(80,80,180,.15) 2px, transparent 2px);
  background-size: 90px 90px;
}
/* Fake water */
.map-grid::after {
  content: '';
  position: absolute;
  bottom: 30%; left: 0; right: 0;
  height: 30px;
  background: rgba(59,130,246,.2);
  transform: skewY(-3deg);
}

.map-pin { position: absolute; }
.pin-dot {
  width: 14px; height: 14px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.pin-primary { background: #6C63FF; }
.pin-secondary { background: #FF6B6B; }
.pin-accent { background: #FFD166; }
.pin-1 { top: 35%; left: 40%; }
.pin-2 { top: 25%; left: 65%; }
.pin-3 { top: 55%; left: 25%; }
.pin-4 { top: 45%; right: 20%; }
.pin-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(108,99,255,.25);
  animation: ripple 2s infinite;
}
@keyframes ripple {
  0% { transform: translate(-50%,-50%) scale(.5); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(2.5); opacity: 0; }
}

.map-popup {
  position: absolute;
  bottom: 16%; left: 8%;
  width: 170px;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  animation: popup-in .6s ease .5s both;
}
@keyframes popup-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.popup-img {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, #6C63FF, #a78bfa);
  flex-shrink: 0;
}
.popup-name { font-size: 11px; font-weight: 700; color: #1a1a2e; }
.popup-meta { display: flex; gap: 4px; margin-top: 2px; align-items: center; flex-wrap: wrap; }
.popup-dist { font-size: 9px; color: #666; }
.popup-badge {
  font-size: 8px;
  background: #dcfce7;
  color: #16a34a;
  padding: 1px 5px;
  border-radius: 50px;
  font-weight: 600;
}

.mock-tabs {
  height: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid #f0f0f0;
}
.tab-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  font-size: 8px; color: #aaa;
}
.tab-item svg { width: 16px; height: 16px; }
.tab-active { color: #6C63FF; }
.tab-active svg { stroke: #6C63FF; fill: #6C63FF; }

.phone-glow {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,.4), transparent 70%);
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  filter: blur(40px);
  pointer-events: none;
}

/* ── STATS ────────────────────────────────────────────── */
.stats-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item { text-align: center; padding: 8px 40px; }
.stat-num { font-size: 1.5rem; font-weight: 800; letter-spacing: -.03em; }
.stat-label { font-size: .8rem; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* ── FEATURES ─────────────────────────────────────────── */
.features { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(108,99,255,.12);
  color: #a78bfa;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tag-white { background: rgba(255,255,255,.15); color: #fff; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
}
.section-sub { color: var(--text-muted); margin-top: 12px; font-size: 1rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: rgba(108,99,255,.3); transform: translateY(-4px); }
.feature-card-big { grid-column: span 2; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin: 16px 0 10px; }
.feature-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

.feature-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.icon-blue { background: rgba(59,130,246,.15); color: #60a5fa; }
.icon-orange { background: rgba(249,115,22,.15); color: #fb923c; }
.icon-pink { background: rgba(236,72,153,.15); color: #f472b6; }
.icon-green { background: rgba(34,197,94,.15); color: #4ade80; }
.icon-purple { background: rgba(168,85,247,.15); color: #c084fc; }
.icon-yellow { background: rgba(234,179,8,.15); color: #facc15; }

.feature-tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.ftag {
  font-size: .75rem;
  padding: 4px 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
}

/* ── HOW IT WORKS ─────────────────────────────────────── */
.how-it-works {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 200px; max-width: 260px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.step:hover { border-color: rgba(108,99,255,.3); transform: translateY(-4px); }
.step-num {
  font-size: 2.5rem; font-weight: 900;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.step-icon {
  margin: 16px auto 12px;
  width: 60px; height: 60px;
  background: rgba(108,99,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #a78bfa;
}
.step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .875rem; color: var(--text-muted); }
.step-arrow {
  font-size: 1.5rem; color: var(--text-muted);
  flex-shrink: 0;
}

/* ── WAITLIST ─────────────────────────────────────────── */
.waitlist { padding: 100px 0; }
.waitlist-card {
  position: relative;
  background: linear-gradient(135deg, #1a1040 0%, #1c1030 50%, #0f1a30 100%);
  border: 1px solid rgba(108,99,255,.25);
  border-radius: 28px;
  padding: 72px 48px;
  overflow: hidden;
  text-align: center;
}
.waitlist-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,.35), transparent 65%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.waitlist-content { position: relative; z-index: 1; }
.waitlist-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.04em;
  margin-top: 16px;
}
.waitlist-sub { color: var(--text-muted); margin-top: 16px; font-size: 1rem; max-width: 500px; margin-left: auto; margin-right: auto; }

.waitlist-form { margin-top: 36px; }
.input-row {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}
.email-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: .95rem;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s;
}
.email-input::placeholder { color: rgba(255,255,255,.3); }
.email-input:focus { border-color: rgba(108,99,255,.6); }
.form-note { font-size: .8rem; color: rgba(255,255,255,.3); margin-top: 12px; }

.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: .9rem;
  position: relative;
}
.store-badge-disabled {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  cursor: default;
}
.badge-soon {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--primary);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--bg-2);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .95rem;
}
.footer-copy { font-size: .85rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: .85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--text); }

/* ── Toast ────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #4ade80;
  color: #14532d;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 0 8px 30px rgba(74,222,128,.3);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  z-index: 999;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-inner > *:not(.phone-mockup) { grid-column: 1; }
  .phone-mockup { grid-column: 1; grid-row: auto; justify-self: center; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-big { grid-column: span 2; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-big { grid-column: span 1; }
  .stats-inner { gap: 16px; }
  .stat-divider { display: none; }
  .stat-item { padding: 8px 20px; }
  .waitlist-card { padding: 48px 24px; }
  .input-row { flex-direction: column; }
  .email-input, .btn-white { border-radius: 14px; width: 100%; justify-content: center; }
  .step-arrow { display: none; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}
