/* ============================================
   Noir Code — Coming Soon pages (shared)
   ============================================ */

/* Hero accent glow — each page overrides --accent-color */
:root {
  --accent-color: #C2A46D;
}

.cs-hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  opacity: 0.06;
  filter: blur(80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cs-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(194,164,109,0.3);
  border-radius: 2px;
  color: var(--accent-color);
  margin: 0 auto;
}

.cs-vertical-name {
  font-family: Baskerville, 'Baskerville Old Face', Georgia, serif;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #EDE4D3;
}

.cs-tagline {
  font-family: Baskerville, 'Baskerville Old Face', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-top: 0.75rem;
}

.cs-notify-box {
  border: 1px solid rgba(194,164,109,0.3);
  border-radius: 2px;
  padding: 2rem;
  text-align: center;
  max-width: 28rem;
  margin: 0 auto;
}

/* Back to hub link */
.cs-back {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: Baskerville, serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(237,228,211,0.5);
  transition: color 0.5s ease;
}
.cs-back:hover { color: #C2A46D; }
