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

:root {
  --amber: #F59E0B;
  --amber-light: #FBBF24;
  --bnb: #F0B90B;
  --bg: #000;
  --bg-card: #0a0a0a;
  --border: #27272a;
  --text: #fff;
  --text-muted: #a1a1aa;
  --text-dim: #52525b;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

section {
  margin-bottom: 4rem;
}

h1, h2, h3 {
  font-weight: 700;
}

h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 0;
}

.logo {
  font-size: 3rem;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 0.25rem;
}

.ticker {
  color: var(--text-muted);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tagline {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: #000;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 1.125rem;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: scale(1.05);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--amber);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}

.feature-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.feature h3 {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

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

/* Tokenomics */
.tokenomics {
  text-align: center;
}

.token-bar {
  background: var(--border);
  border-radius: 9999px;
  height: 0.5rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.bar-fill {
  background: var(--amber);
  height: 100%;
  border-radius: 9999px;
}

.token-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

/* Why */
.why {
  text-align: center;
}

.why p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--amber);
  font-weight: 600;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Links */
.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.link-grid a {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.875rem;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  transition: all 0.2s;
}

.link-grid a:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* Community */
.community {
  text-align: center;
}

.community-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.community-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.community-links a:hover {
  color: var(--amber);
}

/* CTA */
.cta {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
}

.cta h2 {
  margin-bottom: 0.5rem;
}

.cta p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.keywords {
  font-size: 0.625rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .token-labels {
    flex-direction: column;
    gap: 0.25rem;
  }
}

@media (max-width: 480px) {
  .link-grid {
    grid-template-columns: 1fr;
  }
  
  .logo {
    font-size: 2.25rem;
  }
}
