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

body {
  background: #f0f6fc;
  font-family: 'Open Sans', sans-serif;
}

/* Subtle wave background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 60% at 50% 110%, #b8d4e8 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 20% 0%, #d6e9f7 0%, transparent 50%);
  z-index: 0;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 0;
  padding: 40px 20px;
  text-align: center;
}

.content-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-wrap {
  animation: floatIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  margin-bottom: 0;
}

.logo-wrap img {
  width: auto;
  max-width: min(560px, 90vw);
  height: auto;
  border: none;
  outline: none;
  filter: drop-shadow(0 8px 32px rgba(90, 140, 180, 0.18));
}

.coming-soon {
  animation: floatIn 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.label {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 8vw, 80px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFD200;
  line-height: 1;
  text-wrap: nowrap;
}

.dots {
  display: flex;
  gap: 10px;
}
.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFD200;
  animation: pulse 1.4s ease-in-out infinite;
}
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }

.subtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 3vw, 20px);
  color: #FFD200;
  opacity: 0.75;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

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