* { box-sizing: border-box; }

:root {
  color-scheme: light;
  --bg: #f4f7f6;
  --panel: #ffffff;
  --text: #183029;
  --muted: #6a7b75;
  --border: #d8e4df;
  --primary: #145f49;
  --primary-soft: #e8f3ef;
  --shadow: 0 18px 48px rgba(18, 62, 49, .09);
}

html, body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(20,95,73,.08), transparent 35rem),
    var(--bg);
  color: var(--text);
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.shell {
  width: min(920px, 100%);
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: clamp(28px, 5vw, 50px);
  box-shadow: var(--shadow);
}

.brand-row {
  display: flex;
  gap: 18px;
  align-items: center;
}

.brand-mark {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  background: var(--primary);
  color: white;
  font-size: 24px;
  font-weight: 800;
}

.eyebrow {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 5px;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 46px);
  letter-spacing: -.035em;
}

.status-pill {
  display: inline-flex;
  margin-top: 30px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e5f7ef;
  color: #0b6a4b;
  font-size: 13px;
  font-weight: 800;
}

.lead {
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.info-box {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: #fbfdfc;
}

.label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.roadmap {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.roadmap h2 {
  margin: 0 0 14px;
  font-size: 19px;
}

.roadmap ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.button {
  display: inline-flex;
  margin-top: 30px;
  min-height: 48px;
  align-items: center;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--primary);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.button:hover { filter: brightness(.92); }

footer {
  text-align: center;
  padding-top: 20px;
  color: #87958f;
  font-size: 13px;
}

@media (max-width: 620px) {
  body { padding: 14px; }
  .card { border-radius: 20px; }
  .brand-row { align-items: flex-start; }
  .brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    font-size: 20px;
  }
  .info-grid { grid-template-columns: 1fr; }
}
