:root {
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --lime: #c8ff00;
  --lime-deep: #8fbf00;
  --hood: #00c805;
  --cyan: #3de8ff;
  --hat: #1e4a24;
  --forest: #071109;
  --forest-2: #0d1a10;
  --panel: #122016;
  --cream: #f3f6e8;
  --muted: rgba(243, 246, 232, 0.62);
  --stroke: rgba(200, 255, 0, 0.16);
}

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

html { scroll-behavior: smooth; }

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

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

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(200, 255, 0, 0.16), transparent 60%),
    radial-gradient(ellipse 40% 35% at 92% 18%, rgba(61, 232, 255, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(227, 28, 35, 0.06), transparent 55%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 42px,
      rgba(200, 255, 0, 0.025) 42px,
      rgba(200, 255, 0, 0.025) 43px
    );
}

.nav,
.hero,
.ticker,
.stats,
.section,
.mid-banner,
.cta,
.footer { position: relative; z-index: 1; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--lime);
  border: 2px solid var(--lime);
  box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.18);
}

.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  font-style: italic;
  color: var(--lime);
}

.brand-sym {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}

.nav-links a:hover {
  background: var(--lime);
  color: var(--forest);
}

.nav-actions { display: flex; gap: 0.5rem; align-items: center; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover { transform: translateY(-2px); }

.btn-lg { padding: 0.85rem 1.4rem; font-size: 1rem; }

.btn-lime {
  background: var(--lime);
  color: #081108;
  box-shadow: 0 3px 0 var(--lime-deep);
}

.btn-lime:hover { box-shadow: 0 6px 18px rgba(200, 255, 0, 0.35); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--lime);
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.35);
  color: var(--cream);
  border: 1px solid var(--stroke);
}

.icon-x { width: 14px; height: 14px; fill: currentColor; }

.hero {
  padding: 1.5rem 1.5rem 3rem;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.hero-mascot {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-mascot::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.55), transparent 70%);
  filter: blur(28px);
}

.hero-mascot::after {
  content: "";
  position: absolute;
  width: 36%;
  height: 36%;
  top: 28%;
  left: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 232, 255, 0.45), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-logo {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--lime);
  box-shadow: 0 20px 0 rgba(0, 0, 0, 0.35), 0 0 60px rgba(200, 255, 0, 0.28);
  background: var(--lime);
  animation: bob 4s ease-in-out infinite;
  z-index: 1;
}

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

.hero-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(200, 255, 0, 0.12);
  border: 1px solid var(--stroke);
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-shadow: 4px 4px 0 #000;
  margin-bottom: 0.85rem;
}

.hero-copy h1 span { color: var(--lime); }

.hero-tag {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.hero-sub {
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 1.4rem;
}

.ca-box {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  margin-bottom: 1.2rem;
  max-width: 36rem;
}

.ca-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.ca-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.ca-row code {
  font-size: 0.95rem;
  word-break: break-all;
  color: var(--lime);
}

.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--lime);
  color: #081108;
  border: none;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--stroke);
  background: rgba(200, 255, 0, 0.05);
  padding: 0.85rem 0;
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--lime);
}

.ticker-track span { padding: 0 0.9rem; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.stats {
  max-width: 1240px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 1.2rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--lime);
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.section { padding: 4.5rem 1.5rem; }

.section-alt { background: rgba(0, 0, 0, 0.22); }

.container { max-width: 1100px; margin: 0 auto; }

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

.section-tag {
  display: inline-block;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 0.7rem;
}

.section-head p {
  color: var(--muted);
  max-width: 38rem;
  margin: 0 auto;
}

.about-grid,
.token-grid,
.steps {
  display: grid;
  gap: 1rem;
}

.about-grid { grid-template-columns: repeat(3, 1fr); }

.about-card,
.token-card,
.step {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 1.4rem;
}

.about-icon { font-size: 1.6rem; display: block; margin-bottom: 0.7rem; }

.about-card h3,
.token-card h3,
.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.about-card p,
.token-card p,
.step p { color: var(--muted); }

.quote {
  margin-top: 2rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.25;
}

.quote cite {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--lime);
}

.mid-banner {
  padding: 0.5rem 1.5rem 4.5rem;
}

.mid-banner-frame {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  border: 3px solid var(--lime);
  box-shadow:
    0 0 0 6px rgba(200, 255, 0, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(61, 232, 255, 0.12);
  background: #000;
}

.mid-banner-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.token-grid { grid-template-columns: repeat(4, 1fr); }

.token-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--lime);
  margin-bottom: 0.35rem;
}

.chart-section { background: #050805; }

.chart-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: #0d0d0d;
}

#dexscreener-embed {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
}

@media (min-width: 768px) {
  #dexscreener-embed { padding-bottom: 72%; }
}

@media (min-width: 1100px) {
  #dexscreener-embed { padding-bottom: 65%; }
}

#dexscreener-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.chart-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.steps { grid-template-columns: repeat(3, 1fr); list-style: none; }

.step-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--lime);
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.step code,
.buy-actions + p code,
.step p code {
  color: var(--lime);
  font-size: 0.85rem;
}

.buy-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.cta {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
}

.cta-logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--lime);
  background: var(--lime);
}

.cta h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.5rem;
}

.cta p { color: var(--muted); margin-bottom: 1.3rem; }

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

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2.2rem;
  display: grid;
  gap: 0.85rem;
  text-align: center;
  border-top: 1px solid var(--stroke);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--lime);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--lime);
  font-weight: 600;
}

.disclaimer,
.copy {
  color: var(--muted);
  font-size: 0.82rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(20px);
  background: var(--lime);
  color: #081108;
  font-weight: 700;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
  transition: opacity 0.2s, transform 0.2s;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 900px) {
  .nav { flex-wrap: wrap; }

  .brand { order: 1; }
  .nav-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .nav-links,
  .nav-actions { display: none; }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 3;
    align-items: stretch;
  }

  .nav.open .nav-links a,
  .nav.open .nav-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-inner,
  .about-grid,
  .token-grid,
  .steps,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-logo { width: min(280px, 78vw); }

  .hero-copy h1 { text-align: center; }

  .hero-copy,
  .hero-tag,
  .hero-sub { text-align: center; }

  .hero-actions,
  .ca-box { margin-inline: auto; }

  .hero-badge { margin-inline: auto; display: table; }

  #dexscreener-embed { padding-bottom: 125%; }
}
