/* ====== Base ====== */
:root {
  --bg: #0b1220;
  --bg-alt: #0f172a;
  --card: #111827;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --primary: #2563eb;
  --primary-2: #1d4ed8;
  --gold: #d4af37;
  --border: #1f2937;
  --success: #22c55e;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 80% -10%, #1e293b 0%, transparent 60%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

h1, h2, h3 { margin: 0 0 12px; line-height: 1.2; }
h1 { font-size: clamp(28px, 4vw, 44px); }
h2 { font-size: clamp(22px, 3vw, 32px); }
h3 { font-size: 18px; }
p { margin: 0 0 14px; color: var(--muted); }
strong { color: var(--text); }
a { color: inherit; text-decoration: none; }

.section { padding: 90px 0; }
.section.alt { background: var(--bg-alt); }
.sub { color: var(--muted); margin-bottom: 28px; }

/* ====== Header ====== */
.header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(11, 18, 32, 0.7);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand { display: flex; align-items: center; gap: 12px; }
.logo {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; letter-spacing: 1px;
}
.brand-name { font-weight: 700; }
.brand-sub { font-size: 12px; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--muted); font-size: 14px; }
.nav a:hover { color: var(--text); }
.nav-cta {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary);
  color: white !important;
}

/* ====== Hero ====== */
.hero { padding: 90px 0 60px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.pill {
  display: inline-block;
  background: rgba(37, 99, 235, 0.15);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 16px;
}
.lead { font-size: 17px; max-width: 560px; }

.hero-actions { margin: 24px 0; display: flex; gap: 14px; flex-wrap: wrap; }

.trust { display: flex; gap: 24px; margin-top: 26px; flex-wrap: wrap; }
.trust-title { font-weight: 600; font-size: 14px; }
.trust-text { font-size: 13px; color: var(--muted); }

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-ghost {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}
.btn-ghost:hover { background: var(--card); }

.full { width: 100%; }

/* ====== Card / Chat ====== */
.hero-card .card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.card-badge {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
}

.chat { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.bubble {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
}
.bubble.user {
  align-self: flex-end;
  background: rgba(37, 99, 235, 0.2);
}
.bubble.bot {
  align-self: flex-start;
  background: #0f172a;
  border: 1px solid var(--border);
}
.tiny { font-size: 11px; color: var(--muted); }
.fine { font-size: 12px; color: var(--muted); margin-top: 8px; }

/* ====== Perks Grid ====== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}
.tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform 0.2s ease;
}
.tile:hover { transform: translateY(-4px); }
.icon { font-size: 22px; margin-bottom: 10px; }

/* ====== Steps ====== */
.steps { display: grid; gap: 24px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-nr {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* ====== Plans ====== */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.plan.featured {
  border: 1px solid var(--gold);
}
.ribbon {
  position: absolute;
  top: -10px; right: 18px;
  background: var(--gold);
  color: #000;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 999px;
  font-weight: 600;
}
.plan-top { margin-bottom: 12px; }
.price { font-size: 24px; font-weight: 700; }
.price span { font-size: 13px; color: var(--muted); margin-left: 4px; }
.plan ul { padding-left: 18px; color: var(--muted); margin-bottom: 18px; }

/* ====== Waitlist ====== */
.waitlist {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.form { display: grid; gap: 14px; margin-top: 18px; }
.form label { display: grid; gap: 6px; font-size: 13px; }
.form input {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #0b1220;
  color: var(--text);
}
.form input:focus { outline: 1px solid var(--primary); }

.waitlist-box .box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.bullets { display: grid; gap: 8px; margin: 12px 0; }

/* ====== Footer ====== */
.footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
  background: #0a0f1b;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-links { display: flex; gap: 18px; font-size: 13px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }

/* ====== Responsive ====== */
@media (max-width: 920px) {
  .hero-grid,
  .waitlist {
    grid-template-columns: 1fr;
  }
  .nav { display: none; }
}
