/* Outreach-domain site — shared stylesheet.
   One stylesheet serves all 8 sending domains from a single deployment.
   No external requests: system font stack, no CDN, no web fonts, no trackers. */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-inset: #eef0f4;
  --fg: #14181f;
  --fg-muted: #545c6b;
  --fg-faint: #79818f;
  --line: #dfe3ea;
  --accent: #b8322c;
  --accent-fg: #ffffff;
  --focus: #1d63d1;
  --radius: 10px;
  --measure: 68ch;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --bg: #0f1216;
    --bg-soft: #151920;
    --bg-inset: #1c212a;
    --fg: #e9ecf1;
    --fg-muted: #a3abb9;
    --fg-faint: #7d8593;
    --line: #262d38;
    --accent: #e2564f;
    --accent-fg: #12151a;
    --focus: #6ea8fe;
  }
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- header ---- */

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-decoration: none;
  font-size: 1.02rem;
}

.brand .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
  transform: translateY(-1px);
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.site-nav a { color: var(--fg-muted); text-decoration: none; }
.site-nav a:hover { color: var(--fg); text-decoration: underline; }

/* ---- hero ---- */

.hero {
  padding: 68px 0 44px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--fg-faint);
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(1.85rem, 4.4vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.022em;
  margin: 0 0 18px;
  font-weight: 680;
  max-width: 22ch;
}

.lede {
  font-size: 1.11rem;
  color: var(--fg-muted);
  max-width: var(--measure);
  margin: 0 0 26px;
}

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.btn {
  display: inline-block;
  padding: 11px 20px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--accent-fg);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.btn:hover { filter: brightness(1.07); }

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line);
}

.btn--ghost:hover { background: var(--bg-soft); filter: none; }

/* ---- sections ---- */

main section { padding: 44px 0; border-bottom: 1px solid var(--line); }
main section:last-of-type { border-bottom: 0; }

h2 {
  font-size: 1.28rem;
  letter-spacing: -0.014em;
  margin: 0 0 14px;
  font-weight: 660;
}

h3 {
  font-size: 1.02rem;
  margin: 28px 0 8px;
  font-weight: 640;
}

p, li { max-width: var(--measure); }
p { margin: 0 0 15px; }
ul, ol { margin: 0 0 15px; padding-left: 22px; }
li { margin-bottom: 7px; }

a { color: var(--focus); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Four cards: 4-up on desktop, 2-up on tablet, 1-up on phone. auto-fit with a
   230px floor orphaned the fourth card onto its own row at this measure. */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}

@media (max-width: 820px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 460px) {
  .cards { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.card h3 { margin: 0 0 6px; font-size: 0.97rem; }
.card p { margin: 0; font-size: 0.93rem; color: var(--fg-muted); }

.callout {
  background: var(--bg-inset);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 22px 0;
}

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

address {
  font-style: normal;
  color: var(--fg-muted);
  line-height: 1.75;
}

.updated {
  font-size: 0.85rem;
  color: var(--fg-faint);
  margin-bottom: 30px;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.93rem;
  margin: 0 0 18px;
}

.table-scroll { overflow-x: auto; }

th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th { font-weight: 640; color: var(--fg); white-space: nowrap; }
td { color: var(--fg-muted); }

/* ---- footer ---- */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 34px 0 44px;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 26px;
  margin-bottom: 26px;
}

.footer-grid h4 {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0 0 10px;
  font-weight: 650;
}

.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 6px; }
.footer-grid a { color: var(--fg-muted); text-decoration: none; }
.footer-grid a:hover { color: var(--fg); text-decoration: underline; }

.legal-line {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 0.85rem;
  color: var(--fg-faint);
}

.legal-line p { max-width: none; margin: 0 0 6px; }

/* ---- cookie notice ---- */

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  margin: 0 auto;
  max-width: 720px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
  padding: 16px 18px;
  display: none;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.cookie-bar[data-show='1'] { display: flex; }
.cookie-bar p { margin: 0; flex: 1 1 320px; color: var(--fg-muted); max-width: none; }

.cookie-bar button {
  font: inherit;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--accent-fg);
  cursor: pointer;
}

.cookie-bar button:hover { filter: brightness(1.07); }

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 12px;
  z-index: 100;
  background: var(--bg);
  color: var(--fg);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding: 48px 0 34px; }
  .site-header .wrap { min-height: 0; padding-top: 14px; padding-bottom: 14px; }
}
