* {
  box-sizing: border-box;
}

:root {
  --bg: #080403;
  --panel: #120806;
  --orange: #ff5a00;
  --orange-2: #ff8a00;
  --yellow: #ffc400;
  --red: #b91600;
  --white: #fff6ec;
  --muted: #c7aea1;
  --line: rgba(255,255,255,.13);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,90,0,.10), transparent 25%),
    var(--bg);
  color: var(--white);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

body::selection {
  background: var(--orange);
  color: #000;
}

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

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

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

.cursor-glow {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,91,0,.14), transparent 65%);
  transition: opacity .2s;
}

.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(5,2,1,.94), rgba(5,2,1,.3), transparent);
  backdrop-filter: blur(6px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: none;
}

.nav a {
  transition: .2s ease;
}

.nav a:hover {
  color: var(--orange-2);
  transform: translateY(-2px);
}

.nav-buy {
  padding: 12px 17px;
  border: 1px solid var(--orange);
  box-shadow: 0 0 24px rgba(255,90,0,.18);
}

.menu-toggle {
  display: none;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 26px;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.20) 60%, rgba(0,0,0,.55)),
    linear-gradient(to top, var(--bg), transparent 34%),
    linear-gradient(to bottom, rgba(0,0,0,.5), transparent 25%);
}

.hero-content {
  width: min(1180px, 92vw);
  position: relative;
  z-index: 3;
  padding-top: 80px;
}

.eyebrow {
  text-transform: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .26em;
  color: var(--orange-2);
}

h1, h2, h3 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-transform: none;
  margin: 0;
  letter-spacing: .015em;
}

h1 {
  font-size: clamp(78px, 12vw, 188px);
  line-height: .78;
  text-shadow: 0 10px 50px rgba(0,0,0,.75);
}

h1 span, h2 span {
  color: var(--orange);
  text-shadow: 0 0 30px rgba(255,90,0,.25);
}

.hero-copy {
  max-width: 630px;
  color: #f2ded3;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  margin: 28px 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions.centered {
  justify-content: center;
}

.btn {
  border: 1px solid transparent;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: none;
  cursor: pointer;
  transition: .22s ease;
}

.btn:hover {
  transform: translateY(-4px) rotate(-1deg);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #120500;
  box-shadow: 0 12px 38px rgba(255,90,0,.27);
}

.btn-secondary {
  border-color: rgba(255,255,255,.4);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(9px);
}

.status-chip {
  margin-top: 24px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #f6dccd;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background: #43ff79;
  border-radius: 50%;
  box-shadow: 0 0 14px #43ff79;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  50% { opacity: .35; transform: scale(.75); }
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 4vw;
  z-index: 4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  writing-mode: vertical-rl;
}

.ticker {
    height: 52px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.35);
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    width: max-content;
    animation: ticker 12s linear infinite;
    font-family: "Anton", sans-serif;
    font-size: 18px;
}

.ticker-track b {
  color: var(--orange);
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

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

.section {
  padding: 120px 5vw;
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 52px;
}

h2 {
  font-size: clamp(58px, 8vw, 116px);
  line-height: .88;
}

.lore-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lore-card {
  position: relative;
  padding: 34px;
  min-height: 290px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: .25s ease;
}

.lore-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -55% 15%;
  height: 170px;
  background: radial-gradient(circle, rgba(255,90,0,.28), transparent 70%);
}

.lore-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,90,0,.7);
}

.card-number {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
}

.lore-card h3 {
  font-size: 38px;
  margin: 60px 0 15px;
}

.lore-card p {
  color: var(--muted);
  line-height: 1.7;
}

.boss-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 7vw;
  padding: 100px 7vw;
  background:
    linear-gradient(90deg, rgba(0,0,0,.15), rgba(0,0,0,.6)),
    radial-gradient(circle at 20% 50%, rgba(255,75,0,.2), transparent 40%);
}

.boss-image-wrap {
  position: relative;
  max-width: 560px;
  margin: auto;
}

.boss-image-wrap img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 40px 100px rgba(0,0,0,.7);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.boss-ring {
  position: absolute;
  width: 110%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,90,0,.5);
  border-radius: 50%;
  left: -5%;
  top: 8%;
  animation: ringSpin 16s linear infinite;
}

.boss-ring::before,
.boss-ring::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 50%;
}

.boss-ring::after {
  inset: -8%;
  border-color: rgba(255,90,0,.18);
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

.boss-copy {
  max-width: 560px;
}

.stat {
  margin-top: 26px;
}

.stat-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: none;
}

.stat-bar {
  height: 9px;
  margin-top: 9px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}

.stat-bar i {
  display: block;
  height: 100%;
  width: var(--value);
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
  transform-origin: left;
  animation: statGrow 1.5s ease both;
}

@keyframes statGrow {
  from { transform: scaleX(0); }
}

.fine-print {
  color: #9f887d;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 30px;
}

.token-section {
  background: linear-gradient(180deg, #0b0504, #180a05);
}

.token-panel {
  max-width: 1180px;
  margin: auto;
  padding: clamp(30px, 6vw, 72px);
  border: 1px solid rgba(255,90,0,.42);
  background:
    linear-gradient(135deg, rgba(255,90,0,.10), transparent 38%),
    rgba(255,255,255,.025);
  box-shadow: inset 0 0 80px rgba(255,90,0,.045);
}

.token-data {
  margin: 50px 0 28px;
  border-top: 1px solid var(--line);
}

.token-data div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.token-data span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: none;
  letter-spacing: .1em;
}

.token-data strong {
  overflow-wrap: anywhere;
}

.copy-btn {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--orange);
  padding: 14px 18px;
  font-weight: 900;
  cursor: pointer;
}

.cta-section {
  min-height: 640px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 100px 5vw;
  background:
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.75)),
    url("assets/pumppp-banner.jpeg") center/cover fixed;
}

.cta-section.compact {
  min-height: 520px;
}

footer {
  min-height: 90px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #8d776d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
}

/* Meme page */
.memes-page {
  background:
    radial-gradient(circle at 80% 0%, rgba(255,90,0,.13), transparent 24%),
    #080403;
}

.meme-hero {
  min-height: 86svh;
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  padding: 120px 7vw 70px;
  overflow: hidden;
}

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

.meme-hero-copy p:last-child {
  max-width: 560px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.floating-boss {
  width: min(510px, 80vw);
  margin: auto;
  filter: drop-shadow(0 30px 70px rgba(255,70,0,.23));
  animation: floatBoss 4s ease-in-out infinite;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

@keyframes floatBoss {
  50% { transform: translateY(-18px) rotate(1deg); }
}

.meme-grid {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.meme-card {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  padding: 14px;
  transition: transform .15s ease;
}

.meme-card p {
  color: var(--muted);
  padding: 0 8px;
}

.meme-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #000;
}

.meme-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meme-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: clamp(24px, 3vw, 46px);
  line-height: .95;
  text-shadow:
    -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000,
    0 4px 10px #000;
}

.meme-caption.top { top: 14px; }
.meme-caption.bottom { bottom: 14px; }

.meme-generator {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.generator-box {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 34px;
}

.generator-box p {
  min-height: 130px;
  margin-top: 0;
  font-size: clamp(22px, 3vw, 35px);
  font-weight: 900;
  line-height: 1.25;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .site-header {
    height: 70px;
  }

  .menu-toggle {
    display: block;
    z-index: 60;
  }

  .nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 4vw;
    right: 4vw;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    background: rgba(9,4,2,.97);
    border: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero-bg {
    object-position: 55% center;
  }

  .lore-grid,
  .boss-section,
  .meme-hero,
  .meme-grid,
  .meme-generator {
    grid-template-columns: 1fr;
  }

  .boss-section {
    padding: 90px 5vw;
  }

  .meme-hero {
    text-align: center;
    padding-top: 110px;
  }

  .meme-hero-copy p:last-child {
    margin-left: auto;
    margin-right: auto;
  }

  .floating-boss {
    max-height: 540px;
    object-fit: cover;
  }

  .meme-grid {
    padding-top: 40px;
  }

  .token-data div {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .hero-actions.centered {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 85px 5vw;
  }

  .lore-card {
    min-height: 240px;
  }

  footer {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .cursor-glow {
    display: none;
  }
}


