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

:root {
  --lime: #c8ff00;
  --lime-hot: #d9ff3d;
  --lime-deep: #9ad400;
  --lime-dim: rgba(200, 255, 0, 0.14);
  --gold: #e8c547;
  --gold-bright: #ffe566;
  --gold-deep: #b8860b;
  --red: #e31c23;
  --teal: #2a9d8f;
  --black: #070807;
  --ink: #0f120f;
  --ink-soft: #1a2218;
  --muted: #5c6a58;
  --paper: #f2f7eb;
  --white: #ffffff;
  --font-display: "Syne", sans-serif;
  --font-cjk: "Noto Sans SC", "Syne", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.fx-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  overflow: hidden;
}

.fx-coin {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  box-shadow:
    inset 0 -3px 6px rgba(0, 0, 0, 0.25),
    0 0 12px rgba(232, 197, 71, 0.45);
  opacity: 0;
  animation: coin-fall linear forwards;
}

.fx-coin::after {
  content: "";
  position: absolute;
  inset: 22%;
  background: var(--black);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.35;
}

.fx-sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--lime);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: sparkle-twinkle ease-in-out infinite;
  opacity: 0;
}

@keyframes coin-fall {
  0% {
    opacity: 0;
    transform: translateY(-40px) rotate(0deg) scale(0.6);
  }
  8% { opacity: 0.9; }
  92% { opacity: 0.75; }
  100% {
    opacity: 0;
    transform: translateY(110vh) rotate(720deg) scale(1);
  }
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

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

.gold-text {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold), var(--gold-deep), var(--gold-bright));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-shimmer 5s linear infinite;
}

.ink-text {
  color: var(--ink);
}

@keyframes gold-shimmer {
  to { background-position: 200% center; }
}

.center {
  text-align: center;
}

/* ── Feather motif ── */
.feather {
  display: inline-block;
  width: 14px;
  height: 22px;
  background: currentColor;
  clip-path: path("M7 0 C10 6 14 10 12 18 C11 21 8 22 7 22 C6 22 3 21 2 18 C0 10 4 6 7 0 Z");
  opacity: 0.85;
  vertical-align: middle;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(7, 8, 7, 0.55);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200, 255, 0, 0.12);
  transition: background 0.3s, border-color 0.3s;
}

.site-header.scrolled {
  background: rgba(7, 8, 7, 0.88);
  border-bottom-color: rgba(200, 255, 0, 0.28);
}

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

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

.nav-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lime);
  box-shadow: 0 0 16px rgba(200, 255, 0, 0.35);
  animation: mark-pulse 3.5s ease-in-out infinite;
}

@keyframes mark-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(200, 255, 0, 0.3); }
  50% { box-shadow: 0 0 22px rgba(200, 255, 0, 0.55), 0 0 4px var(--gold); }
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.nav-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--lime);
}

.nav-ticker {
  font-family: var(--font-cjk);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.12em;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s;
}

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

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

.nav-social {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white) !important;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.nav-social:hover {
  border-color: var(--lime);
  color: var(--lime) !important;
  transform: translateY(-2px);
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  padding: 0.55rem 1.15rem !important;
  background: var(--lime);
  color: var(--black) !important;
  border-radius: 999px;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--lime-hot) !important;
  color: var(--black) !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}

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

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 4.5rem;
  overflow: hidden;
  background: var(--black);
}

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

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

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(7, 8, 7, 0.88) 0%,
      rgba(7, 8, 7, 0.58) 36%,
      rgba(7, 8, 7, 0.12) 62%,
      rgba(7, 8, 7, 0.4) 100%
    ),
    linear-gradient(to top, rgba(7, 8, 7, 0.82) 0%, transparent 45%),
    radial-gradient(ellipse at 75% 40%, rgba(200, 255, 0, 0.18), transparent 50%);
}

.hero-waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  pointer-events: none;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 100%;
}

.wave-a {
  animation: wave-drift 14s ease-in-out infinite alternate;
}

.wave-b {
  animation: wave-drift 18s ease-in-out infinite alternate-reverse;
  opacity: 0.7;
}

@keyframes wave-drift {
  from { transform: translateX(0) scaleY(1); }
  to { transform: translateX(-3%) scaleY(1.08); }
}

.hero-coins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-float-coin {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #fff6b0, var(--gold) 40%, var(--gold-deep));
  box-shadow:
    inset 0 -4px 8px rgba(0, 0, 0, 0.28),
    0 8px 24px rgba(232, 197, 71, 0.35);
  animation: float-coin var(--dur, 9s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.hero-float-coin::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.hero-float-coin::after {
  content: "";
  position: absolute;
  inset: 28%;
  background: rgba(7, 8, 7, 0.55);
  clip-path: path("M10 2 C12 6 14 8 13 14 C12.5 16 11 17 10 17 C9 17 7.5 16 7 14 C6 8 8 6 10 2 Z");
}

@keyframes float-coin {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-28px) rotate(12deg); }
}

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

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11vw, 6.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.92;
  color: var(--lime);
  margin-bottom: 0.2rem;
  text-shadow: 0 0 40px rgba(200, 255, 0, 0.35);
}

.hero-title {
  font-family: var(--font-cjk);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-lede {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 28rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

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

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

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s, box-shadow 0.2s;
}

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

.btn-primary {
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 0 0 0 rgba(200, 255, 0, 0.4);
}

.btn-primary:hover {
  background: var(--lime-hot);
  box-shadow: 0 12px 32px rgba(200, 255, 0, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.buy .btn-ghost {
  color: var(--ink);
  border-color: rgba(10, 10, 10, 0.25);
}

.buy .btn-ghost:hover {
  border-color: var(--black);
  color: var(--black);
  background: rgba(10, 10, 10, 0.04);
}

.btn-lg {
  padding: 1.05rem 2.1rem;
  font-size: 1rem;
}

.btn-copy {
  flex-shrink: 0;
  padding: 0.7rem 1.2rem;
  font-size: 0.88rem;
}

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

/* ── Ticker ── */
.ticker {
  background: linear-gradient(90deg, var(--lime-deep), var(--lime), var(--lime-hot), var(--lime));
  background-size: 200% 100%;
  animation: ticker-bg 12s linear infinite;
  color: var(--black);
  padding: 0.95rem 0;
  overflow: hidden;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

@keyframes ticker-bg {
  to { background-position: 200% 0; }
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  width: max-content;
  animation: ticker 36s linear infinite;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tick-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.tick-cjk {
  font-family: var(--font-cjk);
  letter-spacing: 0.2em;
}

.ticker-sep {
  opacity: 0.35;
  color: var(--red);
}

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

/* ── Sections ── */
.section {
  padding: 6rem 0;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-bottom: 1.35rem;
  color: var(--ink);
}

.section-text {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 1rem;
  max-width: 36rem;
}

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

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

/* ── About ── */
.about {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(200, 255, 0, 0.12), transparent 45%),
    radial-gradient(ellipse at 90% 80%, rgba(232, 197, 71, 0.1), transparent 40%),
    var(--black);
  color: var(--white);
  overflow: hidden;
}

.about-aura {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.2), transparent 70%);
  top: 10%;
  left: 5%;
  filter: blur(40px);
  animation: aura-breathe 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes aura-breathe {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

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

.about .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.about .section-text {
  color: rgba(255, 255, 255, 0.7);
}

.about .section-text strong {
  color: var(--lime);
  font-family: var(--font-cjk);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.about-portrait {
  position: relative;
  isolation: isolate;
}

.paw-glow {
  position: absolute;
  width: 42%;
  height: 42%;
  top: 8%;
  left: 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.55), transparent 70%);
  filter: blur(18px);
  animation: paw-beckon 2.8s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes paw-beckon {
  0%, 100% { transform: translate(0, 0) scale(0.9); opacity: 0.5; }
  40% { transform: translate(-6%, -10%) scale(1.15); opacity: 1; }
  70% { transform: translate(2%, -4%) scale(1); opacity: 0.7; }
}

.cat-portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 4px;
  filter: saturate(1.08) contrast(1.04);
  animation: cat-bob 5s ease-in-out infinite;
  box-shadow:
    0 0 0 3px var(--lime),
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(200, 255, 0, 0.2);
}

@keyframes cat-bob {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-10px) rotate(0.8deg); }
}

.coin-orbit {
  position: absolute;
  inset: -8%;
  z-index: 2;
  pointer-events: none;
  animation: orbit-spin 18s linear infinite;
}

.orbit-coin {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 4px 14px rgba(232, 197, 71, 0.5);
}

.orbit-coin::after {
  content: "";
  position: absolute;
  inset: 26%;
  background: rgba(7, 8, 7, 0.45);
  clip-path: path("M8 1 C10 5 11 7 10.5 12 C10 14 9 14.5 8 14.5 C7 14.5 6 14 5.5 12 C5 7 6 5 8 1 Z");
}

.orbit-coin.c1 { top: 8%; left: 48%; }
.orbit-coin.c2 { bottom: 18%; right: 4%; }
.orbit-coin.c3 { bottom: 8%; left: 6%; width: 24px; height: 24px; }

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

.fortune-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin-top: 2rem;
}

.fortune-row li {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.55rem 1.15rem;
  background: var(--lime);
  color: var(--black);
}

/* ── Fortune band ── */
.fortune-band {
  background: var(--ink-soft);
  color: var(--lime);
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(200, 255, 0, 0.2);
  border-bottom: 1px solid rgba(200, 255, 0, 0.2);
}

.fortune-band-track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  white-space: nowrap;
  animation: ticker 40s linear infinite reverse;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ── Contract ── */
.contract {
  background:
    linear-gradient(180deg, rgba(200, 255, 0, 0.08), transparent 40%),
    var(--paper);
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: 6px 6px 0 var(--lime);
}

.ca-address {
  flex: 1;
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 2.4vw, 0.85rem);
  color: var(--ink);
  word-break: break-all;
  line-height: 1.5;
}

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

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

/* ── Chart ── */
.chart-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200, 255, 0, 0.1), transparent 50%),
    var(--ink-soft);
  color: var(--white);
}

.chart-section .section-title {
  color: var(--white);
}

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

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

.chart-frame {
  border: 2px solid var(--lime);
  background: #121212;
  min-height: 500px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(200, 255, 0, 0.12);
}

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

.dexscreener-embed.hidden {
  display: none;
}

.chart-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.chart-placeholder code {
  color: var(--lime);
  background: rgba(200, 255, 0, 0.1);
  padding: 0.15rem 0.45rem;
}

.chart-placeholder.hidden {
  display: none;
}

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

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

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── Buy ── */
.buy {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, 0.35), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(232, 197, 71, 0.35), transparent 45%),
    linear-gradient(135deg, var(--lime-deep), var(--lime) 40%, var(--lime-hot));
  overflow: hidden;
}

.buy-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(255, 255, 255, 0.7) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 18%, rgba(255, 229, 102, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 55% 70%, rgba(255, 255, 255, 0.55) 0 1.5px, transparent 3px),
    radial-gradient(circle at 30% 85%, rgba(227, 28, 35, 0.5) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 60%, rgba(255, 255, 255, 0.65) 0 2px, transparent 3px);
  animation: sparkle-shift 6s ease-in-out infinite alternate;
}

@keyframes sparkle-shift {
  from { opacity: 0.55; transform: translateY(0); }
  to { opacity: 1; transform: translateY(-8px); }
}

.buy .eyebrow {
  color: rgba(10, 10, 10, 0.55);
}

.buy-lede {
  color: rgba(10, 10, 10, 0.65);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0 3rem;
}

.step {
  background: var(--black);
  color: var(--white);
  padding: 1.85rem 1.4rem;
  transition: transform 0.25s var(--ease-out);
  border-top: 3px solid var(--gold);
}

.step:hover {
  transform: translateY(-6px);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

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

/* ── Footer ── */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.55);
  padding: 3.25rem 0 2.25rem;
  border-top: 2px solid var(--lime);
}

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

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

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

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lime);
  line-height: 1.1;
}

.footer-brand span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-cjk);
}

.footer-disclaimer {
  font-size: 0.75rem;
  max-width: 540px;
  line-height: 1.65;
}

/* ── 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: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

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

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(7, 8, 7, 0.97);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.15rem;
    border-bottom: 1px solid rgba(200, 255, 0, 0.2);
    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 {
    align-items: flex-end;
    padding-bottom: 3.5rem;
  }

  .hero-veil {
    background:
      linear-gradient(
        to top,
        rgba(7, 8, 7, 0.94) 0%,
        rgba(7, 8, 7, 0.58) 45%,
        rgba(7, 8, 7, 0.28) 100%
      ),
      radial-gradient(ellipse at 70% 35%, rgba(200, 255, 0, 0.15), transparent 50%);
  }

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

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

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

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

  .dexscreener-embed {
    height: 460px;
  }
}

@media (max-width: 480px) {
  .hero-brand {
    font-size: 2.85rem;
  }

  .nav-name {
    font-size: 0.92rem;
  }

  .hero-actions {
    width: 100%;
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero-banner,
  .ticker-track,
  .fortune-band-track,
  .cat-portrait,
  .paw-glow,
  .coin-orbit,
  .nav-mark,
  .wave-a,
  .wave-b,
  .hero-float-coin,
  .fx-coin,
  .fx-sparkle,
  .gold-text,
  .ticker,
  .buy-sparkles,
  .about-aura {
    animation: none !important;
  }

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

  .fx-layer {
    display: none;
  }
}
