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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #050608;
  color: #f4f5f7;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  height: 76px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #181b20;
  background: rgba(5, 6, 8, .9);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(15px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 3px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #777;
  border-radius: 50%;
  font-weight: 900;
}

nav {
  display: flex;
  gap: 34px;
  color: #a6a9af;
  font-size: 14px;
}

nav a:hover {
  color: white;
}

.nav-button {
  border: 1px solid #343840;
  padding: 10px 18px;
  border-radius: 7px;
  font-size: 13px;
}

.hero {
  min-height: 700px;
  padding: 100px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 45%, #18202b 0, #080a0d 30%, #050608 60%);
}

.hero-content {
  max-width: 700px;
}

.badge,
.section-label {
  color: #9298a2;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(52px, 7vw, 92px);
  line-height: .98;
  letter-spacing: -4px;
  margin: 22px 0;
}

.hero h1 span {
  color: #aeb6c2;
}

.hero p {
  color: #a7abb3;
  font-size: 18px;
  max-width: 600px;
}

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

.button {
  padding: 13px 22px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
}

.primary {
  background: #f2f3f5;
  color: #08090b;
}

.secondary {
  border: 1px solid #383c44;
  color: #e7e9ed;
}

.hero-orbit {
  width: 360px;
  height: 360px;
  position: relative;
  flex-shrink: 0;
}

.orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid #303640;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
}

.orbit-1 {
  width: 360px;
  height: 160px;
}

.orbit-2 {
  width: 280px;
  height: 280px;
}

.core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 45px;
  font-weight: 900;
  border: 1px solid #666d78;
  box-shadow: 0 0 70px rgba(180,190,205,.12);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #181b20;
  border-bottom: 1px solid #181b20;
}

.stats div {
  padding: 30px;
  border-right: 1px solid #181b20;
  text-align: center;
}

.stats strong {
  display: block;
  font-size: 22px;
}

.stats span {
  color: #777d87;
  font-size: 12px;
}

.section {
  padding: 130px 8%;
}

.section h2,
.developer-section h2,
.community h2 {
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -2px;
  line-height: 1;
  margin: 20px 0;
}

.section-intro {
  max-width: 720px;
  color: #8f949d;
  font-size: 17px;
}

.cards {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #20232a;
  border: 1px solid #20232a;
}

.card {
  background: #08090c;
  padding: 45px;
  min-height: 260px;
}

.card-number {
  color: #5f6570;
  font-size: 12px;
  margin-bottom: 35px;
}

.card h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.card p {
  color: #858a93;
  max-width: 500px;
}

.developer-section {
  padding: 120px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: #080a0d;
  border-top: 1px solid #181b20;
  border-bottom: 1px solid #181b20;
}

.developer-section p {
  color: #858a93;
  max-width: 550px;
}

.code-box {
  background: #050608;
  border: 1px solid #252932;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

.code-header {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 14px;
  border-bottom: 1px solid #20232a;
}

.code-header span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555b65;
}

pre {
  padding: 28px;
  overflow-x: auto;
}

code {
  color: #c4cad3;
  font-family: monospace;
  font-size: 14px;
}

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

.wallet-item {
  padding: 35px;
  border: 1px solid #20232a;
  border-radius: 8px;
}

.wallet-item h3 {
  margin-bottom: 10px;
}

.wallet-item p {
  color: #858a93;
}

.community {
  padding: 140px 8%;
  text-align: center;
  background:
    radial-gradient(circle at center, #151a22 0, #050608 55%);
}

.community p {
  color: #858a93;
}

.community-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.community-links a {
  border: 1px solid #343840;
  padding: 12px 24px;
  border-radius: 7px;
}

footer {
  padding: 35px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #181b20;
  color: #686e78;
  font-size: 12px;
}

@media (max-width: 800px) {
  nav {
    display: none;
  }

  .hero {
    padding-top: 70px;
    padding-bottom: 80px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-orbit {
    align-self: center;
    transform: scale(.75);
    margin: -30px 0;
  }

  .stats,
  .cards,
  .developer-section,
  .wallet-grid {
    grid-template-columns: 1fr;
  }

  .developer-section {
    gap: 50px;
  }

  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
