:root {
  --pink: #ff2e92;
  --pink-2: #ff62b0;
  --pink-deep: #c0126a;
  --gold: #ffd24a;
  --lime: #c8ff2e;
  --sky: #6fd8ff;
  --ocean: #1296c8;
  --sand: #ffe9c8;
  --cream: #fff6fb;
  --ink: #16010c;
  --white: #fff;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 60px rgba(192, 18, 106, 0.28);
  --font: "Futura Condensed ExtraBold", "Futura-CondensedExtraBold", "Barlow Condensed", sans-serif;
  --display: var(--font);
  --meme: var(--font);
}

@font-face {
  font-family: "Futura Condensed ExtraBold";
  src: local("Futura Condensed ExtraBold"), local("Futura-CondensedExtraBold");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

button,
input,
select,
textarea,
code,
kbd,
samp {
  font-family: inherit;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 800;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(255, 46, 146, 0.35), transparent 55%),
    radial-gradient(700px 380px at -10% 20%, rgba(111, 216, 255, 0.45), transparent 50%),
    linear-gradient(180deg, #b9ecff 0%, #ffe1f2 28%, var(--cream) 52%, #ffd0e8 100%);
  min-height: 100%;
  overflow-x: hidden;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.07;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img,
video,
iframe {
  max-width: 100%;
}

a {
  color: var(--pink-deep);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}
.skip:focus {
  left: 8px;
}

.sparkle {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 12% 22%, #fff 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 78% 18%, var(--gold) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 64% 72%, #fff 0 1px, transparent 2px),
    radial-gradient(circle at 30% 80%, var(--pink) 0 1.5px, transparent 2.5px);
  background-size: 220px 220px, 280px 280px, 160px 160px, 240px 240px;
  animation: twinkle 8s linear infinite;
  opacity: 0.55;
}

@keyframes twinkle {
  to {
    background-position: 220px 0, -140px 80px, 80px -80px, -120px 40px;
  }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 22px;
  background: rgba(255, 246, 251, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 3px solid #111;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid #111;
  object-fit: cover;
  box-shadow: 3px 3px 0 #111;
}
.brand b {
  display: block;
  font-family: var(--display);
  letter-spacing: 0.06em;
  font-size: 1.35rem;
  line-height: 1;
}
.brand small {
  color: var(--pink-deep);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 800;
}
.nav-links a {
  text-decoration: none;
  color: inherit;
}
.nav-links a:hover {
  color: var(--pink);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-family: inherit;
  font-weight: 800;
  border: 3px solid #111;
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow: 3px 3px 0 #111;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 #111;
}
.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 #111;
}
.btn.pink {
  background: var(--pink);
  color: #fff;
}
.btn.white {
  background: #fff;
  color: #111;
}
.btn.ghost {
  background: #fff;
  color: #111;
}
.btn.xl {
  padding: 12px 22px;
  font-size: 1.05rem;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 3px solid #111;
  background: #fff;
  font-family: inherit;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 3px 3px 0 #111;
}
.burger span {
  display: block;
  height: 3px;
  background: #111;
  margin: 5px 0;
}

.marquee {
  overflow: hidden;
  background: #111;
  color: var(--lime);
  border-bottom: 3px solid #111;
  font-family: var(--meme);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}
.marquee-track {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  padding: 8px 0;
  animation: slide 28s linear infinite;
  font-size: 0.95rem;
}
.marquee-track span::after {
  content: " ★ ";
  color: var(--pink);
  margin-left: 2.2rem;
}
@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  padding: 48px 7vw 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-copy,
.meme-card,
.token-grid,
.token-grid > *,
.facts,
.info-card {
  min-width: 0;
}

.kicker {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--pink-deep);
  margin: 0 0 8px;
}

h1 {
  margin: 0;
}
.wordmark {
  display: block;
  font-family: var(--meme);
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.85;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}
.wordmark.sm {
  font-size: 2rem;
}
.title {
  display: block;
  font-family: var(--display);
  font-size: clamp(3.4rem, 8.6vw, 7.2rem);
  line-height: 0.78;
  letter-spacing: 0.01em;
  color: #fff;
  -webkit-text-stroke: 3px #111;
  paint-order: stroke fill;
  text-shadow: 6px 6px 0 var(--pink);
  white-space: nowrap;
}

.lede {
  font-size: 1.15rem;
  max-width: min(36ch, 100%);
  font-weight: 800;
  overflow-wrap: anywhere;
}
.lede em {
  font-family: var(--meme);
  font-style: normal;
}

.sticker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 18px;
}
.sticker {
  font-family: var(--display);
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  padding: 4px 12px;
  border: 3px solid #111;
  box-shadow: 3px 3px 0 #111;
  transform: rotate(-2deg);
}
.sticker.lime {
  background: var(--lime);
}
.sticker.pink {
  background: var(--pink);
  color: #fff;
  transform: rotate(2deg);
}
.sticker.gold {
  background: var(--gold);
  transform: rotate(-1deg);
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 3px solid #111;
  padding: 10px 12px;
  box-shadow: 4px 4px 0 #111;
  max-width: 100%;
  min-width: 0;
  width: 100%;
}
.ca-label {
  font-family: var(--meme);
  font-size: 0.8rem;
  background: #111;
  color: #fff;
  padding: 4px 8px;
}
.ca-box code {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 700;
}
.copy-btn {
  border: 3px solid #111;
  background: var(--pink);
  color: #fff;
  font-family: inherit;
  font-weight: 800;
  padding: 6px 12px;
  cursor: pointer;
  box-shadow: 2px 2px 0 #111;
}
.copy-btn.mini {
  padding: 4px 8px;
  font-size: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.meme-card {
  margin: 0;
  justify-self: center;
  width: min(420px, 100%);
}
.meme-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 4px solid #111;
  box-shadow:
    8px 8px 0 #111,
    0 30px 60px rgba(255, 46, 146, 0.35);
  transform: rotate(-2.4deg);
  animation: floaty 4.5s ease-in-out infinite;
}
.meme-frame::after {
  content: "THE MEME";
  position: absolute;
  left: -8px;
  bottom: 22px;
  background: var(--lime);
  color: #111;
  font-family: var(--display);
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border: 3px solid #111;
  transform: rotate(-8deg);
  font-size: 1.05rem;
  z-index: 2;
}
.meme-gif {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.meme-card figcaption {
  margin-top: 14px;
  text-align: center;
  font-weight: 800;
  transform: rotate(-2.4deg);
  padding-inline: 8px;
  width: 100%;
  overflow-wrap: anywhere;
}
.heart {
  color: var(--pink);
}

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

.stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1280px;
  margin: 10px auto 40px;
  padding: 0 7vw;
}
.stats article {
  background: #fff;
  border: 3px solid #111;
  box-shadow: 4px 4px 0 #111;
  padding: 14px 16px;
}
.stats span {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-deep);
}
.stats strong {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.panel,
#meme,
#stats {
  scroll-margin-top: 92px;
}

.panel {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto 56px;
  padding: 0 7vw;
}

.caption {
  display: inline-block;
  background: #fff;
  border: 4px solid #111;
  font-family: var(--meme);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: 0.02em;
  padding: 6px 22px 10px;
  margin-bottom: 22px;
  box-shadow: 6px 6px 0 #111;
}

.token-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}
.token h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.95;
  margin: 0 0 12px;
  overflow-wrap: break-word;
  max-width: 100%;
}
.token p {
  font-size: 1.05rem;
  font-weight: 800;
  max-width: 58ch;
  overflow-wrap: anywhere;
}

.facts {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  overflow-wrap: anywhere;
}
.facts li {
  background: #fff;
  border: 3px solid #111;
  padding: 10px 12px;
  font-weight: 800;
}
.facts span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-deep);
}

.info-card {
  background: #fff;
  border: 4px solid #111;
  box-shadow: 8px 8px 0 #111;
  padding: 18px;
}
.info-card img {
  width: 100%;
  border: 3px solid #111;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 1;
}
.info-card dl {
  margin: 12px 0 0;
}
.info-card dt {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--pink-deep);
}
.info-card dd {
  margin: 0 0 12px;
  font-weight: 700;
}
.info-card dd code {
  display: block;
  font-size: 0.78rem;
  word-break: break-all;
  margin-bottom: 6px;
}
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.link-row a {
  font-weight: 800;
  text-decoration: none;
  border: 3px solid #111;
  padding: 6px 10px;
  background: var(--sand);
  color: #111;
}

.steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.steps li {
  background: #fff;
  border: 3px solid #111;
  box-shadow: 5px 5px 0 #111;
  padding: 20px 18px 24px;
}
.steps b {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--pink);
  -webkit-text-stroke: 2px #111;
}
.steps h3 {
  margin: 4px 0 8px;
  font-size: 1.3rem;
}
.steps p {
  margin: 0;
  font-weight: 600;
}

.buy-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.buy-tile {
  display: flex;
  flex-direction: column;
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  border: 3px solid #111;
  box-shadow: 4px 4px 0 #111;
  padding: 18px 16px;
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}
.buy-tile:nth-child(2) {
  background: var(--lime);
  color: #111;
}
.buy-tile:nth-child(3) {
  background: var(--gold);
  color: #111;
}
.buy-tile:nth-child(4) {
  background: #111;
  color: #fff;
}
.buy-tile small {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0.85;
}

.gallery-note {
  font-weight: 700;
  margin-top: -8px;
}
.shots {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.shot {
  position: relative;
  border: 3px solid #111;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  box-shadow: 4px 4px 0 #111;
}
.shot:first-child {
  grid-row: 1 / span 2;
}
.shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  transition: transform 0.35s ease;
}
.shot:first-child img {
  aspect-ratio: auto;
  min-height: 100%;
}
.shot:hover img {
  transform: scale(1.04);
}
.shot span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: #fff;
  border: 3px solid #111;
  font-family: var(--meme);
  font-size: 0.85rem;
  padding: 4px 8px;
}

.chart-frame {
  border: 4px solid #111;
  box-shadow: 8px 8px 0 #111;
  height: min(620px, 70vh);
  background: #111;
}
.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.foot {
  position: relative;
  z-index: 1;
  background: #111;
  color: #fff;
  margin-top: 40px;
}
.wave {
  color: #111;
  line-height: 0;
  margin-top: -1px;
}
.wave svg {
  width: 100%;
  height: 70px;
  display: block;
  fill: #111;
}
.foot-inner {
  padding: 10px 7vw 110px;
  max-width: 1280px;
  margin: 0 auto;
}
.foot .wordmark {
  color: #fff;
}
.foot-name {
  font-family: var(--display);
  letter-spacing: 0.08em;
  font-size: 1.4rem;
  margin: 0;
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
  font-weight: 800;
}
.foot-links a {
  color: var(--lime);
  text-decoration: none;
}
.disclaimer {
  max-width: 62ch;
  opacity: 0.7;
  font-size: 0.9rem;
}

.float-buy {
  display: none;
  position: fixed;
  z-index: 50;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--pink);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-family: inherit;
  font-weight: 900;
  padding: 14px;
  border: 3px solid #111;
  box-shadow: 4px 4px 0 #111;
}

body.modal-open .nav,
body.modal-open .float-buy,
body.modal-open .marquee {
  visibility: hidden;
}

.toast {
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  background: var(--lime);
  color: #111;
  border: 3px solid #111;
  font-family: var(--meme);
  padding: 10px 16px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.lightbox {
  border: 4px solid #111;
  padding: 0;
  background: #000;
  max-width: min(920px, 94vw);
  z-index: 200;
}
.lightbox::backdrop {
  background: rgba(10, 0, 6, 0.8);
}
.lightbox img {
  display: block;
  max-height: 86vh;
  width: auto;
}
.lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  border: 3px solid #111;
  background: var(--pink);
  color: #fff;
  font-family: inherit;
  font-size: 1.6rem;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: var(--pink);
  color: #fff;
}

@media (max-width: 980px) {
  .hero,
  .token-grid,
  .steps,
  .buy-links,
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .steps,
  .buy-links {
    grid-template-columns: 1fr 1fr;
  }
  .shots {
    grid-template-columns: 1fr 1fr;
  }
  .shot:first-child {
    grid-row: auto;
  }
  .title {
    -webkit-text-stroke: 2px #111;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 12px;
    right: 12px;
    background: #fff;
    border: 3px solid #111;
    box-shadow: 5px 5px 0 #111;
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }
  .nav-links.open {
    display: flex;
  }
  .burger {
    display: block;
  }
  .nav-cta .btn {
    display: none;
  }
  .hero,
  .token-grid,
  .steps,
  .buy-links,
  .stats,
  .shots,
  .facts {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 20px;
  }
  .meme-card {
    order: -1;
    width: min(360px, 100%);
  }
  .title {
    font-size: clamp(2.5rem, 14.5vw, 4.2rem);
    letter-spacing: 0;
    text-shadow: 4px 4px 0 var(--pink);
    -webkit-text-stroke: 2px #111;
  }
  .lede {
    max-width: 100%;
  }
  .token h2 {
    font-size: clamp(1.65rem, 8vw, 2.3rem);
  }
  .meme-frame {
    transform: none;
  }
  .meme-card figcaption {
    transform: none;
  }
  @keyframes floaty {
    50% {
      transform: translateY(-8px);
    }
  }
  .float-buy {
    display: block;
  }
  .foot-inner {
    padding-bottom: 96px;
  }
  .toast {
    bottom: 92px;
  }
  .panel,
  #meme,
  #stats {
    scroll-margin-top: 78px;
  }
  .hero-actions .ghost {
    display: none;
  }
}

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