:root {
  --bg: #070707;
  --text: #f5f5f7;
  --red: #ff334f;
}

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

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 51, 79, 0.12), transparent 30%),
    radial-gradient(circle at 85% 85%, rgba(255, 51, 79, 0.08), transparent 28%),
    var(--bg);
  font-family: "Inter", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 78%);
}

::selection {
  color: white;
  background: var(--red);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0.035;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.3) 3px
  );
  mix-blend-mode: soft-light;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 420px;
  height: 420px;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 51, 79, 0.07);
  filter: blur(85px);
}

.orb {
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(25px);
}

.orb-one {
  top: -140px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: rgba(255, 51, 79, 0.08);
  animation: driftOne 8s ease-in-out infinite;
}

.orb-two {
  right: -160px;
  bottom: -180px;
  width: 440px;
  height: 440px;
  background: rgba(255, 51, 79, 0.06);
  animation: driftTwo 10s ease-in-out infinite;
}

.coming-soon {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.8rem, 10vw, 9rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.065em;
  background: linear-gradient(110deg, #ffffff 10%, #ff9cab 52%, #ff334f 96%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 70px rgba(255, 51, 79, 0.08);
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes driftOne {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}

@keyframes driftTwo {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-35px, -25px); }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(3.2rem, 17vw, 5.8rem);
    letter-spacing: -0.055em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
