:root {
  --bg: #f3efe7;
  --bg-deep: #e0d6c7;
  --surface: rgba(249, 246, 240, 0.78);
  --surface-border: rgba(69, 55, 36, 0.12);
  --text: #1b1a18;
  --muted: #5b554d;
  --accent: #b45d34;
  --accent-soft: rgba(180, 93, 52, 0.12);
  --shadow: 0 30px 80px rgba(57, 42, 24, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), transparent 34%),
    radial-gradient(circle at right 20%, rgba(180, 93, 52, 0.14), transparent 26%),
    linear-gradient(145deg, var(--bg) 0%, var(--bg-deep) 100%);
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 32px;
  display: grid;
  place-items: center;
}

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

.ambient-one {
  width: 420px;
  height: 420px;
  left: -120px;
  top: -80px;
  background: rgba(255, 255, 255, 0.44);
}

.ambient-two {
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -60px;
  background: rgba(136, 170, 150, 0.16);
}

.card {
  position: relative;
  width: min(100%, 960px);
  padding: 42px;
  border: 1px solid var(--surface-border);
  border-radius: 32px;
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

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

h1 {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 48rem;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.grid section {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(69, 55, 36, 0.08);
}

.grid h2 {
  margin: 0 0 10px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.grid p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  text-align: center;
  color: rgba(27, 26, 24, 0.68);
}

.footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 780px) {
  .page-shell {
    padding: 18px;
  }

  .card {
    padding: 26px;
    border-radius: 24px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
