
:root {
  --bg: #05020A;
  --card: rgba(18, 10, 34, 0.78);
  --purple: #7B2CFF;
  --purple2: #B84CFF;
  --text: #FFFFFF;
  --muted: #C9B7DF;
  --line: rgba(123, 44, 255, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,44,255,0.45), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}
.orb-one { top: 8%; left: -120px; }
.orb-two { bottom: 8%; right: -160px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 6vw;
  background: rgba(5,2,10,0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.brand img { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.nav-links a:hover { color: white; }

.hero {
  width: min(1180px, 88vw);
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 56px;
  padding: 80px 0;
}
.eyebrow {
  color: var(--purple2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 13px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin-bottom: 26px;
}
h1 span { color: var(--purple2); }
h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}
.subtitle {
  font-size: clamp(20px, 3vw, 30px);
  color: white;
  font-weight: 800;
}
.lead, .section p, .section-intro {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 26px;
}
.cta-row.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  color: white;
  border: 1px solid var(--line);
}
.btn.small { min-height: 42px; padding: 0 18px; font-size: 14px; }
.btn.primary {
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  box-shadow: 0 0 34px rgba(123,44,255,0.45);
}
.btn.secondary { background: rgba(255,255,255,0.05); }

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badges span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #E7D9FF;
  background: rgba(123,44,255,0.08);
  font-size: 13px;
  font-weight: 800;
}

.hero-card {
  position: relative;
  padding: 34px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: radial-gradient(circle at 50% 15%, rgba(123,44,255,0.35), rgba(18,10,34,0.82) 48%, rgba(0,0,0,0.55));
  box-shadow: 0 0 80px rgba(123,44,255,0.25);
}
.hero-card img {
  width: min(100%, 420px);
  border-radius: 32px;
  object-fit: cover;
}
.hero-card h2 { color: var(--purple2); margin-top: 16px; margin-bottom: 8px; }

.banner-wrap {
  width: min(1180px, 88vw);
  margin: 0 auto 70px;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(123,44,255,0.18);
}
.banner-wrap img {
  width: 100%;
  display: block;
}

.section {
  width: min(1180px, 88vw);
  margin: 0 auto;
  padding: 80px 0;
}
.two-col {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.grid {
  display: grid;
  gap: 18px;
}
.cards, .roadmap {
  grid-template-columns: repeat(4, 1fr);
}
.cards article, .roadmap article, details {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--card);
  padding: 26px;
}
.cards h3, .roadmap h3 { margin-bottom: 10px; }
.roadmap span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(123,44,255,0.18);
  color: var(--purple2);
  font-weight: 900;
  margin-bottom: 18px;
}
.void-event {
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: radial-gradient(circle at 85% 20%, rgba(123,44,255,0.32), rgba(18,10,34,0.78) 56%);
}
.merch-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 24px;
}
.merch-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 0 35px rgba(123,44,255,0.12);
}
.merch-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #09040f;
}
.merch-copy {
  padding: 20px 22px 24px;
}
.merch-copy h3 {
  margin-bottom: 8px;
  font-size: 24px;
}
.merch-copy p {
  margin-bottom: 0;
  font-size: 16px;
}

.community {
  text-align: center;
  padding: 90px 30px;
}

.faq details { margin-bottom: 14px; }
.faq summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}
.faq details p { margin-top: 16px; margin-bottom: 0; }

footer {
  width: min(1180px, 88vw);
  margin: 0 auto;
  padding: 60px 0 40px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
footer img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}
footer p { color: white; font-weight: 900; margin: 18px 0 8px; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero, .two-col { grid-template-columns: 1fr; }
  .hero { padding-top: 46px; }
  .cards, .roadmap, .merch-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .nav { padding: 14px 20px; }
  .brand span { font-size: 14px; }
  .nav .btn { display: none; }
  .hero, .section, .banner-wrap, footer { width: min(92vw, 1180px); }
  .cards, .roadmap, .merch-gallery { grid-template-columns: 1fr; }
  h1 { font-size: 54px; }
  .void-event { padding: 32px; }
}
