:root {
  --bg: #030106;
  --panel: rgba(12, 5, 24, .72);
  --panel2: rgba(255,255,255,.055);
  --text: #f7f1ff;
  --muted: #bcaed0;
  --purple: #9b5cff;
  --purple2: #d8beff;
  --line: rgba(202, 165, 255, .23);
  --shadow: 0 30px 110px rgba(0,0,0,.48);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(94, 34, 172, .45), transparent 32%),
    linear-gradient(180deg, #05010a, #000);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.site-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .5;
}

.nav {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(3,1,6,.74);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.brand img { width: 50px; height: 50px; object-fit: contain; }
.nav nav {
  display: flex;
  gap: 23px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--muted);
}
.nav nav a:hover { color: #fff; }
.menu-btn {
  display: none;
  background: transparent;
  color: white;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 5vw 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/hero.png") center/cover no-repeat;
  transform: scale(1.03);
  opacity: .78;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(155,92,255,.16), rgba(0,0,0,.48) 48%, #000 100%),
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.16), rgba(0,0,0,.82));
}
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 980px;
}
.hero-logo {
  width: min(350px, 72vw);
  filter: drop-shadow(0 0 38px rgba(155,92,255,.78));
}
.kicker {
  color: var(--purple2);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 800;
  font-size: 13px;
}
h1, h2, h3 { text-transform: uppercase; }
h1 {
  margin: 8px 0 12px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: .9;
  letter-spacing: 2px;
}
h2 {
  margin: 6px 0 22px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: .95;
}
h3 { margin: 0 0 12px; letter-spacing: 1px; }
p { color: var(--muted); line-height: 1.75; }
.lead { max-width: 760px; margin: 0 auto 28px; font-size: 18px; }
.actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  min-width: 165px;
  justify-content: center;
  align-items: center;
  padding: 14px 19px;
  border-radius: 999px;
  border: 1px solid rgba(216,190,255,.42);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn.primary {
  color: #10051d;
  background: linear-gradient(135deg, #8d4dff, #e1caff);
  border: 0;
  box-shadow: 0 0 35px rgba(155,92,255,.34);
}
.btn.secondary {
  background: rgba(0,0,0,.34);
  backdrop-filter: blur(10px);
}
.status-card {
  margin: 34px auto 0;
  max-width: 570px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  text-align: left;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.48);
  backdrop-filter: blur(12px);
}
.status-card p { margin: 4px 0 0; }
.status-card button {
  color: white;
  background: rgba(155,92,255,.22);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
}
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #61ff9d;
  box-shadow: 0 0 18px #61ff9d;
  border-radius: 50%;
  margin-right: 8px;
}

.thin-banner {
  background: #000;
  border-block: 1px solid var(--line);
}
.thin-banner img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 108px 5vw;
}
.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 60px;
  align-items: start;
}
.copy {
  display: grid;
  gap: 8px;
  font-size: 17px;
}
.image-row {
  padding: 0 5vw 30px;
}
.image-row img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cards {
  display: grid;
  gap: 22px;
}
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.cards article {
  min-height: 220px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel2), rgba(0,0,0,.34));
  box-shadow: var(--shadow);
  transition: .25s ease;
}
.cards article:hover {
  transform: translateY(-5px);
  border-color: rgba(216,190,255,.62);
}
.cards span {
  display: block;
  font-size: 44px;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 18px rgba(155,92,255,.85));
}
.cards article a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--purple2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-wall {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 80px 5vw;
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.wall-bg {
  position: absolute;
  inset: 0;
  background: url("assets/banner-alt.png") center/cover no-repeat;
  opacity: .62;
}
.feature-wall::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.36), rgba(0,0,0,.82)),
    radial-gradient(circle at center, transparent, #000 74%);
}
.wall-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  text-align: center;
}
.feature-list {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.feature-list div {
  padding: 20px;
  background: rgba(0,0,0,.48);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.feature-list strong, .feature-list span {
  display: block;
}
.feature-list span {
  color: var(--muted);
  margin-top: 8px;
  font-size: 14px;
}

.rules {
  border-top: 1px solid var(--line);
}
.rule-list {
  display: grid;
  gap: 14px;
}
.rule-list p {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.faq details {
  border: 1px solid var(--line);
  background: rgba(0,0,0,.34);
  border-radius: 18px;
  padding: 20px 24px;
  margin-bottom: 14px;
}
.faq summary {
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.connect {
  margin: 40px 5vw 100px;
  min-height: 500px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 70px 24px;
  border-radius: 38px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(0,0,0,.48), rgba(0,0,0,.8)),
    url("assets/hero.png") center/cover no-repeat;
  box-shadow: inset 0 0 90px rgba(155,92,255,.18), var(--shadow);
}
.connect img {
  width: 180px;
  filter: drop-shadow(0 0 30px rgba(155,92,255,.78));
}

footer {
  padding: 30px 5vw;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  background: #000;
  font-size: 14px;
}

@media (max-width: 1040px) {
  .nav nav {
    position: absolute;
    top: 82px;
    right: 5vw;
    display: none;
    flex-direction: column;
    gap: 0;
    min-width: 220px;
    background: rgba(0,0,0,.92);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
  }
  .nav nav.open { display: flex; }
  .nav nav a { padding: 14px 18px; border-bottom: 1px solid var(--line); }
  .menu-btn { display: block; }
  .split, .cards.three, .cards.four, .feature-list {
    grid-template-columns: 1fr;
  }
  .status-card {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 560px) {
  .brand span { display: none; }
  h1 { font-size: 44px; }
  .section { padding: 78px 5vw; }
  .thin-banner img { height: 80px; }
}
