*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #fafaf8;
  --surface: #ffffff;
  --border: #e8e6e1;
  --ink: #1a1814;
  --ink2: #3d3a35;
  --ink3: #5f5953;
  --ink4: #8a8580;
  --accent: #1a3a8f;
  --accent2: #2952c4;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Georgia", "Times New Roman", serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.logo em {
  color: #4f72c9;
  font-family: "Segoe Script", "Snell Roundhand", "Brush Script MT", "Lucida Handwriting", cursive;
  font-size: 2.25em;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  margin: 0 -2px 0 -8px;
  position: relative;
  top: 7px;
  display: inline-block;
  transform: rotate(-6deg);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav-link,
.nav-cta {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 14px;
  text-decoration: none;
}

.nav-link {
  color: var(--ink3);
  transition: color 0.15s ease;
}

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

.nav-cta {
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  padding: 8px 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background 0.15s ease;
}

.nav-cta:hover { background: var(--ink); }

.initiatives-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 132px 48px 96px;
}

.page-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 13px;
  color: var(--ink4);
  margin-bottom: 12px;
}

.page-label .id {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  color: var(--ink3);
  margin-right: 8px;
}

h1 {
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.lede {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink3);
  margin-bottom: 12px;
}

.source {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 13px;
  color: var(--ink4);
  margin-bottom: 36px;
}

.source a {
  color: var(--accent2);
  text-decoration: none;
  border-bottom: 1px solid rgba(41, 82, 196, 0.3);
  transition: border-color 0.15s ease;
}

.source a:hover { border-bottom-color: var(--accent2); }

.initiative-prose p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink2);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.initiative-prose p:last-child { margin-bottom: 0; }

.initiative-cta {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.initiative-cta p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  color: var(--ink2);
  margin: 0;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: 6px;
  padding: 9px 22px;
  transition: background 0.15s ease;
}

.cta-btn:hover { background: var(--ink); }

footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

footer p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 13px;
  color: var(--ink4);
  text-align: center;
}

@media (max-width: 720px) {
  nav { padding: 16px 24px; }
  .nav-right { gap: 16px; }
  .initiatives-section { padding: 108px 24px 72px; }
  .initiative-prose p { font-size: 15px; line-height: 1.7; }
  footer { padding: 24px; }
}
