/* Nära web surface · mirrors brand/tokens/tokens.css (v3 Proximity) */

:root {
  --near-black: #0B0B0F;
  --warm-white: #F5F1E8;
  --warm-tan: #B8956A;
  --text-2: #9E9E9E;
  --text-3: #666666;
  --hairline: #2A2A2A;
  --font-mono: ui-monospace, 'SF Mono', 'Menlo', monospace;
  --font-serif: Georgia, 'Times New Roman', serif;
}

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

body {
  background: var(--near-black);
  color: var(--warm-white);
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

header.site {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 56px;
}

header.site a { border: none; }
header.site img.wordmark { width: 132px; display: block; }

h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}

.updated {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 40px;
}

h2 {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--warm-tan);
  margin: 40px 0 12px;
}

p, li { color: var(--warm-white); margin-bottom: 12px; }
ul { padding-left: 22px; margin-bottom: 12px; }
li { margin-bottom: 6px; }

a {
  color: var(--warm-white);
  text-decoration: none;
  border-bottom: 1px solid var(--warm-tan);
}
a:hover { color: var(--warm-tan); }

.muted { color: var(--text-2); }

footer.site {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer.site a { color: var(--text-2); border-bottom-color: var(--hairline); }
footer.site a:hover { color: var(--warm-white); }

/* index hero */
.hero { margin: 96px 0 64px; }
.hero img.wordmark { width: 260px; max-width: 70vw; display: block; margin-bottom: 28px; }
.hero .tagline {
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  color: var(--warm-white);
}
.hero + p, .lede { max-width: 52ch; }
