:root {
  color-scheme: dark;
  --bg: #121311;
  --panel: #f2efe8;
  --text: #171815;
  --muted: #5c6258;
  --accent: #a86f3c;
  --line: rgba(242, 239, 232, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(168, 111, 60, 0.26), transparent 28rem),
    linear-gradient(135deg, #121311 0%, #23251f 55%, #111311 100%);
  color: var(--panel);
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.status-panel {
  width: min(100%, 680px);
  border: 1px solid var(--line);
  background: rgba(242, 239, 232, 0.94);
  color: var(--text);
  padding: clamp(28px, 6vw, 56px);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.summary {
  max-width: 34rem;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.actions {
  margin-top: 32px;
}

.actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(23, 24, 21, 0.18);
  border-radius: 6px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.actions a:hover {
  border-color: var(--accent);
}
