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

:root {
  --bg:      #0f0a1e;
  --surface: #1a1030;
  --card:    #201540;
  --primary: #b87bff;
  --pink:    #ff6bba;
  --amber:   #ffb347;
  --blue:    #6bc5ff;
  --success: #5cffa0;
  --danger:  #ff5f7e;
  --text:    #f0e8ff;
  --muted:   rgba(220,200,255,0.55);
  --border:  rgba(180,140,255,0.14);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 55% 40% at 12% 8%,  rgba(184,123,255,.18) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 88% 20%, rgba(255,107,186,.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 45% at 85% 85%, rgba(107,197,255,.12) 0%, transparent 65%);
}

.container {
  position: relative; z-index: 1;
  width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 24px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: 100px;
  font-family: inherit; font-size: 15px; font-weight: 800;
  text-decoration: none; cursor: pointer;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .2s, background .2s, border-color .2s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: scale(.95); }

.btn-primary {
  background: linear-gradient(130deg, var(--pink), var(--amber));
  color: #fff;
  box-shadow: 0 8px 30px rgba(255,107,186,.4);
}
.btn-primary:hover { box-shadow: 0 12px 38px rgba(255,107,186,.55); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 88px 0; position: relative; z-index: 1;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-title {
  font-size: 54px; font-weight: 900; line-height: 1.06; letter-spacing: -1px;
  margin-bottom: 22px;
}
.hero-title span {
  background: linear-gradient(130deg, var(--primary), var(--pink) 60%, var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 17px; font-weight: 600; color: var(--muted);
  max-width: 520px; line-height: 1.65; margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 22px; }
.hero-note {
  font-size: 12px; font-weight: 700; color: rgba(220,200,255,.35);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero { padding: 64px 0; }
  .hero-title { font-size: 38px; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
}
