:root {
  --bg: #020202;
  --line: rgba(255, 255, 255, .12);
  --purple: #ba00ff;
  --purple-deep: #8000ff;
  --cyan: #00f3df;
  --text: #f7f7f7;
  --muted: #dcdcdc;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 84% 14%, rgba(176, 0, 255, .2), transparent 26%),
    radial-gradient(circle at 67% 68%, rgba(176, 0, 255, .16), transparent 28%),
    #020202;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(186, 0, 255, .035) 0 1px, transparent 1px 9px);
  opacity: .55;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .16;
  background:
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(186, 0, 255, .18) 4px 5px),
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(0, 243, 223, .08) 12px 13px);
  mix-blend-mode: screen;
}

.wrap {
  width: min(785px, calc(100% - 68px));
  margin-inline: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.2, .8, .2, 1),
    filter .7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

.site-header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 222px;
  max-width: 38vw;
  filter: drop-shadow(0 0 10px rgba(186, 0, 255, .75));
}

nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Bangers, Impact, fantasy;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 255, 255, .22);
}

nav a.active {
  color: var(--purple);
  border-bottom: 2px solid var(--purple);
  padding-bottom: 10px;
}

.hero {
  display: grid;
  grid-template-columns: 300px 1fr;
  column-gap: 5px;
  row-gap: 16px;
  align-items: start;
  padding: 0 0 25px;
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 23px;
}

.hero-copy-asset {
  display: block;
  width: 330px;
  max-width: none;
  filter: drop-shadow(0 0 9px rgba(186, 0, 255, .35));
}

.hero-art {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.hero-art-asset {
  display: block;
  width: 505px;
  max-width: none;
  margin-left: 0;
  filter: drop-shadow(0 0 16px rgba(186, 0, 255, .55));
}

.hero-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 192px 190px 205px;
  gap: 28px;
  align-items: center;
}

.action-btn {
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 17px;
  border: 2px solid var(--purple);
  border-radius: 4px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(0, 0, 0, .22)),
    rgba(0, 0, 0, .38);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .85) inset,
    0 0 14px rgba(186, 0, 255, .38);
  font-family: Bangers, Impact, fantasy;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.action-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.12);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .85) inset,
    0 0 22px rgba(186, 0, 255, .62);
}

.action-btn svg,
.action-btn img {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.action-btn svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.action-btn--x {
  border-color: var(--cyan);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .85) inset,
    0 0 14px rgba(0, 243, 223, .34);
}

.action-btn--buy img {
  width: 22px;
  height: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(0, 243, 223, .75));
}

.x-mark {
  font-family: Inter, system-ui, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.section-line {
  position: relative;
}

.section-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  border-top: 1px solid var(--line);
  transform: translateX(-50%);
}

.what-we-do {
  padding: 26px 0 22px;
}

.section-title {
  margin: 0;
  text-align: center;
  font-family: Bangers, Impact, fantasy;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255, 255, 255, .22);
}

.section-title span,
.community-copy h2 span,
.footer h4 {
  color: var(--purple);
  text-shadow: 0 0 13px rgba(186, 0, 255, .78);
}

.cards {
  margin-top: 19px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 181px;
  padding: 1px 35px 0;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-icon {
  width: 92px;
  height: 92px;
  color: var(--purple);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 6px rgba(186, 0, 255, .95))
    drop-shadow(0 0 13px rgba(186, 0, 255, .55));
}

.feature-card h3 {
  margin: 10px 0 9px;
  color: var(--purple);
  font-family: Bangers, Impact, fantasy;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 13px rgba(186, 0, 255, .75);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.community {
  min-height: 270px;
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 10px;
  align-items: start;
  padding: 28px 0 0;
  overflow: hidden;
}

.community-copy {
  position: relative;
  z-index: 2;
}

.community-copy h2 {
  margin: 0 0 15px;
  font-family: Bangers, Impact, fantasy;
  font-size: 34px;
  line-height: .98;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255, 255, 255, .18);
}

.community-copy p {
  margin: 0 0 8px;
  color: #ededed;
  font-size: 16px;
  line-height: 1.45;
}

.community-copy strong {
  display: block;
  margin-bottom: 19px;
  color: var(--cyan);
  font-family: Bangers, Impact, fantasy;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(0, 243, 223, .8);
}

.action-btn--small {
  width: 199px;
  height: 51px;
  justify-content: flex-start;
  padding-left: 20px;
  gap: 14px;
}

.community-art {
  position: relative;
  min-height: 242px;
}

.community-scene {
  display: block;
  width: 500px;
  max-width: none;
  margin-top: -1px;
  filter: drop-shadow(0 0 16px rgba(186, 0, 255, .48));
}

.footer {
  min-height: 146px;
  display: grid;
  grid-template-columns: 185px 160px 175px 1fr;
  gap: 15px;
  padding: 20px 0 10px;
}

.footer-skull img {
  display: block;
  width: 132px;
  filter: drop-shadow(0 0 15px rgba(186, 0, 255, .88));
}

.footer h4 {
  margin: 0 0 9px;
  font-family: Bangers, Impact, fantasy;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  margin: 0;
  color: #dfdfdf;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.65;
}

.copyright {
  margin: 0;
  padding: 4px 0 16px;
  color: rgba(255, 255, 255, .32);
  text-align: center;
  font-family: Bangers, Impact, fantasy;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 34px, 560px);
  }

  .site-header {
    height: auto;
    min-height: 92px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding: 16px 0;
  }

  .brand img {
    width: 210px;
    max-width: 100%;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  nav a {
    font-size: 13px;
  }

  .hero {
    grid-template-columns: 1fr;
    row-gap: 18px;
    padding-bottom: 32px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-copy-asset,
  .hero-art-asset,
  .community-scene {
    width: 100%;
    max-width: 100%;
  }

  .hero-art {
    order: 2;
  }

  .hero-actions {
    order: 3;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .action-btn {
    width: 100%;
  }

  .cards,
  .community,
  .footer {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
    padding: 24px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .community {
    padding-bottom: 26px;
  }

  .community-art {
    min-height: 0;
  }

  .footer {
    gap: 24px;
  }
}

@media (max-width: 420px) {
  .section-title,
  .community-copy h2 {
    font-size: 30px;
  }

  .action-btn {
    font-size: 14px;
    padding-inline: 14px;
  }
}
