/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #060810;
  --bg2: #0c1020;
  --surface: #111827;
  --border: rgba(255,255,255,0.07);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --accent: #8b5cf6;
  --accent2: #06b6d4;
  --gold: #f59e0b;
  --green: #10b981;
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(6,8,16,0.8);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em;
}
.logo-icon { color: var(--accent); font-size: 1.3rem; }
.nav-links {
  display: flex; align-items: center; gap: 24px;
  font-size: 0.875rem; color: var(--muted);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.btn-nav {
  background: var(--accent);
  color: #fff !important;
  padding: 7px 16px;
  border-radius: 8px;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-nav:hover { opacity: 0.9; transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.25;
  animation: float 8s ease-in-out infinite;
}
.orb1 { width: 600px; height: 600px; background: var(--accent); top: -200px; left: -100px; animation-delay: 0s; }
.orb2 { width: 400px; height: 400px; background: var(--accent2); bottom: -100px; right: -50px; animation-delay: 3s; }
.orb3 { width: 300px; height: 300px; background: #ec4899; top: 50%; left: 55%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-30px) scale(1.05); }
  66% { transform: translate(-15px,20px) scale(0.95); }
}

.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero .container { position: relative; z-index: 1; padding-top: 60px; padding-bottom: 80px; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.3);
  color: #c4b5fd;
  font-size: 0.8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #a78bfa;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:0.5; transform:scale(1.3); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, #a78bfa, #06b6d4, #f59e0b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
em { font-style: italic; color: var(--green); -webkit-text-fill-color: var(--green); }

.hero-sub {
  font-size: 1.15rem; color: var(--muted);
  max-width: 580px; margin-bottom: 36px; line-height: 1.7;
}

/* STATS */
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 40px;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.03em; color: var(--text); }
.stat-label { font-size: 0.75rem; color: var(--muted); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* FORM */
.waitlist-form { max-width: 520px; }
.form-row { display: flex; gap: 10px; margin-bottom: 10px; }
.email-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.email-input:focus { border-color: var(--accent); background: rgba(139,92,246,0.08); }
.email-input::placeholder { color: var(--muted); }

.btn-primary {
  display: flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  color: #fff;
  border: none; border-radius: 10px;
  padding: 13px 22px;
  font-size: 0.9rem; font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(124,58,237,0.4);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,0.5); }
.btn-primary:active { transform: translateY(0); }

.form-hint { font-size: 0.78rem; color: var(--muted); }
.success-msg {
  margin-top: 12px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  color: #6ee7b7;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem; font-weight: 500;
}

/* TRUST */
.hero-trust {
  display: flex; align-items: center; gap: 12px;
  margin-top: 28px; font-size: 0.85rem; color: var(--muted);
}
.trust-avatars { display: flex; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg,#8b5cf6,#6d28d9); }
.av2 { background: linear-gradient(135deg,#f59e0b,#d97706); }
.av3 { background: linear-gradient(135deg,#06b6d4,#0891b2); }
.av4 { background: linear-gradient(135deg,#ec4899,#db2777); }
.av5 { background: var(--surface); color: var(--muted); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--bg2); }
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin-bottom: 56px; line-height: 1.7; }

/* ===== COMPARE TABLE ===== */
.compare-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.compare-header {
  display: grid; grid-template-columns: 1fr 160px 180px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.compare-col-head {
  font-size: 0.85rem; font-weight: 700; text-align: center;
}
.competitor { color: var(--muted); }
.ours { color: var(--accent); }
.compare-row {
  display: grid; grid-template-columns: 1fr 160px 180px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.15s;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(255,255,255,0.02); }
.compare-feature { font-size: 0.9rem; color: var(--muted); }
.check { text-align: center; font-size: 0.9rem; font-weight: 600; }
.check.yes { color: var(--green); }
.check.no { color: #ef4444; }
.ours-check { color: var(--green) !important; }
.highlight-row { background: rgba(139,92,246,0.05); }
.price-bad { color: #ef4444 !important; font-size: 1rem; }
.price-good { color: var(--green) !important; font-size: 1rem; font-weight: 800; }

/* ===== STEPS ===== */
.steps {
  display: flex; align-items: flex-start; gap: 16px;
  flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, border-color 0.2s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(139,92,246,0.3); }
.step-num { font-size: 0.75rem; font-weight: 800; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 12px; }
.step-icon { font-size: 2rem; margin-bottom: 14px; }
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.step-arrow { font-size: 1.5rem; color: var(--muted); align-self: center; margin-top: 20px; }

/* ===== INVESTORS ===== */
.investor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.investor-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; align-items: center; gap: 14px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.investor-card:hover { transform: translateY(-3px); border-color: rgba(139,92,246,0.3); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.blur-card { opacity: 0.5; filter: blur(3px); pointer-events: none; }
.inv-avatar {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.inv-info { flex: 1; }
.inv-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; }
.inv-tag { font-size: 0.75rem; color: var(--muted); margin-bottom: 3px; }
.inv-check { font-size: 0.75rem; color: var(--accent2); font-weight: 500; }
.inv-badge {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.06em;
  background: rgba(139,92,246,0.15);
  color: #c4b5fd;
  padding: 3px 8px; border-radius: 6px;
  border: 1px solid rgba(139,92,246,0.25);
}
.inv-badge-vc {
  background: rgba(245,158,11,0.12);
  color: #fcd34d;
  border-color: rgba(245,158,11,0.25);
}

/* ===== CTA SECTION ===== */
.cta-section { background: var(--bg2); }
.cta-box {
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.1));
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.orb-cta1 { width: 300px; height: 300px; background: var(--accent); top: -100px; left: -50px; opacity: 0.15; }
.orb-cta2 { width: 250px; height: 250px; background: var(--accent2); bottom: -80px; right: -30px; opacity: 0.12; }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }
.cta-box p { color: var(--muted); font-size: 1.05rem; margin-bottom: 32px; }
.waitlist-form-inline {
  display: flex; gap: 10px; max-width: 480px;
  margin: 0 auto 12px;
}

/* ===== FOOTER ===== */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 48px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-tagline { color: var(--muted); font-size: 0.875rem; }
.footer-links { display: flex; gap: 24px; font-size: 0.85rem; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.75rem; color: rgba(148,163,184,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  .nav-links a:not(.btn-nav) { display: none; }
  .hero-stats { gap: 16px; }
  .form-row { flex-direction: column; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .compare-header, .compare-row { grid-template-columns: 1fr 100px 130px; padding: 12px 14px; font-size: 0.8rem; }
  .cta-box { padding: 40px 20px; }
  .waitlist-form-inline { flex-direction: column; }
}
