/* ==========================================================================
   MyBizBOSS - public marketing site
   Design tokens are vendored from "MyBizBoss — Brand Style Guide v1.md" (see the
   VENDORED BRAND TOKENS block below). Rules encoded here as constraints:

     - Orange (#E6751B) is an ACCENT ONLY: thin borders, small status dots,
       toggles/checkboxes, the active-nav underline, and the literal "+" in
       product names. It is NEVER a fill under text and never a glyph fill.
     - Orange and Blue are NEVER placed directly adjacent to one another.
     - Product line names render Montserrat/Navy; only the "+" is Orange.
   ========================================================================== */

/* ==========================================================================
   VENDORED BRAND TOKENS — DO NOT HAND-EDIT THE VALUES BELOW
   --------------------------------------------------------------------------
   Canonical source: "MyBizBoss — Brand Style Guide v1.md"
   (master copy lives in the shared Logos folder; a copy sits at this repo root)

   Cross-surface sharing policy, DECIDED 2026-09-10: the marketing site and the
   product UI use identical values, but vendor their own copy rather than
   linking to a shared hosted file — the product app is payroll-critical and
   must not gain a runtime styling dependency on this site's host, or vice
   versa. When Arch pushes a token update, replace this whole block verbatim.
   Site-specific colours belong in the "Site-local" block underneath, so a
   re-vendor never clobbers them.
   ========================================================================== */
:root {
  /* Primary palette */
  --mbb-navy: #042E4F;
  --mbb-white: #FEFEFE;
  --mbb-orange: #E6751B;
  --mbb-blue: #5988D6;
  --mbb-navy-soft: #3D5A72;
  --mbb-grey: #7C8591;
  --mbb-black: #17191C;

  /* Supporting tones */
  --mbb-text-1: #33526B;
  --mbb-text-2: #4A6577;
  --mbb-text-secondary: #5B7285;
  --mbb-border-1: #E3E8EB;
  --mbb-border-2: #E7EBEE;
  --mbb-bg-1: #EEF1F3;
  --mbb-bg-2: #F4F6F7;
  --mbb-bg-3: #FBFCFD;
  --mbb-nav-muted-1: #A9C3D8;
  --mbb-nav-muted-2: #CFE0EE;

  /* Typography */
  --mbb-font-heading: 'Montserrat', sans-serif; /* weights 600/700/800 — headings, nav, buttons, badges, labels/eyebrows */
  --mbb-font-body: 'Overpass', sans-serif; /* regular weight — body copy, subheads, card paragraph text */
}
/* ===================== END VENDORED BLOCK ================================= */

/* ---------- Site-local: maps canonical tokens onto this site's roles ------
   Safe to edit. Everything here either aliases a --mbb- token or is a value
   the style guide deliberately does not specify (it has no spacing/sizing
   scale yet — see "Explicitly not yet specified" in the guide).
   -------------------------------------------------------------------------- */
:root {
  --navy:        var(--mbb-navy);
  --navy-soft:   var(--mbb-navy-soft);
  --white:       var(--mbb-white);
  --orange:      var(--mbb-orange);
  --blue:        var(--mbb-blue);
  --grey:        var(--mbb-grey);
  --black:       var(--mbb-black);

  --ink:         var(--mbb-black);
  --ink-muted:   var(--mbb-text-2);
  --rule:        var(--mbb-border-1);
  --rule-soft:   var(--mbb-border-2);
  --surface:     var(--mbb-white);
  --surface-alt: var(--mbb-bg-2);
  --surface-sunk:var(--mbb-bg-1);
  --surface-lift:var(--mbb-bg-3);

  /* Muted text on navy grounds (topbar, footer, navy sections). */
  --on-navy:     var(--mbb-nav-muted-2);
  --on-navy-dim: var(--mbb-nav-muted-1);

  /* Local: a darker navy for button hover. Not in the guide - if one is ever
     specified, alias it here instead. */
  --navy-deep:   #032139;

  --font-head: var(--mbb-font-heading), "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: var(--mbb-font-body), "Segoe UI", system-ui, -apple-system, sans-serif;

  --wrap: 1120px;
  --radius: 10px;
  --shadow-sm: 0 1px 2px rgba(4,46,79,.06), 0 2px 8px rgba(4,46,79,.05);
  --shadow-md: 0 4px 16px rgba(4,46,79,.09), 0 12px 32px rgba(4,46,79,.07);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.18;
  margin: 0 0 .5em;
  letter-spacing: -.015em;
}
h1 { font-weight: 800; font-size: clamp(2.1rem, 1.35rem + 2.9vw, 3.35rem); }
h2 { font-weight: 700; font-size: clamp(1.65rem, 1.2rem + 1.7vw, 2.3rem); }
h3 { font-weight: 700; font-size: 1.2rem; letter-spacing: -.008em; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(56px, 7vw, 92px); }
.section--alt { background: var(--surface-alt); border-block: 1px solid var(--rule); }
.section--navy { background: var(--navy); color: var(--on-navy); }
.section--navy h2, .section--navy h3 { color: #FFFFFF; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head p { color: var(--ink-muted); font-size: 1.06rem; margin-bottom: 0; }
.section--navy .section-head p { color: var(--on-navy-dim); }
.section-head--center { margin-inline: auto; text-align: center; }

/* Navy on white - the topbar is now white, so a white skip link would vanish. */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #FFFFFF; padding: 12px 20px;
  font-family: var(--font-head); font-weight: 700; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Eyebrow (blue, uppercase, above H1) ---------- */
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 14px;
}
.section--navy .eyebrow { color: #8FB0E4; }  /* lightened for contrast on navy */

/* ---------- Product line names: "+" is always orange, never clipped ---------- */
.plus { color: var(--orange); font-weight: inherit; }
.pname { font-family: var(--font-head); font-weight: 700; color: var(--navy); white-space: nowrap; }
.section--navy .pname { color: #FFFFFF; }
.section--navy .pname .plus { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  padding: 13px 26px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  /* A button label breaking across two lines always looks like a bug. */
  white-space: nowrap;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #FFFFFF; border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #FFFFFF; }
/* On navy backgrounds the primary inverts to white fill / navy text. */
.btn-on-navy { background: #FFFFFF; color: var(--navy); border-color: #FFFFFF; }
.btn-on-navy:hover { background: #E8EEF3; border-color: #E8EEF3; }
.btn-ghost-navy { background: transparent; color: #FFFFFF; border-color: rgba(255,255,255,.6); }
.btn-ghost-navy:hover { background: rgba(255,255,255,.12); border-color: #FFFFFF; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px;
}

/* ---------- Topbar ----------
   White bar carrying the FULL-COLOUR lockup, so the brand's orange appears in
   the mark. Decided with Bob 2026-09-10.

   Why this rather than recolouring the logo for a navy bar: the style guide
   forbids creating logo variants outside the four approved ones, but lists the
   navy topbar under "Component patterns", which it describes as "the reference
   implementation, not yet a formally itemized component library". Changing the
   bar bends a provisional convention; recolouring the mark would break a hard
   rule. The orange active-nav underline is unchanged.

   The hairline border and faint shadow are load-bearing: without them a white
   sticky bar over a white section has no edge. */
.topbar {
  background: var(--white); color: var(--navy);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 1px 3px rgba(4, 46, 79, .06);
}
.topbar__inner { display: flex; align-items: center; gap: 20px; min-height: 72px; }
.topbar__logo { display: flex; align-items: center; margin-right: auto; padding-block: 12px; }
.topbar__logo img { height: 34px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-head); font-weight: 600; font-size: .93rem;
  color: var(--mbb-text-1); text-decoration: none; padding: 10px 14px;
  border-bottom: 3px solid transparent; border-radius: 4px 4px 0 0; white-space: nowrap;
  transition: color .15s ease, border-color .15s ease;
}
.nav a:hover { color: var(--navy); }
/* Active nav gets the orange underline - a thin rule, never a fill under text. */
.nav a[aria-current="page"] { color: var(--navy); border-bottom-color: var(--orange); }
.topbar .btn { padding: 10px 20px; font-size: .9rem; margin-left: 10px; }

.nav-toggle {
  display: none; background: transparent; border: 1.5px solid var(--mbb-nav-muted-1);
  color: var(--navy); border-radius: 8px; padding: 8px 12px; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
}
.nav-toggle:hover { border-color: var(--navy); }
/* Collapse to the hamburger at 1024px, not 860px. With a Log In button added
   alongside Request a Demo, the bar could not hold the logo, four nav links and
   two buttons much below ~1000px without wrapping labels onto two lines.
   NOTE: site.js matchMedia("(min-width: 1025px)") MUST stay in step with this
   value, or the open menu will not collapse when crossing the breakpoint. */
@media (max-width: 1024px) {
  .nav-toggle { display: inline-block; }
  .topbar__inner { flex-wrap: wrap; }
  .nav {
    display: none; flex-direction: column; align-items: stretch;
    width: 100%; gap: 0; padding-bottom: 14px;
  }
  .nav.is-open { display: flex; }
  /* Collapsed menu sits on the same white bar, so its dividers are light too -
     otherwise the open menu reads as a different site. */
  .nav a { border-bottom: 1px solid var(--rule); border-radius: 0; padding: 14px 4px; }
  .nav a[aria-current="page"] { border-bottom-color: var(--orange); }
  /* Keep the bar a single row; the CTA rides inside the opened menu.
     (The hero CTA is immediately below, so nothing is lost above the fold.) */
  .topbar .btn { display: none; }
  .nav.is-open ~ .btn { display: inline-flex; width: 100%; margin: 0 0 16px; }
}

/* ---------- Hero ---------- */
/* Starts from the tinted background rather than near-white, so the hero reads
   as its own band beneath the white topbar instead of merging into it. */
.hero { background: linear-gradient(180deg, var(--surface-alt) 0%, var(--white) 100%); border-bottom: 1px solid var(--rule); }
.hero__inner { padding-block: clamp(52px, 6.5vw, 86px); display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .hero__inner { grid-template-columns: 1.08fr .92fr; gap: 60px; } }
.hero__lede { font-size: 1.16rem; color: var(--ink-muted); max-width: 56ch; }
.hero .btn-row { margin-top: 30px; }
.hero__note { margin-top: 20px; font-size: .9rem; color: var(--ink-muted); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .45em; }
.card p { color: var(--ink-muted); font-size: .98rem; margin-bottom: 0; }
/* Line-availability note inside a feature card, e.g. "On Core+ and above." */
.card p em {
  display: block; font-style: normal; font-size: .84rem; font-weight: 600;
  color: var(--navy-soft); margin-top: 10px;
}

/* Blue icon-dot square - established component pattern.
   Kept clear of any orange element (brand adjacency rule). */
.icon-dot {
  width: 44px; height: 44px; border-radius: 9px;
  background: var(--blue); color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex: none;
}
.icon-dot svg { width: 23px; height: 23px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ---------- Hero flow diagram ----------
   A schematic of the approval path, not a product screenshot. */
.flow-card { padding: 30px 28px; box-shadow: var(--shadow-md); }
.flow-card__title {
  font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--navy-soft);
  margin-bottom: 22px;
}
.flow { list-style: none; margin: 0; padding: 0; }
.flow__step { position: relative; display: flex; align-items: flex-start; gap: 16px; padding-bottom: 26px; }
/* Connector line down the left rail. */
.flow__step:not(.flow__step--end)::before {
  content: ""; position: absolute; left: 15px; top: 32px; bottom: 4px;
  width: 2px; background: var(--rule);
}
.flow__num {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy); color: #FFFFFF;
  font-family: var(--font-head); font-weight: 700; font-size: .88rem;
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
}
.flow__step--end .flow__num { background: var(--navy); box-shadow: 0 0 0 4px rgba(230,117,27,.22); }
.flow__step--end { padding-bottom: 0; }
.flow__label {
  font-family: var(--font-head); font-weight: 700; font-size: .97rem;
  color: var(--navy); padding-top: 4px; line-height: 1.35;
}
.flow__label small {
  display: block; font-family: var(--font-body); font-weight: 400;
  font-size: .87rem; color: var(--ink-muted); margin-top: 2px;
}
.flow-card__foot {
  margin: 24px 0 0; padding-top: 18px; border-top: 1px solid var(--rule);
  font-size: .87rem; color: var(--ink-muted);
}

/* ---------- Pricing ---------- */
.tiers { display: grid; gap: 26px; align-items: stretch; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.tier {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
/* Featured tier uses a thin orange border - an allowed accent use. */
.tier--featured { border: 2px solid var(--orange); box-shadow: var(--shadow-md); }
.tier__badge {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy); background: var(--surface-sunk); border: 1px solid var(--rule);
  padding: 5px 11px; border-radius: 999px; margin-bottom: 14px; align-self: flex-start;
}
.tier__name { font-size: 1.55rem; font-weight: 800; margin-bottom: 6px; }
.tier__pitch { color: var(--ink-muted); font-size: .97rem; }
.tier__price { margin: 20px 0 4px; font-family: var(--font-head); color: var(--navy); }
.tier__price .amount { font-size: 2.5rem; font-weight: 800; letter-spacing: -.02em; }
.tier__price .per { font-size: .95rem; font-weight: 600; color: var(--ink-muted); margin-left: 4px; }
.tier__min { font-size: .88rem; color: var(--ink-muted); margin-bottom: 22px; }
.tier__quote { margin: 20px 0 22px; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--navy); }
.tier .btn { width: 100%; margin-top: auto; }
.tier__inherits {
  font-size: .9rem; font-weight: 600; color: var(--navy);
  padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid var(--rule);
}

/* Checklists - the orange dot is a small status accent, allowed. */
.ticks { list-style: none; margin: 0 0 26px; padding: 0; }
.ticks li { position: relative; padding-left: 27px; margin-bottom: 11px; font-size: .96rem; color: var(--ink); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 9px; height: 9px; border-radius: 50%; background: var(--orange);
}
.ticks--navy li { color: var(--on-navy); }

/* ---------- Comparison table ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--white); }
table.compare { width: 100%; border-collapse: collapse; min-width: 660px; font-size: .95rem; }
table.compare th, table.compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--rule); }
table.compare thead th {
  background: var(--navy); color: #FFFFFF; font-family: var(--font-head);
  font-weight: 700; font-size: .9rem;
}
table.compare tbody tr:last-child td, table.compare tbody tr:last-child th { border-bottom: none; }
table.compare tbody tr:nth-child(even) { background: var(--surface-lift); }
table.compare td.mark { text-align: center; font-weight: 700; color: var(--navy); }
table.compare td.mark[data-v="no"] { color: var(--grey); }
table.compare th[scope="row"] { font-weight: 600; font-family: var(--font-body); color: var(--ink); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); }
.step { position: relative; padding-top: 54px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0; width: 40px; height: 40px;
  background: var(--navy); color: #FFFFFF; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
}
.step h3 { font-size: 1.08rem; }
.step p { color: var(--ink-muted); font-size: .96rem; margin: 0; }
.section--navy .step p { color: var(--on-navy-dim); }
.section--navy .step::before { background: #FFFFFF; color: var(--navy); }

/* ---------- Split layout (copy beside a form) ---------- */
.split { display: grid; gap: 44px; align-items: start; }
@media (min-width: 920px) { .split { grid-template-columns: .95fr 1.05fr; gap: 56px; } }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: clamp(26px, 3.4vw, 40px); box-shadow: var(--shadow-md);
}
.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: .92rem; color: var(--navy); margin-bottom: 7px;
}
.field .req { color: var(--orange); font-weight: 700; margin-left: 2px; }
.field .hint { display: block; font-weight: 400; font-size: .85rem; color: var(--ink-muted); margin-top: 3px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid #C9D1D9; border-radius: 8px;
  background: var(--white); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(89,136,214,.25);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: #C0392B; box-shadow: 0 0 0 3px rgba(192,57,43,.14);
}
.field .error { display: none; color: #C0392B; font-size: .87rem; margin-top: 6px; font-weight: 600; }
.field .error.show { display: block; }
.field textarea { resize: vertical; min-height: 108px; }
.field-row { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.form-note { font-size: .88rem; color: var(--ink-muted); margin-top: 18px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { display: none; padding: 15px 18px; border-radius: 8px; margin-bottom: 22px; font-size: .95rem; }
.form-status.show { display: block; }
.form-status--error { background: #FDECEA; border: 1px solid #E6A9A2; color: #8E2A1E; }
.form-status--ok { background: #ECF5EC; border: 1px solid #A8CBA8; color: #1E5B2A; }

/* ---------- Blog ---------- */
.post__meta {
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink-muted);
  margin: 0 0 6px;
}
.post-card h3 { margin: 4px 0 8px; }
.post-card h3 a { color: var(--navy); text-decoration: none; }
.post-card h3 a:hover { text-decoration: underline; }

/* ---------- Video embed ----------
   Responsive 16:9 frame. Rendered by the videoEmbed filter from a YouTube or
   Vimeo URL; an empty URL renders nothing at all rather than an empty box. */
.video-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--rule); background: var(--surface-sunk);
  box-shadow: var(--shadow-md);
}
.video-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* ---------- Callout ---------- */
.callout {
  background: var(--surface-alt); border: 1px solid var(--rule);
  border-left: 4px solid var(--orange);          /* thin accent rule - allowed */
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
}
.callout p { font-size: .97rem; color: var(--ink-muted); }
.callout strong { color: var(--navy); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: var(--on-navy-dim); padding-block: 56px 32px; font-size: .93rem; }
.footer a { color: var(--on-navy); text-decoration: none; }
.footer a:hover { color: #FFFFFF; text-decoration: underline; }
.footer__grid { display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.footer__logo img { height: 36px; width: auto; margin-bottom: 16px; }
.footer h4 {
  font-family: var(--font-head); font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: #FFFFFF; margin-bottom: 14px;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 9px; }
.footer__bottom {
  margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .86rem; color: var(--on-navy-dim);
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.stack > * + * { margin-top: 18px; }
.lede { font-size: 1.1rem; color: var(--ink-muted); }
.prose { max-width: 68ch; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.5em; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
