:root {
  color-scheme: light;
  --bg: #ffffff;
  --card: #ffffff;
  --text: #111111;
  --muted: #4f4f4f;
  --accent: #1d7f52;
  --line: rgba(17, 17, 17, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.shell--hidden {
  opacity: 0;
  pointer-events: none;
}

.card {
  width: min(100%, 420px);
  padding: 24px;
  text-align: center;
}

.eyebrow {
  display: none;
}

h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
}

p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

#status:empty {
  display: none;
}

.shell--fallback .card {
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.08);
  text-align: left;
}

.shell--fallback .eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
}

.shell--fallback h1 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 700;
}

.shell--fallback p {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin-top: 18px;
  padding: 0 16px;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.button--secondary {
  background: #dbe8e1;
  color: var(--text);
}

.hidden {
  display: none;
}
