/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C9A227;
  --gold-light: #F0C040;
  --gold-dim:   #8B6F1E;
  --teal:       #0AA89E;
  --teal-light: #0DD4C8;
  --green:      #16a34a;
  --green-light: #22c55e;
  --red:        #E63946;
  --red-dark:   #C1121F;
  --bg:         #06060a;
  --bg2:        #0d0d14;
  --bg3:        #13131e;
  --text:       #e8e8f0;
  --text-muted: #7a7a9a;
  --border:     rgba(201, 162, 39, 0.2);
  --border-teal: rgba(10, 168, 158, 0.2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(6, 6, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #14F195, #9945FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 40px; height: 40px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.btn-nav {
  background: var(--green);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 12px rgba(22, 163, 74, 0.4);
}

.btn-nav:hover { background: var(--green-light); transform: translateY(-1px); }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1a1205 0%, var(--bg) 70%);
}

.rings-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  animation: ring-pulse 6s ease-in-out infinite;
}

.ring-1 { width: 300px; height: 300px; animation-delay: 0s; }
.ring-2 { width: 520px; height: 520px; animation-delay: 1s; border-color: rgba(201,162,39,0.12); }
.ring-3 { width: 750px; height: 750px; animation-delay: 2s; border-color: rgba(201,162,39,0.07); }

@keyframes ring-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.02); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 1.5rem;
}

.hero-logo {
  font-family: 'Cinzel', serif;
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #14F195, #9945FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 120px; height: 120px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 0 40px rgba(201,162,39,0.3), inset 0 0 40px rgba(201,162,39,0.05);
  animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
  0%, 100% { box-shadow: 0 0 40px rgba(201,162,39,0.3), inset 0 0 40px rgba(201,162,39,0.05); }
  50%       { box-shadow: 0 0 70px rgba(201,162,39,0.6), inset 0 0 60px rgba(201,162,39,0.1); }
}

#hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  border: 1px solid var(--gold);
  transition: background 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  background: rgba(201,162,39,0.1);
  transform: translateY(-2px);
}

.btn-secondary.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ===== SECTIONS ===== */
section { padding: 6rem 1.5rem; }
section:nth-child(even) { background: var(--bg2); }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-inner.centered { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

section h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.section-desc strong { color: var(--text); }

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(10, 168, 158, 0.15);
}

.card-icon {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 1rem;
}

.card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== FEE INFO BAR ===== */
.fee-info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  background: rgba(201, 162, 39, 0.07);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.fee-info-item {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.fee-info-item strong { color: var(--gold-light); }

.fee-info-sep {
  color: var(--border);
  font-size: 1rem;
}

@media (max-width: 600px) {
  .fee-info-sep { display: none; }
  .fee-info-bar { flex-direction: column; gap: 0.4rem; }
}

/* ===== FEE SPLIT ===== */
.fee-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.fee-box {
  width: 100%;
  max-width: 520px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.fee-pct {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.fee-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.fee-box p { color: var(--text-muted); font-size: 0.9rem; }

.fee-divider {
  font-size: 2rem;
  color: var(--gold-dim);
  font-weight: 700;
  padding: 0.6rem 0;
  text-align: center;
}

/* ===== FLYWHEEL ===== */
.flywheel {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.step {
  flex: 1;
  min-width: 220px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.step-num {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.6;
  display: block;
  margin-bottom: 0.5rem;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.step p { color: var(--text-muted); font-size: 0.9rem; }

.step-arrow {
  font-size: 2rem;
  color: var(--gold-dim);
  flex-shrink: 0;
}

/* ===== TOKENOMICS ===== */
.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.token-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.token-value {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal-light);
}

.token-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.token-note { font-size: 0.85rem; color: var(--text-muted); }

.ca-box {
  background: var(--bg3);
  border: 1px dashed var(--gold-dim);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ca-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.ca-value {
  font-family: monospace;
  font-size: 0.95rem;
  color: var(--text-muted);
  word-break: break-all;
}

/* ===== ROADMAP ===== */
.roadmap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.phase {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.phase.active {
  opacity: 1;
  border-color: var(--gold);
  position: relative;
}

.phase.active::before {
  content: 'Current';
  position: absolute;
  top: -10px; right: 1.5rem;
  background: var(--gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.phase-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.phase h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.phase ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phase ul li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-left: 1.2rem;
  position: relative;
}

.phase ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 0.5rem;
  top: 0.35em;
}

/* ===== BUY SECTION ===== */
#buy { background: radial-gradient(ellipse at center, #1a1205 0%, var(--bg) 70%); }

.buy-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 3rem 1.5rem;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #14F195, #9945FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 60px; height: 60px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.75rem;
  opacity: 0.5;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== HAMBURGER ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-buy { display: none; }

/* ===== RESPONSIVE 768px ===== */
@media (max-width: 768px) {
  nav {
    padding: 0.9rem 1.2rem;
  }

  .nav-hamburger { display: flex; }
  .btn-nav { display: none; }

  .nav-links {
    display: none;
    position: fixed;
    top: 61px; left: 0; right: 0;
    background: rgba(6, 6, 10, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    z-index: 99;
    padding: 0.5rem 0 1rem;
  }

  .nav-links.open { display: flex; }

  .nav-links li { border-bottom: 1px solid rgba(201, 162, 39, 0.1); }
  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .nav-mobile-buy {
    display: block !important;
    padding: 1rem 1.5rem 0;
    border-top: 1px solid var(--border) !important;
  }

  .nav-mobile-buy a {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--green-light), var(--green));
    color: #fff !important;
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
  }

  /* RINGS — smaller on mobile */
  .ring-1 { width: 220px; height: 220px; }
  .ring-2 { width: 370px; height: 370px; }
  .ring-3 { width: 520px; height: 520px; }

  /* SECTIONS */
  section { padding: 4rem 1.2rem; }
  .section-desc { margin-bottom: 2rem; }

  /* FLYWHEEL */
  .flywheel { flex-direction: column; }
  .step { min-width: unset; }
  .step-arrow { transform: rotate(90deg); width: 100%; text-align: center; }

  /* CA BOX */
  .ca-box { flex-direction: column; gap: 0.5rem; }
  .ca-value { font-size: 0.82rem; }
}

/* ===== RESPONSIVE 480px ===== */
@media (max-width: 480px) {
  .hero-logo { width: 90px; height: 90px; font-size: 3.5rem; }

  section { padding: 3rem 1rem; }

  .btn-primary, .btn-secondary {
    padding: 0.75rem 1.4rem;
    font-size: 0.95rem;
  }

  .fee-pct { font-size: 2.4rem; }

  #tokenomics .token-grid {
    grid-template-columns: 1fr 1fr;
  }

  .phase { padding: 1.5rem; }

  .buy-buttons { flex-direction: column; align-items: center; }
  .buy-buttons .btn-primary,
  .buy-buttons .btn-secondary { width: 100%; text-align: center; }
}
