:root {
  --bg: #0b1220;
  --bg-2: #0f1a2e;
  --panel: #131c2e;
  --border: #24304a;
  --text: #e6edf7;
  --muted: #93a4c2;
  --accent: #3b82f6;
  --up: #22c55e;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); line-height: 1.55; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.2; }

.btn { display: inline-block; padding: 10px 18px; border-radius: 9px; border: 1px solid var(--border);
  background: #1a2438; color: var(--text); font-weight: 600; font-size: 15px; }
.btn:hover { text-decoration: none; background: #223052; }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-primary:hover { background: #2f6fd6; }
.btn-lg { padding: 13px 24px; font-size: 16px; }

/* nav */
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px;
  max-width: 1080px; margin: 0 auto; padding: 0 22px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; color: var(--text); }
.brand img { height: 46px; width: auto; border-radius: 7px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--muted); font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-links a.btn-primary { color: #fff; }

/* hero */
.hero { background: radial-gradient(1200px 500px at 50% -120px, #16233f 0%, var(--bg) 62%); padding: 70px 0 60px; text-align: center; }
.eyebrow { color: var(--accent); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
.hero h1 { font-size: clamp(34px, 6vw, 56px); margin: 14px 0 18px; letter-spacing: -0.02em; }
.lead { color: var(--muted); font-size: 19px; max-width: 640px; margin: 0 auto 28px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.trust { color: var(--muted); font-size: 14px; margin-top: 22px; }

/* check cards */
.checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px;
  margin: 10px auto 20px; }
.check-card { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
.check-card h3 { margin: 0 0 6px; font-size: 16px; }
.check-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* sections */
.section { padding: 56px 22px; }
.section h2 { font-size: 30px; margin: 0 0 8px; text-align: center; }
.section-sub { color: var(--muted); text-align: center; margin: 0 auto 34px; max-width: 560px; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.step { text-align: center; padding: 10px; }
.step .num { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 19px; margin-bottom: 12px; }
.step h3 { margin: 0 0 6px; }
.step p { color: var(--muted); margin: 0; }

.phases { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.phase { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.phase-live { border-color: var(--up); box-shadow: 0 0 0 1px rgba(34,197,94,.25); }
.phase-tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted); background: #1a2438; padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }
.phase-live .phase-tag { color: var(--up); background: rgba(34,197,94,.12); }
.phase h3 { margin: 0 0 8px; font-size: 18px; }
.phase p { color: var(--muted); margin: 0; }

.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; max-width: 720px; margin: 0 auto; }
.plan { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 26px; text-align: center; }
.plan-featured { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(59,130,246,.3); }
.plan h3 { margin: 0 0 6px; }
.plan .price { font-size: 26px; font-weight: 700; margin-bottom: 16px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 20px; color: var(--muted); text-align: left; }
.plan li { padding: 6px 0 6px 24px; position: relative; }
.plan li::before { content: "✓"; color: var(--up); position: absolute; left: 0; font-weight: 700; }

.footer { border-top: 1px solid var(--border); padding: 26px 0; margin-top: 30px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer .brand { font-size: 16px; }
.footer .brand img { height: 34px; width: auto; }
.muted { color: var(--muted); font-size: 14px; }
