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

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: #050507;
  color: #fff;
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 0, 80, .25), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(0, 120, 255, .22), transparent 35%),
    linear-gradient(135deg, #050507, #111118, #050507);
}

.bg::before,
.bg::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .25;
  animation: float 16s infinite alternate ease-in-out;
}

.bg::before {
  background: #ff0055;
  top: -180px;
  left: -120px;
}

.bg::after {
  background: #005eff;
  bottom: -220px;
  right: -140px;
  animation-duration: 22s;
}

@keyframes float {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(120px, -70px) scale(1.2);
  }
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .05;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 4px 4px;
}

header {
  width: 100%;
  padding: 28px 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.logo span {
  color: #ff2f6d;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 14px;
}

nav a:hover {
  color: #fff;
}

main {
  padding: 70px 7vw;
}

.hero {
  max-width: 980px;
  padding: 60px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 34px;
  background: rgba(10,10,14,.62);
  backdrop-filter: blur(25px);
  box-shadow: 0 30px 120px rgba(0,0,0,.55);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #cfcfcf;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.dot {
  width: 9px;
  height: 9px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 18px #00ff88;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% {
    transform: scale(1.45);
    opacity: .45;
  }
}

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(48px, 8vw, 106px);
  line-height: .9;
  letter-spacing: -0.07em;
}

h1 span {
  color: #ff2f6d;
  text-shadow: 0 0 35px rgba(255,47,109,.4);
}

.text {
  max-width: 720px;
  color: #d0d0d0;
  font-size: 22px;
  line-height: 1.5;
}

.status {
  display: inline-block;
  margin-top: 34px;
  padding: 14px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #d8d8d8;
}

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

.card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

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

.card p {
  color: #aaa;
  line-height: 1.5;
}

footer {
  padding: 30px 7vw;
  color: #777;
  font-size: 14px;
}

@media (max-width: 760px) {
  header {
    flex-direction: column;
    gap: 18px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 34px 26px;
  }

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

  .text {
    font-size: 18px;
  }
}
