*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink: #0d0d0d;
  --mid: #555;
  --muted: #888;
  --border: #d8d8d8;
  --bg: #fff;
  --bg-alt: #f6f5f2;
  --r: 8px;
  --max: 1120px;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--ink); background: var(--bg); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; cursor: pointer; }

/* Layout */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.sect { padding: 96px 0; border-top: 1px solid var(--border); }
.sect-alt { background: var(--bg-alt); }
.sect-dark { background: var(--ink); color: #fff; }

/* Grid */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Type */
.eyebrow { font-size: .67rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.eyebrow-light { color: rgba(255,255,255,.35); }
.display { font-size: clamp(2.8rem, 5.5vw, 4.6rem); font-weight: 800; line-height: 1.04; letter-spacing: -.045em; }
.h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700; line-height: 1.1; letter-spacing: -.03em; }
.h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; letter-spacing: -.02em; }
.lead { font-size: 1.15rem; line-height: 1.78; color: var(--mid); }
.body { font-size: 1.02rem; line-height: 1.7; color: var(--mid); }

/* Buttons */
/* Buttons lift on hover with a soft shadow — the same motion the home and
   For Health Plans pages use, so a Schedule-a-Demo button behaves identically
   everywhere. (It replaces the old opacity fade, and the magnetic
   cursor-follow, which made the button chase the pointer.) */
.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 100px; font-family: inherit; font-weight: 600; text-decoration: none; cursor: pointer; white-space: nowrap; border: 2px solid transparent; box-shadow: 0 0 0 0 rgba(8,16,16,0); transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease; }
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn-dark:hover { box-shadow: 0 6px 16px rgba(13,13,13,.32); }
.btn-outline:hover { box-shadow: 0 6px 16px rgba(13,13,13,.18); }
/* On dark bands the shadow has to be darker than the band to read at all. */
.btn-white:hover { box-shadow: 0 8px 20px rgba(0,0,0,.42); }
.btn-ghost:hover { box-shadow: 0 8px 20px rgba(0,0,0,.32); border-color: rgba(255,255,255,.6); }
@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
  .btn:hover { transform: none; }
}
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); padding: 14px 30px; font-size: .95rem; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); padding: 14px 30px; font-size: .95rem; }
.btn-white { background: #fff; color: #000; border-color: #fff; padding: 14px 30px; font-size: .95rem; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); padding: 14px 30px; font-size: .95rem; }
.btn-lg { padding: 17px 38px; font-size: 1rem; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.97); border-bottom: 2px solid var(--ink); height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; }
.nav-brand { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: .83rem; font-weight: 500; color: var(--mid); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-cta { background: var(--ink); color: #fff !important; padding: 9px 22px; border-radius: 100px; font-size: .83rem; font-weight: 700; }

/* Hero */
.hero { padding: 120px 0 96px; border-bottom: 2px solid var(--ink); }

/* Cards */
.card { border: 1px solid var(--border); border-radius: var(--r); padding: 28px; }
.card-dark { border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 28px; }

/* Dash list */
.dash-list { display: flex; flex-direction: column; gap: 13px; }
.dash-item { display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; color: rgba(255,255,255,.75); }
.dash-item-dark { color: var(--mid); }
.dash { color: var(--muted); flex-shrink: 0; }

/* Trust bar */
.trust-bar { background: var(--ink); padding: 22px 0; border-bottom: 2px solid rgba(255,255,255,.08); }
.trust-row { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: baseline; gap: 8px; }
.trust-num { font-size: 1.45rem; font-weight: 800; letter-spacing: -.04em; color: #fff; }
.trust-label { font-size: .76rem; color: rgba(255,255,255,.4); }

/* CTA Band */
.cta-band { background: var(--ink); color: #fff; padding: 104px 0; text-align: center; }

/* Footer */
.footer { background: var(--ink); color: #fff; padding: 56px 0 32px; }
.footer a { color: rgba(255,255,255,.45); font-size: .84rem; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 28px; }
.footer-col h5 { font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 14px; }
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

@media (max-width: 960px) {
  .wrap { padding: 0 24px; }
  .nav { padding: 0 24px; }
  /* The mobile nav is owned by landingpages/site-chrome.css, which turns
     .nav-links into the full-page drawer below 900px. Hiding them here left
     901–960px with no links and no hamburger — the pages on this stylesheet
     had no navigation at all in that band. */
  .g2, .g3, .g4 { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 72px 0 56px; }
  .sect { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 72px 0; }
}
