:root {
  --bg: #07130d;
  --card: rgba(15, 47, 31, 0.55);
  --brand: #0f2f1f;
  --emerald: #25a76a;
  --gold: #d4af37;
  --text: #e8f5ee;
  --muted: #b7cdc2;
  --line: rgba(210, 230, 220, 0.16);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #133f2a 0, #07130d 50%);
  line-height: 1.6;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
}

.container { width: min(1120px, 92vw); margin: 0 auto; }
.section { padding: 72px 0; }
.center { text-align: center; }
.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; line-height: 1.2; margin: 0 0 12px; }
h1 { font-size: clamp(2rem, 4vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 99;
  backdrop-filter: blur(10px);
  background: rgba(5, 16, 10, 0.76);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-family: "Space Grotesk"; font-weight: 700; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(120deg, var(--emerald), #0d6b43);
  box-shadow: 0 0 18px rgba(37, 167, 106, 0.35);
}
.nav { display: flex; gap: 22px; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 600; }
.nav a:hover { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; border: 1px solid transparent;
  border-radius: 999px; padding: 11px 20px; font-weight: 700;
  color: #052012;
  background: linear-gradient(120deg, #39cd88, #1b9f63);
  box-shadow: 0 8px 24px rgba(37, 167, 106, 0.38);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37, 167, 106, 0.48); }
.btn-sm { padding: 8px 14px; font-size: 0.9rem; }
.btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: rgba(212, 175, 55, 0.34);
  box-shadow: none;
}

.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 36px; align-items: center; }
.hero-copy p { color: var(--muted); max-width: 62ch; }
.countdown-banner {
  background: linear-gradient(130deg, rgba(37, 167, 106, 0.16), rgba(212, 175, 55, 0.12));
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 16px;
  padding: 14px;
  max-width: 560px;
  margin-bottom: 14px;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.1), 0 10px 34px rgba(8, 23, 15, 0.45);
  position: relative;
  overflow: hidden;
}
.countdown-banner::after {
  content: "";
  position: absolute;
  inset: -60% auto auto -30%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 65%);
  pointer-events: none;
}
.countdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.countdown-banner p { margin: 0; font-weight: 700; color: #dbefe5; display: flex; align-items: center; gap: 8px; }
.countdown-banner p i { color: var(--gold); }
.countdown-pill {
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(8, 25, 16, 0.8);
  color: #e7d08a;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}
.countdown-banner small { color: #c4d9ce; }
.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}
.countdown div {
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 14px;
  padding: 8px 6px;
  background: linear-gradient(160deg, rgba(7, 19, 13, 0.85), rgba(18, 50, 34, 0.56));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 18px rgba(5, 12, 8, 0.35);
}
.countdown strong {
  display: block;
  font-size: 1.28rem;
  color: var(--gold);
  font-family: "Space Grotesk", sans-serif;
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.35);
}
.countdown span { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.countdown-progress {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(8, 24, 16, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  margin: 2px 0 8px;
}
.countdown-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #25a76a, #d4af37);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.3);
  transition: width 0.35s ease;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.trust-inline { display: flex; flex-wrap: wrap; gap: 14px; color: #c8ddd2; font-size: 0.92rem; }
.trust-inline i { color: var(--gold); }

.mascot-card {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(18, 60, 40, 0.7), rgba(7, 19, 13, 0.7));
  border-radius: 22px;
  padding: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.mascot-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(228, 244, 236, 0.2);
}
.hoodie-tag {
  position: absolute; left: 30px; bottom: 30px;
  background: rgba(7, 19, 13, 0.7); border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px; padding: 6px 12px; font-weight: 700;
}
.mascot-socials {
  position: absolute;
  right: 30px;
  bottom: 28px;
  display: flex;
  gap: 8px;
}
.mascot-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--gold);
  background: rgba(7, 19, 13, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.36);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, color 0.2s ease;
}
.mascot-socials a:hover {
  transform: translateY(-2px);
  color: #f1da91;
}
.moon { position: absolute; top: 22px; right: 24px; width: 42px; height: 42px; border-radius: 50%; box-shadow: -10px 0 0 0 var(--gold); opacity: 0.85; }
.lantern { position: absolute; width: 11px; height: 34px; background: linear-gradient(var(--gold), #725715); border-radius: 6px; opacity: 0.75; }
.lantern-1 { top: 28px; left: 30px; }
.lantern-2 { top: 48px; left: 50px; }
.mosque-silhouette {
  position: absolute; left: 0; right: 0; bottom: 0; height: 80px;
  background: radial-gradient(circle at 20% 100%, rgba(212,175,55,0.22) 0 15%, transparent 16%),
              radial-gradient(circle at 50% 100%, rgba(212,175,55,0.22) 0 20%, transparent 21%),
              radial-gradient(circle at 80% 100%, rgba(212,175,55,0.22) 0 12%, transparent 13%);
}

.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trust-card, .info-card, .glass-panel, .social-card, .meme-tile, .timeline-item, .faq-item {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.trust-card, .info-card, .glass-panel, .timeline-item { padding: 22px; }
.trust-card i, .info-card i { font-size: 1.4rem; color: var(--gold); }

.about-grid, .tokenomics-grid, .impact-grid {
  display: grid; gap: 24px; align-items: center; grid-template-columns: repeat(2, 1fr);
}
.launch-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
.glass-panel { backdrop-filter: blur(9px); }
.glass-panel ul { padding-left: 18px; color: var(--muted); }

.grid-4 { display: grid; gap: 14px; grid-template-columns: repeat(4, 1fr); }
.info-card p, .trust-card p, .glass-panel p, .timeline-item p, .faq-item p { color: var(--muted); margin-bottom: 0; }
.icons .info-card i { margin-bottom: 8px; }

.token-list { list-style: none; padding: 0; margin: 18px 0; }
.token-list li {
  display: flex; justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.token-list span { color: var(--gold); font-weight: 700; }
.chart-wrap { display: grid; place-items: center; }
.pie-chart {
  width: 290px; height: 290px; border-radius: 50%;
  background: conic-gradient(
    #2fd692 0 40%,
    #148b55 40% 65%,
    #d4af37 65% 80%,
    #8b6b13 80% 90%,
    #67cfa4 90% 100%
  );
  box-shadow: 0 0 40px rgba(37, 167, 106, 0.25);
  border: 8px solid rgba(255, 255, 255, 0.08);
}

.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.social-card {
  display: flex; flex-direction: column; gap: 8px; padding: 20px; text-decoration: none;
  color: var(--text);
}
.social-card i { font-size: 1.5rem; color: var(--gold); }
.social-card span { color: var(--muted); }

.meme-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 16px; }
.meme-grid { display: grid; gap: 14px; grid-template-columns: repeat(4, 1fr); }
.meme-tile { padding: 42px 20px; text-align: center; font-weight: 700; color: #dbefe5; }

.timeline { display: grid; gap: 12px; }
.timeline-item { position: relative; padding-left: 28px; }
.timeline-item::before {
  content: "";
  position: absolute; left: 12px; top: 25px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.faq-wrap { max-width: 860px; }
.faq-item { padding: 12px 16px; margin-bottom: 10px; }
.faq-item summary { cursor: pointer; font-weight: 700; }

.footer { border-top: 1px solid var(--line); padding: 26px 0; background: rgba(2, 10, 6, 0.8); }
.footer-grid { display: grid; gap: 8px; justify-items: center; text-align: center; color: var(--muted); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a { color: var(--gold); text-decoration: none; }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@media (max-width: 980px) {
  .hero-grid, .about-grid, .tokenomics-grid, .impact-grid, .launch-grid, .grid-4, .social-grid, .meme-grid, .trust-strip {
    grid-template-columns: 1fr 1fr;
  }
  .nav { display: none; }
}

@media (max-width: 680px) {
  .hero-grid, .about-grid, .tokenomics-grid, .impact-grid, .launch-grid, .grid-4, .social-grid, .meme-grid, .trust-strip {
    grid-template-columns: 1fr;
  }
  .section { padding: 56px 0; }
  .mascot-card img { height: 300px; }
  .meme-head { flex-direction: column; align-items: flex-start; }
  .topbar .btn-sm { display: none; }
}
