:root {
  --bg-top: #2a2c31;
  --bg-bottom: #16171a;
  --text: #e8e9eb;
  --text-dim: #9a9ca3;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  overflow: hidden;
}

.wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60vmax;
  height: 60vmax;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 65%);
  pointer-events: none;
  z-index: 0;
}

.logo {
  position: relative;
  width: min(160px, 30vw);
  height: auto;
  margin-bottom: 1.5rem;
  animation: rise 0.8s ease-out;
}

.wordmark {
  position: relative;
  width: min(320px, 60vw);
  height: auto;
  margin-bottom: 1.25rem;
  animation: rise 0.8s ease-out 0.1s both;
}

.tagline {
  position: relative;
  margin: 0;
  font-size: clamp(0.875rem, 2vw, 1rem);
  letter-spacing: 0.02em;
  color: var(--text-dim);
  animation: rise 0.8s ease-out 0.2s both;
}

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

@media (prefers-reduced-motion: reduce) {
  .logo, .wordmark, .tagline {
    animation: none;
  }
}
