﻿:root {
  --bg: #050507;
  --panel: #111320;
  --text: #eef3ff;
  --muted: #aab1c8;
  --green: #3eff74;
  --purple: #7a40ff;
  --line: #2f2a45;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: "Chakra Petch", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 15%, rgba(122, 64, 255, 0.25), transparent 35%), var(--bg);
  color: var(--text);
}

.coming-soon {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(32px);
  opacity: 0.45;
  z-index: 0;
}

.orb-a {
  width: 260px;
  height: 260px;
  background: var(--purple);
  top: -80px;
  right: -60px;
}

.orb-b {
  width: 220px;
  height: 220px;
  background: var(--green);
  bottom: -90px;
  left: -40px;
}

.card {
  width: min(760px, 100%);
  background: linear-gradient(180deg, #14182a, #0d0f1a);
  border: 1px solid var(--line);
  padding: clamp(1rem, 2.5vw, 2rem);
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-image {
  width: min(220px, 44vw);
  height: auto;
  display: block;
  margin: 0 auto 0.9rem;
  animation: float 3.4s ease-in-out infinite;
}

.tag {
  margin: 0;
  color: var(--green);
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

h1 {
  margin: 0.45rem 0;
  font-size: clamp(1.7rem, 4.1vw, 3rem);
  line-height: 1.05;
}

.subtitle {
  margin: 0 auto;
  max-width: 60ch;
  color: var(--muted);
}

.socials {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social {
  text-decoration: none;
  border: 1px solid #4f4a68;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--text);
  background: #121521;
}

.social:hover {
  border-color: var(--purple);
}

.social i {
  font-size: 1.25rem;
}

@keyframes float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
