/* ============================================================================
   Care Roster — marketing landing page stylesheet (landing.css)
   Self-contained on purpose: the app stylesheet (/app/css/app.css) is owned by
   the product shell and changes with it; the landing page must never break
   when the app restyles. Tokens are copied from the same soft system: cool
   canvas, deep indigo identity, warm sand accent, Manrope + Source Sans 3.
   No frameworks, no build step.
   ============================================================================ */

:root {
  --vc-primary: #574AB5;
  --vc-primary-dark: #463A8C;
  --vc-primary-soft: #ECE9F8;
  --vc-navy: #1C1A2E;
  --vc-accent: #8A6A12;        /* TEXT-SAFE rust (≈5.3:1 on white) */
  --vc-accent-deco: #C9A14A;   /* decorative rust — never text */
  --vc-accent-soft: #F3ECD8;
  --vc-bg: #F7F5FA;
  --vc-surface: #FFFFFF;
  --vc-surface-muted: #F2F0F7;
  --vc-border: #E4E1EE;
  --vc-text: #1C1A2E;
  --vc-text-soft: #5B5870;   /* nudged darker for small-text contrast (design review) */
  --vc-eyebrow: #8A6A12;     /* restrained rust, brand emphasis only */
  --vc-danger: #B3473D;
  --vc-danger-soft: #F8ECEA;
  --vc-success: #2F7D5B;        /* calm hospice green — live / verified / current (text-safe on white) */
  --vc-success-soft: #E6F2EC;   /* soft green status background */
  --vc-radius: 18px;
  --vc-radius-sm: 10px;
  --vc-shadow: 0 1px 2px rgba(28, 26, 46, .04), 0 16px 40px rgba(28, 26, 46, .07);
  --vc-shadow-lift: 0 2px 4px rgba(28, 26, 46, .06), 0 22px 48px rgba(28, 26, 46, .1);
  --vc-font: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --vc-display: 'Manrope', 'Source Sans 3', system-ui, sans-serif;
  font-size: 17px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--vc-font);
  /* Soft lavender wash (no fixed-attachment — it repaints on every scroll). */
  background: linear-gradient(180deg, #FBFAFF 0%, #F6F3FB 100%);
  color: var(--vc-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;   /* belt-and-suspenders against decorative bleed */
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { font-family: var(--vc-display); line-height: 1.18; margin: 0 0 .55rem; }
a { color: var(--vc-primary); }

.balance { text-wrap: balance; }

/* honeypot field — visually hidden, still in the form for bots to find */
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

/* ---- shared layout -------------------------------------------------------- */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
section[id], #screenshots { scroll-margin-top: 92px; }   /* anchors land below the sticky header */
.section { padding: 5.2rem 0; }
.section--tight { padding: 3.4rem 0; }
/* Soft alternation: opaque white panels (opaque composites faster than translucent). */
.section--alt { background: #FFFFFF; border-top: 1px solid rgba(88, 72, 135, .07); border-bottom: 1px solid rgba(88, 72, 135, .07); }

/* eyebrows: small + restrained, major sections only (design review #4) */
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--vc-eyebrow);
  background: var(--vc-accent-soft);
  padding: .36rem .75rem;
  border-radius: 999px;
  margin-bottom: 1.05rem;
}
.section-title {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.05;
  max-width: 24ch;
}
.section-title .hl { color: var(--vc-primary); }
.section-lead {
  color: var(--vc-text-soft);
  font-size: 17px; line-height: 1.65;
  max-width: 60ch;
  margin: 0 0 2.2rem;
}
.center { text-align: center; }
.center .section-title, .center .section-lead { margin-left: auto; margin-right: auto; }

/* ---- two-tone wordmark ------------------------------------------------------ */
.wordmark { font-family: var(--vc-display); font-weight: 800; letter-spacing: -.04em; word-spacing: -.14em; text-decoration: none; white-space: nowrap; }
.wordmark .wm-a { color: var(--vc-primary); }
/* Subtle gap between the two halves so "Care Roster" reads as two words —
   ~half a space, tight (Greg 2026-06-18). Applied here + in app.css so EVERY
   instance matches: marketing header/footer, app nav, login, password screens. */
.wordmark .wm-b { color: var(--vc-accent); margin-left: .16em; }

/* ---- buttons ---------------------------------------------------------------- */
.btn {
  font: inherit; font-weight: 600;
  border-radius: 12px;
  border: 1.5px solid transparent;
  padding: .62rem 1.35rem;
  min-height: 2.75rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s, color .12s, filter .12s;
}
.btn-primary {
  background: linear-gradient(180deg, #6354c4 0%, #463a8c 100%);
  color: #fff;
  border: 1px solid rgba(70, 58, 140, .35);
  box-shadow: 0 10px 20px rgba(87, 74, 181, .20), inset 0 1px 0 rgba(255, 255, 255, .18);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #5b4cb8 0%, #3e3480 100%);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(87, 74, 181, .28), inset 0 1px 0 rgba(255, 255, 255, .18);
}
.btn-primary:active { transform: translateY(1px) scale(.99); box-shadow: 0 4px 10px rgba(87, 74, 181, .18); }
.btn-ghost { background: #fff; border-color: var(--vc-border); color: var(--vc-text); }
.btn-ghost:hover { color: var(--vc-primary-dark); border-color: var(--vc-primary); }
.btn-big { font-size: 1.1rem; padding: .9rem 1.9rem; min-height: 3.35rem; border-radius: 14px; }
/* inverted button for the deep-indigo band */
.btn-cream { background: #FDFBF6; color: var(--vc-primary-dark); border: 1px solid rgba(255, 255, 255, .5); box-shadow: 0 12px 26px rgba(30, 26, 60, .35); }
.btn-cream:hover { background: #fff; transform: translateY(-1px); }
.btn:focus-visible, a:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(87, 74, 181, .45);
  outline-offset: 2px;
}

/* skip link — visually hidden until keyboard-focused (a11y) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--vc-primary-dark, #463a8c); color: #fff;
  font-weight: 600; text-decoration: none;
  padding: .6rem 1.1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* ---- sticky header ---------------------------------------------------------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  /* Frosted glass — translucent white + a LIGHT backdrop blur so the bar reads
     as a premium pane floating over the page. The earlier top-of-page
     sluggishness came from a HEAVY header blur compounding with a
     fixed-attachment body background + a hero dot-texture + translucent
     sections (all since removed); with those gone, a 10px blur over this 72px
     bar composites cheaply. The soft drop-shadow is the "floating" cue. */
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid rgba(88, 72, 135, .12);
  box-shadow: 0 1px 0 rgba(88, 72, 135, .04), 0 10px 30px -14px rgba(40, 33, 84, .16);
}
/* Solid fallback where backdrop-filter is unsupported, so the bar never goes
   muddy-translucent without the blur to clean it up. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-head { background: #FFFFFF; }
}
.site-head-in {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.4rem;
  padding: 1rem 32px; min-height: 74px;
}
/* A bit of air between the mark and the wordmark — Greg widened this 2026-06-18
   (per the header audit), kept modest so they're not too far apart. Matches VL. */
.brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; }
/* The multicolor mark is its own transparent shape — no square container/shadow. */
.brand img { width: 52px; height: 52px; }
/* line-height:1 so the wordmark's optical center lines up with the mark's center. */
.brand .wordmark { font-size: 1.58rem; line-height: 1; }
.site-nav { display: flex; gap: .3rem; margin-left: 1.6rem; }
.site-nav a {
  text-decoration: none; color: var(--vc-text-soft);
  font-weight: 650; font-size: 1rem; letter-spacing: -.005em;
  padding: .54rem 1.05rem; border-radius: 999px;
  transition: color .14s, background-color .14s, box-shadow .14s;
}
.site-nav a:hover {
  color: var(--vc-primary-dark); background: var(--vc-primary-soft);
  box-shadow: inset 0 0 0 1px rgba(87, 74, 181, .12);
}
.head-cta { margin-left: auto; display: flex; align-items: center; gap: .9rem; }
.head-cta .btn-ghost { border: none; background: none; padding: .55rem .85rem; border-radius: 999px; font-weight: 650; color: var(--vc-text); }
.head-cta .btn-ghost:hover { color: var(--vc-primary-dark); background: var(--vc-primary-soft); }
.head-cta .btn-primary { min-height: 2.95rem; padding: .64rem 1.55rem; font-size: 1rem; font-weight: 700; border-radius: 13px; box-shadow: 0 10px 22px rgba(87, 74, 181, .30), inset 0 1px 0 rgba(255, 255, 255, .22); }
.head-cta .btn-primary:hover { box-shadow: 0 14px 30px rgba(87, 74, 181, .38), inset 0 1px 0 rgba(255, 255, 255, .22); }
@media (max-width: 860px) { .site-nav { display: none; } .site-head-in { gap: .8rem; padding: .85rem 18px; min-height: 62px; } .brand img { width: 40px; height: 40px; } .brand .wordmark { font-size: 1.3rem; } }

/* ---- hero -------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  padding: 5.2rem 0 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(87, 74, 181, .10), transparent 36%),
    radial-gradient(circle at 86% 8%, rgba(16, 42, 67, .07), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(201, 161, 74, .05), transparent 26%),
    linear-gradient(180deg, #F9F8FD 0%, var(--vc-bg) 100%);
}
/* (Removed the full-hero dot-texture layer — it was the heaviest paint at the
   top of the page and made scrolling under the sticky header feel sluggish.) */
.hero .wrap { position: relative; z-index: 1; }
.hero-copy { max-width: 880px; margin: 0 auto; text-align: center; }
.hero h1 {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800; letter-spacing: -.035em; line-height: .98;
  margin: 0 0 1.15rem;
}
.hero h1 .hl { color: var(--vc-primary); }
.hero-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  color: var(--vc-text-soft);
  max-width: 56ch; margin: 0 auto 1.9rem;
}
.hero-cta { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: .4rem 1.5rem; justify-content: center; flex-wrap: wrap;
  margin: 1.35rem 0 0; padding: 0; list-style: none;
  font-size: .93rem; font-weight: 600; color: #565072;
}
.hero-trust li { display: inline-flex; align-items: center; gap: .4rem; }
.hero-trust svg { color: var(--vc-primary); flex: 0 0 auto; }

/* hero screenshot — showcase, with breathing room before the next section */
.hero-shot { position: relative; margin: 3.2rem auto 3.5rem; max-width: 1080px; padding: 0 28px; }
.hero-shot::before {
  /* faint teal glow behind the showcase shot (design review #3) */
  content: '';
  position: absolute; left: 4%; right: 4%; top: -5%; height: 72%;
  background: radial-gradient(closest-side, rgba(87, 74, 181, .17), transparent 72%);
  filter: blur(16px);
  z-index: 0; pointer-events: none;
}
.hero-shot .shot-frame { position: relative; z-index: 1; }

/* ---- framed screenshots ------------------------------------------------------ */
.shot-frame {
  background: #fff;
  border: 1px solid #DCD4C6;
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(28, 26, 46, .14), 0 2px 8px rgba(28, 26, 46, .07);
  overflow: hidden;
}
.shot-frame .shot-bar {
  position: relative;
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  background: var(--vc-surface-muted);
  border-bottom: 1px solid var(--vc-border);
  min-height: 32px;
}
.shot-frame .shot-bar i {
  width: 10px; height: 10px; border-radius: 50%;
  background: #D7CFC1; display: inline-block;
}
.shot-frame .shot-bar .shot-url {
  position: absolute; left: 50%; transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--vc-border);
  border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: .01em;
  color: var(--vc-text-soft);
  line-height: 1;
  padding: 4px 14px;
  white-space: nowrap;
}
.shot-frame img { width: 100%; }
/* plain frame (no browser bar) for tight UI crops */
.shot-plain {
  border: 1px solid #DCD4C6;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(28, 26, 46, .12), 0 2px 8px rgba(28, 26, 46, .06);
  overflow: hidden;
  background: #fff;
}

/* ---- EMR comparison ----------------------------------------------------------- */
.emr-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem;
  align-items: stretch;
  margin-bottom: 1.4rem;
}
.emr-card {
  background: var(--vc-surface);
  border: 1px solid var(--vc-border);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(28, 26, 46, .07), 0 2px 8px rgba(28, 26, 46, .04);
  padding: 1.9rem 2rem 1.8rem;
}
.emr-card h3 { font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin-bottom: .9rem; }
.emr-card .emr-tag {
  font-family: var(--vc-font); font-size: .72rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  border-radius: 99px; padding: .14rem .65rem;
}
.emr-card--them .emr-tag { background: var(--vc-surface-muted); color: var(--vc-text-soft); }
.emr-card--us { border-color: rgba(87, 74, 181, .4); position: relative; overflow: clip; }
.emr-card--us::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px; background: var(--vc-primary); }
.emr-card--us .emr-tag { background: var(--vc-primary-soft); color: var(--vc-primary-dark); }
.tick-list { list-style: none; margin: 0; padding: 0; }
.tick-list li {
  display: flex; gap: .7rem; align-items: flex-start;
  padding: .5rem 0; font-size: 1.08rem; font-weight: 600;
}
.tick-list svg { flex: 0 0 auto; margin-top: .18rem; color: var(--vc-primary); }
.emr-card--them .tick-list svg { color: #A89F8D; }
.emr-card--them .tick-list li { font-weight: 400; color: #4B4868; }
.phi-banner {
  display: flex; gap: .9rem; align-items: flex-start;
  background: var(--vc-primary-soft);
  border: 1px solid rgba(87, 74, 181, .25);
  border-radius: var(--vc-radius);
  padding: 1.15rem 1.4rem;
  font-size: 1rem;
}
.phi-banner svg { flex: 0 0 auto; color: var(--vc-primary); margin-top: .15rem; }
.phi-banner strong { color: var(--vc-primary-dark); }

/* ---- feature tour rows --------------------------------------------------------- */
.feat-row {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 3rem; align-items: center;
  padding: 2.6rem 0;
}
.feat-row + .feat-row { border-top: 1px solid var(--vc-border); }
.feat-row.rev .feat-copy { order: 2; }
.feat-row.rev .feat-shot { order: 1; }
.feat-copy h3 { font-size: 1.6rem; font-weight: 800; letter-spacing: -.025em; }
.feat-copy p.feat-lead { color: var(--vc-text-soft); font-size: 1.02rem; line-height: 1.65; margin: 0 0 .9rem; }
.feat-points { list-style: none; margin: 0; padding: 0; }
.feat-points li { display: flex; gap: .6rem; align-items: flex-start; padding: .36rem 0; font-size: 1rem; }
.feat-points svg { flex: 0 0 auto; margin-top: .24rem; color: var(--vc-primary); }
.feat-points b { font-weight: 700; }

/* ---- coordinator anchor band (soft indigo, design review #5) ----------------------- */
.anchor-band {
  background: linear-gradient(180deg, #ECEAF8 0%, #E2E0F2 100%);
  border-top: 1px solid rgba(87, 74, 181, .16);
  border-bottom: 1px solid rgba(87, 74, 181, .16);
}
.anchor-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
  align-items: stretch;
  margin-top: 2.4rem;
}
.a-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(87, 74, 181, .18);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(28, 26, 46, .08);
}
.a-card .a-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 13px;
  background: linear-gradient(180deg, #6354c4 0%, #463a8c 100%);
  color: #fff;
  box-shadow: 0 6px 14px rgba(87, 74, 181, .25);
  margin-bottom: .8rem;
}
.a-card h3 { font-size: 1.08rem; font-weight: 800; letter-spacing: -.015em; margin-bottom: .25rem; }
.a-card p { margin: 0; font-size: .95rem; color: var(--vc-text-soft); }

/* ---- slim CTA band (design review #8) --------------------------------------------- */
.cta-slim {
  background: linear-gradient(120deg, #463A8C 0%, #574AB5 58%, #463A8C 100%);
  color: #fff;
  padding: 1.5rem 0;
}
.cta-slim-in { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap; }
.cta-slim-copy { margin: 0; font-size: 1.05rem; }
.cta-slim-copy strong { font-family: var(--vc-display); font-weight: 800; letter-spacing: -.015em; font-size: 1.16rem; }
.cta-slim-copy span { color: rgba(244, 249, 247, .82); }
.cta-slim .btn { flex: 0 0 auto; }

/* ---- reports spotlight ---------------------------------------------------------- */
.report-kinds { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 1.8rem 0 2.6rem; align-items: stretch; }
.report-kind {
  background: rgba(255, 255, 255, .88);
  border: 1px solid #E2D9CC;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(28, 26, 46, .07);
}
.report-kind .rk-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--vc-primary-soft); color: var(--vc-primary-dark);
  border: 1px solid rgba(87, 74, 181, .18);
  margin-bottom: .7rem;
}
.report-kind h3 { font-size: 1.05rem; font-weight: 800; letter-spacing: -.015em; margin-bottom: .2rem; }
.report-kind p { margin: 0; font-size: .92rem; color: var(--vc-text-soft); }

.sched-band {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 3rem; align-items: center;
  margin-top: 3.2rem; padding-top: 2.8rem;
  border-top: 1px solid var(--vc-border);
}

/* ---- trust strip ------------------------------------------------------------------ */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: stretch; }
.trust-item {
  background: rgba(255, 255, 255, .88);
  border: 1px solid #E2D9CC;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(28, 26, 46, .07);
}
.trust-item .t-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--vc-primary-soft); color: var(--vc-primary-dark);
  border: 1px solid rgba(87, 74, 181, .18);
  margin-bottom: .7rem;
}
.trust-item h3 { font-size: 1.05rem; font-weight: 800; letter-spacing: -.015em; margin-bottom: .2rem; }
.trust-item p { margin: 0; font-size: .92rem; color: var(--vc-text-soft); }

/* ---- pricing ------------------------------------------------------------------------- */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem;
  align-items: stretch;
  max-width: 880px;
  margin: 2.4rem auto 0;
}
.plan-card {
  position: relative;
  display: flex; flex-direction: column;
  background: rgba(255, 255, 255, .88);
  border: 1px solid #E2D9CC;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(28, 26, 46, .07);
}
/* subtle emphasis on the single plan: white surface + indigo hairline + badge */
.plan-card--featured {
  background: #fff;
  border: 1.5px solid rgba(87, 74, 181, .45);
  box-shadow: 0 16px 40px rgba(87, 74, 181, .12), 0 2px 8px rgba(28, 26, 46, .05);
}
.plan-badge {
  position: absolute; top: -12px; right: 22px;
  background: linear-gradient(180deg, #6354c4 0%, #463a8c 100%);
  color: #fff;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: .09em; text-transform: uppercase;
  border-radius: 999px;
  padding: .28rem .7rem;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(87, 74, 181, .25);
}
.plan-name {
  font-size: .8rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--vc-text-soft);
}
.plan-price {
  display: flex; align-items: baseline; gap: .3rem;
  font-family: var(--vc-display);
  margin: .55rem 0 .1rem;
}
.plan-amount { font-size: 2.5rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--vc-text); }
.plan-per { font-size: 1rem; font-weight: 700; color: var(--vc-text-soft); }
.plan-tag { margin: .35rem 0 .9rem; font-size: .98rem; color: var(--vc-text-soft); }
.plan-points { list-style: none; margin: 0 0 1.4rem; padding: 0; }
.plan-points li { display: flex; gap: .6rem; align-items: flex-start; padding: .3rem 0; font-size: .97rem; }
.plan-points svg { flex: 0 0 auto; margin-top: .24rem; color: var(--vc-primary); }
.plan-points b { font-weight: 700; }
.plan-cta { margin-top: auto; }
.plan-trial { margin: 0 0 .6rem; font-size: .85rem; font-weight: 600; color: var(--vc-text-soft); }
.plan-cta .btn { width: 100%; }
.pricing-foot {
  text-align: center;
  font-size: .92rem; color: var(--vc-text-soft);
  max-width: 64ch;
  margin: 1.7rem auto 0;
}
/* fallback line shown only when signup is disabled (plan CTAs hide via [data-trial]) */
.pricing-foot--nosignup { display: none; }
.no-signup .pricing-foot--nosignup { display: block; }

/* ---- the 45-day band ---------------------------------------------------------------- */
.trial-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, .07), transparent 40%),
    radial-gradient(circle at 88% 86%, rgba(201, 161, 74, .22), transparent 42%),
    linear-gradient(135deg, #463A8C 0%, #574AB5 52%, #463A8C 100%);
  border-radius: 26px;
  color: #F4F9F7;
  padding: 3.6rem 3.2rem;
  box-shadow: 0 30px 70px rgba(62, 52, 128, .35);
}
.trial-band .eyebrow { color: #F8C9B4; background: rgba(255, 255, 255, .14); }
.trial-band h2 {
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  font-weight: 800; letter-spacing: -.035em; line-height: 1.06;
  max-width: 17ch;
  margin-bottom: 1rem;
  color: #fff;
}
.trial-band .trial-lead {
  font-size: 1.12rem; line-height: 1.6;
  color: rgba(244, 249, 247, .92);
  max-width: 56ch;
  margin: 0 0 1.6rem;
}
.trial-points { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: .45rem; }
.trial-points li { display: flex; gap: .6rem; align-items: flex-start; font-size: 1rem; color: rgba(244, 249, 247, .92); }
.trial-points svg { flex: 0 0 auto; margin-top: .25rem; color: #C5BFEE; }
.trial-cta { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.trial-cta .quiet { font-size: .92rem; color: rgba(244, 249, 247, .75); }
.trial-cta .quiet a { color: #D8D3F2; }

/* ---- signup ---------------------------------------------------------------------------- */
.signup-card {
  max-width: 540px; margin: 0 auto;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--vc-border);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(28, 26, 46, .10), 0 2px 8px rgba(28, 26, 46, .05);
  padding: 2.1rem 2.1rem 1.9rem;
  position: relative; overflow: clip;
}
.signup-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--vc-primary);
}
.signup-card label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; }
.signup-card .field { margin-bottom: .95rem; }
.signup-card input[type="text"], .signup-card input[type="email"] {
  width: 100%; font: inherit; color: var(--vc-text);
  background: #fff;
  border: 1.5px solid var(--vc-border);
  border-radius: var(--vc-radius-sm);
  padding: .6rem .75rem; min-height: 2.75rem;
  transition: border-color .12s, box-shadow .12s;
}
.signup-card input:focus {
  outline: 3px solid rgba(87, 74, 181, .30); outline-offset: 1px;
  border-color: var(--vc-primary);
  box-shadow: 0 0 0 5px rgba(87, 74, 181, .08);
}
.signup-card input.input-invalid { border-color: var(--vc-danger); }
.signup-card .hint { font-size: .82rem; color: var(--vc-text-soft); margin-top: .3rem; }
.signup-card .hint-invalid { color: var(--vc-danger); font-weight: 600; }
.signup-card .btn { width: 100%; margin-top: .35rem; }
.signup-assure { text-align: center; font-size: .88rem; font-weight: 600; color: var(--vc-text-soft); margin: .85rem 0 0; }
.signup-renew { text-align: center; font-size: .82rem; color: var(--vc-text-soft); margin: .4rem 0 0; }
.consent-field { margin-top: .35rem; }
.consent-row { display: flex; align-items: flex-start; gap: .6rem; font-weight: 500; font-size: .9rem; line-height: 1.45; cursor: pointer; margin-bottom: 0; }
.consent-row input[type="checkbox"] { flex: 0 0 auto; width: 1.15rem; height: 1.15rem; margin-top: .12rem; accent-color: var(--vc-primary); cursor: pointer; }
.consent-row span { color: var(--vc-text); }
.consent-row a { color: var(--vc-primary); font-weight: 600; }
.consent-row.consent-invalid span { color: var(--vc-danger); }
.consent-row.consent-invalid input[type="checkbox"] { outline: 2px solid var(--vc-danger); outline-offset: 2px; }
.signup-foot { text-align: center; font-size: .88rem; color: var(--vc-text-soft); margin: 1rem 0 0; }
.signup-trustnote { text-align: center; font-size: .92rem; color: var(--vc-text-soft); max-width: 72ch; margin: 1.4rem auto 0; }
.form-error {
  background: var(--vc-danger-soft); color: var(--vc-danger);
  border-radius: var(--vc-radius-sm);
  padding: .55rem .8rem; margin-bottom: .9rem;
  font-weight: 600; display: none;
}
.form-error.show { display: block; }
.signup-success { text-align: center; padding: 1.4rem 0 .9rem; }
.signup-success .ok-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--vc-primary-soft); color: var(--vc-primary);
  margin-bottom: .9rem;
}
.signup-success h3 { font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; }
.signup-success p { color: var(--vc-text-soft); max-width: 40ch; margin: .4rem auto 0; }

/* ---- FAQ ------------------------------------------------------------------------------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-list details {
  background: var(--vc-surface);
  border: 1px solid var(--vc-border);
  border-radius: 14px;
  margin-bottom: .7rem;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--vc-display);
  font-weight: 700; font-size: 1.02rem; letter-spacing: -.01em;
  padding: 1rem 1.25rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .faq-chev { flex: 0 0 auto; color: var(--vc-text-soft); transition: transform .15s; }
.faq-list details[open] summary .faq-chev { transform: rotate(180deg); }
.faq-list details[open] summary { color: var(--vc-primary-dark); }
.faq-a { padding: 0 1.25rem 1.1rem; color: var(--vc-text-soft); font-size: .97rem; }
.faq-a p { margin: 0 0 .6rem; }
.faq-a p:last-child { margin-bottom: 0; }

/* ---- footer ----------------------------------------------------------------------------- */
.site-foot { border-top: 1px solid var(--vc-border); background: var(--vc-surface); padding: 3.6rem 0 2.4rem; }
.foot-grid { display: flex; gap: 2rem; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; }
.foot-brand .wordmark { font-size: 1.45rem; }
.foot-brand p { margin: .5rem 0 0; color: var(--vc-text-soft); font-size: .95rem; max-width: 52ch; }
.foot-links { display: flex; gap: .2rem 1.4rem; flex-wrap: wrap; list-style: none; margin: .35rem 0 0; padding: 0; }
.foot-links a { color: var(--vc-text-soft); text-decoration: none; font-weight: 600; font-size: .92rem; }
.foot-links a:hover { color: var(--vc-primary-dark); text-decoration: underline; text-underline-offset: 3px; }
.foot-bottom {
  margin-top: 2.2rem; padding-top: 1.4rem;
  border-top: 1px solid var(--vc-border);
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  font-size: .85rem; color: var(--vc-text-soft);
}

/* MortonApps product-family badge (same pattern as the app's login footer) */
.ma-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  border: 1px solid var(--vc-border);
  color: var(--vc-text-soft);
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(28, 26, 46, .05);
  transition: color .12s, border-color .12s, background-color .12s;
}
.ma-badge:hover { color: var(--vc-primary-dark); border-color: #D5CEC0; background: rgba(255, 255, 255, .85); }
.ma-badge .ma-dot { display: inline-flex; flex: 0 0 auto; }

/* ---- signup-disabled mode (GET /api/auth/signup → enabled:false or fetch fail) ---- */
.no-signup [data-trial] { display: none !important; }

/* ---- legal pages (/privacy, /terms) — shared prose column --------------------------- */
.legal-main { padding: 3.4rem 0 5rem; }
.legal-prose { max-width: 740px; margin: 0 auto; }
.legal-title {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.04;
  margin-bottom: .55rem;
}
.legal-updated {
  font-size: .9rem; font-weight: 600; color: var(--vc-text-soft);
  margin: 0 0 1.7rem; padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--vc-border);
}
.legal-prose h2 {
  font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em;
  margin: 2.5rem 0 .6rem;
  scroll-margin-top: 84px;
}
.legal-prose p, .legal-prose li { font-size: 1rem; line-height: 1.7; }
.legal-prose p { margin: 0 0 1rem; }
.legal-prose ul { margin: 0 0 1rem; padding-left: 1.25rem; }
.legal-prose li { margin: .35rem 0; }
.legal-prose li::marker { color: var(--vc-primary); }
.legal-prose a { font-weight: 600; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-callout { margin: 1.8rem 0; }   /* reuses .phi-banner surface */
.legal-crosslink {
  margin-top: 2.6rem; padding-top: 1.4rem;
  border-top: 1px solid var(--vc-border);
  font-weight: 600; color: var(--vc-text-soft);
}
/* quiet data-stewardship line in the home-page footer */
.foot-trust { font-size: .88rem; }
@media (max-width: 720px) {
  /* legal pages have no trial CTA — keep Sign in visible in the header on phones */
  .legal-page .head-cta .btn-ghost { display: inline-flex; }
}

/* ============================================================================
   LANDING PAGES (SEO/AEO) + quiet hub + internal tracker
   Shared styling for the search-angle landing pages, the /solutions hub, and
   the /landing-pages internal tracker. Reuses the soft system tokens above.
   ============================================================================ */

/* ---- landing-page hero (compact, copy-led — no full screenshot showcase) ---- */
.lp-hero {
  position: relative; overflow: hidden;
  padding: 4.4rem 0 3.4rem;
  background:
    radial-gradient(circle at 14% 14%, rgba(87, 74, 181, .10), transparent 38%),
    radial-gradient(circle at 88% 10%, rgba(16, 42, 67, .06), transparent 30%),
    linear-gradient(180deg, #F9F8FD 0%, var(--vc-bg) 100%);
  border-bottom: 1px solid var(--vc-border);
}
.lp-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(16, 42, 67, .035) 1px, transparent 1px);
  background-size: 22px 22px;
}
.lp-hero .wrap { position: relative; z-index: 1; }
.lp-hero-copy { max-width: 760px; }
.lp-hero h1 {
  font-size: clamp(34px, 4.4vw, 50px);
  font-weight: 800; letter-spacing: -.035em; line-height: 1.04;
  margin: 0 0 1.1rem;
}
.lp-hero h1 .hl { color: var(--vc-primary); }
.lp-hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--vc-text-soft);
  max-width: 62ch; margin: 0 0 1.7rem;
}
.lp-hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.lp-hero-trust {
  display: flex; gap: .4rem 1.5rem; flex-wrap: wrap;
  margin: 1.4rem 0 0; padding: 0; list-style: none;
  font-size: .93rem; font-weight: 600; color: #565072;
}
.lp-hero-trust li { display: inline-flex; align-items: center; gap: .4rem; }
.lp-hero-trust svg { color: var(--vc-primary); flex: 0 0 auto; }
.lp-breadcrumb { font-size: .85rem; font-weight: 600; color: var(--vc-text-soft); margin: 0 0 1.1rem; }
.lp-breadcrumb a { color: var(--vc-text-soft); text-decoration: none; }
.lp-breadcrumb a:hover { color: var(--vc-primary-dark); text-decoration: underline; text-underline-offset: 3px; }
.lp-breadcrumb span[aria-current] { color: var(--vc-text); }

/* ---- landing-page value cards (the unique primary content) ----------------- */
.lp-values {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem;
  align-items: stretch; margin-top: 2.2rem;
}
.lp-value {
  background: rgba(255, 255, 255, .9);
  border: 1px solid #E2D9CC;
  border-radius: 18px;
  padding: 1.7rem 1.8rem;
  box-shadow: 0 12px 32px rgba(28, 26, 46, .07), 0 2px 8px rgba(28, 26, 46, .04);
}
.lp-value h3 { font-size: 1.22rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: .5rem; }
.lp-value p { margin: 0 0 .7rem; color: var(--vc-text-soft); font-size: 1rem; line-height: 1.65; }
.lp-value p:last-child { margin-bottom: 0; }

/* ---- prose band (body paragraphs between sections) ------------------------- */
.lp-prose { max-width: 64ch; }
.lp-prose p { color: var(--vc-text-soft); font-size: 1.04rem; line-height: 1.7; margin: 0 0 1.05rem; }
.lp-prose p:last-child { margin-bottom: 0; }
.lp-prose strong { color: var(--vc-text); }

/* ---- sibling cross-links band ---------------------------------------------- */
.lp-siblings {
  margin-top: 1.4rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.lp-sibling {
  display: block;
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--vc-border);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  transition: border-color .12s, transform .12s, box-shadow .12s;
}
.lp-sibling:hover { border-color: var(--vc-primary); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(28, 26, 46, .08); }
.lp-sibling strong { display: block; color: var(--vc-text); font-family: var(--vc-display); font-weight: 800; font-size: 1.02rem; letter-spacing: -.015em; margin-bottom: .25rem; }
.lp-sibling span { color: var(--vc-text-soft); font-size: .9rem; line-height: 1.5; }

/* ---- landing-page FAQ (reuses .faq-list look) ------------------------------ */
.lp-faq { max-width: 820px; margin: 0 auto; }

/* ---- closing CTA band (reuses trial-band surface, lighter padding) --------- */
.lp-cta-band { padding: 2.9rem 2.6rem; }
.lp-cta-band h2 { max-width: 22ch; }

/* ---- /solutions hub -------------------------------------------------------- */
.hub-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem;
  align-items: stretch; margin-top: 2.4rem;
}
.hub-card {
  display: block;
  background: rgba(255, 255, 255, .9);
  border: 1px solid #E2D9CC;
  border-radius: 18px;
  padding: 1.6rem 1.7rem;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(28, 26, 46, .07);
  transition: border-color .12s, transform .12s, box-shadow .12s;
}
.hub-card:hover { border-color: var(--vc-primary); transform: translateY(-2px); box-shadow: 0 16px 38px rgba(87, 74, 181, .12); }
.hub-card strong { display: block; color: var(--vc-text); font-family: var(--vc-display); font-weight: 800; font-size: 1.16rem; letter-spacing: -.02em; margin-bottom: .35rem; }
.hub-card span { color: var(--vc-text-soft); font-size: .97rem; line-height: 1.6; }
.hub-card .hub-arrow { color: var(--vc-primary); font-weight: 700; }

/* ---- /landing-pages internal tracker --------------------------------------- */
.tracker-main { padding: 3.4rem 0 5rem; }
.tracker-head h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.025em; margin-bottom: .5rem; }
.tracker-head p { color: var(--vc-text-soft); max-width: 72ch; line-height: 1.6; margin: 0; }
.tracker-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 1.4rem 0 2rem; font-size: .92rem; color: var(--vc-text-soft); }
.tracker-meta b { color: var(--vc-text); font-weight: 800; }
table.tracker { width: 100%; border-collapse: collapse; font-size: .92rem; background: var(--vc-surface); border: 1px solid var(--vc-border); border-radius: 14px; overflow: hidden; }
@media (max-width: 640px) { table.tracker { display: block; overflow-x: auto; white-space: nowrap; } }
table.tracker th, table.tracker td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--vc-border); vertical-align: top; }
table.tracker th { font-family: var(--vc-display); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--vc-text-soft); background: var(--vc-surface-muted); }
table.tracker tr:last-child td { border-bottom: 0; }
table.tracker tr:hover td { background: rgba(87, 74, 181, .03); }
.tk-name { font-weight: 700; color: var(--vc-text); }
.tk-url a { color: var(--vc-primary-dark); font-weight: 600; text-decoration: none; }
.tk-url a:hover { text-decoration: underline; }
.tk-target { color: var(--vc-text-soft); }
.tk-pill { display: inline-block; padding: .2rem .6rem; border-radius: 100px; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.tk-pill-live { background: rgba(87, 74, 181, .12); color: var(--vc-primary-dark); border: 1px solid rgba(87, 74, 181, .3); }
.tk-pill-ready { background: var(--vc-accent-soft); color: var(--vc-accent); border: 1px solid rgba(138, 106, 18, .3); }
.tracker-note { margin-top: 1.8rem; font-size: .85rem; color: var(--vc-text-soft); border-left: 3px solid var(--vc-primary); padding: .6rem 1rem; background: rgba(87, 74, 181, .04); border-radius: 0 8px 8px 0; }

@media (max-width: 880px) {
  .lp-values, .hub-grid { grid-template-columns: 1fr; }
  .lp-siblings { grid-template-columns: 1fr; }
}

/* ---- reveal-on-scroll (motion-gated) ------------------------------------------------ */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
  .rv { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
  .rv.in { opacity: 1; transform: none; }
}

/* ---- responsive --------------------------------------------------------------------- */
@media (max-width: 980px) {
  .feat-row, .sched-band { grid-template-columns: 1fr; gap: 1.6rem; }
  .feat-row.rev .feat-copy { order: 1; }
  .feat-row.rev .feat-shot { order: 2; }
  .report-kinds { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .emr-grid { grid-template-columns: 1fr; }
  .trial-band { padding: 2.6rem 2rem; }
}
@media (max-width: 880px) {
  .anchor-cards { grid-template-columns: 1fr; }
  .cta-slim-in { flex-direction: column; text-align: center; }
}
@media (max-width: 900px) {
  .site-nav { display: none; }   /* anchor nav can't fit beside both CTAs below ~900px */
}
@media (max-width: 720px) {
  .site-head-in { padding: .6rem 18px; gap: .6rem; }
  .brand img { width: 36px; height: 36px; }
  .brand { gap: .42rem; }
  .brand .wordmark { font-size: 1.16rem; }
  .head-cta .btn { min-height: 2.5rem; padding: .5rem 1rem; font-size: .92rem; }
  /* On phones the trial CTA is already huge in the hero, so the header top-right
     becomes the recurring action existing users actually need: Sign in — shown as
     a clear outlined button. The header's OWN trial button is hidden so there
     aren't two giant "Start free trial" buttons stacked. (Greg 2026-06-22) */
  .head-cta .btn-primary { display: none; }
  .head-cta .btn-ghost { display: inline-flex; border: 1.6px solid var(--vc-primary); background: #fff; color: var(--vc-primary-dark); padding: .5rem 1.15rem; font-weight: 700; }
  .wrap { padding: 0 18px; }
  .section { padding: 3.4rem 0; }
  .hero { padding-top: 3.2rem; }
  .hero h1 { font-size: clamp(34px, 9.6vw, 42px); }
  .hero-shot { padding: 0 14px; margin-top: 2.4rem; }
  .shot-frame { border-radius: 10px; }
  .shot-frame .shot-bar .shot-url { display: none; }   /* pill collides with dots on narrow shots */
  .report-kinds { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .trial-band { border-radius: 18px; padding: 2.2rem 1.4rem; }
  .signup-card { padding: 1.6rem 1.3rem 1.4rem; }
  .foot-grid { flex-direction: column; }
}

/* ============================================================================
   OPERATIONAL HUB REPOSITION (2026-06) — hospice on-call + emergency components
   New components layered on the existing soft system. Green = live/verified/
   current, gold/amber = human warmth & "needs review", red only for problems.
   ============================================================================ */

/* ---- generic status chips (reused across mockups & cards) ------------------- */
.status-chip {
  display: inline-flex; align-items: center; gap: .42rem;
  font-family: var(--vc-font);
  font-size: .74rem; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase;
  border-radius: 999px; padding: .26rem .66rem; line-height: 1;
}
.status-chip .dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.status-chip--live { background: var(--vc-success-soft); color: var(--vc-success); }
.status-chip--live .dot { background: var(--vc-success); box-shadow: 0 0 0 0 rgba(47, 125, 91, .5); animation: livesig 2.4s ease-out infinite; }
.status-chip--verified { background: var(--vc-success-soft); color: var(--vc-success); }
.status-chip--review { background: var(--vc-accent-soft); color: var(--vc-accent); }
@keyframes livesig {
  0% { box-shadow: 0 0 0 0 rgba(47, 125, 91, .45); }
  70% { box-shadow: 0 0 0 7px rgba(47, 125, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 125, 91, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .status-chip--live .dot { animation: none; }
}

/* ---- hero "On Call Now" panel — the star of the hero ------------------------ */
.oncall-panel {
  background: #fff;
  border: 1px solid var(--vc-border);
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(28, 26, 46, .16), 0 2px 8px rgba(28, 26, 46, .06);
  overflow: hidden;
  text-align: left;
}
.oncall-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.4rem;
  background: linear-gradient(180deg, #F1FAF4 0%, #E9F5EE 100%);
  border-bottom: 1px solid rgba(47, 125, 91, .18);
}
.oncall-head .oc-title { display: flex; align-items: center; gap: .6rem; font-family: var(--vc-display); font-weight: 800; letter-spacing: -.015em; font-size: 1.04rem; color: var(--vc-navy); }
.oncall-rows { padding: .5rem .55rem; }
.oc-row {
  display: flex; align-items: center; gap: .85rem;
  padding: .7rem .85rem; border-radius: 12px;
}
.oc-row + .oc-row { border-top: 1px solid var(--vc-border); }
.oc-avatar {
  flex: 0 0 auto;
  width: 38px; height: 38px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--vc-display); font-weight: 800; font-size: .9rem;
  background: var(--vc-primary-soft); color: var(--vc-primary-dark);
}
.oc-meta { min-width: 0; flex: 1 1 auto; }
/* role label sits on its own line above the name (was running into it) */
.oc-role { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--vc-text-soft); }
.oc-name { display: block; margin-top: .12rem; font-family: var(--vc-display); font-weight: 800; letter-spacing: -.01em; font-size: 1.02rem; color: var(--vc-navy); line-height: 1.2; }
.oc-call {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .8rem; font-weight: 700;
  color: var(--vc-primary-dark);
  background: var(--vc-primary-soft);
  border: 1px solid rgba(87, 74, 181, .2);
  border-radius: 999px; padding: .34rem .7rem;
}
.oc-call svg { flex: 0 0 auto; }
.oncall-handoff {
  display: flex; align-items: center; gap: .5rem;
  margin: .15rem .9rem .55rem; padding: .55rem .75rem;
  background: var(--vc-accent-soft);
  border-radius: 11px;
  font-size: .86rem; font-weight: 600; color: var(--vc-navy);
}
.oncall-handoff svg { flex: 0 0 auto; color: var(--vc-accent); }
.oncall-quick {
  border-top: 1px dashed var(--vc-border);
  padding: .85rem 1.4rem 1.05rem;
  background: var(--vc-bg);
}
.oncall-quick .oq-label {
  font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  color: var(--vc-text-soft); margin-bottom: .5rem;
}
.oncall-quick .oq-strip { display: flex; flex-wrap: wrap; gap: .4rem; }
.oncall-quick .oq-strip span {
  font-size: .8rem; font-weight: 700; color: var(--vc-navy);
  background: #fff; border: 1px solid var(--vc-border);
  border-radius: 999px; padding: .32rem .7rem;
}
/* hero layout: panel left of (or above) secondary framed shot */
.hero-duo {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.6rem; align-items: center;
  max-width: 1140px; margin: 3.2rem auto 3.5rem; padding: 0 28px;
}
.hero-duo .oncall-panel { position: relative; z-index: 2; }
.hero-duo .shot-frame { box-shadow: 0 22px 56px rgba(28, 26, 46, .12), 0 2px 8px rgba(28, 26, 46, .05); }
.hero-pricing-teaser {
  display: inline-flex; align-items: center; gap: .5rem;
  margin: 1.45rem auto 0; padding: .5rem .95rem;
  background: #fff; border: 1px solid var(--vc-border);
  border-radius: 999px; box-shadow: var(--vc-shadow);
  font-size: .92rem; font-weight: 600; color: var(--vc-text-soft);
}
.hero-pricing-teaser b { color: var(--vc-navy); font-family: var(--vc-display); font-weight: 800; }
.hero-pricing-teaser .hpt-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--vc-accent-deco); flex: 0 0 auto; }

/* ---- large solution cards (fewer, bigger; reused by directory/rotations) ----- */
.big-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem;
  align-items: stretch; margin-top: 2.4rem;
}
.big-cards--three { grid-template-columns: repeat(3, 1fr); }
.big-card {
  background: #fff;
  border: 1px solid var(--vc-border);
  border-radius: 20px;
  padding: 2rem 2rem 1.9rem;
  box-shadow: 0 12px 32px rgba(28, 26, 46, .07), 0 2px 8px rgba(28, 26, 46, .04);
}
.big-card .bc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 15px;
  background: var(--vc-primary-soft); color: var(--vc-primary-dark);
  border: 1px solid rgba(87, 74, 181, .18);
  margin-bottom: 1rem;
}
.big-card .bc-icon--green { background: var(--vc-success-soft); color: var(--vc-success); border-color: rgba(47, 125, 91, .22); }
.big-card .bc-icon--gold { background: var(--vc-accent-soft); color: var(--vc-accent); border-color: rgba(138, 106, 18, .22); }
.big-card h3 { font-size: 1.24rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: .45rem; }
.big-card p { margin: 0; font-size: 1rem; line-height: 1.6; color: var(--vc-text-soft); }

/* ---- emergency call sheet mockup -------------------------------------------- */
.emerg-sheet {
  background: #fff;
  border: 1px solid var(--vc-border);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(28, 26, 46, .14), 0 2px 8px rgba(28, 26, 46, .06);
  overflow: hidden;
}
.emerg-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.15rem 1.5rem;
  background: var(--vc-primary-soft);
  border-bottom: 1px solid rgba(87, 74, 181, .2);
}
.emerg-head h3 { margin: 0; font-size: 1.1rem; font-weight: 800; letter-spacing: -.015em; color: var(--vc-primary-dark); display: flex; align-items: center; gap: .55rem; }
.emerg-head .es-print {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 700; color: var(--vc-primary-dark);
  background: #fff; border: 1px solid rgba(87, 74, 181, .3);
  border-radius: 999px; padding: .4rem .85rem; text-decoration: none;
}
.emerg-rows { padding: .4rem .6rem; }
.es-row {
  display: flex; align-items: center; gap: .85rem;
  padding: .72rem .85rem; border-radius: 12px;
}
.es-row + .es-row { border-top: 1px solid var(--vc-border); }
.es-num {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--vc-display); font-weight: 800; font-size: .82rem;
  background: var(--vc-surface-muted); color: var(--vc-text-soft);
}
.es-info { min-width: 0; flex: 1 1 auto; }
.es-role { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--vc-text-soft); }
.es-who { display: block; margin-top: .12rem; font-family: var(--vc-display); font-weight: 800; letter-spacing: -.01em; font-size: 1rem; color: var(--vc-navy); line-height: 1.2; }
.es-tap {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 800; font-variant-numeric: tabular-nums;
  color: var(--vc-success);
  background: var(--vc-success-soft);
  border: 1px solid rgba(47, 125, 91, .22);
  border-radius: 999px; padding: .36rem .8rem;
}
.es-tap svg { flex: 0 0 auto; }
.emerg-escalation {
  margin: .35rem .9rem 1.05rem; padding: .8rem 1rem;
  background: var(--vc-accent-soft);
  border-radius: 12px;
  font-size: .86rem; color: var(--vc-navy);
}
.emerg-escalation b { color: var(--vc-accent); font-family: var(--vc-display); }
.emerg-escalation .es-flow { display: flex; flex-wrap: wrap; gap: .3rem .15rem; align-items: center; margin-top: .35rem; font-weight: 600; }
.emerg-escalation .es-flow .arrow { color: var(--vc-accent); font-weight: 800; padding: 0 .15rem; }

/* ---- printable-sheet preview mockup (reports) ------------------------------- */
.sheet-preview {
  background: #fff;
  border: 1px solid var(--vc-border);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(28, 26, 46, .12), 0 2px 8px rgba(28, 26, 46, .05);
  padding: 1.6rem 1.7rem 1.8rem;
}
.sheet-preview .sp-paper-head {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  padding-bottom: .8rem; margin-bottom: .6rem;
  border-bottom: 2px solid var(--vc-navy);
}
.sheet-preview .sp-paper-head strong { font-family: var(--vc-display); font-weight: 800; font-size: 1.04rem; color: var(--vc-navy); }
.sheet-preview .sp-paper-head span { font-size: .78rem; color: var(--vc-text-soft); font-weight: 600; }
.sheet-preview .sp-line {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .5rem 0; border-bottom: 1px solid var(--vc-border);
  font-size: .92rem;
}
.sheet-preview .sp-line:last-child { border-bottom: 0; }
.sheet-preview .sp-line .sp-name { font-weight: 700; color: var(--vc-navy); }
.sheet-preview .sp-line .sp-cat { color: var(--vc-text-soft); font-size: .82rem; }
.sheet-preview .sp-line .sp-phone { font-variant-numeric: tabular-nums; color: var(--vc-text-soft); font-weight: 600; }
.sheet-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem;
}
.sheet-list li {
  display: flex; align-items: center; gap: .55rem;
  padding: .6rem .8rem;
  background: #fff; border: 1px solid var(--vc-border);
  border-radius: 11px; font-size: .94rem; font-weight: 600; color: var(--vc-navy);
}
.sheet-list li svg { flex: 0 0 auto; color: var(--vc-primary); }

/* ---- generic mockup figure wrapper (caption under a built panel) ------------ */
.mockup-figure { margin: 0; }
.mockup-figure figcaption {
  text-align: center; font-size: .82rem; color: var(--vc-text-soft);
  margin-top: .85rem; font-weight: 600;
}

/* ---- responsive for new components ------------------------------------------ */
@media (max-width: 980px) {
  .hero-duo { grid-template-columns: 1fr; gap: 1.8rem; }
  .big-cards, .big-cards--three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .sheet-list { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .big-cards, .big-cards--three { grid-template-columns: 1fr; }
  .hero-duo { padding: 0 14px; margin-top: 2.4rem; }
  .oc-row, .es-row { gap: .6rem; padding: .6rem .55rem; }
  .oncall-quick .oq-strip span { font-size: .74rem; }
  .emerg-head { padding: 1rem 1.1rem; }
  .es-tap, .oc-call { padding: .3rem .55rem; font-size: .76rem; }
}

/* ---- hero-stage: single large product shot (replaces the old hero-duo) ------ */
.hero-stage {
  position: relative; z-index: 1;
  max-width: 1060px; margin: 3rem auto 3.4rem; padding: 0 28px;
}
.hero-stage .shot-frame {
  box-shadow: 0 26px 64px rgba(28, 26, 46, .14), 0 2px 8px rgba(28, 26, 46, .05);
}

/* ---- interactive product shots: hover cue + click-to-zoom lightbox ----------
   Reusable pattern (Greg 2026-06-18, wanted on all sites): hovering a product
   shot lifts it with an indigo ring; clicking opens a full-screen view. */
.shot-frame { cursor: zoom-in; transition: transform .18s ease, box-shadow .18s ease; }
.shot-frame:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 72px rgba(28, 26, 46, .20), 0 0 0 2.5px var(--vc-primary);
}
.shot-frame:focus-within { box-shadow: 0 30px 72px rgba(28, 26, 46, .20), 0 0 0 2.5px var(--vc-primary); }
.cr-lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: center; justify-content: center;
  background: rgba(20, 18, 38, .86); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  padding: 4vmin; cursor: zoom-out; opacity: 0; transition: opacity .2s ease;
}
.cr-lightbox.open { display: flex; opacity: 1; }
.cr-lightbox img {
  max-width: 96vw; max-height: 92vh; width: auto; height: auto;
  border-radius: 12px; box-shadow: 0 30px 90px rgba(0, 0, 0, .5); cursor: default;
}
.cr-lightbox-close {
  position: absolute; top: 18px; right: 22px; width: 44px; height: 44px;
  border: none; border-radius: 50%; background: rgba(255, 255, 255, .15); color: #fff;
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .15s ease;
}
.cr-lightbox-close:hover { background: rgba(255, 255, 255, .28); }
@media (prefers-reduced-motion: reduce) { .shot-frame, .cr-lightbox { transition: none; } }

/* ---- hero: audience chips + dimensional floating stat card ------------------- */
.audience-strip { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.35rem 0 0; padding: 0; }
.audience-strip li {
  font-size: .82rem; font-weight: 600; color: var(--vc-primary-dark);
  background: rgba(236, 233, 248, .8); border: 1px solid rgba(88, 72, 135, .14);
  padding: .34rem .82rem; border-radius: 999px;
}
.hero-stage { position: relative; max-width: 1120px; }
.hero-float {
  position: absolute; z-index: 3; background: #fff; border: 1px solid var(--vc-border);
  border-radius: 16px; box-shadow: 0 18px 44px rgba(28, 26, 46, .18);
  padding: .75rem .95rem; display: flex; align-items: center; gap: .75rem;
}
.hero-float--br { right: 4px; bottom: 40px; }
.hero-float .hf-ring {
  width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center;
  background: conic-gradient(#2BAE76 0 92%, #E3E0F0 92% 100%);
}
.hero-float .hf-ring > span { width: 33px; height: 33px; border-radius: 50%; background: #fff; display: grid; place-items: center; font-weight: 800; font-size: .82rem; color: #15724A; }
.hero-float .hf-txt { line-height: 1.25; display: flex; flex-direction: column; }
.hero-float .hf-k { font-size: .67rem; color: var(--vc-text-soft); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.hero-float .hf-v { font-size: .92rem; font-weight: 700; color: var(--vc-text); }
@media (max-width: 760px) { .hero-float--br { display: none; } }

/* ---- scope/proof grid: what you keep in Care Roster -------------------------- */
.scope-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2.4rem; }
.scope-cell { background: #fff; border: 1px solid var(--vc-border); border-radius: 18px; padding: 1.7rem 1.5rem; box-shadow: 0 10px 28px rgba(28, 26, 46, .06); }
.scope-cell h3 { margin: .9rem 0 .4rem; font-size: 1.15rem; }
.scope-cell p { margin: 0; color: var(--vc-text-soft); font-size: .95rem; }
@media (max-width: 900px) { .scope-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .scope-grid { grid-template-columns: 1fr; } }

/* ---- conversion band -------------------------------------------------------- */
.cta-band { padding: 4.4rem 0; background: linear-gradient(135deg, #5B4CB8 0%, #463A8C 100%); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(42rem 18rem at 50% 0%, rgba(255, 255, 255, .13), transparent 70%); }
.cta-band .wrap { position: relative; }
.cta-band h2 { color: #fff; font-family: var(--vc-display); font-size: clamp(1.7rem, 3.4vw, 2.45rem); margin: 0 0 .7rem; letter-spacing: -.02em; }
.cta-band p { color: rgba(255, 255, 255, .86); font-size: 1.08rem; margin: 0 0 1.8rem; }

/* ---- header "Other apps" dropdown (Greg 2026-06-18) ---- */
.site-nav .nav-dd { position: relative; display: inline-flex; }
.nav-dd-trigger { display: inline-flex; align-items: center; gap: .28rem; text-decoration: none; color: var(--vc-text-soft); font-family: inherit; font-weight: 650; font-size: 1rem; letter-spacing: -.005em; padding: .54rem 1.05rem; border: 0; border-radius: 999px; background: none; cursor: pointer; transition: color .14s, background-color .14s; }
.nav-dd:hover .nav-dd-trigger, .nav-dd:focus-within .nav-dd-trigger { color: var(--vc-text); background: var(--vc-surface-muted); }
.nav-dd-caret { transition: transform .18s ease; }
.nav-dd:hover .nav-dd-caret, .nav-dd:focus-within .nav-dd-caret { transform: rotate(180deg); }
.nav-dd-menu { position: absolute; top: calc(100% + .5rem); right: 0; min-width: 256px; padding: .45rem; background: var(--vc-surface, #fff); border: 1px solid var(--vc-border); border-radius: 14px; box-shadow: 0 1px 2px rgba(20,30,24,.05), 0 18px 46px rgba(20,30,24,.16); opacity: 0; visibility: hidden; transform: translateY(7px); transition: opacity .16s ease, transform .16s ease, visibility .16s; z-index: 60; }
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd-menu .nav-dd-head { display: block; padding: .45rem .6rem .35rem; font-size: .66rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--vc-eyebrow); }
.nav-dd-menu a { display: block; padding: .55rem .6rem; border-radius: 9px; text-decoration: none; color: var(--vc-text); }
.nav-dd-menu a:hover { background: var(--vc-surface-muted); }
.nav-dd-menu a strong { display: block; font-size: .92rem; font-weight: 700; color: var(--vc-text); }
.nav-dd-menu a span { display: block; font-size: .78rem; color: var(--vc-text-soft); margin-top: .08rem; }
