* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Outfit', system-ui, sans-serif; background: #0B0F1A; color: #fff; line-height: 1.6; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
header { padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.75rem; color: #fff; text-decoration: none; font-weight: 700; font-size: 1.25rem; }
.logo img { width: 36px; height: 36px; border-radius: 8px; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 12px; font-weight: 700; text-decoration: none; transition: all 0.2s; font-size: 0.95rem; }
.btn-primary { background: linear-gradient(135deg, #9006f9, #7c05d6); color: #fff; box-shadow: 0 0 20px -5px rgba(144,6,249,0.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px -5px rgba(144,6,249,0.8); }
.btn-ghost { color: #fff; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.hero { padding: 5rem 0 4rem; text-align: center; background: radial-gradient(ellipse at center top, rgba(144,6,249,0.15), transparent 70%); }
.hero h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.hero h1 .grad { background: linear-gradient(135deg, #9006f9, #c084fc); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lede { font-size: 1.2rem; color: #94a3b8; max-width: 700px; margin: 0 auto 2rem; }
.cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.badges { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; color: #94a3b8; font-size: 0.95rem; }
.badges span { display: inline-flex; align-items: center; gap: 0.5rem; }
.badges b { color: #fff; }
section { padding: 4rem 0; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; text-align: center; margin-bottom: 1rem; }
.subtitle { color: #94a3b8; text-align: center; max-width: 600px; margin: 0 auto 3rem; font-size: 1.05rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 1rem; padding: 2rem; transition: all 0.3s; }
.card:hover { border-color: rgba(144,6,249,0.4); transform: translateY(-2px); }
.card .icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: rgba(144,6,249,0.12); border-radius: 12px; margin-bottom: 1rem; font-size: 1.5rem; }
.card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; font-weight: 700; }
.card p { color: #94a3b8; font-size: 0.95rem; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding: 2rem 1.5rem 1.5rem; background: rgba(255,255,255,0.03); border-radius: 1rem; border: 1px solid rgba(255,255,255,0.06); }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -1rem; left: 1.5rem; width: 2.5rem; height: 2.5rem; background: linear-gradient(135deg, #9006f9, #7c05d6); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; }
.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step p { color: #94a3b8; font-size: 0.92rem; }
.faq { max-width: 800px; margin: 0 auto; }
.faq details { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 0.75rem; padding: 1.25rem 1.5rem; margin-bottom: 0.75rem; }
.faq summary { font-weight: 600; cursor: pointer; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::after { content: '+'; font-size: 1.5rem; color: #9006f9; }
.faq details[open] summary::after { content: '\2212'; }
.faq details[open] summary { margin-bottom: 0.75rem; }
.faq p { color: #94a3b8; }
.final-cta { text-align: center; padding: 5rem 0; background: radial-gradient(ellipse at center, rgba(144,6,249,0.18), transparent 70%); }
.final-cta h2 { margin-bottom: 1rem; }
.final-cta p { color: #94a3b8; max-width: 600px; margin: 0 auto 2rem; }
footer { padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; color: #94a3b8; font-size: 0.9rem; }
footer a { color: #94a3b8; text-decoration: none; margin: 0 0.75rem; }
footer a:hover { color: #fff; }
.related { padding: 3rem 0 5rem; }
.related h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.related-grid a { display: block; padding: 1.25rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 0.75rem; color: #fff; text-decoration: none; font-weight: 600; transition: all 0.2s; }
.related-grid a:hover { background: rgba(144,6,249,0.1); border-color: rgba(144,6,249,0.4); }
.related-grid a span { color: #94a3b8; font-weight: 400; font-size: 0.85rem; display: block; margin-top: 0.25rem; }
