/* Deskless — Landing Page Styles */
/* Reset + Variables */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0a0a0f; --bg2: #12121a; --bg3: #1a1a25;
  --primary: #6366f1; --primary-light: #818cf8; --accent: #22c55e;
  --text: #f1f5f9; --text-dim: #94a3b8; --text-muted: #64748b;
  --border: #1e1e2e; --card: #13131c; --card-border: #2a2a3a;
  --radius: 12px; --radius-lg: 20px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,15,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.1rem; color: var(--text);
  text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-admin { padding: 6px 16px; background: var(--bg3); border: 1px solid var(--card-border); border-radius: 8px; color: var(--text-dim) !important; }

/* Buttons */
.btn-primary {
  background: var(--primary); color: white; border: none;
  padding: 12px 28px; border-radius: 10px;
  font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--card-border); padding: 10px 24px; border-radius: 10px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.btn-outline:hover { background: var(--bg3); }

/* Hero */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
  padding: 120px 24px 80px;
  max-width: 1200px; margin: 0 auto;
  position: relative;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(99,102,241,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block; padding: 6px 14px;
  background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.3);
  border-radius: 100px; font-size: 0.8rem; font-weight: 500;
  color: var(--primary-light); margin-bottom: 24px; letter-spacing: 0.03em;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { color: var(--text-dim); font-size: 1.15rem; max-width: 480px; margin-bottom: 40px; line-height: 1.7; }
.hero-actions { display: flex; flex-direction: column; gap: 16px; }
.waitlist-form-wrap { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-input, .hero-select {
  padding: 12px 16px; background: var(--bg2); border: 1px solid var(--card-border);
  border-radius: 10px; color: var(--text); font-size: 0.95rem; outline: none;
  min-width: 200px;
}
.hero-input:focus, .hero-select:focus { border-color: var(--primary); }
.hero-select { cursor: pointer; }
.hero-note { color: var(--text-muted); font-size: 0.8rem; }
.wl-success { display: flex; align-items: center; gap: 10px; color: var(--accent); font-weight: 500; }
.wl-error { color: #f87171; font-size: 0.85rem; }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; }
.phone-mockup {
  width: 320px; background: var(--bg2); border: 1px solid var(--card-border);
  border-radius: 36px; overflow: hidden; box-shadow: 0 40px 80px rgba(99,102,241,0.15), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-header {
  background: var(--bg3); padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.phone-dots { display: flex; gap: 6px; }
.phone-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--text-muted); }
.phone-dots span:first-child { background: #f87171; }
.phone-dots span:nth-child(2) { background: #fbbf24; }
.phone-dots span:nth-child(3) { background: var(--accent); }
.phone-label { font-size: 0.65rem; font-weight: 700; color: var(--primary-light); letter-spacing: 0.1em; }
.phone-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; max-height: 480px; overflow-y: auto; }
.waveform {
  display: flex; align-items: center; gap: 3px; justify-content: center;
  padding: 8px 0;
}
.waveform span {
  width: 3px; border-radius: 3px; background: var(--primary);
  animation: wave 1.2s ease-in-out infinite;
}
.waveform span:nth-child(1) { height: 12px; animation-delay: 0s; }
.waveform span:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.waveform span:nth-child(3) { height: 8px; animation-delay: 0.2s; }
.waveform span:nth-child(4) { height: 16px; animation-delay: 0.3s; }
.waveform span:nth-child(5) { height: 24px; animation-delay: 0.15s; }
.waveform span:nth-child(6) { height: 18px; animation-delay: 0.25s; }
.waveform span:nth-child(7) { height: 10px; animation-delay: 0.05s; }
.waveform span:nth-child(8) { height: 14px; animation-delay: 0.35s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}
.call-bubble { padding: 10px 14px; border-radius: 14px; font-size: 0.8rem; line-height: 1.5; max-width: 85%; }
.call-ai { background: var(--bg3); align-self: flex-start; border-bottom-left-radius: 4px; }
.call-user { background: var(--primary); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.phone-status {
  background: var(--bg3); padding: 12px 20px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--text-dim);
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Stats bar */
.stats-bar { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 24px; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--text); }
.stat-item span { font-size: 0.8rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Sections */
.section { padding: 100px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary-light); margin-bottom: 16px; }
.section h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 64px; line-height: 1.15; letter-spacing: -0.02em; }
.section-dark { background: var(--bg2); }
.cta-section { text-align: center; }
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-section h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.cta-section p { color: var(--text-dim); margin-bottom: 40px; font-size: 1.1rem; }
.cta-form { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card { padding: 40px 32px; background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); transition: all 0.3s; }
.step-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.step-num { font-size: 3rem; font-weight: 900; color: rgba(99,102,241,0.2); margin-bottom: 16px; font-family: 'Inter', monospace; }
.step-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.step-card p { color: var(--text-dim); line-height: 1.7; }

/* Industry grid */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.industry-card { padding: 28px 24px; background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); }
.industry-icon { font-size: 2rem; margin-bottom: 16px; }
.industry-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.industry-card p { color: var(--text-dim); font-size: 0.85rem; line-height: 1.6; }

/* Features grid */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-item { display: flex; gap: 20px; padding: 28px; background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); }
.feature-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.feature-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-item p { color: var(--text-dim); font-size: 0.85rem; line-height: 1.6; }

/* Pricing */
.pricing-grid { display: flex; gap: 32px; align-items: flex-start; flex-wrap: wrap; }
.pricing-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 40px; flex: 1; min-width: 280px; }
.pricing-featured { border-color: var(--primary); position: relative; overflow: hidden; }
.pricing-featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), #a855f7);
}
.pricing-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary-light); margin-bottom: 16px; }
.pricing-price { font-size: 3.5rem; font-weight: 900; line-height: 1; }
.pricing-price span { font-size: 1.2rem; font-weight: 500; color: var(--text-dim); }
.pricing-tagline { color: var(--accent); font-size: 0.85rem; font-weight: 500; margin: 8px 0 32px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { color: var(--text-dim); font-size: 0.9rem; }
.pricing-btn { width: 100%; }
.pricing-compare { min-width: 260px; }
.compare-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--card-border); font-size: 0.85rem; }
.compare-val { color: var(--text-dim); font-family: monospace; }
.compare-note { margin-top: 16px; font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* Footer */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 64px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; flex-wrap: wrap; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 8px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; margin-bottom: 4px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { max-width: 1200px; margin: 48px auto 0; padding-top: 24px; border-top: 1px solid var(--border); }
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 100px; }
  .hero-visual { display: none; }
  .waitlist-form-wrap { justify-content: center; }
  .hero-sub { margin: 0 auto 40px; }
  .steps-grid, .industry-grid, .features-grid { grid-template-columns: 1fr; }
  .stats-inner { gap: 24px; }
  .stat-divider { display: none; }
  .pricing-grid { flex-direction: column; }
}
@media (max-width: 600px) {
  .hero-input, .hero-select, .btn-primary { min-width: unset; width: 100%; }
  .waitlist-form-wrap { flex-direction: column; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-admin) { display: none; }
}