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

:root {
  --cream: #fff8ec;
  --cream-deep: #f3e4c8;
  --peach: #f0c48a;
  --apricot: #e8a85c;
  --moss: #3d6b3a;
  --forest: #1f3d24;
  --forest-soft: #2a5232;
  --gold-ray: #ffe7a8;
  --ink: #1a2e1c;
  --ink-soft: #3d5340;
  --white: #fffdf8;
  --pump: #86c46a;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(31, 61, 36, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse at 15% 0%, rgba(255, 231, 168, 0.55), transparent 42%),
    radial-gradient(ellipse at 90% 10%, rgba(134, 196, 106, 0.22), transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(61, 107, 58, 0.12), transparent 45%),
    linear-gradient(180deg, #fff8ec 0%, #f7ebcf 40%, #e8f0d8 100%);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

.sun-rays {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    conic-gradient(from 210deg at 12% -5%, transparent 0deg, rgba(255, 231, 168, 0.18) 18deg, transparent 36deg),
    conic-gradient(from 230deg at 12% -5%, transparent 0deg, rgba(255, 248, 236, 0.12) 12deg, transparent 28deg);
  opacity: 0.7;
}

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

.leaf {
  position: absolute;
  width: 14px;
  height: 20px;
  background: var(--moss);
  border-radius: 0 70% 0 70%;
  opacity: 0.18;
  animation: drift 14s linear infinite;
}

.leaf-1 { left: 8%; top: -10%; animation-delay: 0s; }
.leaf-2 { left: 35%; top: -10%; animation-delay: -4s; background: var(--apricot); }
.leaf-3 { left: 62%; top: -10%; animation-delay: -8s; }
.leaf-4 { left: 85%; top: -10%; animation-delay: -11s; background: var(--peach); }

@keyframes drift {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(110vh) rotate(360deg); }
}

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

.accent { color: var(--moss); }
.center { text-align: center; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 248, 236, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(61, 107, 58, 0.12);
}

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

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

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--peach);
  box-shadow: 0 4px 12px rgba(31, 61, 36, 0.15);
}

.nav-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 0.2s;
}

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

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

.nav-social {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream) !important;
  transition: transform 0.2s, background 0.2s;
}

.nav-social:hover {
  transform: translateY(-2px);
  background: var(--moss);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--forest);
  border-radius: 2px;
}

/* Hero — full-bleed banner */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

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

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(31, 61, 36, 0.15) 0%, rgba(31, 61, 36, 0.25) 35%, rgba(20, 40, 24, 0.78) 100%),
    radial-gradient(ellipse at 70% 40%, transparent 30%, rgba(20, 40, 24, 0.35) 100%);
}

.hero-content {
  width: min(720px, 92vw);
  margin: 0 auto 4.5rem;
  padding-top: 6rem;
  text-align: center;
  color: var(--white);
  animation: riseIn 0.9s ease-out both;
}

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

.hero-logo {
  width: min(148px, 34vw);
  height: min(148px, 34vw);
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 248, 236, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  margin-bottom: 1rem;
  animation: floaty 3.4s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  margin-bottom: 0.35rem;
}

.hero-ticker {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  color: var(--gold-ray);
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
}

.hero-bio {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 600;
  max-width: 34em;
  margin: 0 auto 1.6rem;
  color: rgba(255, 253, 248, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--peach), var(--apricot));
  color: var(--forest);
  border-color: rgba(255, 248, 236, 0.5);
  box-shadow: 0 8px 24px rgba(232, 168, 92, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(232, 168, 92, 0.55);
}

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

.btn-ghost:hover {
  background: rgba(255, 248, 236, 0.22);
}

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

.btn-copy {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
  flex-shrink: 0;
}

.btn-copy.copied {
  background: var(--moss);
}

/* Marquee */
.marquee {
  overflow: hidden;
  background: var(--forest);
  color: var(--cream);
  padding: 0.85rem 0;
  border-block: 3px solid var(--peach);
}

.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  animation: marquee 28s linear infinite;
}

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

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

.section-label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--moss);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: 1rem;
}

.section-text {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  max-width: 38em;
}

.section-text strong { color: var(--forest); }

.story-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 800;
  color: var(--moss);
  text-decoration: none;
  border-bottom: 2px solid var(--peach);
  transition: color 0.2s;
}

.story-link:hover { color: var(--forest); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0%, 100% { border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; }
  50% { border-radius: 55% 45% 40% 60% / 50% 55% 45% 50%; }
}

/* Contract */
.contract {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(240, 196, 138, 0.25), transparent 55%),
    transparent;
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 820px;
  margin: 1.5rem auto 0;
  padding: 1rem 1rem 1rem 1.25rem;
  background: var(--white);
  border: 2px solid rgba(61, 107, 58, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ca-address {
  flex: 1;
  font-size: clamp(0.72rem, 2vw, 0.95rem);
  word-break: break-all;
  color: var(--forest);
  font-weight: 700;
}

.copy-toast {
  text-align: center;
  min-height: 1.5rem;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--moss);
  opacity: 0;
  transition: opacity 0.25s;
}

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

/* Chart */
.chart-wrapper {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(61, 107, 58, 0.18);
  box-shadow: var(--shadow);
  background: #0b1a0e;
  min-height: 480px;
}

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

.chart-link {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--moss);
  text-decoration: none;
}

.chart-link:hover { color: var(--forest); }

/* Buy steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}

.step {
  padding: 1.4rem 1.2rem;
  background: rgba(255, 253, 248, 0.72);
  border: 2px solid rgba(61, 107, 58, 0.12);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--apricot);
  display: block;
  margin-bottom: 0.4rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

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

.buy .btn-ghost {
  background: rgba(61, 107, 58, 0.08);
  color: var(--forest);
  border-color: rgba(61, 107, 58, 0.25);
}

.buy .btn-ghost:hover {
  background: rgba(61, 107, 58, 0.15);
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 2rem;
  background: var(--forest);
  color: var(--cream);
}

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

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

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--peach);
}

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

.footer-brand span {
  font-size: 0.85rem;
  opacity: 0.8;
}

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

.footer-links a {
  color: var(--gold-ray);
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover { color: var(--white); }

.footer-disclaimer {
  max-width: 42em;
  font-size: 0.82rem;
  opacity: 0.7;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

  .section-text { margin-inline: auto; }

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

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 248, 236, 0.97);
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid rgba(61, 107, 58, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

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

  .nav-links li { border-top: 1px solid rgba(61, 107, 58, 0.08); }

  .nav-links a {
    display: block;
    padding: 0.9rem 1.5rem;
  }

  .nav-socials {
    justify-content: center;
    padding: 0.75rem;
    margin: 0;
  }

  .nav-toggle { display: flex; }

  .hero-content { margin-bottom: 3rem; }

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

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

  .dexscreener-embed,
  .chart-wrapper { min-height: 420px; height: 420px; }

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