:root {
  color-scheme: light;
  --ink: #172026;
  --muted: #5d6973;
  --line: #d8e1e8;
  --soft: #f5f8fa;
  --brand: #0b6fae;
  --brand-dark: #084b7a;
  --teal: #12a8b8;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}
.page {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}
h1 {
  margin: 22px 0 12px;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}
h2 {
  margin: 30px 0 8px;
  font-size: 1.35rem;
  letter-spacing: 0;
}
p {
  margin: 0 0 14px;
  color: var(--muted);
}
a {
  color: var(--brand);
  font-weight: 700;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--brand-dark);
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  box-shadow: 0 6px 16px rgba(8, 75, 122, .18);
  font-weight: 900;
}
.download-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  color: white;
  font-weight: 800;
}
