:root {
  --paper: #F7F5F0;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--paper);
  background: #14213D;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8vh 6vw;
  text-align: center;
}

.profile { margin-bottom: 2.2rem; }
.profile h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  margin: 0 0 .4em;
}
.profile p {
  margin: 0;
  opacity: 0.82;
  font-size: 1rem;
}

.buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.site-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  max-width: 92vw;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
  opacity: 0;
  transform: translateY(16px);
  animation: btn-in .55s ease forwards;
}
.site-btn:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.06);
}
.site-btn:active { transform: translateY(-1px) scale(0.99); }

@keyframes btn-in {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .site-btn { animation: none !important; opacity: 1 !important; transform: none !important; }
}
