/* ==========================================================================
   Dream Collective Agency — Coming Soon
   ========================================================================== */

:root {
  --bg: #0a0a0a;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.85);
  --accent: rgba(255, 255, 255, 0.08);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

/* * Subtle animated background pattern */
.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-pattern::before,
.bg-pattern::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  animation: float 25s ease-in-out infinite;
}

.bg-pattern::before {
  width: min(80vmin, 420px);
  height: min(80vmin, 420px);
  top: -20%;
  left: -10%;
  animation-delay: 0s;
  animation-duration: 28s;
}

.bg-pattern::after {
  width: min(60vmin, 320px);
  height: min(60vmin, 320px);
  bottom: -15%;
  right: -5%;
  animation-delay: -12s;
  animation-duration: 22s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  33% {
    transform: translate(3%, 4%) scale(1.05);
    opacity: 0.25;
  }
  66% {
    transform: translate(-2%, -3%) scale(0.98);
    opacity: 0.35;
  }
}

/* * Very subtle grid overlay */
.bg-pattern {
  --grid-line: rgba(255, 255, 255, 0.04);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: 0 0;
  animation: grid-drift 40s linear infinite;
}

@keyframes grid-drift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}

/* * Main content — centered */
.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 42rem;
}

/* * Decorative accents around title */
.title-block {
  position: relative;
  padding: 1.25rem 0;
  margin-bottom: 1.25rem;
}

.title-block::before,
.title-block::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(120px, 28vw);
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.title-block::before {
  top: 0;
}

.title-block::after {
  bottom: 0;
}

.title {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 12vw, 6.25rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.02em;
  margin: 0;
  text-transform: uppercase;
}

.tagline {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--text-muted);
  margin: 0 0 2.5rem;
}

.email {
  display: inline-block;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
  padding: 0.5em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.email:hover,
.email:focus {
  border-bottom-color: var(--text);
  color: var(--text);
  outline: none;
}

@media (min-width: 640px) {
  .content {
    padding: 3rem 2rem;
  }

  .tagline {
    margin-bottom: 3rem;
  }
}
