:root {
  color-scheme: light;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: #f3f0e8;
  color: #18312a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 18rem;
  background:
    radial-gradient(circle at top left, #e2eee8 0, transparent 38rem),
    #f3f0e8;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}

.status-card {
  width: min(100%, 46rem);
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid #c8d5cf;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1.5rem 4rem rgba(24, 49, 42, 0.1);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #176b52;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 19ch;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  font-size: clamp(2rem, 7vw, 4.25rem);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.message + .message {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid #d9e1dd;
}

h2 {
  margin-bottom: 0.55rem;
  color: #234d41;
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  line-height: 1.3;
}

.message p {
  max-width: 62ch;
  margin-bottom: 0;
  color: #334c45;
  font-size: clamp(1rem, 2.4vw, 1.1rem);
  line-height: 1.7;
}

.message-chinese p {
  line-height: 1.9;
}

footer {
  margin-top: clamp(2rem, 6vw, 3rem);
  padding-top: 1.25rem;
  border-top: 1px solid #d9e1dd;
  color: #50665f;
  font-size: 0.85rem;
  line-height: 1.6;
}

footer p {
  margin-bottom: 0.25rem;
}

footer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 30rem) {
  .status-card {
    border-radius: 1rem;
  }
}

@media (prefers-contrast: more) {
  :root {
    background: #ffffff;
    color: #0b1f19;
  }

  body {
    background: #ffffff;
  }

  .status-card {
    border: 2px solid #0b1f19;
    background: #ffffff;
    box-shadow: none;
  }

  .eyebrow,
  h2,
  .message p,
  footer {
    color: #0b1f19;
  }
}
