:root {
  --bg: #f3efe7;
  --bg-alt: #e7f0eb;
  --card: rgba(255, 253, 248, 0.86);
  --text: #1f2b2d;
  --muted: #5d686b;
  --accent: #2f6f68;
  --accent-soft: #d7ece8;
  --border: rgba(31, 43, 45, 0.12);
  --shadow: 0 30px 60px rgba(31, 43, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(47, 111, 104, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(180, 144, 95, 0.18), transparent 26%),
    linear-gradient(180deg, var(--bg), var(--bg-alt));
  display: grid;
  place-items: center;
  padding: 24px;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.8;
}

body::before {
  width: 220px;
  height: 220px;
  top: 4%;
  right: 8%;
  background: rgba(47, 111, 104, 0.08);
}

body::after {
  width: 280px;
  height: 280px;
  left: -6%;
  bottom: -10%;
  background: rgba(180, 144, 95, 0.1);
}

.page {
  width: min(860px, 100%);
  position: relative;
}

.card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  animation: lift-in 700ms ease-out both;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 40%),
    linear-gradient(315deg, rgba(47, 111, 104, 0.05), transparent 35%);
  pointer-events: none;
}

.eyebrow,
.status-pill,
.lede,
.footer-note {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.status-pill::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(47, 111, 104, 0.12);
}

h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 12ch;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.lede {
  max-width: 62ch;
  margin: 1.2rem 0 0;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--muted);
}

.footer-note {
  max-width: 52ch;
  margin: 1.75rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-size: 0.98rem;
}

@keyframes lift-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

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

@media (max-width: 640px) {
  body {
    padding: 16px;
  }

  .card {
    border-radius: 22px;
  }

  h1 {
    max-width: 14ch;
  }

  .lede {
    margin-top: 1rem;
  }

  .footer-note {
    margin-top: 1.4rem;
  }
}
