:root {
  --bg: #03070d;
  --bg-2: #07111d;
  --text: #ffffff;
  --muted: #a9b4c7;
  --blue: #18a8ff;
  --purple: #9238ff;
  --green: #76db29;
  --orange: #ff9800;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(24, 168, 255, .18), transparent 32%),
    radial-gradient(circle at top right, rgba(146, 56, 255, .18), transparent 30%),
    radial-gradient(circle at bottom, rgba(118, 219, 41, .10), transparent 35%),
    linear-gradient(145deg, var(--bg), var(--bg-2));
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
  overflow: hidden;
}

.hero {
  width: min(1080px, 100%);
  position: relative;
}

.card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 42px;
  align-items: center;
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 34px;
  background: rgba(2, 8, 16, .78);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
  backdrop-filter: blur(18px);
}

.logo {
  width: 100%;
  max-width: 410px;
  display: block;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

.content {
  max-width: 560px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  color: #dbeaff;
  background: rgba(24, 168, 255, .12);
  border: 1px solid rgba(24, 168, 255, .25);
  font-size: 13px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

h1 {
  margin: 24px 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -2px;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.status {
  margin-top: 34px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
}

.status span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 22px var(--green);
}

.status strong {
  font-size: 15px;
  color: #f7fbff;
}

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

.glow-blue {
  top: -90px;
  left: -70px;
  background: var(--blue);
}

.glow-purple {
  right: -80px;
  top: 20px;
  background: var(--purple);
}

.glow-green {
  bottom: -100px;
  left: 42%;
  background: var(--green);
}

@media (max-width: 820px) {
  .card {
    grid-template-columns: 1fr;
    padding: 34px 24px;
    gap: 28px;
    text-align: center;
  }

  .logo {
    margin: 0 auto;
    max-width: 320px;
  }

  .content {
    margin: 0 auto;
  }

  .status {
    justify-content: center;
  }
}
