/* ==========================================================================
   SOBER MODERN RED THEME - COMING SOON LANDING PAGE
   Deep Crimson Background, Sober Inter Typography, Soft Ruby Accents
   Footer: Building with THE GENESIS LABS
   ========================================================================== */

:root {
  --bg-deep-red: #0f0204;
  --bg-crimson-gradient: radial-gradient(circle at 50% 45%, #2a050b 0%, #140205 50%, #0a0103 100%);
  
  --red-primary: #e11d48;
  --red-accent: #f43f5e;
  --red-glow: rgba(225, 29, 72, 0.25);
  
  --text-primary: #ffffff;
  --text-secondary: #fda4af;
  --text-muted: #9f1239;
  
  --border-red: rgba(225, 29, 72, 0.2);
  --font-sober: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg-crimson-gradient);
  background-color: var(--bg-deep-red);
  color: var(--text-primary);
  font-family: var(--font-sober);
  -webkit-font-smoothing: antialiased;
}

/* Background Canvas */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* Page Layout */
.page-container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 48px 24px 36px 24px;
}

.hero-center {
  margin: auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Sober Red Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid var(--border-red);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #fecdd3;
  margin-bottom: 28px;
  box-shadow: 0 0 15px rgba(225, 29, 72, 0.1);
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: var(--red-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red-accent);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* Sober Clean Title */
.main-title {
  font-family: var(--font-sober);
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(225, 29, 72, 0.3);
}

/* Sober Red Accent Line */
.sober-line {
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-accent), transparent);
  box-shadow: 0 0 10px var(--red-accent);
}

/* Footer (Mandated Requirement) */
.footer {
  margin-top: auto;
}

.footer-badge {
  padding: 8px 22px;
  background: rgba(15, 2, 4, 0.6);
  border: 1px solid var(--border-red);
  border-radius: 100px;
  font-size: 0.85rem;
  color: #fecdd3;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.footer-badge:hover {
  border-color: var(--red-accent);
  box-shadow: 0 0 20px var(--red-glow);
}

.footer-badge strong {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #ffffff 0%, #ffe4e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
