/* ===========================
   VAULTMARCH — STYLE SYSTEM
   =========================== */

/* ---- Variables ---- */
:root {
  --color-bg:         #06050e;
  --color-bg-2:       #0c0a1a;
  --color-bg-3:       #110e25;
  --color-surface:    rgba(255,255,255,0.04);
  --color-surface-2:  rgba(255,255,255,0.08);
  --color-border:     rgba(255,255,255,0.08);

  --color-primary:    #8b5cf6;
  --color-primary-2:  #a78bfa;
  --color-gold:       #f5c542;
  --color-gold-2:     #ffd700;
  --color-warrior:    #c084fc;
  --color-mage:       #60a5fa;
  --color-rogue:      #34d399;

  --font-display:     'Cinzel', serif;
  --font-body:        'Inter', sans-serif;

  --radius-sm:        8px;
  --radius-md:        14px;
  --radius-lg:        20px;

  --transition:       0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: #e2e8f0;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139,92,246,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  box-shadow: 0 6px 30px rgba(139,92,246,0.6);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #e2e8f0;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.btn-lg { padding: 14px 32px; font-size: 0.95rem; }
.btn-sm { padding: 8px 18px; font-size: 0.78rem; }

.btn-warrior { background: linear-gradient(135deg, #8b5cf6, #6d28d9); color: #fff; box-shadow: 0 4px 16px rgba(139,92,246,0.4); }
.btn-warrior:hover { box-shadow: 0 6px 24px rgba(139,92,246,0.6); transform: translateY(-2px); }
.btn-mage    { background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: #fff; box-shadow: 0 4px 16px rgba(59,130,246,0.4); }
.btn-mage:hover { box-shadow: 0 6px 24px rgba(59,130,246,0.6); transform: translateY(-2px); }
.btn-rogue   { background: linear-gradient(135deg, #10b981, #065f46); color: #fff; box-shadow: 0 4px 16px rgba(16,185,129,0.4); }
.btn-rogue:hover { box-shadow: 0 6px 24px rgba(16,185,129,0.6); transform: translateY(-2px); }

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary-2);
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.3);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 0 40px rgba(139,92,246,0.3);
}
.section-desc {
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* ==================
   NAVIGATION
   ================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: rgba(6,5,14,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 8px rgba(0,200,81,0.6));
  transition: filter var(--transition), transform var(--transition);
}
.logo:hover .logo-img {
  filter: drop-shadow(0 0 14px rgba(0,200,81,0.9));
  transform: scale(1.08);
}
.logo-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px #8b5cf6);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
.logo-text .accent { color: var(--color-gold); }

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #94a3b8;
  transition: color var(--transition);
  font-family: var(--font-display);
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  display: flex;
  gap: 10px;
  margin-left: 24px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6,5,14,0.97);
  z-index: 999;
  padding: 100px 24px 40px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #e2e8f0;
}

/* ==================
   HERO SECTION
   ================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.35;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,5,14,0.3) 0%,
    rgba(6,5,14,0.5) 50%,
    rgba(6,5,14,0.95) 90%,
    var(--color-bg) 100%
  );
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-up linear infinite;
  opacity: 0;
}
@keyframes float-up {
  0%   { transform: translateY(0) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.35);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-primary-2);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.15s both;
}
.hero-title-line1 {
  display: block;
  font-size: clamp(3rem, 10vw, 7rem);
  color: #fff;
  text-shadow: 0 0 60px rgba(139,92,246,0.5), 0 0 120px rgba(139,92,246,0.2);
  letter-spacing: 0.05em;
}
.hero-title-line2 {
  display: block;
  font-size: clamp(2rem, 7vw, 5rem);
  background: linear-gradient(90deg, #f5c542, #ffd700, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.15em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #94a3b8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.9s ease 0.3s both;
}
.hero-subtitle strong { color: var(--color-primary-2); }

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.9s ease 0.45s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s both;
}
.stat-item {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #a78bfa, #f5c542);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.75rem;
  color: #64748b;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.2s both;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #475569;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #475569;
  border-bottom: 2px solid #475569;
  transform: rotate(45deg);
  animation: bounce-arrow 1.5s ease infinite;
}
@keyframes bounce-arrow {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ==================
   ABOUT SECTION
   ================== */
.about {
  padding: 120px 0;
  background: var(--color-bg-2);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(139,92,246,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(139,92,246,0.1);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(139,92,246,0.5));
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.9rem; color: #94a3b8; line-height: 1.7; }

/* ==================
   CLASSES SECTION
   ================== */
.classes {
  padding: 120px 0;
  background: var(--color-bg);
  position: relative;
}
.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.class-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.class-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.class-card.warrior:hover { border-color: rgba(192,132,252,0.4); }
.class-card.mage:hover    { border-color: rgba(96,165,250,0.4); }
.class-card.rogue:hover   { border-color: rgba(52,211,153,0.4); }

.class-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.class-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.class-card:hover .class-img-wrap img { transform: scale(1.06); }

.class-img-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  pointer-events: none;
}
.warrior-glow { background: linear-gradient(to top, rgba(139,92,246,0.7), transparent); }
.mage-glow    { background: linear-gradient(to top, rgba(59,130,246,0.7), transparent); }
.rogue-glow   { background: linear-gradient(to top, rgba(16,185,129,0.7), transparent); }

.class-info { padding: 28px; }
.class-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.warrior .class-badge { background: rgba(192,132,252,0.15); color: #c084fc; border: 1px solid rgba(192,132,252,0.3); }
.mage .class-badge    { background: rgba(96,165,250,0.15); color: #60a5fa; border: 1px solid rgba(96,165,250,0.3); }
.rogue .class-badge   { background: rgba(52,211,153,0.15); color: #34d399; border: 1px solid rgba(52,211,153,0.3); }

.class-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.class-info p { font-size: 0.88rem; color: #94a3b8; line-height: 1.7; margin-bottom: 20px; }

.class-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.class-stats li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.class-stats li span {
  font-size: 0.75rem;
  color: #64748b;
  width: 60px;
  flex-shrink: 0;
}
.stat-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.stat-fill {
  height: 100%;
  width: var(--fill, 0%);
  border-radius: 4px;
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.warrior .stat-fill { background: linear-gradient(90deg, #6d28d9, #c084fc); }
.mage    .stat-fill { background: linear-gradient(90deg, #1d4ed8, #60a5fa); }
.rogue   .stat-fill { background: linear-gradient(90deg, #065f46, #34d399); }

/* ==================
   GAMEPLAY SECTION
   ================== */
.gameplay {
  padding: 120px 0;
  background: var(--color-bg-2);
  position: relative;
  overflow: hidden;
}
.gameplay::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.3);
}
.step-num {
  position: absolute;
  top: -12px; left: 20px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  background: var(--color-bg-2);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 50px;
  padding: 2px 10px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.step p { font-size: 0.82rem; color: #94a3b8; line-height: 1.7; }

.step-arrow {
  font-size: 1.5rem;
  color: rgba(139,92,246,0.4);
  align-self: center;
  padding-top: 20px;
  flex-shrink: 0;
}

/* ==================
   TOKENOMICS SECTION
   ================== */
.tokenomics {
  padding: 120px 0;
  background: var(--color-bg);
}
.token-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.token-symbol-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.token-logo {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0 30px rgba(139,92,246,0.5);
}
.token-sym {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.token-chain {
  font-size: 0.78rem;
  color: var(--color-primary-2);
  letter-spacing: 0.05em;
}

.token-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.token-meta-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px;
}
.meta-label {
  display: block;
  font-size: 0.7rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.meta-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.token-uses h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.token-uses ul li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: #94a3b8;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Donut Chart */
.chart-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.donut-svg {
  width: 280px; height: 280px;
  transform: rotate(-90deg);
  filter: drop-shadow(0 0 20px rgba(139,92,246,0.3));
}
.donut-seg { transition: stroke-dasharray 0.5s ease; }
.seg1 { stroke: #8b5cf6; }
.seg2 { stroke: #f5c542; }
.seg3 { stroke: #3b82f6; }
.seg4 { stroke: #10b981; }
.seg5 { stroke: #f97316; }
.donut-center-label {
  transform: rotate(90deg);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  fill: #fff;
  font-weight: 700;
}
.donut-center-sub {
  transform: rotate(90deg);
  font-size: 9px;
  fill: #64748b;
}

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #94a3b8;
}
.legend-item strong {
  margin-left: auto;
  color: #fff;
  font-family: var(--font-display);
}
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot1 { background: #8b5cf6; }
.dot2 { background: #f5c542; }
.dot3 { background: #3b82f6; }
.dot4 { background: #10b981; }
.dot5 { background: #f97316; }

/* ==================
   ROADMAP SECTION
   ================== */
.roadmap {
  padding: 120px 0;
  background: var(--color-bg-2);
}
.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(139,92,246,0.6), rgba(139,92,246,0.1));
}
.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  margin-bottom: 40px;
  opacity: 0.4;
  transition: var(--transition);
}
.timeline-item.done, .timeline-item.active { opacity: 1; }

.timeline-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-bg-2);
  border: 2px solid rgba(139,92,246,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #64748b;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-item.done .timeline-dot {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 20px rgba(139,92,246,0.5);
}
.timeline-item.active .timeline-dot {
  background: linear-gradient(135deg, #f5c542, #d97706);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 20px rgba(245,197,66,0.5);
  animation: pulse-glow 2s ease infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(245,197,66,0.5); }
  50% { box-shadow: 0 0 40px rgba(245,197,66,0.8), 0 0 0 8px rgba(245,197,66,0.1); }
}

.timeline-content {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 4px;
}
.timeline-item.active .timeline-content { border-color: rgba(245,197,66,0.3); }

.timeline-phase {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--color-primary-2);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.timeline-item.active .timeline-phase { color: var(--color-gold); }

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phase-tag {
  font-size: 0.65rem;
  padding: 3px 8px;
  background: rgba(245,197,66,0.2);
  color: var(--color-gold);
  border: 1px solid rgba(245,197,66,0.4);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.timeline-content ul li {
  font-size: 0.85rem;
  color: #94a3b8;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-left: 16px;
  position: relative;
}
.timeline-content ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--color-primary-2);
}
.timeline-item.done .timeline-content ul li::before { color: #10b981; content: '✓'; }

/* ==================
   CTA SECTION
   ================== */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(139,92,246,0.18) 0%, transparent 70%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-rune {
  font-size: 3rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px #8b5cf6);
  animation: spin-slow 10s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1.05rem;
  color: #94a3b8;
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-socials {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #94a3b8;
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(139,92,246,0.15);
  border-color: rgba(139,92,246,0.4);
  color: #fff;
  transform: translateY(-3px);
}

/* ==================
   FOOTER
   ================== */
.footer {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e2e8f0;
  margin-bottom: 20px;
}
.footer-links-col ul li {
  margin-bottom: 10px;
}
.footer-links-col ul li a {
  font-size: 0.85rem;
  color: #64748b;
  transition: color var(--transition);
}
.footer-links-col ul li a:hover { color: #e2e8f0; }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: #475569; }
.footer-disclaimer { font-size: 0.72rem !important; color: #334155 !important; margin-top: 4px; }

/* ==================
   ANIMATIONS
   ================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ==================
   RESPONSIVE
   ================== */
@media (max-width: 900px) {
  .token-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { display: none; }
  .step { max-width: 100%; min-width: 0; width: 100%; }
}

@media (max-width: 600px) {
  .classes-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .token-meta { grid-template-columns: 1fr; }
}
