/* ==========================================================================
   Devil's Workbench — Minimal "In Development" Layout
   ========================================================================== */

body {
  background-color: var(--bg-app);
  color: var(--text-primary);
  font-family: var(--font-family);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* Restrained ambient crimson atmosphere */
.ambient-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  background: radial-gradient(circle, rgba(244, 63, 94, 0.08) 0%, rgba(9, 10, 16, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* Centered Hero Stage */
.hero-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 600px;
  width: 100%;
}

/* Large Hero Art Integration */
.hero-art-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  padding: 12px;
  background: radial-gradient(circle, rgba(24, 27, 38, 0.4) 0%, rgba(9, 10, 16, 0) 80%);
  transition: transform var(--anim-normal);
}

.hero-art {
  width: min(78vw, 340px);
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 40px rgba(244, 63, 94, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* Hero Typography & Status */
.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(244, 63, 94, 0.06);
  border: 1px solid rgba(244, 63, 94, 0.22);
  border-radius: var(--radius-full);
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-primary);
  animation: pulse-dot 2.2s infinite ease-in-out;
}

.status-text {
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-secondary);
}

.brand-title {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0;
  background: linear-gradient(145deg, #ffffff 45%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.35); opacity: 0.5; }
}
