:root {
  --bg: #090c10;
  --bg-2: #0d1218;
  --surface: rgba(15, 20, 27, 0.94);
  --surface-2: rgba(20, 27, 35, 0.98);
  --text: #f5f7fa;
  --muted: #9ca6b3;
  --muted-2: #7f8896;
  --accent: #96bbff;
  --accent-2: #7ed6a7;
  --border: rgba(255,255,255,0.075);
  --border-strong: rgba(150,187,255,0.2);
  --shadow: 0 28px 90px rgba(0,0,0,.5);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, Geist, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 15% 8%, rgba(150,187,255,.12), transparent 24%),
    radial-gradient(circle at 85% 14%, rgba(126,214,167,.08), transparent 18%),
    linear-gradient(180deg, #080b10 0%, #0b0f14 45%, #090c10 100%);
}
a { color: var(--accent); text-decoration: none; }
a:hover { opacity: .92; }
img { max-width: 100%; display: block; }
code, pre { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.page { padding: 28px 0 84px; }
.topbar {
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  padding: 8px 0 26px;
}
.brand { display:inline-flex; gap:12px; align-items:center; font-weight:800; letter-spacing:.02em; color: var(--text); }
.brand-mark { width:12px; height:12px; border-radius:999px; background: linear-gradient(135deg,var(--accent),var(--accent-2)); box-shadow: 0 0 20px rgba(150,187,255,.55); }
.back-link {
  display:inline-flex; align-items:center; gap:10px; padding:10px 14px;
  border-radius:999px; border:1px solid var(--border);
  background: rgba(255,255,255,.025); color: var(--muted); font-size:13px; font-weight:700;
}
.hero-panel, .card, .cta-card, .image-frame {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018));
  border:1px solid var(--border); box-shadow: var(--shadow); backdrop-filter: blur(14px);
}
.hero-panel { border-radius: var(--radius-xl); padding: 38px; }
.eyebrow {
  display:inline-flex; gap:10px; align-items:center; padding:10px 14px;
  border-radius:999px; border:1px solid var(--border);
  background: rgba(255,255,255,.025); color: var(--muted);
  font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
}
.eyebrow::before {
  content:""; width:8px; height:8px; border-radius:999px; background: var(--accent-2); box-shadow: 0 0 16px rgba(126,214,167,.7);
}
h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: .98; letter-spacing: -.045em; margin: 18px 0 16px;
  max-width: 12ch;
}
h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.02; letter-spacing: -.04em; margin: 0 0 10px;
}
h3 { margin: 0 0 10px; font-size: 1.22rem; }
.lead { color: var(--muted); font-size: 1.12rem; max-width: 66ch; margin: 0; }
.meta { color: var(--muted-2); font-size: .95rem; margin-top: 12px; }
.section { padding-top: 26px; }
.grid-1, .grid-2, .grid-3 { display:grid; gap:18px; }
.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card { border-radius: var(--radius-lg); padding: 24px; }
.card p { margin: 0; color: var(--muted); }
.image-frame { border-radius: 24px; overflow: hidden; padding: 18px; }
.image-frame img { border-radius: 16px; border: 1px solid rgba(150,187,255,.12); }
.image-caption { color: var(--muted-2); font-size: .92rem; margin-top: 12px; }
.step-num {
  width:40px; height:40px; border-radius:14px; display:inline-flex; align-items:center; justify-content:center;
  background: rgba(150,187,255,.12); color: var(--accent); font-weight: 800; margin-bottom: 14px;
}
.kicker { color: var(--accent); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.callout {
  border-radius: 20px; padding: 20px 22px;
  border:1px solid var(--border-strong); background: linear-gradient(180deg, rgba(150,187,255,.09), rgba(255,255,255,.02));
  color: var(--muted);
}
.callout strong { color: var(--text); }
.badge-row { display:flex; flex-wrap:wrap; gap:10px; margin-top: 16px; }
.badge {
  display:inline-flex; padding:9px 12px; border-radius:999px;
  border:1px solid var(--border); color: var(--muted); font-size:13px; font-weight:700;
}
.code-block {
  background: #0d131a; color: #dce5f3; padding: 18px; border-radius: 18px;
  border:1px solid rgba(150,187,255,.12); overflow:auto; margin: 14px 0 0;
}
.cta-card {
  border-radius: var(--radius-xl); padding: 30px 32px;
  display:flex; justify-content:space-between; align-items:center; gap:18px;
  background: linear-gradient(180deg, rgba(150,187,255,.1), rgba(255,255,255,.025));
  border:1px solid var(--border-strong);
}
.cta-copy h3 { font-size: 1.9rem; margin: 0 0 8px; }
.cta-copy p { margin:0; color: var(--muted); }
.button {
  display:inline-flex; align-items:center; justify-content:center; min-height: 52px; padding: 14px 22px;
  border-radius: 16px; text-decoration:none; font-weight:800;
}
.button-primary { background: var(--accent); color: #08111d; }
.faq-list { display:grid; gap: 18px; }
.policy-card h3 { margin-top: 28px; }
.policy-card ul { color: var(--muted); margin: 12px 0 0 22px; }
.footer { padding: 40px 0 56px; }
.footer-card {
  border-radius: 22px; padding: 22px 24px; text-align:center;
  background: rgba(255,255,255,.022); border:1px solid var(--border);
  color: var(--muted);
}
.footer-card p { margin: 6px 0; }
@media (max-width: 980px) {
  .grid-2, .grid-3, .cta-card { grid-template-columns: 1fr; display:grid; }
  h1 { max-width: none; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 24px, 1120px); }
  .hero-panel, .card, .cta-card, .image-frame { padding: 22px; }
  .topbar { flex-direction:column; align-items:flex-start; }
  .button { width: 100%; }
}
