*, *::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: #06141E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', system-ui, sans-serif;
}

main {
  padding: 2rem;
  text-align: center;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid rgba(0, 191, 166, 0.2);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 191, 166, 0.15), 0 8px 32px rgba(0, 191, 166, 0.1);
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.logo {
  display: block;
  max-width: 200px;
  max-height: 120px;
  height: auto;
  width: auto;
}

@media (max-width: 480px) {
  .logo-wrap { padding: 16px; }
  .logo { max-width: 160px; max-height: 100px; }
  .center { gap: 1.5rem; }
}

.coming-soon {
  margin: 0;
  font-weight: 300;
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #00BFA6;
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@media (max-width: 480px) {
  .coming-soon { letter-spacing: 0.25em; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-wrap, .coming-soon { animation: none; opacity: 1; }
}

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