:root {
  color-scheme: light;
  --ink: #5e6268;
  --muted: #92979d;
  --accent: #e86f2a;
  --bar: #f6f6f5;
  --surface: #ffffff;
}

* { box-sizing: border-box; }

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

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.page-shell {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 48px 32px;
}

.placeholder {
  width: min(100%, 620px);
}

.eyebrow,
.status {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow { color: var(--accent); }

h1 {
  margin: 10px 0 14px;
  color: #4e5359;
  font-size: clamp(38px, 7vw, 62px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.message {
  max-width: 400px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.status { color: var(--ink); }

.legal-bar {
  padding: 18px 24px 16px;
  background: var(--bar);
}

.legal-copy {
  width: min(100%, 760px);
  margin: 0 auto 10px;
  color: #6b7075;
  font-size: 11px;
  line-height: 1.45;
}

.legal-copy p { margin: 0; }

.legal-copy p + p { margin-top: 4px; }

.legal-bar a {
  color: #585d62;
  font-size: 12px;
  line-height: 1.2;
  text-decoration: none;
}

.legal-bar a:hover,
.legal-bar a:focus-visible {
  color: #303438;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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