:root {
  color-scheme: light;
  --bg: #f7f8f5;
  --ink: #151a1e;
  --muted: #5a646d;
  --line: #d9ded8;
  --accent: #007a73;
  --accent-strong: #0b4f6c;
  --blue: #0069b3;
  --surface: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(0, 122, 115, 0.12), rgba(11, 79, 108, 0) 42%),
    linear-gradient(315deg, rgba(11, 79, 108, 0.12), rgba(247, 248, 245, 0) 48%),
    var(--bg);
}

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

.status-panel {
  width: min(100%, 880px);
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 80px rgba(21, 26, 30, 0.08);
}

.brand-logo {
  display: block;
  width: min(100%, 180px);
  height: auto;
  margin-bottom: 34px;
}

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

h1 {
  max-width: 48rem;
  margin: 0;
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 46rem;
  margin: 30px 0 0;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.55;
}

p {
  max-width: 47rem;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.details {
  max-width: 47rem;
  margin-top: 30px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 248, 245, 0.72);
}

.details p {
  margin: 0;
  color: var(--ink);
}

.closing {
  margin-top: 30px;
  color: var(--accent-strong);
  font-size: 1.1rem;
  font-weight: 800;
}

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

  .status-panel {
    padding: 26px;
  }

  .brand-logo {
    width: min(100%, 148px);
    margin-bottom: 28px;
  }

  .details {
    padding: 18px;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: 2.65rem;
  }

  .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.35rem;
  }
}
