:root {
  --lime: #ccff00;
  --lime-dim: #a8d600;
  --lime-glow: rgba(204, 255, 0, 0.45);
  --ink: #070a06;
  --ink-2: #10160e;
  --ink-3: #1a2416;
  --cream: #f2ffe6;
  --muted: rgba(242, 255, 230, 0.68);
  --orange: #ff5c1a;
  --font-display: "Bangers", system-ui, sans-serif;
  --font-black: "Archivo Black", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ——— Topbar ——— */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(180deg, rgba(7, 10, 6, 0.92), rgba(7, 10, 6, 0.55));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(204, 255, 0, 0.25);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--lime);
}

.logo-mark {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--lime);
  background: #0a1208;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(204, 255, 0, 0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-name {
  font-family: var(--font-black);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.logo-ticker {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--lime);
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.topbar nav a:not(.btn):hover {
  color: var(--lime);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.7rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  background: var(--lime);
  color: var(--ink);
  border: 2px solid var(--lime);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.08) drop-shadow(0 0 18px var(--lime-glow));
}

.btn-nav {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  clip-path: none;
  border-radius: 4px;
}

.btn-outline {
  background: transparent;
  color: var(--lime);
}

.btn-outline:hover {
  background: var(--lime);
  color: var(--ink);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.cta-row.center {
  justify-content: center;
}

/* ——— BANNER HERO (full bleed) ——— */
.banner {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: banner- ken 18s ease-in-out infinite alternate;
}

@keyframes banner-ken {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 6, 0.92) 0%, rgba(7, 10, 6, 0.55) 42%, rgba(7, 10, 6, 0.2) 70%, rgba(7, 10, 6, 0.45) 100%),
    linear-gradient(0deg, rgba(7, 10, 6, 0.95) 0%, transparent 45%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(204, 255, 0, 0.18), transparent 70%);
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
  padding: 7rem 1.5rem 3.5rem;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--lime);
  padding: 0.4rem 0.75rem;
  margin-bottom: 1rem;
  animation: blink-border 2.2s ease-in-out infinite;
}

@keyframes blink-border {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--lime-glow);
  }
  50% {
    box-shadow: 0 0 0 8px transparent;
  }
}

.banner h1 {
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 14vw, 8.2rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow:
    0 0 40px rgba(204, 255, 0, 0.35),
    3px 4px 0 rgba(0, 0, 0, 0.55);
}

.banner-sub {
  margin-top: 1.1rem;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 600;
  color: var(--muted);
  max-width: 26rem;
}

/* ——— Marquee ——— */
.marquee {
  background: var(--lime);
  color: var(--ink);
  overflow: hidden;
  padding: 0.9rem 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.marquee-track {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  animation: scroll-x 26s linear infinite;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.marquee-track span::after {
  content: "✦";
  margin-left: 2.2rem;
  color: var(--orange);
}

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

/* ——— Intro ——— */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.intro-art {
  position: relative;
  display: flex;
  justify-content: center;
}

.mascot-glow {
  position: absolute;
  inset: 15% 10%;
  background: radial-gradient(circle, var(--lime-glow), transparent 65%);
  filter: blur(20px);
  z-index: 0;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.mascot {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  border-radius: 8px;
  border: 3px solid var(--lime);
  box-shadow: 10px 10px 0 var(--lime);
  animation: bob 3.2s ease-in-out infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.intro-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--lime);
  margin-bottom: 1.1rem;
}

.intro-copy p {
  font-size: 1.12rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.punch {
  color: var(--cream) !important;
  font-weight: 700;
  font-size: 1.2rem !important;
}

.punch em {
  font-style: normal;
  color: var(--lime);
}

.intro-logo {
  width: min(100%, 220px);
  margin-top: 1.4rem;
  border-radius: 50%;
  border: 3px solid var(--lime);
  box-shadow: 0 0 28px rgba(204, 255, 0, 0.35), 6px 6px 0 var(--lime);
  background: #0a1208;
}

.cash-band {
  padding: 0 1.5rem 4.5rem;
}

.cash-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(204, 255, 0, 0.12), transparent 60%),
    var(--ink-2);
  border: 2px solid rgba(204, 255, 0, 0.35);
  overflow: hidden;
  padding: 1.25rem;
}

.cash-hero {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid var(--lime);
  box-shadow: 8px 8px 0 var(--lime);
}

.cash-band-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--lime);
  margin-bottom: 0.75rem;
}

.cash-band-copy p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 28rem;
}

/* ——— Story ——— */
.story {
  padding: 2rem 1.5rem 5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  color: var(--lime);
  line-height: 1;
}

.section-head p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.story-card {
  background: var(--ink-2);
  border: 2px solid rgba(204, 255, 0, 0.28);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.story-card:hover {
  transform: translateY(-6px);
  border-color: var(--lime);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 30px rgba(204, 255, 0, 0.12);
}

.story-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--ink-3);
}

.story-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.step {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--orange);
  letter-spacing: 0.06em;
}

.story-body h3 {
  font-family: var(--font-black);
  font-size: 1.35rem;
  margin: 0.2rem 0 0.45rem;
  letter-spacing: -0.01em;
}

.story-body p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* ——— Wanted ——— */
.wanted {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

.wanted-poster {
  position: relative;
}

.wanted-poster img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  border: 3px solid #c4a574;
  box-shadow:
    0 0 0 8px #2a1f12,
    12px 16px 0 rgba(0, 0, 0, 0.5);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.wanted-poster:hover img {
  transform: rotate(0deg) scale(1.02);
}

.wanted-label {
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.wanted-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 6rem);
  letter-spacing: 0.06em;
  line-height: 0.9;
  color: var(--lime);
  margin-bottom: 1.25rem;
  text-shadow: 0 0 28px var(--lime-glow);
}

.wanted-copy ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.wanted-copy li {
  font-size: 1.08rem;
  color: var(--muted);
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(204, 255, 0, 0.15);
}

.wanted-copy strong {
  color: var(--cream);
  margin-right: 0.35rem;
}

.wanted-note {
  font-weight: 600;
  color: var(--lime);
  font-size: 1.05rem;
}

/* ——— Tokenomics ——— */
.tokenomics {
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(204, 255, 0, 0.25), transparent 55%),
    var(--lime);
  color: var(--ink);
  text-align: center;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.tokenomics::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -18deg,
    transparent,
    transparent 28px,
    rgba(0, 0, 0, 0.04) 28px,
    rgba(0, 0, 0, 0.04) 29px
  );
  pointer-events: none;
}

.tokenomics h2 {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

.tok-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 1.25rem;
}

.tok-val {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

.tok-lab {
  display: block;
  margin-top: 0.3rem;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.tok-fine {
  position: relative;
  font-weight: 600;
  opacity: 0.65;
}

/* ——— Finale ——— */
.finale {
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.finale-fox {
  width: 140px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 3px solid var(--lime);
  background: var(--ink-3);
  animation: bob 2.8s ease-in-out infinite;
}

.finale h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.finale > p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.ca {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0 auto 1.5rem;
  padding: 1.05rem 1.2rem;
  background: var(--ink-2);
  border: 2px solid var(--lime);
  color: var(--lime);
  cursor: pointer;
  font: inherit;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.ca:hover {
  background: var(--ink-3);
  box-shadow: 0 0 24px rgba(204, 255, 0, 0.2);
}

.ca code {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: clamp(0.9rem, 3vw, 1.15rem);
  word-break: break-all;
  text-align: left;
}

.ca span {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: var(--lime);
  color: var(--ink);
  padding: 0.4rem 0.65rem;
}

footer {
  padding: 1.75rem 1.5rem 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(204, 255, 0, 0.12);
  font-size: 0.85rem;
  color: rgba(242, 255, 230, 0.4);
}

footer .copyright {
  margin-top: 0.55rem;
  font-size: 0.8rem;
  color: rgba(242, 255, 230, 0.35);
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .intro,
  .wanted,
  .cash-band-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro-copy,
  .wanted-copy {
    order: -1;
  }

  .intro-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .cash-band-copy {
    padding: 0.5rem 0.5rem 1rem;
  }

  .cash-hero {
    max-width: 360px;
    margin: 0 auto;
  }

  .wanted-copy ul {
    text-align: left;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .banner-content {
    padding: 6rem 1.25rem 2.5rem;
  }

  .banner-shade {
    background:
      linear-gradient(0deg, rgba(7, 10, 6, 0.97) 0%, rgba(7, 10, 6, 0.55) 40%, rgba(7, 10, 6, 0.35) 100%),
      radial-gradient(ellipse 80% 50% at 50% 100%, rgba(204, 255, 0, 0.15), transparent 60%);
  }

  .banner-img {
    object-position: 70% center;
  }
}

@media (max-width: 640px) {
  .logo-name {
    display: none;
  }

  .tok-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .topbar nav a:not(.btn) {
    display: none;
  }

  .cta-row .btn {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
