:root {
  color-scheme: light;
  --bg: #eef4f1;
  --ink: #13221b;
  --muted: #4b5f55;
  --line: #c4d5cc;
  --panel: rgba(255, 255, 255, 0.82);
  --brand: #0d6b4d;
  --brand-strong: #084c36;
  --button-text: #f7fbf9;
  --shadow: 0 24px 60px rgba(19, 34, 27, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(13, 107, 77, 0.18), transparent 35%),
    linear-gradient(160deg, #f6fbf8 0%, var(--bg) 100%);
}

.shell {
  width: min(960px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0 5rem;
  display: grid;
  gap: 1.5rem;
}

.panel {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero h1,
.panel h2 {
  margin: 0 0 0.75rem;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--brand);
  font-weight: 700;
}

.lede {
  margin: 0;
  max-width: 46rem;
  color: var(--muted);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 140ms ease, background-color 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--brand);
  color: var(--button-text);
}

.button.primary:hover {
  background: var(--brand-strong);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
}

.status-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .shell {
    padding-top: 2rem;
  }

  .panel {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .actions {
    flex-direction: column;
  }
}
