@charset "UTF-8";
@font-face {
  font-family: "Dosis";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("/Dosis/Dosis-VariableFont_wght.ttf") format("truetype");
}

body {
  margin: 0;
  background: #f7f4ef;
  color: #1f2327;
  font-family: "Dosis", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.35), transparent 40%);
  pointer-events: none;
}

.center {
  min-height: calc(100vh - 6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

blockquote {
  max-width: 600px;
  animation: fade 1.8s ease;
  padding-bottom: 3rem;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

blockquote p {
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  max-width: 16ch;
  margin-inline: auto;
}

blockquote footer {
  margin-top: 1.4rem;
  opacity: 0.55;
  font-size: 0.9rem;
  color: #777;
}

.trace {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  opacity: 0.25;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.trace:hover {
  opacity: 0.6;
}

@media (max-width: 600px) {
  .page {
    padding: 0.8rem 1rem 0.6rem;
  }

  .center {
    padding: 1rem;
  }

  blockquote p {
    font-size: clamp(2.3rem, 10vw, 4rem);
    line-height: 1.08;
  }

  .lead {
    font-size: clamp(1.15rem, 4vw, 1.5rem);
  }

  p {
    font-size: 1rem;
  }

  .scene {
    width: 92vw;
    border-radius: 14px;
  }
}
