:root {
  --ink: #201036;
  --bg-deep: #1a0b2e;
  --bg-mid: #220e3a;
  --surface: rgba(48, 24, 72, 0.72);
  --surface-border: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --magenta: #fe51ff;
  --purple: #a526ff;
  --yellow: #ffbb00;
  --gradient: linear-gradient(135deg, #fe51ff 0%, #a526ff 48%, #ffbb00 100%);
  --radius: 20px;
  --max: 960px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(254, 81, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(165, 38, 255, 0.18), transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255, 187, 0, 0.08), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--magenta); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.brand:hover { text-decoration: none; }

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(254, 81, 255, 0.35);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--surface-border);
  text-decoration: none;
}

/* Hero */
.hero {
  text-align: center;
  padding: 24px 0 56px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(254, 81, 255, 0.12);
  border: 1px solid rgba(254, 81, 255, 0.35);
  color: var(--magenta);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 32px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--gradient);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(254, 81, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--ink);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--surface-border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: var(--text);
}

/* Cards grid */
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 560px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 56px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(12px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(254, 81, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Legal / support prose */
.page-header {
  padding: 12px 0 32px;
  border-bottom: 1px solid var(--surface-border);
  margin-bottom: 36px;
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.page-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.prose {
  max-width: 720px;
}

.prose h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--yellow);
}

.prose p, .prose li {
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.prose ul, .prose ol {
  padding-left: 1.4rem;
  margin-bottom: 16px;
}

.prose li { margin-bottom: 8px; }

.prose strong { color: var(--text); }

/* FAQ */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-box {
  background: linear-gradient(135deg, rgba(254, 81, 255, 0.12), rgba(165, 38, 255, 0.08));
  border: 1px solid rgba(254, 81, 255, 0.25);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 40px;
}

.contact-box h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.contact-box p {
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* Footer */
.site-footer {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--surface-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--text); }

@media (max-width: 600px) {
  .site-nav { flex-direction: column; align-items: flex-start; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}
