:root {
  color-scheme: light;
  --bg: #f4f6f4;
  --ink: #16221c;
  --ink-muted: #3d5248;
  --panel: #ffffff;
  --line: #d8e0da;
  --brand: #1f5f49;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top right, #e8eee9 0%, var(--bg) 45%);
  color: var(--ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 48px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 12px 28px rgba(20, 40, 30, 0.08);
}

.logo {
  width: 190px;
  height: auto;
}

.eyebrow {
  margin: 20px 0 8px;
  color: var(--ink-muted);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(1.75rem, 3.1vw, 2.4rem);
  line-height: 1.15;
}

p {
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.status {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #c8d4cd;
  background: #f6faf7;
  color: #204f3f;
  font-weight: 700;
  font-size: 0.86rem;
}

.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

.footer {
  margin-top: 14px;
  font-size: 0.83rem;
  color: #5f7268;
}
