:root {
  --bg: #050806;
  --bg-2: #0a100c;
  --card: #101710;
  --card-2: #161e16;
  --line: rgba(182, 255, 42, 0.18);
  --green: #c8ff2a;
  --green-2: #7cff3d;
  --green-deep: #00c805;
  --green-dim: #1a3a12;
  --cream: #f4f0e4;
  --muted: #9aa894;
  --ink: #071009;
  --wanted: #d7c49a;
  --radius: 22px;
  --nav-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: "Space Grotesk", system-ui, sans-serif;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--green);
  color: var(--ink);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #050805;
}
::-webkit-scrollbar-thumb {
  background: var(--green-dim);
  border: 2px solid #050805;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.09;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
  mix-blend-mode: overlay;
}

.paw-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 70;
}

.paw-print {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(var(--r, 0deg));
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><ellipse cx='32' cy='42' rx='14' ry='12' fill='%23c8ff2a'/><circle cx='16' cy='24' r='7' fill='%23c8ff2a'/><circle cx='28' cy='16' r='7' fill='%23c8ff2a'/><circle cx='42' cy='16' r='7' fill='%23c8ff2a'/><circle cx='52' cy='26' r='7' fill='%23c8ff2a'/></svg>")
    center / contain no-repeat;
  animation: paw-fade 1.6s ease forwards;
  filter: drop-shadow(0 0 8px rgba(200, 255, 42, 0.45));
}

@keyframes paw-fade {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4) rotate(var(--r, 0deg));
  }
  18% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -40%) scale(1) rotate(var(--r, 0deg));
  }
}

.brush {
  font-family: "Bangers", "Permanent Marker", cursive;
  letter-spacing: 0.04em;
  font-weight: 400;
}

h2.brush {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.9;
  margin: 0 0 14px;
}

.kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.22em;
  font-size: 0.92rem;
}

.muted {
  color: var(--muted);
}

.feather {
  display: inline-block;
  width: 14px;
  height: 16px;
  margin-left: 8px;
  background: currentColor;
  vertical-align: -3px;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7.2 21.8c6.6-3.2 11.4-9.2 14.2-19.2-9.8 2.6-16 7.4-19 14.4 2.2.2 4.2-.2 5.6-1.2-2.6 2.4-3.6 4.8-.8 6z'/></svg>")
    center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7.2 21.8c6.6-3.2 11.4-9.2 14.2-19.2-9.8 2.6-16 7.4-19 14.4 2.2.2 4.2-.2 5.6-1.2-2.6 2.4-3.6 4.8-.8 6z'/></svg>")
    center / contain no-repeat;
}

.feather--inline {
  margin: 0 8px 0 0;
}

.paw-dot {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: -3px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><ellipse cx='32' cy='42' rx='14' ry='12' fill='%23c8ff2a'/><circle cx='16' cy='24' r='7' fill='%23c8ff2a'/><circle cx='28' cy='16' r='7' fill='%23c8ff2a'/><circle cx='42' cy='16' r='7' fill='%23c8ff2a'/><circle cx='52' cy='26' r='7' fill='%23c8ff2a'/></svg>")
    center / contain no-repeat;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 999px;
  padding: 12px 22px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn--green {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 0 0 0 rgba(200, 255, 42, 0.45);
}

.btn--green:hover {
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 0 10px 30px rgba(200, 255, 42, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 28px;
  font-size: 1.2rem;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 28px;
  background: rgba(5, 8, 6, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.nav__brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
}

.nav__brand strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.35rem;
  line-height: 1;
}

.nav__brand small {
  color: var(--green);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.nav__links {
  display: flex;
  gap: 22px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--green);
}

.nav__burger {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
}

.nav__burger span {
  display: block;
  height: 2px;
  background: var(--green);
  margin: 5px 0;
}

.nav__buy-mobile {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  overflow: hidden;
  isolation: isolate;
}

.hero__sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(200, 255, 42, 0.22), transparent 28%),
    linear-gradient(180deg, #08140c 0%, #050806 70%);
  z-index: -2;
}

.hero__sky::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, var(--bg));
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr 260px;
  gap: 18px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 36px 28px 80px;
  position: relative;
  z-index: 1;
}

.hero__copy h1 {
  font-family: "Bangers", cursive;
  font-size: clamp(4.4rem, 9vw, 8.6rem);
  line-height: 0.82;
  margin: 10px 0 18px;
  letter-spacing: 0.02em;
  transform: rotate(-2deg);
  text-shadow: 0 0 40px rgba(200, 255, 42, 0.18);
}

.hero__copy h1 span {
  color: var(--green);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.16em;
  margin: 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.35;
    transform: scale(0.7);
  }
}

.hero__tag {
  font-size: 1.35rem;
  line-height: 1.35;
  max-width: 22ch;
}

.hero__tag em {
  color: var(--green);
  font-style: normal;
  font-weight: 700;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 18px;
}

.hero__live {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__live + .hero__live {
  margin-top: 4px;
}

.pons-link {
  color: var(--green);
}

.pons-link:hover {
  text-decoration: underline;
}

.hero__art {
  position: relative;
}

.hero__shot {
  width: 100%;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 80px rgba(200, 255, 42, 0.08);
  object-fit: cover;
  max-height: 620px;
}

.hero__bag-tag {
  position: absolute;
  left: 18px;
  bottom: 22px;
  background: rgba(5, 8, 6, 0.82);
  border: 1px dashed var(--green);
  color: var(--green);
  font-family: "Permanent Marker", cursive;
  padding: 6px 12px;
  transform: rotate(-6deg);
  font-size: 0.92rem;
}

.cam {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.cam__lens {
  display: block;
  width: 18px;
  height: 18px;
  margin: 12px auto 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, var(--green) 45%, #063);
  animation: cam-blink 2.8s infinite;
}

@keyframes cam-blink {
  0%,
  70%,
  100% {
    filter: brightness(1);
  }
  78% {
    filter: brightness(4);
  }
}

.coin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, #eaff8a, var(--green) 40%, #3d8a12);
  color: var(--ink);
  font-weight: 800;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.25), 0 8px 16px rgba(0, 0, 0, 0.35);
  animation: bob 3.4s ease-in-out infinite;
  z-index: 3;
}

.coin--float:nth-child(even) {
  animation-delay: -1.4s;
}

@keyframes bob {
  50% {
    transform: translateY(-10px) rotate(12deg);
  }
}

.wanted-mini {
  background: linear-gradient(#ead7a8, #c9ae74);
  color: #2a1c0c;
  padding: 14px 14px 18px;
  border-radius: 6px;
  transform: rotate(3deg);
  box-shadow: 8px 14px 0 rgba(0, 0, 0, 0.35);
  font-family: "Bebas Neue", sans-serif;
}

.wanted-mini__head {
  margin: 0;
  text-align: center;
  letter-spacing: 0.28em;
  font-size: 1.4rem;
}

.wanted-mini img {
  width: 100%;
  aspect-ratio: 3 / 3.4;
  object-fit: cover;
  border: 4px solid #2a1c0c;
  margin: 8px 0;
}

.wanted-mini h3 {
  margin: 0 0 8px;
  text-align: center;
  letter-spacing: 0.12em;
  font-size: 1.6rem;
}

.wanted-mini ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.wanted-mini li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px dashed #2a1c0c;
  padding: 5px 0;
}

.wanted-mini span {
  opacity: 0.7;
}

.falling {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.falling .bag {
  position: absolute;
  top: -80px;
  width: 42px;
  height: 52px;
  background: radial-gradient(circle at 30% 30%, #eaff8a, var(--green) 42%, #3d8a12);
  border-radius: 50%;
  opacity: 0.7;
  box-shadow: 0 0 16px rgba(200, 255, 42, 0.35);
  animation: fall linear infinite;
}

@keyframes fall {
  to {
    transform: translateY(110vh) rotate(220deg);
  }
}

.ticker {
  border-block: 1px solid var(--line);
  background: #081109;
  overflow: hidden;
  padding: 12px 0;
}

.ticker__track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.18em;
  font-size: 1.15rem;
  color: var(--green);
  width: max-content;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 28px;
}

.card {
  background: linear-gradient(180deg, var(--card), #0c120d);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: inset 0 1px 0 rgba(200, 255, 42, 0.06);
}

.lore__art {
  width: 100%;
  margin-top: 22px;
  border-radius: 16px;
  max-height: 320px;
  object-fit: cover;
  object-position: 50% 70%;
  border: 1px solid var(--line);
}

.lore__story {
  font-size: 1.25rem;
  line-height: 1.5;
}

.lore__story strong {
  color: var(--green);
}

.flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 22px 0;
  flex-wrap: wrap;
}

.flow figure {
  margin: 0;
  width: 92px;
  text-align: center;
}

.flow img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: #0a0f0a;
}

.flow figcaption {
  margin-top: 8px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.flow__arrow {
  color: var(--green);
  font-size: 1.4rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.step {
  margin: 0;
  background: #0b120c;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(200, 255, 42, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.step:hover,
.panel:hover {
  transform: rotate(-1.2deg) scale(1.02);
  border-color: var(--green);
}

.step img,
.panel img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.step figcaption {
  padding: 10px 12px 14px;
  font-size: 0.88rem;
  color: var(--muted);
}

.step strong {
  display: block;
  color: var(--cream);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.heist__slogan {
  margin: 20px 0 0;
  font-family: "Bangers", cursive;
  font-size: 2rem;
  color: var(--green);
  transform: rotate(-1.5deg);
}

.tokenomics {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 28px 56px;
}

.tokenomics__copy p:last-child {
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.1rem;
}

.tokenomics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.tok {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

.tok span {
  color: var(--green);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.16em;
}

.tok strong {
  display: block;
  font-size: 2.6rem;
  font-family: "Share Tech Mono", monospace;
  margin: 6px 0;
  color: var(--green);
}

.tok p {
  margin: 0;
  color: var(--muted);
}

.vault {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 28px 64px;
}

.vault__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}

.vault__hungry {
  font-family: "Permanent Marker", cursive;
  color: var(--green);
  transform: rotate(-2deg);
}

.vault__layout {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.stats,
.markets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat,
.markets article {
  background: #0c140e;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.stat p,
.markets p {
  margin: 0;
  color: var(--muted);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.stat strong,
.markets strong {
  display: block;
  margin: 8px 0 4px;
  font-family: "Share Tech Mono", monospace;
  font-size: 1.7rem;
  color: var(--green);
}

.stat small {
  color: #6f7d6a;
}

.vault__mid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.countdown {
  background: #0c140e;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.countdown p {
  margin: 0;
  color: var(--green);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.14em;
}

.countdown__time {
  font-family: "Share Tech Mono", monospace;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  letter-spacing: 0.08em;
  margin: 8px 0 16px;
}

.countdown__note {
  margin: 16px 0 0;
  color: var(--muted);
  max-width: 36ch;
}

.vault-bar {
  position: relative;
  height: 28px;
  border-radius: 999px;
  background: #081109;
  overflow: hidden;
  border: 1px solid var(--line);
}

.vault-bar__fill {
  height: 100%;
  width: 38%;
  background: linear-gradient(90deg, #1a5a12, var(--green));
  box-shadow: 0 0 18px rgba(200, 255, 42, 0.45);
  transition: width 0.8s ease;
  animation: fill-glow 2.4s ease-in-out infinite;
}

@keyframes fill-glow {
  50% {
    filter: brightness(1.35);
  }
}

.vault-bar__label {
  margin: 8px 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-family: "Bebas Neue", sans-serif;
  color: var(--green);
}

.vault__peek {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.vault__peek img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: 50% 12%;
}

.vault__note {
  color: #66715f;
  font-size: 0.85rem;
}

.gallery {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 28px 64px;
}

.gallery__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}

.gallery__head p:last-child {
  color: var(--muted);
}

.comic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  grid-auto-flow: dense;
  gap: 12px;
  margin-top: 24px;
}

.panel {
  position: relative;
  margin: 0;
  grid-column: span 3;
  grid-row: span 2;
  overflow: hidden;
  border-radius: 18px;
  border: 3px solid #1a241c;
  background: #000;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: unset;
}

.panel figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: rgba(5, 8, 6, 0.86);
  color: var(--green);
  font-family: "Bangers", cursive;
  letter-spacing: 0.03em;
  font-size: 1.05rem;
  line-height: 1.1;
  padding: 8px 10px;
  transform: rotate(-1deg);
}

.panel--hero {
  grid-column: span 6;
  grid-row: span 3;
}

.panel--hero figcaption {
  font-size: 1.7rem;
}

.panel--tall {
  grid-column: span 3;
  grid-row: span 4;
}

.panel--wide {
  grid-column: span 6;
  grid-row: span 2;
}

.stamp {
  position: absolute;
  top: 16px;
  right: 14px;
  border: 4px solid #ff4d4d;
  color: #ff4d4d;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  transform: rotate(12deg);
  font-size: 1.3rem;
  background: rgba(0, 0, 0, 0.25);
}

.wanted {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 28px 64px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.poster {
  background: #1a140c;
  padding: 16px;
  border-radius: 8px;
  transform: rotate(-1.5deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.poster__inner {
  background: repeating-linear-gradient(
    0deg,
    #e4d0a2,
    #e4d0a2 28px,
    #dcc896 29px
  );
  color: #2a1c0c;
  padding: 22px;
  text-align: center;
}

.poster__wanted {
  margin: 0;
  font-family: "Bangers", cursive;
  font-size: 3.4rem;
  letter-spacing: 0.12em;
}

.poster img {
  width: min(100%, 340px);
  margin: 8px auto;
  border: 8px solid #2a1c0c;
}

.poster h2 {
  margin: 8px 0 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.16em;
  font-size: 2.6rem;
}

.poster__aka {
  margin: 0 0 16px;
  font-family: "Permanent Marker", cursive;
}

.poster dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  text-align: left;
  margin: 0;
}

.poster dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  opacity: 0.7;
  font-family: "Bebas Neue", sans-serif;
}

.poster dd {
  margin: 0;
  font-weight: 700;
}

.poster__foot {
  margin: 18px 0 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
}

.wanted__copy ul {
  padding-left: 18px;
  color: var(--muted);
}

.wanted__copy li {
  margin: 6px 0;
}

.wanted__copy blockquote {
  margin: 22px 0;
  font-family: "Permanent Marker", cursive;
  color: var(--green);
  font-size: 1.3rem;
}

.wanted__side {
  width: min(100%, 420px);
  border-radius: 18px;
  border: 1px solid var(--line);
}

.cta {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 28px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.cta__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  min-height: 280px;
  border: 1px solid var(--line);
}

.cta__copy h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.92;
  margin: 0;
}

.cta__copy .brush {
  color: var(--green);
  font-size: 1.15em;
}

.cta__join h3 {
  font-family: "Bangers", cursive;
  font-size: 2.2rem;
  margin: 0 0 8px;
}

.socials {
  display: flex;
  gap: 10px;
  margin: 14px 0 18px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--green);
}

.socials a:hover {
  background: var(--green);
  color: var(--ink);
}

.socials svg {
  width: 18px;
  height: 18px;
}

.ca {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}

.ca code {
  color: var(--green);
  font-family: "Share Tech Mono", monospace;
}

.ca button {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
}

.cta__links {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.cta__links a:hover {
  color: var(--green);
}

.faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 28px 72px;
}

.faq__list details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.faq__list summary {
  cursor: pointer;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.3rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq__list summary::after {
  content: "+";
  color: var(--green);
}

.faq__list details[open] summary::after {
  content: "–";
}

.faq__list summary::-webkit-details-marker {
  display: none;
}

.faq__list p {
  color: var(--muted);
  margin: 10px 0 0;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 28px 32px;
  border-top: 1px solid var(--line);
  color: #7a8676;
  font-size: 0.85rem;
}

.footer__brand {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--cream);
}

.footer__brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.footer__brand strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
}

.footer em {
  color: var(--green);
  font-style: normal;
}

.heist-flash {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.heist-flash.is-on {
  opacity: 1;
  pointer-events: auto;
}

.heist-flash__burst {
  text-align: center;
  background: var(--green);
  color: var(--ink);
  padding: 32px 42px;
  transform: rotate(-3deg) scale(0.7);
  border: 8px solid #fff;
  box-shadow: 0 0 0 8px var(--green), 20px 20px 0 #000;
  animation: none;
}

.heist-flash.is-on .heist-flash__burst {
  animation: burst 0.45s cubic-bezier(0.2, 1.4, 0.3, 1) forwards;
}

@keyframes burst {
  to {
    transform: rotate(-3deg) scale(1);
  }
}

.heist-flash h2 {
  font-family: "Bangers", cursive;
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin: 0;
  letter-spacing: 0.04em;
}

.heist-flash__kicker {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.2em;
}

.stolen-pop {
  position: absolute;
  font-family: "Bangers", cursive;
  color: #ff4d4d;
  font-size: 1.4rem;
  pointer-events: none;
  animation: yoink 0.8s ease forwards;
  z-index: 5;
}

@keyframes yoink {
  0% {
    opacity: 1;
    transform: translate(-50%, 0) rotate(-8deg) scale(0.7);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -40px) rotate(8deg) scale(1.2);
  }
}

.stealable.is-gone {
  visibility: hidden;
}

@media (max-width: 1100px) {
  .hero__grid,
  .wanted,
  .footer {
    grid-template-columns: 1fr 1fr;
  }
  .cta {
    grid-template-columns: 1fr 1fr;
  }
  .cta__copy {
    grid-column: 1 / -1;
  }
  .wanted-mini {
    display: none;
  }
  .tokenomics__grid,
  .stats,
  .markets {
    grid-template-columns: 1fr 1fr;
  }
  .panel--hero,
  .panel--wide {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .nav {
    padding: 0 14px;
  }
  .nav .btn {
    display: none;
  }
  .nav__burger {
    display: block;
  }
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 60;
    background: #071109;
    flex-direction: column;
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open .nav__links {
    display: flex;
  }
  .nav__buy-mobile {
    display: inline-flex;
    align-self: flex-start;
    background: var(--green);
    color: var(--ink);
    border-radius: 999px;
    padding: 10px 18px;
  }
  .hero__grid,
  .split,
  .cta,
  .wanted,
  .footer,
  .vault__mid,
  .gallery__head,
  .vault__head {
    grid-template-columns: 1fr;
  }
  .comic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .panel,
  .panel--hero,
  .panel--wide,
  .panel--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .panel figcaption,
  .panel--hero figcaption {
    font-size: 0.92rem;
  }
  .panel--hero {
    grid-column: span 2;
    grid-row: span 2;
  }
  .hero {
    min-height: auto;
  }
  .hero__copy h1 {
    font-size: 4.4rem;
  }
  .hero__bag-tag {
    bottom: auto;
    top: 14px;
    left: 12px;
  }
  .hero__shot {
    max-height: none;
    min-height: 380px;
  }
  .vault__peek img {
    height: 220px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
