:root {
  --bg: #ffffff;
  --bg-subtle: #f7f7f9;
  --text: #16151a;
  --text-soft: #55545c;
  --border: #e6e5ea;
  --accent: #cf1657;
  --accent-soft: #fdeef3;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121116;
    --bg-subtle: #1b1a20;
    --text: #f4f3f6;
    --text-soft: #b4b2bd;
    --border: #2c2b32;
    --accent: #ff5c96;
    --accent-soft: #2a1420;
  }
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.wordmark {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}

nav.site a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 15px;
  margin-left: 20px;
}

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

h1 {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 8px 0 4px;
}

h2 {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 21px;
  margin: 40px 0 12px;
}

p, li {
  color: var(--text-soft);
}

.meta {
  color: var(--text-soft);
  font-size: 14px;
  margin: 0 0 32px;
}

a {
  color: var(--accent);
}

.card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  margin: 24px 0;
}

.pill {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

footer.site {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 14px;
}

footer.site a {
  color: var(--text-soft);
}

.hero {
  padding: 64px 0 40px;
  text-align: center;
}

.hero p.tagline {
  font-size: 19px;
  max-width: 480px;
  margin: 0 auto;
}

.links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 28px;
}

.links a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

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