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

* { 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(1120px, calc(100% - 96px));
  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: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--brush);
  font-size: 15px;
  line-height: 1;
  letter-spacing: .8px;
  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: 326px minmax(0, 1fr);
  column-gap: 0;
  row-gap: 17px;
  align-items: start;
  padding: 1px 0 25px;
  position: relative;
}

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

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

.hero-art {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding-top: 21px;
}

.hero-art-asset {
  display: block;
  width: 515px;
  max-width: none;
  margin-left: 42px;
  filter:
    drop-shadow(0 0 12px rgba(186, 0, 255, .7))
    drop-shadow(0 0 22px rgba(186, 0, 255, .42));
}

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

.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: var(--brush);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1.15px;
  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: 28px 0 25px;
}

.section-title {
  margin: 0;
  text-align: center;
  font-family: var(--brush);
  font-size: 38px;
  line-height: 1;
  letter-spacing: .9px;
  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: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

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

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

.feature-icon {
  width: 94px;
  height: 94px;
  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: var(--brush);
  font-size: 27px;
  line-height: 1;
  letter-spacing: .9px;
  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.43;
}

.roadmap {
  padding: 31px 0 34px;
}

.roadmap-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.roadmap-card {
  min-height: 100%;
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(186, 0, 255, .12), rgba(0, 0, 0, .34)),
    rgba(0, 0, 0, .42);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .78) inset,
    0 0 20px rgba(186, 0, 255, .2);
}

.roadmap-card--locked {
  border-color: rgba(0, 243, 223, .3);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .78) inset,
    0 0 20px rgba(0, 243, 223, .16);
}

.roadmap-kicker {
  color: var(--cyan);
  font-family: var(--brush);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 11px rgba(0, 243, 223, .72);
}

.roadmap-card h3 {
  min-height: 58px;
  margin: 8px 0 12px;
  color: var(--purple);
  font-family: var(--brush);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: .8px;
  text-transform: uppercase;
  text-shadow: 0 0 13px rgba(186, 0, 255, .75);
}

.roadmap-directive {
  margin: 0 0 15px;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.roadmap-directive strong {
  color: var(--cyan);
}

.roadmap-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-card li {
  position: relative;
  margin: 0 0 9px;
  padding-left: 17px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.roadmap-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 9px rgba(186, 0, 255, .9);
  transform: translateY(-50%);
}

.roadmap-card--locked li::before {
  background: var(--cyan);
  box-shadow: 0 0 9px rgba(0, 243, 223, .75);
}

.roadmap-status {
  margin: 18px 0 0;
  min-height: 46px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
}

.roadmap-status-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  filter: drop-shadow(0 0 8px currentColor);
}

.roadmap-status-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.roadmap-status p {
  min-width: 0;
  margin: 0;
}

.roadmap-status p span {
  display: block;
  margin-bottom: 3px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.roadmap-status p strong {
  display: block;
  color: #fff;
  font-family: var(--brush);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: .7px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 255, 255, .2);
}

.roadmap-status--active .roadmap-status-icon {
  color: #fff;
}

.roadmap-status--risk .roadmap-status-icon {
  color: var(--cyan);
}

.roadmap-status--locked .roadmap-status-icon {
  color: var(--purple);
}

.community {
  width: min(1120px, calc(100% - 96px));
  margin-inline: auto;
  min-height: 315px;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding: 29px 0 18px;
  overflow: visible;
}

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

.community-copy h2 {
  margin: 0 0 15px;
  font-family: var(--brush);
  font-size: 36px;
  line-height: .98;
  letter-spacing: .9px;
  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: var(--brush);
  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: 290px;
  display: flex;
  justify-content: flex-end;
  overflow: visible;
}

.community-scene {
  display: block;
  width: min(700px, 100%);
  max-width: 100%;
  margin-top: -2px;
  margin-left: 0;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 0 16px rgba(186, 0, 255, .48));
}

.footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 195px 176px 185px 1fr;
  gap: 0;
  padding: 23px 0 12px;
}

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

.footer > div:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, .22);
  padding-left: 34px;
}

.footer h4 {
  margin: 0 0 9px;
  font-family: var(--brush);
  font-size: 21px;
  line-height: 1;
  letter-spacing: .9px;
  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: var(--brush);
  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-asset {
    margin-left: 0;
  }

  .hero-art {
    order: 2;
  }

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

  .action-btn {
    width: 100%;
  }

  .cards,
  .roadmap-grid,
  .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;
  }

  .roadmap {
    padding-bottom: 29px;
  }

  .roadmap-card h3 {
    min-height: 0;
  }

  .community {
    padding-bottom: 26px;
  }

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

  .footer {
    gap: 24px;
  }

  .footer > div:not(:first-child) {
    border-left: 0;
    padding-left: 0;
  }

  .footer-skull img {
    margin-left: 0;
  }
}

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

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