:root {
  --navy: #1b2a6b;
  --ink: #1a2558;
  --blue: #2563eb;
  --blue-2: #1d4ed8;
  --gold: #d4a017;
  --muted: #5b6577;
  --line: #e6edf5;
  --soft: #e8f0fe;
  --paper: #ffffff;
  --wash: #f3f7fb;
  --live: #22c55e;
  --display: "Playfair Display", Georgia, serif;
  --sans: Inter, "Segoe UI", system-ui, sans-serif;
  --logo: Poppins, Inter, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); color: var(--ink); background: var(--paper); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 28px 0;
  position: relative;
  z-index: 2;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 42px; height: 42px; }
.brand-name { display: block; font-family: var(--logo); font-weight: 700; font-size: 26px; color: var(--blue); letter-spacing: -0.02em; line-height: 1; }
.brand-tag { display: block; margin-top: 5px; font-size: 9px; font-weight: 600; letter-spacing: 0.16em; color: var(--muted); }

.intake-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e8eef6;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--navy);
  box-shadow: 0 4px 18px rgba(27, 42, 107, 0.08);
}
.live { width: 8px; height: 8px; background: var(--live); border-radius: 50%; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 28px 8px;
  align-items: center;
  gap: 12px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 16px;
}
.eyebrow.center { text-align: center; color: #7b8494; }

.hero h1 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(42px, 4.8vw, 66px);
  line-height: 1.02;
  color: #111827;
  letter-spacing: -0.045em;
}
.hero h1 span { color: var(--blue); }

.lede {
  margin-top: 18px;
  max-width: 540px;
  font-size: 17.5px;
  line-height: 1.55;
  color: #2c3550;
}
.lede strong { font-weight: 700; }

.join {
  margin-top: 26px;
  display: flex;
  max-width: 560px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(27, 42, 107, 0.08);
  overflow: hidden;
  border: 1px solid #edf1f7;
}
.email-field { flex: 1; display: flex; align-items: center; gap: 10px; padding: 0 16px; color: #8b95a6; }
.email-field input {
  border: 0; outline: 0; height: 52px; width: 100%;
  font: 400 15px var(--sans); color: var(--ink); background: transparent;
}
.join button {
  border: 0; background: var(--blue); color: #fff;
  font: 600 15px var(--sans);
  padding: 0 22px; white-space: nowrap; cursor: pointer; border-radius: 12px; margin: 4px;
}
.join button:hover { background: var(--blue-2); }
.fineprint { margin-top: 12px; font-size: 13.5px; color: var(--muted); }

.hero-photo {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(27, 42, 107, 0.10);
}
.hero-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 55% 25%;
}

.how {
  border-top: 1px solid var(--line);
  padding: 24px 0 36px;
}
.how > h2 {
  text-align: center;
  font-family: var(--sans);
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.035em;
  color: #111827;
  margin-bottom: 24px;
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  align-items: stretch;
}
.steps article {
  display: grid;
  grid-template-columns: 38px 68px 1fr;
  gap: 12px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(27, 42, 107, 0.04);
}
.num {
  width: 34px; height: 34px; border-radius: 50%;
  background: #edf4ff; color: var(--blue);
  display: grid; place-items: center; font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.icon-bubble {
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center;
}
.bubble-blue { background: #e8f2ff; }
.bubble-gold { background: #fff4d8; }
.bubble-green { background: #e5f8ec; }
.ico { width: 30px; height: 30px; margin: 0; display: block; }
.ico.rocket { width: 32px; height: 32px; }
.steps h3 { font-size: 16px; font-weight: 700; margin-bottom: 5px; color: #111827; line-height: 1.3; }
.steps p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.arrow { color: #9aa5b5; font-size: 28px; align-self: center; }

.outcome {
  background: var(--wash);
  text-align: center;
  padding: 64px 24px 0;
  position: relative;
}
.outcome h2 {
  font-family: var(--sans);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #111827;
  margin-bottom: 42px;
}
.outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto 28px;
  gap: 24px;
}
.out-bubble {
  width: 72px; height: 72px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 16px;
}
.out-blue { background: #e8f2ff; }
.out-purple { background: #f0e9ff; }
.out-green { background: #e4f8eb; }
.out-ico { width: 42px; height: 42px; margin: 0; }
.outcomes figcaption { max-width: 260px; margin: 0 auto; }
.outcomes figcaption strong { display:block; font-size: 17px; color:#111827; line-height:1.35; }
.outcomes figcaption span { display:block; margin-top:7px; font-size:14px; line-height:1.45; color:var(--muted); }
.gold-rule { display: block; width: 42px; height: 2px; background: var(--gold); margin: 8px auto 22px; }
.close { max-width: 640px; margin: 0 auto; color: #667085; font-size: 16.5px; line-height: 1.55; padding-bottom: 48px; }
.wave { display: block; width: 100%; height: 70px; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
}
footer nav { display: flex; gap: 28px; font-size: 14px; color: var(--muted); font-weight: 500; }
footer nav a:hover { color: var(--ink); }
.disclaimer { font-size: 12px; color: var(--muted); line-height: 1.5; text-align: right; }

.legal { max-width: 720px; margin: 0 auto; padding: 24px 28px 80px; }
.legal h1 { font-family: var(--display); font-size: 36px; color: var(--navy); margin-bottom: 18px; }
.legal p { color: #445; line-height: 1.6; margin-bottom: 12px; }

.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 10px;
  border: 1px solid var(--gold); z-index: 20; display: none;
}
.toast.show { display: block; }

@media (max-width: 900px) {
  .hero, footer, .outcomes { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .arrow { display: none; }
  .hero-photo img { height: 360px; }
  footer { text-align: left; }
  .disclaimer { text-align: left; }
  .topbar { padding: 18px 18px 0; }
  .join { flex-direction: column; overflow: visible; border: 0; box-shadow: none; gap: 10px; background: transparent; }
  .email-field { border: 1px solid #edf1f7; border-radius: 12px; min-height: 54px; box-shadow: 0 8px 24px rgba(27, 42, 107, 0.06); }
  .join button { min-height: 54px; margin: 0; border-radius: 12px; }
}

@media (max-width: 640px) {
  .hero { padding-left: 18px; padding-right: 18px; }
  .hero h1 { font-size: 42px; }
  .hero-photo img { height: 330px; }
  .steps { padding-left: 18px; padding-right: 18px; }
  .steps article { grid-template-columns: 34px 56px 1fr; padding: 16px; }
  .icon-bubble { width: 52px; height: 52px; }
  .ico { width: 26px; height: 26px; }
  .outcomes { gap: 30px; }
}
