:root {
  --bg: #001c04;
  --line: #4e824c;
  --text: #f4f7ea;
  --muted: #9bcf9a;
  --dark: #1d2612;
  --heading: linear-gradient(90deg, #abef82 -7%, #edeb83 43%);
  --logo: linear-gradient(90deg, #c5ebc2 2%, #bdd774 103%);
  --button: linear-gradient(102deg, #5cb25f -15%, #97ad58 67%);
  --featured: linear-gradient(90deg, #b6ef83 39%, #e7ec83 100%);
  --token: linear-gradient(90deg, #fff 22%, #e7ed84 76%);
  --max: 980px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Anek Bangla", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-size: 16px;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.grad {
  background: var(--heading);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--button);
  color: #fff;
  font-family: "Lilita One", sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 0;
}
.btn:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: var(--button);
  opacity: 0.75;
  filter: blur(10px);
  z-index: -1;
  transition: filter 0.15s;
}
.btn:hover:before { filter: blur(4px); }
.btn-ghost { background: transparent; border: 1px solid rgba(155, 207, 154, 0.4); }
.btn-ghost:before { display: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 28, 4, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(78, 130, 76, 0.45);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Lilita One", sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  background: var(--logo);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand img { width: 34px; height: 34px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}
.nav-links a:hover { color: #edeb83; }
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 0;
  min-height: 420px;
}
.hero .wrap {
  position: relative;
  z-index: 1;
  padding-right: min(460px, 42vw);
  padding-bottom: 36px;
}
.hero h1 {
  font-family: "Lilita One", sans-serif;
  font-size: clamp(42px, 7vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.02em;
}
.hero h2 {
  margin-top: 10px;
  font-size: clamp(22px, 3.4vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  max-width: 14ch;
}
.hero p { margin-top: 12px; color: var(--muted); max-width: 42ch; }
.ca {
  margin-top: 10px;
  font-family: Cousine, ui-monospace, monospace;
  font-size: 13px;
  color: #d1d06e;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.hero-art {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(480px, 44vw);
  pointer-events: none;
}
.hero-art img { width: 100%; display: block; }

.featured {
  background: var(--featured);
  color: var(--dark);
  padding: 12px 0;
}
.featured .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
}
.featured span { opacity: 0.7; font-weight: 600; }

.section {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 76px;
}
.section h3,
.section-title {
  font-family: "Lilita One", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.lede {
  margin: 12px auto 0;
  max-width: 62ch;
  text-align: center;
  color: var(--muted);
}

.origin {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
}
.origin-copy h4 {
  font-family: "Mada", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.origin-copy p + p { margin-top: 10px; color: #dcead4; }
.origin-photo {
  background: #0a2a10;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
.origin-photo img { width: 100%; }
.origin-photo figcaption {
  padding: 8px 12px 10px;
  font-size: 12px;
  color: var(--muted);
}

.frogs {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  margin: 22px 0 16px;
}
.frogs img { width: 72px; height: auto; }

.about-block { text-align: center; }
.about-block p {
  margin: 0 auto 16px;
  max-width: 68ch;
}

.lore-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
}
.tweet-frame {
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.tweet-frame img { width: 100%; }
.lore-copy h4 {
  font-family: "Mada", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.lore-copy p + p { margin-top: 10px; }

.pumps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
  text-align: center;
}
.pumps article {
  padding: 8px 8px 0;
}
.pumps .icon { font-size: 28px; margin-bottom: 8px; }
.pumps h4 {
  font-family: "Lilita One", sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pumps p { color: var(--muted); font-size: 15px; }

.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}
.card {
  background: rgba(12, 48, 18, 0.45);
  border: 1px solid rgba(78, 130, 76, 0.45);
  border-radius: 16px;
  padding: 22px;
}
.card h4 {
  font-family: "Mada", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.card h5 {
  font-size: 18px;
  color: #eac054;
  margin: 4px 0 10px;
}
.card p { color: #dcead4; }
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.card-top img { width: 72px; }
.card .btn { margin-top: 14px; }

.roadmap-heads {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 18px;
  text-align: center;
}
.roadmap-heads img {
  width: 110px;
  margin: 0 auto 8px;
  border-radius: 50%;
}
.roadmap-heads h4 {
  font-family: "Lilita One", sans-serif;
  font-size: 28px;
  color: #eac054;
}
.roadmap-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.roadmap-cols li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
}
.roadmap-cols li:before {
  content: "";
  width: 18px;
  height: 17px;
  background: url("/lillypad.png") center / cover no-repeat;
  position: absolute;
  left: 0;
  top: 4px;
}
.roadmap-cols li.done { color: rgba(255, 255, 255, 0.55); }
.roadmap-cols li.done:after {
  content: "✓";
  position: absolute;
  left: 3px;
  top: 1px;
  color: #fff;
  font-size: 13px;
}

.token-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
}
.lily {
  position: relative;
  display: grid;
  place-items: center;
}
.lily img { width: 230px; }
.lily strong {
  position: absolute;
  font-family: "Lilita One", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  background: var(--token);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
  text-align: center;
  font-family: Cousine, ui-monospace, monospace;
}
.stats b {
  display: block;
  font-size: 28px;
  background: var(--heading);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats span { font-size: 13px; }

.rights-froge {
  width: 148px;
  height: auto;
  margin: 20px auto 0;
  display: block;
  border-radius: 16px;
  background: #fff;
}
.rights {
  margin-top: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.rights-copy h4 {
  font-family: "Mada", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.rights-copy p + p { margin-top: 10px; }
.mark-shot {
  margin-top: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
}
.mark-shot img { width: 100%; }
.link-out {
  display: inline-block;
  margin-top: 12px;
  color: #e7ed84;
  text-decoration: underline;
}

.site-footer {
  padding: 28px 0 36px;
  text-align: center;
}
.copyright-link {
  color: #edeb83;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.copyright-link:hover { color: #fff; }
.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}
.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(155, 207, 154, 0.12);
}
.socials svg { width: 18px; height: 18px; fill: #edeb83; }
.fine {
  color: var(--muted);
  font-size: 12px;
  max-width: 72ch;
  margin: 8px auto 0;
}

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    background: #001808;
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .hero,
  .origin,
  .lore-grid,
  .products,
  .token-row,
  .roadmap-heads,
  .roadmap-cols,
  .pumps,
  .stats {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 20px; text-align: center; min-height: 0; }
  .hero .wrap { padding-right: 0; padding-bottom: 8px; }
  .hero h2 { max-width: none; margin-left: auto; margin-right: auto; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-art {
    position: relative;
    width: min(240px, 70vw);
    margin: 8px auto 0;
  }
  .card-top { justify-content: center; text-align: center; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
