/* ============================================
   LAYOUT & POSITIONING
   Main Layout, Flexbox, Grid, Z-Indexing
   ============================================ */

main {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem;
  max-width: 900px;
  width: 100%;
  text-align: center;
  animation: fadeIn 1.2s ease-out;
}

/* Headline */
.headline {
  font-size: clamp(3rem, 12vw, 8rem);
  letter-spacing: 0.12em;
  text-shadow: 0 0 50px rgba(255, 255, 255, 0.08);
}

/* Divider */
.divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0.5rem 0;
}

/* Subheading */
.subheading {
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  line-height: 1.8;
  max-width: 500px;
}

/* Description */
.description {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  opacity: 0.7;
  max-width: 600px;
  font-weight: 300;
}

/* Coming Soon Label */
.coming-soon-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.4;
  font-weight: 600;
  margin-top: 1rem;
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-size: 0.85rem;
}

.footer-left {
  opacity: 0.6;
}

.footer-right {
  opacity: 0.5;
  text-align: right;
}

.footer-right a {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer-right a:hover {
  opacity: 0.9;
}
