:root {
  --purple: #8459ad;
  --purple-light: #dacde6;
  --purple-lightest: #f3eef7;
  --bg: #fefcfa;
  --warm: #f8efe6;
  --border: #f7eada;
  --text: #2b2724;
  --muted: #6b625b;
  --maxw: 46rem;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    16px/1.65 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Inter,
    Helvetica,
    Arial,
    sans-serif;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}
header {
  border-bottom: 1px solid var(--border);
  background: var(--warm);
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--purple);
  text-decoration: none;
  letter-spacing: -0.01em;
}
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-left: 1.1rem;
}
nav a:hover {
  color: var(--purple);
  text-decoration: underline;
}
main {
  padding: 3.5rem 0 4rem;
}
h1 {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
h2 {
  font-size: 1.15rem;
  margin: 2.25rem 0 0.6rem;
  letter-spacing: -0.01em;
}
.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34rem;
}
.note {
  margin-top: 2.5rem;
  padding: 0.9rem 1.1rem;
  background: var(--purple-lightest);
  border: 1px solid var(--purple-light);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--muted);
}
.meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: -0.4rem;
}
.callout {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  margin: 1.25rem 0;
}
footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
  margin-top: 2rem;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--muted);
}
footer a {
  color: var(--muted);
}
