:root {
  --purple: #8c3dfa;
  --purple-deep: #5c21b8;
  --pink: #ff4aa1;
  --pink-soft: #ff82c9;
  --yellow: #ffcc38;
  --amber: #ffa133;
  --bg: #12081f;
  --text: #f4edff;
  --muted: #b7a8d4;
  --card: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.12);
  --max: 1080px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a { color: var(--pink); text-decoration: none; }
a:hover { color: var(--yellow); }
img { max-width: 100%; }

.lava {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(140, 61, 250, 0.35), transparent 55%),
    radial-gradient(900px 600px at 110% 10%, rgba(255, 74, 161, 0.22), transparent 50%),
    var(--bg);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
  animation: float 18s ease-in-out infinite;
}

.blob:nth-child(1) { width: 340px; height: 340px; background: var(--purple); left: -80px; top: 8%; }
.blob:nth-child(2) { width: 280px; height: 280px; background: var(--pink); right: -60px; top: 22%; animation-delay: -4s; }
.blob:nth-child(3) { width: 260px; height: 260px; background: var(--amber); left: 28%; bottom: -80px; animation-delay: -8s; }
.blob:nth-child(4) { width: 180px; height: 180px; background: var(--yellow); right: 18%; bottom: 12%; animation-delay: -11s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -30px) scale(1.08); }
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 8px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}

.brand img { height: 42px; width: auto; }

nav { display: flex; gap: 18px; flex-wrap: wrap; }
nav a { color: var(--muted); font-weight: 600; font-size: 14px; }
nav a:hover, nav a.active { color: var(--text); }

.hero {
  padding: 64px 0 48px;
  text-align: center;
}

.hero img.logo {
  width: min(280px, 70vw);
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(255, 161, 51, 0.28));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 204, 56, 0.12);
  border: 1px solid rgba(255, 204, 56, 0.35);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.15; }
h1 {
  font-size: clamp(36px, 7vw, 72px);
  margin: 18px 0 10px;
  background: linear-gradient(120deg, var(--yellow), var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 12px 28px rgba(255, 74, 161, 0.28);
}

.btn-ghost {
  color: var(--text);
  background: var(--card);
  border-color: var(--stroke);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  padding: 8px 0 56px;
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 20px 22px;
  backdrop-filter: blur(16px);
}

.card h3 { margin: 8px 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-soft);
}

.kicker.soon { color: var(--yellow); }

section { padding: 12px 0 8px; }
section h2 {
  font-size: 28px;
  margin: 0 0 8px;
}

.section-copy { color: var(--muted); margin: 0 0 22px; max-width: 640px; }

.legal {
  padding: 48px 0 80px;
  max-width: 760px;
}

.legal h1 { font-size: 42px; }
.meta { color: var(--muted); margin-bottom: 28px; }
.legal h2 { margin: 32px 0 10px; font-size: 20px; }
.legal p, .legal li { color: #d5cbe8; }
.highlight {
  background: rgba(255, 204, 56, 0.1);
  border: 1px solid rgba(255, 204, 56, 0.28);
  border-radius: 16px;
  padding: 16px 18px;
  margin: 18px 0 28px;
}

footer {
  border-top: 1px solid var(--stroke);
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

footer a { color: var(--muted); }
footer a:hover { color: var(--yellow); }

@media (max-width: 640px) {
  header { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 36px; }
}
