* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #070b16;
  color: #ffffff;
  line-height: 1.6;
}

.navbar {
  width: 100%;
  padding: 18px 7%;
  background: rgba(7, 11, 22, 0.92);
  border-bottom: 1px solid rgba(96, 165, 250, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 99;
  backdrop-filter: blur(12px);
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #60a5fa;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  color: #dbeafe;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #38bdf8;
}

.hero {
  min-height: 88vh;
  padding: 80px 7%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), transparent 35%),
    radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.22), transparent 35%),
    linear-gradient(135deg, #070b16, #0f172a);
}

.hero-content {
  max-width: 950px;
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 999px;
  color: #7dd3fc;
  background: rgba(14, 165, 233, 0.08);
  margin-bottom: 25px;
  font-size: 14px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 22px;
  background: linear-gradient(90deg, #60a5fa, #38bdf8, #93c5fd);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 19px;
  color: #dbeafe;
  max-width: 850px;
  margin: auto;
}

.hero-buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.primary {
  background: #2563eb;
  color: #ffffff;
}

.primary:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
}

.secondary {
  border: 1px solid #38bdf8;
  color: #38bdf8;
}

.secondary:hover {
  background: rgba(56, 189, 248, 0.12);
  transform: translateY(-3px);
}

.stats {
  padding: 40px 7%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #0b1020;
}

.stat-card {
  padding: 25px;
  border-radius: 18px;
  background: #111827;
  border: 1px solid rgba(96, 165, 250, 0.2);
  text-align: center;
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.12);
}

.stat-card h3 {
  font-size: 36px;
  color: #38bdf8;
}

.stat-card p {
  color: #cbd5e1;
  font-size: 14px;
}

.section {
  padding: 75px 7%;
}

.section h2 {
  font-size: 38px;
  color: #60a5fa;
  margin-bottom: 12px;
}

.section-subtitle {
  color: #cbd5e1;
  margin-bottom: 32px;
  max-width: 900px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card,
.token-card,
.proof-card,
.timeline-item {
  background: #111827;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 0 22px rgba(37, 99, 235, 0.12);
  transition: 0.3s;
}

.card:hover,
.token-card:hover,
.proof-card:hover,
.timeline-item:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.45);
}

.card h3,
.token-card h3,
.proof-card h3,
.timeline-item h3 {
  color: #38bdf8;
  margin-bottom: 14px;
}

.card p,
.token-card p,
.proof-card p,
.timeline-item p {
  color: #e5e7eb;
}

ul {
  margin-left: 20px;
}

li {
  margin-bottom: 10px;
  color: #e5e7eb;
}

.tokenomics-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight {
  margin-top: 24px;
  border-color: rgba(56, 189, 248, 0.45);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.final {
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(37, 99, 235, 0.24), transparent 50%),
    #0b1020;
}

.role-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px 0;
}

.role-list span {
  padding: 12px 18px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #dbeafe;
  border-radius: 999px;
  font-weight: bold;
}

.final p {
  max-width: 850px;
  margin: auto;
  color: #dbeafe;
}

footer {
  padding: 25px 7%;
  text-align: center;
  background: #070b16;
  color: #94a3b8;
  border-top: 1px solid rgba(96, 165, 250, 0.18);
}

@media (max-width: 950px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 40px;
  }

  .stats,
  .grid,
  .tokenomics-box,
  .timeline,
  .proof-grid {
    grid-template-columns: 1fr;
  }
}