/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #09090b;
  color: #e4e4e7;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* ── Particles Canvas ── */
#particles-canvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.4;
}

/* ── Gradient Text ── */
.gradient-text {
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 40%, #f472b6 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; border: none; border-radius: 14px;
  cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none; position: relative;
}
.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  color: #fff;
}
.btn-glow {
  box-shadow: 0 0 30px rgba(99,102,241,0.4), 0 0 60px rgba(139,92,246,0.15);
}
.btn-glow:hover {
  box-shadow: 0 0 50px rgba(99,102,241,0.6), 0 0 100px rgba(139,92,246,0.25);
  transform: translateY(-2px) scale(1.02);
}
.btn-glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #d4d4d8;
  backdrop-filter: blur(12px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(99,102,241,0.5);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: #a1a1aa;
  border: 1px solid #27272a;
}
.btn-ghost:hover { border-color: #6366f1; color: #e4e4e7; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(9,9,11,0.6); backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(9,9,11,0.9);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: #71717a; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #e4e4e7; }
.logo { font-size: 1.25rem; font-weight: 800; display: flex; align-items: center; gap: 4px; }
.logo-icon { font-size: 1.4rem; }
.logo-accent { color: #818cf8; }
.nav-cta {
  padding: 10px 22px; border-radius: 12px; font-size: 0.875rem; font-weight: 600;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff; transition: all 0.3s;
}
.nav-cta:hover { box-shadow: 0 0 25px rgba(99,102,241,0.5); transform: translateY(-1px); }

/* ── Hero ── */
.hero {
  position: relative; padding: 160px 0 80px; text-align: center;
  overflow: hidden; min-height: 100vh;
}
.hero-video-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}
.hero-video-bg video {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.15;
  filter: blur(2px);
}
.hero-video-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(9,9,11,0.4) 0%, rgba(9,9,11,0.95) 80%, #09090b 100%);
}
.hero-inner { position: relative; z-index: 2; }

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 999px;
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2);
  font-size: 0.85rem; font-weight: 500; color: #a5b4fc; margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.animate-float { animation: float 3s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Hero Title */
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 900;
  line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 24px;
}
.title-line { display: block; }

.hero-sub {
  max-width: 580px; margin: 0 auto 40px; font-size: 1.15rem;
  color: #a1a1aa; line-height: 1.75;
}
.hero-cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero Glows */
.hero-glow {
  position: absolute; top: -300px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 60%);
  pointer-events: none; z-index: 1;
}
.hero-glow-2 {
  position: absolute; top: 0; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,85,247,0.08) 0%, transparent 60%);
  pointer-events: none; z-index: 1;
}

/* Social Proof */
.social-proof { display: flex; align-items: center; justify-content: center; gap: 12px; }
.avatars { display: flex; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.75rem; font-weight: 700; color: #fff;
  border: 2px solid #09090b; margin-left: -8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.avatar:first-child { margin-left: 0; }
.social-text { font-size: 0.875rem; color: #71717a; }
.social-text strong { color: #e4e4e7; }

/* ── 3D Dashboard Mockup ── */
.hero-3d-scene {
  perspective: 1200px; margin-top: 60px;
  position: relative; z-index: 2;
}
.dashboard-mockup {
  max-width: 800px; margin: 0 auto;
  background: rgba(17,17,19,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden;
  transform: rotateX(8deg) rotateY(0deg) scale(0.95);
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  box-shadow:
    0 25px 50px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 80px rgba(99,102,241,0.08);
}
.mockup-header {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: rgba(24,24,27,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-title { font-size: 0.75rem; color: #52525b; font-weight: 500; }

.mockup-body { display: flex; min-height: 280px; }
.mockup-sidebar {
  width: 160px; background: rgba(15,15,17,0.6);
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 12px 8px;
}
.mockup-nav-item {
  padding: 8px 12px; border-radius: 8px; font-size: 0.75rem;
  color: #71717a; margin-bottom: 4px; transition: all 0.2s;
}
.mockup-nav-item.active {
  background: rgba(99,102,241,0.15); color: #a5b4fc;
}
.mockup-content { flex: 1; padding: 16px; }
.mockup-stats-row { display: flex; gap: 12px; margin-bottom: 16px; }
.mockup-stat {
  flex: 1; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 10px 12px; text-align: center;
}
.mockup-stat-num {
  font-size: 1.1rem; font-weight: 800; color: #e4e4e7;
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.mockup-stat-label { font-size: 0.6rem; color: #52525b; margin-top: 2px; }

.mockup-chart {
  display: flex; align-items: flex-end; gap: 8px; height: 120px;
  padding: 12px; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05); border-radius: 10px;
}
.chart-bar {
  flex: 1; background: linear-gradient(180deg, #6366f1, #4f46e5);
  border-radius: 4px 4px 0 0; opacity: 0.6;
  transition: opacity 0.3s;
  animation: chart-grow 1.5s ease-out forwards;
}
.chart-bar.active { opacity: 1; background: linear-gradient(180deg, #8b5cf6, #6366f1); }
@keyframes chart-grow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); transform-origin: bottom; }
}

/* ── Logos (Infinite Scroll) ── */
.logos-section {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative; z-index: 2;
}
.logos-label { text-align: center; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: #3f3f46; margin-bottom: 24px; }
.logos-scroll { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent); }
.logos-track {
  display: flex; gap: 64px; width: max-content;
  animation: scroll-logos 20s linear infinite;
}
@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-placeholder { font-size: 1.1rem; font-weight: 700; color: #27272a; letter-spacing: 0.02em; white-space: nowrap; }

/* ── Section Header ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-badge {
  display: inline-block; padding: 5px 16px; border-radius: 999px; font-size: 0.78rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  background: rgba(99,102,241,0.08); color: #818cf8; margin-bottom: 16px;
  border: 1px solid rgba(99,102,241,0.15);
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 14px;
}
.section-header p { color: #a1a1aa; font-size: 1.05rem; line-height: 1.7; }

/* ── Features (3D Tilt Cards) ── */
.features { padding: 120px 0; position: relative; z-index: 2; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  background: rgba(17,17,19,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 36px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
  backdrop-filter: blur(10px);
}
.feature-card:hover {
  border-color: rgba(99,102,241,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 60px rgba(99,102,241,0.08);
}
.feature-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(139,92,246,0.1));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon { font-size: 1.6rem; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: #a1a1aa; font-size: 0.93rem; line-height: 1.65; }

/* Card Shine Effect */
.card-shine {
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.feature-card:hover .card-shine { left: 100%; }

/* ── How It Works (3D Steps) ── */
.how { padding: 120px 0; position: relative; z-index: 2; }
.steps-3d { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }

.step-card {
  display: flex; gap: 24px; align-items: center;
  background: rgba(17,17,19,0.5);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 32px;
  transition: all 0.4s;
  position: relative;
  backdrop-filter: blur(8px);
}
.step-card:hover {
  border-color: rgba(99,102,241,0.3);
  transform: translateX(8px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.step-num-3d {
  position: relative; flex-shrink: 0;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: #fff;
}
.step-ring {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(99,102,241,0.3);
  animation: ring-pulse 2.5s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0; }
}

.step-content { flex: 1; }
.step-content h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.step-content p { color: #a1a1aa; font-size: 0.93rem; line-height: 1.6; }

.step-visual {
  flex-shrink: 0; width: 120px; height: 80px;
  position: relative; display: flex; align-items: center; justify-content: center;
}

/* Mini floating cards for step 1 */
.mini-card {
  position: absolute; padding: 6px 12px; border-radius: 8px;
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2);
  font-size: 0.7rem; color: #a5b4fc; white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.mc-1 { top: 0; left: 0; animation-delay: 0s; }
.mc-2 { top: 25px; right: 0; animation-delay: 0.5s; }
.mc-3 { bottom: 0; left: 10px; animation-delay: 1s; }

/* Typing animation for step 2 */
.typing-animation {
  background: rgba(17,17,19,0.8); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 8px 12px; font-size: 0.7rem; color: #71717a;
  overflow: hidden; white-space: nowrap; max-width: 120px;
}
.typing-text {
  animation: typing 4s steps(35) infinite;
  overflow: hidden; display: inline-block; max-width: 0;
}
@keyframes typing {
  0% { max-width: 0; }
  50%, 100% { max-width: 300px; }
}
.typing-cursor {
  display: inline-block; width: 2px; height: 12px;
  background: #6366f1; margin-right: 2px;
  animation: blink 0.8s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Pulse ring for step 3 */
.pulse-ring {
  width: 60px; height: 60px; border-radius: 50%;
  border: 2px solid rgba(34,197,94,0.3);
  animation: pulse-ring-anim 2s infinite;
  position: absolute;
}
@keyframes pulse-ring-anim {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(0.8); opacity: 0; }
}
.meeting-icon { font-size: 2rem; position: relative; z-index: 1; }

/* ── Demo Video ── */
.demo-section { padding: 120px 0; position: relative; z-index: 2; }
.video-showcase { perspective: 1000px; }
.video-frame {
  max-width: 800px; margin: 0 auto;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transform: rotateX(2deg);
  transition: transform 0.3s;
}
.video-frame:hover { transform: rotateX(0deg) scale(1.01); }
.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #111113 0%, #1a1a2e 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; position: relative;
}
.play-btn-wrap { position: relative; margin-bottom: 16px; }
.play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(99,102,241,0.4);
  transition: all 0.3s;
  position: relative; z-index: 1;
}
.play-btn svg { margin-left: 4px; }
.play-btn-ring {
  position: absolute; inset: -12px; border-radius: 50%;
  border: 2px solid rgba(99,102,241,0.3);
  animation: ring-pulse 2s ease-in-out infinite;
}
.video-placeholder:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(99,102,241,0.6);
}
.video-label { font-size: 0.9rem; color: #71717a; font-weight: 500; }
.video-glow {
  position: absolute; bottom: -50%; left: 50%; transform: translateX(-50%);
  width: 80%; height: 100%;
  background: radial-gradient(ellipse, rgba(99,102,241,0.1), transparent 70%);
  pointer-events: none;
}

/* ── Stats (3D Cards with Counters) ── */
.stats {
  padding: 100px 0; position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px; text-align: center;
}
.stat-card-3d {
  padding: 36px 24px; border-radius: 20px;
  background: rgba(17,17,19,0.4);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.stat-card-3d:hover {
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.stat-num {
  font-size: 3rem; font-weight: 900; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { color: #71717a; font-size: 0.88rem; margin-top: 6px; }

/* ── Waitlist ── */
.waitlist { padding: 120px 0; position: relative; z-index: 2; }
.waitlist-card {
  background: rgba(17,17,19,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 60px; max-width: 600px; margin: 0 auto;
  position: relative; overflow: hidden;
  backdrop-filter: blur(12px);
}
.waitlist-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 300px; height: 300px; top: -100px; right: -100px;
  background: rgba(99,102,241,0.12);
}
.orb-2 {
  width: 200px; height: 200px; bottom: -80px; left: -80px;
  background: rgba(168,85,247,0.1);
}
.waitlist-content { text-align: center; position: relative; z-index: 1; }
.waitlist-content h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.waitlist-content > p { color: #a1a1aa; margin-bottom: 32px; line-height: 1.7; }

.waitlist-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: flex; gap: 12px; }
.form-row input { flex: 1; }

.waitlist-form input,
.waitlist-form select {
  width: 100%; padding: 15px 18px; border-radius: 14px;
  background: rgba(9,9,11,0.8); border: 1px solid rgba(255,255,255,0.08);
  color: #e4e4e7; font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none; -webkit-appearance: none;
}
.waitlist-form select { color: #71717a; cursor: pointer; }
.waitlist-form select:valid { color: #e4e4e7; }
.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: none; border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.waitlist-form input::placeholder { color: #52525b; }
.form-note { font-size: 0.8rem; color: #52525b; margin-top: 4px; }

.waitlist-success { padding: 24px 0; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.waitlist-success h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.waitlist-success p { color: #a1a1aa; }

/* ── FAQ ── */
.faq { padding: 100px 0; position: relative; z-index: 2; }
.faq-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(17,17,19,0.5); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; overflow: hidden; transition: border-color 0.3s;
  backdrop-filter: blur(8px);
}
.faq-item[open] { border-color: rgba(99,102,241,0.4); }
.faq-item summary {
  padding: 22px 24px; cursor: pointer; font-weight: 600;
  font-size: 1rem; list-style: none; display: flex; justify-content: space-between;
  align-items: center; transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: #6366f1;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { content: '-'; transform: rotate(180deg); }
.faq-item p { padding: 0 24px 22px; color: #a1a1aa; font-size: 0.95rem; line-height: 1.7; }

/* ── Footer ── */
.footer { padding: 64px 0 32px; border-top: 1px solid rgba(255,255,255,0.05); position: relative; z-index: 2; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer-brand p { color: #52525b; font-size: 0.9rem; margin-top: 8px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: #71717a; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #e4e4e7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; width: 100%; text-align: center; }
.footer-bottom p { color: #3f3f46; font-size: 0.8rem; }

/* ── Scroll Reveal Animation ── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .form-row { flex-direction: column; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .waitlist-card { padding: 36px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card { flex-direction: column; text-align: center; }
  .step-visual { display: none; }
  .dashboard-mockup { transform: rotateX(4deg) scale(0.9); }
  .mockup-sidebar { display: none; }
}
