:root {
  --tan: #c48a52;
  --tan-deep: #8f5a2e;
  --tan-soft: #e2b889;
  --charcoal: #241f1c;
  --ink: #1a1613;
  --orange: #f25c12;
  --orange-hot: #ff7a33;
  --grass: #3f8f4a;
  --grass-deep: #2a6a34;
  --sage: #d7e5d4;
  --mist: #e9f0e6;
  --cream: #f3efe6;
  --foam: #fffaf4;
  --wood: #6b4630;
  --line: rgba(36, 31, 28, 0.12);
  --shadow: 0 24px 60px rgba(36, 31, 28, 0.18);
  --radius: 28px;
  --font-paw: "Chewy", "Fredoka", system-ui, sans-serif;
  --font-display: "Fredoka", "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --header-h: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--mist);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

/* Background stage */
.bg-stage {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.bg-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(196, 138, 82, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 5%, rgba(242, 92, 18, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(63, 143, 74, 0.22), transparent 55%),
    linear-gradient(165deg, #eef4ea 0%, #e6ece2 40%, #f2ebe2 100%);
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: orb-drift 18s ease-in-out infinite;
}

.bg-orb--tan {
  width: 42vw;
  height: 42vw;
  left: -8%;
  top: 18%;
  background: rgba(196, 138, 82, 0.45);
}

.bg-orb--green {
  width: 36vw;
  height: 36vw;
  right: -6%;
  top: 40%;
  background: rgba(63, 143, 74, 0.28);
  animation-delay: -6s;
}

.bg-orb--orange {
  width: 28vw;
  height: 28vw;
  left: 35%;
  bottom: -8%;
  background: rgba(242, 92, 18, 0.22);
  animation-delay: -11s;
}

.bg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.paw-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

@keyframes orb-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(4%, -6%, 0) scale(1.08); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(243, 239, 230, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

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

.nav-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--tan);
  box-shadow: 0 8px 20px rgba(143, 90, 46, 0.25);
  animation: logo-wiggle 4.5s ease-in-out infinite;
}

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

.nav-name {
  font-family: var(--font-paw);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.nav-sym {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--charcoal);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

.nav-x {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--foam);
}

.nav-x img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(36, 31, 28, 0.06);
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--charcoal);
  transition: 0.25s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  will-change: transform;
}

.btn--small {
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.btn--orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-hot));
  color: #fff;
  box-shadow: 0 12px 28px rgba(242, 92, 18, 0.35);
}

.btn--orange:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 36px rgba(242, 92, 18, 0.45);
}

.btn--glow {
  position: relative;
}

.btn--glow::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(242, 92, 18, 0.45), rgba(255, 122, 51, 0.15));
  z-index: -1;
  filter: blur(12px);
  opacity: 0.8;
  animation: pulse-glow 2.8s ease-in-out infinite;
}

.btn--ghost {
  background: rgba(255, 250, 244, 0.7);
  border: 2px solid rgba(36, 31, 28, 0.12);
  color: var(--charcoal);
}

.btn--ghost:hover {
  border-color: var(--tan);
  transform: translateY(-2px);
}

.btn--light {
  background: rgba(255, 250, 244, 0.92);
  color: var(--charcoal);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

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

.btn--icon {
  background: var(--charcoal);
  color: var(--foam);
  padding-inline: 1.1rem;
}

.btn--icon img,
.btn-ico {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* White icons on dark / orange buttons */
.btn--icon img,
.btn--orange .btn-ico,
.btn--orange img {
  filter: brightness(0) invert(1);
}

.btn-ico--lg {
  width: 22px;
  height: 22px;
}

/* Dark icons on light buttons (X + DexScreener readable) */
.btn--light .btn-ico {
  filter: brightness(0);
}

/* Keep PumpSwap brand colors on light buttons */
.btn--light .btn-ico--lg,
.btn--light img[src*="pumpswap"] {
  filter: none;
}

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

@keyframes logo-wiggle {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

/* Hero */
.hero {
  position: relative;
  padding: 2.5rem 1.25rem 0;
  overflow: hidden;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  min-height: calc(100vh - var(--header-h) - 70px);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(63, 143, 74, 0.14);
  color: var(--grass-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow--light {
  background: rgba(255, 250, 244, 0.2);
  color: #fff;
}

.hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-brand {
  font-family: var(--font-paw);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.95;
  color: var(--charcoal);
  text-shadow: 0 4px 0 rgba(196, 138, 82, 0.25);
  animation: title-pop 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-ticker {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.hero-tagline {
  margin: 1rem 0 0.75rem;
  font-family: var(--font-paw);
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  color: var(--tan-deep);
}

.hero-lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(26, 22, 19, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.ca-row {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.8rem;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.75);
  border: 1px solid var(--line);
  max-width: 100%;
}

.ca-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--tan-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ca-value {
  flex: 1;
  min-width: 0;
  font-size: 0.92rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--charcoal);
}

.ca-copy {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--foam);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ca-copy:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.ca-copy.is-copied {
  background: var(--grass);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
  align-items: center;
}

.badge-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 16px;
  background: rgba(255, 250, 244, 0.8);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.badge-link:hover {
  transform: translateY(-2px);
  border-color: var(--tan);
  box-shadow: 0 10px 24px rgba(143, 90, 46, 0.15);
}

.badge-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.badge-link img[src*="x.svg"],
.badge-link img[src*="dexscreener"] {
  filter: brightness(0);
}

.badge-link--static {
  padding: 0.35rem 0.65rem;
  background: rgba(36, 31, 28, 0.88);
}

.badge-link--static img {
  width: auto;
  height: 22px;
  max-width: 110px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.hero-ring {
  position: absolute;
  width: min(92%, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed rgba(196, 138, 82, 0.45);
  animation: spin-slow 28s linear infinite;
}

.hero-ring--2 {
  width: min(78%, 360px);
  border-style: solid;
  border-color: rgba(242, 92, 18, 0.22);
  animation-direction: reverse;
  animation-duration: 18s;
}

.hero-media {
  position: relative;
  z-index: 2;
  width: min(78%, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--foam);
  box-shadow:
    0 0 0 6px rgba(196, 138, 82, 0.45),
    var(--shadow);
  animation: float-y 5.5s ease-in-out infinite;
}

.hero-logo,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 30% 70% 55% 45% / 45% 35% 65% 55%;
  background: linear-gradient(145deg, var(--tan-soft), var(--orange));
  opacity: 0.55;
  filter: blur(0.2px);
  animation: blob-morph 7s ease-in-out infinite;
}

.hero-float--a {
  top: 8%;
  right: 6%;
}

.hero-float--b {
  bottom: 12%;
  left: 4%;
  width: 96px;
  height: 96px;
  background: linear-gradient(145deg, var(--grass), #7bc47f);
  animation-delay: -2.5s;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

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

@keyframes blob-morph {
  0%, 100% { border-radius: 30% 70% 55% 45% / 45% 35% 65% 55%; transform: translateY(0) rotate(0deg); }
  50% { border-radius: 60% 40% 35% 65% / 55% 60% 40% 45%; transform: translateY(-12px) rotate(12deg); }
}

@keyframes title-pop {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.ticker {
  margin-top: 2.5rem;
  border-block: 2px solid rgba(36, 31, 28, 0.08);
  background: rgba(255, 250, 244, 0.55);
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 2.5rem;
  padding: 0.85rem 0;
  animation: marquee 28s linear infinite;
  font-family: var(--font-paw);
  font-size: 1.25rem;
  color: var(--tan-deep);
}

.ticker-track span::after {
  content: " · ";
  margin-left: 2.5rem;
  color: var(--orange);
}

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

/* Sections */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5.5rem 1.25rem;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.75rem;
}

.section-head h2,
.join-banner-content h2 {
  margin: 0;
  font-family: var(--font-paw);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  color: var(--charcoal);
}

.section-sub {
  margin: 0.85rem auto 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(26, 22, 19, 0.75);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.about-card {
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(36, 31, 28, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.about-icon {
  width: 56px;
  height: 56px;
  color: var(--orange);
  margin-bottom: 1rem;
}

.about-icon svg {
  width: 100%;
  height: 100%;
}

.about-card h3,
.step-body h3,
.about-story-text h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-paw);
  font-size: 1.45rem;
  color: var(--charcoal);
}

.about-card p,
.step-body p,
.about-story-text p {
  margin: 0;
  line-height: 1.65;
  color: rgba(26, 22, 19, 0.78);
}

.about-story {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.75rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(196, 138, 82, 0.12), rgba(63, 143, 74, 0.1));
  border: 1px solid var(--line);
}

.about-story-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.about-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s ease;
}

.about-story:hover .about-story-media img {
  transform: scale(1.08);
}

.story-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 250, 244, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: shine-sweep 5.5s ease-in-out infinite;
}

@keyframes shine-sweep {
  0%, 40% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

.story-list {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.story-list li {
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 250, 244, 0.8);
  border: 1px solid var(--line);
  font-family: var(--font-display);
}

.story-list strong {
  color: var(--orange);
  margin-right: 0.45rem;
}

/* How to buy */
.howtobuy {
  position: relative;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: none;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.78);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--orange), var(--tan));
}

.step-num {
  font-family: var(--font-paw);
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
  min-width: 2.4rem;
}

.step-link,
.step-links {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.step-links {
  flex-wrap: wrap;
}

.step-link {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--foam);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.step-link:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.step-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.step-link img[src*="x.svg"],
.step-link img[src*="dexscreener"] {
  filter: brightness(0) invert(1);
}

.step-link img[src*="pumpswap"] {
  filter: none;
}

/* Chart */
.chart-frame {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: #0b1210;
  border: 1px solid rgba(36, 31, 28, 0.18);
  box-shadow: var(--shadow);
}

.chart-toolbar {
  display: flex;
  justify-content: flex-end;
  padding: 0.85rem 1rem;
  background: rgba(255, 250, 244, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chart-toolbar .badge-link {
  background: rgba(255, 250, 244, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.chart-toolbar .badge-link img[src*="dexscreener"],
.chart-toolbar .badge-link img[src*="x.svg"] {
  filter: brightness(0) invert(1);
}

.chart-embed-wrap {
  position: relative;
  width: 100%;
  min-height: 560px;
  background: #0b1210;
}

.chart-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Join Us — banner only here */
.joinus {
  padding-bottom: 4rem;
}

.join-banner {
  position: relative;
  min-height: 520px;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  align-items: end;
}

.join-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  animation: banner- ken 22s ease-in-out infinite alternate;
}

@keyframes banner-ken {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-2%, -1%, 0); }
}

.join-banner-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 22, 19, 0.15) 0%, rgba(26, 22, 19, 0.55) 45%, rgba(26, 22, 19, 0.82) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(242, 92, 18, 0.35), transparent 50%);
}

.join-banner-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 1.75rem 2.25rem;
  color: #fff;
  max-width: 720px;
}

.join-banner-content h2 {
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.join-banner-content p {
  margin: 0.85rem 0 0;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255, 250, 244, 0.9);
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.join-actions .btn--orange img[src*="x.svg"],
.join-actions .btn--orange img[src*="dexscreener"] {
  filter: brightness(0) invert(1);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(36, 31, 28, 0.94);
  color: rgba(255, 250, 244, 0.88);
  padding: 2.5rem 1.25rem 2rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

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

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--tan);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-paw);
  font-size: 1.35rem;
}

.footer-brand span {
  font-family: var(--font-display);
  color: var(--orange-hot);
  font-weight: 700;
}

.footer-tag {
  margin: 0;
  font-family: var(--font-paw);
  font-size: 1.2rem;
  color: var(--tan-soft);
}

.footer-links {
  display: flex;
  gap: 0.75rem;
}

.footer-links a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 250, 244, 0.08);
  border: 1px solid rgba(255, 250, 244, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-links a:hover {
  transform: translateY(-3px);
  background: rgba(242, 92, 18, 0.35);
}

.footer-links img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-links a[aria-label="X"] img,
.footer-links a[aria-label="DexScreener"] img {
  filter: brightness(0) invert(1);
}

.footer-links a[aria-label="PumpSwap"] img {
  filter: none;
}

.footer-note {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 250, 244, 0.55);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner,
  .about-story {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-bottom: 1rem;
  }

  .hero-visual {
    order: -1;
    min-height: 360px;
  }

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

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(243, 239, 230, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

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

  .chart-embed-wrap {
    min-height: 460px;
  }
}

@media (max-width: 600px) {
  .hero-actions,
  .join-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .join-banner {
    min-height: 460px;
  }

  .chart-embed-wrap {
    min-height: 420px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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