:root {
  --lime: #CEFF00;
  --pink: #FF5DA2;
  --purple: #8B5CF6;
  --cream: #FFF6C8;
  --ink: #111111;
  --paper: #F6FFB5;
  --shadow: 8px 10px 0 var(--ink);
  --border: 4px solid var(--ink);
}

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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,.45) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 12%, rgba(17,17,17,.14) 0 1px, transparent 2px),
    var(--lime);
  background-size: 54px 54px, 68px 68px, auto;
  color: var(--ink);
  font-family: 'Baloo 2', system-ui, sans-serif;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.top-ticker {
  position: relative;
  z-index: 20;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  border-top: 3px solid var(--ink);
  white-space: nowrap;
}

.ticker-track {
  width: max-content;
  padding: 7px 0;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  padding: 18px 0 8px;
  pointer-events: none;
}

.nav-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 24px;
  box-shadow: 6px 7px 0 rgba(17,17,17,.78);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: 46px;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
  background: var(--lime);
  flex: 0 0 auto;
}

.brand-logo img {
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: 'Fredoka', sans-serif;
  font-size: .98rem;
}

.brand-copy small {
  margin-top: 4px;
  font-weight: 800;
  opacity: .65;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
}

.nav-links a:hover {
  background: var(--pink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 3px solid var(--ink);
  border-radius: 13px;
  background: var(--lime);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 21px;
  height: 3px;
  border-radius: 10px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero {
  min-height: 760px;
  padding: 78px 0 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  padding: 7px 13px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  font-family: 'Fredoka', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  box-shadow: 3px 4px 0 var(--ink);
}

.hero h1 {
  max-width: 650px;
  margin: 22px 0 18px;
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(4rem, 7.5vw, 7.6rem);
  line-height: .82;
  letter-spacing: -.055em;
}

.hero h1 span {
  display: inline-block;
  color: var(--pink);
  -webkit-text-stroke: 3px var(--ink);
  text-shadow: 7px 8px 0 var(--ink);
}

.hero-description {
  max-width: 610px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.55;
}

.ca-box {
  width: min(100%, 640px);
  margin-top: 28px;
  padding: 12px 12px 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--cream);
  border: var(--border);
  border-radius: 18px;
  box-shadow: 5px 6px 0 var(--ink);
}

.ca-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.ca-label {
  font-size: .72rem;
  font-weight: 800;
  opacity: .62;
}

.ca-value {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.copy-btn {
  flex: 0 0 auto;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--purple);
  color: white;
  padding: 10px 15px;
  font-family: 'Fredoka', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
}

.copy-btn:hover { background: var(--pink); color: var(--ink); }

.hero-actions,
.community-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  box-shadow: 4px 5px 0 var(--ink);
}

.btn-primary { background: var(--pink); }
.btn-secondary { background: var(--cream); }
.btn-dark { background: var(--ink); color: white; }
.btn-light { background: var(--lime); }
.btn:hover { background: var(--purple); color: white; }

.hero-art-wrap {
  position: relative;
  min-width: 0;
}

.image-card {
  overflow: hidden;
  border: var(--border);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.hero-art-card {
  position: relative;
  z-index: 2;
  aspect-ratio: 1 / 1;
  border-radius: 34px 34px 46px 22px;
  transform: rotate(1.5deg);
}

.hero-art-card::before {
  content: '';
  position: absolute;
  inset: 13px;
  z-index: 2;
  border: 2px dashed rgba(17,17,17,.45);
  border-radius: 25px;
  pointer-events: none;
}

.hero-art-card img {
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: -28px;
  bottom: -45px;
  z-index: 4;
  width: 155px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--purple);
  color: white;
  border: 4px solid var(--ink);
  border-radius: 46% 54% 57% 43% / 54% 43% 57% 46%;
  box-shadow: 6px 7px 0 var(--ink);
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  transform: rotate(-8deg);
}

.scribble {
  position: absolute;
  z-index: 1;
  font-family: 'Fredoka', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--cream);
  -webkit-text-stroke: 3px var(--ink);
}

.scribble-one { left: -48px; top: -64px; transform: rotate(-10deg); }
.scribble-two { right: -26px; top: 16px; transform: rotate(12deg); }

/* About */
.about-section {
  position: relative;
  padding: 100px 0;
  background: var(--pink);
  border-top: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
}

.about-section::before,
.about-section::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 70px;
  background: var(--lime);
  border: 4px solid var(--ink);
  transform: rotate(-10deg);
}

.about-section::before { left: -50px; top: 35px; }
.about-section::after { right: -45px; bottom: 45px; transform: rotate(12deg); }

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-art {
  aspect-ratio: 1 / 1;
  border-radius: 34px;
  transform: rotate(-1.5deg);
}

.about-art img {
  height: 100%;
  object-fit: cover;
}

.paper-card {
  padding: 44px;
  background: var(--cream);
  border: var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.paper-card h2,
.community-card h2 {
  margin: 18px 0 16px;
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: .95;
}

.paper-card p,
.community-card p {
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.6;
}

.paper-card p + p { margin-top: 14px; }

.mini-sticker {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 16px;
  background: var(--lime);
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: 4px 5px 0 var(--ink);
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  transform: rotate(-2deg);
}

/* Tokenomics */
.tokenomics-section {
  padding: 112px 0;
}

.tokenomics-board {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-rows: 140px 1fr 1fr;
  background: var(--cream);
  border: 5px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 12px 14px 0 var(--ink);
}

.tokenomics-title {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  background: var(--lime);
  border-bottom: 5px solid var(--ink);
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: .9;
  color: var(--pink);
  -webkit-text-stroke: 3px var(--ink);
  text-shadow: 6px 7px 0 var(--ink);
}

.token-cell {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: rgba(206,255,0,.28);
}

.token-cell span {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--purple);
}

.token-cell strong {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  line-height: 1;
}

.token-cell-left { border-right: 5px solid var(--ink); }
.token-cell-right { border-left: 5px solid var(--ink); text-align: right; align-items: flex-end; }
.token-cell.top { border-bottom: 5px solid var(--ink); }

.supply-card {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: center;
  justify-self: center;
  width: calc(100% - 40px);
  min-height: 360px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--pink);
  border: 5px solid var(--ink);
  border-radius: 48px;
  box-shadow: 9px 10px 0 var(--ink);
}

.supply-mascot {
  margin-top: -95px;
  margin-bottom: 18px;
  width: 120px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--lime);
  border: 4px solid var(--ink);
  border-radius: 44% 56% 47% 53% / 54% 48% 52% 46%;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  transform: rotate(-4deg);
}

.supply-card span {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  color: white;
  line-height: 1;
}

.supply-card strong {
  margin-top: 22px;
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
}

/* Community */
.community-section {
  padding: 0 0 110px;
}

.community-card {
  padding: 52px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 36px;
  background: var(--purple);
  color: white;
  border: 5px solid var(--ink);
  border-radius: 36px;
  box-shadow: 10px 12px 0 var(--ink);
}

.community-card .section-kicker {
  color: var(--ink);
}

.community-actions {
  justify-content: flex-end;
  margin-top: 0;
}

/* Footer */
footer {
  padding: 26px 0 34px;
  background: var(--cream);
  border-top: 5px solid var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  font-weight: 800;
}

/* Responsive */
@media (max-width: 900px) {
  .site-header { padding-top: 10px; }

  .nav-shell {
    position: relative;
    align-items: center;
  }

  .menu-toggle { display: flex; }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px;
    background: var(--cream);
    border: 3px solid var(--ink);
    border-radius: 18px;
    box-shadow: 5px 6px 0 var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    text-align: center;
    border: 2px solid var(--ink);
    background: var(--lime);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 68px;
    text-align: center;
  }

  .hero-copy {
    display: contents;
  }

  .eyebrow {
    justify-self: center;
    grid-row: 1;
  }

  .hero h1 {
    justify-self: center;
    grid-row: 2;
    margin: 0;
  }

  .hero-art-wrap {
    grid-row: 3;
    width: min(620px, 100%);
    justify-self: center;
  }

  .hero-description {
    grid-row: 4;
    justify-self: center;
  }

  .ca-box {
    grid-row: 5;
    justify-self: center;
    text-align: left;
  }

  .hero-actions {
    grid-row: 6;
    justify-content: center;
  }

  .about-grid,
  .community-card {
    grid-template-columns: 1fr;
  }

  .about-art { max-width: 620px; margin: 0 auto; }
  .community-actions { justify-content: flex-start; }

  .tokenomics-board {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
  }

  .tokenomics-title { grid-column: 1 / -1; min-height: 120px; }
  .token-cell-left.top { grid-column: 1; grid-row: 2; }
  .token-cell-right.top { grid-column: 2; grid-row: 2; }

  .supply-card {
    grid-column: 1 / -1;
    grid-row: 3;
    width: calc(100% - 48px);
    margin: 58px 0 40px;
  }

  .token-cell-left.bottom { grid-column: 1; grid-row: 4; border-top: 5px solid var(--ink); }
  .token-cell-right.bottom { grid-column: 2; grid-row: 4; border-top: 5px solid var(--ink); }
}

@media (max-width: 600px) {
  .section-wrap { width: min(100% - 28px, 1180px); }
  .top-ticker { font-size: .84rem; }

  .nav-shell {
    width: calc(100% - 22px);
    padding: 8px 9px;
    border-radius: 18px;
  }

  .brand-logo { width: 41px; border-radius: 11px; }
  .brand-copy strong { font-size: .85rem; }
  .brand-copy small { font-size: .7rem; }

  .nav-links {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 82px;
    gap: 28px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.4rem, 20vw, 5.5rem) !important;
    line-height: .84;
  }

  .hero h1 span {
    -webkit-text-stroke: 2px var(--ink);
    text-shadow: 5px 5px 0 var(--ink);
  }

  .hero-description {
    font-size: 1.03rem;
    padding: 0 5px;
  }

  .hero-art-card {
    border-radius: 24px;
    transform: none;
    box-shadow: 6px 7px 0 var(--ink);
  }

  .scribble { display: none; }
  .hero-badge {
    right: 8px;
    bottom: -28px;
    width: 118px;
    font-size: .82rem;
  }

  .ca-box {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    padding: 13px;
  }

  .copy-btn { width: 100%; }

  .hero-actions,
  .community-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn { width: 100%; }

  .about-section { padding: 72px 0; }
  .about-grid { gap: 32px; }
  .paper-card { padding: 28px 22px; border-radius: 24px; }
  .paper-card h2,
  .community-card h2 { font-size: clamp(2.5rem, 15vw, 4rem); }

  .tokenomics-section { padding: 78px 0; }
  .tokenomics-board {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    border-radius: 20px;
  }

  .tokenomics-title,
  .token-cell-left.top,
  .token-cell-right.top,
  .supply-card,
  .token-cell-left.bottom,
  .token-cell-right.bottom {
    grid-column: 1;
    grid-row: auto;
  }

  .tokenomics-title {
    min-height: 100px;
    font-size: clamp(3rem, 18vw, 5rem);
    -webkit-text-stroke: 2px var(--ink);
    text-shadow: 4px 5px 0 var(--ink);
  }

  .token-cell,
  .token-cell-left,
  .token-cell-right,
  .token-cell.top,
  .token-cell.bottom {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 4px solid var(--ink);
    text-align: center;
    align-items: center;
    padding: 24px 18px;
  }

  .supply-card {
    width: calc(100% - 28px);
    min-height: 300px;
    margin: 58px auto 30px;
    border-radius: 36px;
  }

  .supply-mascot { margin-top: -88px; }

  .community-section { padding-bottom: 78px; }
  .community-card { padding: 30px 22px; border-radius: 26px; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .section-wrap { width: min(100% - 22px, 1180px); }
  .brand-copy strong { max-width: 105px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hero h1 { font-size: clamp(3rem, 19vw, 4.6rem) !important; }
  .paper-card { padding: 24px 18px; }
}
.hero-video {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
}
/* TOKENOMICS MOBILE FIX */
@media (max-width: 600px) {

    .tokenomics {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        overflow: hidden;
    }

    .tokenomics-board {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .tokenomics-title {
        font-size: clamp(2.4rem, 13vw, 4rem) !important;
        line-height: 0.95;
        width: 100%;
        max-width: 100%;
        text-align: center;
        white-space: normal;
        overflow-wrap: anywhere;
    }
}