:root {
  color-scheme: light;
  --bg: #f5efe6;
  --bg-2: #e7efe8;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-border: rgba(32, 41, 41, 0.12);
  --text: #16201f;
  --muted: #546160;
  --accent: #0f766e;
  --accent-2: #d97706;
  --shadow: 0 20px 60px rgba(20, 30, 30, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(217, 119, 6, 0.13), transparent 28%),
    linear-gradient(140deg, var(--bg), var(--bg-2));
  min-height: 100vh;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.brand {
  text-decoration: none;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 28px;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy h1,
.panel h1,
.panel h2 {
  margin: 0 0 12px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  line-height: 1.1;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
}

.lede {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.28);
}

.secondary {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(22, 32, 31, 0.08);
}

.status-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.5));
  border: 1px solid rgba(22, 32, 31, 0.08);
}

.status-card p {
  margin: 0;
  font-weight: 600;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #7dd3fc, var(--accent));
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.1);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

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

.card {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(22, 32, 31, 0.08);
}

.card a {
  text-decoration: none;
}

.prose {
  color: var(--muted);
}

.prose h1,
.prose h2,
.prose h3 {
  color: var(--text);
}

.footer {
  padding: 18px 4px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 840px) {
  .hero,
  .hero-panel,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    flex-direction: column;
    align-items: flex-start;
  }
}

