:root {
  color-scheme: light;
  --bg-top: #f8f2e8;
  --bg-bottom: #eed7bc;
  --surface: rgba(255, 248, 239, 0.84);
  --surface-border: rgba(122, 78, 41, 0.14);
  --text-main: #332015;
  --text-soft: #6f5440;
  --accent: #b66a2f;
  --accent-strong: #8e4a1f;
  --shadow: 0 28px 80px rgba(86, 53, 29, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.7), transparent 38%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  color: var(--text-main);
}

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

.card {
  position: relative;
  width: min(100%, 760px);
  padding: 56px 48px;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.92), rgba(252, 242, 228, 0.78)),
    var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

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

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.lead {
  margin: 26px 0 0;
  max-width: 38rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.6;
  color: var(--text-soft);
}

.copy,
.footnote {
  margin: 18px 0 0;
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.status-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(182, 106, 47, 0.1);
  color: var(--accent-strong);
  font-size: 0.96rem;
  letter-spacing: 0.03em;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(182, 106, 47, 0.14);
  animation: pulse 1.9s ease-in-out infinite;
}

.divider {
  width: 100%;
  height: 1px;
  margin: 34px 0 0;
  background: linear-gradient(90deg, transparent, rgba(122, 78, 41, 0.22), transparent);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.52;
}

.orb-left {
  top: -140px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 218, 170, 0.92), transparent 68%);
}

.orb-right {
  right: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(196, 116, 55, 0.35), transparent 66%);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.12);
    opacity: 0.72;
  }
}

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

  .lead,
  .copy,
  .footnote {
    line-height: 1.7;
  }

  .status-row {
    width: 100%;
    justify-content: center;
  }
}
