:root {
  --page: #faf9fa;
  --card: #ffffff;
  --wash: #f8faff;
  --low: #f5f3f4;
  --chrome: #efedee;
  --high: #e9e8e9;
  --emphasis: #094cb2;
  --container: #3366cc;
  --moss: #b1c5ff;
  --ink: #1b1c1d;
  --hush: #434653;
  --gold: #bfab49;
  --fixed: #d9e2ff;
  --on-fixed: #001946;
  --danger: #ba1a1a;
  --shadow: 0 10px 30px rgba(27, 28, 29, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.55;
}

a { color: var(--emphasis); text-decoration: none; }
a:hover { text-decoration: underline; }

.top {
  background: var(--card);
  border-bottom: 1px solid var(--high);
  position: sticky;
  top: 0;
  z-index: 8;
}
.top-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}
.mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--container);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.brand-copy small {
  display: block;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.brand-copy strong {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  font-size: 18px;
}
nav { display: flex; gap: 18px; flex-wrap: wrap; }
nav a {
  color: var(--hush);
  font-size: 13px;
  font-weight: 600;
}
nav a.active { color: var(--emphasis); }

.wrap { max-width: 920px; margin: 0 auto; padding: 28px 20px 72px; }
.kicker {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
}
h1, h2, h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: 34px; margin: 8px 0 12px; }
h2 { font-size: 22px; margin: 0 0 10px; }
h3 { font-size: 17px; margin: 0 0 8px; }
.lede { color: var(--hush); font-size: 16px; max-width: 62ch; }

.hero {
  background: linear-gradient(180deg, var(--wash), var(--card));
  border: 1px solid var(--high);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}
.card {
  background: var(--card);
  border: 1px solid var(--high);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
}
.card p:last-child { margin-bottom: 0; }
.pill {
  display: inline-block;
  background: var(--fixed);
  color: var(--on-fixed);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.stack { display: grid; gap: 14px; }
ul { padding-left: 1.15em; }
li { margin: 0.35em 0; }
.meta { color: var(--hush); font-size: 13px; }

.cta {
  display: inline-block;
  background: var(--container);
  color: #fff !important;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  text-decoration: none !important;
}
.cta.ghost {
  background: rgba(9, 76, 178, 0.1);
  color: var(--emphasis) !important;
}

.foot {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px 40px;
  color: var(--hush);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .grid { grid-template-columns: 1fr; }
  h1 { font-size: 28px; }
  .top-inner { align-items: flex-start; flex-direction: column; }
}
