:root {
  --ink: #0a0a0b;
  --paper: #f6f6f4;
  --dim: #8a8a92;
  --rule: #232329;
  --accent: #c8102e;
  --measure: 34rem;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font: 400 18px/1.6 ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.011em;
}
a { color: inherit; }
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; padding: 1.5rem clamp(1.25rem, 5vw, 4rem);
  border-bottom: 1px solid var(--rule);
}
.brand { font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2rem); }
.site-nav a { color: var(--dim); text-decoration: none; font-size: 0.95rem; }
.site-nav a:hover { color: var(--paper); }
.btn {
  white-space: nowrap;
  display: inline-block; padding: 0.6rem 1.2rem;
  border: 1px solid var(--paper); border-radius: 2px;
  color: var(--paper); text-decoration: none; font-size: 0.95rem;
}
.btn-primary { background: var(--paper); color: var(--ink); margin-top: 2.5rem; }
.section { padding: clamp(5rem, 14vh, 11rem) clamp(1.25rem, 5vw, 4rem); border-bottom: 1px solid var(--rule); }
.kicker { color: var(--dim); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.8rem; margin: 0 0 1.5rem; }
.section h1 { font-size: clamp(2.5rem, 7vw, 5rem); line-height: 1.02; letter-spacing: -0.03em; margin: 0; max-width: 18ch; }
.section h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 1.5rem; max-width: 24ch; }
.subtitle { color: var(--accent); font-size: 1.2rem; margin: 0 0 1.5rem; }
.section-body { max-width: var(--measure); color: #d6d6d2; }
.section-body p { margin: 0 0 1.1rem; }
.page { padding: clamp(4rem, 10vh, 8rem) clamp(1.25rem, 5vw, 4rem); max-width: calc(var(--measure) + 8rem); }
.page h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.05; letter-spacing: -0.025em; }
.page-body h2 { margin-top: 2.5rem; font-size: 1.35rem; letter-spacing: -0.01em; }
.calendly { margin-top: 3rem; border: 1px solid var(--rule); }
.site-footer { padding: 3rem clamp(1.25rem, 5vw, 4rem); color: var(--dim); font-size: 0.9rem; }
.site-footer .category { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.75rem; }
.legal-links { display: flex; gap: 1.5rem; margin-top: 1rem; }

/* Pricing table. The section-body measure is set for prose, so the table
   opts out of it rather than wrapping every cell. */
.section-body table { width: 100%; max-width: 42rem; border-collapse: collapse; margin: 2rem 0; font-size: 0.95rem; }
.section-body th, .section-body td { padding: 0.7rem 1rem 0.7rem 0; border-bottom: 1px solid var(--rule); }
.section-body th { color: var(--dim); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; font-weight: 500; }
.section-body tbody tr:last-child td { border-bottom: none; }
.section-body { max-width: none; }
.section-body p, .section-body ol, .section-body ul { max-width: var(--measure); }
.page-body ol { max-width: var(--measure); }
.page-body li { margin: 0 0 0.9rem; }
