/* ===================================================
   UNION CRM — WAITLIST LANDING PAGE
   Dark blue theme matching the CRM system
   =================================================== */

/* ─── CSS RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:         #020817;
  --bg-card:    #0f1f3d;
  --bg-card-2:  #0d1b38;
  --blue-900:   #0f1f3d;
  --blue-800:   #1e3a5f;
  --blue-700:   #1d4ed8;
  --blue-600:   #2563eb;
  --blue-500:   #3b82f6;
  --blue-400:   #60a5fa;
  --blue-300:   #93c5fd;
  --purple-600: #7c3aed;
  --purple-500: #8b5cf6;
  --purple-400: #a78bfa;
  --teal:       #0ea5e9;
  --pink:       #ec4899;
  --orange:     #f59e0b;
  --green:      #4ade80;
  --text:       #f0f9ff;
  --text-muted: #94a3b8;
  --text-dim:   #475569;
  --border:     rgba(30, 58, 138, 0.5);
  --glow-blue:  rgba(59, 130, 246, 0.15);
  --glow-purple:rgba(139, 92, 246, 0.15);
  --radius:     14px;
  --radius-sm:  8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 0 0 1px rgba(59,130,246,0.15), 0 4px 24px rgba(2,8,23,0.6);
  --shadow-glow: 0 0 40px rgba(59,130,246,0.25);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Particle Canvas */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ─── SELECTION / SCROLLBAR ─── */
::selection { background: var(--blue-700); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-800); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-700); }

/* ─── UTILITY ─── */
.gradient-text {
  background: linear-gradient(135deg, var(--blue-400) 0%, var(--purple-400) 60%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hidden { display: none !important; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--purple-600));
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,99,235,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,99,235,0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--blue-300);
  border: 1px solid rgba(59,130,246,0.3);
}
.btn-ghost:hover {
  background: rgba(59,130,246,0.08);
  border-color: var(--blue-400);
  color: var(--blue-400);
  transform: translateY(-2px);
}

.btn-sm  { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg  { padding: 0.85rem 1.75rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; padding: 0.9rem 1.5rem; }

.spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ─── SECTION SHARED ─── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--blue-400);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
  line-height: 1.7;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── ANIMATE ON LOAD ─── */
.animate-on-load {
  animation: fadeUp 0.7s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────────────
   NAVBAR
─────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(2, 8, 23, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(59,130,246,0.15);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo-mark svg { width: 100%; height: 100%; }
.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-crm { color: var(--blue-400); }
.nav-logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--blue-300), var(--purple-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue-300);
}

/* Image-based logo */
.logo-img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  /* keep crisp on hi-dpi screens */
  image-rendering: -webkit-optimize-contrast;
}
.footer-brand .logo-img { height: 38px; }
.ms-logo-img { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue-300); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.nav-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.5s ease infinite;
}
.badge-pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-400);
  animation: pulse-dot 1.5s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.3); }
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  background: rgba(9, 20, 45, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.mobile-menu ul {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu ul a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu ul a:hover { background: rgba(59,130,246,0.1); color: var(--blue-300); }

/* ─────────────────────────────────────────────────────
   HERO
─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(29,78,216,0.25) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  animation: float-glow 8s ease-in-out infinite;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 70%);
  top: 200px; right: 10%;
  animation: float-glow 10s ease-in-out infinite reverse;
}
@keyframes float-glow {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.05); }
}
.hero-container {
  max-width: 800px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: var(--blue-300);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.hero-badge strong { color: var(--blue-400); }
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Countdown */
.countdown-wrapper {
  margin-bottom: 2.5rem;
}
.countdown-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.label-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
  animation: pulse-dot 1.5s infinite;
}
.launch-date-display {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 31, 61, 0.8);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: var(--radius);
  padding: 1rem 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.04);
}
.launch-date-text {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-300), var(--purple-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.hero-social-proof strong { color: var(--green); }

/* Dashboard mockup */
.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 4rem auto 0;
  z-index: 1;
  animation: float-card 6s ease-in-out infinite;
}
@keyframes float-card {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.mockup-window {
  background: var(--bg-card);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(59,130,246,0.1), 0 30px 80px rgba(2,8,23,0.8), 0 0 60px rgba(29,78,216,0.15);
}
.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15,31,61,0.9);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(59,130,246,0.15);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: #ff5f5f; }
.dot-yellow { background: #ffbe2e; }
.dot-green  { background: #4ade80; }
.mockup-url {
  font-size: 0.7rem;
  font-family: monospace;
}
.mockup-content {
  display: flex;
  height: 280px;
}
.mockup-sidebar {
  width: 52px;
  background: rgba(9, 20, 45, 0.8);
  border-right: 1px solid rgba(59,130,246,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  gap: 0.75rem;
}
.ms-logo {
  width: 32px; height: 32px;
  background: linear-gradient(135deg,var(--blue-600),var(--purple-600));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.ms-item {
  width: 28px; height: 6px;
  background: rgba(59,130,246,0.15);
  border-radius: 4px;
}
.ms-item.active { background: rgba(59,130,246,0.5); }
.mockup-main {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mockup-row { display: flex; gap: 0.75rem; }
.mockup-card {
  flex: 1;
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.8rem;
  animation: card-shimmer 3s ease-in-out infinite;
}
.card-blue   { background: rgba(29,78,216,0.2); border: 1px solid rgba(59,130,246,0.2); }
.card-purple { background: rgba(124,58,237,0.2); border: 1px solid rgba(139,92,246,0.2); }
.card-teal   { background: rgba(14,165,233,0.15); border: 1px solid rgba(14,165,233,0.2); }
@keyframes card-shimmer {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.8; }
}
.mc-label { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.mc-value { font-size: 1rem; font-weight: 800; color: #fff; font-family: monospace; }
.mc-trend { font-size: 0.6rem; color: var(--green); font-weight: 600; }
.mockup-chart {
  flex: 1;
  background: rgba(15,31,61,0.5);
  border: 1px solid rgba(59,130,246,0.1);
  border-radius: var(--radius-sm);
  padding: 0.6rem;
  display: flex;
  align-items: flex-end;
}
.chart-bars { display: flex; align-items: flex-end; gap: 4px; width: 100%; height: 60px; }
.chart-bar {
  flex: 1;
  background: rgba(59,130,246,0.3);
  border-radius: 3px 3px 0 0;
  animation: bar-grow 1s ease both;
}
.chart-bar.active { background: linear-gradient(180deg, var(--blue-500), var(--purple-500)); }
@keyframes bar-grow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); transform-origin: bottom; }
}
.mockup-ai-chat {
  background: rgba(15,31,61,0.6);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.8rem;
}
.ai-bubble { display: flex; align-items: flex-start; gap: 0.5rem; }
.ai-icon { color: var(--purple-400); font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.ai-text { font-size: 0.65rem; color: var(--text-muted); line-height: 1.4; }
.mockup-glow {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(139,92,246,0.15));
  z-index: -1;
  filter: blur(20px);
}

/* ─────────────────────────────────────────────────────
   TRUSTED / TICKER
─────────────────────────────────────────────────────── */
.trusted-section {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(15,31,61,0.2);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.trusted-label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}
.logo-ticker { overflow: hidden; position: relative; }
.logo-ticker::before,
.logo-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.logo-ticker::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.logo-ticker::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.ticker-track {
  display: flex;
  gap: 2rem;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0.4rem 1.2rem;
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.12);
  border-radius: 100px;
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────────
   HOW IT WORKS
─────────────────────────────────────────────────────── */
.how-it-works {
  padding: 7rem 0;
  position: relative;
  z-index: 1;
  text-align: center;
}
.how-it-works .section-title { margin-bottom: 3.5rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.step-card:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.step-number {
  font-size: 0.7rem;
  font-weight: 800;
  font-family: monospace;
  color: var(--blue-700);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  background: rgba(29,78,216,0.15);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  display: inline-block;
}
.step-icon {
  width: 56px; height: 56px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--blue-400);
}
.step-icon svg { width: 26px; height: 26px; }
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.step-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-connector {
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 2px;
  background: linear-gradient(to right, rgba(59,130,246,0.4), rgba(59,130,246,0.1));
  pointer-events: none;
  display: none;
}

/* ─────────────────────────────────────────────────────
   STATS
─────────────────────────────────────────────────────── */
.stats-section {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stats-glow {
  position: absolute;
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.1) 0%, transparent 70%);
  pointer-events: none;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.stat-card {
  background: rgba(15,31,61,0.6);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.stat-card:hover {
  border-color: rgba(59,130,246,0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.stat-num {
  font-size: 3rem;
  font-weight: 900;
  font-family: monospace;
  background: linear-gradient(135deg, var(--blue-400), var(--purple-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: inline-block;
}
.stat-suffix {
  font-size: 1.5rem;
  font-weight: 800;
  display: inline-block;
  background: linear-gradient(135deg, var(--blue-400), var(--purple-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.4;
}

/* ─────────────────────────────────────────────────────
   TESTIMONIALS
─────────────────────────────────────────────────────── */
.testimonials-section {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: left;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.quote-mark {
  font-size: 3rem;
  font-family: Georgia, serif;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-500), var(--purple-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.quote-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-size: 0.875rem; font-weight: 700; color: var(--text); }
.author-role { font-size: 0.75rem; color: var(--text-dim); }
.stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; }

/* ─────────────────────────────────────────────────────
   WHO IT'S FOR
─────────────────────────────────────────────────────── */
.for-section { padding: 7rem 0; text-align: center; position: relative; z-index: 1; }
.for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.for-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: left;
  transition: var(--transition);
}
.for-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.for-icon { font-size: 2rem; margin-bottom: 1rem; }
.for-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.for-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────
   WAITLIST
─────────────────────────────────────────────────────── */
.waitlist-section {
  padding: 8rem 0;
  position: relative;
  z-index: 1;
}
.waitlist-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.waitlist-glow-1 {
  width: 500px; height: 500px;
  background: rgba(29,78,216,0.15);
  left: -100px; top: 50%;
  transform: translateY(-50%);
}
.waitlist-glow-2 {
  width: 400px; height: 400px;
  background: rgba(124,58,237,0.1);
  right: -50px; bottom: 10%;
}
.waitlist-card {
  background: rgba(15,31,61,0.7);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: calc(var(--radius) * 1.5);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.1), 0 40px 80px rgba(2,8,23,0.6), 0 0 60px rgba(29,78,216,0.1);
  position: relative;
  overflow: hidden;
}
.waitlist-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--blue-500), var(--purple-500), transparent);
}
.waitlist-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.waitlist-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.waitlist-desc strong { color: var(--blue-300); }
.waitlist-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.waitlist-perks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.waitlist-perks li svg { width: 20px; height: 20px; flex-shrink: 0; }
.waitlist-count-display {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: inline-flex;
}
.wc-number {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: monospace;
  color: var(--blue-300);
}
.wc-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── FORM ─── */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.req { color: #f87171; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(9, 20, 45, 0.8);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #f87171; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%2360a5fa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.25rem;
  cursor: pointer;
}
.form-group select option { background: #0f1f3d; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 80px; }
.field-error {
  font-size: 0.75rem;
  color: #f87171;
  min-height: 1rem;
}
.form-checkbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--blue-500);
  cursor: pointer;
  margin-top: 2px;
}
.form-checkbox label {
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.form-legal {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.25rem;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 400px;
  animation: fadeUp 0.5s ease;
}
.success-icon { width: 64px; height: 64px; margin-bottom: 1.5rem; animation: pop 0.5s ease; }
.success-icon svg { width: 100%; height: 100%; }
@keyframes pop {
  0%   { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}
.form-success h3 { font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: 0.75rem; }
.form-success p  { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.form-success strong { color: var(--blue-300); }
.success-position {
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.success-position strong { color: var(--blue-300); font-family: monospace; }

/* ─────────────────────────────────────────────────────
   FOOTER
─────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(9, 20, 45, 0.5);
  position: relative;
  z-index: 1;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}
.footer-top {
  display: flex;
  gap: 4rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-top: 1rem;
  max-width: 320px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 4rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue-300); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-countdown-mini {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-300);
}

/* ─────────────────────────────────────────────────────
   TOAST
─────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(15, 31, 61, 0.95);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  z-index: 200;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
  backdrop-filter: blur(20px);
  pointer-events: none;
  white-space: nowrap;
  max-width: 90vw;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast.success { border-color: rgba(74,222,128,0.4); }
.toast.error   { border-color: rgba(248,113,113,0.4); }

/* ─────────────────────────────────────────────────────
   ANIMATIONS
─────────────────────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }

/* ─────────────────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta .nav-badge { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: block; }
  .hero-mockup { display: none; }
  .steps-grid  { grid-template-columns: 1fr; }
  .waitlist-card { grid-template-columns: 1fr; gap: 2.5rem; padding: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .for-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .stats-grid          { grid-template-columns: 1fr 1fr; }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .hero-actions        { flex-direction: column; align-items: center; }
  .form-row            { grid-template-columns: 1fr; }
  .launch-date-display { padding: 0.75rem 1.5rem; }
  .launch-date-text    { font-size: 1.6rem; }
  .footer-top          { gap: 2rem; }
  .footer-links        { gap: 2rem; }
  .footer-bottom       { flex-direction: column; text-align: center; }
}

/* ─────────────────────────────────────────────────────
   STATS DISCLAIMER
─────────────────────────────────────────────────────── */
.stats-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 2.5rem;
  font-style: italic;
}

/* ─────────────────────────────────────────────────────
   FAQ SECTION
─────────────────────────────────────────────────────── */
.faq-section {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.faq-list {
  max-width: 760px;
  margin: 3.5rem auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open,
.faq-item:hover { border-color: rgba(59,130,246,0.4); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.975rem;
  font-weight: 600;
  text-align: left;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--blue-300); }
.faq-chevron {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer strong { color: var(--blue-300); }

/* ─────────────────────────────────────────────────────
   SUCCESS SHARE BUTTONS
─────────────────────────────────────────────────────── */
.success-share { margin-top: 1.5rem; }
.share-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}
.share-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  font-family: inherit;
}
.share-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.share-twitter { background: #000; color: #fff; }
.share-linkedin { background: #0077b5; color: #fff; }
.share-copy {
  background: rgba(59,130,246,0.1);
  color: var(--blue-300);
  border: 1px solid rgba(59,130,246,0.25);
}

/* ─────────────────────────────────────────────────────
   COOKIE CONSENT BANNER
─────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: calc(100% - 3rem);
  max-width: 680px;
  background: rgba(15, 31, 61, 0.97);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  z-index: 300;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(2,8,23,0.7);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-content p {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  min-width: 200px;
}
.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .cookie-content { flex-direction: column; gap: 0.75rem; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}
