:root {
  --bg: #ffffff;
  --ink: #1c2740;
}

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

html,
body {
  height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

.stage {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.logo {
  width: min(420px, 70vw);
  height: auto;
  /* Gentle fade + scale-in on load */
  opacity: 0;
  transform: scale(0.92);
  animation: fade-scale-in 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  will-change: opacity, transform;
}

@keyframes fade-scale-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Respect users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
  .logo {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
