:root {
  --bg-color: #2667ff;
  --text-color: #ffffff;
  --font-sub: 'Outfit', sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-sub);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

.coming-soon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  z-index: 10;
  text-align: center;
}

/* Logo */
.logo-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-container {
  position: relative;
  width: min(100%, 450px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  mix-blend-mode: screen;
}

.logo-base {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.wave-vertical-group {
  will-change: transform;
}

.front-wave-rise {
  animation: waveRise 6.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.back-wave-rise {
  animation: waveRise 7.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.wave-horizontal-path {
  will-change: transform;
}

.wave-flow {
  animation: waveFlow 6s linear infinite;
}

.wave-flow-reverse {
  animation: waveFlowReverse 5s linear infinite;
}

.subtitle {
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInSubtitle 1.5s cubic-bezier(0.25, 1, 0.5, 1) 1.5s forwards;
}

.contact-info {
  font-family: var(--font-sub);
  font-weight: 300;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInSubtitle 1.5s cubic-bezier(0.25, 1, 0.5, 1) 1.8s forwards;
}

.contact-info a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(38, 103, 255, 0.6);
}

/* Ambient Waves */
.ambient-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(80px, 15vh, 120px);
  overflow: hidden;
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
}

.ambient-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M0,50 Q250,0 500,50 T1000,50 L1000,100 L0,100 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 1000px 100%;
  background-repeat: repeat-x;
  transform-origin: center bottom;
}

.wave-1 {
  animation: ambientWaveFlow1 12s linear infinite;
  opacity: 0.6;
}

.wave-2 {
  animation: ambientWaveFlow2 18s linear infinite;
  opacity: 0.3;
  height: 85%;
  background-size: 800px 100%;
}

/* Animations */
@keyframes waveFlow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-800px); }
}

@keyframes waveFlowReverse {
  0% { transform: translateX(0); }
  100% { transform: translateX(800px); }
}

@keyframes waveRise {
  0% { transform: translateY(400px); }
  100% { transform: translateY(-400px); }
}

@keyframes ambientWaveFlow1 {
  0% { background-position-x: 0px; transform: scaleY(1); }
  50% { transform: scaleY(0.9); }
  100% { background-position-x: -1000px; transform: scaleY(1); }
}

@keyframes ambientWaveFlow2 {
  0% { background-position-x: 0px; transform: scaleY(1); }
  50% { transform: scaleY(0.95); }
  100% { background-position-x: 800px; transform: scaleY(1); }
}

@keyframes fadeInSubtitle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
