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

:root {
  --lime: #d4ff00;
  --lime-hot: #e8ff5c;
  --lime-deep: #a8d400;
  --forest: #0b2214;
  --forest-mid: #124028;
  --forest-soft: #1c5434;
  --moss: #2f6b45;
  --gold: #f0c14a;
  --gold-soft: #ffe08a;
  --yellow: #ffe566;
  --andy-yellow: #ffd84d;
  --furie-ink: #1a1208;
  --ink: #0a1a10;
  --ink-soft: #12261a;
  --muted: #8aa894;
  --paper: #eef6e8;
  --white: #ffffff;
  --font-display: "Bangers", system-ui, sans-serif;
  --font-body: "Fredoka", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
  --border: 2px solid rgba(212, 255, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--forest);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Ambient décor ── */
.forest-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 45% at 15% 18%, rgba(255, 216, 77, 0.12), transparent 55%),
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(212, 255, 0, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 70%, rgba(240, 193, 74, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(47, 107, 69, 0.35), transparent 60%),
    linear-gradient(180deg, #081810 0%, #0c2818 40%, #0a1f14 100%);
}

.leaf-field,
.sparkle-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.leaf {
  position: absolute;
  top: -40px;
  width: 14px;
  height: 14px;
  background: var(--lime);
  border-radius: 0 70% 40% 70%;
  opacity: 0.35;
  animation: leaf-fall linear infinite;
  filter: drop-shadow(0 0 4px rgba(212, 255, 0, 0.4));
}

.leaf:nth-child(odd) {
  background: var(--gold);
  border-radius: 70% 0 70% 40%;
  opacity: 0.28;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-soft);
  border-radius: 50%;
  opacity: 0;
  animation: sparkle-twinkle ease-in-out infinite;
  box-shadow: 0 0 8px var(--gold), 0 0 16px rgba(212, 255, 0, 0.5);
}

/* ── Andy cursor follower ── */
.andy-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 42px;
  height: 42px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.35s ease;
  will-change: transform;
}

.andy-cursor.is-active {
  opacity: 1;
}

.andy-cursor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

@media (max-width: 768px) {
  .andy-cursor {
    display: none;
  }
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.container.narrow {
  width: min(720px, 92vw);
}

.accent {
  color: var(--lime);
  text-shadow: 0 0 24px rgba(212, 255, 0, 0.35);
}

.center {
  text-align: center;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(12, 40, 24, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(212, 255, 0, 0.22);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.site-header.scrolled {
  background: rgba(8, 28, 16, 0.92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(212, 255, 0, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1100px, 92vw);
  margin: 0 auto;
  height: 100%;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--lime);
  flex-wrap: wrap;
}

.nav-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--andy-yellow);
  box-shadow: 0 0 16px rgba(255, 216, 77, 0.4);
  animation: pulse-ring 3.5s var(--ease-out) infinite;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: 0 0 20px rgba(212, 255, 0, 0.4);
}

.nav-byline {
  display: none;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--andy-yellow);
  margin-left: 0.15rem;
  opacity: 0.9;
}

@media (min-width: 520px) {
  .nav-byline {
    display: inline;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s, text-shadow 0.2s;
}

.nav-links a:hover {
  color: var(--lime);
  text-shadow: 0 0 12px rgba(212, 255, 0, 0.5);
}

.nav-socials {
  display: flex;
  gap: 0.4rem;
}

.nav-social {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(212, 255, 0, 0.45);
  border-radius: 50%;
  background: rgba(212, 255, 0, 0.08);
  color: var(--lime) !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav-social:hover {
  background: var(--lime) !important;
  color: var(--ink) !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 20px rgba(212, 255, 0, 0.45);
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  padding: 0.55rem 1.15rem !important;
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-deep) 100%);
  color: var(--ink) !important;
  font-weight: 700 !important;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(212, 255, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(212, 255, 0, 0.55);
  color: var(--ink) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1.5px solid var(--lime);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}

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

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 1.5rem) 0 4rem;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% 35%;
  animation: hero-drift 28s var(--ease-out) infinite alternate;
  will-change: transform;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(8, 24, 16, 0.95) 0%,
      rgba(8, 24, 16, 0.55) 32%,
      rgba(8, 24, 16, 0.15) 58%,
      rgba(12, 40, 24, 0.2) 100%
    ),
    linear-gradient(
      to left,
      rgba(8, 24, 16, 0.72) 0%,
      rgba(8, 24, 16, 0.35) 38%,
      transparent 68%
    ),
    radial-gradient(ellipse 50% 40% at 75% 40%, rgba(240, 193, 74, 0.1), transparent 70%);
}

.hero-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.06) 48%,
    transparent 62%
  );
  animation: shine-sweep 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-ornament {
  position: absolute;
  bottom: 18%;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(212, 255, 0, 0.2);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: ornament-spin 24s linear infinite;
}

.hero-ornament::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(240, 193, 74, 0.35);
  border-radius: 50%;
}

.hero-ornament-l {
  left: 3vw;
  opacity: 0.5;
}

.hero-ornament-r {
  right: 3vw;
  animation-direction: reverse;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1100px, 92vw);
  max-width: 640px;
  margin: 0;
  margin-right: max(4vw, calc((100vw - 1100px) / 2));
  margin-left: auto;
  margin-top: -8vh;
  text-align: right;
  animation: rise-in 1s var(--ease-out) both;
}

.hero-credit {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--andy-yellow);
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.85rem;
  border: 1.5px solid rgba(255, 216, 77, 0.55);
  border-radius: 999px;
  background: rgba(10, 26, 16, 0.45);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(255, 216, 77, 0.15);
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 15vw, 8rem);
  letter-spacing: 0.06em;
  line-height: 0.88;
  color: var(--lime);
  margin-bottom: 0.35rem;
  text-shadow:
    0 0 40px rgba(212, 255, 0, 0.55),
    0 4px 0 rgba(10, 26, 16, 0.8),
    4px 7px 0 rgba(10, 26, 16, 0.45);
  animation: brand-glow 4s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--andy-yellow);
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hero-lede {
  font-size: clamp(1rem, 2.1vw, 1.18rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
  margin-left: auto;
  margin-bottom: 1.85rem;
  font-weight: 500;
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

@keyframes hero-drift {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.4%, -1%); }
}

@keyframes shine-sweep {
  0%, 100% { opacity: 0.3; transform: translateX(-8%); }
  50% { opacity: 0.7; transform: translateX(8%); }
}

@keyframes ornament-spin {
  to { transform: rotate(360deg); }
}

@keyframes brand-glow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.12); }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes leaf-fall {
  0% {
    transform: translateY(0) rotate(0deg) translateX(0);
    opacity: 0;
  }
  8% { opacity: 0.4; }
  100% {
    transform: translateY(110vh) rotate(420deg) translateX(40px);
    opacity: 0;
  }
}

@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.4); }
  50% { opacity: 0.9; transform: scale(1.2); }
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 12px rgba(212, 255, 0, 0.3); }
  50% { box-shadow: 0 0 24px rgba(212, 255, 0, 0.55), 0 0 40px rgba(240, 193, 74, 0.2); }
}

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

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

/* ── Buttons ── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.65rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.25s;
}

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

.btn-glow {
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.35), transparent 40%);
  animation: ornament-spin 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover .btn-glow {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--andy-yellow) 0%, var(--lime) 55%, var(--lime-deep) 100%);
  color: var(--ink);
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(255, 216, 77, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(212, 255, 0, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
  box-shadow: 0 0 24px rgba(212, 255, 0, 0.2);
}

.btn-ink {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.btn-ink:hover {
  color: var(--gold-soft);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline-ink:hover {
  background: var(--ink);
  color: var(--lime);
}

.btn-lg {
  padding: 1.05rem 2rem;
  font-size: 0.98rem;
}

.btn-copy {
  flex-shrink: 0;
  padding: 0.7rem 1.2rem;
  font-size: 0.85rem;
  z-index: 1;
}

.btn-copy.copied {
  background: var(--forest);
  color: var(--lime);
  border-color: var(--lime);
}

/* ── Ticker ── */
.ticker {
  background: linear-gradient(90deg, var(--ink) 0%, #143d24 50%, var(--ink) 100%);
  color: var(--lime);
  padding: 0.85rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(212, 255, 0, 0.35);
  border-bottom: 1px solid rgba(240, 193, 74, 0.35);
  position: relative;
  z-index: 1;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  white-space: nowrap;
  width: max-content;
  animation: ticker 40s linear infinite;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ticker-sep {
  color: var(--gold);
  opacity: 0.7;
}

/* ── Sections ── */
.section {
  padding: 5.75rem 0;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.95rem;
}

.eyebrow.center {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4.25rem);
  letter-spacing: 0.05em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.section-text {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 1.15rem;
  max-width: 34rem;
}

.section-text strong {
  color: var(--lime);
  font-weight: 700;
}

.section-sub {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.bio-quote {
  margin-top: 1.5rem;
  padding: 1.15rem 1.35rem;
  border-left: 3px solid var(--lime);
  background: linear-gradient(90deg, rgba(212, 255, 0, 0.1), transparent);
  color: var(--gold-soft);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  border-radius: 0 12px 12px 0;
  box-shadow: inset 0 0 40px rgba(212, 255, 0, 0.04);
}

/* ── About ── */
.about {
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(212, 255, 0, 0.08), transparent 55%),
    linear-gradient(180deg, #081810 0%, #0f2a1a 100%);
}

.about .section-title .accent {
  color: var(--lime);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.75rem;
  align-items: center;
}

.about-portrait {
  position: relative;
  display: flex;
  justify-content: center;
}

.portrait-ring {
  position: absolute;
  width: 108%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--forest), var(--forest)) padding-box,
    conic-gradient(from 0deg, var(--lime), var(--gold), var(--lime-deep), var(--lime)) border-box;
  animation: ornament-spin 14s linear infinite;
  z-index: 0;
  top: -4%;
  left: -4%;
  filter: drop-shadow(0 0 20px rgba(212, 255, 0, 0.25));
}

.portrait-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--lime);
  box-shadow:
    0 0 0 8px rgba(12, 40, 24, 0.8),
    0 0 48px rgba(212, 255, 0, 0.35),
    0 20px 60px rgba(0, 0, 0, 0.45);
}

.portrait-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}

.portrait-badge {
  position: absolute;
  bottom: 8%;
  right: 4%;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.95rem;
  background: linear-gradient(135deg, var(--andy-yellow), var(--lime));
  color: var(--ink);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  animation: pulse-ring 3s ease-in-out infinite;
}

/* ── Feather band ── */
.feather-band {
  background: linear-gradient(90deg, var(--andy-yellow), var(--lime), var(--gold), var(--lime), var(--andy-yellow));
  background-size: 200% 100%;
  animation: band-gradient 8s ease infinite;
  overflow: hidden;
  padding: 0.95rem 0;
  position: relative;
  z-index: 1;
  border-top: 2px solid rgba(10, 26, 16, 0.2);
  border-bottom: 2px solid rgba(10, 26, 16, 0.2);
}

.feather-band-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  width: max-content;
  animation: band-scroll 32s linear infinite;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: 0.12em;
}

@keyframes band-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── Tokenomics ── */
.tokenomics {
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 255, 0, 0.1), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(240, 193, 74, 0.1), transparent 30%),
    var(--forest-mid);
  overflow: hidden;
}

.tokenomics-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin-top: 2.5rem;
}

.token-wheel {
  position: relative;
  width: min(360px, 72vw);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.token-wheel::before,
.token-wheel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 255, 0, 0.18);
}

.token-wheel::before {
  inset: 4%;
}

.token-wheel::after {
  inset: 15%;
  border-style: dashed;
  border-color: rgba(240, 193, 74, 0.32);
  animation: ornament-spin 24s linear infinite reverse;
}

.token-wheel-orbit {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-top-color: var(--lime);
  border-right-color: rgba(240, 193, 74, 0.7);
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(212, 255, 0, 0.35));
  animation: ornament-spin 18s linear infinite;
}

.token-wheel-core {
  position: relative;
  z-index: 2;
  width: 56%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--lime);
  background: var(--forest);
  box-shadow: 0 0 55px rgba(212, 255, 0, 0.3);
}

.token-wheel-core img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.token-wheel-core strong {
  position: absolute;
  bottom: 10%;
  z-index: 1;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(8, 24, 16, 0.88);
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.orbit-dot {
  position: absolute;
  z-index: 3;
  width: 15px;
  height: 15px;
  border: 3px solid var(--forest-mid);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}

.orbit-dot-one { top: 7%; left: 49%; }
.orbit-dot-two { right: 10%; bottom: 23%; background: var(--lime); }
.orbit-dot-three { left: 8%; bottom: 28%; }

.token-stats {
  display: grid;
  gap: 1rem;
}

.token-card {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 1.3rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(110deg, rgba(8, 24, 16, 0.72), rgba(30, 82, 51, 0.42));
  border: 1px solid rgba(212, 255, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.25s, box-shadow 0.3s;
}

.token-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 45%, rgba(212, 255, 0, 0.08), transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out);
}

.token-card:hover {
  transform: translateX(8px);
  border-color: rgba(212, 255, 0, 0.5);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.token-card:hover::after {
  transform: translateX(100%);
}

.token-card-num {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  line-height: 1;
  color: var(--lime);
  text-shadow: 0 0 22px rgba(212, 255, 0, 0.35);
}

.token-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--gold-soft);
}

.token-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── Contract ── */
.contract {
  background:
    radial-gradient(ellipse 40% 50% at 50% 50%, rgba(212, 255, 0, 0.06), transparent 70%),
    #0a1f14;
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 255, 0, 0.3);
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(212, 255, 0, 0.06);
  backdrop-filter: blur(8px);
}

.ca-address {
  flex: 1;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: clamp(0.62rem, 2.2vw, 0.85rem);
  color: var(--lime);
  word-break: break-all;
  line-height: 1.5;
}

.copy-toast {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  min-height: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.copy-toast.show {
  opacity: 1;
}

/* ── Chart ── */
.chart-section {
  background: var(--ink-soft);
}

.chart-section .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

.chart-frame {
  border: 1px solid rgba(212, 255, 0, 0.35);
  border-radius: 16px;
  background: #0a120e;
  min-height: 480px;
  overflow: hidden;
  box-shadow: 0 0 48px rgba(212, 255, 0, 0.08);
}

.dexscreener-embed {
  width: 100%;
  height: 540px;
  border: none;
  display: block;
}

.chart-link-wrap {
  text-align: center;
  margin-top: 1.15rem;
}

.text-link {
  color: var(--lime);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
}

.text-link:hover {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(240, 193, 74, 0.4);
}

/* ── Memes gallery ── */
.memes {
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(47, 107, 69, 0.35), transparent 55%),
    linear-gradient(180deg, #0c2818 0%, #0a1a10 100%);
}

.meme-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.meme-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1.5px solid rgba(212, 255, 0, 0.25);
  border-radius: 16px;
  background: var(--forest-soft);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: transform 0.3s var(--ease-out), border-color 0.25s, box-shadow 0.3s;
}

.meme-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 24, 16, 0.15) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.meme-item:hover,
.meme-item:focus-visible {
  transform: translateY(-6px) scale(1.02);
  outline: none;
  border-color: var(--lime);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 0 28px rgba(212, 255, 0, 0.25);
}

.meme-item:hover::after {
  opacity: 1;
}

.meme-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--forest);
  transition: transform 0.5s var(--ease-out);
}

.meme-item:hover img {
  transform: scale(1.06);
}

.meme-caption {
  display: block;
  padding: 0.7rem 0.85rem;
  background: linear-gradient(90deg, rgba(8, 24, 16, 0.95), rgba(20, 61, 36, 0.95));
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 2rem;
  background: rgba(6, 18, 12, 0.94);
  backdrop-filter: blur(12px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-img {
  max-width: min(920px, 92vw);
  max-height: min(78vh, 920px);
  width: auto;
  height: auto;
  object-fit: contain;
  border: 2px solid var(--lime);
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(212, 255, 0, 0.25);
  background: var(--forest);
}

.lightbox-caption {
  font-size: 0.9rem;
  color: var(--gold-soft);
  text-align: center;
  max-width: 36rem;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--lime);
  border-radius: 50%;
  background: rgba(212, 255, 0, 0.08);
  color: var(--lime);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.lightbox-close:hover {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 24px rgba(212, 255, 0, 0.45);
}

body.lightbox-open {
  overflow: hidden;
}

/* ── Buy ── */
.buy {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--andy-yellow) 0%, var(--lime) 40%, var(--lime-deep) 70%, var(--gold) 100%);
  color: var(--ink);
}

.buy-rays {
  position: absolute;
  inset: -20%;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(255, 255, 255, 0.08) 0deg 8deg,
    transparent 8deg 16deg
  );
  animation: ornament-spin 60s linear infinite;
  pointer-events: none;
  opacity: 0.5;
}

.buy .section-title {
  color: var(--ink);
  position: relative;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin: 2.25rem 0 2.75rem;
  position: relative;
}

.step {
  border: 2px solid rgba(10, 26, 16, 0.2);
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  padding: 1.7rem 1.35rem;
  border-radius: 20px;
  transition: transform 0.3s var(--ease-out), background 0.25s, box-shadow 0.3s;
}

.step:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 16px 40px rgba(10, 26, 16, 0.15);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.65rem;
  opacity: 0.3;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.step p {
  font-size: 0.9rem;
  color: rgba(10, 26, 16, 0.7);
  line-height: 1.55;
  font-weight: 500;
}

.buy-cta {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── Footer ── */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.5);
  padding: 3.5rem 0 2.25rem;
  border-top: 2px solid var(--lime);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.footer-crest {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 255, 0, 0.15), transparent 70%);
  pointer-events: none;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

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

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--lime);
  box-shadow: 0 0 24px rgba(212, 255, 0, 0.3);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--lime);
  line-height: 1;
  text-shadow: 0 0 16px rgba(212, 255, 0, 0.35);
}

.footer-brand span {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}

.footer-bio {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 420px;
  font-weight: 500;
}

.footer-disclaimer {
  font-size: 0.72rem;
  max-width: 520px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ── Mobile ── */
@media (max-width: 1000px) {
  .meme-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tokenomics-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .token-wheel {
    width: min(320px, 72vw);
  }
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-portrait {
    max-width: 280px;
    margin: 0 auto;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .hero-ornament {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(8, 28, 16, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(212, 255, 0, 0.3);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero {
    padding-bottom: 3rem;
  }

  .hero-veil {
    background:
      linear-gradient(
        to top,
        rgba(8, 24, 16, 0.96) 0%,
        rgba(8, 24, 16, 0.55) 40%,
        rgba(8, 24, 16, 0.2) 100%
      );
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-banner {
    object-position: 35% center;
  }

  .ca-box {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-copy {
    justify-content: center;
  }

  .dexscreener-embed {
    height: 440px;
  }

  .meme-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .meme-caption {
    padding: 0.5rem 0.6rem;
    font-size: 0.62rem;
  }
}

@media (max-width: 480px) {
  .token-card {
    grid-template-columns: 82px 1fr;
    gap: 0.85rem;
    padding: 1.1rem;
  }

  .hero-brand {
    font-size: 3.25rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner,
  .ticker-track,
  .feather-band-track,
  .feather-band,
  .leaf,
  .sparkle,
  .portrait-ring,
  .token-wheel-orbit,
  .token-wheel::after,
  .hero-shine,
  .hero-ornament,
  .buy-rays,
  .nav-mark,
  .portrait-badge {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
