/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #09090b;
  --bg-card: #18181b;
  --border: #27272a;
  --text: #fafafa;
  --muted: #71717a;
  --muted-light: #a1a1aa;
  --red: #ef0107;
  --red-glow: rgba(239, 1, 7, 0.12);
  --purple: #8b5cf6;
  --purple-glow: rgba(139, 92, 246, 0.12);
  --font: 'Inter', system-ui, 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;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Nav ──────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  white-space: nowrap;
}

.btn-sm { padding: 7px 14px; font-size: 13px; }

.btn-primary { background: var(--text); color: #09090b; }
.btn-primary:hover { background: #e4e4e7; }

.btn-ghost {
  background: transparent;
  color: var(--muted-light);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-card); color: var(--text); }

.btn-red { background: var(--red); color: #fff; width: 100%; }
.btn-red:hover { background: #cc0006; }

.btn-red-outline {
  background: transparent;
  color: var(--red);
  border: 1px solid rgba(239,1,7,0.4);
  width: 100%;
}
.btn-red-outline:hover { background: var(--red-glow); }

.btn-purple { background: var(--purple); color: #fff; width: 100%; }
.btn-purple:hover { background: #7c3aed; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(239, 1, 7, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted-light);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #ffffff 30%, #71717a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted-light);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-ctas .btn { padding: 12px 24px; font-size: 15px; }

.hero-note {
  font-size: 13px;
  color: var(--muted);
}

.hero-waitlist {
  max-width: 480px;
  margin: 0 auto 16px;
}

.hero-link {
  display: inline-block;
  font-size: 14px;
  color: var(--muted-light);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.15s ease;
}
.hero-link:hover { color: var(--text); }

/* Override getwaitlist widget styles to fit dark theme */
.hero-waitlist #getWaitlistContainer input,
.card #getWaitlistContainer2 input {
  background: var(--bg-card) !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
  border-radius: 8px !important;
}

.hero-waitlist #getWaitlistContainer button,
.card #getWaitlistContainer2 button {
  background: var(--text) !important;
  color: var(--bg) !important;
  border-radius: 8px !important;
  font-family: var(--font) !important;
  font-weight: 600 !important;
}

.card-premium #getWaitlistContainer2 button {
  background: var(--purple) !important;
  color: #fff !important;
}

/* ── How it works ─────────────────────────────────────────── */
.how {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 60px;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step { flex: 1; padding: 0 32px; }

.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.65;
}

.step-divider {
  color: var(--border);
  font-size: 22px;
  padding-top: 2px;
  flex-shrink: 0;
}

/* ── Products ─────────────────────────────────────────────── */
.products {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: border-color 0.2s ease;
}

.card-free:hover  { border-color: rgba(239, 1, 7, 0.35); }
.card-premium:hover { border-color: rgba(139, 92, 246, 0.35); }

.card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}

.pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.pill-free    { background: var(--red-glow);    color: var(--red);    border: 1px solid rgba(239,1,7,0.2); }
.pill-premium { background: var(--purple-glow); color: var(--purple); border: 1px solid rgba(139,92,246,0.2); }

.card-header h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.card-header p {
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.6;
}

.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.features li {
  font-size: 14px;
  color: var(--muted-light);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-size: 12px;
  top: 1px;
}

.card-free    .features li::before { color: var(--red); }
.card-premium .features li::before { color: var(--purple); }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links { display: flex; gap: 24px; }

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--text); }

/* ── Prose (privacy page) ─────────────────────────────────── */
.prose {
  max-width: 680px;
  padding-top: 80px;
  padding-bottom: 100px;
}

.prose h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.prose .meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 48px;
}

.prose h2 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 40px;
  margin-bottom: 12px;
}

.prose p {
  font-size: 15px;
  color: var(--muted-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.prose ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.prose ul li {
  font-size: 15px;
  color: var(--muted-light);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}

.prose ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--muted);
}

.prose a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border);
}
.prose a:hover { text-decoration-color: var(--muted-light); }

.prose strong { color: var(--text); font-weight: 600; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 80px 0 60px; }

  .steps { flex-direction: column; gap: 40px; }
  .step  { padding: 0; }
  .step-divider { display: none; }

  .product-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}
