/* Google Fonts: Bungee (headline), Nunito (body) */

:root {
  --bg: #0a0b0f;
  --surface: #0f1117;
  --text: #fff6e5;
  --muted: #ffd7a8;
  --primary: #ff7a00;
  --primary-2: #ffd000;
  --accent: #ffb703;
  --card: #14141a;
  --border: #2a2433;
  --glow: 0 0 30px rgba(255, 122, 0, 0.35), 0 0 60px rgba(255, 208, 0, 0.2);
  --fun-rotate: 1.5deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.no-scroll, body.no-scroll {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: Nunito, Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 600px at 80% -10%, rgba(255, 208, 0, 0.18), transparent 60%),
              radial-gradient(1000px 500px at -10% 10%, rgba(255, 122, 0, 0.12), transparent 60%),
              var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 11, 15, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-text {
  font-family: Bungee, Nunito, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0.6px;
}

.site-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.site-nav a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 22px; height: 2px; background: var(--text); display: block; margin: 5px 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  text-align: left;
  background:
    radial-gradient(600px 260px at 20% 10%, rgba(255,208,0,0.14), transparent 60%),
    radial-gradient(500px 240px at 80% 20%, rgba(255,122,0,0.12), transparent 60%),
    linear-gradient(180deg, rgba(10,11,15,0.2), rgba(10,11,15,0.85));
  border-bottom: 1px solid var(--border);
}

.hero-overlay { position: absolute; inset: 0; box-shadow: inset 0 -120px 120px -60px rgba(10,11,15,0.9); }

.hero-inner { position: relative; padding: 80px 0; display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.hero-copy { align-self: center; }
.hero-visual { align-self: center; justify-self: center; }
.hero-symbol { filter: drop-shadow(0 20px 60px rgba(255,122,0,0.35)); transform: rotate(var(--fun-rotate)); background: transparent; }
.hero-sax { max-width: min(42vw, 520px); height: auto; }

.headline {
  font-family: Bungee, Nunito, Inter, sans-serif;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.05;
  margin: 0 0 14px;
  text-shadow: 0 0 18px rgba(124, 58, 237, 0.35);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(124,58,237,0.0)); }
  50% { filter: drop-shadow(0 0 18px rgba(124,58,237,0.45)); }
}

.tagline {
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 24px;
}

.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--border);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #0b0c11;
  box-shadow: var(--glow);
}

.btn-primary:hover { filter: brightness(1.05); }

.btn-ghost { color: var(--text); background: rgba(255,255,255,0.03); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); }

/* Neon secondary CTA */
.btn-neon {
  position: relative;
  color: #0b0c11;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  box-shadow: 0 0 0 0 rgba(255, 208, 0, 0.6), var(--glow);
  overflow: hidden;
}
.btn-neon::after {
  content: "";
  position: absolute; inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), transparent 40%);
  transform: rotate(25deg);
  pointer-events: none;
}
.btn-neon:hover { filter: brightness(1.06) saturate(1.05); }

/* Sections */
.section { padding: 72px 0; }

.section-head { text-align: center; margin-bottom: 26px; }
.section-head h2 {
  font-family: Bungee, Nunito, Inter, sans-serif;
  font-size: clamp(22px, 3.8vw, 34px);
  margin: 0 0 8px;
}

.section-head p { color: var(--muted); margin: 0 auto; max-width: 780px; }

/* About layout */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 20px; align-items: center; }
.about-img { justify-self: center; filter: drop-shadow(0 14px 44px rgba(255,122,0,0.35)); transform: rotate(-4deg); background: transparent; }
.about-copy { text-align: left; }

/* Tokenomics */
.token-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.token-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  transform: rotate(calc(var(--fun-rotate) * (var(--i, 0))));
}

.token-card h3 { margin: 10px 0 6px; }
.token-card .percent { color: var(--accent); font-weight: 700; margin: 0 0 8px; }
.token-card p { margin: 0; color: var(--muted); }

/* Roadmap */
.timeline {
  position: relative;
  margin: 30px auto 0;
  padding-left: 0;
  list-style: none;
  max-width: 760px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--primary), var(--primary-2));
  opacity: 0.6;
}

.timeline-item { position: relative; display: grid; grid-template-columns: 60px 1fr; gap: 14px; padding: 10px 0; }
.timeline-item .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 183, 3, 0.18), 0 0 20px rgba(255,183,3,0.45);
  position: relative; top: 6px; left: 14px;
}

.timeline-item .content { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.timeline-item h3 { margin: 0 0 6px; font-size: 18px; }
.timeline-item p { margin: 0; color: var(--muted); }

/* Decorative section art */
.section-art { position: relative; display: block; margin: 18px auto 0; opacity: 0.95; filter: drop-shadow(0 10px 36px rgba(255,122,0,0.35)); background: transparent; }
.section-art.right { float: right; transform: rotate(10deg); margin-left: 14px; }
.section-art.left { float: left; transform: rotate(-10deg); margin-right: 14px; }

/* Community */
.socials { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 680px; margin: 0 auto; }
.social {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  border: 1px solid var(--border); border-radius: 12px; padding: 12px;
  color: var(--text); text-decoration: none; background: rgba(255,255,255,0.02);
}
.social:hover { background: rgba(255,255,255,0.05); }

/* Center the Community section heading */
.community .section-head { text-align: center; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); }
.site-footer .container { padding: 20px 0; text-align: center; color: var(--muted); font-size: 14px; }

/* Floating sticker removed */

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero { text-align: center; }
  .about-grid { grid-template-columns: 1fr; }
  .token-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .site-nav { position: fixed; inset: 60px 0 auto; top: 56px; background: rgba(10, 11, 15, 0.95); border-bottom: 1px solid var(--border); transform: translateY(-120%); transition: transform 200ms ease; }
  .site-nav.open { transform: translateY(0); }
  .site-nav ul { flex-direction: column; padding: 16px; }
  .nav-toggle { display: inline-block; }
  .timeline { max-width: 100%; }
  .timeline::before { left: 14px; }
  .timeline-item { grid-template-columns: 46px 1fr; }
}

@media (max-width: 520px) {
  .token-grid { grid-template-columns: 1fr; }
  .socials { grid-template-columns: 1fr; }
}

/* Fun Zone removed */


