:root {
  --bg: #f8f7f5;
  --ink: #161210;
  --muted: #6b6259;
  --caption: #b3ab9e;
  --card: #ffffff;
  --border: rgba(0, 0, 0, 0.06);
  --accent: #1c6778;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family:
    'Instrument Sans',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--ink);
}

.wrap {
  width: min(680px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.brand {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--caption);
  text-decoration: none;
  margin-bottom: 28px;
}

.brand:hover {
  color: var(--ink);
}

h1 {
  margin: 0 0 12px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(32px, 5vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.meta {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 15px;
}

h2 {
  margin: 32px 0 10px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

p,
li {
  margin: 0 0 14px;
  font-size: 15.5px;
  color: var(--ink);
}

ul {
  margin: 0 0 14px;
  padding-inline-start: 1.2em;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.nav a {
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
}

.nav a:hover {
  color: var(--accent);
}

.note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--muted);
}

.home-hero {
  padding-top: 72px;
}

.home-hero p {
  max-width: 34em;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

.pill:hover {
  color: #fff;
  opacity: 0.92;
}
