:root {
  color-scheme: light;
  --bg: #f4f7f9;
  --ink: #17212f;
  --muted: #627085;
  --line: #d8e1e8;
  --white: #ffffff;
  --green: #10846f;
  --coral: #d7604a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(16, 132, 111, 0.10), transparent 36%),
    linear-gradient(315deg, rgba(215, 96, 74, 0.12), transparent 32%),
    var(--bg);
}

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

.panel {
  width: min(680px, 100%);
  padding: clamp(34px, 7vw, 64px);
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(23, 33, 47, 0.10);
}

.mark {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 8px;
  background: var(--green);
}

.mark span {
  width: 32px;
  height: 32px;
  border: 5px solid var(--white);
  border-top-color: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 9vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

.copy {
  max-width: 520px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 2.8vw, 19px);
  line-height: 1.8;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin-top: 32px;
  padding: 0 16px;
  color: var(--ink);
  font-weight: 700;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfcfd;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}
