:root {
  color-scheme: light;
  --ink: #17323a;
  --muted: #5b747b;
  --sea: #87c9cf;
  --sand: #f4ead7;
  --cream: #fffaf0;
  --reef: #ffb36b;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 179, 107, 0.28), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(135, 201, 207, 0.5), transparent 32rem),
    linear-gradient(135deg, var(--cream) 0%, var(--sand) 48%, #d7eef0 100%);
}

.splash {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.card {
  width: min(100%, 680px);
  padding: clamp(2rem, 7vw, 4.75rem);
  border: 1px solid rgba(23, 50, 58, 0.12);
  border-radius: 32px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 28px 80px rgba(23, 50, 58, 0.16);
  backdrop-filter: blur(18px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.2rem, 12vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.lede {
  margin: 1.4rem auto 0;
  max-width: 26rem;
  font-size: clamp(1.2rem, 3.2vw, 1.65rem);
  line-height: 1.35;
  font-weight: 700;
}

.note {
  margin: 1.25rem auto 0;
  max-width: 31rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 520px) {
  .card {
    border-radius: 24px;
  }

  .note {
    font-size: 0.94rem;
  }
}
