    /* ====== Brand tokens (from CLAUDE.md / Webflow export) ====== */
    :root {
      --red: #b4232d;
      --red-dark: #971c25;
      --ink: #222222;
      --muted: #5b6573;
      --green: #1f9d57;
      --line: #22222216;
      --line-mid: #2222222e;
      --tint: #f6f8fa;
      /* total horizontal page gutter (both sides combined); fluid so mid-width
         screens get real edge padding. Each side = half this value. */
      --gutter: clamp(2.5rem, 8vw, 9rem);
      /* max height for photos on tablet/mobile so none dominates the screen.
         40% of the screen, divided by html{zoom:1.1} which inflates vh. */
      --img-cap: calc(40vh / 1.1);
      --radius-btn: 7px;
      --radius-card: 16px;
      --radius-photo: 24px;
      --shadow-soft: 0 32px 90px -30px rgba(34, 34, 34, .30), 0 8px 22px -10px rgba(34, 34, 34, .10);
      --shadow-glass: 0 18px 50px -18px rgba(34, 34, 34, .35);
      /* light glass — shared by toast + Forbes panel */
      --glass-bg: rgba(255, 255, 255, .6);
      --glass-border: rgba(255, 255, 255, .75);
      /* pointer parallax (set by JS, -.5 … .5) */
      --mx: 0;
      --my: 0;
    }

    *, *::before, *::after { box-sizing: border-box; }
    /* scale the whole document ~110% — the same uniform enlargement as
       punching the browser to 110% zoom (crisp, unlike transform: scale) */
    html { zoom: 1.1; scroll-behavior: smooth; scroll-padding-top: 5rem; scrollbar-gutter: stable; }
    /* never allow sideways scroll: decorative edge-bleeds (mega-menu panel, hero
       visual, pointer-parallax nudges) are meant to clip at the viewport edge, not
       create a horizontal scrollbar. `clip` (not `hidden`) keeps sticky/fixed working. */
    html, body { overflow-x: clip; }
    body {
      margin: 0;
      font-family: "Inter", system-ui, -apple-system, sans-serif;
      color: var(--ink);
      background: #ffffff;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    img { display: block; max-width: 100%; }

    :focus-visible {
      outline: 2px solid var(--red);
      outline-offset: 3px;
      border-radius: 4px;
    }

    /* ====== Fixed page background: one continuous blue/white world ======
       Sections are transparent; scrolling moves you through this space. */
    .page-bg {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      overflow: hidden;
      /* static base so the drifting layer never exposes an edge */
      background: linear-gradient(160deg, #f3f7fc 0%, #ffffff 58%, #f6f9fd 100%);
    }
    /* drifting atmosphere — animated via transform (compositor-only) instead of
       background-position, which repainted the whole fixed viewport every frame */
    .page-bg::before {
      content: "";
      position: absolute;
      inset: -18%;
      background:
        radial-gradient(circle at 80% 12%, rgba(0, 119, 255, .05), transparent 55%),
        linear-gradient(160deg, #f3f7fc 0%, #ffffff 58%, #f6f9fd 100%);
      will-change: transform;
    }
    .dot-grid {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(34, 34, 34, .08) 1px, transparent 1.5px);
      background-size: 30px 30px;
      -webkit-mask-image: radial-gradient(ellipse 80% 75% at 50% 42%, transparent 22%, #000 96%);
      mask-image: radial-gradient(ellipse 80% 75% at 50% 42%, transparent 22%, #000 96%);
      translate: calc(var(--mx) * -.8rem) calc(var(--my) * -.6rem);
    }
    .blob {
      position: absolute;
      border-radius: 50%;
      /* No filter: blur here. The blobs are already soft radial gradients that fade to
         transparent, so a 30px blur on top was mostly redundant — and animating a blurred
         surface (they roam + scale continuously) forces a full re-raster of that blur every
         frame, which was the biggest always-on GPU cost on the page. Dropping it keeps the
         same soft look while letting the compositor move them for free. */
      will-change: transform;
    }
    .pb-blue-1 {
      width: 54rem; height: 40rem;
      top: -12rem; right: -10rem;
      background: radial-gradient(closest-side, rgba(0, 119, 255, .045), transparent 72%);
      translate: calc(var(--mx) * -2.2rem) calc(var(--my) * -1.6rem);
    }
    .pb-blue-2 {
      width: 40rem; height: 32rem;
      bottom: -10rem; left: -12rem;
      background: radial-gradient(closest-side, rgba(0, 119, 255, .035), transparent 72%);
      translate: calc(var(--mx) * -1.6rem) calc(var(--my) * -1.2rem);
    }
    .pb-white-1 {
      width: 48rem; height: 38rem;
      top: 22%; left: 28%;
      background: radial-gradient(closest-side, rgba(255, 255, 255, .9), transparent 70%);
      translate: calc(var(--mx) * -1.2rem) calc(var(--my) * -.9rem);
    }
    .pb-white-2 {
      width: 36rem; height: 30rem;
      bottom: -8rem; right: 18%;
      background: radial-gradient(closest-side, rgba(255, 255, 255, .8), transparent 70%);
      translate: calc(var(--mx) * -1rem) calc(var(--my) * -.7rem);
    }

/* ============================ NAV (shared) ============================ */
    /* ====== Navigation bar ====== */

/* ============================ NAV (ported from homepage) ============================ */
    /* Fixed (not sticky): a sticky nav breaks when scroll-lock sets overflow:hidden on an
       ancestor, snapping the bar + its absolute mega panel to document-top (off-screen when
       scrolled). Fixed is independent of any scroll container, so the mega always sits under
       the bar and the scroll-lock can't move it. body padding compensates for the lost flow. */
    body { padding-top: calc(clamp(4.75rem, 5.6vw, 5.6rem) + 1px); }
    /* keyboard skip link — off-screen until focused, then drops in above the nav */
    .skip-link {
      position: fixed; top: .6rem; left: 50%; z-index: 200;
      transform: translateX(-50%) translateY(-250%);
      background: var(--red); color: #fff; padding: .7rem 1.25rem;
      border-radius: 8px; font-weight: 700; text-decoration: none;
      box-shadow: 0 8px 24px -8px rgba(34,34,34,.4);
      transition: transform .18s cubic-bezier(.22,.8,.3,1);
    }
    .skip-link:focus-visible { transform: translateX(-50%) translateY(0); outline: 2px solid #fff; outline-offset: 2px; }
    main:focus { outline: none; }
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      /* Fully opaque fill instead of backdrop-filter: a fixed full-width blur
         re-rasterizes the whole backdrop every scroll frame (content + drifting blobs
         behind it) — the biggest always-on GPU cost on the page. Solid #fff (was .97,
         which let text faintly bleed through) — no blur, no bleed-through, no cost. */
      background: #fff;
      border-bottom: 1px solid #e2e2e2;
      box-shadow: 0 .125rem 2rem rgba(0, 119, 255, .05);
    }
    .nav.mega-active { background: #fff; }
    .nav-inner {
      width: min(100% - 2rem, 99rem); margin-inline: auto;
      display: flex; align-items: stretch; justify-content: space-between; gap: 1.5rem;
      height: clamp(4.75rem, 5.6vw, 5.6rem);
    }
    .nav-left { display: flex; align-items: stretch; gap: clamp(1.5rem, 2.8vw, 2.75rem); }
    .nav-logo { display: flex; align-items: center; line-height: 0; }
    .nav-logo img { height: clamp(2.125rem, 2.65vw, 2.65rem); width: auto; display: block; }
    .nav-links { display: flex; align-items: stretch; gap: clamp(1rem, 1.8vw, 1.75rem); }
    .nav-link {
      position: relative; display: flex; align-items: center;
      font-size: 1.0625rem; font-weight: 600; color: var(--ink); text-decoration: none; transition: color .2s ease; cursor: pointer;
      border-top: .25rem solid transparent; border-bottom: .25rem solid transparent;
    }
    .nav-links .nav-link:hover { color: var(--red); }
    .nav-links .nav-link.is-active { color: var(--red); border-bottom-color: var(--red); }
    .nav-right { display: flex; align-items: center; gap: clamp(.9rem, 1.6vw, 1.4rem); }
    .nav-login { display: inline-flex; align-items: center; gap: .5rem; font-size: 1.0625rem; font-weight: 500; color: var(--red); text-decoration: none; transition: color .2s ease; }
    .nav-login img { width: 1.0625rem; height: 1.0625rem; }
    .nav-login:hover { color: var(--red-dark); }
    .nav-cta {
      display: inline-flex; align-items: center; justify-content: center;
      padding: .75rem 1.5rem; border-radius: .25rem; background: var(--red); color: #fff;
      font-size: 1.0625rem; font-weight: 600; text-decoration: none; transition: background-color .2s ease;
    }
    .nav-cta:hover { background: var(--red-dark); }
    .nav-hamburger {
      display: none; align-self: center; width: 2.5rem; height: 2.5rem; flex: none;
      border: 0; border-radius: 9px; background: none; cursor: pointer;
      padding: 0; place-items: center; color: var(--ink);
    }
    .nav-hamburger svg { width: 1.25rem; height: 1.25rem; }
    .nav-hamburger .ic-close { display: none; }
    .nav.nav-open .nav-hamburger .ic-open { display: none; }
    .nav.nav-open .nav-hamburger .ic-close { display: block; }
    .nav-mback { display: none; align-self: center; width: 2.5rem; height: 2.5rem; flex: none; border: 0; background: none; cursor: pointer; padding: 0; place-items: center; color: var(--ink); }
    .nav-mback svg { width: 1.5rem; height: 1.5rem; }
    .nav-mtitle { display: none; position: absolute; left: 50%; top: 0; height: clamp(4.75rem, 5.6vw, 5.6rem); transform: translateX(-50%); align-items: center; font-size: 1.0625rem; font-weight: 700; color: var(--ink); pointer-events: none; }

    .nav-mobile { display: none; position: fixed; inset: 0; z-index: 95; background: #fff; overflow: hidden; }
    .m-page {
      /* bottom inset = m-foot height (login + CTA + padding) so every list item can scroll clear of it */
      position: absolute; inset: 4.75rem 0 calc(9.75rem + env(safe-area-inset-bottom, 0px)); display: flex; flex-direction: column; overflow-y: auto; background: #fff;
      padding-bottom: 2rem; /* breathing room after the last option — signals the end of the list */
      transform: translateX(100%); transition: transform .3s cubic-bezier(.22, .8, .3, 1); will-change: transform;
    }
    .m-page.is-active { transform: translateX(0); }
    .m-page.is-left { transform: translateX(-100%); }
    .m-list { display: flex; flex-direction: column; }
    .m-item {
      display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; padding: 1.25rem 1.5rem;
      font: inherit; font-size: 1.25rem; font-weight: 700; color: var(--ink); background: none; border: 0; border-bottom: 1px solid var(--line);
      text-align: left; text-decoration: none; cursor: pointer;
    }
    .m-item:active { background: rgba(180, 35, 45, .05); }
    .m-item svg { width: 1.4rem; height: 1.4rem; flex: none; color: var(--muted); }
    .m-cat { padding: 1.5rem 1.5rem .5rem; font-size: .9375rem; font-weight: 600; color: #737373; }
    .m-sub {
      display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .85rem 1.5rem;
      font-size: 1.125rem; font-weight: 700; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line);
    }
    .m-sub:active { background: rgba(180, 35, 45, .05); }
    .m-sub svg { width: 1rem; height: 1rem; flex: none; color: var(--muted); }
    /* no divider under the final option of a menu page */
    .m-list .m-item:last-child, .m-page > .m-sub:last-child { border-bottom: 0; }
    .m-foot { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.25rem 1.5rem calc(1.25rem + env(safe-area-inset-bottom)); background: #fff; border-top: 1px solid var(--line); }
    .m-foot .nav-cta { display: flex; width: 100%; padding: .95rem 1.5rem; font-size: 1.0625rem; }
    /* outline login button above the CTA */
    .m-login {
      display: flex; align-items: center; justify-content: center; gap: .55rem;
      width: 100%; padding: .85rem 1.5rem; margin-bottom: .65rem;
      border: 1px solid #b4232d40; border-radius: .25rem; background: #b4232d0a;
      font-size: 1.0625rem; font-weight: 600; color: var(--red); text-decoration: none;
      transition: color .2s ease, border-color .2s ease, background-color .2s ease;
    }
    .m-login svg { width: 1.05rem; height: 1.05rem; flex: none; }
    .m-login:hover, .m-login:active { color: var(--red-dark); border-color: var(--red); }

    .nav-link[data-mega] { cursor: pointer; }
    /* solid, crisp panel (the page behind is blurred by the dim overlay instead).
       isolation:isolate gives it a stacking context so the grey section panel
       (.nav-mega-right::before, z-index:-1) layers correctly. */
    .nav-mega { position: absolute; top: 100%; left: 0; right: 0; background: #fff; isolation: isolate; }
    .nav.mega-active .nav-mega { border-top: 1px solid var(--line); }
    .nav-mega-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .2s cubic-bezier(.22,.8,.3,1); }
    .nav-mega-panel.is-open { grid-template-rows: 1fr; }
    .nav-mega-clip { overflow: hidden; min-height: 0; }
    .nav-mega-inner { width: min(100% - 2rem, 99rem); margin-inline: auto; padding: 3rem 0; display: flex; align-items: flex-start; gap: clamp(1.5rem, 2.6vw, 3rem); }
    .nav-mega-left, .nav-mega-right { display: flex; gap: clamp(1.5rem, 2.6vw, 3rem); align-items: flex-start; }
    .nav-mega-left { flex: 0 1 auto; }
    .nav-mega-right { flex: 0 1 auto; align-self: stretch; position: relative; padding-left: clamp(2rem, 3.5vw, 3.5rem); }
    .nav-mega-right::before { content: ""; position: absolute; z-index: -1; top: -3rem; bottom: -3rem; left: 0; right: -100vw; background: #dee3e966; }
    .nav-col { flex: 1 1 0; min-width: 0; max-width: 26rem; display: flex; flex-direction: column; }
    /* panels with no grey right-panel (Developers, Resources): keep columns sized to their
       content with the same gap as the other panels, so text blocks sit close together
       instead of stretching full-width (which left big empty gaps between short columns) */
    .nav-mega-inner:not(:has(.nav-mega-right)) .nav-col { flex: 0 1 auto; }
    .nav-col-head { margin: 0 0 1rem; font-size: 1rem; font-weight: 600; color: #707070; } /* a11y: was #9c9c9c (2.75:1, failed AA) */
    .nav-col-link { display: flex; flex-direction: column; gap: .15rem; padding: .5rem 0; text-decoration: none; color: var(--ink); transition: color .2s ease; }
    .nav-col-link:hover .nav-col-title { color: var(--red); }
    .nav-col-title { display: inline-flex; align-items: center; gap: .35rem; font-size: 1rem; font-weight: 600; line-height: 1.4; color: var(--ink); transition: color .2s ease; white-space: nowrap; }
    /* every link carrying a description (incl. the featured "learn more" link) reads at one larger size; bare links stay small */
    .nav-col-link:has(.nav-col-desc) .nav-col-title,
    .nav-col-link:has(.nav-col-more) .nav-col-title { font-size: 1.375rem; font-weight: 700; line-height: 1.3; }
    .nav-col-title svg { width: .8rem; height: .8rem; flex: none; color: var(--muted); }
    .nav-col-desc { font-size: .875rem; line-height: 1.45; color: var(--muted); }
    .nav-col-more { display: inline-flex; align-items: center; gap: .3rem; margin-top: .25rem; font-size: .875rem; font-weight: 600; color: var(--red); }
    .nav-col-divider { height: 1px; background: var(--line); margin: .85rem 0; }
    /* featured post card (Resources → Featured) */
    .nav-feat { display: block; width: 22rem; max-width: 100%; text-decoration: none; color: var(--ink); }
    .nav-feat-img { aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; background: #dee3e9; }
    .nav-feat-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
    .nav-feat:hover .nav-feat-img img { transform: scale(1.03); }
    .nav-feat-title { margin-top: .85rem; font-size: 1.125rem; font-weight: 700; line-height: 1.3; color: var(--ink); transition: color .2s ease; }
    .nav-feat:hover .nav-feat-title { color: var(--red); }
    .nav-feat-desc { margin-top: .3rem; font-size: .875rem; line-height: 1.45; color: var(--muted); }
    html.no-scroll { overflow: hidden; } /* lock the real scroll container (root), not body */
    /* full-page blur done cheaply: backdrop-filter on this FIXED (viewport-sized)
       overlay blurs only the one visible screen, not the entire ~20,000px document
       like the old filter:blur on main+footer did. Same look, far less cost. */
    /* dim overlay only (no blur): a full-screen blur — however implemented —
       costs a stutter each time the menu opens, which is the lag we removed.
       A slightly stronger dim gives the focus effect for free. */
    .nav-dim { position: fixed; inset: 0; z-index: 90; background: rgba(0, 0, 0, .32); opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s; }
    .nav.mega-active ~ .nav-dim { opacity: 1; visibility: visible; }
    @media (max-width: 1000px) { .nav-mega { display: none; } }
    /* Tighter desktop widths (nav still horizontal, 1001–1300): scale the mega
       down so all columns fit — big titles were nowrap at 1.375rem and pushed
       the third column off-screen. Smaller type + tighter gaps + wrap-allowed. */
    @media (min-width: 1001px) and (max-width: 1300px) {
      .nav-mega-inner { padding: 2.25rem 0; gap: clamp(1rem, 2vw, 1.75rem); }
      .nav-mega-left, .nav-mega-right { gap: clamp(1rem, 2vw, 1.75rem); }
      .nav-mega-right { padding-left: clamp(1.25rem, 2.5vw, 2rem); }
      .nav-col { max-width: 20rem; }
      .nav-col-head { margin-bottom: .65rem; font-size: .875rem; }
      /* bare sub-links (Epic, Cerner, Secure Fax Portal, Mobile App…) scale down too */
      .nav-col-title { font-size: .9375rem; white-space: normal; }
      .nav-col-link:has(.nav-col-desc) .nav-col-title,
      .nav-col-link:has(.nav-col-more) .nav-col-title { font-size: 1.0625rem; line-height: 1.25; }
      .nav-col-desc { font-size: .8125rem; }
      .nav-col-more { font-size: .8125rem; }
      .nav-feat, .nav-feat-title { width: auto; }
      .nav-feat-title { font-size: 1rem; }
      .nav-feat-desc { font-size: .8125rem; }
    }

    @media (max-width: 1000px) {
      .nav-links, .nav-right .nav-login, .nav-right .nav-cta { display: none; }
      .nav-hamburger { display: grid; }
      .nav-inner { height: 4.25rem; }
      .nav.nav-open ~ .nav-mobile { display: block; }
      .nav.nav-sub .nav-logo { display: none; }
      .nav.nav-sub .nav-mback { display: grid; }
      .nav.nav-sub .nav-mtitle { display: flex; }
    }

/* ============================ Layout containers (shared) ============================ */
    .container {
      position: relative;
      z-index: 1;
      /* fluid side gutter: grows with the viewport so mid-widths (small laptops/
         tablets) get real breathing room instead of near edge-to-edge content.
         Max-widths (90/78rem) are unchanged — full desktop still caps + centers. */
      width: min(100% - var(--gutter), 90rem);
      margin-inline: auto;
    }
    /* inner sections sit narrower than the hero — the hero is the widest moment on the page */
    .container-sm {
      position: relative;
      z-index: 1;
      width: min(100% - var(--gutter), 78rem);
      margin-inline: auto;
    }

/* ============================ Motion toggle (shared) ============================ */
    /* ====== Motion toggle (sticky, bottom-right) ====== */
    .motion-toggle {
      position: fixed;
      right: clamp(1rem, 2vw, 1.5rem);
      bottom: clamp(1rem, 2vw, 1.5rem);
      z-index: 60;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      height: 2.4rem;
      padding: 0 .8rem 0 .7rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, .72);
      -webkit-backdrop-filter: blur(12px) saturate(1.4);
      backdrop-filter: blur(12px) saturate(1.4);
      border: 1px solid var(--line-mid);
      box-shadow: 0 12px 28px -14px rgba(34, 34, 34, .4);
      color: var(--ink);
      font: inherit;
      font-size: .8125rem;
      font-weight: 650;
      cursor: pointer;
      opacity: .55;
      transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
    }
    .motion-toggle:hover { opacity: 1; transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(34, 34, 34, .45); }
    .motion-toggle:focus-visible { opacity: 1; outline: 2px solid var(--red); outline-offset: 2px; }
    .motion-toggle svg { width: 1.05rem; height: 1.05rem; flex: none; color: var(--red); }
    .motion-toggle .mt-label { white-space: nowrap; }
    .motion-toggle .mt-play { display: none; }
    .motion-toggle[aria-pressed="true"] .mt-pause { display: none; }
    .motion-toggle[aria-pressed="true"] .mt-play { display: block; }
    /* hidden on phones — the control is a desktop/tablet affordance */
    @media (max-width: 640px) { .motion-toggle { display: none; } }

    /* when paused: freeze the ambient/looping motion + settle the parallax to center.
       (entrance/reveal animations are intentionally left alone) */
    html.motion-paused { --mx: 0 !important; --my: 0 !important; --sd: 0 !important; }
    html.motion-paused .page-bg::before,
    html.motion-paused .blob,
    html.motion-paused .toast::after,
    html.motion-paused .toast-bell img,
    html.motion-paused .toast-dot,
    html.motion-paused .hero-photo,
    html.motion-paused .logo-track,
    html.motion-paused .new-tag,
    html.motion-paused .new-tag::after,
    html.motion-paused .new-dot,
    html.motion-paused .new-scroll-cue,
    html.motion-paused .reviews-track,
    html.motion-paused .api-pip,
    html.motion-paused .tier--beam::before,
    html.motion-paused .cft-callout.beam::before,
    html.motion-paused .rely-ekg-pulse,
    html.motion-paused .route-dot {
      animation-play-state: paused !important;
    }
    /* toast/Forbes run two animations (rise entrance + drift float) — pause ONLY
       the float (2nd), keep the entrance (1st) so they don't freeze invisible */
    html.motion-paused .toast,
    html.motion-paused .forbes { animation-play-state: running, paused !important; }

    /* ============================ SITE FOOTER ============================
       Sitewide footer. A raised "glass" panel — the same white, semi-transparent
       backdrop-blur treatment as the nav bar — lifted above the page below it.
       Container width matches the nav bar exactly: min(100% - 2rem, 99rem).
       The link columns collapse into an accordion on mobile. */
    .site-footer {
      --mono: "Inter", system-ui, -apple-system, sans-serif;
      position: relative;
      z-index: 1;
      margin-top: clamp(4rem, 7vw, 7rem);
      background: rgba(255, 255, 255, .82);
      -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
      border-top: 1px solid #e2e2e2;
      box-shadow: 0 -0.5rem 2.5rem rgba(34, 34, 34, .06), 0 -0.125rem 2rem rgba(0, 119, 255, .05);
      color: var(--ink);
      font-size: 1rem;
    }
    .footer-in {
      width: min(100% - 2rem, 99rem);
      margin-inline: auto;
      padding: clamp(2.5rem, 4vw, 4rem) 0 clamp(1.75rem, 2.5vw, 2.5rem);
    }

    /* --- main matrix: brand block + 4 link columns --- */
    .foot-main {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) repeat(4, minmax(0, 1fr));
      gap: clamp(1.75rem, 3vw, 3.5rem);
      align-items: start;
    }
    .foot-brand { max-width: 23rem; }
    .foot-logo { display: inline-block; line-height: 0; }
    .foot-logo img { height: 2.35rem; width: auto; }
    .foot-tag { margin: 1.2rem 0 1.6rem; font-size: 1.0625rem; line-height: 1.5; color: var(--muted); }
    .foot-cta {
      display: inline-flex; align-items: center; gap: .5rem;
      padding: .75rem 1.35rem; border-radius: var(--radius-btn);
      background: var(--red); color: #fff; text-decoration: none;
      font-size: .95rem; font-weight: 600; letter-spacing: -.01em;
      box-shadow: 0 12px 26px -14px rgba(180, 35, 45, .6);
      transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }
    .foot-cta:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 18px 32px -14px rgba(151, 28, 37, .6); }
    .foot-cta svg { width: .85rem; height: .85rem; }

    .foot-social { display: flex; gap: .6rem; margin-top: 1.7rem; }
    .foot-social a {
      display: inline-flex; align-items: center; justify-content: center;
      width: 2.5rem; height: 2.5rem; border-radius: 11px;
      border: 1px solid var(--line-mid); background: rgba(255, 255, 255, .6);
      color: var(--muted);
      transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
    }
    .foot-social a:hover { color: #fff; background: var(--red); border-color: var(--red); transform: translateY(-2px); }
    .foot-social svg { width: 1.05rem; height: 1.05rem; fill: currentColor; }

    .foot-col-head { margin: 0 0 1.15rem; }
    /* column heads double as accordion toggles (interactive only on mobile) */
    .foot-col-toggle {
      display: flex; align-items: center; width: 100%;
      margin: 0; padding: 0; border: 0; background: none; text-align: left; cursor: default;
      font-family: var(--mono); font-size: .69rem; font-weight: 700;
      letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
    }
    .foot-col-toggle > span { display: inline-flex; align-items: center; gap: .5rem; }
    .foot-col-toggle > span::before { content: ""; width: .9rem; height: 2px; border-radius: 2px; background: var(--red); flex: none; }
    .foot-col-chev { display: none; width: 1.05rem; height: 1.05rem; margin-left: auto; color: var(--muted); transition: transform .25s ease; }
    .foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .72rem; }
    .foot-col a {
      display: inline-flex; align-items: center; gap: .4rem;
      min-height: 1.75rem; /* a11y: ≥24px tap target (WCAG 2.2) + comfier to tap */
      color: var(--muted); text-decoration: none; font-size: .95rem; font-weight: 500;
      transition: color .18s ease;
    }
    .foot-col a:hover { color: var(--red); }
    .foot-col a .ext { width: .68rem; height: .68rem; opacity: .55; flex: none; }

    /* --- legal baseline --- */
    .foot-base {
      display: flex; justify-content: space-between; align-items: flex-start;
      flex-wrap: wrap; gap: 1.1rem 2.5rem;
      margin-top: clamp(2.5rem, 4vw, 3.5rem); padding-top: 1.5rem;
      border-top: 1px solid var(--line);
    }
    .foot-copy { max-width: 52rem; font-family: var(--mono); font-size: .72rem; line-height: 1.7; letter-spacing: .02em; color: var(--muted); }
    .foot-copy .fc-addr { display: block; margin-top: .35rem; color: #667085; } /* a11y: was #97a0ad (2.64:1, failed AA) */
    .foot-legal { display: flex; flex-wrap: wrap; gap: .9rem 1.6rem; }
    .foot-legal a { font-family: var(--mono); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .18s ease; }
    .foot-legal a:hover { color: var(--red); }

    @media (max-width: 991px) {
      .foot-main { grid-template-columns: 1fr 1fr; gap: 2rem clamp(1.5rem, 4vw, 3rem); }
      .foot-brand { grid-column: 1 / -1; max-width: 34rem; }
    }
    /* tablet & below: link columns become an accordion */
    @media (max-width: 1000px) {
      .foot-main { grid-template-columns: 1fr; gap: 0; }
      .foot-brand { margin-bottom: 1.75rem; }
      .foot-col { border-top: 1px solid var(--line); }
      .foot-col-head { margin: 0; }
      .foot-col-toggle { cursor: pointer; padding: 1.15rem 0; }
      .foot-col-chev { display: block; }
      .foot-col--open .foot-col-chev { transform: rotate(180deg); }
      .foot-col-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
      .foot-col--open .foot-col-panel { grid-template-rows: 1fr; }
      .foot-col-panel > ul { overflow: hidden; min-height: 0; }
      .foot-col--open .foot-col-panel > ul { padding-bottom: 1.15rem; }
      .foot-col ul { gap: .95rem; }
      .foot-col a { padding: .1rem 0; }
      .foot-base { flex-direction: column; }
    }
    @media (prefers-reduced-motion: reduce) {
      .foot-col-panel, .foot-col-chev { transition: none !important; }
    }

/* ============================ Shared utilities ============================ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: clamp(1.125rem, 1.7vw, 1.5rem) clamp(2.5rem, 3.8vw, 3.625rem);
      border-radius: var(--radius-btn);
      font: inherit;
      font-size: clamp(1.0625rem, 1.4vw, 1.3125rem);
      font-weight: 600;
      letter-spacing: -0.01em;
      text-decoration: none;
      border: 1px solid transparent;
      transition: background-color .18s ease, border-color .18s ease,
                  transform .18s ease, box-shadow .18s ease;
    }
    .btn-primary {
      background: var(--red);
      color: #ffffff;
      box-shadow: 0 12px 30px -12px rgba(180, 35, 45, .55);
    }
    .btn-primary:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 18px 36px -12px rgba(151, 28, 37, .6);
    }
    /* Enterprise accent: black CTA on a white base (never red) */
    .btn-ink {
      background: var(--ink);
      color: #ffffff;
      box-shadow: 0 12px 30px -12px rgba(34, 34, 34, .5);
    }
    .btn-ink:hover {
      background: #000;
      transform: translateY(-2px);
      box-shadow: 0 18px 36px -12px rgba(34, 34, 34, .55);
    }
    .btn-secondary {
      background: rgba(255, 255, 255, .8);
      color: var(--ink);
      border-color: var(--line-mid);
      box-shadow: 0 8px 22px -16px rgba(34, 34, 34, .35);
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
    }
    .btn-secondary:hover {
      background: var(--tint);
      border-color: #22222247;
      transform: translateY(-2px);
    }
    .btn:active { transform: translateY(0); }
    .btn--md {
      padding: clamp(.875rem, 1.2vw, 1.125rem) clamp(1.75rem, 2.4vw, 2.375rem);
      font-size: clamp(1rem, 1.2vw, 1.1875rem);
    }

    /* shared eyebrow: small uppercase label with a short red rule */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .65rem;
      margin: 0 0 1.125rem;
      font-size: .8125rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .eyebrow::before {
      content: "";
      width: 1.75rem;
      height: 2px;
      border-radius: 2px;
      background: var(--red);
    }
    .eyebrow.center { display: flex; justify-content: center; }
    .section-title {
      margin: 0 auto clamp(1.85rem, 3.75vw, 3.5rem);
      max-width: 60rem;
      text-align: center;
      font-weight: 800;
      font-size: clamp(2.25rem, 4.8vw, 4rem);
      line-height: 1.06;
      letter-spacing: -0.028em;
      color: var(--ink);
    }
    .section-title .accent, .hero-h1 .accent { color: var(--red); }
