*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #0f1225;
  background: #0b0b14;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  padding: 20px 16px 48px;
  background: radial-gradient(circle at 20% 10%, #ffde59 0%, #ff7a59 35%, #6f2cff 100%);
  color: #0b0b14;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0 24px;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.5px;
  background: #0b0b14;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 12px;
  font-size: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}

.hero-content {
  display: grid;
  gap: 24px;
}

.hero-text h1 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.1;
}

.hero-text p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.5;
}

.inline-link {
  font-weight: 700;
  text-decoration: underline;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta,
.ghost {
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.cta {
  background: #0b0b14;
  color: #fff;
  box-shadow: 0 10px 20px rgba(11, 11, 20, 0.25);
}

.ghost {
  background: rgba(11, 11, 20, 0.1);
  color: #0b0b14;
}

.hero-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  box-shadow: 0 12px 30px rgba(11, 11, 20, 0.2);
}

.stat {
  background: #0b0b14;
  color: #fff;
  border-radius: 16px;
  padding: 12px;
  display: grid;
  gap: 4px;
  text-align: center;
}

.stat span {
  font-size: 20px;
  font-weight: 800;
}

.stat small {
  font-size: 12px;
  opacity: 0.8;
}

.stat-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  color: #ffde59;
}

.content {
  padding: 32px 16px 48px;
  background: #f4f5ff;
}

.section {
  margin-bottom: 32px;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #141833;
}

.section p {
  margin: 0 0 16px;
  line-height: 1.6;
  font-size: 15px;
}

.grid {
  display: grid;
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(15, 18, 37, 0.08);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  color: #1b2146;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.5;
  font-size: 14px;
}

.footer {
  padding: 24px 16px;
  background: #0b0b14;
  color: #fff;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  gap: 12px;
  flex-wrap: wrap;
}

@media (min-width: 720px) {
  .hero {
    padding: 32px 48px 64px;
  }

  .hero-content {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .content {
    padding: 48px 64px 72px;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
