/* ═══════════════════════════════════════════════════════════
   NavScape Website — Styles
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --navy-900: #0a0e1a;
  --navy-800: #0f1629;
  --navy-700: #161e35;
  --navy-600: #1c2742;
  --navy-500: #243050;
  --slate-400: #64748b;
  --slate-300: #94a3b8;
  --slate-200: #cbd5e1;
  --white: #f8fafc;
  --accent-blue: #4facfe;
  --accent-cyan: #00f2fe;
  --accent-purple: #7c3aed;
  --gradient-main: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-warm: linear-gradient(135deg, #4facfe 0%, #7c3aed 100%);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy-900);
  color: var(--slate-200);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

a { color: inherit; text-decoration: none; }

/* ── Typography ────────────────────────────────────────── */
h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; color: var(--white); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; color: var(--white); }
h3 { font-size: 1.25rem; font-weight: 700; color: var(--white); }

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

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(79, 172, 254, 0.25);
  border-radius: 100px;
  background: rgba(79, 172, 254, 0.06);
}

.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header p { margin-top: 16px; font-size: 1.1rem; color: var(--slate-400); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 0.95rem; border: none; cursor: pointer; transition: all 0.25s;
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient-main); color: var(--navy-900);
  box-shadow: 0 4px 20px rgba(79, 172, 254, 0.3);
}
.btn-primary:hover { box-shadow: 0 6px 30px rgba(79, 172, 254, 0.45); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,0.06); color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.btn-full { width: 100%; }

/* ── Navbar ────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all 0.35s;
}
.navbar.scrolled {
  background: rgba(10, 14, 26, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-icon { width: 36px; height: 36px; border-radius: 10px; }
.logo-text { font-size: 1.2rem; letter-spacing: 1px; }
.logo-nav { font-weight: 700; color: var(--white); }
.logo-scape { font-weight: 300; color: var(--slate-300); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--slate-300); transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  padding: 8px 20px !important; border-radius: var(--radius-sm);
  background: var(--gradient-main); color: var(--navy-900) !important; font-weight: 600 !important;
}
.nav-cta:hover { box-shadow: 0 4px 20px rgba(79, 172, 254, 0.3); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(79, 172, 254, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 172, 254, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 70%);
}
.glow {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4;
}
.glow-1 { width: 600px; height: 600px; top: -200px; left: -100px; background: rgba(79, 172, 254, 0.15); }
.glow-2 { width: 500px; height: 500px; bottom: -100px; right: -100px; background: rgba(124, 58, 237, 0.12); }
.glow-3 { width: 300px; height: 300px; top: 40%; left: 50%; background: rgba(0, 242, 254, 0.08); }

.hero-inner {
  position: relative; max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-badge {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  background: rgba(79, 172, 254, 0.1); border: 1px solid rgba(79, 172, 254, 0.2);
  font-size: 0.8rem; font-weight: 600; color: var(--accent-blue);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px;
  animation: pulse-badge 3s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79, 172, 254, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(79, 172, 254, 0); }
}
.hero-subtitle { font-size: 1.2rem; color: var(--slate-400); margin-top: 20px; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

.hero-stats { display: flex; align-items: center; gap: 32px; margin-top: 48px; }
.stat { display: flex; flex-direction: column; }
.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--white); }
.stat-label { font-size: 0.8rem; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ── Phone Mockup ──────────────────────────────────────── */
.hero-visual { display: flex; justify-content: center; perspective: 1200px; }
.phone-mockup { position: relative; transform: rotateY(-8deg) rotateX(4deg); transition: transform 0.5s; }
.phone-mockup:hover { transform: rotateY(-2deg) rotateX(1deg); }
.phone-frame {
  width: 280px; height: 560px; background: var(--navy-700);
  border-radius: 36px; padding: 12px; position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.phone-notch {
  width: 100px; height: 24px; background: var(--navy-700); border-radius: 0 0 16px 16px;
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%; background: var(--navy-800); border-radius: 26px;
  overflow: hidden; padding: 40px 16px 16px;
}
.phone-reflection {
  position: absolute; inset: 0; border-radius: 36px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.mock-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mock-logo { display: flex; gap: 2px; }
.mock-n { font-weight: 800; font-size: 16px; color: var(--accent-blue); }
.mock-s { font-weight: 300; font-size: 16px; color: var(--slate-300); }
.mock-icons { display: flex; gap: 6px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--slate-400); }

.mock-networth { text-align: center; margin-bottom: 16px; }
.mock-label { display: block; font-size: 11px; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.1em; }
.mock-value {
  display: block; font-size: 28px; font-weight: 800; color: var(--white);
  margin: 4px 0; letter-spacing: -0.02em;
}
.mock-change { display: block; font-size: 12px; color: #2dd36f; font-weight: 600; }

.mock-chart { margin: 0 -16px 20px; height: 70px; }
.chart-svg { width: 100%; height: 100%; }
.chart-line { stroke-dasharray: 500; stroke-dashoffset: 500; animation: drawLine 2s ease forwards 0.5s; }
.chart-area { opacity: 0; animation: fadeIn 1s ease forwards 1.5s; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }

.mock-cards { display: flex; gap: 8px; margin-bottom: 16px; }
.mock-card {
  flex: 1; background: var(--navy-600); border-radius: 10px; padding: 10px 8px;
  text-align: center; border: 1px solid rgba(255,255,255,0.04);
}
.mc-icon { display: block; font-size: 16px; margin-bottom: 4px; }
.mc-label { display: block; font-size: 9px; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.05em; }
.mc-val { display: block; font-size: 14px; font-weight: 700; color: var(--white); margin-top: 2px; }

.mock-fire { background: var(--navy-600); border-radius: 10px; padding: 12px; border: 1px solid rgba(255,255,255,0.04); }
.fire-bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.fire-fill { height: 100%; width: 0%; background: var(--gradient-main); border-radius: 4px; animation: fillBar 2s ease forwards 1s; }
@keyframes fillBar { to { width: 67%; } }
.fire-text { display: flex; justify-content: space-between; margin-top: 6px; font-size: 11px; }
.fire-text span:first-child { color: var(--slate-400); }
.fire-pct { font-weight: 700; color: var(--accent-blue); }

/* ── Scroll indicator ──────────────────────────────────── */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.2); border-radius: 12px;
  display: flex; justify-content: center;
}
.scroll-dot {
  width: 4px; height: 8px; background: var(--accent-blue); border-radius: 4px;
  margin-top: 6px; animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(12px); opacity: 0.3; } }

/* ── Features ──────────────────────────────────────────── */
.features { padding: 120px 0; position: relative; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--navy-800); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); padding: 32px 28px; transition: all 0.35s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-main); opacity: 0; transition: opacity 0.35s;
}
.feature-card:hover { border-color: rgba(79, 172, 254, 0.15); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-card.featured {
  grid-row: span 2; display: flex; flex-direction: column;
  background: linear-gradient(160deg, var(--navy-700) 0%, var(--navy-800) 100%);
  border-color: rgba(79, 172, 254, 0.12);
}
.feature-card.featured::before { opacity: 1; }

.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: rgba(79, 172, 254, 0.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; color: var(--accent-blue); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--slate-400); font-size: 0.95rem; line-height: 1.65; }
.feature-card.featured p { flex: 1; }

.feature-tags { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.feature-tags span {
  font-size: 0.75rem; font-weight: 500; padding: 4px 10px; border-radius: 100px;
  background: rgba(79, 172, 254, 0.08); color: var(--accent-blue);
  border: 1px solid rgba(79, 172, 254, 0.12);
}

/* ── How It Works ──────────────────────────────────────── */
.how-it-works { padding: 120px 0; background: var(--navy-800); }
.steps { max-width: 700px; margin: 0 auto; }
.step { display: flex; gap: 28px; align-items: flex-start; }
.step-number {
  font-size: 2.5rem; font-weight: 900; color: transparent;
  background: var(--gradient-main); -webkit-background-clip: text; background-clip: text;
  line-height: 1; min-width: 60px;
}
.step-content h3 { margin-bottom: 8px; }
.step-content p { color: var(--slate-400); font-size: 0.95rem; }
.step-connector {
  width: 2px; height: 48px; margin-left: 29px;
  background: linear-gradient(to bottom, rgba(79, 172, 254, 0.3), rgba(79, 172, 254, 0.05));
}

/* ── Integrations ──────────────────────────────────────── */
.integrations { padding: 120px 0; }
.integration-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.integration-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--navy-800); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); padding: 32px 20px; transition: all 0.3s;
}
.integration-card:hover { border-color: rgba(79, 172, 254, 0.15); transform: translateY(-3px); }
.int-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(79, 172, 254, 0.08); display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.int-icon svg { width: 24px; height: 24px; color: var(--accent-blue); }
.int-name { font-weight: 700; color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.int-desc { font-size: 0.85rem; color: var(--slate-400); }

/* ── Platforms ─────────────────────────────────────────── */
.platforms { padding: 120px 0; background: var(--navy-800); overflow: hidden; }
.platforms-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.platforms-text p { color: var(--slate-400); font-size: 1.05rem; margin-top: 16px; max-width: 440px; }
.platform-badges { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.platform-badge {
  display: flex; align-items: center; gap: 12px; padding: 12px 20px;
  background: var(--navy-700); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md); color: var(--white);
}
.platform-badge svg { flex-shrink: 0; }
.pb-title { display: block; font-weight: 600; font-size: 0.9rem; }
.pb-sub { display: block; font-size: 0.75rem; color: var(--slate-400); }

.device-stack { position: relative; height: 340px; }
.device-laptop {
  position: absolute; top: 0; left: 0; width: 360px; height: 240px;
  background: var(--navy-600); border-radius: 12px; padding: 8px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
}
.laptop-screen { width: 100%; height: 100%; background: var(--navy-900); border-radius: 6px; overflow: hidden; }
.mock-dash { display: flex; height: 100%; }
.md-sidebar { width: 50px; background: var(--navy-800); padding: 12px 8px; display: flex; flex-direction: column; gap: 8px; }
.md-item { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.08); }
.md-item.active { background: var(--accent-blue); opacity: 0.6; }
.md-main { flex: 1; padding: 16px; display: flex; align-items: flex-end; gap: 8px; }
.md-chart-bar { flex: 1; height: 60%; background: linear-gradient(to top, rgba(79, 172, 254, 0.4), rgba(79, 172, 254, 0.15)); border-radius: 4px 4px 0 0; }
.md-chart-bar.short { height: 35%; }
.md-chart-bar.tall { height: 85%; }
.md-chart-bar.med { height: 55%; }

.device-phone-small {
  position: absolute; bottom: 0; right: 20px; width: 130px; height: 240px;
  background: var(--navy-600); border-radius: 20px; padding: 8px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  z-index: 2;
}
.dps-screen { width: 100%; height: 100%; background: var(--navy-900); border-radius: 14px; padding: 20px 12px; }
.dps-bar { height: 6px; border-radius: 3px; background: rgba(79, 172, 254, 0.3); width: 60%; margin-bottom: 16px; }
.dps-circle {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px;
  border: 4px solid var(--accent-blue); border-top-color: transparent;
  animation: spin 3s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.dps-lines { display: flex; flex-direction: column; gap: 6px; }
.dps-lines span { display: block; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.06); }
.dps-lines span:nth-child(2) { width: 80%; }
.dps-lines span:nth-child(3) { width: 60%; }

/* ── Waitlist ──────────────────────────────────────────── */
.waitlist { padding: 120px 0; position: relative; }
.waitlist::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px; background: radial-gradient(ellipse, rgba(79, 172, 254, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.waitlist-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.waitlist-content p { color: var(--slate-400); margin-top: 16px; max-width: 420px; line-height: 1.7; }

.waitlist-perks { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.perk { display: flex; align-items: center; gap: 10px; color: var(--slate-300); font-size: 0.95rem; }
.perk svg { color: #2dd36f; flex-shrink: 0; }

.waitlist-form-wrap { position: relative; }
.waitlist-form {
  background: var(--navy-800); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl); padding: 40px; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.waitlist-form h3 { font-size: 1.4rem; margin-bottom: 28px; text-align: center; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600; color: var(--slate-300);
  margin-bottom: 6px;
}
.required { color: var(--accent-blue); }
.optional { font-weight: 400; color: var(--slate-400); font-size: 0.8rem; }

.form-group input {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--navy-700); border: 1px solid rgba(255,255,255,0.08);
  color: var(--white); font-size: 0.95rem; font-family: inherit;
  transition: all 0.25s; outline: none;
}
.form-group input::placeholder { color: var(--slate-400); }
.form-group input:focus { border-color: var(--accent-blue); box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.12); }

.waitlist-form .cf-turnstile { margin: 16px 0 8px; display: flex; justify-content: center; }
.waitlist-form .btn { margin-top: 8px; font-size: 1rem; padding: 16px; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--slate-400); margin-top: 14px; }

.spinner { animation: spin 0.8s linear infinite; transform-origin: center; }

.form-success {
  position: absolute; inset: 0; background: var(--navy-800);
  border: 1px solid rgba(79, 172, 254, 0.2); border-radius: var(--radius-xl);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px;
}
.success-icon svg { width: 64px; height: 64px; color: #2dd36f; margin-bottom: 20px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 10px; }
.form-success p { color: var(--slate-400); }

/* ── Footer ────────────────────────────────────────────── */
.footer { padding: 80px 0 32px; background: var(--navy-800); border-top: 1px solid rgba(255,255,255,0.04); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 2fr; gap: 80px; margin-bottom: 48px; }
.footer-brand p { color: var(--slate-400); margin-top: 16px; max-width: 320px; font-size: 0.9rem; line-height: 1.7; }
.footer-brand .nav-logo { margin-bottom: 4px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.9rem; color: var(--slate-400); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; text-align: center; font-size: 0.8rem; color: var(--slate-400); }

/* ── Reveal animation ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-mockup { transform: rotateY(0) rotateX(4deg); }
  .phone-mockup:hover { transform: rotateY(0) rotateX(1deg); }
  .phone-frame { width: 240px; height: 480px; }
  .platforms-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .platforms-text p { margin-left: auto; margin-right: auto; }
  .platform-badges { justify-content: center; }
  .platforms-visual { display: flex; justify-content: center; }
  .waitlist-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .waitlist-content p { margin-left: auto; margin-right: auto; }
  .waitlist-perks { align-items: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(10, 14, 26, 0.96); backdrop-filter: blur(20px); padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; width: 100%; }
  .nav-cta { margin: 8px 24px; width: calc(100% - 48px) !important; text-align: center; border-radius: var(--radius-sm) !important; }
  .mobile-toggle { display: block; }
  .mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-toggle.open span:nth-child(2) { opacity: 0; }
  .mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card.featured { grid-row: span 1; }
  .integration-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .scroll-indicator { display: none; }

  .device-laptop { width: 280px; height: 190px; }
  .device-phone-small { width: 110px; height: 200px; right: 0; }
  .device-stack { height: 280px; display: flex; justify-content: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .hero { padding: 100px 0 60px; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 1.4rem; }
  .integration-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; text-align: center; }
  .waitlist-form { padding: 28px 20px; }
  .platform-badges { flex-direction: column; align-items: center; }
}
