:root {
  color-scheme: light;
  --bg: #f7f4ee;
  --ink: #18201b;
  --muted: #667066;
  --green: #1f6b43;
  --green-dark: #0f3d28;
  --gold: #c99332;
  --paper: rgba(255, 255, 255, 0.76);
  --line: rgba(24, 32, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(31, 107, 67, 0.12), transparent 30%),
    radial-gradient(circle at 78% 30%, rgba(201, 147, 50, 0.18), transparent 28%),
    linear-gradient(135deg, #fbfaf6 0%, var(--bg) 100%);
  color: var(--ink);
}

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

.hero {
  width: min(720px, 100%);
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(15, 61, 40, 0.13);
  text-align: center;
}

.mark {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
}

.mark-ring {
  width: 74px;
  height: 74px;
  border: 10px solid var(--green);
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.mark-dot {
  position: absolute;
  right: 9px;
  top: 19px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 9px rgba(201, 147, 50, 0.14);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(2.35rem, 8vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 540px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  line-height: 1.65;
}

.status {
  width: fit-content;
  max-width: 100%;
  margin: 34px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(31, 107, 67, 0.2);
  border-radius: 999px;
  background: rgba(31, 107, 67, 0.08);
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(31, 107, 67, 0.13);
}

@media (max-width: 520px) {
  .hero {
    padding: 32px 20px;
  }

  .status {
    border-radius: 8px;
  }
}
