:root{
  --bg: #ffffff;
  --bg-alt: #f6f8fc;
  --ink: #0b1220;
  --muted: #5b667a;
  --line: rgba(15, 23, 42, .10);

  --primary:#1f5eff;
  --primary2:#0e46d6;

  --card:#ffffff;
  --shadow: 0 16px 40px rgba(12, 18, 34, .10);

  --radius: 18px;
  --max: 1120px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--ink);
  background:
    radial-gradient(900px 450px at 20% 0%, rgba(31,94,255,.10), transparent 55%),
    radial-gradient(900px 450px at 90% 10%, rgba(31,94,255,.08), transparent 55%),
    var(--bg);
}

a{color:inherit}
.container{
  width:min(var(--max), calc(100% - 48px));
  margin-inline:auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(255,255,255,.75);
  border-bottom:1px solid rgba(15, 23, 42, .06);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.brand-logo{
  height:26px;
  width:auto;
  display:block;
}

.brand-name{
  font-weight:700;
  letter-spacing:-0.02em;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.chip{
  font-size:13px;
  color:var(--muted);
  padding:8px 12px;
  border:1px solid rgba(15, 23, 42, .08);
  border-radius:999px;
  background:rgba(255,255,255,.70);
}

.hero{
  padding:44px 0 34px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:start;
}

.hero-copy h1{
  margin:0 0 14px;
  font-size: clamp(40px, 4.2vw, 64px);
  line-height:1.02;
  letter-spacing:-0.03em;
}

.accent{
  color:var(--primary2);
}

.lead{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.6;
  color:var(--muted);
  max-width:58ch;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:16px 0 12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(15, 23, 42, .10);
  text-decoration:none;
  font-weight:600;
  letter-spacing:-0.01em;
  transition:transform .08s ease, box-shadow .12s ease, background .12s ease;
  user-select:none;
}

.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0px)}

.btn-primary{
  color:#fff;
  border-color:transparent;
  background:linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 10px 24px rgba(31,94,255,.18);
}

.btn-secondary{
  background:#fff;
}

.btn-ghost{
  background:rgba(255,255,255,.70);
}

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

.badge-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

.badge{
  font-size:13px;
  color:var(--ink);
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.65);
  border:1px solid rgba(15, 23, 42, .08);
}

.badge-soft{
  background:rgba(31,94,255,.08);
  border-color:rgba(31,94,255,.14);
}

.hero-card .card{
  background:var(--card);
  border:1px solid rgba(15, 23, 42, .08);
  box-shadow:var(--shadow);
  border-radius:22px;
  padding:18px 18px 16px;
}

.card-kicker{
  font-size:12px;
  color:var(--muted);
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:10px;
}

.steps{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.steps li{
  display:grid;
  grid-template-columns: 28px 1fr;
  gap:12px;
  align-items:start;
  padding:10px 10px;
  border-radius:14px;
  background:rgba(246,248,252,.7);
  border:1px solid rgba(15, 23, 42, .06);
}

.step-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:999px;
  background:rgba(31,94,255,.12);
  color:var(--primary2);
  font-weight:700;
  font-size:13px;
}

.muted{color:var(--muted); font-size:13px; margin-top:2px}

.card-note{
  margin-top:12px;
  color:var(--muted);
  font-size:13px;
}

.section{
  padding:56px 0;
}

.section.alt{
  background:var(--bg-alt);
  border-top:1px solid rgba(15, 23, 42, .06);
  border-bottom:1px solid rgba(15, 23, 42, .06);
}

.section-head{
  margin-bottom:18px;
}

.section-head h2{
  margin:0 0 8px;
  font-size:34px;
  letter-spacing:-0.02em;
}

.sub{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  margin-top:18px;
}

.panel{
  background:#fff;
  border:1px solid rgba(15, 23, 42, .08);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 10px 24px rgba(12, 18, 34, .06);
}

.panel h3{
  margin:0 0 10px;
  font-size:18px;
}

.checklist{
  margin:0;
  padding-left:18px;
  color:var(--ink);
  line-height:1.7;
}

.tiny{
  margin-top:14px;
  font-size:12px;
  color:var(--muted);
}

.pricing{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:start;
  margin-top:18px;
}

.price-card, .side-card{
  background:#fff;
  border:1px solid rgba(15, 23, 42, .08);
  border-radius:22px;
  padding:20px;
  box-shadow: 0 12px 30px rgba(12, 18, 34, .07);
}

.price{
  display:flex;
  align-items:baseline;
  gap:10px;
  margin-bottom:12px;
}

.price-amount{
  font-size:46px;
  font-weight:800;
  letter-spacing:-0.03em;
}

.price-label{
  color:var(--muted);
  font-weight:600;
}

.bullets{
  margin:0;
  padding-left:18px;
  line-height:1.7;
}

.fineprint{
  margin-top:12px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(31,94,255,.06);
  border:1px solid rgba(31,94,255,.14);
  font-size:13px;
}

.risk-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

.note{
  margin-top:14px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(15, 23, 42, .08);
  background:rgba(246,248,252,.8);
  color:var(--muted);
  line-height:1.6;
}

.faq{
  display:grid;
  gap:12px;
  margin-top:10px;
}

details{
  border:1px solid rgba(15, 23, 42, .08);
  background:#fff;
  border-radius:18px;
  padding:14px 16px;
}

summary{
  cursor:pointer;
  font-weight:650;
  list-style:none;
}

summary::-webkit-details-marker{display:none}

.answer{
  margin-top:10px;
  color:var(--muted);
  line-height:1.6;
}

.footer{
  padding:32px 0 24px;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap:16px;
  padding-top:10px;
  border-top:1px solid rgba(15, 23, 42, .08);
}

.footer-head{font-weight:700; margin-bottom:8px}
.footer-brand{font-weight:800; letter-spacing:-0.02em; margin-bottom:6px}
.footer a{text-decoration:none}
.footer a:hover{text-decoration:underline}

.footer-bottom{
  margin-top:16px;
  font-size:12px;
}

@media (max-width: 940px){
  .hero-grid, .pricing{grid-template-columns:1fr}
  .header-actions .chip{display:none}
}

@media (max-width: 560px){
  .container{width: min(var(--max), calc(100% - 30px))}
  .header-inner{padding:14px 0}
  .btn{width:100%}
}
