:root {
  --bg: #f7f9fc;
  --navy: #0c3a6e;
  --muted: #5d7188;
  --font: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(40rem, calc(100vw - 2.5rem));
  max-width: 100%;
  min-width: 0;
  padding: 2rem 0;
  text-align: center;
}

.logo {
  display: block;
  width: min(424px, calc(100vw - 2.5rem));
  max-width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

h1 {
  margin: 1.75rem 0 0;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

footer {
  padding: 1.25rem 1.5rem 1.75rem;
}

footer p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo,
  h1 {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
