:root {
  --bg: #0a0a0a;
  --accent: #fa2d55;
  --accent-rgb: 250, 45, 85;
  --text: #ffffff;
  --muted: #b8b0b3;
  --line: rgba(250, 45, 85, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.02em;
}

.glow {
  position: fixed;
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.28;
}

.glow-left {
  top: -12%;
  left: -8%;
  background: rgba(var(--accent-rgb), 0.55);
}

.glow-right {
  right: -10%;
  bottom: -18%;
  background: rgba(var(--accent-rgb), 0.22);
}

.stage {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 24px 40px;
  animation: rise 0.9s ease both;
}

.status {
  margin: 0 0 28px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(var(--accent-rgb), 0.08);
}

.logo {
  width: min(86vw, 640px);
  height: auto;
  display: block;
  margin: 0 auto 36px;
  filter: drop-shadow(0 18px 40px rgba(var(--accent-rgb), 0.18));
}

.headline {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.15;
}

.lead {
  margin: 0 auto 28px;
  max-width: 460px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tags li {
  position: relative;
}

.tags li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 36px;
  margin-top: 48px;
}

.eq span {
  width: 5px;
  border-radius: 2px;
  background: var(--accent);
  animation: eq 1.1s ease-in-out infinite;
}

.eq span:nth-child(1) { height: 10px; animation-delay: 0s; }
.eq span:nth-child(2) { height: 18px; animation-delay: 0.08s; }
.eq span:nth-child(3) { height: 28px; animation-delay: 0.16s; }
.eq span:nth-child(4) { height: 14px; animation-delay: 0.24s; }
.eq span:nth-child(5) { height: 32px; animation-delay: 0.04s; }
.eq span:nth-child(6) { height: 20px; animation-delay: 0.2s; }
.eq span:nth-child(7) { height: 12px; animation-delay: 0.12s; }
.eq span:nth-child(8) { height: 26px; animation-delay: 0.28s; }
.eq span:nth-child(9) { height: 16px; animation-delay: 0.1s; }
.eq span:nth-child(10) { height: 30px; animation-delay: 0.18s; }
.eq span:nth-child(11) { height: 11px; animation-delay: 0.06s; }
.eq span:nth-child(12) { height: 22px; animation-delay: 0.22s; }

.site-foot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 28px 28px;
  color: #7a7376;
  font-size: 0.8rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes eq {
  0%,
  100% {
    transform: scaleY(0.45);
  }
  50% {
    transform: scaleY(1);
  }
}

@media (max-width: 640px) {
  .stage {
    padding-top: 56px;
  }

  .logo {
    width: min(92vw, 420px);
    margin-bottom: 28px;
  }

  .site-foot {
    justify-content: center;
    text-align: center;
  }
}
