* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(48, 88, 255, .18), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(117, 49, 255, .10), transparent 35%),
    #080a0f;
  color: #f4f6fb;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.app {
  min-height: 100vh;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 42px;
}

.nav {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.logo {
  font-weight: 900;
  letter-spacing: .16em;
  font-size: 18px;
}

.logo span,
.hero h1 span {
  color: #6384ff;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  letter-spacing: .15em;
  color: #9da7bb;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #58f38a;
  box-shadow: 0 0 15px #58f38a;
}

.hero {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 980px;
}

.eyebrow {
  color: #7f98ff;
  font-size: 12px;
  letter-spacing: .32em;
  font-weight: 700;
  margin-bottom: 28px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(64px, 9vw, 145px);
  line-height: .87;
  letter-spacing: -.065em;
  font-weight: 800;
}

.intro {
  margin: 38px 0 0;
  max-width: 680px;
  font-size: 19px;
  line-height: 1.7;
  color: #929cac;
}

.actions {
  margin-top: 42px;
}

button {
  border: 0;
  padding: 17px 25px;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: .06em;
  cursor: pointer;
}

.primary {
  background: #f3f5fa;
  color: #080a0f;
}

button:hover {
  transform: translateY(-2px);
}

.status-section {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 70px 0 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 34px;
  min-height: 235px;
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}

.number {
  display: block;
  font-size: 11px;
  letter-spacing: .2em;
  color: #6384ff;
  margin-bottom: 45px;
}

.card h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.card p {
  margin: 0;
  color: #8e98a8;
  line-height: 1.6;
}

@media (max-width: 800px) {
  .app {
    padding: 0 22px;
  }

  .nav {
    height: 78px;
  }

  .hero {
    min-height: 600px;
  }

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

  button {
    width: 100%;
  }
}
