:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #302c28;
  background: #f7f5f0;
  font-synthesis: none;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background-color: #f7f5f0;
  background-image: radial-gradient(#d8d0c5 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  display: grid;
  grid-template-rows: 1fr auto;
}
main { width: min(960px, calc(100% - 40px)); margin: auto; padding: 72px 0 42px; }
header { max-width: 680px; margin-bottom: 38px; }
.eyebrow { color: #6e675e; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
h1 { font: 500 clamp(2.4rem, 7vw, 4.8rem)/1.02 Georgia, serif; margin: 12px 0 18px; letter-spacing: -0.04em; }
.lede { color: #655e56; font-size: 1.06rem; line-height: 1.65; }
.apps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.app-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid #ddd6cc;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 34px rgb(64 50 35 / 0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.app-card:hover, .app-card:focus-visible { transform: translateY(-3px); box-shadow: 0 15px 42px rgb(64 50 35 / 0.12); outline: none; }
.icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: #dbeaf0; color: #315d6d; font-size: 1.5rem; }
.chart-management .icon { background: #eee2cc; color: #74562d; }
.app-card strong { font: 500 1.8rem/1.15 Georgia, serif; }
.app-card > span:not(.icon, .eyebrow) { color: #655e56; line-height: 1.55; }
.app-card b { margin-top: auto; color: #35697a; }
.chart-management b { color: #74562d; }
footer { text-align: center; color: #766f67; font-size: 0.8rem; padding: 20px; }
@media (max-width: 680px) { main { padding-top: 44px; } .apps { grid-template-columns: 1fr; } .app-card { min-height: 240px; } }
