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

:root {
  --bg: #07111f;
  --card: rgba(12, 27, 46, 0.82);
  --text: #f7fbff;
  --muted: #9fb0c3;
  --accent: #39d9ff;
  --accent2: #6c63ff;
}

body {
  min-height: 100vh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(57, 217, 255, .16), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(108, 99, 255, .18), transparent 32%),
    var(--bg);
  color: var(--text);
  overflow: hidden;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  position: relative;
}

.card {
  width: min(760px, 100%);
  padding: 70px 55px 38px;
  text-align: center;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0,0,0,.4);
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 2;
}

.logo {
  display: inline-block;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 48px;
}

.logo span {
  color: var(--accent);
}

.icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 28px;
  border: 2px solid rgba(57,217,255,.5);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transform: rotate(-4deg);
}

.icon span {
  display: block;
  width: 6px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(var(--accent), var(--accent2));
  animation: pulse 1.2s infinite ease-in-out;
}

.icon span:nth-child(2) {
  height: 40px;
  animation-delay: .15s;
}

.icon span:nth-child(3) {
  height: 22px;
  animation-delay: .3s;
}

@keyframes pulse {
  50% { transform: scaleY(.65); opacity: .55; }
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.04;
  letter-spacing: -2.5px;
  margin-bottom: 22px;
}

h1 span {
  background: linear-gradient(90deg, var(--accent), #8c85ff);
  -webkit-background-clip: text;
  color: transparent;
}

.description {
  max-width: 570px;
  margin: auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.launch {
  margin: 35px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.launch .line {
  height: 1px;
  width: 80px;
  background: rgba(255,255,255,.15);
}

.launch div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.launch small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 2px;
}

.launch strong {
  font-size: 21px;
  letter-spacing: .5px;
}

.button {
  display: inline-block;
  padding: 14px 25px;
  border-radius: 999px;
  color: #03101a;
  background: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: .25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(57,217,255,.25);
}

.footer {
  margin-top: 50px;
  color: #65778b;
  font-size: 11px;
}

.glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}

.glow-one {
  background: var(--accent);
  top: 5%;
  left: 8%;
}

.glow-two {
  background: var(--accent2);
  bottom: 0;
  right: 8%;
}

@media (max-width: 600px) {
  .card {
    padding: 45px 24px 28px;
    border-radius: 22px;
  }

  .logo {
    margin-bottom: 35px;
  }

  .description {
    font-size: 14px;
  }

  .launch .line {
    width: 35px;
  }

  .footer {
    margin-top: 38px;
  }
}
