* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #0f1923;
  color: #e2e8f0;
  line-height: 1.6;
  min-height: 100vh;
}
a { color: #a78bfa; text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 960px; margin: 0 auto; padding: 24px 20px 48px; }
header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 32px;
  border-bottom: 1px solid #1e293b; padding-bottom: 20px;
}
.logo { font-size: 1.5rem; font-weight: 800; color: #fff; }
.logo span { background: linear-gradient(90deg, #a78bfa, #ec4899); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav { display: flex; flex-wrap: wrap; gap: 16px; font-size: 0.9rem; }
.btn {
  display: inline-block; padding: 12px 24px; border-radius: 8px;
  font-weight: 600; text-decoration: none !important;
}
.btn-primary { background: linear-gradient(90deg, #7c3aed, #db2777); color: #fff; }
.btn-ghost { border: 1px solid #475569; color: #e2e8f0; }
.hero { margin-bottom: 32px; }
.hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 12px; color: #fff; }
.hero p { color: #94a3b8; font-size: 1.05rem; max-width: 640px; }
.card {
  background: #1a242d; border: 1px solid #334155; border-radius: 12px;
  padding: 20px; margin-bottom: 16px;
}
.card h2, .card h3 { color: #f8fafc; margin-bottom: 8px; font-size: 1.1rem; }
.faq-item { margin-bottom: 20px; }
.faq-item h3 { color: #c4b5fd; font-size: 1rem; margin-bottom: 6px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-top: 24px; }
.grid a {
  background: #1a242d; border: 1px solid #334155; border-radius: 10px;
  padding: 16px; text-align: center; color: #e2e8f0;
}
.grid a:hover { border-color: #7c3aed; }
footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid #1e293b; color: #64748b; font-size: 0.85rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
ul.features { list-style: none; margin-top: 16px; }
ul.features li { padding: 8px 0; padding-left: 24px; position: relative; color: #cbd5e1; }
ul.features li::before { content: "✓"; position: absolute; left: 0; color: #22c55e; }
