:root {
  --bg: #0c2427;
  --bg-2: #103236;
  --surface: #14403f;
  --dough: #e9b866;
  --dough-deep: #d99b3f;
  --cream: #fef6e7;
  --text: #f4efe2;
  --muted: #a9c2c0;
  --accent: #58e0c8;
  --line: rgba(233, 184, 102, 0.18);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; background: var(--bg); }

body {
  font-family: "Nunito", system-ui, sans-serif;
  background:
    radial-gradient(1200px 600px at 80% -5%, rgba(88, 224, 200, 0.14), transparent 60%),
    radial-gradient(900px 500px at 0% 30%, rgba(217, 155, 63, 0.12), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .brand-name { font-family: "Baloo 2", system-ui, sans-serif; line-height: 1.1; }

.accent { color: var(--accent); }

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

/* sprinkles bg */
.sprinkles { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 22px; border-radius: 999px;
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer; border: 2px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.btn-lg { padding: 16px 32px; font-size: 1.15rem; }
.btn-primary {
  background: linear-gradient(180deg, var(--dough), var(--dough-deep));
  color: #3a2409; box-shadow: 0 8px 0 #b57e2c, 0 14px 24px rgba(0,0,0,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 0 #b57e2c, 0 18px 28px rgba(0,0,0,.4); }
.btn-primary:active { transform: translateY(4px); box-shadow: 0 4px 0 #b57e2c; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(12, 36, 39, 0.72); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--dough); object-fit: cover; }
.brand-name { font-size: 1.5rem; font-weight: 800; letter-spacing: 1px; }
.nav-links { display: flex; gap: 26px; font-weight: 700; color: var(--muted); }
.nav-links a:hover { color: var(--accent); }
.nav-cta { padding: 9px 18px; }

/* hero */
.hero {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 40px;
  max-width: 1200px; margin: 0 auto; padding: clamp(40px, 7vw, 90px) clamp(16px, 4vw, 48px);
}
.tag {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: rgba(88, 224, 200, 0.12); color: var(--accent);
  border: 1px solid rgba(88, 224, 200, 0.3); font-weight: 700; font-size: .85rem; margin-bottom: 18px;
}
.hero-title { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 800; text-wrap: balance; }
.hero-sub { color: var(--muted); font-size: 1.15rem; max-width: 46ch; margin: 20px 0 28px; text-wrap: pretty; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 34px; flex-wrap: wrap; }
.hero-stats dt { color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; }
.hero-stats dd { font-family: "Baloo 2", sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--dough); }

.hero-art { position: relative; display: grid; place-items: center; }
.hero-glow {
  position: absolute; width: 90%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(88,224,200,.35), transparent 68%);
  filter: blur(10px); animation: pulse 4s ease-in-out infinite;
}
.hero-img {
  position: relative; width: min(420px, 88%); border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,.5); animation: float 5s ease-in-out infinite;
}
.ca-chip {
  position: relative; margin-top: 22px; display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 8px 8px 14px; border-radius: 999px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); color: var(--text);
  font-family: inherit; max-width: 100%;
}
.ca-label { font-weight: 800; color: var(--dough); }
.ca-text { font-size: .82rem; color: var(--muted); max-width: 190px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ca-copy { background: var(--dough); color: #3a2409; font-weight: 800; padding: 4px 12px; border-radius: 999px; font-size: .8rem; }

@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-16px) rotate(1deg); } }
@keyframes pulse { 0%,100% { opacity: .55; transform: scale(.96); } 50% { opacity: .9; transform: scale(1.04); } }

/* marquee */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--bg-2); padding: 14px 0; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: scroll 24s linear infinite; }
.marquee-track span { font-family: "Baloo 2", sans-serif; font-weight: 700; color: var(--dough); font-size: 1.1rem; white-space: nowrap; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* sections */
.section { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: clamp(50px, 8vw, 90px) clamp(16px, 4vw, 48px); }
.section-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; text-align: center; }
.section-lead { text-align: center; color: var(--muted); max-width: 60ch; margin: 16px auto 0; font-size: 1.1rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: transform .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-6px); border-color: var(--dough); }
.card-emoji { font-size: 2.6rem; }
.card h3 { margin: 14px 0 8px; font-size: 1.4rem; color: var(--dough); }
.card p { color: var(--muted); }

/* chart */
.chart-frame { margin-top: 40px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; overflow: hidden; }

/* tokenomics */
.tokenomics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.tok-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 18px; text-align: center; }
.tok-num { display: block; font-family: "Baloo 2", sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--accent); }
.tok-label { color: var(--muted); font-weight: 700; font-size: .95rem; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 44px; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px 28px 68px; }
.step-n {
  position: absolute; left: 22px; top: 26px; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; background: var(--dough); color: #3a2409;
  font-family: "Baloo 2", sans-serif; font-weight: 800;
}
.step h3 { color: var(--dough); font-size: 1.3rem; margin-bottom: 6px; }
.step p { color: var(--muted); }
.buy-cta { text-align: center; margin-top: 40px; }

/* footer */
.footer { position: relative; z-index: 1; text-align: center; padding: 60px 24px 40px; border-top: 1px solid var(--line); background: var(--bg-2); }
.footer-logo { width: 70px; height: 70px; border-radius: 50%; border: 2px solid var(--dough); }
.footer-name { font-family: "Baloo 2", sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--dough); margin: 12px 0; }
.socials { display: flex; gap: 22px; justify-content: center; font-weight: 700; margin-bottom: 24px; }
.socials a { color: var(--muted); }
.socials a:hover { color: var(--accent); }
.disclaimer { color: var(--muted); font-size: .85rem; max-width: 60ch; margin: 0 auto 14px; opacity: .8; }
.copyright { color: var(--muted); font-size: .85rem; }

/* toast */
.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translateX(-50%) translateY(20px);
  background: var(--dough); color: #3a2409; font-weight: 800; padding: 12px 22px; border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.4); opacity: 0; pointer-events: none; transition: all .3s ease; z-index: 100;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* responsive */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-art { order: -1; }
  .cards, .tokenomics, .steps { grid-template-columns: 1fr; }
}
@media (min-width: 861px) and (max-width: 1024px) {
  .tokenomics { grid-template-columns: repeat(2, 1fr); }
}
