:root {
  color-scheme: light;
  --bg-top: #f6efe3;
  --bg-bottom: #dce9f2;
  --card: rgba(255, 255, 255, 0.82);
  --text: #1f2a37;
  --muted: #516072;
  --accent: #bc5c3d;
  --shadow: 0 24px 60px rgba(49, 61, 80, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 32%),
    linear-gradient(160deg, var(--bg-top), var(--bg-bottom));
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(100%, 680px);
  padding: 48px 40px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  background: var(--card);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 0.95;
}

.copy {
  margin: 22px 0 0;
  max-width: 34rem;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}

.card.is-ready {
  animation: rise 700ms ease-out both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .card {
    padding: 36px 24px;
    border-radius: 22px;
  }
}
