/* ── Visuals Layout ── */
html, body {
  overflow: hidden;
}

.page {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
}

.back--fixed {
  position: fixed;
  top: 3rem;
  left: 3rem;
  z-index: 2;
}

.page-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1.2s 0.3s ease forwards;
}

.message {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(42, 42, 42, 0.25);
  line-height: 1.8;
  max-width: 380px;
  opacity: 0;
  animation: fadeUp 1.2s 0.7s ease forwards;
}

.teal-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 1.1s ease forwards, pulse 3s 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.15; }
}
