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

:root {
  --lime: #c8ff00;
  --lime-hot: #dfff4a;
  --lime-deep: #9fd400;
  --lime-glow: rgba(200, 255, 0, 0.45);
  --lime-dim: rgba(200, 255, 0, 0.14);
  --black: #050505;
  --ink: #0d0d0d;
  --ink-soft: #1a1a1a;
  --muted: #7a7a7a;
  --paper: #0f100e;
  --white: #ffffff;
  --font-display: "Bebas Neue", sans-serif;
  --font-brush: "Bangers", cursive;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.045;
  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");
}

.paw-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  overflow: hidden;
}

.trail-paw {
  position: absolute;
  width: 22px;
  height: 22px;
  opacity: 0;
  animation: paw-fade 1.1s var(--ease-out) forwards;
  filter: drop-shadow(0 0 6px var(--lime-glow));
}

@keyframes paw-fade {
  0% { opacity: 0.7; transform: scale(0.6) rotate(var(--rot, 0deg)); }
  40% { opacity: 0.55; }
  100% { opacity: 0; transform: scale(1.15) rotate(var(--rot, 0deg)) translateY(-8px); }
}

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

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

.lime {
  color: var(--lime);
}

.brush {
  font-family: var(--font-brush);
  color: var(--lime);
  letter-spacing: 0.04em;
  text-shadow: 0 0 28px var(--lime-glow);
}

.brush-dark {
  font-family: var(--font-brush);
  color: var(--black);
  letter-spacing: 0.04em;
}

.center {
  text-align: center;
}

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

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-bottom-color: rgba(200, 255, 0, 0.28);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.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.65rem;
  text-decoration: none;
  color: var(--white);
}

.nav-mark {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--lime);
  box-shadow: 0 0 16px var(--lime-glow);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.nav-brand:hover .nav-mark {
  transform: rotate(-8deg) scale(1.06);
  box-shadow: 0 0 28px var(--lime-glow);
}

.nav-wordmark {
  font-family: var(--font-brush);
  font-size: 1.85rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--lime);
  text-shadow: 0 0 20px var(--lime-glow);
}

.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, background 0.2s;
}

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

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(200, 255, 0, 0.35);
  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(5, 5, 5, 0.78) 0%,
      rgba(5, 5, 5, 0.42) 40%,
      rgba(5, 5, 5, 0.08) 68%,
      rgba(5, 5, 5, 0.35) 100%
    ),
    linear-gradient(to top, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.2) 38%, transparent 55%),
    radial-gradient(ellipse at 70% 40%, rgba(200, 255, 0, 0.12), transparent 55%);
}

.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.spark {
  position: absolute;
  opacity: 0.55;
  filter: drop-shadow(0 0 8px var(--lime-glow));
  animation: sparkle 3.8s ease-in-out infinite;
}

.spark-1 { top: 18%; left: 8%; width: 28px; animation-delay: 0s; }
.spark-2 { top: 28%; right: 12%; width: 22px; animation-delay: 0.6s; }
.spark-3 { top: 55%; left: 14%; width: 18px; animation-delay: 1.2s; }
.spark-4 { bottom: 22%; right: 18%; width: 34px; animation-delay: 0.3s; }
.spark-5 { top: 14%; right: 28%; width: 16px; animation-delay: 1.8s; }

@keyframes sparkle {
  0%, 100% { opacity: 0.35; transform: scale(0.85) rotate(0deg); }
  50% { opacity: 0.9; transform: scale(1.15) rotate(12deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  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-brush);
  font-size: clamp(4.5rem, 14vw, 9rem);
  letter-spacing: 0.04em;
  line-height: 0.88;
  color: var(--lime);
  margin-bottom: 0.85rem;
  text-shadow:
    0 0 40px var(--lime-glow),
    0 4px 0 rgba(0, 0, 0, 0.85),
    3px 3px 0 #000;
  animation: brand-pulse 4s ease-in-out infinite;
}

.hero-lede {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 26rem;
  margin-bottom: 2rem;
  font-weight: 500;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.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.12) translate(-1.8%, -1.2%); }
}

@keyframes brand-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.12); text-shadow: 0 0 56px var(--lime-glow), 0 4px 0 rgba(0, 0, 0, 0.85), 3px 3px 0 #000; }
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  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 24px var(--lime-glow);
}

.btn-primary:hover {
  background: var(--lime-hot);
  box-shadow: 0 14px 40px rgba(200, 255, 0, 0.4);
}

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

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(200, 255, 0, 0.08);
}

.btn-dark {
  background: var(--black);
  color: var(--lime);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.btn-dark:hover {
  background: var(--ink);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  color: var(--lime-hot);
}

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

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

.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: var(--lime);
  color: var(--black);
  padding: 0.95rem 0;
  overflow: hidden;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  position: relative;
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 1;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--lime), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--lime), transparent);
}

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

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ticker-track img {
  width: 18px;
  height: 18px;
}

.ticker-token {
  font-family: var(--font-brush);
  letter-spacing: 0.06em;
  font-size: 1.35rem;
}

.ticker-sep {
  opacity: 0.4;
}

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

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

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

.eyebrow img {
  width: 14px;
  height: 14px;
}

.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.75rem, 7vw, 4.75rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-bottom: 1.35rem;
  color: var(--white);
}

.section-text {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  max-width: 36rem;
}

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

.section-sub {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.band-divider-wrap {
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
}

.band-divider {
  display: block;
  width: 100%;
  height: 110px;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(1.1);
}

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

.about-paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-paw {
  position: absolute;
  opacity: 0.35;
  animation: float-paw 8s ease-in-out infinite;
  filter: drop-shadow(0 0 10px var(--lime-glow));
}

.fp-1 { top: 12%; right: 8%; width: 64px; animation-delay: 0s; }
.fp-2 { bottom: 18%; left: 6%; width: 48px; transform: rotate(-25deg); animation-delay: 1.5s; }
.fp-3 { top: 48%; right: 22%; width: 36px; transform: rotate(15deg); animation-delay: 3s; }

@keyframes float-paw {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); opacity: 0.1; }
  50% { transform: translateY(-18px) rotate(calc(var(--r, 0deg) + 8deg)); opacity: 0.22; }
}

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

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

.portrait-ring {
  position: absolute;
  inset: -6%;
  border: 3px solid var(--lime);
  border-radius: 50%;
  z-index: 0;
  animation: ring-spin 18s linear infinite;
  box-shadow:
    0 0 0 8px rgba(200, 255, 0, 0.08),
    0 0 48px var(--lime-glow);
  clip-path: inset(0 round 50%);
  border-style: dashed;
}

.portrait-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, var(--lime-glow), transparent 70%);
  z-index: 0;
  filter: blur(20px);
  animation: glow-breathe 4s ease-in-out infinite;
}

.about-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 4px solid var(--lime);
  box-shadow:
    0 0 0 12px rgba(200, 255, 0, 0.12),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 60px var(--lime-glow);
  filter: saturate(1.08) contrast(1.04);
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.55; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.08); }
}

.value-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  margin-top: 2.25rem;
}

.value-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  padding: 0.6rem 1.15rem;
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 0 20px rgba(200, 255, 0, 0.25);
  transition: transform 0.25s var(--ease-out);
}

.value-row li:hover {
  transform: translateY(-4px) rotate(-2deg);
}

.value-row img {
  width: 16px;
  height: 16px;
}

/* ── Gallery ── */
.gallery {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200, 255, 0, 0.1), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(200, 255, 0, 0.05), transparent 40%),
    var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 2px solid rgba(200, 255, 0, 0.35);
  background: var(--ink-soft);
  box-shadow: 0 0 28px rgba(200, 255, 0, 0.08);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--lime);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 36px rgba(200, 255, 0, 0.2);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.6s var(--ease-out);
}

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

.gallery-hero {
  grid-row: 1 / 3;
  grid-column: 1;
}

.gallery-hero img {
  aspect-ratio: auto;
  min-height: 100%;
  object-position: center;
}

.scene-strip {
  position: relative;
  height: clamp(160px, 28vw, 280px);
  overflow: hidden;
  border-top: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
}

.scene-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(1.1) contrast(1.05);
  animation: hero-drift 30s var(--ease-out) infinite alternate;
}

.scene-strip-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.55), transparent 30%, transparent 70%, rgba(5, 5, 5, 0.55)),
    linear-gradient(to top, rgba(5, 5, 5, 0.4), transparent 50%);
  pointer-events: none;
}

.scene-strip-paws {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  pointer-events: none;
}

.scene-strip-paws img {
  width: clamp(48px, 8vw, 88px);
  opacity: 0.55;
  filter: drop-shadow(0 0 12px var(--lime-glow));
  animation: sparkle 3.5s ease-in-out infinite;
}

.scene-strip-paws img:nth-child(2) { animation-delay: 0.7s; }
.scene-strip-paws img:nth-child(3) { animation-delay: 1.4s; }

/* ── Contract ── */
.contract {
  background:
    linear-gradient(180deg, #121410 0%, #0a0b08 100%);
}

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

.ca-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  background: rgba(200, 255, 0, 0.06);
  border: 2px solid var(--lime);
  box-shadow: 0 0 40px rgba(200, 255, 0, 0.1);
  border-radius: 4px;
}

.ca-address {
  flex: 1;
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 2.4vw, 0.85rem);
  color: var(--lime);
  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(--lime);
  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.08), transparent 50%),
    var(--ink-soft);
}

.chart-frame {
  border: 2px solid var(--lime);
  background: #0c0c0c;
  min-height: 500px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(200, 255, 0, 0.15),
    0 0 48px rgba(200, 255, 0, 0.12);
  border-radius: 4px;
}

.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.18), transparent 45%),
    radial-gradient(ellipse at 90% 100%, rgba(0, 0, 0, 0.12), transparent 45%),
    linear-gradient(135deg, var(--lime) 0%, var(--lime-deep) 55%, #b8f000 100%);
  color: var(--black);
  overflow: hidden;
}

.buy .section-title {
  color: var(--black);
}

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

.buy .eyebrow img {
  opacity: 0.7;
}

.buy-paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.buy-paw {
  position: absolute;
  opacity: 0.1;
  animation: buy-paw-drift 10s ease-in-out infinite;
}

.bp-1 { top: 8%; left: 5%; width: 72px; animation-delay: 0s; }
.bp-2 { top: 20%; right: 8%; width: 56px; transform: rotate(30deg); animation-delay: 2s; }
.bp-3 { bottom: 15%; left: 18%; width: 44px; transform: rotate(-20deg); animation-delay: 1s; }
.bp-4 { bottom: 25%; right: 15%; width: 64px; transform: rotate(12deg); animation-delay: 3.5s; }

@keyframes buy-paw-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(12px, -16px) rotate(10deg); }
}

.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.35rem 1.35rem 1.85rem;
  border: 2px solid transparent;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.step-img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 1.15rem;
  border: 2px solid rgba(200, 255, 0, 0.45);
  box-shadow: 0 0 24px rgba(200, 255, 0, 0.15);
}

.step:hover {
  transform: translateY(-8px);
  border-color: var(--lime);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 24px rgba(200, 255, 0, 0.15);
}

.step:hover .step-img {
  border-color: var(--lime);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.85rem;
  letter-spacing: 0.04em;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 20px var(--lime-glow);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.06em;
  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.5rem 0 2.5rem;
  border-top: 3px solid var(--lime);
  box-shadow: 0 -20px 60px rgba(200, 255, 0, 0.06);
}

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

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

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--lime);
  box-shadow: 0 0 24px var(--lime-glow);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-brush);
  font-size: 2.1rem;
  letter-spacing: 0.06em;
  color: var(--lime);
  line-height: 1;
  text-shadow: 0 0 18px var(--lime-glow);
}

.footer-brand span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-paws {
  display: flex;
  gap: 1.25rem;
  opacity: 0.45;
}

.footer-paws img {
  width: 22px;
  height: 22px;
  animation: sparkle 3s ease-in-out infinite;
}

.footer-paws img:nth-child(2) { animation-delay: 0.5s; }
.footer-paws img:nth-child(3) { animation-delay: 1s; }

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

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

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

/* ── Mobile ── */
@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-hero {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .gallery-hero img {
    aspect-ratio: 16 / 9;
  }

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

  .spark-4,
  .spark-5 {
    display: none;
  }
}

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

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.15rem;
    border-bottom: 1px solid rgba(200, 255, 0, 0.25);
    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(5, 5, 5, 0.94) 0%,
        rgba(5, 5, 5, 0.5) 42%,
        rgba(5, 5, 5, 0.2) 100%
      ),
      radial-gradient(ellipse at 60% 35%, rgba(200, 255, 0, 0.1), transparent 50%);
  }

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

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

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

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

  .dexscreener-embed {
    height: 460px;
  }

  .band-divider {
    height: 72px;
  }
}

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

  .hero-actions {
    width: 100%;
  }

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

  .nav-mark {
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner,
  .hero-brand,
  .ticker-track,
  .spark,
  .float-paw,
  .buy-paw,
  .portrait-ring,
  .portrait-glow,
  .footer-paws img,
  .trail-paw {
    animation: none;
  }

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