:root {
  --bg: #090d14;
  --panel: #111827;
  --panel-soft: #151f30;
  --text: #e6edf7;
  --muted: #b6c2d8;
  --line: #23324a;
  --accent: #4f8cff;
  --accent-strong: #326bf0;
  --radius: 14px;
  --shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; background: radial-gradient(circle at top right, #132542 0%, var(--bg) 48%); color: var(--text); }
a { color: inherit; text-decoration: none; }
.container { width: min(1100px, calc(100% - 2.5rem)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; backdrop-filter: blur(8px); background: rgba(9, 13, 20, 0.78); border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
.brand { font-weight: 800; letter-spacing: .2px; font-size: 1.1rem; }
.nav { display: flex; gap: 1.1rem; }
.nav a { color: var(--muted); font-size: .95rem; }
.nav a:hover { color: var(--text); }
.hero { padding: 5.25rem 0 4rem; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2.4rem; align-items: start; }
.eyebrow { display: inline-block; margin: 0 0 .85rem; color: #99b5ee; font-weight: 600; letter-spacing: .5px; font-size: .88rem; text-transform: uppercase; }
h1,h2,h3 { margin: 0; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4.7vw, 3.2rem); max-width: 15ch; }
.lede { margin: 1rem 0 1.5rem; color: var(--muted); font-size: 1.05rem; max-width: 56ch; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0 1rem; border-radius: 10px; font-weight: 600; font-size: .95rem; border: 1px solid transparent; transition: all .18s ease; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-1px); }
.btn-secondary { border-color: var(--line); color: var(--text); background: rgba(255,255,255,.02); }
.btn-secondary:hover { border-color: #38507a; background: rgba(255,255,255,.04); }
.hero-points { margin: 0; padding: 0; list-style: none; display: grid; gap: .55rem; color: var(--muted); font-size: .95rem; }
.hero-points li { display: flex; gap: .6rem; align-items: flex-start; }
.hero-points li::before { content: '•'; color: #7db0ff; }
.hero-card { background: linear-gradient(180deg, #152338 0%, #0f1728 100%); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.2rem 1rem; box-shadow: var(--shadow); }
.hero-card h2 { font-size: 1.15rem; margin-bottom: .85rem; }
.hero-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.hero-card li { color: var(--muted); font-size: .95rem; line-height: 1.45; display: grid; grid-template-columns: auto 1fr; gap: .55rem; }
.hero-card span { color: #96b8ff; font-weight: 700; }
.section { padding: 4rem 0; }
.section.alt { background: rgba(255,255,255,.02); border-top: 1px solid rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.04); }
.section h2 { font-size: clamp(1.5rem,2.7vw,2rem); }
.section-intro { color: var(--muted); margin: .65rem 0 1.4rem; }
.cards,.steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.card,.steps article { background: var(--panel-soft); border: 1px solid var(--line); border-radius: 12px; padding: 1rem; }
.card h3,.steps h3 { font-size: 1.05rem; margin-bottom: .55rem; }
.card p,.steps p { margin: 0; color: var(--muted); line-height: 1.5; font-size: .95rem; }
.steps { margin-top: 1.2rem; }
.steps span { display: inline-flex; width: 30px; height: 30px; border-radius: 50%; align-items: center; justify-content: center; background: rgba(79,140,255,.18); color: #9cc2ff; font-weight: 700; margin-bottom: .7rem; }
.outcomes ul { margin: 1rem 0 0; padding-left: 1.2rem; color: var(--muted); line-height: 1.65; }
.cta-section { padding-top: 1.2rem; }
.cta-box { border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(170deg,#10203a 0%,#0d1627 100%); padding: 1.5rem; display: grid; gap: .75rem; }
.cta-box p { margin: 0; color: var(--muted); }
.site-footer { border-top: 1px solid rgba(255,255,255,.08); margin-top: 3rem; }
.footer-wrap { min-height: 72px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: #91a2c0; font-size: .9rem; }
@media (max-width: 940px) { .hero-grid,.cards,.steps { grid-template-columns: 1fr; } .hero { padding-top: 4rem; } h1 { max-width: 100%; } }
@media (max-width: 620px) { .nav { display: none; } .container { width: min(1100px, calc(100% - 1.4rem)); } .footer-wrap { flex-direction: column; justify-content: center; text-align: center; padding: .75rem 0; } }
