:root {
  --brand: #5B4BE1;
  --brand-dark: #3E33A8;
  --brand-tint: #EEEDFB;
  --ink: #191830;
  --muted: #6B6880;
  --line: #E6E4F2;
  --surface: #FFFFFF;
  --page: #F7F6FC;
  --radius: 16px;
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,246,252,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.brand svg { width: 26px; height: 26px; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 15px; font-weight: 500; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.btn {
  display: inline-block; background: var(--brand); color: #fff;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: none; cursor: pointer; transition: background .15s ease, transform .15s ease;
  font-family: 'Inter', sans-serif;
}
.btn:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.nav-links .btn { color: #fff; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 88px 0 72px; overflow: hidden; }
.hero-mark { position: absolute; right: -60px; top: -40px; width: 460px; opacity: 0.05; pointer-events: none; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--brand); background: var(--brand-tint);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 24px;
}
.hero h1 { font-size: clamp(40px, 7vw, 68px); max-width: 780px; }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero p.lead { font-size: clamp(18px, 2.4vw, 21px); color: var(--muted); max-width: 560px; margin-top: 24px; }

.waitlist { margin-top: 36px; display: flex; gap: 12px; max-width: 480px; flex-wrap: wrap; }
.waitlist input {
  flex: 1; min-width: 220px; padding: 15px 18px; font-size: 16px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff;
  font-family: 'Inter', sans-serif; color: var(--ink);
}
.waitlist input:focus { outline: 2px solid var(--brand); border-color: var(--brand); }
.coming { margin-top: 16px; font-size: 14px; color: var(--muted); }
.coming strong { color: var(--ink); font-weight: 600; }

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(30px, 4.5vw, 44px); }
.section-head p { color: var(--muted); font-size: 18px; margin-top: 16px; }

/* ---------- How it works (unbroken line) ---------- */
.steps { position: relative; }
.steps::before {
  content: ""; position: absolute; left: 27px; top: 20px; bottom: 20px;
  width: 2px; background: linear-gradient(var(--brand), var(--brand-tint));
}
.step { position: relative; display: flex; gap: 28px; padding: 22px 0; }
.step-dot {
  flex: none; width: 56px; height: 56px; border-radius: 50%;
  background: var(--brand); color: #fff; display: grid; place-items: center;
  font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 22px; z-index: 1;
}
.step h3 { font-size: 22px; margin-bottom: 6px; }
.step p { color: var(--muted); max-width: 560px; }

/* ---------- Features grid ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px;
}
.card .tick { width: 30px; height: 30px; margin-bottom: 16px; }
.card h3 { font-size: 19px; margin-bottom: 8px; font-family: 'Bricolage Grotesque'; }
.card p { color: var(--muted); font-size: 15px; }

/* ---------- Why band ---------- */
.band { background: var(--ink); color: #fff; border-radius: 24px; padding: 56px 48px; }
.band h2 { font-size: clamp(28px, 4vw, 40px); max-width: 640px; }
.band p { color: #B9B6D6; font-size: 18px; margin-top: 18px; max-width: 620px; }

/* ---------- Pricing ---------- */
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 24px;
  padding: 44px; max-width: 460px; margin: 0 auto; text-align: center;
}
.price-card .amt { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 52px; color: var(--ink); letter-spacing: -0.02em; }
.price-card .amt span { font-size: 18px; color: var(--muted); font-weight: 500; }
.price-card .trial { color: var(--brand); font-weight: 600; margin: 8px 0 24px; }
.price-list { list-style: none; text-align: left; margin: 24px 0; display: grid; gap: 12px; }
.price-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: 15px; }
.price-list svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 24px 0; }
.faq-item h3 { font-size: 18px; margin-bottom: 8px; font-family: 'Bricolage Grotesque'; }
.faq-item p { color: var(--muted); }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 48px 0; margin-top: 40px; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
footer .brand { font-size: 20px; }
.foot-links { display: flex; gap: 28px; font-size: 15px; color: var(--muted); flex-wrap: wrap; }
.foot-links a:hover { color: var(--ink); }
.foot-note { width: 100%; color: var(--muted); font-size: 13px; margin-top: 12px; }

/* ---------- Legal pages ---------- */
.legal { padding: 64px 0; max-width: 760px; }
.legal h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 22px; margin: 36px 0 12px; }
.legal p, .legal li { color: #38364a; margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--brand); font-weight: 500; }

@media (max-width: 820px) {
  .grid { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  .band { padding: 40px 28px; }
}
