:root {
  --grass-deep: #1a3d28;
  --grass: #2f6b3f;
  --lawn: #4fa35a;
  --mint: #9fd4a0;
  --tan: #c48a4a;
  --tan-deep: #8f5a28;
  --fur: #d9a66a;
  --sun: #f0c14a;
  --cream: #fff8ec;
  --ink: #142018;
  --ink-soft: rgba(20, 32, 24, 0.72);
  --white: #ffffff;
  --glass: rgba(255, 248, 236, 0.14);
  --stroke: rgba(255, 248, 236, 0.22);
  --radius: 18px;
  --shadow-soft: 0 18px 40px rgba(20, 32, 24, 0.18);
  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease-bounce: cubic-bezier(0.34, 1.45, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body { 
  margin: 0;
  min-height: 100vh;
  width: 100%;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(240, 193, 74, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 5%, rgba(79, 163, 90, 0.35), transparent 50%),
    linear-gradient(180deg, #e8f5e4 0%, #d4ebc8 28%, #c8e2b8 55%, #b7d8a8 100%);
  overflow-x: hidden;
}

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

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

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

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

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

.paw {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='20' cy='18' rx='8' ry='10' fill='%232f6b3f' opacity='0.35'/%3E%3Cellipse cx='32' cy='12' rx='8' ry='10' fill='%232f6b3f' opacity='0.35'/%3E%3Cellipse cx='44' cy='18' rx='8' ry='10' fill='%232f6b3f' opacity='0.35'/%3E%3Cellipse cx='14' cy='30' rx='7' ry='9' fill='%232f6b3f' opacity='0.35'/%3E%3Cellipse cx='32' cy='40' rx='14' ry='12' fill='%232f6b3f' opacity='0.35'/%3E%3C/svg%3E");
  animation: pawDrift linear forwards;
}

@keyframes pawDrift {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg) scale(0.6);
  }
  15% {
    opacity: 0.55;
  }
  100% {
    opacity: 0;
    transform: translateY(-110vh) rotate(40deg) scale(1.1);
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 1.5rem;
  backdrop-filter: blur(14px);
  background: rgba(26, 61, 40, 0.55);
  border-bottom: 1px solid var(--stroke);
  color: var(--cream);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(26, 61, 40, 0.88);
  box-shadow: 0 8px 28px rgba(20, 32, 24, 0.22);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.brand-mark img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(240, 193, 74, 0.65);
  animation: softPulse 3.2s ease-in-out infinite;
}

@keyframes softPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.nav-links {
  display: none;
  gap: 1.35rem;
  margin-left: auto;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a {
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--sun);
}

.site-header .btn-buy {
  display: none;
}

.nav-toggle {
  margin-left: auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s var(--ease-out);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 49;
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.25rem 1.35rem;
  background: rgba(26, 61, 40, 0.96);
  color: var(--cream);
  border-bottom: 1px solid var(--stroke);
  animation: dropIn 0.35s var(--ease-out);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.75rem 0.5rem;
  font-weight: 600;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease-bounce), background 0.2s ease, color 0.2s ease, box-shadow 0.25s ease;
}

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

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: var(--sun);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(240, 193, 74, 0.35);
}

.btn-primary:hover {
  background: #ffd35c;
}

.btn-ghost {
  background: rgba(255, 248, 236, 0.16);
  color: var(--cream);
  border: 1.5px solid rgba(255, 248, 236, 0.45);
  backdrop-filter: blur(8px);
}

.btn-buy {
  background: var(--sun);
  color: var(--ink);
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  width:100%;
  display: grid;
  place-items: center;
  color: var(--cream);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1.06);
  /* animation: heroKen 22s ease-in-out infinite alternate; */
  z-index: -2;
}

@keyframes heroKen {
  from {
    transform: scale(1.06) translate(0, 0);
  }
  to {
    transform: scale(1.14) translate(-1.5%, -1%);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(20, 40, 28, 0.35) 0%, rgba(20, 40, 28, 0.72) 100%),
    linear-gradient(180deg, rgba(20, 40, 28, 0.45) 0%, rgba(20, 40, 28, 0.35) 40%, rgba(20, 40, 28, 0.7) 100%);
}

.hero-inner {
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 6.5rem 0 5rem;
  display: grid;
  gap: 1.25rem;
  justify-items: center;
  text-align: center;
}

.hero-copy {
  display: grid;
  justify-items: center;
}

.hero-copy-top {
  gap: 0;
}

.hero-copy-bottom {
  gap: 0;
}

.hero-kicker {
  margin: 0 0 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  animation: riseIn 0.8s var(--ease-out) both;
}

.hero-brand {
  margin: 0;
  line-height: 0.92;
  animation: riseIn 0.9s 0.08s var(--ease-out) both;
}

.brand-line {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.2rem, 14vw, 7.5rem);
  letter-spacing: -0.02em;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

.brand-sub {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  color: var(--sun);
}

.hero-ticker {
  margin: 0.85rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  color: var(--cream);
  letter-spacing: 0.06em;
  animation: riseIn 0.9s 0.14s var(--ease-out) both;
}

.hero-lede {
  margin: 1rem auto 0;
  max-width: 38ch;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 248, 236, 0.9);
  animation: riseIn 0.9s 0.2s var(--ease-out) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.6rem;
  animation: riseIn 0.9s 0.28s var(--ease-out) both;
}

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

.hero-stage {
  position: relative;
  justify-self: center;
  width: min(340px, 78vw);
  animation: riseIn 1s 0.18s var(--ease-out) both;
}

.halo {
  position: absolute;
  inset: 8% 6% 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 193, 74, 0.45) 0%, rgba(79, 163, 90, 0.2) 45%, transparent 70%);
  filter: blur(8px);
  animation: haloBreathe 4s ease-in-out infinite;
}

@keyframes haloBreathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.hero-dog {
  position: relative;
  width: 100%;
  border-radius: 42% 42% 28% 28%;
  object-fit: cover;
  aspect-ratio: 1;
  box-shadow: var(--shadow-soft);
  animation: dogBob 3.4s ease-in-out infinite;
  will-change: transform;
  transition: transform 0.2s ease-out;
}

.hero-dog.is-tilting {
  animation: none;
}

@keyframes dogBob {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-14px) rotate(1.5deg);
  }
}

.float-chip {
  position: absolute;
  padding: 0.45rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 248, 236, 0.92);
  color: var(--grass-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(20, 32, 24, 0.18);
  white-space: nowrap;
}

.chip-a {
  top: 10%;
  left: -8%;
  animation: chipFloat 3.8s ease-in-out infinite;
}

.chip-b {
  bottom: 14%;
  right: -6%;
  animation: chipFloat 4.2s 0.6s ease-in-out infinite;
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 248, 236, 0.55);
  border-radius: 999px;
  display: grid;
  justify-items: center;
  padding-top: 8px;
}

.scroll-cue span {
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: var(--sun);
  animation: cueBounce 1.6s ease-in-out infinite;
}

@keyframes cueBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(12px);
    opacity: 0.4;
  }
}

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

.section-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

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

.section-head h2,
.about-copy h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--grass-deep);
  line-height: 1.05;
}

.section-head p,
.about-copy .lead {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* About */
.about {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.55), rgba(255, 248, 236, 0.82));
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  justify-self: center;
  width: min(380px, 100%);
}

.about-visual img {
  width: 100%;
  border-radius: 32px 32px 80px 80px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}

.about-stamp {
  position: absolute;
  right: -0.4rem;
  bottom: 1.4rem;
  padding: 0.55rem 0.95rem;
  background: var(--grass);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 12px;
  transform: rotate(-8deg);
  animation: stampWiggle 5s ease-in-out infinite;
}

@keyframes stampWiggle {
  0%,
  100% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(-3deg) scale(1.04);
  }
}

.about-copy p {
  margin: 0 0 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.about-copy .lead {
  margin-bottom: 1.15rem;
  color: var(--ink);
  font-weight: 600;
}

.trait-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.trait-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--grass-deep);
}

.trait-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--tan);
  box-shadow: 0 0 0 4px rgba(196, 138, 74, 0.25);
  flex-shrink: 0;
}

/* Story */
.story {
  background:
    radial-gradient(circle at 80% 20%, rgba(240, 193, 74, 0.18), transparent 40%),
    linear-gradient(180deg, #dff0d4, #cfe8c0);
}

.story-rail {
  display: grid;
  gap: 1.1rem;
}

.story-item {
  padding: 0.35rem 0.15rem 0.35rem 1.15rem;
  border-left: 3px solid var(--tan);
  transition: transform 0.3s var(--ease-bounce);
}

.story-item:hover {
  transform: translateX(6px);
}

.story-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--tan);
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.story-item h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--grass-deep);
}

.story-item p {
  margin: 0;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Token */
.token {
  background:
    linear-gradient(160deg, var(--grass-deep) 0%, #244f34 48%, #1f4630 100%);
  color: var(--cream);
}

.token .section-head h2 {
  color: var(--cream);
}

.token .section-head p {
  color: rgba(255, 248, 236, 0.78);
}

.token-board {
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 248, 236, 0.06);
  backdrop-filter: blur(10px);
}

.token-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.05rem 1.25rem;
  border-bottom: 1px solid rgba(255, 248, 236, 0.1);
}

.token-row:last-child {
  border-bottom: 0;
}

.token-row span {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.token-row strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.ca-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.ca-wrap code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  opacity: 0.9;
  word-break: break-all;
}

.btn-copy {
  padding: 0.4rem 0.8rem;
  border-radius: 10px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.8rem;
}

.btn-copy:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.token-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

/* Vibes / TikTok */
.vibes {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.9), #e9f5df);
}

.tiktok-frame {
  display: flex;
  justify-content: center;
  min-height: 420px;
}

.tiktok-embed {
  margin: 0 auto !important;
}

/* Community */
.community {
  background:
    radial-gradient(circle at 20% 0%, rgba(196, 138, 74, 0.18), transparent 40%),
    linear-gradient(180deg, #d8ecc8, #c5e2b4);
  padding-bottom: 6rem;
}

.social-grid {
  display: grid;
  gap: 0.9rem;
}

.social-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 248, 236, 0.75);
  border: 1px solid rgba(47, 107, 63, 0.14);
  transition: transform 0.3s var(--ease-bounce), background 0.25s ease, border-color 0.25s ease;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.01);
  background: var(--cream);
  border-color: rgba(47, 107, 63, 0.35);
}

.social-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--grass-deep);
}

.social-handle {
  font-weight: 600;
  color: var(--tan-deep);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--grass-deep);
  color: rgba(255, 248, 236, 0.82);
  padding: 2.5rem 0 2rem;
}

.footer-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 1.1rem;
}

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

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(240, 193, 74, 0.5);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
}

.footer-brand span {
  font-size: 0.9rem;
  opacity: 0.75;
}

.disclaimer {
  margin: 0;
  max-width: 52rem;
  font-size: 0.88rem;
  line-height: 1.5;
  opacity: 0.7;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.55;
}

/* Responsive */
@media (min-width: 760px) {
  .nav-links {
    display: flex;
  }

  .site-header .btn-buy {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-inner {
    padding-top: 7rem;
    padding-bottom: 4.5rem;
  }

  .hero-stage {
    width: min(380px, 50vw);
  }

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

  .story-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .site-header {
    padding-inline: 2rem;
  }
}

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

  html {
    scroll-behavior: auto;
  }
}
