:root {
  --bg: #07090f;
  --bg-soft: #0d111c;
  --bg-card: #11162480;
  --border: #1e2742;
  --text: #e7ecf5;
  --text-dim: #8a94ad;
  --accent: #00e08f;
  --accent-2: #00b8ff;
  --accent-warm: #ffb347;
  --danger: #ff4d6d;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-lg: 0 30px 80px rgba(0, 224, 143, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --grad: linear-gradient(135deg, #00e08f 0%, #00b8ff 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

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

/* ─── NAV ───────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(7, 9, 15, 0.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-weight: 800; font-size: 18px; }
.logo-icon { width: 34px; height: 34px; background: var(--grad); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #0a0f1c; font-weight: 900; font-size: 18px; box-shadow: 0 6px 20px rgba(0, 224, 143, 0.35); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; border: none; cursor: pointer; text-decoration: none; transition: transform .15s, box-shadow .2s, background .2s; font-family: inherit; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-primary { background: var(--grad); color: #051d13; box-shadow: 0 8px 26px rgba(0, 224, 143, 0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0, 224, 143, 0.5); }
.btn-primary:active { transform: translateY(0); }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-google { background: #fff; color: #1a1a1a; }
.btn-google:hover { background: #f1f1f1; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-actions { display: flex; flex-direction: column; gap: 14px; max-width: 560px; margin-bottom: 30px; }
.hero-actions .btn-primary { align-self: flex-start; }
.hero-or { color: var(--text-dim); font-size: 13px; margin: 4px 0 2px; }

/* ─── HERO ──────────────────────────────────────────────── */
.hero { position: relative; padding: 90px 0 100px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(1000px 500px at 20% -10%, rgba(0, 224, 143, 0.18), transparent 60%), radial-gradient(800px 400px at 90% 10%, rgba(0, 184, 255, 0.12), transparent 60%); z-index: -1; }

.badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(0, 224, 143, 0.1); border: 1px solid rgba(0, 224, 143, 0.3); color: var(--accent); border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 28px; }
.pulse { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 0 rgba(0, 224, 143, 0.8); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0, 224, 143, 0.8); } 70% { box-shadow: 0 0 0 12px rgba(0, 224, 143, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 224, 143, 0); } }

.hero h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 24px; }
.grad { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--text-dim); max-width: 720px; margin-bottom: 40px; }
.lead strong { color: var(--text); font-weight: 600; }

.cta-form { display: flex; gap: 10px; max-width: 560px; margin-bottom: 24px; flex-wrap: wrap; }
.cta-form input { flex: 1; min-width: 240px; padding: 16px 20px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-size: 15px; font-family: inherit; transition: border-color .2s, box-shadow .2s; }
.cta-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(0, 224, 143, 0.12); }
.cta-form input::placeholder { color: var(--text-dim); }

.trust-row { display: flex; gap: 22px; flex-wrap: wrap; color: var(--text-dim); font-size: 13px; margin-top: 8px; }

/* ─── STATS ─────────────────────────────────────────────── */
.stats { padding: 40px 0 80px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 24px; text-align: center; backdrop-filter: blur(8px); transition: transform .2s, border-color .2s; }
.stat:hover { transform: translateY(-4px); border-color: rgba(0, 224, 143, 0.35); }
.stat-num { font-size: 40px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; letter-spacing: -0.02em; }
.stat-lbl { color: var(--text-dim); font-size: 14px; }

/* ─── SECTIONS ──────────────────────────────────────────── */
section { padding: 90px 0; }
.section-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; letter-spacing: -0.02em; text-align: center; margin-bottom: 10px; }
.section-sub { text-align: center; color: var(--text-dim); font-size: 17px; margin-bottom: 60px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ─── HOW ──────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.step { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 30px; position: relative; transition: transform .2s, border-color .2s; }
.step:hover { transform: translateY(-6px); border-color: rgba(0, 224, 143, 0.35); }
.step-num { width: 44px; height: 44px; background: var(--grad); color: #051d13; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 20px; margin-bottom: 20px; box-shadow: 0 6px 18px rgba(0, 224, 143, 0.3); }
.step h3 { font-size: 22px; margin-bottom: 10px; font-weight: 700; }
.step p { color: var(--text-dim); font-size: 15px; }
.step em { color: var(--accent); font-style: normal; font-weight: 600; }

/* ─── CATS ─────────────────────────────────────────────── */
.cats { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.cat { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 26px 22px; transition: transform .2s, border-color .2s; }
.cat:hover { transform: translateY(-4px); border-color: rgba(0, 224, 143, 0.3); }
.cat-icon { font-size: 30px; display: block; margin-bottom: 12px; }
.cat h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.cat p { color: var(--text-dim); font-size: 14px; }

/* ─── PROOF / TESTIMONIALS ─────────────────────────────── */
.testim-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testim { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; position: relative; overflow: hidden; }
.testim::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.testim-amount { font-size: 32px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; letter-spacing: -0.02em; }
.testim p { color: var(--text); font-size: 16px; margin-bottom: 16px; font-style: italic; }
.testim-author { color: var(--text-dim); font-size: 13px; font-weight: 500; }

/* ─── FAQ ─────────────────────────────────────────────── */
.faq { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
details { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 22px; cursor: pointer; transition: border-color .2s; }
details:hover { border-color: rgba(0, 224, 143, 0.3); }
details[open] { border-color: rgba(0, 224, 143, 0.4); }
summary { font-weight: 600; font-size: 16px; list-style: none; position: relative; padding-right: 30px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 22px; font-weight: 700; transition: transform .2s; }
details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details p { margin-top: 14px; color: var(--text-dim); font-size: 15px; line-height: 1.7; }

/* ─── FINAL CTA ────────────────────────────────────────── */
.final-cta { text-align: center; background: radial-gradient(800px 400px at 50% 50%, rgba(0, 224, 143, 0.12), transparent 70%); }
.final-cta h2 { font-size: clamp(32px, 4vw, 50px); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 14px; }
.final-cta > .container > p { color: var(--text-dim); font-size: 18px; margin-bottom: 36px; }
.final-cta strong { color: var(--accent); font-weight: 700; }
.cta-form-large { margin: 0 auto; max-width: 520px; }
.waitlist-count { margin-top: 22px; color: var(--text-dim); font-size: 14px; min-height: 22px; }
.waitlist-count strong { color: var(--accent); font-weight: 700; }

/* ─── FOOTER ───────────────────────────────────────────── */
.footer { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 60px 0 40px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: start; }
.footer-tag { color: var(--text-dim); font-size: 14px; margin-top: 12px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { color: var(--text-dim); font-size: 13px; text-align: right; grid-column: 1 / -1; padding-top: 30px; border-top: 1px solid var(--border); }

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-copy { text-align: center; }
  .nav-links a:not(.btn) { display: none; }
  .trust-row { flex-direction: column; gap: 8px; }
}

/* ─── TOAST ────────────────────────────────────────────── */
.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(30px); background: var(--bg-soft); border: 1px solid var(--accent); color: var(--text); padding: 14px 22px; border-radius: var(--radius-sm); font-size: 14px; box-shadow: 0 14px 40px rgba(0, 224, 143, 0.25); opacity: 0; pointer-events: none; transition: transform .25s, opacity .25s; z-index: 1000; max-width: 90vw; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error { border-color: var(--danger); box-shadow: 0 14px 40px rgba(255, 77, 109, 0.25); }
