:root {
  --bg: #0e1526;
  --bg2: #141d33;
  --card: #18223c;
  --line: #26345a;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #0e1526;
  color: #e8ecf5;
  line-height: 1.6;
}
a { color: #7fb4ff; }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 20px; }
header.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; max-width: 960px; margin: 0 auto;
}
.brand { font-weight: 800; font-size: 1.25rem; letter-spacing: .2px; color: #fff; text-decoration: none; }
.brand span { color: #f2b134; }
.navlinks a { color: #c6cfe3; text-decoration: none; margin-left: 18px; font-size: .95rem; }
.navlinks a.cta { background: #f2b134; color: #141414; padding: 8px 16px; border-radius: 8px; font-weight: 700; }
.hero { text-align: center; padding: 72px 20px 48px; }
.hero h1 { font-size: 2.6rem; line-height: 1.15; margin: 0 0 18px; color: #fff; }
.hero h1 .hl { color: #f2b134; }
.hero p.sub { font-size: 1.2rem; color: #b9c3da; max-width: 640px; margin: 0 auto 30px; }
.btn {
  display: inline-block; background: #f2b134; color: #141414; font-weight: 800;
  padding: 14px 30px; border-radius: 10px; text-decoration: none; font-size: 1.05rem;
}
.btn:hover { background: #ffc44d; }
.btn.ghost { background: transparent; border: 1px solid #4a5878; color: #e8ecf5; }
.section { padding: 48px 0; }
.section h2 { text-align: center; color: #fff; font-size: 1.8rem; margin-bottom: 8px; }
.section p.lead { text-align: center; color: #b9c3da; max-width: 640px; margin: 0 auto 32px; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.step { background: #18223c; border: 1px solid #26345a; border-radius: 12px; padding: 24px; }
.step .num { font-size: .85rem; font-weight: 800; color: #f2b134; letter-spacing: 1px; }
.step h3 { margin: 8px 0 8px; color: #fff; font-size: 1.1rem; }
.step p { margin: 0; color: #aeb8d2; font-size: .97rem; }
.pricing { display: flex; justify-content: center; }
.price-card {
  background: #18223c; border: 2px solid #f2b134; border-radius: 14px;
  padding: 36px; max-width: 420px; width: 100%; text-align: center;
}
.price-card .tier { font-weight: 800; color: #f2b134; letter-spacing: 1px; font-size: .9rem; }
.price-card .amt { font-size: 3rem; font-weight: 800; color: #fff; margin: 10px 0 0; }
.price-card .per { color: #aeb8d2; }
.price-card ul { text-align: left; color: #c6cfe3; padding-left: 20px; margin: 20px 0; }
.price-card li { margin: 8px 0; }
.fine { text-align: center; color: #8b96b3; font-size: .9rem; margin-top: 14px; }
.faq details {
  background: #18223c; border: 1px solid #26345a; border-radius: 10px;
  padding: 16px 20px; margin: 12px 0;
}
.faq summary { font-weight: 700; color: #fff; cursor: pointer; }
.faq p { color: #aeb8d2; margin: 10px 0 0; }
.signup { background: #141d33; border-top: 1px solid #26345a; text-align: center; padding: 56px 20px; }
.signup h2 { color: #fff; }
form.capture { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
form.capture input[type=email] {
  padding: 14px 16px; border-radius: 10px; border: 1px solid #4a5878;
  background: #0e1526; color: #fff; min-width: 280px; font-size: 1rem;
}
form.capture button {
  background: #f2b134; color: #141414; font-weight: 800; border: none;
  padding: 14px 26px; border-radius: 10px; font-size: 1rem; cursor: pointer;
}
.thanks { display: none; }
footer { text-align: center; color: #6b7694; font-size: .85rem; padding: 32px 20px; }
footer a { color: #8b96b3; }
@media (max-width: 600px) { .hero h1 { font-size: 1.9rem; } }
