:root {
  --pink: #ff4ea8;
  --pink-hot: #ff2d8a;
  --tan: #e0a36a;
  --sky: #6ec8ff;
  --sky-deep: #3b9fe6;
  --grass: #4ad45f;
  --grass-deep: #2eae44;
  --ink: #17110d;
  --cream: #fff6e8;
  --night: #14121c;
  --card: #fffdf8;
  --outline: 3px solid #17110d;
  --shadow: 6px 6px 0 #17110d;
  --shadow-sm: 4px 4px 0 #17110d;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.toast {
  position: fixed;
  top: 5.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-16px);
  background: var(--ink);
  color: var(--cream);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  z-index: 80;
  transition: 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--cream);
}

.header-slogan {
  background: linear-gradient(90deg, var(--pink-hot), #ffd36e, var(--grass), var(--sky), var(--pink-hot));
  background-size: 240% 100%;
  animation: slogan-shift 8s linear infinite;
  color: var(--ink);
  text-align: center;
  font-family: "Luckiest Guy", "Bangers", cursive;
  letter-spacing: 0.08em;
  font-size: clamp(0.95rem, 2.4vw, 1.35rem);
  padding: 0.45rem 1rem 0.3rem;
  text-transform: uppercase;
}

@keyframes slogan-shift {
  to {
    background-position: 240% 0;
  }
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.7rem 1.1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  min-width: max-content;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  image-rendering: pixelated;
  background: var(--sky);
}

.brand-name {
  font-family: "Luckiest Guy", cursive;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: var(--pink);
}

.nav {
  display: flex;
  gap: 1.15rem;
  margin-left: auto;
}

.nav a {
  text-decoration: none;
  font-weight: 800;
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
  color: var(--pink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ca-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #2a2433;
  color: var(--cream);
  border: 2px solid #fff3;
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.78rem;
}

.ca-label {
  background: var(--pink);
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 0.65rem;
  border-radius: 999px;
  padding: 0.12rem 0.4rem;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 3px;
  background: #fff;
  margin: 6px 0;
  border-radius: 99px;
}

.ticker {
  background: var(--pink-hot);
  color: #fff;
  border-bottom: var(--outline);
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 2.4rem;
  padding: 0.55rem 0;
  font-weight: 900;
  letter-spacing: 0.04em;
  animation: marquee 28s linear infinite;
}

.ticker-track span::before {
  content: "●";
  margin-right: 0.7rem;
  color: #ffe37a;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 7rem);
}

.sky {
  position: absolute;
  inset: 0 0 22% 0;
  background: linear-gradient(#8ad4ff, #c8ecff 55%, #fff6d6);
  z-index: -2;
}

.rainbow {
  position: absolute;
  left: -10%;
  right: -10%;
  top: 8%;
  height: 58%;
  background: conic-gradient(
    from 200deg at 50% 120%,
    #ff5d7a,
    #ffb14a,
    #ffe45c,
    #6ee07a,
    #62c6ff,
    #b38bff,
    #ff5d7a
  );
  mask-image: radial-gradient(ellipse at 50% 120%, transparent 42%, black 43%, black 58%, transparent 59%);
  opacity: 0.85;
}

.cloud {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  height: 38px;
  filter: drop-shadow(0 8px 0 #0001);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 50%;
}

.cloud-1 {
  width: 110px;
  top: 14%;
  left: 8%;
  animation: float 8s ease-in-out infinite;
}
.cloud-1::before {
  width: 46px;
  height: 46px;
  top: -22px;
  left: 18px;
}
.cloud-1::after {
  width: 58px;
  height: 58px;
  top: -28px;
  left: 46px;
}

.cloud-2 {
  width: 90px;
  top: 22%;
  right: 12%;
  animation: float 10s ease-in-out infinite reverse;
}
.cloud-2::before {
  width: 40px;
  height: 40px;
  top: -18px;
  left: 12px;
}
.cloud-2::after {
  width: 50px;
  height: 50px;
  top: -24px;
  left: 36px;
}

.cloud-3 {
  width: 70px;
  top: 8%;
  left: 46%;
  opacity: 0.8;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  50% {
    transform: translateY(-10px);
  }
}

.grass {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24%;
  background: linear-gradient(var(--grass), var(--grass-deep));
  z-index: -1;
}

.grass::before {
  content: "";
  position: absolute;
  inset: -18px 0 auto;
  height: 28px;
  background: radial-gradient(circle at 10px 18px, var(--grass) 10px, transparent 11px) 0 0 / 28px 28px;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.5rem 1.1rem 6rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}

.logo-glow {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, #fff8 0%, transparent 70%);
  filter: blur(8px);
}

.hero-logo {
  width: min(420px, 100%);
  border: var(--outline);
  border-radius: 28px;
  box-shadow: var(--shadow);
  image-rendering: pixelated;
  animation: bob 3.4s ease-in-out infinite;
  background: #8ad4ff;
}

@keyframes bob {
  50% {
    transform: translateY(-12px) rotate(-1.5deg);
  }
}

.kicker {
  display: inline-block;
  background: #fff;
  border: var(--outline);
  box-shadow: var(--shadow-sm);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-weight: 900;
  margin: 0 0 0.8rem;
}

.hero-copy h1 {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(3.4rem, 9vw, 7rem);
  line-height: 0.9;
  margin: 0;
  color: var(--pink-hot);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 6px 6px 0 #fff, 9px 9px 0 var(--ink);
}

.tagline {
  font-family: "Bangers", cursive;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: 0.06em;
  margin: 0.4rem 0 0.8rem;
  color: var(--ink);
}

.lede {
  max-width: 38rem;
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 700;
}

.ca-box {
  background: var(--ink);
  color: var(--cream);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  display: grid;
  gap: 0.45rem;
  margin: 1.2rem 0 1rem;
  box-shadow: var(--shadow);
}

.ca-box-label {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
}

.ca-box code {
  font-family: "Share Tech Mono", monospace;
  font-size: clamp(0.72rem, 2vw, 0.95rem);
  overflow-wrap: anywhere;
}

.hero-ctas,
.buy-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: var(--outline);
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font-weight: 900;
  cursor: pointer;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
}

.btn-primary,
.btn-buy {
  background: var(--grass);
  color: var(--ink);
}

.btn-buy {
  padding: 0.45rem 1rem;
}

.btn-ghost {
  background: #fff;
}

.btn-copy {
  background: var(--pink);
  color: #fff;
  width: fit-content;
}

.btn-small {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  background: var(--pink);
  color: #fff;
}

.section {
  padding: 4.5rem 1.1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 2.2rem;
}

.eyebrow {
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-hot);
  margin: 0 0 0.4rem;
}

.section-head h2,
.about h2,
.fees h2 {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0;
}

.section-sub {
  max-width: 36rem;
  margin: 0.7rem auto 0;
  font-weight: 700;
}

.about-grid,
.fee-split,
.steps {
  display: grid;
  gap: 1rem;
}

.about-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.fee-card,
.steps li {
  background: var(--card);
  border: var(--outline);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 1.3rem 1.2rem;
}

.card h3,
.fee-card h3,
.steps h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.card p,
.fee-card p,
.steps p {
  margin: 0;
  line-height: 1.5;
  font-weight: 700;
}

.fees {
  max-width: none;
  background: var(--ink);
  color: var(--cream);
  padding: 4.5rem 1.1rem;
}

.fees .section-head,
.fees .section-sub,
.live .section-head {
  color: inherit;
}

.fees > .section-head,
.fees .fee-layout,
.live > .section-head,
.live .live-shell {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.fee-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.1rem;
  align-items: stretch;
}

.fee-hero-card {
  background: var(--pink);
  color: #fff;
  border: var(--outline);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 1.6rem;
  display: grid;
  place-content: center;
  text-align: center;
}

.big-100 {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(4.5rem, 10vw, 8rem);
  line-height: 0.85;
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 6px 6px 0 var(--ink);
}

.fee-hero-card p {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0.6rem 0 0;
}

.fee-split {
  grid-template-columns: 1fr;
}

.fee-card {
  color: var(--ink);
}

.fee-icon {
  font-size: 1.5rem;
}

.live {
  max-width: none;
  background: #0f0d16;
  color: var(--cream);
  padding: 4.5rem 1.1rem 5rem;
}

.live-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pulse {
  width: 10px;
  height: 10px;
  background: #ff3b3b;
  border-radius: 50%;
  box-shadow: 0 0 0 0 #ff3b3b88;
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px transparent;
  }
}

.live-shell {
  border: var(--outline);
  box-shadow: 8px 8px 0 #000;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
}

.live-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 0.7rem;
  background: #1c1826;
}

.live-bar .panel-label {
  padding: 0;
  background: transparent;
}

.live-bar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.btn-dex {
  background: #1c1c28;
  color: #fff;
}

.live-chart {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
  background: #111;
}

.panel-label {
  margin: 0;
  padding: 0.45rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #1c1826;
}

.live-note {
  text-align: center;
  margin: 1rem 0 0;
  font-weight: 700;
  opacity: 0.9;
}

.live-note a,
.steps a {
  color: var(--pink-hot);
  font-weight: 900;
}

.footer-buy {
  margin: 1.1rem auto 0;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-num {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--pink);
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 0.7rem;
}

.buy-footer {
  justify-content: center;
  margin-top: 1.8rem;
}

.site-footer {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 3rem 1rem 2.4rem;
}

.footer-logo {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 18px;
  border: 3px solid #fff;
  margin: 0 auto 0.8rem;
  image-rendering: pixelated;
}

.footer-name {
  font-family: "Luckiest Guy", cursive;
  font-size: 2rem;
  color: var(--pink);
  margin: 0;
}

.footer-slogan {
  font-family: "Bangers", cursive;
  letter-spacing: 0.08em;
  font-size: 1.3rem;
  margin: 0.2rem 0 0.8rem;
}

.footer-ca {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
  opacity: 0.85;
}

.disclaimer {
  max-width: 28rem;
  margin: 1.2rem auto 0;
  font-size: 0.82rem;
  opacity: 0.62;
}

@media (max-width: 900px) {
  .hero-inner,
  .about-grid,
  .fee-layout,
  .steps {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1522;
    flex-direction: column;
    padding: 1rem 1.2rem 1.2rem;
    gap: 0.85rem;
  }

  .nav.open {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .ca-chip .ca-short {
    display: none;
  }

  .hero-inner {
    text-align: center;
    padding-top: 1.4rem;
  }

  .lede {
    margin-inline: auto;
  }

  .hero-ctas,
  .ca-box {
    justify-items: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .live-chart {
    height: 520px;
  }

  .live-bar {
    flex-wrap: wrap;
  }
}
