* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #0a0a0f;
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}
header {
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00d4aa;
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #00d4aa;
}
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 50% 100%, rgba(0,212,170,0.08), transparent 70%);
}
.hero h1 {
  font-size: 5rem;
  font-weight: 800;
  color: #00d4aa;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
}
.subtitle {
  font-size: 1.3rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.hero-desc {
  font-size: 1.1rem;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.metrics {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.metric {
  text-align: center;
}
.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  display: block;
}
.metric-label {
  font-size: 0.9rem;
  color: #666;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.btn {
  display: inline-block;
  background: #00d4aa;
  color: #000;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.btn:hover {
  background: #00b892;
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: #00d4aa;
  border: 1px solid #00d4aa;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-outline:hover {
  background: rgba(0,212,170,0.1);
}
section {
  padding: 5rem 5%;
  text-align: center;
}
h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}
h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  background: #00d4aa;
  margin: 1rem auto 0;
}
.steps {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem;
  width: 280px;
  transition: transform 0.3s;
}
.step:hover {
  transform: translateY(-5px);
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.tokenomics-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
}
.partners-logos {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.partner-placeholder {
  background: rgba(255,255,255,0.05);
  padding: 2rem 3rem;
  border-radius: 8px;
  font-weight: 600;
}
footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: #aaa;
  text-decoration: none;
}
.footer-links a:hover {
  color: #00d4aa;
}
