/* Coming Soon page — uses tokens from theme.css */

.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* soft radial glow behind logo, echoes the gold circle in the mark */
.page::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 50%;
  width: 640px;
  height: 640px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(246, 206, 108, 0.18) 0%, rgba(246, 206, 108, 0) 65%);
  pointer-events: none;
}

.brand {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 34rem;
}

.brand__mark {
  width: clamp(96px, 18vw, 140px);
  height: clamp(96px, 18vw, 140px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  animation: float 6s var(--ease-out) infinite;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.brand__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  color: var(--color-text-heading);
  margin: var(--space-4) 0 var(--space-2);
  letter-spacing: 0.01em;
}

.brand__tagline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-5);
}

.status {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 600;
  color: var(--color-text-body);
  margin: 0 0 var(--space-2);
}

.status__sub {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-5);
  max-width: 28rem;
  line-height: 1.6;
}

.stay-tuned {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: rgba(246, 206, 108, 0.08);
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  animation: pulse 2.4s var(--ease-out) infinite;
}

.stay-tuned::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
}

.socials a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

footer.legal {
  position: relative;
  z-index: 1;
  margin-top: var(--space-6);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

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

@media (prefers-reduced-motion: reduce) {
  .brand__mark {
    animation: none;
  }
}
