/* ====================================================
   $DRAGON — The First Dragon Token — Main Stylesheet
   ==================================================== */

:root {
  --gold:        #f59e0b;
  --gold-light:  #fbbf24;
  --gold-dark:   #d97706;
  --red:         #ef4444;
  --red-deep:    #b91c1c;
  --orange:      #fb923c;
  --dark:        #080400;
  --dark-2:      #0d0500;
  --dark-3:      #110800;
  --text:        #e5d5b0;
  --text-muted:  #a08050;
  --border:      rgba(245,158,11,0.25);
  --shadow-fire: 0 0 40px rgba(245,158,11,0.4), 0 0 80px rgba(239,68,68,0.2);
}

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

html {
  font-size: 16px;
  height: 100%;
  overflow: hidden;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#scroller {
  flex: 1;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* ── FIRE CANVAS ───────────────────────────────── */
#fireCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

/* ── EMBERS ─────────────────────────────────────── */
#embers {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.ember {
  position: absolute;
  bottom: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px 2px var(--gold);
  animation: emberRise linear infinite;
  opacity: 0;
}
@keyframes emberRise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 1; }
  40%  { opacity: 0.8; }
  80%  { transform: translateY(-70vh) translateX(var(--drift)) scale(0.3); opacity: 0.3; }
  100% { transform: translateY(-90vh) translateX(var(--drift)) scale(0); opacity: 0; }
}

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Cinzel Decorative', serif; }

.fire-text {
  background: linear-gradient(135deg, #fff9c4 0%, #fbbf24 25%, #f59e0b 50%, #ef4444 75%, #b91c1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(245,158,11,0.7));
}

/* ── BUTTONS ────────────────────────────────────── */
.btn-fire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65em 1.8em;
  background: linear-gradient(135deg, #f59e0b, #ef4444, #b91c1c);
  background-size: 200% 200%;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: gradientShift 3s ease infinite;
  text-transform: uppercase;
}
.btn-fire::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #fbbf24, #ef4444, #f59e0b);
  border-radius: 5px;
  z-index: -1;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-fire:hover { transform: translateY(-2px) scale(1.03); }
.btn-fire:hover::before { opacity: 1; }
.btn-fire.large { font-size: 1rem; padding: 0.8em 2.5em; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65em 1.8em;
  background: transparent;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  border: 2px solid var(--gold);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: rgba(245,158,11,0.1);
  box-shadow: 0 0 20px rgba(245,158,11,0.3);
  transform: translateY(-2px);
}
.btn-outline.large { font-size: 1rem; padding: 0.8em 2.5em; }

.pulse-fire {
  animation: gradientShift 3s ease infinite, pulseFire 2s ease-in-out infinite;
}
@keyframes pulseFire {
  0%, 100% { box-shadow: 0 0 20px rgba(239,68,68,0.5), 0 0 40px rgba(245,158,11,0.3); }
  50% { box-shadow: 0 0 40px rgba(239,68,68,0.8), 0 0 80px rgba(245,158,11,0.6), 0 0 120px rgba(239,68,68,0.3); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── LAYOUT ─────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }

section { position: relative; z-index: 1; padding: 6rem 0; isolation: isolate; }

/* ── NAVBAR ─────────────────────────────────────── */
#navbar {
  position: relative;
  z-index: 9999;
  padding: 0.3rem 0;
  background: #000;
  border-bottom: 1px solid rgba(245,158,11,0.25);
  box-shadow: 0 2px 20px rgba(0,0,0,0.9);
  flex-shrink: 0;
  transition: box-shadow 0.4s ease;
}
#navbar.scrolled {
  box-shadow: 0 4px 30px rgba(245,158,11,0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo img { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(245,158,11,0.8)); }
.nav-brand {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fbbf24, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin-left: auto;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: color 0.3s, text-shadow 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(245,158,11,0.8);
}
.nav-cta { margin-left: 1.5rem; font-size: 0.8rem !important; }
.hamburger { display: none; background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 2rem 1.5rem;
  background: rgba(8,4,0,0.98);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(245,158,11,0.1);
}
.mobile-menu .btn-fire {
  font-size: 0.75rem !important;
  padding: 0.55em 1.4em !important;
  align-self: center;
  border-bottom: none;
  margin-top: 0.3rem;
}

/* ── HERO ────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(239,68,68,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 80%, rgba(245,158,11,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(8,4,0,0.3) 0%, rgba(8,4,0,0.95) 100%);
  z-index: 0;
}

.hero-smoke {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  padding: 7rem 2rem 4rem;
}

.hero-logo-wrap {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo {
  width: 280px;
  height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(245,158,11,1)) drop-shadow(0 0 60px rgba(239,68,68,0.6));
  animation: dragonFloat 4s ease-in-out infinite, dragonGlow 2s ease-in-out infinite alternate;
  position: relative;
  z-index: 2;
}
@keyframes dragonFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}
@keyframes dragonGlow {
  0% { filter: drop-shadow(0 0 20px rgba(245,158,11,0.8)) drop-shadow(0 0 50px rgba(239,68,68,0.4)); }
  100% { filter: drop-shadow(0 0 50px rgba(245,158,11,1)) drop-shadow(0 0 100px rgba(239,68,68,0.8)) drop-shadow(0 0 150px rgba(245,158,11,0.4)); }
}
.hero-logo-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245,158,11,0.4) 0%, transparent 70%);
  animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-text { flex: 1; }

.hero-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.35em 1em;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  animation: tagPulse 3s ease-in-out infinite, tagBorderGlow 2s ease-in-out infinite alternate;
  cursor: default;
}
.hero-tag::before, .hero-tag::after {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite alternate;
}
.hero-tag::before { left: -10px; animation-delay: 0s; }
.hero-tag::after  { right: -10px; animation-delay: 0.75s; }

.hero-tag .tag-shine {
  position: absolute;
  top: 0; left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,200,50,0.35) 50%, transparent 100%);
  animation: tagShine 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes tagPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}
@keyframes tagBorderGlow {
  0%   { box-shadow: 0 0 6px rgba(245,158,11,0.4), inset 0 0 6px rgba(245,158,11,0.05); border-color: rgba(245,158,11,0.6); }
  100% { box-shadow: 0 0 20px rgba(245,158,11,0.9), 0 0 40px rgba(239,68,68,0.4), inset 0 0 12px rgba(245,158,11,0.1); border-color: rgba(245,158,11,1); }
}
@keyframes dotPulse {
  0%   { transform: translateY(-50%) scale(0.7); opacity: 0.5; box-shadow: none; }
  100% { transform: translateY(-50%) scale(1.3); opacity: 1; box-shadow: 0 0 8px 3px var(--gold); }
}
@keyframes tagShine {
  0%   { left: -80%; opacity: 0; }
  20%  { opacity: 1; }
  60%  { left: 130%; opacity: 0; }
  100% { left: 130%; opacity: 0; }
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1;
  margin-bottom: 0.2em;
  letter-spacing: 0.02em;
}

.hero-ticker {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
  text-shadow: 0 0 20px rgba(245,158,11,0.6);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.85;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-pill .stat-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fbbf24, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-pill span:not(.stat-num):not(.stat-label) {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold);
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3em;
}
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  opacity: 0.6;
}
.scroll-indicator span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}
.scroll-indicator p { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── TICKER MARQUEE ─────────────────────────────── */
.ticker-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(239,68,68,0.1));
  border-top: 1px solid rgba(245,158,11,0.3);
  border-bottom: 1px solid rgba(245,158,11,0.3);
  padding: 0.75rem 0;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(245,158,11,0.5);
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION COMMON ─────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.8;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.title-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #ef4444, #f59e0b);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 12px rgba(245,158,11,0.6);
  animation: underlineShimmer 2s ease-in-out infinite;
}
@keyframes underlineShimmer {
  0%,100% { background-position: 0% 50%; box-shadow: 0 0 12px rgba(245,158,11,0.4); }
  50% { box-shadow: 0 0 25px rgba(245,158,11,0.9), 0 0 50px rgba(239,68,68,0.4); }
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* fire borders between sections */
.section-fire-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ef4444, #f59e0b, #ef4444, transparent);
  box-shadow: 0 0 20px rgba(239,68,68,0.6), 0 0 40px rgba(245,158,11,0.3);
}
.section-fire-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #f59e0b, #ef4444, #f59e0b, transparent);
  box-shadow: 0 0 20px rgba(239,68,68,0.6), 0 0 40px rgba(245,158,11,0.3);
}

/* ── ABOUT ───────────────────────────────────────── */
#about {
  background: linear-gradient(180deg, rgba(8,4,0,0) 0%, rgba(15,6,0,0.8) 50%, rgba(8,4,0,0) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.dragon-orb {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.about-dragon-img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 0 20px rgba(245,158,11,0.9)) drop-shadow(0 0 40px rgba(239,68,68,0.5));
  animation: dragonFloat 5s ease-in-out infinite;
}
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: orbSpin linear infinite;
}
.orb-ring-1 { width: 300px; height: 300px; border-color: rgba(245,158,11,0.5); animation-duration: 8s; }
.orb-ring-2 { width: 330px; height: 330px; border-color: rgba(239,68,68,0.3); animation-duration: 12s; animation-direction: reverse; }
.orb-ring-3 { width: 360px; height: 360px; border-color: rgba(251,146,60,0.2); animation-duration: 6s; }
@keyframes orbSpin { to { transform: rotate(360deg); } }
.orb-fire-base {
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 60px;
  background: radial-gradient(ellipse, rgba(239,68,68,0.8) 0%, rgba(245,158,11,0.4) 40%, transparent 70%);
  filter: blur(15px);
  animation: fireBase 1.5s ease-in-out infinite alternate;
}
@keyframes fireBase {
  0% { transform: translateX(-50%) scaleX(0.8); opacity: 0.7; }
  100% { transform: translateX(-50%) scaleX(1.2); opacity: 1; }
}

.about-lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  opacity: 0.85;
  margin-bottom: 1.2rem;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5em 1.2em;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 2px;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  transition: all 0.3s;
}
.badge:hover {
  background: rgba(245,158,11,0.15);
  box-shadow: 0 0 15px rgba(245,158,11,0.3);
  transform: translateY(-2px);
}
.badge-icon { font-size: 1rem; }

/* ── WHY DRAGON ──────────────────────────────────── */
#why {
  background: radial-gradient(ellipse 100% 60% at 50% 50%, rgba(15,6,0,0.9) 0%, rgba(8,4,0,0.5) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  position: relative;
  cursor: pointer;
  animation: fadeInUp 0.6s ease both;
}
.why-card[data-delay="100"] { animation-delay: 0.1s; }
.why-card[data-delay="200"] { animation-delay: 0.2s; }
.why-card[data-delay="300"] { animation-delay: 0.3s; }
.why-card[data-delay="400"] { animation-delay: 0.4s; }
.why-card[data-delay="500"] { animation-delay: 0.5s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.why-card-inner {
  position: relative;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(15,6,0,0.9) 0%, rgba(20,8,0,0.8) 100%);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}
.why-card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f59e0b, transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.why-card:hover .why-card-inner {
  border-color: rgba(245,158,11,0.5);
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(20,8,0,0.95) 0%, rgba(30,10,0,0.9) 100%);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(245,158,11,0.15);
}
.why-card:hover .why-card-inner::before { opacity: 1; }

.why-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.why-icon svg {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 0 8px rgba(245,158,11,0.7)) drop-shadow(0 0 16px rgba(239,68,68,0.4));
  transition: filter 0.4s ease, transform 0.4s ease;
  animation: iconBreath 3s ease-in-out infinite alternate;
}
.why-card:hover .why-icon svg {
  filter: drop-shadow(0 0 16px rgba(245,158,11,1)) drop-shadow(0 0 32px rgba(239,68,68,0.7));
  transform: scale(1.15) translateY(-4px);
}
@keyframes iconBreath {
  0%   { filter: drop-shadow(0 0 6px rgba(245,158,11,0.5)) drop-shadow(0 0 12px rgba(239,68,68,0.2)); }
  100% { filter: drop-shadow(0 0 14px rgba(245,158,11,0.9)) drop-shadow(0 0 28px rgba(239,68,68,0.5)); }
}
.why-card-inner h3 {
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}
.why-card-inner p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.8;
}
.card-glow {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.4s;
}
.why-card:hover .card-glow {
  width: 200px; height: 200px;
  bottom: -60px; right: -60px;
  background: radial-gradient(circle, rgba(245,158,11,0.35) 0%, transparent 70%);
}

/* ── TOKENOMICS ──────────────────────────────────── */
#tokenomics {
  background: linear-gradient(180deg, rgba(8,4,0,0) 0%, rgba(12,5,0,0.9) 50%, rgba(8,4,0,0) 100%);
  padding: 3rem 0;
  scroll-margin-top: 0;
}
#tokenomics .section-header {
  margin-bottom: 1.8rem;
}
#tokenomics .section-sub {
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

.tokenomics-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.tokenomics-single {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.token-ca-wrap {
  margin-top: 1.8rem;
  text-align: center;
}
.token-ca-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.9rem 1.4rem;
  font-family: 'Rajdhani', monospace;
  font-size: 0.88rem;
  color: var(--text-muted);
  word-break: break-all;
}
.token-ca-box .ca-copy {
  flex-shrink: 0;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  border: none;
  padding: 0.5em 1.3em;
  border-radius: 3px;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}
.token-ca-box .ca-copy:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(245,158,11,0.6);
}
.token-action-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.token-chart-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.donut-container {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.donut-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 0 20px rgba(245,158,11,0.5));
}
.donut-bg {
  fill: none;
  stroke: rgba(245,158,11,0.08);
  stroke-width: 30;
}
.donut-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.donut-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(245,158,11,0.8));
  animation: dragonFloat 4s ease-in-out infinite;
}
.donut-label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.donut-supply {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fbbf24, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.donut-fire-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: transparent;
  box-shadow:
    0 0 30px rgba(245,158,11,0.3),
    0 0 60px rgba(239,68,68,0.15),
    inset 0 0 30px rgba(245,158,11,0.05);
  animation: donutGlow 2s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes donutGlow {
  0% { box-shadow: 0 0 20px rgba(245,158,11,0.2), 0 0 40px rgba(239,68,68,0.1); }
  100% { box-shadow: 0 0 50px rgba(245,158,11,0.5), 0 0 100px rgba(239,68,68,0.3); }
}

.token-info-card {
  background: linear-gradient(135deg, rgba(15,6,0,0.9), rgba(20,8,0,0.8));
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.2rem 2rem;
  margin-bottom: 0;
}
.token-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(245,158,11,0.1);
  font-size: 1rem;
}
.token-info-row:last-child { border-bottom: none; }
.ti-label { color: var(--text-muted); font-size: 1.05rem; letter-spacing: 0.05em; }
.ti-value { font-family: 'Cinzel', serif; color: var(--gold-light); font-weight: 700; font-size: 1.1rem; }

.token-allocation { display: flex; flex-direction: column; gap: 1.2rem; }
.alloc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.alloc-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.alloc-info { flex: 1; }
.alloc-name { display: block; font-size: 0.85rem; color: var(--text); margin-bottom: 0.4rem; }
.alloc-bar-wrap {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.alloc-bar {
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(245,158,11,0.5);
}
.alloc-pct {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--gold);
  min-width: 2.5rem;
  text-align: right;
  font-size: 0.9rem;
}
.alloc-sub {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.05em;
}
.txn-link {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--gold);
  text-decoration: none;
  margin-left: 0.6rem;
  opacity: 0.7;
  transition: opacity 0.2s;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.05em;
}
.txn-link:hover { opacity: 1; text-shadow: 0 0 8px rgba(245,158,11,0.6); }
.badge-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  width: 100%;
}
.badge-link:hover { color: var(--gold-light); }

.tax-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.tax-box {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, rgba(15,6,0,0.9), rgba(20,8,0,0.8));
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.tax-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #f59e0b, transparent);
}
.tax-box:hover {
  transform: translateY(-4px);
  border-color: rgba(245,158,11,0.4);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 20px rgba(245,158,11,0.2);
}
.tax-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.tax-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fbbf24, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.tax-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ── BUY SECTION ─────────────────────────────────── */
#buy { background: rgba(8,4,0,0.5); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.step-card {
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(15,6,0,0.9), rgba(20,8,0,0.8));
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #ef4444, #f59e0b);
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 25px rgba(245,158,11,0.2); border-color: rgba(245,158,11,0.4); }
.step-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(239,68,68,0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 8px rgba(245,158,11,0.7)) drop-shadow(0 0 16px rgba(239,68,68,0.4));
  transition: filter 0.4s ease, transform 0.4s ease;
  animation: iconBreath 3s ease-in-out infinite alternate;
}
.step-card:hover .step-icon svg {
  filter: drop-shadow(0 0 16px rgba(245,158,11,1)) drop-shadow(0 0 32px rgba(239,68,68,0.7));
  transform: scale(1.15) translateY(-4px);
}
.step-card h3 {
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
}
.step-card p { font-size: 0.9rem; line-height: 1.6; color: var(--text); opacity: 0.8; }

.ca-section {
  text-align: center;
  padding: 1.4rem 2rem;
  background: linear-gradient(135deg, rgba(15,6,0,0.9), rgba(20,8,0,0.8));
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.ca-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #f59e0b, #ef4444, #f59e0b, transparent);
}
.ca-label {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.ca-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.8rem 1.5rem;
  font-family: 'Rajdhani', monospace;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
.ca-copy {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  border: none;
  padding: 0.4em 1em;
  border-radius: 2px;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
}
.ca-copy:hover { transform: scale(1.05); box-shadow: 0 0 15px rgba(245,158,11,0.5); }
.copied-msg {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
  font-family: 'Cinzel', serif;
}
.copied-msg.show { opacity: 1; }

/* ── COMMUNITY ───────────────────────────────────── */
#community {
  background: linear-gradient(180deg, rgba(8,4,0,0) 0%, rgba(15,5,0,0.8) 50%, rgba(8,4,0,0) 100%);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto 5rem;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(15,6,0,0.9), rgba(20,8,0,0.8));
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-color, #f59e0b), transparent);
  transition: all 0.3s;
}
.social-card.twitter { --card-color: #1d9bf0; }
.social-card.telegram { --card-color: #229ed9; }
.social-card.discord  { --card-color: #5865f2; }
.social-card.dexscreener { --card-color: #f59e0b; }

.social-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,158,11,0.4);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 30px rgba(245,158,11,0.2);
}
.social-icon { font-size: 2.5rem; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.social-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.social-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; flex: 1; }
.social-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 1rem;
  transition: transform 0.3s;
}
.social-card:hover .social-arrow { transform: translateX(5px); }

.community-cta {
  text-align: center;
  padding: 4rem;
  background: linear-gradient(135deg, rgba(15,6,0,0.9), rgba(20,8,0,0.8));
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.community-cta::before, .community-cta::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ef4444, #f59e0b, #ef4444, transparent);
}
.community-cta::before { top: 0; }
.community-cta::after  { bottom: 0; }
.flame-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #ef4444, #f59e0b);
  margin: 0 auto 2rem;
  box-shadow: 0 0 15px rgba(245,158,11,0.7);
}
.community-cta h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}
.community-cta p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2.5rem; }

/* ── AWAKENED TITLE ─────────────────────────────── */
.awakened-title {
  position: relative;
  display: inline-block;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.aw-word {
  display: inline-block;
  background: linear-gradient(135deg, #fff8e1 0%, #fbbf24 30%, #f59e0b 55%, #ef4444 80%, #b91c1c 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    awWordReveal 0.7s cubic-bezier(0.23,1,0.32,1) both,
    awFireShift 4s ease-in-out infinite alternate,
    awFlicker 6s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.12s), calc(var(--i) * 0.3s), calc(var(--i) * 1.1s);
  margin-right: 0.25em;
  filter: drop-shadow(0 0 12px rgba(245,158,11,0.8));
}

.aw-fire {
  animation:
    awWordReveal 0.7s cubic-bezier(0.23,1,0.32,1) both,
    awFirePulse 1.8s ease-in-out infinite alternate,
    awFlicker 3s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.12s), 0s, 0s;
  filter: drop-shadow(0 0 20px rgba(239,68,68,1)) drop-shadow(0 0 40px rgba(245,158,11,0.7));
}

@keyframes awWordReveal {
  0%   { opacity: 0; transform: translateY(40px) skewX(-8deg) scale(0.85); }
  60%  { transform: translateY(-6px) skewX(2deg) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) skewX(0) scale(1); }
}
@keyframes awFireShift {
  0%   { background-position: 0% 50%; filter: drop-shadow(0 0 8px rgba(245,158,11,0.6)); }
  100% { background-position: 100% 50%; filter: drop-shadow(0 0 20px rgba(245,158,11,1)) drop-shadow(0 0 35px rgba(239,68,68,0.5)); }
}
@keyframes awFirePulse {
  0%   { filter: drop-shadow(0 0 15px #ef4444) drop-shadow(0 0 30px #f59e0b); background-position: 0% 50%; }
  50%  { filter: drop-shadow(0 0 30px #fbbf24) drop-shadow(0 0 60px #ef4444) drop-shadow(0 0 80px rgba(239,68,68,0.4)); }
  100% { filter: drop-shadow(0 0 20px #ef4444) drop-shadow(0 0 50px #f59e0b) drop-shadow(0 0 90px rgba(239,68,68,0.3)); background-position: 100% 50%; }
}
@keyframes awFlicker {
  0%,100% { opacity: 1; }
  92%      { opacity: 1; }
  93%      { opacity: 0.7; }
  94%      { opacity: 1; }
  97%      { opacity: 1; }
  98%      { opacity: 0.5; }
  99%      { opacity: 1; }
}

/* lightning bolt */
.aw-lightning {
  position: absolute;
  top: -8px;
  right: -24px;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, #fff8c0, #fbbf24, #ef4444, transparent);
  border-radius: 2px;
  opacity: 0;
  animation: lightning 6s ease-in-out infinite;
  box-shadow: 0 0 6px 3px rgba(251,191,36,0.8), 0 0 20px 6px rgba(245,158,11,0.5);
  transform-origin: top center;
}
@keyframes lightning {
  0%,89%,100% { opacity: 0; height: 0; }
  90%  { opacity: 1; height: 80px; transform: skewX(-12deg); }
  91%  { opacity: 0.3; }
  92%  { opacity: 1; height: 60px; }
  93%  { opacity: 0; height: 0; }
  95%  { opacity: 0.9; height: 100px; transform: skewX(8deg); }
  96%  { opacity: 0; }
}

.awakened-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  animation: subFade 1s ease both 0.6s;
  opacity: 0;
  animation-fill-mode: forwards;
}
@keyframes subFade {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── FOOTER ──────────────────────────────────────── */
#footer {
  position: relative;
  background: rgba(4,2,0,0.98);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer-fire {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ef4444, #f59e0b, #ef4444, transparent);
  box-shadow: 0 0 20px rgba(239,68,68,0.6);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo { width: 50px; height: 50px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(245,158,11,0.7)); }
.footer-name {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}
.footer-tagline { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.2rem; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 1rem; }
.fsocial {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,158,11,0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1rem;
  text-decoration: none;
  color: var(--gold);
  transition: all 0.3s;
}
.fsocial:hover { background: rgba(245,158,11,0.15); box-shadow: 0 0 15px rgba(245,158,11,0.3); }
.footer-bottom { border-top: 1px solid rgba(245,158,11,0.1); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.6; }
.footer-disclaimer { opacity: 0.5; margin-top: 0.5rem; }

/* ── ANIMATIONS & UTILITIES ──────────────────────── */
/* scroll reveals handled fully by JS */

/* section entrance glow sweep */
section {
  transition: box-shadow 0.6s ease;
}

/* smooth scroll snap feel */
html {
  scroll-behavior: smooth;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .tax-boxes { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 768px) {
  #navbar {
    position: relative !important;
    background: #000 !important;
  }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; margin-left: auto; margin-right: 1.5rem; }

  #hero { margin-top: -15px; }
  .hero-content { flex-direction: column; text-align: center; padding: 5rem 1.5rem 3rem; margin-top: -151px; }
  .hero-logo-wrap { width: 200px; height: 200px; transform: translateY(75px); }
  .hero-logo { width: 180px; height: 180px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub { margin: 0 auto 2.5rem; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .tokenomics-layout { grid-template-columns: 1fr; gap: 3rem; }

  .why-grid { grid-template-columns: 1fr; }
  .tax-boxes { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-socials { justify-content: center; }

  section { padding: 4rem 0; }
  .container { padding: 0 1.2rem; }
}
