/* MakeLive waitlist — simple, mobile-first, no framework */
:root {
  --ink: #1a1a2e;
  --muted: #55556b;
  --bg: #ffffff;
  --soft: #f6f6fb;
  --accent: #4f46e5;
  --accent-dark: #4338ca;
  --border: #e5e5ef;
  --radius: 12px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 64px 0 48px;
}

.hero .kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: #eef0ff;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(30px, 6vw, 44px);
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.hero .lede {
  font-size: 19px;
  color: var(--muted);
  margin: 0 0 28px;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.25);
  transition: background 0.15s ease, transform 0.15s ease;
}

.cta:hover { background: var(--accent-dark); transform: translateY(-1px); }

.cta-note {
  font-size: 14px;
  color: var(--muted);
  margin: 12px 0 0;
}

/* Pillars */
.pillars { padding: 8px 0 32px; }

.pillar {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0 0 16px;
}

.pillar h2 {
  font-size: 20px;
  margin: 0 0 10px;
}

.pillar p { margin: 0; color: var(--muted); }

.pillar .num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

/* What's included */
.includes { padding: 16px 0 32px; }

.includes h2, .faq h2 {
  font-size: 26px;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.includes ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.includes li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
}

.includes li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.caps {
  font-size: 14px;
  color: var(--muted);
  margin: 16px 0 0;
}

/* Price box */
.price-box {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  margin: 0 0 48px;
}

.price-box .price {
  font-size: 44px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}

.price-box .price small {
  font-size: 18px;
  font-weight: 500;
  color: #b9b9d4;
}

.price-box p {
  color: #c9c9de;
  margin: 12px 0 24px;
  font-size: 16px;
}

.price-box .cta-note { color: #a9a9c6; }

/* How it works */
.how { padding: 8px 0 48px; }

.how h2 {
  font-size: 26px;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.how ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.how li {
  counter-increment: steps;
  padding: 18px 0 18px 56px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.how li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eef0ff;
  color: var(--accent);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how li strong { display: block; font-size: 17px; }
.how li span { color: var(--muted); font-size: 15px; }

/* FAQ */
.faq { padding: 8px 0 48px; }

.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 0 0 12px;
  background: #fff;
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 16px;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 20px;
  font-weight: 400;
}

.faq details[open] summary::after { content: "–"; }

.faq .answer {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 15px;
}

.faq .answer p { margin: 0 0 10px; }
.faq .answer p:last-child { margin-bottom: 0; }
.faq .answer ul { margin: 0 0 10px; padding-left: 20px; }

/* Final CTA + footer */
.final-cta {
  text-align: center;
  padding: 24px 0 56px;
}

.final-cta h2 {
  font-size: 28px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.final-cta p {
  color: var(--muted);
  margin: 0 0 24px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 40px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* Thank-you page */
.ty-hero {
  text-align: center;
  padding: 64px 0 32px;
}

.ty-hero .check {
  font-size: 56px;
  display: block;
  margin-bottom: 12px;
}

.ty-hero h1 {
  font-size: clamp(28px, 6vw, 40px);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.ty-hero p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.next-steps {
  padding: 8px 0 24px;
}

.step {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin: 0 0 12px;
}

.step h3 { margin: 0 0 8px; font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

.survey {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 8px 0 48px;
}

.survey h2 { font-size: 22px; margin: 0 0 8px; }
.survey > p { color: var(--muted); margin: 0 0 20px; font-size: 15px; }

.survey ol { margin: 0; padding-left: 22px; }
.survey li { margin: 0 0 14px; font-size: 16px; }
.survey li:last-child { margin-bottom: 0; }

@media (max-width: 480px) {
  .pillar { padding: 22px; }
  .cta { width: 100%; }
  .how li { padding-left: 50px; }
}
