/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --banner-height: 40px;
  --blue:       #2563EB;
  --teal:       #0D9488;
  --blue-light: #3B82F6;
  --teal-light: #14B8A6;
  --bg:         #060D1A;
  --bg-2:       #0B1628;
  --bg-card:    rgba(255,255,255,0.055);
  --border:     rgba(255,255,255,0.08);
  --text:       #F1F5F9;
  --text-muted: rgba(241,245,249,0.55);
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; }

/* ─── UTILITIES ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #60A5FA, #2DD4BF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section { padding: 100px 0; }
.section-alt { background: var(--bg-2); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(13,148,136,.12);
  border: 1px solid rgba(13,148,136,.25);
  border-radius: 99px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  border: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,99,235,.35);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(37,99,235,.5); }

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,.13); }

.btn-nav {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

.btn-outline-white {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,.2);
  justify-content: center;
  width: 100%;
  padding: 15px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  transition: background .2s, border-color .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.35); }

/* ─── COMING SOON BANNER ────────────────────────────────────────── */
.coming-soon-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  height: var(--banner-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(241,245,249,0.9);
  background: linear-gradient(90deg, rgba(37,99,235,0.85), rgba(13,148,136,0.85));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 0 16px;
}

.banner-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

/* ─── NAV ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: var(--banner-height); left: 0; right: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(6,13,26,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 4px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 64px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border);
  background: rgba(6,13,26,.95);
}
.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 0;
}
.nav-mobile a:hover { color: var(--text); }
.nav-mobile .btn-nav { margin-top: 6px; justify-content: center; }

.nav-mobile.open { display: flex; }

/* ─── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(120px + var(--banner-height)) 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.6) 0%, transparent 70%);
  top: -150px; left: -150px;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,148,136,.5) 0%, transparent 70%);
  bottom: -100px; right: -100px;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,.4) 0%, transparent 70%);
  top: 40%; right: 20%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--teal-light);
  background: rgba(13,148,136,.1);
  border: 1px solid rgba(13,148,136,.25);
  border-radius: 99px;
  padding: 6px 14px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-number {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Phone mockup */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 280px;
  background: #4A90D9;
  border-radius: 44px;
  border: 1.5px solid rgba(0,0,0,.10);
  box-shadow:
    0 0 0 6px rgba(0,0,0,.04),
    0 40px 80px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.8);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.phone-screenshot {
  width: 100%;
  display: block;
}

/* Carousel */
.phone-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 10px 0 8px;
  background: rgba(0,0,0,0.25);
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s;
}

.carousel-dot.active {
  width: 18px;
  background: rgba(255,255,255,0.9);
}

.phone-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 320px; height: 480px;
  background: radial-gradient(ellipse at center, rgba(58,142,246,.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: .3; }
  50% { transform: translateY(8px); opacity: .8; }
}

/* ─── FEATURES GRID ─────────────────────────────────────────────── */
.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-lg);
  padding: 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: default;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,.35);
  border-color: rgba(255,255,255,.15);
}

.feature-card-large {
  grid-column: span 2;
}

.feature-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--icon-color) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--icon-color) 30%, transparent);
  display: flex; align-items: center; justify-content: center;
  color: var(--icon-color);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.feature-tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.ftag {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-light);
  background: rgba(13,148,136,.1);
  border: 1px solid rgba(13,148,136,.2);
  border-radius: 99px;
  padding: 3px 10px;
}

/* ─── HOW IT WORKS ──────────────────────────────────────────────── */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s, box-shadow .25s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,.3);
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  padding-top: 64px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.step-number {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, rgba(96,165,250,.4), rgba(45,212,191,.4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-visual { margin-top: auto; }

.step-mock-input {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-route-dots {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 8px 0;
}

.route-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.route-dot span {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 7px;
}
.dot-start span { border-color: rgba(37,99,235,.5); background: rgba(37,99,235,.15); }
.dot-mid span   { border-color: rgba(13,148,136,.5); background: rgba(13,148,136,.15); }
.dot-end span   { border-color: rgba(96,165,250,.5); background: rgba(96,165,250,.15); }

.route-dot-label { font-size: 10px; color: var(--text-muted); font-weight: 500; }

.route-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(37,99,235,.4), rgba(13,148,136,.4));
  margin: 0 6px;
  margin-bottom: 18px;
}

.step-alert {
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: #6EE7B7;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─── PRICING ───────────────────────────────────────────────────── */
.pricing-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.plan-card:hover { transform: translateY(-4px); }

.plan-card-premium {
  background: linear-gradient(145deg, rgba(37,99,235,.18), rgba(13,148,136,.12));
  border-color: rgba(37,99,235,.4);
  box-shadow: 0 0 48px rgba(37,99,235,.15);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 99px;
  white-space: nowrap;
}

.plan-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.plan-price {
  margin: 6px 0 4px;
}

.price-amount {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
}

.price-period {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-muted);
}

.plan-desc {
  font-size: 14px;
  color: var(--text-muted);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.plan-features li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 2px;
}

.plan-features li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-yes {
  color: var(--text);
}
.feature-yes::before {
  background-color: rgba(16,185,129,.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.feature-no {
  color: var(--text-muted);
}
.feature-no::before {
  background-color: rgba(255,255,255,.06);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

.plan-fine-print {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

/* ─── DOWNLOAD ──────────────────────────────────────────────────── */
.section-download {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
  background: var(--bg);
}

.download-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.download-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
}
.download-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,.5) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.download-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,148,136,.45) 0%, transparent 70%);
  bottom: -80px; right: -80px;
}

.download-inner {
  position: relative;
  z-index: 2;
}

.download-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}

.download-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 14px 28px;
  color: var(--text);
  transition: background .2s, transform .2s;
}
.store-btn:hover {
  background: rgba(255,255,255,.17);
  transform: translateY(-2px);
}
.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.store-sub { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.store-name { font-size: 18px; font-weight: 700; line-height: 1.2; }

.download-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── FOOTER ────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
  padding-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 14px;
  display: inline-flex;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 240px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color .2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ─── ANIMATIONS ────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 360px;
    gap: 40px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card-large {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { order: 1; }
  .hero-phone { order: 2; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }

  .steps-grid {
    flex-direction: column;
    max-width: 480px;
  }
  .step-connector {
    padding: 0;
    transform: rotate(90deg);
    align-self: center;
  }

  .pricing-wrapper {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-links { gap: 36px; }

  .nav-links, .btn-nav:not(.nav-mobile .btn-nav) { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card-large {
    grid-column: span 1;
  }

  .phone-frame { width: 240px; }

  .hero { padding: 100px 0 64px; }
}
