* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f8fafc;
  color: #0f172a;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: 900;
}

.nav a {
  margin-left: 22px;
  color: #475569;
  text-decoration: none;
  font-weight: 700;
}

.nav a:hover {
  color: #0f172a;
}

.hero {
  min-height: 80vh;
  padding: 90px 8%;
  background: white;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 45px;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
}

.badge {
  display: inline-block;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 800;
  color: #475569;
}

h1 {
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.95;
  margin: 18px 0;
  letter-spacing: -0.05em;
}

.hero-text p {
  font-size: 19px;
  line-height: 1.8;
  color: #475569;
  max-width: 680px;
}

.buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 15px 22px;
  background: #0f172a;
  color: white;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid #0f172a;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.18);
}

.btn.secondary {
  background: white;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.btn.discord {
  background: #5865f2;
  color: white;
  border: 1px solid #5865f2;
}

.btn.discord:hover {
  background: #4752c4;
  border-color: #4752c4;
}

.btn.large {
  padding: 18px 26px;
  font-size: 17px;
  white-space: nowrap;
}

.dashboard {
  background: #0f172a;
  color: white;
  padding: 30px;
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.25);
}

.dashboard h2 {
  margin-top: 0;
  font-size: 30px;
}

.progress {
  width: 100%;
  height: 11px;
  background: #334155;
  border-radius: 999px;
  overflow: hidden;
  margin: 15px 0 25px;
}

.progress span {
  display: block;
  width: 42%;
  height: 100%;
  background: white;
}

.dash-card {
  background: rgba(255, 255, 255, 0.1);
  margin-top: 14px;
  padding: 18px;
  border-radius: 20px;
  font-weight: 800;
}

.dash-card small {
  display: block;
  color: #cbd5e1;
  margin-top: 5px;
}

.section {
  max-width: 1180px;
  margin: auto;
  padding: 75px 8%;
}

.section h2,
.risk h2 {
  font-size: clamp(34px, 5vw, 55px);
  letter-spacing: -0.04em;
  margin-bottom: 15px;
}

.subtitle {
  color: #64748b;
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.card {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 26px;
  border-radius: 28px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
  margin-bottom: 18px;
}

.card h3 {
  font-size: 24px;
  margin-top: 0;
}

.card p,
.card li {
  color: #475569;
  line-height: 1.7;
}

.risk {
  background: #0f172a;
  color: white;
}

.risk p {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
  max-width: 900px;
}

.checklist {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.checklist div {
  background: white;
  color: #0f172a;
  padding: 18px;
  border-radius: 18px;
  font-weight: 900;
}

.community {
  max-width: 1180px;
}

.community-box {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 34px;
  padding: 45px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.07);
}

footer {
  background: #020617;
  color: #cbd5e1;
  padding: 35px 8%;
  text-align: center;
}

footer strong {
  color: white;
  font-size: 20px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .nav nav {
    display: none;
  }

  .community-box {
    flex-direction: column;
    align-items: flex-start;
  }
}