/* ══════════════════════════════════════════════
   nYtevibe — Marketing Website Styles
   Design System: Official Brand Guide
   ══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand */
  --primary-purple: #8A2BE2;
  --neon-purple: #9D4EDD;
  --muted-lavender: #6B5B7A;
  --accent-cyan: #00F5FF;

  /* Backgrounds */
  --bg-black: #050505;
  --surface-dark: #121218;
  --bg-elevated: #1A1A2E;

  /* Glass */
  --glass-white: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.10);
  --glass-blur: 12px;

  /* Status */
  --live-red: #FF3D00;
  --status-green: #22C55E;
  --status-amber: #F59E0B;

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);
  --text-disabled: rgba(255, 255, 255, 0.2);

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #8A2BE2 0%, #00F5FF 100%);
  --gradient-neon: linear-gradient(135deg, #00E5FF 0%, #7C4DFF 50%, #E040FB 100%);
  --gradient-flame: linear-gradient(90deg, #06B6D4 0%, #F59E0B 50%, #FF3D00 100%);

  /* Glow */
  --glow-cyan: 0 0 15px rgba(0, 245, 255, 0.2), 0 0 30px rgba(0, 245, 255, 0.1);
  --glow-purple: 0 0 15px rgba(138, 43, 226, 0.2), 0 0 30px rgba(138, 43, 226, 0.1);

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Layout */
  --max-width: 1200px;
  --content-padding: 20px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 200ms ease;
  --transition-slow: 300ms ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-black);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ── Typography ───────────────────────────────── */

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.5px; line-height: 1.2; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 700; letter-spacing: -0.3px; line-height: 1.3; }
h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.2px; line-height: 1.3; }
h4 { font-size: 1.125rem; font-weight: 600; line-height: 1.4; }
p { color: var(--text-secondary); font-size: 1rem; line-height: 1.5; }

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

.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── Layout ───────────────────────────────────── */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

section {
  padding: 100px 0;
  position: relative;
}

/* ── Navigation ───────────────────────────────── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-3) 0;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition-normal), border-color var(--transition-normal);
}

nav.scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-bottom-color: var(--glass-border);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-links a:hover { color: var(--accent-cyan); }

.nav-cta {
  background: var(--gradient-brand) !important;
  color: var(--text-primary) !important;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  transition: opacity var(--transition-normal), transform 100ms ease;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.nav-cta:active {
  transform: translateY(0);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Hero Section ─────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

/* Hero background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.35;
  filter: saturate(1.2);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5, 5, 5, 0.3) 0%, rgba(5, 5, 5, 0.6) 50%, var(--bg-black) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(138, 43, 226, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(0, 245, 255, 0.15) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin-bottom: var(--space-6);
}

.hero-content .tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-10);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--gradient-brand);
  color: var(--text-primary);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition-normal), transform 100ms ease;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background var(--transition-normal);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.10);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* ── Phone Mockup ─────────────────────────────── */

.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--surface-dark);
  border-radius: 36px;
  border: 2px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), var(--glow-cyan);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: var(--bg-black);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  z-index: 2;
}

.phone-screen {
  position: absolute;
  top: 28px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #0A0A12;
}

/* ── Phone App UI ─────────────────────────────── */

.app-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px 2px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.statusbar-icons {
  display: flex;
  gap: 4px;
  font-size: 8px;
  align-items: center;
}

.sb-batt { font-size: 10px; }

.app-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 12px 6px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.app-topbar-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.app-topbar-n {
  font-family: 'Arial Black', Impact, sans-serif;
  font-size: 16px;
  font-weight: 900;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 6px rgba(0, 245, 255, 0.4));
  line-height: 1;
}

.app-topbar-name {
  font-size: 12px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.3px;
}

.app-topbar-filters {
  display: flex;
  gap: 4px;
}

.filter-pill {
  font-size: 8px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}

.filter-pill.active {
  color: var(--accent-cyan);
  border-color: rgba(0, 245, 255, 0.3);
  background: rgba(0, 245, 255, 0.08);
}

/* ── Map Area ──────────────────────────────────── */

.app-map {
  flex: 1;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 55% 45%, rgba(138, 43, 226, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(0, 245, 255, 0.04) 0%, transparent 50%),
    #0A0A12;
}

.map-roads {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-hood-label {
  position: absolute;
  font-size: 7px;
  font-weight: 500;
  color: rgba(255,255,255,0.15);
  letter-spacing: 1px;
  text-transform: uppercase;
  pointer-events: none;
}

/* ── Venue Dots ──────────────────────────────── */

.vdot {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.vdot-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.vdot-core {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.vdot-label {
  font-size: 6px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.6);
  padding: 1px 4px;
  border-radius: 3px;
  margin-top: 2px;
  white-space: nowrap;
  max-width: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 2;
}

/* -- Busy (Red) -- */
.vdot.busy { z-index: 80; }
.vdot.busy .vdot-glow {
  width: 28px; height: 28px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 61, 0, 0.25);
  filter: blur(4px);
  animation: dot-pulse-red 2s ease-in-out infinite;
}
.vdot.busy .vdot-core {
  width: 14px; height: 14px;
  background: #FF3D00;
  border: 1.5px solid rgba(255, 61, 0, 0.8);
  box-shadow: 0 0 8px rgba(255, 61, 0, 0.5);
}

/* -- Trending (Fire) -- */
.vdot.trending { z-index: 100; }
.vdot.trending .vdot-glow {
  width: 36px; height: 36px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 61, 0, 0.3);
  filter: blur(6px);
  animation: dot-pulse-red 1.5s ease-in-out infinite;
}
.vdot.trending .vdot-core {
  width: 20px; height: 20px;
  background: #FF3D00;
  border: 1.5px solid rgba(255, 61, 0, 0.9);
  box-shadow: 0 0 12px rgba(255, 61, 0, 0.6);
  font-size: 9px;
  line-height: 1;
}

/* -- Steady (Amber) -- */
.vdot.steady { z-index: 60; }
.vdot.steady .vdot-glow {
  width: 22px; height: 22px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(245, 158, 11, 0.2);
  filter: blur(3px);
}
.vdot.steady .vdot-core {
  width: 11px; height: 11px;
  background: #F59E0B;
  border: 1.5px solid rgba(245, 158, 11, 0.7);
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.35);
}

/* -- Chill (Green) -- */
.vdot.chill { z-index: 40; }
.vdot.chill .vdot-glow {
  width: 18px; height: 18px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(34, 197, 94, 0.18);
  filter: blur(3px);
}
.vdot.chill .vdot-core {
  width: 9px; height: 9px;
  background: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.6);
  box-shadow: 0 0 4px rgba(34, 197, 94, 0.3);
}

/* -- Ghost (Grey) -- */
.vdot.ghost { z-index: 10; }
.vdot.ghost .vdot-core {
  width: 7px; height: 7px;
  background: #8B95A5;
  border: 1px solid #B0BEC5;
  box-shadow: 0 0 3px rgba(160, 174, 192, 0.19);
  opacity: 0.7;
}

/* -- Clip Badge -- */
.vdot-clip {
  position: absolute;
  top: -3px;
  right: -5px;
  width: 10px;
  height: 10px;
  background: var(--accent-cyan);
  border-radius: 50%;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5px;
  color: white;
  z-index: 3;
}

/* Dot Animations */
@keyframes dot-pulse-red {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
}

/* ── User Marker ("You Are Here") ─────────────── */

.user-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 150;
}

.user-dot {
  width: 12px;
  height: 12px;
  background: var(--accent-cyan);
  border: 2px solid white;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.user-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 245, 255, 0.15);
  animation: user-pulse-ring 2.5s ease-out infinite;
}

@keyframes user-pulse-ring {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* ── Off-Screen Compass Pointers ─────────────── */

.compass-ptr {
  position: absolute;
  z-index: 90;
}

.compass-ptr.ptr-top {
  top: 4px;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid #F59E0B;
  filter: drop-shadow(0 0 3px rgba(245, 158, 11, 0.5));
}

.compass-ptr.ptr-right {
  right: 4px;
  width: 0; height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #FF3D00;
  filter: drop-shadow(0 0 3px rgba(255, 61, 0, 0.5));
}

/* ── Mini Venue Card ─────────────────────────── */

.app-minicard {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 18, 24, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px 14px 0 0;
  padding: 8px 10px 10px;
  z-index: 200;
}

.app-minicard::before {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin: 0 auto 6px;
}

.minicard-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}

.minicard-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.minicard-dot.busy-color {
  background: #FF3D00;
  box-shadow: 0 0 6px rgba(255, 61, 0, 0.5);
}

.minicard-info strong {
  font-size: 9px;
  font-weight: 700;
  color: white;
  display: block;
  line-height: 1.2;
}

.minicard-sub {
  font-size: 7px;
  color: rgba(255,255,255,0.4);
}

.minicard-stats {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.mc-stat {
  font-size: 7px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 1px 5px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
}

.mc-stat.mc-busy {
  color: #FF3D00;
  background: rgba(255, 61, 0, 0.12);
}

.minicard-actions {
  display: flex;
  gap: 5px;
}

.mc-btn {
  flex: 1;
  text-align: center;
  font-size: 7px;
  font-weight: 700;
  padding: 4px 0;
  border-radius: 6px;
  letter-spacing: 0.2px;
}

.mc-btn-vibe {
  background: rgba(0, 245, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 245, 255, 0.2);
}

.mc-btn-enter {
  background: var(--gradient-brand);
  color: white;
}

/* ── Floating Badges ──────────────────────────── */

.floating-badge {
  position: absolute;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
  white-space: nowrap;
}

.floating-badge.badge-1 { top: 10%; right: -20px; animation-delay: 0s; }
.floating-badge.badge-2 { bottom: 25%; left: -30px; animation-delay: 1.5s; }
.floating-badge.badge-3 { bottom: 10%; right: -10px; animation-delay: 3s; }

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  display: inline-block;
  flex-shrink: 0;
}

.badge-dot.live {
  background: var(--live-red);
  box-shadow: 0 0 8px var(--live-red);
  animation: pulse-glow-red 2s ease-in-out infinite;
}
.badge-dot.cyan {
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
}
.badge-dot.purple {
  background: var(--neon-purple);
  box-shadow: 0 0 8px var(--neon-purple);
}
.badge-dot.green {
  background: var(--status-green);
  box-shadow: 0 0 8px var(--status-green);
}

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

@keyframes pulse-glow-red {
  0%, 100% { box-shadow: 0 0 5px rgba(255, 61, 0, 0.4); }
  50% { box-shadow: 0 0 12px rgba(255, 61, 0, 0.8); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(0, 245, 255, 0.4); }
  50% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.8), 0 0 40px rgba(0, 245, 255, 0.3); }
}

.text-cyan { color: var(--accent-cyan); }
.text-purple { color: var(--neon-purple); }
.text-green { color: var(--status-green); }

/* ── Features Section ─────────────────────────── */

.features {
  background: var(--bg-black);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header p {
  max-width: 520px;
  margin: var(--space-4) auto 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.feature-card {
  background: var(--glass-white);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  transition: transform var(--transition-slow), border-color var(--transition-slow), box-shadow var(--transition-slow);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 245, 255, 0.15);
  box-shadow: var(--glow-cyan);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: var(--space-5);
}

.feature-icon.cyan { background: rgba(0, 245, 255, 0.1); }
.feature-icon.purple { background: rgba(138, 43, 226, 0.1); }
.feature-icon.red { background: rgba(255, 61, 0, 0.1); }
.feature-icon.green { background: rgba(34, 197, 94, 0.1); }

.feature-card h3 { margin-bottom: var(--space-3); }
.feature-card p { font-size: 14px; }

/* ── Lifestyle Showcase ──────────────────────────── */

.lifestyle {
  background: var(--bg-black);
  overflow: hidden;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lifestyle-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.lifestyle-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  display: block;
}

.lifestyle-image-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(138, 43, 226, 0.2);
  box-shadow:
    0 0 40px rgba(138, 43, 226, 0.15),
    0 0 80px rgba(0, 245, 255, 0.08),
    inset 0 0 60px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.lifestyle-content h2 {
  margin-bottom: var(--space-6);
}

.lifestyle-text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: var(--space-8);
  max-width: 440px;
}

.lifestyle-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

.highlight-item .badge-dot {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

/* ── How It Works ─────────────────────────────── */

.how-it-works {
  background: var(--bg-black);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 auto var(--space-5);
}

.step h3 { margin-bottom: var(--space-2); font-size: 1.1rem; }
.step p { font-size: 14px; }

/* ── Stats ────────────────────────────────────── */

.stats {
  background: var(--bg-black);
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-10);
  text-align: center;
}

.stat-item h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  font-size: 14px;
  margin-top: var(--space-2);
}

/* ── Neighborhoods ────────────────────────────── */

.neighborhoods {
  background: var(--bg-black);
}

.hood-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.hood-card {
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  text-align: center;
  transition: border-color var(--transition-slow), transform var(--transition-normal);
}

.hood-card:hover {
  border-color: rgba(0, 245, 255, 0.2);
  transform: translateY(-2px);
}

.hood-card h4 { font-size: 1rem; }
.hood-card p { font-size: 13px; color: var(--text-muted); margin-top: var(--space-1); }

/* ── Download CTA ─────────────────────────────── */

.download-cta {
  text-align: center;
  background: var(--bg-black);
  position: relative;
}

.download-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.download-cta .container {
  position: relative;
  z-index: 1;
}

.download-cta h2 { margin-bottom: var(--space-4); }
.download-cta > .container > p { margin-bottom: var(--space-10); }

.store-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--text-primary);
  color: var(--bg-black);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 100ms ease, box-shadow var(--transition-normal);
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.store-btn svg { width: 24px; height: 24px; }

.store-btn .store-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.store-btn .store-label small {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.6;
}

/* ── Footer ───────────────────────────────────── */

footer {
  background: var(--bg-black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-12) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.footer-brand p {
  font-size: 14px;
  margin-top: var(--space-3);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  padding: 3px 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover { color: var(--accent-cyan); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom a:hover { color: var(--accent-cyan); }

.social-links {
  display: flex;
  gap: var(--space-4);
}

/* ── Responsive ───────────────────────────────── */

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-content .tagline { margin: 0 auto var(--space-10); }
  .hero-actions { justify-content: center; }
  .lifestyle-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .lifestyle-text { margin: 0 auto var(--space-8); }
  .lifestyle-image img { height: 400px; }
  .lifestyle-highlights { align-items: center; }
  .lifestyle-content .btn-primary { margin: 0 auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hood-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(var(--glass-blur));
    padding: var(--space-6);
    gap: var(--space-5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .mobile-toggle { display: block; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hood-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
  .phone-mockup { width: 220px; height: 440px; }
  .floating-badge { display: none; }
  .lifestyle-image img { height: 350px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .store-buttons { flex-direction: column; align-items: center; }
  .store-btn { width: 240px; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .hood-grid { grid-template-columns: 1fr 1fr; }
}
