:root {
  --bg: #f5efe7;
  --surface: rgba(255, 250, 244, 0.76);
  --border: rgba(106, 76, 54, 0.12);
  --text: #231911;
  --muted: #6f5a49;
  --accent: #a7682d;
  --accent-soft: rgba(167, 104, 45, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(circle at top left, rgba(204, 148, 85, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(145, 97, 59, 0.16), transparent 28%),
    linear-gradient(180deg, #f8f3ec 0%, var(--bg) 100%);
  color: var(--text);
  font-family:
    "Iowan Old Style",
    "Palatino Linotype",
    "Book Antiqua",
    Palatino,
    Georgia,
    serif;
}

.page-shell {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.hero-card {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(35, 25, 17, 0.08);
  max-width: 720px;
  padding: 48px 40px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.eyebrow {
  color: var(--accent);
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 20px;
}

.lead {
  color: var(--muted);
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  margin: 0 auto 28px;
  max-width: 36rem;
}

.status-pill {
  background: var(--accent-soft);
  border: 1px solid rgba(167, 104, 45, 0.18);
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 18px;
}

.ambient {
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
}

.ambient-left {
  background: rgba(202, 141, 73, 0.22);
  height: 280px;
  left: -60px;
  top: 10%;
  width: 280px;
}

.ambient-right {
  background: rgba(123, 81, 55, 0.18);
  bottom: 12%;
  height: 220px;
  right: -40px;
  width: 220px;
}

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

  .eyebrow {
    letter-spacing: 0.22em;
  }
}
