:root {
  color-scheme: dark;
  --ink: #f2f0e7;
  --muted: #9d9b91;
  --surface: #171814;
  --line: #34362e;
  --acid: #d8ff3e;
  --background: #0c0d0a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 75% 5%, rgb(216 255 62 / 8%), transparent 28rem),
    var(--background);
  font-family: Arial, Helvetica, sans-serif;
}

main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header {
  height: 88px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  color: var(--acid);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  text-decoration: none;
}

.status {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status i {
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--acid);
}

.hero {
  padding: 100px 0 80px;
}

.eyebrow,
.stats p,
.rules > p {
  color: var(--acid);
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

h1 {
  max-width: 900px;
  margin: 20px 0 28px;
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: -0.085em;
}

.intro {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.stats {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stats article {
  min-width: 0;
  padding: 28px;
  background: var(--surface);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats .prize {
  grid-row: span 2;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--acid);
  color: #11120e;
}

.stats .prize p {
  color: #11120e;
}

.stats strong {
  display: block;
  margin-top: 42px;
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: -0.06em;
}

.stats .prize strong {
  font-size: clamp(3.5rem, 8vw, 7rem);
}

.stats .mint strong {
  overflow: hidden;
  font-family: monospace;
  font-size: 1rem;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rules {
  padding: 100px 0;
}

.rules h2 {
  max-width: 780px;
  margin: 18px 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.rules span {
  color: var(--muted);
  font-size: 1.05rem;
}

footer {
  min-height: 100px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-family: monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  main,
  footer {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    padding: 70px 0 60px;
  }

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

  .stats .prize {
    grid-row: auto;
    min-height: 240px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}
