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

body {
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: fadeIn 1.2s ease both;
}

.logo {
  max-width: 200px;
  width: 100%;
  height: auto;
}

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

@media (max-width: 480px) {
  .logo {
    max-width: 140px;
  }

  .company-name {
    font-size: 1.1rem;
    letter-spacing: 0.25em;
  }
}
