:root {
  --cs-orange: #f99d1c;
  --cs-ink: #ffffff;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--cs-ink);
  background:
    radial-gradient(900px 520px at 88% 12%, rgba(249, 157, 28, 0.32), transparent 58%),
    radial-gradient(700px 420px at 0% 90%, rgba(249, 157, 28, 0.12), transparent 50%),
    #070707;
}

.coming-soon {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.cs-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cs-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at 55% 40%, #000 18%, transparent 72%);
}

.cs-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  animation: csDrift 14s ease-in-out infinite;
}

.cs-orb-a {
  width: 440px;
  height: 440px;
  right: 4%;
  top: -90px;
  background: rgba(249, 157, 28, 0.42);
}

.cs-orb-b {
  width: 300px;
  height: 300px;
  left: -70px;
  bottom: 8%;
  background: rgba(249, 157, 28, 0.18);
  animation-delay: -5s;
}

.cs-orb-c {
  width: 180px;
  height: 180px;
  left: 42%;
  top: 38%;
  background: rgba(255, 255, 255, 0.07);
  animation-delay: -8s;
}

.cs-ring {
  position: absolute;
  width: min(640px, 70vw);
  aspect-ratio: 1;
  right: -8%;
  top: 8%;
  border: 1px solid rgba(249, 157, 28, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(249, 157, 28, 0.08);
}

.cs-ring::before,
.cs-ring::after {
  content: "";
  position: absolute;
  inset: 56px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cs-ring::after {
  inset: 112px;
  border-color: rgba(249, 157, 28, 0.14);
}

.cs-word {
  position: absolute;
  left: -2%;
  bottom: 8%;
  font-size: clamp(4.5rem, 14vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  user-select: none;
}

.coming-soon-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(1100px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 4.5rem 0 3rem;
}

.coming-soon-logo {
  height: 78px;
  width: auto;
  margin-bottom: 1.6rem;
}

.coming-soon-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin: 0 auto 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(249, 157, 28, 0.14);
  border: 1px solid rgba(249, 157, 28, 0.4);
  color: var(--cs-orange);
  font-weight: 700;
  font-size: 0.82rem;
}

.coming-soon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cs-orange);
  box-shadow: 0 0 0 0 rgba(249, 157, 28, 0.7);
  animation: csPulse 1.8s ease-out infinite;
}

.coming-soon h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 18ch;
  margin: 0.4rem 0 1rem;
  color: #fff;
}

.coming-soon-copy {
  max-width: 36rem;
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.coming-soon-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.coming-soon-tags span {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
}

.coming-soon-foot {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 1.2rem 1.2rem 1.6rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

@keyframes csDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(22px, -18px, 0) scale(1.08); }
}

@keyframes csPulse {
  0% { box-shadow: 0 0 0 0 rgba(249, 157, 28, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(249, 157, 28, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 157, 28, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .cs-orb,
  .coming-soon-dot { animation: none; }
}

@media (max-width: 575.98px) {
  .coming-soon-logo { height: 64px; }
  .coming-soon-inner { padding: 3.2rem 0 2.2rem; }
}
