:root {
  color-scheme: light;
  --ink: #172026;
  --muted: #5d6972;
  --line: #d8e0e5;
  --paper: #f7f9fa;
  --panel: #ffffff;
  --accent: #0f8b8d;
  --accent-dark: #0a5557;
  --warm: #d88c4a;
}
* { box-sizing: border-box; }
html { min-height: 100%; background: var(--paper); }
body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(247,249,250,.92)),
    radial-gradient(circle at 20% 0%, rgba(15,139,141,.16), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(216,140,74,.14), transparent 28%),
    var(--paper);
}
.shell {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 48px;
}
.hero {
  min-height: 48vh;
  display: grid;
  align-content: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 52px;
}
.mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--accent-dark);
  font-weight: 800;
  letter-spacing: 0;
}
.eyebrow {
  margin: 0;
  color: var(--accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}
h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .96;
  letter-spacing: 0;
}
.lead {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}
.status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  font-weight: 650;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #1f9d55;
  box-shadow: 0 0 0 4px rgba(31,157,85,.14);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 28px;
}
article {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.76);
  padding: 22px;
}
article span {
  color: var(--warm);
  font-size: 13px;
  font-weight: 800;
}
h2 {
  margin: 26px 0 10px;
  font-size: 20px;
  letter-spacing: 0;
}
article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1080px); padding-top: 44px; }
  .hero { min-height: 44vh; padding-bottom: 36px; }
  h1 { font-size: 44px; }
  .lead { font-size: 17px; }
  .grid { grid-template-columns: 1fr; }
}
