:root {
  --white: #ffffff;
  --smoke: #f4f4f4;
  --ink: #050505;
  --ink-soft: #151515;
  --red: #f50505;
  --red-dark: #8e0000;
  --violet: #ba00ff;
  --violet-dark: #4e0071;
  --gray: #d8d8d8;
  --shadow-red: 0 28px 80px rgba(245, 5, 5, 0.24);
  --shadow-violet: 0 22px 60px rgba(186, 0, 255, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Arial Black", Impact, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(118deg, transparent 0 37%, rgba(245, 5, 5, 0.11) 37.2% 38.6%, transparent 38.8% 100%),
    linear-gradient(64deg, transparent 0 51%, rgba(186, 0, 255, 0.11) 51.2% 52.7%, transparent 52.9% 100%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.05) 0 1px, transparent 1px 18px),
    var(--white);
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.site-shell {
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 4px solid var(--ink);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border: 4px solid var(--ink);
  background: var(--white);
  transform: skewX(-14deg);
  box-shadow: 6px 6px 0 var(--red);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  height: 6px;
  background: var(--ink);
  transform: rotate(-28deg);
}

.brand-mark::before {
  top: 11px;
  box-shadow: 9px 8px 0 var(--violet);
}

.brand-mark::after {
  bottom: 10px;
  box-shadow: -7px -8px 0 var(--red);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a,
.nav button,
.slash-button {
  border: 3px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease, background 160ms ease;
}

.nav a:hover,
.nav button:hover,
.slash-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
  background: var(--ink);
  color: var(--white);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(34px, 6vw, 82px) clamp(18px, 5vw, 76px) clamp(28px, 4vw, 48px);
}

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

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 3px solid var(--ink);
  background: var(--red);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--violet);
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 11vw, 9.6rem);
  line-height: 0.79;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow:
    5px 5px 0 var(--white),
    9px 9px 0 var(--red),
    14px 14px 0 var(--violet);
}

.ticker-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 22px;
}

.ticker-chip {
  display: inline-flex;
  padding: 12px 16px;
  border: 4px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-weight: 950;
  box-shadow: 8px 8px 0 var(--red);
}

.tiny-copy {
  max-width: 260px;
  color: rgba(5, 5, 5, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.98rem;
  line-height: 1.4;
  font-weight: 800;
}

.description-card {
  max-width: 650px;
  border: 4px solid var(--ink);
  background:
    linear-gradient(132deg, var(--white) 0 58%, rgba(245, 5, 5, 0.12) 58.5% 67%, rgba(186, 0, 255, 0.16) 67.5% 100%);
  padding: clamp(18px, 3vw, 30px);
  box-shadow: 12px 12px 0 var(--ink), var(--shadow-red);
  transform: skewX(-2deg);
}

.description-card p {
  margin: 0;
  color: #101010;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.52;
  font-weight: 850;
  transform: skewX(2deg);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.slash-button {
  background: var(--red);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--violet);
}

.ghost-button {
  background: var(--white);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.hero-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 560px;
  perspective: 1100px;
  display: grid;
  place-items: center;
}

.slash-plate {
  position: absolute;
  width: min(78vw, 630px);
  height: min(78vw, 630px);
  background:
    linear-gradient(128deg, transparent 0 33%, var(--red) 33.3% 38%, transparent 38.3% 100%),
    linear-gradient(48deg, transparent 0 45%, var(--violet) 45.4% 49%, transparent 49.3% 100%),
    var(--ink);
  clip-path: polygon(7% 14%, 100% 0, 85% 90%, 0 100%);
  opacity: 0.92;
  box-shadow: var(--shadow-violet);
}

.portrait-panel {
  position: relative;
  z-index: 2;
  width: min(82vw, 520px);
  border: 5px solid var(--ink);
  background: var(--white);
  box-shadow: -16px 18px 0 var(--red), 18px -14px 0 var(--violet);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotate(-3deg);
  transform-style: preserve-3d;
  transition: transform 220ms ease;
}

.portrait-panel img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.fang-tag {
  position: absolute;
  right: -18px;
  bottom: 24px;
  z-index: 4;
  max-width: 170px;
  border: 4px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  padding: 12px;
  font-size: 0.95rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 var(--red);
  transform: rotate(8deg);
}

.banner-section {
  padding: 18px clamp(14px, 4vw, 46px) 44px;
  background: var(--ink);
}

.banner-frame {
  position: relative;
  border: 5px solid var(--white);
  overflow: hidden;
  box-shadow: 0 0 0 5px var(--ink), 0 22px 80px rgba(0, 0, 0, 0.35);
}

.banner-frame img {
  width: 100%;
  min-height: 300px;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}

.banner-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: min(560px, calc(100% - 36px));
  border: 4px solid var(--white);
  background: rgba(5, 5, 5, 0.88);
  color: var(--white);
  padding: 14px 16px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  line-height: 1.42;
  box-shadow: 7px 7px 0 var(--red);
}

.ticker-tape {
  overflow: hidden;
  border-block: 4px solid var(--ink);
  background: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerTape 24s linear infinite;
}

.ticker-track span {
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track span:nth-child(odd) {
  color: var(--red);
}

.content-band {
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 76px);
}

.angle-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--violet);
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.moves {
  display: grid;
  gap: 14px;
}

.move-card {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 16px;
  align-items: center;
  border: 4px solid var(--ink);
  background: var(--white);
  padding: 16px;
  box-shadow: 9px 9px 0 var(--ink);
  overflow: hidden;
}

.move-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -16px auto;
  width: 150px;
  height: 24px;
  background: var(--red);
  transform: rotate(-18deg);
}

.move-number {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 4px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--violet);
}

.move-card h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.move-card p {
  margin: 0;
  color: rgba(5, 5, 5, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.46;
  font-weight: 750;
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.token-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 4px solid var(--ink);
  background: var(--white);
  padding: 18px;
  box-shadow: 8px 8px 0 var(--red);
}

.token-card:nth-child(2) {
  background: var(--ink);
  color: var(--white);
  box-shadow: 8px 8px 0 var(--violet);
}

.token-card span {
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.token-card strong {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.finale {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
  margin: 0 clamp(18px, 5vw, 76px) clamp(28px, 6vw, 58px);
  border: 5px solid var(--ink);
  background:
    linear-gradient(112deg, rgba(5, 5, 5, 0.95) 0 56%, rgba(142, 0, 0, 0.9) 56.5% 72%, rgba(78, 0, 113, 0.92) 72.5% 100%),
    url("./assets/nightfang-banner.png") center / cover;
  color: var(--white);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-red);
}

.finale h2 {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.finale p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 780;
  line-height: 1.48;
}

.footer {
  padding: 22px clamp(18px, 5vw, 76px) 34px;
  color: rgba(5, 5, 5, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 850;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes tickerTape {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1020px) {
  .hero,
  .angle-grid,
  .finale {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 470px;
  }

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

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .nav a,
  .nav button,
  .slash-button {
    padding: 9px 10px;
    font-size: 0.88rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 19vw, 5.4rem);
    text-shadow:
      3px 3px 0 var(--white),
      6px 6px 0 var(--red),
      9px 9px 0 var(--violet);
  }

  .hero-stage {
    min-height: 390px;
  }

  .portrait-panel {
    width: min(86vw, 390px);
    box-shadow: -9px 11px 0 var(--red), 11px -9px 0 var(--violet);
  }

  .fang-tag {
    right: -6px;
    bottom: 10px;
    max-width: 130px;
    font-size: 0.76rem;
  }

  .banner-caption {
    position: static;
    max-width: none;
    border-width: 4px 0 0;
    box-shadow: none;
  }

  .move-card {
    grid-template-columns: 1fr;
  }
}
