:root {
  --bg-top: #f9f7f2;
  --bg-bottom: #efebe2;
  --card: rgba(255, 255, 255, 0.88);
  --text: #27251f;
  --muted: #726e64;
  --line: rgba(39, 37, 31, 0.10);
  --accent: #b48a50;
  --accent-soft: rgba(180, 138, 80, 0.12);
  --shadow: 0 28px 80px rgba(45, 39, 29, 0.10);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.95), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(255,255,255,.65), transparent 28%),
    linear-gradient(145deg, var(--bg-top), var(--bg-bottom));
}

.page-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  padding: 40px 20px 24px;
}

.card {
  width: min(680px, 100%);
  text-align: center;
  padding: clamp(42px, 7vw, 72px) clamp(24px, 6vw, 66px);
  background: var(--card);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 26px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.62);
}

.icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--accent);
  background: var(--accent-soft);
}

.icon svg {
  width: 32px;
  height: 32px;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 750;
}

.lead {
  max-width: 540px;
  margin: 26px auto 0;
  font-size: clamp(18px, 2.5vw, 21px);
  line-height: 1.65;
  color: #4f4b43;
}

.supporting {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.status {
  width: fit-content;
  margin: 32px auto 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #5d594f;
  font-size: 14px;
  font-weight: 650;
  background: rgba(255,255,255,.66);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}

footer {
  padding-top: 30px;
  color: rgba(39, 37, 31, .48);
  font-size: 13px;
  text-align: center;
}

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

  .card {
    border-radius: 22px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .eyebrow {
    font-size: 11px;
  }
}
