:root {
  --ink: #172033;
  --muted: #687084;
  --accent: #d6aa4b;
  --paper: #ffffff;
  --wash: #f6f2e9;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 15%, rgba(214,170,75,.18), transparent 28rem),
    radial-gradient(circle at 85% 85%, rgba(23,32,51,.08), transparent 32rem),
    var(--wash);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.notice {
  width: min(680px, 100%);
  padding: clamp(38px, 8vw, 72px);
  text-align: center;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(23,32,51,.08);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(23,32,51,.12);
}

.status-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(23,32,51,.2);
}

.status-icon span {
  width: 8px;
  height: 30px;
  border-radius: 6px;
  background: var(--accent);
}

.eyebrow {
  margin: 0 0 13px;
  color: #a47a21;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}

.message {
  max-width: 510px;
  margin: 27px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.16rem);
  line-height: 1.75;
}

.status {
  width: fit-content;
  margin: 34px auto 0;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #4e5668;
  background: #f4f5f7;
  border: 1px solid #e4e6ea;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(214,170,75,.16);
}

@media (max-width: 520px) {
  body { padding: 16px; }
  .notice { border-radius: 20px; }
  .message { line-height: 1.6; }
}

@media (prefers-reduced-motion: no-preference) {
  .notice { animation: arrive .65s ease-out both; }
  @keyframes arrive {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
