:root {
  --bg: #f3f4f0;
  --ink: #141714;
  --muted: #5c6358;
  --line: rgba(20, 23, 20, 0.1);
  --panel: linear-gradient(180deg, #e4f3b8 0%, #f7f8f3 58%, #ffffff 100%);
  --card: rgba(255, 255, 255, 0.78);
  --lime: #d6fb57;
  --lime-deep: #b6e12a;
  --forest: #2d4a24;
  --gold: #d4af37;
  --pond: #7ec8a3;
  --shadow: 0 18px 50px rgba(45, 74, 36, 0.08);
  --radius: 28px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.grain,
.pond-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}

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

.pond-glow {
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 251, 87, 0.28), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(126, 200, 163, 0.22), transparent 26%);
}

.nav,
main,
.foot,
.mobile-sheet {
  position: relative;
  z-index: 1;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 36px;
  backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
}

.brand {
  display: flex;
  align-items: center;
  justify-self: start;
}

.brand-face {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: transparent;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(214, 251, 87, 0.35);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.btn-lime {
  background: var(--lime);
  color: #141714;
  box-shadow: 0 8px 24px rgba(182, 225, 42, 0.28);
}

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

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-lg {
  padding: 13px 20px;
}

.btn-icon {
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.btn-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.menu-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
  color: var(--ink);
  cursor: pointer;
  display: none;
  place-items: center;
  flex-direction: column;
  gap: 5px;
}

.menu-btn span {
  width: 16px;
  height: 1.5px;
  background: currentColor;
}

.mobile-sheet {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin: 0 16px 8px;
  padding: 14px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--line);
}

.mobile-sheet a {
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
  padding: 36px 48px 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(214, 251, 87, 0.28);
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
}

h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 5.6vw, 4.8rem);
  line-height: 0.94;
  margin: 0 0 18px;
  font-weight: 650;
}

h1 span {
  display: block;
  font-weight: 500;
  font-style: italic;
}

h1 em {
  display: block;
  font-style: italic;
  color: #6f8a2c;
}

.lede {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 24px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  gap: 28px;
  margin: 0;
}

.hero-meta div {
  margin: 0;
}

.hero-meta dt {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-meta dd {
  margin: 4px 0 0;
  font-weight: 700;
  font-size: 1.15rem;
}

.hero-meta .ca {
  font-size: 0.95rem;
  word-break: break-all;
}

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

.hero-frog {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(45, 74, 36, 0.16));
}

.blob {
  position: absolute;
  filter: blur(8px);
  border-radius: 46% 54% 50% 50%;
  animation: drift 10s ease-in-out infinite;
}

.blob-a {
  width: 78%;
  height: 70%;
  left: 11%;
  top: 16%;
  background: radial-gradient(circle at 30% 30%, #f4ffb0, #9ed36a 46%, #3f6a32);
  opacity: 0.42;
}

@keyframes drift {
  50% {
    border-radius: 58% 42% 61% 39%;
    transform: translateY(-10px) rotate(6deg);
  }
}

.panel,
.about,
.token,
.buy,
.foot {
  max-width: 1240px;
  margin: 0 auto;
}

#about,
#token,
#buy {
  scroll-margin-top: 88px;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px auto 56px;
  padding: 22px;
  border-radius: 32px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.stat {
  padding: 8px 12px;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.stat strong {
  font-size: 1.2rem;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 20px 48px 80px;
}

.about-art img {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 18px 28px rgba(45, 74, 36, 0.12));
}

.about-copy h2,
.section-head h2,
.buy h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  margin: 0 0 16px;
}

.about-copy p,
.section-head p,
.buy p {
  color: var(--muted);
}

.traits {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.traits li {
  padding: 12px 16px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--lime) 22%, transparent);
  font-weight: 550;
}

.section-head {
  padding: 0 48px 28px;
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 48px 80px;
}

.glass-card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.glass-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.glass-card p {
  margin: 0;
  color: var(--muted);
}

.ca {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--ink) !important;
  font-size: 0.95rem;
}

.link-btn {
  margin-top: 14px;
  border: 0;
  background: none;
  color: var(--forest);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.buy {
  padding: 0 48px 80px;
}

.buy-card {
  padding: 40px;
  border-radius: 36px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 12px;
}

.steps li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
}

.steps span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: #141714;
  font-weight: 700;
  font-size: 0.78rem;
  flex: none;
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.foot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 48px 36px;
}

.foot .brand-face {
  width: 64px;
  height: 64px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

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

  .mobile-sheet {
    display: flex;
  }

  .hero,
  .about {
    grid-template-columns: 1fr;
    padding: 24px 20px 40px;
  }

  .nav {
    grid-template-columns: 1fr auto;
    padding: 12px 16px;
  }

  .hero-stage {
    min-height: 380px;
  }

  .hero-frog {
    width: min(100%, 360px);
  }

  .stats-panel,
  .token-grid {
    grid-template-columns: 1fr 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-head,
  .buy,
  .foot {
    padding-left: 20px;
    padding-right: 20px;
  }

  .buy-card {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 12px 14px;
  }

  .stats-panel,
  .token-grid {
    grid-template-columns: 1fr;
  }

  .brand-face {
    width: 56px;
    height: 56px;
  }
}
