:root {
  --bg: #0B1120;
  --bg-card: #111827;
  --bg-card-2: #1a2234;
  --fg: #F9FAFB;
  --fg-muted: #9CA3AF;
  --accent: #FF6B35;
  --accent-dim: rgba(255, 107, 53, 0.12);
  --border: rgba(255, 255, 255, 0.07);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(11, 17, 32, 0.85);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 32px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 24px;
}
.headline-accent { color: var(--accent); }
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(255,107,53,0.3);
  cursor: pointer;
}
.cta-btn:hover {
  background: #e85a28;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}
.cta-btn:active { transform: translateY(0); }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.cta-phone:hover { opacity: 0.8; }
.hero-profiles {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.profile-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px 6px 6px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
a.profile-chip:hover {
  border-color: rgba(255,107,53,0.4);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.chip-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-head);
}
.c-red { background: #DC2626; color: white; }
.c-blue { background: #2563EB; color: white; }
.c-green { background: #059669; color: white; }
.chip-info { display: flex; flex-direction: column; }
.chip-name { font-size: 13px; font-weight: 600; color: var(--fg); }
.chip-meta { font-size: 11px; color: var(--fg-muted); }

/* Phone Mockup */
.phone-mockup {
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: 280px;
  background: #1a2234;
  border-radius: 36px;
  padding: 16px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,107,53,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
}
.phone-notch {
  width: 80px; height: 24px;
  background: #0f172a;
  border-radius: 20px;
  margin: 0 auto 12px;
}
.app-screen {
  background: #0B1120;
  border-radius: 24px;
  overflow: hidden;
  padding-bottom: 12px;
}
.app-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border);
}
.app-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--fg); }
.app-subtitle { font-size: 11px; color: var(--fg-muted); margin-top: 2px; }
.map-area {
  height: 140px;
  position: relative;
  background: #0d1a2d;
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,53,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.map-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pin-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #374151;
  border: 2px solid #1F2937;
}
.map-pin.active .pin-dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.2);
}
.pin-label {
  font-size: 9px;
  background: #1F2937;
  color: var(--fg);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}
.map-pin.active .pin-label { background: var(--accent); color: #000; }
.pin-1 { top: 35%; left: 20%; }
.pin-2 { top: 55%; left: 45%; }
.pin-3 { top: 30%; right: 20%; }
.map-you { position: absolute; bottom: 20%; left: 45%; }
.match-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  margin: 0 10px 6px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.match-card.selected {
  border-color: rgba(255,107,53,0.5);
  background: rgba(255,107,53,0.06);
}
.match-left { display: flex; align-items: center; gap: 8px; }
.match-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #2563EB;
  color: white;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.match-info {}
.match-name { font-size: 12px; font-weight: 600; color: var(--fg); }
.match-type { font-size: 10px; color: var(--fg-muted); }
.match-right { text-align: right; }
.match-badge {
  font-size: 9px;
  background: rgba(255,107,53,0.2);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.match-avail { font-size: 10px; color: #059669; font-weight: 500; margin-top: 2px; }

/* Stats */
.stats {
  padding: 48px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label { font-size: 13px; color: var(--fg-muted); margin-top: 4px; }
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* How It Works */
.how { padding: 100px 32px; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 64px;
  max-width: 600px;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.step { flex: 1; }
.step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.step-icon {
  width: 64px; height: 64px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.step p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }
.step-arrow {
  padding-top: 24px;
  flex-shrink: 0;
}

/* Features */
.features {
  padding: 100px 32px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(255,107,53,0.3); }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--accent-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* Trust */
.trust { padding: 80px 32px; }
.trust-inner { max-width: 1200px; margin: 0 auto; }
.trust-quote {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-head);
  font-size: 80px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 24px;
}
blockquote {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 20px;
}
.quote-attr { font-size: 14px; color: var(--fg-muted); }
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
}

/* Closing */
.closing { padding: 100px 32px 80px; }
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-accent { color: var(--accent); }
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.closing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
  cursor: pointer;
  margin-bottom: 64px;
}
.closing-cta:hover {
  background: #e85a28;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,53,0.45);
}
.closing-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.road-line {
  height: 2px;
  width: 100px;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 20px, transparent 20px, transparent 32px);
  opacity: 0.4;
}
.car-icon { animation: float 3s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Footer */
.footer {
  padding: 48px 32px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand { margin-bottom: 32px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; color: var(--fg-muted); max-width: 360px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .stats-inner { flex-wrap: wrap; gap: 32px; }
  .stat-divider { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding: 80px 20px 60px; }
  .trust-badges { gap: 24px; }
}