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

html, body {
  height: 100%;
  background: #000000;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

.wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadein 0.6s ease-out;
}

.logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.brand {
  position: relative;
  display: inline-flex;
  margin-top: 20px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: default;
}

.brand .ltr {
  display: inline-block;
  transform: scaleY(1);
  transition: transform 0.09s ease, opacity 0.09s ease, color 0.09s ease;
}

.brand .ltr.anim {
  transform: scaleY(0.1);
  opacity: 0.4;
}

.brand .ltr.q {
  color: rgba(255, 255, 255, 0.4);
}

.sub {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

@media (prefers-reduced-motion: reduce) {
  .wrap {
    animation: none;
  }
  .brand .ltr {
    transition: color 0.2s ease;
  }
  .brand .ltr.anim {
    transform: none;
    opacity: 1;
  }
}
