:root {
  --bg: #050600;
  --text: #f7ffe8;
  --acid: #d9ff00;
  --gold: #ffe100;
  --ink: #080900;
  --panel: #111400;
  --line: rgba(217, 255, 0, 0.34);
  --muted: #c9d19a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(217, 255, 0, 0.16), transparent 26rem),
    radial-gradient(circle at 78% 54%, rgba(255, 225, 0, 0.14), transparent 32rem),
    linear-gradient(180deg, #050600 0%, #0b0d00 48%, #050600 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 64% 42%, rgba(217, 255, 0, 0.18), transparent 32rem),
    linear-gradient(90deg, #020300 0%, #050600 43%, #0b0d00 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.94) 34%, rgba(0, 0, 0, 0.32) 62%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, transparent 28%, rgba(0, 0, 0, 0.58) 100%),
    repeating-linear-gradient(-12deg, rgba(217, 255, 0, 0.08) 0 2px, transparent 2px 18px);
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  width: 62%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: saturate(1.08) contrast(1.08);
  opacity: 0.9;
}

.topbar {
  width: min(1240px, calc(100% - 44px));
  min-height: 60px;
  margin: 16px auto 0;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 6, 0, 0.76);
  box-shadow: 6px 6px 0 rgba(217, 255, 0, 0.14);
  backdrop-filter: blur(12px);
}

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

.brand img {
  width: 40px;
  height: 40px;
  border: 2px solid var(--acid);
  border-radius: 50%;
}

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a {
  border: 1px solid rgba(217, 255, 0, 0.42);
  border-radius: 6px;
  padding: 9px 11px;
  background: rgba(0, 0, 0, 0.42);
}

.hero-copy {
  width: min(1240px, calc(100% - 44px));
  align-self: center;
  margin: 26px auto 30px;
  padding: 0;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  border: 2px solid var(--acid);
  border-radius: 6px;
  padding: 8px 12px;
  background: #090a00;
  color: var(--acid);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1 {
  max-width: 500px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(48px, 5.6vw, 78px);
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 #101200, 8px 8px 0 rgba(217, 255, 0, 0.5);
}

.lead {
  max-width: 480px;
  margin-bottom: 22px;
  color: #f4f7dc;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.actions,
.launch-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.entry-grid {
  max-width: 500px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.entry {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(217, 255, 0, 0.7);
  border-radius: 7px;
  padding: 0 12px;
  background: rgba(5, 6, 0, 0.8);
  color: #f7ffe8;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.72);
}

.entry.primary {
  border-color: #000;
  background: var(--acid);
  color: #050600;
}

.ca-card {
  max-width: 500px;
  min-height: 46px;
  margin-top: 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  border: 2px solid rgba(217, 255, 0, 0.54);
  border-radius: 7px;
  padding: 10px 12px;
  background: rgba(5, 6, 0, 0.76);
  box-shadow: 4px 4px 0 rgba(217, 255, 0, 0.12);
}

.ca-card span {
  color: var(--acid);
  font-size: 13px;
  font-weight: 950;
}

.ca-card code {
  overflow: hidden;
  color: #f7ffe8;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  border-radius: 7px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.75);
}

.primary {
  background: var(--acid);
  color: #050600;
}

.secondary {
  border-color: rgba(217, 255, 0, 0.7);
  background: rgba(5, 6, 0, 0.76);
}

.stats {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.stats div {
  min-height: 92px;
  padding: 18px 20px;
  border-right: 2px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  color: var(--acid);
  font-size: 24px;
  font-weight: 950;
}

.stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-top: 2px solid var(--acid);
  border-bottom: 2px solid var(--acid);
  background: var(--acid);
  color: #050600;
}

.ticker div {
  width: max-content;
  display: flex;
  animation: ticker 22s linear infinite;
}

.ticker span {
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.comic {
  padding: 86px 0 56px;
}

h2 {
  max-width: 850px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 0.96;
  text-transform: uppercase;
}

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

.panel-grid article {
  min-height: 300px;
  border: 3px solid #000;
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(217, 255, 0, 0.18), transparent 34%),
    var(--panel);
  box-shadow: 8px 8px 0 rgba(217, 255, 0, 0.2);
}

.panel-grid span {
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--acid);
  color: #050600;
  font-weight: 950;
}

.panel-grid h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 27px;
  line-height: 1;
  text-transform: uppercase;
}

.panel-grid p,
.token p,
.launch p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.token {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: 46px 0 90px;
}

.token-art {
  border: 3px solid var(--acid);
  border-radius: 8px;
  padding: 12px;
  background: #030400;
  box-shadow: 12px 12px 0 rgba(217, 255, 0, 0.18);
  transform: rotate(-2deg);
}

.token-art img {
  width: 100%;
  border-radius: 6px;
}

.chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.chips span {
  border: 1px solid rgba(217, 255, 0, 0.45);
  border-radius: 6px;
  padding: 14px;
  background: rgba(217, 255, 0, 0.08);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.launch {
  margin-bottom: 60px;
  border: 3px solid #000;
  border-radius: 8px;
  padding: 52px;
  background:
    linear-gradient(115deg, rgba(217, 255, 0, 0.24), transparent 44%),
    #121500;
  box-shadow: 10px 10px 0 rgba(217, 255, 0, 0.22);
}

.launch p {
  max-width: 700px;
  margin-bottom: 26px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 720px;
  }

  .hero-bg {
    width: 100%;
    object-position: 68% center;
    opacity: 0.72;
  }

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

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-copy {
    align-self: end;
    margin-bottom: 34px;
  }

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

  .stats div {
    border-right: 0;
    border-bottom: 2px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .token-art {
    max-width: 480px;
  }
}

@media (max-width: 560px) {
  .topbar,
  .hero-copy,
  .stats,
  .section {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    min-height: 790px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.62)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, transparent 25%, rgba(0, 0, 0, 0.72) 100%),
      repeating-linear-gradient(-12deg, rgba(217, 255, 0, 0.08) 0 2px, transparent 2px 18px);
  }

  .hero-bg {
    object-position: 72% center;
    opacity: 0.58;
  }

  .brand span {
    font-size: 13px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 42px;
    text-shadow: 3px 3px 0 #101200, 5px 5px 0 rgba(217, 255, 0, 0.5);
  }

  .lead {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

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

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

  .panel-grid article,
  .launch {
    padding: 24px;
  }

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