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

:root {
  --cream: #f6efe4;
  --sand: #e8dccb;
  --teal: #3e8f90;
  --teal-deep: #24686a;
  --gold: #c5a367;
  --ink: #1f1a14;
  --mute: #6d6458;
  --white: #fffdf8;
  --people: #c41230;
  --font: "Nunito", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

.wrap {
  width: min(1080px, 90vw);
  margin: 0 auto;
}

.center { text-align: center; }

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

.paw-stamp {
  position: absolute;
  width: var(--paw-size, 38px);
  height: var(--paw-size, 38px);
  margin: calc(var(--paw-size, 38px) / -2) 0 0 calc(var(--paw-size, 38px) / -2);
  color: var(--teal);
  transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--rot, 0deg)) scale(0.4);
  animation: paw-press var(--paw-life, 1.4s) ease-out forwards;
}

.paw-stamp.is-walk { animation-name: paw-walk-fade; }
.paw-stamp svg { width: 100%; height: 100%; display: block; }

@keyframes paw-press {
  0% { opacity: 0; transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--rot, 0deg)) scale(0.35); }
  18% { opacity: 0.85; transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--rot, 0deg)) scale(1); }
  100% { opacity: 0; transform: translate(var(--x, 0), var(--y, 0)) rotate(calc(var(--rot, 0deg) + 8deg)) scale(0.9); }
}

@keyframes paw-walk-fade {
  0% { opacity: 0; transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--rot, 0deg)) scale(0.5); }
  12% { opacity: 0.5; transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--rot, 0deg)) scale(1); }
  100% { opacity: 0; transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--rot, 0deg)) scale(0.92); }
}

@media (prefers-reduced-motion: reduce) {
  .paw-layer { display: none; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 239, 228, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(36, 104, 106, 0.12);
}

.nav {
  width: min(1080px, 90vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--teal-deep);
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 2px solid var(--teal);
}

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

.nav-links a {
  color: var(--mute);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

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

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

.nav-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-deep);
  color: var(--cream) !important;
}

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

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--teal-deep);
}

.hero {
  position: relative;
}

.hero-banner {
  display: block;
  width: 100%;
  height: min(72vh, 620px);
  object-fit: cover;
  object-position: center;
}

.hero-bar {
  width: min(1080px, 90vw);
  margin: -3.2rem auto 0;
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 22px;
  padding: 1.15rem 1.4rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 18px 40px rgba(31, 26, 20, 0.1);
  border: 1px solid rgba(197, 163, 103, 0.35);
}

.hero-copy {
  flex: 1;
  min-width: 240px;
}

.hero-ticker {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--teal-deep);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-line {
  color: var(--mute);
  font-weight: 700;
  line-height: 1.45;
  max-width: 44em;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-teal {
  background: var(--teal);
  color: #fff;
}

.btn-teal:hover { background: var(--teal-deep); }

.btn-outline {
  background: transparent;
  color: var(--teal-deep);
  border-color: rgba(62, 143, 144, 0.4);
}

.btn-outline.dark {
  color: var(--ink);
  border-color: rgba(31, 26, 20, 0.18);
}

.stats {
  padding: 2.4rem 0 0.5rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stats-row div {
  text-align: center;
  padding: 1rem 0.5rem;
}

.stats-row strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--teal-deep);
}

.stats-row span {
  color: var(--mute);
  font-weight: 700;
  font-size: 0.85rem;
}

.about {
  padding: 3.5rem 0 4rem;
}

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

.about-photo {
  width: 100%;
  max-width: 420px;
  border-radius: 28px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  object-position: center 18%;
  box-shadow: 0 20px 50px rgba(31, 26, 20, 0.12);
}

.eyebrow {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--teal);
  margin-bottom: 0.55rem;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 1rem;
}

.about-copy p {
  color: var(--mute);
  font-size: 1.08rem;
  margin-bottom: 0.9rem;
}

.about-copy strong { color: var(--teal-deep); }

.text-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-weight: 800;
  color: var(--teal-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}

.center-link {
  display: block;
  text-align: center;
  margin-top: 1rem;
}

.story {
  padding: 1rem 0 4.5rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(62, 143, 144, 0.1), transparent 58%);
}

.story-wrap { max-width: 820px; }

.story-dek {
  text-align: center;
  color: var(--mute);
  font-size: 1.05rem;
  max-width: 38em;
  margin: 0 auto 1.6rem;
}

.people-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(31, 26, 20, 0.08);
  box-shadow: 0 22px 50px rgba(31, 26, 20, 0.08);
}

.people-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.15rem;
  background: #111;
  color: #fff;
}

.people-top span {
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--people);
}

.people-top a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

.people-photo {
  display: block;
  background: #111;
}

.people-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center 30%;
}

.people-caption {
  padding: 1.25rem 1.3rem 1.4rem;
}

.people-caption h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.25;
  margin-bottom: 0.55rem;
}

.people-caption p {
  color: var(--mute);
  margin-bottom: 0.85rem;
}

.photo-credit {
  font-size: 0.82rem;
  font-weight: 700;
  color: #8a8174;
}

.people-caption a {
  display: inline-block;
  padding: 0.7rem 1.1rem;
  background: var(--people);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.memes {
  padding: 1rem 0 4.5rem;
}

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

.meme-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #111;
  border: 1px solid rgba(36, 104, 106, 0.12);
  box-shadow: 0 16px 36px rgba(31, 26, 20, 0.08);
}

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

.token,
.chart-section,
.buy {
  padding: 3.5rem 0;
}

.token { background: var(--sand); }

.ca-box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 760px;
  margin: 1.4rem auto 0;
  padding: 0.85rem 0.85rem 0.85rem 1.2rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(36, 104, 106, 0.16);
}

.ca-box code {
  flex: 1;
  word-break: break-all;
  font-weight: 800;
  color: var(--teal-deep);
}

.ca-box code.is-tba {
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: 0.16em;
  text-align: center;
}

.ca-box button,
.btn {
  font-family: var(--font);
  cursor: pointer;
}

.ca-box button {
  border: 0;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
}

.ca-box button.copied { background: var(--teal-deep); }

.copy-toast {
  text-align: center;
  min-height: 1.3rem;
  margin-top: 0.7rem;
  font-weight: 700;
  color: var(--teal-deep);
  opacity: 0;
}

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

.chart-wrapper {
  margin-top: 1.3rem;
  min-height: 480px;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(31, 26, 20, 0.12);
}

.chart-wrapper.is-tba {
  min-height: 240px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #1a3a3b, #111);
}

.chart-tba {
  text-align: center;
  color: var(--cream);
}

.chart-tba strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  letter-spacing: 0.14em;
}

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

.buy-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0 2rem;
}

.buy-steps li {
  background: var(--white);
  border-radius: 18px;
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(36, 104, 106, 0.1);
}

.buy-steps span {
  display: block;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.buy-steps b { display: block; margin-bottom: 0.3rem; }
.buy-steps p { color: var(--mute); font-size: 0.95rem; }

.buy-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer {
  background: #1b3334;
  color: var(--cream);
  padding: 2rem 0;
}

.footer-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.7rem;
}

.footer img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 2px solid var(--teal);
}

.footer strong { display: block; font-family: var(--serif); font-size: 1.2rem; }
.footer span { opacity: 0.8; font-size: 0.9rem; }
.footer p { max-width: 40em; font-size: 0.8rem; opacity: 0.7; }

@media (max-width: 900px) {
  .about-grid,
  .stats-row,
  .buy-steps {
    grid-template-columns: 1fr;
  }

  .about-photo { margin: 0 auto; max-width: 320px; }
  .about-copy { text-align: center; }
  .hero-banner { height: 38vh; object-position: left center; }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid rgba(36, 104, 106, 0.12);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.8rem 1.2rem; }
  .nav-socials { justify-content: center; padding: 0.5rem; }
  .nav-toggle { display: flex; }
  .hero-bar { margin-top: -2.2rem; }
  .ca-box { flex-direction: column; text-align: center; }
  .dexscreener-embed,
  .chart-wrapper { height: 400px; min-height: 400px; }
}
