:root {
  color-scheme: dark;
  --bg: #080816;
  --ink: #f9f5ff;
  --muted: #c9c1db;
  --line: rgba(255, 255, 255, 0.16);
  --purple: #a65cff;
  --green: #4eff9b;
  --cyan: #3fe8ff;
  --gold: #ffd45d;
  --pink: #ff65c8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 24px clamp(18px, 4vw, 64px) clamp(50px, 7vw, 94px);
}

.hero-art,
.hero-layer {
  position: absolute;
  inset: 0;
}

.hero-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-layer {
  background:
    linear-gradient(90deg, rgba(8, 8, 22, 0.94), rgba(8, 8, 22, 0.62) 44%, rgba(8, 8, 22, 0.18)),
    linear-gradient(180deg, rgba(8, 8, 22, 0.12), rgba(8, 8, 22, 0.94) 83%);
}

.topbar {
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 22, 0.44);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 950;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #080816;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-weight: 950;
}

.nav-links {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.nav-links a:hover {
  color: var(--green);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding-top: 108px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 116px);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 770px;
  margin-bottom: 28px;
  color: #fff8ff;
  font-size: clamp(18px, 2.1vw, 27px);
  line-height: 1.32;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 950;
}

.primary {
  color: #06120d;
  background: var(--green);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.rooms-band,
.rares-band,
.events-band {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 4vw, 64px);
}

.rooms-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  background: #10101f;
}

.section-copy,
.event-card {
  max-width: 760px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 74px);
  line-height: 1;
  letter-spacing: 0;
}

.section-copy p,
.event-card p,
.rare p {
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.steps article,
.rare,
.scoreboard {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.steps article {
  min-height: 230px;
  padding: 22px;
}

.steps span {
  color: var(--cyan);
  font-weight: 950;
}

.steps h3 {
  margin: 44px 0 12px;
  font-size: 25px;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.rares-band {
  background: #130f20;
}

.rares-band > div:first-child {
  max-width: 820px;
}

.rare-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.rare {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  overflow: hidden;
}

.rare span {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #080816;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.rare h3 {
  margin: 18px 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.rare p {
  margin-bottom: 0;
  font-size: 16px;
}

.neon {
  background: linear-gradient(145deg, #8a54ff, #1b102d 72%);
}

.aqua {
  background: linear-gradient(145deg, #3fe8ff, #142c36 72%);
}

.gold {
  background: linear-gradient(145deg, #ffd45d, #4d3212 72%);
}

.violet {
  background: linear-gradient(145deg, #ff65c8, #301134 72%);
}

.neon span {
  background: var(--purple);
}

.aqua span {
  background: var(--cyan);
}

.gold span {
  background: var(--gold);
}

.violet span {
  background: var(--pink);
}

.events-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: #081414;
}

.scoreboard {
  overflow: hidden;
}

.scoreboard span,
.scoreboard strong {
  display: block;
  padding: 18px 22px;
}

.scoreboard span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
}

.scoreboard span:first-child {
  border-top: 0;
}

.scoreboard strong {
  color: var(--green);
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .rooms-band,
  .events-band {
    grid-template-columns: 1fr;
  }

  .rare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 88vh;
  }

  .hero-layer {
    background:
      linear-gradient(180deg, rgba(8, 8, 22, 0.24), rgba(8, 8, 22, 0.96) 58%),
      linear-gradient(90deg, rgba(8, 8, 22, 0.82), rgba(8, 8, 22, 0.38));
  }

  .topbar {
    align-items: flex-start;
  }

  .nav-links {
    padding-top: 12px;
  }

  .rare-grid {
    grid-template-columns: 1fr;
  }
}
