:root {
  color-scheme: light;
  --bg: #f4ecdf;
  --bg-deep: #e4d4bc;
  --ink: #201811;
  --muted: rgba(32, 24, 17, 0.72);
  --panel: rgba(255, 249, 240, 0.84);
  --panel-border: rgba(78, 51, 22, 0.12);
  --accent: #8a4b20;
  --accent-strong: #6e3510;
  --button-ink: #fff8f0;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), transparent 34%),
    radial-gradient(circle at right, rgba(192, 118, 53, 0.2), transparent 28%),
    linear-gradient(160deg, var(--bg) 0%, #efe2d0 55%, var(--bg-deep) 100%);
}

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

.glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.5;
}

.glow-left {
  top: -80px;
  left: -100px;
  background: rgba(255, 230, 194, 0.8);
}

.glow-right {
  right: -120px;
  bottom: -80px;
  background: rgba(138, 75, 32, 0.18);
}

.panel {
  position: relative;
  max-width: 720px;
  padding: 56px;
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 24px 60px rgba(59, 33, 10, 0.12);
  backdrop-filter: blur(16px);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.lede {
  margin: 22px 0 0;
  max-width: 38rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.status {
  margin: 28px 0 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.status span {
  display: inline-block;
  margin-left: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(138, 75, 32, 0.12);
  color: var(--accent-strong);
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--button-ink);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 14px 28px rgba(110, 53, 16, 0.22);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(78, 51, 22, 0.12);
}

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

  .panel {
    padding: 36px 24px;
    border-radius: 24px;
  }

  .lede {
    font-size: 1rem;
    line-height: 1.65;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
