:root {
  --blue-deep: #1c2f6b;
  --blue-mid: #3457a8;
  --blue-light: #7fa8d9;
  --blue-wash: #a9c8ea;
  --ink: #161022;
  --pink: #ff5f9e;
  --orange: #ffb15e;
  --cream: #eef4ff;
  --card-bg: rgba(255, 255, 255, 0.85);
  --radius: 18px;
  --shadow: 0 10px 30px rgba(20, 30, 70, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Baloo 2', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--blue-deep);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* animated watercolor background */
.bg-wash {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.25), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.18), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.15), transparent 50%),
    radial-gradient(circle at 20% 85%, rgba(255,255,255,0.2), transparent 45%),
    linear-gradient(160deg, #24408f 0%, #1c2f6b 45%, #14224f 100%);
  animation: washMove 18s ease-in-out infinite alternate;
}

@keyframes washMove {
  0%   { background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%, 0 0; }
  100% { background-position: 8% 6%, 92% 8%, 90% 92%, 6% 94%, 0 0; }
}

/* navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(20, 34, 79, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-family: 'Permanent Marker', cursive;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.brand__icon { width: 36px; height: 36px; object-fit: contain; }

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

/* buttons */
.btn {
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn--sm { padding: 10px 20px; font-size: 0.9rem; }

.btn--primary {
  background: linear-gradient(90deg, var(--pink), var(--orange));
  color: #2b0f1f;
  box-shadow: 0 8px 20px rgba(255, 95, 158, 0.4);
}

.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255, 95, 158, 0.5); }

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn--ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* hero */
.hero { padding: 90px 0 60px; position: relative; }

.hero__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero__text { flex: 1 1 420px; }

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--cream);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.25);
}

.hero__title {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  line-height: 0.95;
  margin: 0 0 6px;
  background: linear-gradient(90deg, #ff4f8b, #ff8f6b, #ffc85e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 14px rgba(255, 95, 158, 0.25));
  transform: rotate(-2deg);
}

.hero__tagline {
  color: var(--blue-wash);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  margin: 0 0 30px;
  text-shadow: 0 2px 0 rgba(0,0,0,0.15);
}

.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }

.hero__note { color: rgba(238,244,255,0.7); font-size: 0.9rem; max-width: 420px; }

.hero__art { flex: 1 1 320px; display: flex; justify-content: center; }

.mascot {
  width: auto;
  max-width: 100%;
  max-height: 380px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.35));
  animation: float 4s ease-in-out infinite;
}

.mascot--small { width: auto; max-height: 220px; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}

/* marquee */
.marquee {
  background: linear-gradient(90deg, var(--pink), var(--orange));
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  animation: scroll 22s linear infinite;
}

.marquee__track span {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.1rem;
  color: #2b0f1f;
  padding-right: 8px;
}

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

/* sections */
.section { padding: 80px 0; }
.section--alt { background: rgba(255,255,255,0.04); }

.section-title {
  font-family: 'Permanent Marker', cursive;
  font-size: 2.2rem;
  color: #fff;
  margin: 0 0 20px;
}

.section-title--center { text-align: center; }

/* about */
.about {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about__art { flex: 0 1 220px; text-align: center; }
.about__text { flex: 1 1 420px; color: var(--cream); }
.about__text p { line-height: 1.7; color: rgba(238,244,255,0.85); }

.pill-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill-list li {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

/* tokenomics cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.card__value {
  display: block;
  font-family: 'Permanent Marker', cursive;
  font-size: 2.2rem;
  color: var(--blue-mid);
}

.card__label {
  display: block;
  margin-top: 6px;
  font-weight: 700;
  color: #47507a;
}

.ca-box {
  background: rgba(255,255,255,0.1);
  border: 2px dashed rgba(255,255,255,0.35);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #fff;
}

.ca-box__label { font-weight: 800; opacity: 0.8; }
.ca-box__value { font-family: monospace; font-size: 0.95rem; opacity: 0.9; }

/* how to buy */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  color: #2b0f1f;
  font-weight: 800;
  margin-bottom: 12px;
}

.step h3 { margin: 6px 0; color: var(--ink); }
.step p { color: #47507a; line-height: 1.6; margin: 0; }
.step p a { color: var(--blue-mid); font-weight: 700; }

/* community */
.community { text-align: center; }
.community__sub { color: rgba(238,244,255,0.8); margin-bottom: 30px; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-btn {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.15s, background 0.15s;
}

.social-btn:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

/* footer */
.footer {
  background: #101a3d;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__inner { text-align: center; color: rgba(238,244,255,0.7); }

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Permanent Marker', cursive;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.footer__disclaimer {
  max-width: 640px;
  margin: 0 auto 14px;
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer__copy { font-size: 0.8rem; opacity: 0.6; }

/* toast */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #101a3d;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 50;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hero { padding: 60px 0 40px; }
  .hero__inner { text-align: center; justify-content: center; }
  .hero__cta { justify-content: center; }
  .about { text-align: center; justify-content: center; }
  .pill-list { justify-content: center; }
}
