:root {
  color-scheme: light;
  --bg: #eef7f1;
  --ink: #102016;
  --muted: #53665b;
  --green: #17643a;
  --green-dark: #0d3d25;
  --card: rgba(255, 255, 255, 0.86);
  --border: rgba(16, 32, 22, 0.12);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(38, 153, 94, 0.28), transparent 34rem),
    linear-gradient(135deg, #f8fff9 0%, var(--bg) 48%, #d7ede0 100%);
}

.page-shell {
  width: min(1100px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 48px 0;
}

.hero,
.status-card {
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--card);
  box-shadow: 0 24px 80px rgba(23, 100, 58, 0.16);
  backdrop-filter: blur(18px);
}

.hero {
  padding: clamp(36px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -110px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(23, 100, 58, 0.24), rgba(23, 100, 58, 0.02));
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(3.5rem, 12vw, 8.75rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.subtitle {
  max-width: 660px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.primary {
  color: white;
  background: var(--green);
}

.secondary {
  color: var(--green-dark);
  background: rgba(23, 100, 58, 0.1);
}

.status-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: clamp(28px, 5vw, 48px);
}

.checks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.checks li {
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--green-dark);
  background: rgba(23, 100, 58, 0.09);
  font-weight: 700;
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1100px);
    padding: 20px 0;
  }

  .hero,
  .status-card {
    border-radius: 24px;
  }

  .status-card {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
