/* Minimal, clean, fast-loading styles (no external deps) */
:root{
  --bg:#0b1220;
  --bg2:#0f1830;
  --card:#121c35;
  --text:#e9eefc;
  --muted:#b8c3e6;
  --line:rgba(255,255,255,.10);
  --accent:#7aa7ff;
  --accent2:#84f0c4;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius:20px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(122,167,255,.25), transparent 55%),
              radial-gradient(900px 500px at 85% 10%, rgba(132,240,196,.18), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  line-height:1.55;
}

a{color:var(--text); text-decoration:none}
a:hover{opacity:.9; text-decoration:underline}
.container{max-width:1080px;margin:0 auto;padding:0 18px}

.site-header{
  padding:56px 0 28px;
  border-bottom:1px solid var(--line);
}
.header-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:24px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
  letter-spacing:.2px;
  margin:0 0 14px;
}
h1{
  font-size:40px;
  line-height:1.12;
  margin:0 0 14px;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
}
.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:12px 0 10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight:600;
  font-size:14px;
}
.btn-primary{
  background: linear-gradient(135deg, rgba(122,167,255,.95), rgba(132,240,196,.85));
  color:#06101d;
  border-color: transparent;
}
.btn-ghost{
  background: rgba(255,255,255,.06);
}
.meta-note{
  margin:10px 0 0;
  font-size:12px;
  color:rgba(233,238,252,.75);
}
.header-media img{
  width:100%;
  height:auto;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}

.section{padding:40px 0}
.section-alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
h2{margin:0 0 10px; font-size:26px}
h3{margin:18px 0 8px; font-size:18px}
p{margin:0 0 12px}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.card{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.card p{color:var(--muted); margin:0}

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:start;
}
.side-media img{
  width:100%;
  height:auto;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}

.bullets{
  margin:12px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.bullets li{margin:8px 0}

.note{
  margin:14px 0;
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid var(--line);
  background: rgba(122,167,255,.10);
  color:rgba(233,238,252,.92);
}

.checklist{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.check-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.check{
  width:24px; height:24px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:10px;
  background: rgba(132,240,196,.16);
  border:1px solid rgba(132,240,196,.25);
  color: var(--accent2);
  font-weight:800;
}

.timeline{
  margin-top:16px;
  display:grid;
  gap:12px;
}
.step{
  display:grid;
  grid-template-columns: 40px 1fr;
  gap:12px;
  align-items:start;
  padding:14px;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.step-badge{
  width:40px;height:40px;
  border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(122,167,255,.14);
  border:1px solid rgba(122,167,255,.25);
  color: var(--accent);
  font-weight:800;
}
.step-body p{color:var(--muted); margin:0}

.site-footer{
  padding:34px 0 18px;
  border-top:1px solid var(--line);
}
.footer-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.small{font-size:13px;color:rgba(233,238,252,.78)}
.footnote{padding-top:10px;border-top:1px solid var(--line); margin-top:14px}

@media (max-width: 900px){
  .header-grid, .split{grid-template-columns:1fr}
  h1{font-size:32px}
  .cards{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
}
