  /* indexalt.html — editorial, technical, restrained.
     Warm paper background, serif display, hairline rules, FMC teal as
     a quiet structural accent. One inverted dark panel for the digital
     layer. Static page: no required-for-visibility JS. */

  :root {
    --bone:        #F4F2EC;
    --bone-2:      #EBE8DE;
    --bone-3:      #DCD8CB;
    --paper:       #FBFAF6;

    --ink:         #0E1A1F;
    --ink-2:       #1B2A31;
    --ink-3:       #2E3F46;
    --mute:        #57676D;
    --mute-2:      #8A969A;

    --rule:        rgba(14,26,31,0.14);
    --rule-strong: rgba(14,26,31,0.32);

    --teal:        #0d8a7c;
    --teal-deep:   #0a6e63;
    --teal-bright: #2dd4bf;
    --teal-line:   rgba(13,138,124,0.55);
    --teal-soft:   rgba(13,138,124,0.10);

    /* Product accents — used sparingly, only on wordmarks */
    --sage:  #9CAF88;
    --pulse: #C0392B;
    --rx:    #8B7CD8;

    --f-sans:    -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text',
                 'Inter', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --f-serif:   var(--f-sans);
    /* Keep former mono/meta labels on the standard FMC system stack. */
    --f-mono:    var(--f-sans);

    --container: 1240px;
    --container-narrow: 980px;
    --gutter: clamp(20px, 4vw, 48px);
    --nav-h: 52px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

  /* ── Accessibility primitives (2026-06-11 design-system pass) ──
     One visible focus ring for every interactive element. Teal on the
     light bone/paper surfaces; bright teal on dark/inverted panels so
     the ring holds WCAG contrast in both registers. */
  a:focus-visible,
  button:focus-visible,
  summary:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible,
  [tabindex]:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
  }
  .digital :focus-visible,
  .cta :focus-visible,
  body.page-dark :focus-visible,
  nav.site-nav:not(.nav--light) :focus-visible,
  .mobile-dropdown:not(.nav--light) :focus-visible {
    outline-color: var(--teal-bright);
  }
  .form-field input:focus-visible,
  .form-field select:focus-visible,
  .form-field textarea:focus-visible {
    outline: none; /* fields carry their own border + ring treatment */
  }

  /* Motion is opt-in: nothing on the page requires animation to be
     readable. Reduce everything when the visitor asks. */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
  body {
    background: var(--bone);
    color: var(--ink);
    font-family: var(--f-sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern','liga','calt';
    overflow-x: hidden;
  }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  ::selection { background: var(--teal); color: #fff; }

  .sr-only {
    position: absolute !important; width: 1px !important; height: 1px !important;
    padding: 0 !important; margin: -1px !important; overflow: hidden !important;
    clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important;
  }
  .sr-only:focus {
    position: fixed !important; top: 14px; left: 14px;
    width: auto !important; height: auto !important; clip: auto !important;
    padding: 10px 16px !important;
    background: var(--ink); color: var(--bone);
    border-radius: 4px; z-index: 9999; font-weight: 600; font-size: 13px;
  }

  /* ============================================================
     LAYOUT PRIMITIVES
     ============================================================ */
  .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
  .container--narrow { max-width: var(--container-narrow); }

  .eyebrow {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mute);
    font-weight: 500;
  }
  .eyebrow--ink { color: var(--ink-3); }
  .eyebrow--inverted { color: rgba(244,242,236,0.62); }
  .eyebrow--teal { color: var(--teal-deep); }

  .display {
    font-family: var(--f-serif);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.02;
    color: var(--ink);
    font-feature-settings: 'kern','liga','onum';
  }
  .display em,
  .display strong { font-style: normal; font-weight: 700; color: var(--teal-deep); }
  .display .accent { color: var(--teal-deep); font-style: normal; font-weight: 700; }

  .body-lead {
    font-size: clamp(17px, 1.5vw, 19px);
    line-height: 1.55;
    color: var(--ink-3);
    max-width: 60ch;
  }

  /* ============================================================
     NAV — dark liquid glass (matches fmc-hub.com header)
     ============================================================ */
  nav.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 max(24px, env(safe-area-inset-left));
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.42);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-bottom: 0.5px solid rgba(255,255,255,0.10);
    box-shadow:
      inset 0 0.5px 0 0 rgba(255,255,255,0.12),
      0 4px 24px rgba(0,0,0,0.28);
  }
  .nav-inner {
    width: 100%;
    max-width: 1024px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 8px;
    color: #f5f5f7;
  }
  .nav-logo-text {
    font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  }
  .nav-logo-text span {
    font-weight: 400; color: #6e6e73;
  }

  .nav-logo img,
  .footer__brand img {
    object-fit: contain;
    background: transparent;
  }
  .nav-logo img {
    border-radius: 0 !important;
  }

  .hero__brandmark {
    display: block;
    width: clamp(99px, 10.4vw, 146px);
    height: auto;
    margin: 0 auto clamp(18px, 2.4vw, 28px);
    filter: drop-shadow(0 18px 34px rgba(14,26,31,0.10));
  }
  .nav-links {
    display: flex; align-items: center; gap: 4px;
    list-style: none;
  }
  .nav-links li { display: flex; align-items: center; }
  .nav-links a {
    display: flex; align-items: center;
    font-size: 12px; font-weight: 400;
    color: #86868b;
    transition: color .2s;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-links a:hover { color: #f5f5f7; }

  nav.site-nav.nav--light {
    background: rgba(244,242,236,0.86);
    border-bottom-color: rgba(14,26,31,0.10);
    box-shadow:
      inset 0 0.5px 0 0 rgba(255,255,255,0.9),
      0 2px 18px rgba(10,70,60,0.06);
  }
  nav.site-nav.nav--light .nav-logo,
  nav.site-nav.nav--light .nav-logo-text {
    color: var(--ink);
  }
  nav.site-nav.nav--light .nav-logo-text span {
    color: var(--teal-deep);
  }
  nav.site-nav.nav--light .nav-links a {
    color: var(--ink-3);
  }
  nav.site-nav.nav--light .nav-links a:hover {
    color: var(--ink);
  }
  nav.site-nav.nav--light .mobile-menu-btn span {
    background: var(--ink-3);
  }
  nav.site-nav,
  nav.site-nav .nav-logo,
  nav.site-nav .nav-logo-text,
  nav.site-nav .nav-logo-text span,
  nav.site-nav .nav-links a,
  nav.site-nav .mobile-menu-btn span {
    transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease;
  }

  .nav-dropdown { position: relative; }
  .nav-dropdown > a { gap: 3px; }
  .nav-dropdown > a .nav-chevron {
    width: 10px; height: 10px; transition: transform .2s;
    flex-shrink: 0; opacity: .5;
  }
  .nav-dropdown:hover > a .nav-chevron { transform: rotate(180deg); }
  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 200px;
    background: rgba(20,20,22,0.65);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 0.5px solid rgba(255,255,255,0.14);
    border-radius: 16px;
    padding: 4px;
    opacity: 0; visibility: hidden;
    transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
      inset 0 0.5px 0 0 rgba(255,255,255,0.15),
      0 12px 40px rgba(0,0,0,0.55),
      0 2px 8px rgba(0,0,0,0.3);
    z-index: 200;
    overflow: hidden;
  }
  .nav-dropdown-menu::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 16px 16px 0 0;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown-menu::before {
    content: ''; position: absolute;
    top: -12px; left: 0; right: 0; height: 12px; z-index: 201;
  }
  .nav-dropdown-menu a {
    display: block; padding: 8px 12px;
    font-size: 13px; font-weight: 400; color: #86868b;
    border-radius: 10px; transition: all .15s;
    position: relative; z-index: 2;
  }
  .nav-dropdown-menu a:hover { color: #f5f5f7; background: rgba(255,255,255,0.08); }
  .nav-dropdown-menu .dd-divider {
    height: 0.5px; background: rgba(255,255,255,0.06);
    margin: 4px 8px; position: relative; z-index: 2;
  }

  /* Light-header dropdown variant (2026-06-09): when the adaptive nav is in
     nav--light mode the dark glass panel clashed with the bone header — match
     the header's light glass instead. */
  nav.site-nav.nav--light .nav-dropdown-menu {
    background: rgba(244,242,236,0.94);
    border-color: rgba(14,26,31,0.10);
    box-shadow:
      inset 0 0.5px 0 0 rgba(255,255,255,0.9),
      0 18px 40px rgba(10,70,60,0.14);
  }
  nav.site-nav.nav--light .nav-dropdown-menu::after {
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, transparent 100%);
  }
  nav.site-nav.nav--light .nav-dropdown-menu a { color: var(--ink-3); }
  nav.site-nav.nav--light .nav-dropdown-menu a:hover {
    color: var(--ink);
    background: rgba(10,70,60,0.07);
  }
  nav.site-nav.nav--light .nav-dropdown-menu .dd-divider {
    background: rgba(14,26,31,0.10);
  }

  .nav-cta {
    font-size: 12px !important;
    font-weight: 400 !important;
    background: var(--teal) !important;  /* solid teal — matches .btn--primary */
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    color: #fff !important;
    padding: 5px 14px !important;
    border-radius: 980px !important;
    transition: all .2s !important;
    border: 0.5px solid rgba(45,212,191,0.25) !important;
    box-shadow:
      inset 0 0.5px 0 0 rgba(255,255,255,0.2),
      0 2px 8px rgba(13,138,124,0.3) !important;
  }
  .nav-cta:hover { background: var(--teal-deep) !important; }  /* matches .btn--primary:hover */

  /* Mobile nav */
  .mobile-menu-btn {
    display: none;
    position: absolute; right: 20px; top: 50%;
    transform: translateY(-50%);
    background: none; border: none; cursor: pointer; padding: 8px; z-index: 101;
  }
  .mobile-menu-btn span {
    display: block; width: 16px; height: 1px;
    background: #86868b;
    transition: all .3s; transform-origin: center;
  }
  .mobile-menu-btn span:nth-child(1) { margin-bottom: 5px; }
  .mobile-menu-btn span:nth-child(3) { margin-top: 5px; }
  .mobile-menu-btn.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
  .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-dropdown {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    padding: 8px 24px 24px; z-index: 99; flex-direction: column;
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  }
  .mobile-dropdown.open { display: flex; }
  .mobile-dropdown.nav--light {
    /* Near-opaque paper — same recipe as the Hub menu. Thin glass let the
       page background bleed through the blur as a cloudy smudge on iOS. */
    background: rgba(251,250,246,0.92);
    border-bottom-color: rgba(14,26,31,0.08);
    box-shadow:
      inset 0 0.5px 0 0 rgba(255,255,255,0.9),
      0 12px 36px rgba(14,26,31,0.10);
  }
  .mobile-dropdown.nav--light a {
    color: var(--ink);
    border-bottom-color: var(--rule);
  }
  .mobile-dropdown.nav--light a:hover {
    color: var(--teal-deep);
  }
  .mobile-dropdown.nav--light .mobile-solutions-sub a {
    color: var(--mute) !important;
  }
  .mobile-dropdown a {
    display: block; padding: 12px 0;
    font-size: 17px; font-weight: 600;
    color: #86868b;
    border-bottom: 0.5px solid rgba(255,255,255,0.06);
    transition: color .15s;
  }
  .mobile-dropdown a:last-child { border-bottom: none; }
  .mobile-dropdown a:hover { color: #f5f5f7; }
  .mobile-dropdown a.mobile-cta {
    margin-top: 12px; text-align: center;
    background: rgba(13,138,124,0.85);
    color: #fff !important;
    font-weight: 500;
    border-radius: 980px;
    border: 0.5px solid rgba(45,212,191,0.2);
    padding: 14px;
    font-size: 15px;
    box-shadow: inset 0 0.5px 0 0 rgba(255,255,255,0.15);
  }
  .mobile-solutions-sub { display: none; flex-direction: column; padding-left: 0; }
  .mobile-solutions-sub.open { display: flex; }
  .mobile-solutions-sub a {
    font-size: 15px !important; font-weight: 400 !important;
    color: #6e6e73 !important;
    padding: 10px 0 10px 16px !important;
  }
  /* `.mobile-dropdown a` sets display:block (higher specificity) and the
     global `img, svg { display:block }` reset pushes the chevron onto its
     own line — qualify the selector so flex wins and the arrow sits to
     the right of the label, matching the Hub menu. */
  .mobile-dropdown a.mobile-solutions-toggle,
  .mobile-solutions-toggle {
    display: flex; align-items: center;
  }
  .mobile-solutions-toggle .mobile-chev {
    display: inline-block;
    width: 14px; height: 14px; transition: transform .25s;
    margin-left: 8px; opacity: .4;
  }
  .mobile-solutions-toggle.expanded .mobile-chev { transform: rotate(180deg); }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
  }

  /* ============================================================
     BUTTONS
     ============================================================ */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    font-family: var(--f-sans);
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: -0.005em;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
    white-space: nowrap;
  }
  .btn .btn__arrow {
    display: inline-flex;
    transition: transform .25s ease;
  }
  .btn:hover .btn__arrow { transform: translateX(3px); }

  .btn--primary {
    background: var(--teal);
    color: var(--paper);
    border-color: var(--teal);
  }
  .btn--primary:hover { background: var(--teal-deep); border-color: var(--teal-deep); }

  .btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--rule-strong);
  }
  .btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

  .btn--link {
    padding: 6px 0;
    background: none;
    border: none;
    border-bottom: 1px solid var(--ink);
    border-radius: 0;
    color: var(--ink);
    font-size: 14px;
    gap: 8px;
  }
  .btn--link:hover {
    color: var(--teal-deep);
    border-bottom-color: var(--teal-deep);
  }

  .btn--inv-primary {
    background: var(--bone);
    color: var(--ink);
    border-color: var(--bone);
  }
  .btn--inv-primary:hover { background: #fff; color: var(--ink); }

  .btn--inv-ghost {
    background: transparent;
    color: var(--bone);
    border-color: rgba(244,242,236,0.40);
  }
  .btn--inv-ghost:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

  /* Push content below fixed nav */
  main { padding-top: var(--nav-h); }

  /* ============================================================
     HERO
     ============================================================ */
  .hero {
    position: relative;
    padding: clamp(46px, 7vw, 88px) 0 0;
    border-bottom: 1px solid var(--rule);
    background: var(--bone);
  }
  .hero__layout {
    display: block;
  }
  .hero__copy {
    min-width: 0;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
  }
  .hero__tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(22px, 3vw, 32px);
    font-family: var(--f-sans);
    font-size: clamp(13px, 1.35vw, 15px);
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--teal-deep);
  }
  .hero__title {
    font-size: clamp(38px, 5.4vw, 72px);
    max-width: 12ch;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__title .accent {
    color: var(--teal-deep);
  }
  .hero__title-line {
    display: block;
  }
  .hero__sub {
    margin-top: clamp(28px, 3.4vw, 40px);
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(17px, 1.55vw, 20px);
    line-height: 1.5;
    color: var(--ink-3);
  }
  .hero__ctas {
    margin-top: clamp(36px, 4.4vw, 48px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero__footer {
    margin-top: clamp(46px, 6vw, 72px);
    padding: 0;
    min-height: clamp(124px, 11vw, 156px);
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
  }
  .hero__fact {
    min-height: clamp(124px, 11vw, 156px);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;        /* centered per John 2026-06-09 (was flex-start) */
    text-align: center;
    justify-content: center;
  }
  .hero__fact-num {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: nowrap;
    white-space: nowrap;
    font-family: var(--f-serif);
    font-weight: 400;
    font-size: clamp(34px, 3.6vw, 48px);
    letter-spacing: -0.02em;
    line-height: 0.9;
    color: var(--ink);
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
  }
  .hero__fact-num em {
    font-style: normal;
    color: var(--teal-deep);
    font-size: 0.7em;
    margin-left: 1px;
    position: relative;
    top: -0.03em;
  }
  .hero__fact-label {
    font-family: var(--f-sans);
    font-size: 11px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--mute);
    font-weight: 600;
  }

  /* ============================================================
     SECTION GENERIC
     ============================================================ */
  .section {
    padding: clamp(72px, 10vw, 128px) 0;
    border-bottom: 1px solid var(--rule);
  }
  .section--paper { background: var(--paper); }
  .section--bone-2 { background: var(--bone-2); }

  /* ============================================================
     WHAT FMC DOES (capabilities ladder, two-column)
     ============================================================ */
  .what {
    background: var(--paper);
  }
  .what__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: start;
  }
  .what__title {
    font-size: clamp(34px, 5vw, 60px);
    max-width: 18ch;
  }
  .what__title .accent { color: var(--teal-deep); }
  .what__body {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-3);
    margin-top: 24px;
  }
  .what__body + .what__body { margin-top: 14px; }

  .what__list {
    list-style: none;
    display: grid;
    gap: 0;
  }
  .what__item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: baseline;
    padding: 22px 0;
    border-top: 1px solid var(--rule);
  }
  .what__item:last-child { border-bottom: 1px solid var(--rule); }
  .what__item-name {
    font-family: var(--f-serif);
    font-size: clamp(20px, 2.2vw, 26px);
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.15;
  }
  .what__item-desc {
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--ink-3);
    margin-top: 6px;
    max-width: 48ch;
  }
  .what__item-tag {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mute);
    line-height: 1;
    padding-top: 8px;
    white-space: nowrap;
  }

  /* ============================================================
     DIGITAL LAYER (inverted dark panel)
     ============================================================ */
  .digital {
    background: var(--ink);
    color: var(--bone);
    padding: clamp(72px, 10vw, 128px) 0;
    border-bottom: 1px solid var(--ink);
    position: relative;
    overflow: hidden;
  }
  .digital__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 88px);
    align-items: center;
  }
  .digital__title {
    font-size: clamp(34px, 4.8vw, 60px);
    color: var(--bone);
    max-width: 18ch;
  }
  .digital__title em,
  .digital__title strong { color: #6ED4C2; font-style: normal; font-weight: 700; }
  .digital__body {
    margin-top: 22px;
    color: rgba(244,242,236,0.7);
    max-width: 50ch;
    font-size: 17px;
    line-height: 1.6;
  }
  .digital__cta { margin-top: 32px; }

  /* Sparkline panel — a real, restrained visual.
     No fake "+12%" widgets, no monospaced "ONLINE" pills. */
  .sparkpanel {
    position: relative;
    padding: 28px clamp(20px, 3vw, 36px) 32px;
    border: 1px solid rgba(244,242,236,0.14);
    border-radius: 6px;
    background:
      linear-gradient(180deg, rgba(244,242,236,0.025), rgba(244,242,236,0));
  }
  .sparkpanel__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(244,242,236,0.14);
    flex-wrap: wrap;
  }
  .sparkpanel__title {
    font-family: var(--f-serif);
    font-size: 22px;
    color: var(--bone);
    letter-spacing: -0.01em;
  }
  .sparkpanel__meta {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(244,242,236,0.55);
  }
  .sparkpanel__chart {
    width: 100%;
    height: 180px;
    margin: 26px 0 12px;
    display: block;
  }
  .sparkpanel__axis {
    display: flex;
    justify-content: space-between;
    font-family: var(--f-mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(244,242,236,0.45);
    padding-top: 6px;
  }
  .sparkpanel__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(244,242,236,0.14);
  }
  .sparkpanel__leg {
    display: flex; flex-direction: column; gap: 4px;
  }
  .sparkpanel__leg-num {
    font-family: var(--f-serif);
    font-size: 26px;
    color: var(--bone);
    line-height: 1;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
  }
  .sparkpanel__leg-num em {
    font-style: normal;
    color: #6ED4C2;
    font-size: 0.7em;
    margin-left: 2px;
  }
  .sparkpanel__leg-label {
    font-family: var(--f-mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(244,242,236,0.55);
  }

  /* ============================================================
     IN THE FIELD (Sweeping Corp-inspired ground proof)
     ============================================================ */
  .field {
    background: var(--paper);
  }
  .field__top {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 88px);
    align-items: start;
    margin-bottom: clamp(48px, 6vw, 80px);
  }
  .field__title {
    font-size: clamp(34px, 5vw, 60px);
    max-width: 18ch;
  }
  .field__title em,
  .field__title strong { color: var(--teal-deep); font-style: normal; font-weight: 700; }
  .field__body {
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--ink-3);
    max-width: 48ch;
  }
  .field__body + .field__body { margin-top: 14px; }

  /* ============================================================
     CTA — final
     ============================================================ */
  .cta {
    background: var(--ink);
    color: var(--bone);
    padding: clamp(80px, 11vw, 140px) 0;
  }
  .cta__inner {
    text-align: center;
  }
  .cta__eyebrow {
    color: rgba(244,242,236,0.55);
    margin-bottom: 18px;
  }
  .cta__title {
    font-family: var(--f-serif);
    font-size: clamp(38px, 5.6vw, 76px);
    letter-spacing: -0.02em;
    line-height: 1.04;
    color: var(--bone);
    max-width: 18ch;
    margin: 0 auto;
  }
  .cta__title em,
  .cta__title strong { color: #6ED4C2; font-style: normal; font-weight: 700; }
  .cta__body {
    margin: 22px auto 0;
    max-width: 52ch;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(244,242,236,0.7);
  }
  .cta__buttons {
    margin-top: 36px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
  }
  .cta__phone {
    margin-top: 28px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(244,242,236,0.55);
  }
  .cta__phone a {
    color: var(--bone);
    border-bottom: 1px solid rgba(244,242,236,0.4);
    padding-bottom: 1px;
    transition: border-color .2s ease;
  }
  .cta__phone a:hover { border-bottom-color: var(--bone); }

  /* ============================================================
     FOOTER
     ============================================================ */
  footer {
    background: var(--bone-2);
    color: var(--ink);
    padding: clamp(56px, 7vw, 80px) 0 28px;
    border-top: 1px solid var(--rule);
  }
  .footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--rule);
  }
  .footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }
  .footer__brand img {
    width: 22px; height: 22px;
    border-radius: 0;
  }
  .footer__brand-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.005em;
  }
  .footer__brand-text span {
    font-weight: 400;
    color: var(--mute);
    margin-left: 2px;
  }
  .footer__desc {
    font-size: 13.5px;
    color: var(--ink-3);
    line-height: 1.55;
    max-width: 36ch;
  }
  .footer__col h4 {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 16px;
  }
  .footer__col ul { list-style: none; }
  .footer__col li { margin-bottom: 10px; }
  .footer__col a {
    font-size: 13.5px;
    color: var(--ink-3);
    transition: color .15s ease;
  }
  .footer__col a:hover { color: var(--ink); }

  .footer__bottom {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--f-mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mute);
    flex-wrap: wrap;
    gap: 10px;
  }

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 1080px) {
    .hero__layout,
    .what__grid,
    .digital__grid,
    .field__top {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }
  @media (max-width: 980px) {
  }
  @media (max-width: 720px) {
    /* Containment only — the canonical phone layout lives in the
       MOBILE UI/UX POLISH block further down. (A conflicting 390px
       left-aligned .container override was removed 2026-06-11.) */
    .hero__layout,
    .hero__copy { width: 100%; max-width: 100%; min-width: 0; }
    .hero__title,
    .hero__sub { overflow-wrap: anywhere; }
  }
  @media (max-width: 480px) {
    .hero__title { font-size: clamp(36px, 10vw, 44px); }
    .hero__ctas { display: grid; width: 100%; }
    .hero__ctas .btn { width: 100%; justify-content: center; white-space: normal; }
    .hero__footer { grid-template-columns: 1fr 1fr; }
    .footer__top { grid-template-columns: 1fr; }
  }

  /* ============================================================
     BUILDINGPULSE DASHBOARD MOCKUP (replaces sparkpanel)
     ============================================================ */
  .bpdash {
    position: relative;
    border: 1px solid rgba(244,242,236,0.14);
    border-radius: 10px;
    background:
      radial-gradient(120% 80% at 0% 0%, rgba(110,212,194,0.06), transparent 60%),
      linear-gradient(180deg, rgba(244,242,236,0.025), rgba(244,242,236,0));
    overflow: hidden;
  }
  .bpdash__chrome {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(244,242,236,0.10);
    background: rgba(0,0,0,0.18);
  }
  .bpdash__brand {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--f-sans);
    font-size: 13px;
    color: var(--bone);
    letter-spacing: -0.005em;
  }
  .bpdash__brand-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #6ED4C2;
    box-shadow: 0 0 0 4px rgba(110,212,194,0.16);
  }
  .bpdash__brand strong { font-weight: 600; }
  .bpdash__brand span { color: rgba(244,242,236,0.5); font-weight: 400; }
  .bpdash__status {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6ED4C2;
    padding: 3px 9px;
    border: 1px solid rgba(110,212,194,0.32);
    border-radius: 999px;
    background: rgba(110,212,194,0.06);
  }
  .bpdash__body { padding: 18px clamp(16px, 2.2vw, 22px) 22px; }
  .bpdash__crumb {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 12px; flex-wrap: wrap;
    margin-bottom: 18px;
  }
  .bpdash__site {
    font-family: var(--f-serif);
    font-size: 18px;
    color: var(--bone);
    letter-spacing: -0.01em;
  }
  .bpdash__site em {
    font-style: normal;
    color: rgba(244,242,236,0.55);
    font-weight: 400;
  }
  .bpdash__period {
    font-family: var(--f-mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(244,242,236,0.5);
  }
  .bpdash__kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
  }
  .bpdash__kpi {
    padding: 12px 14px;
    background: rgba(244,242,236,0.03);
    border: 1px solid rgba(244,242,236,0.08);
    border-radius: 6px;
    display: flex; flex-direction: column; gap: 6px;
  }
  .bpdash__kpi-label {
    font-family: var(--f-mono);
    font-size: 9.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(244,242,236,0.5);
  }
  .bpdash__kpi-val {
    font-family: var(--f-serif);
    font-size: 22px;
    color: var(--bone);
    letter-spacing: -0.01em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }
  .bpdash__kpi-val em {
    font-style: normal;
    color: #6ED4C2;
    font-size: 0.55em;
    margin-left: 2px;
    letter-spacing: 0.03em;
  }
  .bpdash__kpi-trend {
    display: inline-flex; align-items: center; gap: 4px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: rgba(110,212,194,0.85);
  }
  .bpdash__kpi-trend.down { color: rgba(110,212,194,0.85); }
  .bpdash__kpi-trend.up { color: rgba(244,200,160,0.85); }
  .bpdash__chartwrap {
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(244,242,236,0.08);
    border-radius: 6px;
    padding: 14px 14px 10px;
  }
  .bpdash__charthead {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 12px; margin-bottom: 10px;
  }
  .bpdash__chart-title {
    font-family: var(--f-sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--bone);
    letter-spacing: -0.005em;
  }
  .bpdash__legendrow {
    display: flex; gap: 14px;
    font-family: var(--f-mono);
    font-size: 9.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(244,242,236,0.5);
  }
  .bpdash__legendrow .dot {
    display: inline-block; width: 8px; height: 2px; vertical-align: middle;
    margin-right: 6px; border-radius: 1px;
  }
  .bpdash__chart {
    width: 100%; height: 130px; display: block;
  }
  .bpdash__axis {
    display: flex; justify-content: space-between;
    font-family: var(--f-mono);
    font-size: 9.5px;
    letter-spacing: 0.12em;
    color: rgba(244,242,236,0.4);
    padding-top: 4px;
  }
  @media (max-width: 560px) {
    .bpdash__kpis { grid-template-columns: 1fr 1fr; }
    .bpdash__kpi:nth-child(3) { grid-column: 1 / -1; }
  }

  /* ============================================================
     NAMES BAND (promoted, standalone trust strip)
     ============================================================ */
  .namesband {
    background: var(--bone-2);
    padding: clamp(56px, 7vw, 92px) 0;
    border-bottom: 1px solid var(--rule);
  }
  .namesband__inner { text-align: left; }
  .namesband__eyebrow {
    margin-bottom: 18px;
    color: var(--ink-3);
    font-weight: 600;
  }
  .namesband__title {
    font-family: var(--f-serif);
    font-size: clamp(26px, 3.4vw, 40px);
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--ink);
    max-width: 26ch;
    margin-bottom: clamp(32px, 4vw, 48px);
  }
  .namesband__title em,
  .namesband__title strong { font-style: normal; font-weight: 700; color: var(--teal-deep); }
  .namesband__row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(24px, 4vw, 64px);
    align-items: center;
    padding: clamp(20px, 3vw, 28px) 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .namesband__row img {
    max-width: 100%;
    height: clamp(38px, 4.4vw, 52px);
    width: auto;
    object-fit: contain;
    opacity: 0.78;
    filter: grayscale(1);
    transition: opacity .25s ease, filter .25s ease;
    margin: 0 auto;
  }
  .namesband__row img:hover { opacity: 1; filter: grayscale(0); }
  @media (max-width: 980px) {
    .namesband__row { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  }
  @media (max-width: 480px) {
    .namesband__row { grid-template-columns: repeat(2, 1fr); }
  }

  /* ============================================================
     SUCCESS STORIES — auto-scroll carousel
     ============================================================ */
  .stories {
    background: var(--paper);
    padding: clamp(72px, 9vw, 120px) 0;
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
  }
  .stories__head {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 88px);
    align-items: end;
    margin-bottom: clamp(40px, 6vw, 56px);
  }
  .stories__title {
    font-size: clamp(34px, 4.8vw, 56px);
    max-width: 20ch;
  }
  .stories__title em,
  .stories__title strong { font-style: normal; font-weight: 700; color: var(--teal-deep); }
  .stories__lead {
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--ink-3);
    max-width: 48ch;
  }
  .stories__viewport {
    position: relative;
    width: min(100% - 36px, 1080px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--rule);
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
  }
  .stories__viewport.is-dragging {
    cursor: grabbing;
  }
  .stories__viewport:hover {
    border-color: var(--rule-strong);
  }
  .stories__viewport.is-dragging .story__link {
    pointer-events: none;
  }
  .stories__track {
    display: flex;
    /* Breathing room between cards while the carousel slides or is
       dragged — the step math in index.html reads this gap, so keep
       it here rather than hard-coding it in JS. */
    gap: 24px;
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
  }

  .story {
    flex: 0 0 var(--story-w, 100%);
    width: var(--story-w, 100%);
    background: var(--bone);
    border: 0;
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    min-height: 390px;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .story:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(14,26,31,0.07);
  }
  .story__photo {
    position: relative;
    width: 100%;
    aspect-ratio: auto;
    min-height: 100%;
    background:
      linear-gradient(135deg, #2E3F46 0%, #1B2A31 60%, #0E1A1F 100%);
    overflow: hidden;
  }
  .story__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .story__photo::after {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(60% 80% at 20% 20%, rgba(110,212,194,0.10), transparent 60%),
      linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.32));
    pointer-events: none;
  }
  .story__photo-mark {
    position: absolute;
    left: 14px; bottom: 12px;
    z-index: 2;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(244,242,236,0.78);
  }
  .story__body { padding: clamp(26px, 4vw, 40px); display: flex; flex-direction: column; gap: 12px; min-width: 0; }
  .story__client {
    font-family: var(--f-mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mute);
  }
  .story__name {
    font-family: var(--f-serif);
    font-size: clamp(23px, 2.7vw, 32px);
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--ink);
  }
  .story__work {
    font-size: 14px;
    color: var(--ink-3);
    line-height: 1.5;
    margin-top: 2px;
  }
  .story__foot {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: auto; padding-top: 14px;
    border-top: 1px solid var(--rule);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mute);
  }
  .story__year { color: var(--ink-3); }
  .story__link {
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 1px;
    transition: color .15s ease, border-color .15s ease;
  }
  .story__link:hover { color: var(--teal-deep); border-bottom-color: var(--teal-deep); }
  .stories__foot { margin-top: clamp(40px, 5vw, 56px); }

  /* Stepper controls — visible, keyboard-operable alternative to the
     drag/auto-advance behavior. Calm: hairline round buttons, small
     rule-colored dots, no glow. */
  .stories__nav {
    width: min(100% - 36px, 1080px);
    margin: 18px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .stories__dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .stories__dot {
    width: 7px; height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--bone-3);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
  }
  .stories__dot:hover { background: var(--mute-2); }
  .stories__dot[aria-current="true"] {
    background: var(--teal-deep);
    transform: scale(1.25);
  }
  .stories__arrows { display: flex; gap: 8px; }
  .stories__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--rule-strong);
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
  }
  .stories__arrow:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .stories__arrow svg { width: 14px; height: 14px; }

  @media (max-width: 780px) {
    .stories__viewport { width: min(100% - 28px, 560px); }
    .stories__nav { width: min(100% - 28px, 560px); }
    .story {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .story__photo { aspect-ratio: 16 / 10; min-height: 0; }
  }

  @media (prefers-reduced-motion: reduce) {
    .stories__track {
      transform: none !important;
      flex-wrap: wrap;
      width: 100%;
      gap: 28px;
    }
    .stories__track > .story[aria-hidden="true"] { display: none; }
    .stories__track > .story {
      flex: 0 0 100% !important;
      width: 100% !important;
    }
    .stories__viewport { cursor: default; }
    /* All cards are shown stacked — the stepper has nothing to step. */
    .stories__nav { display: none; }
  }

  /* ============================================================
     VERTICALS (rebuilt industries grid with teal icons)
     ============================================================ */
  .verticals { background: var(--bone); }
  .verticals__head {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: end;
    margin-bottom: clamp(40px, 5vw, 56px);
  }
  .verticals__title {
    font-size: clamp(34px, 4.8vw, 56px);
    max-width: 18ch;
  }
  .verticals__title em,
  .verticals__title strong { font-style: normal; font-weight: 700; color: var(--teal-deep); }
  .verticals__lead {
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--ink-3);
    max-width: 46ch;
  }
  .verticals__grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
  .vert {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px 22px 22px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 6px;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    min-height: 142px;
  }
  .vert:hover {
    border-color: var(--rule-strong);
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(14,26,31,0.05);
  }
  .vert__icon {
    width: 32px; height: 32px;
    color: var(--teal-deep);
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--teal-soft);
    border-radius: 8px;
    padding: 6px;
    flex-shrink: 0;
  }
  .vert__icon svg {
    width: 100%; height: 100%;
    stroke: currentColor; fill: none;
    stroke-width: 1.6;
    stroke-linecap: round; stroke-linejoin: round;
  }
  .vert__name {
    font-family: var(--f-serif);
    font-size: clamp(16px, 1.6vw, 19px);
    letter-spacing: -0.01em;
    color: var(--ink);
    line-height: 1.2;
  }
  .vert__note {
    font-size: 13px;
    color: var(--ink-3);
    line-height: 1.5;
  }
  @media (max-width: 980px) {
    .verticals__head { grid-template-columns: 1fr; gap: 24px; }
    .verticals__grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 520px) {
    .verticals__grid { grid-template-columns: 1fr; }
  }

  /* ============================================================
     MOBILE UI/UX POLISH — phone-first centering and containment
     ============================================================ */
  @media (max-width: 720px) {
    .container {
      width: 100%;
      max-width: 430px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }

    .section { padding: 64px 0; }

    .hero {
      padding-top: 42px;
    }
    .hero__copy,
    .what__grid,
    .digital__grid,
    .field__top,
    .stories__head,
    .verticals__head {
      text-align: center;
    }
    .hero__tagline,
    .hero__ctas,
    .digital__cta,
    .stories__lead,
    .verticals__lead,
    .field__body,
    .body-lead {
      margin-left: auto;
      margin-right: auto;
    }
    .hero__title,
    .what__title,
    .digital__title,
    .field__title,
    .stories__title,
    .verticals__title {
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
    .hero__sub {
      max-width: 34ch;
      margin-left: auto;
      margin-right: auto;
    }

    .hero__footer {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
      min-height: 0;
      margin-top: 42px;
    }
    .hero__fact {
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 112px;
      padding: 18px 8px;
      border-bottom: 1px solid var(--rule);
    }
    .hero__fact:nth-last-child(-n+2) { border-bottom: none; }
    .hero__fact-num { font-size: clamp(36px, 11vw, 44px); }
    .hero__fact-label {
      max-width: 14ch;
      font-size: 10px;
      line-height: 1.35;
      letter-spacing: 0.075em;
    }

    .what__grid,
    .digital__grid,
    .field__top,
    .stories__head,
    .verticals__head {
      grid-template-columns: minmax(0, 1fr);
      gap: 26px;
    }
    .what__body { max-width: 34ch; margin-left: auto; margin-right: auto; }
    .what__list { margin-top: 6px; }
    .what__item {
      grid-template-columns: minmax(0, 1fr);
      gap: 8px;
      justify-items: center;
      text-align: center;
      padding: 24px 0;
    }
    .what__item-tag {
      order: -1;
      padding-top: 0;
      letter-spacing: 0.14em;
      color: var(--teal-deep);
    }
    .what__item-desc { margin-left: auto; margin-right: auto; }

    .digital__body { margin-left: auto; margin-right: auto; }
    .bpdash { max-width: 390px; margin-left: auto; margin-right: auto; }
    .bpdash__chrome,
    .bpdash__crumb,
    .bpdash__charthead {
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .bpdash__kpis { grid-template-columns: 1fr; }
    .bpdash__kpi:nth-child(3) { grid-column: auto; }
    .bpdash__kpi { align-items: center; text-align: center; }
    .bpdash__legendrow,
    .bpdash__axis { justify-content: center; gap: 12px; flex-wrap: wrap; }

    .namesband__inner { text-align: center; }
    .namesband__title { margin-left: auto; margin-right: auto; }
    .namesband__row {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px 30px;
      justify-items: center;
    }
    .namesband__row img {
      height: auto;
      max-height: 42px;
      max-width: 130px;
      opacity: 0.86;
    }
    .namesband__row img:nth-child(5) {
      grid-column: 1 / -1;
      max-width: 116px;
    }

    .stories__head {
      align-items: center;
      margin-bottom: 30px;
    }
    .stories__lead { max-width: 32ch; }
    .stories__viewport {
      width: min(100% - 28px, 390px);
      -webkit-mask-image: none;
              mask-image: none;
    }
    .stories__nav { width: min(100% - 28px, 390px); }
    .story__body { text-align: center; padding: 26px 22px 28px; }
    .story__client { color: var(--teal-deep); }
    .story__foot {
      flex-direction: column;
      justify-content: center;
      gap: 8px;
      letter-spacing: 0.11em;
    }
    .story__photo-mark {
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 28px);
      text-align: center;
      color: rgba(244,242,236,0.9);
      text-shadow: 0 1px 10px rgba(0,0,0,0.45);
    }

    .vert {
      align-items: center;
      text-align: center;
      min-height: 0;
    }

    .cta__buttons { display: grid; width: min(100%, 330px); margin-inline: auto; }
    .cta__buttons .btn { width: 100%; justify-content: center; }

    .footer__top,
    .footer__bottom,
    .footer__brand,
    .footer__desc,
    .footer__col {
      text-align: center;
      justify-content: center;
      margin-left: auto;
      margin-right: auto;
    }
    .footer__bottom { flex-direction: column; }
  }

  @media (max-width: 600px) {
    .hero__title {
      font-size: clamp(30px, 8vw, 38px);
      max-width: none;
    }
  }

  @media (max-width: 380px) {
    .container { padding-left: 16px; padding-right: 16px; }
    .hero__title { font-size: clamp(27px, 7.4vw, 32px); }
    .btn { white-space: normal; text-align: center; justify-content: center; }
    .hero__fact-label { font-size: 9.5px; letter-spacing: 0.06em; }
    .bpdash__body { padding-left: 14px; padding-right: 14px; }
    .namesband__row { grid-template-columns: 1fr; }
    .namesband__row img:nth-child(5) { grid-column: auto; }
  }

  /* ============================================================
     SUBPAGE COMPONENTS — same editorial system, extra parts
     used by Solutions, BuildingPulse, Our Story, Careers,
     Success Stories, and Contact. All built from the same
     bone/paper palette, hairline rules, and teal accent.
     ============================================================ */

  /* Simple page hero (no stats footer) */
  .subhero {
    position: relative;
    padding: clamp(54px, 8vw, 104px) 0 clamp(40px, 5vw, 64px);
    border-bottom: 1px solid var(--rule);
    background: var(--bone);
  }
  .subhero__inner { max-width: 880px; }
  .subhero__title {
    font-size: clamp(36px, 5vw, 64px);
    max-width: 18ch;
  }
  .subhero__title .accent { color: var(--teal-deep); }
  .subhero__sub {
    margin-top: clamp(22px, 3vw, 32px);
    max-width: 60ch;
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.5;
    color: var(--ink-3);
  }
  .subhero__ctas {
    margin-top: clamp(30px, 4vw, 42px);
    display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap;
  }

  /* Section heading block */
  .sec-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
  .sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
  .sec-head__eyebrow { margin-bottom: 16px; }
  .sec-head__title {
    font-family: var(--f-serif);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--ink);
    font-size: clamp(30px, 4.2vw, 50px);
  }
  .sec-head__title em, .sec-head__title strong {
    font-style: normal; font-weight: 700; color: var(--teal-deep);
  }
  .sec-head__sub {
    margin-top: 18px;
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--ink-3);
    max-width: 60ch;
  }
  .sec-head--center .sec-head__sub { margin-left: auto; margin-right: auto; }

  /* Card grid + card (paper tile, hairline, teal icon) */
  .cardgrid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .cardgrid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cardgrid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 26px 26px 28px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 8px;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  }
  .card--link { cursor: pointer; }
  .card:hover {
    border-color: var(--rule-strong);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(14,26,31,0.06);
  }
  .card__icon {
    width: 40px; height: 40px;
    color: var(--teal-deep);
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--teal-soft);
    border-radius: 9px;
    padding: 8px;
    flex-shrink: 0;
  }
  .card__icon svg {
    width: 100%; height: 100%;
    stroke: currentColor; fill: none;
    stroke-width: 1.5;
    stroke-linecap: round; stroke-linejoin: round;
  }
  .card__title {
    font-family: var(--f-serif);
    font-size: clamp(18px, 1.9vw, 22px);
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--ink);
  }
  .card__body { font-size: 14.5px; line-height: 1.55; color: var(--ink-3); }
  .card__eyebrow {
    font-family: var(--f-mono);
    font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--teal-deep); font-weight: 600;
  }
  .card__link {
    margin-top: auto; padding-top: 6px;
    font-size: 13.5px; color: var(--ink);
    border-bottom: 1px solid var(--rule-strong);
    align-self: flex-start;
    transition: color .15s ease, border-color .15s ease;
  }
  .card__link:hover { color: var(--teal-deep); border-bottom-color: var(--teal-deep); }

  /* Numbered process steps */
  .steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--rule);
  }
  .step {
    padding: 28px 24px 30px;
    border-bottom: 1px solid var(--rule);
    border-right: 1px solid var(--rule);
  }
  .step:nth-child(4n) { border-right: none; }
  .step__tag {
    font-family: var(--f-mono);
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--teal-deep); font-weight: 600;
    margin-bottom: 14px;
  }
  .step__title {
    font-family: var(--f-serif);
    font-size: clamp(18px, 2vw, 23px);
    letter-spacing: -0.01em; line-height: 1.2; color: var(--ink);
    margin-bottom: 8px;
  }
  .step__body { font-size: 14px; line-height: 1.55; color: var(--ink-3); }

  /* Stat strip */
  .statstrip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: clamp(28px, 4vw, 44px) 0;
  }
  .statstrip__item { display: flex; flex-direction: column; gap: 8px; }
  .statstrip__num {
    font-family: var(--f-serif);
    font-size: clamp(34px, 3.6vw, 48px);
    letter-spacing: -0.02em; line-height: 0.95; color: var(--ink);
    font-variant-numeric: lining-nums tabular-nums;
  }
  .statstrip__num em { font-style: normal; color: var(--teal-deep); font-size: 0.62em; margin-left: 1px; }
  .statstrip__label {
    font-family: var(--f-sans);
    font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase;
    color: var(--mute); font-weight: 600;
  }

  /* Timeline (Our Story) */
  .timeline { list-style: none; display: grid; gap: 0; }
  .timeline__item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 28px;
    padding: 26px 0;
    border-top: 1px solid var(--rule);
  }
  .timeline__item:last-child { border-bottom: 1px solid var(--rule); }
  .timeline__year {
    font-family: var(--f-serif);
    font-size: clamp(22px, 2.4vw, 30px);
    color: var(--teal-deep); letter-spacing: -0.01em; line-height: 1.1;
  }
  .timeline__body { font-size: 15.5px; line-height: 1.6; color: var(--ink-3); max-width: 60ch; }
  .timeline__body strong { color: var(--ink); font-weight: 600; }

  /* Forms */
  .form-alt { max-width: 640px; }
  .form-alt--center { margin: 0 auto; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-field { margin-bottom: 18px; }
  .form-field label {
    display: block; margin-bottom: 8px;
    font-family: var(--f-mono);
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--mute); font-weight: 600;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    font-family: var(--f-sans); font-size: 15px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--rule-strong);
    border-radius: 8px;
    padding: 13px 15px;
    transition: border-color .18s ease, box-shadow .18s ease;
  }
  .form-field textarea { resize: vertical; min-height: 130px; }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-soft);
  }
  .form-field input::placeholder, .form-field textarea::placeholder { color: var(--mute-2); }
  .form-file {
    border: 1px dashed var(--rule-strong);
    border-radius: 8px; padding: 22px; text-align: center;
    background: var(--paper); color: var(--mute); font-size: 14px;
    cursor: pointer;
  }
  .form-alt .btn { margin-top: 8px; }

  /* Department / contact info cards */
  .infocards { display: grid; gap: 12px; }
  .infocard {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 18px 20px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 8px;
  }
  .infocard__icon {
    flex-shrink: 0; width: 24px; height: 24px; margin-top: 2px;
    color: var(--teal-deep);
  }
  .infocard__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .infocard h3 {
    font-family: var(--f-mono);
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink); font-weight: 600; margin-bottom: 6px;
  }
  .infocard p, .infocard a { font-size: 15px; line-height: 1.45; color: var(--ink-3); }
  .infocard a:hover { color: var(--teal-deep); }
  .infocard__sub { display: block; margin-top: 4px; font-size: 12.5px; color: var(--mute); }

  .contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
  @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 24px; } }

  /* Department cards (link cards w/ strong intro) */
  .deptcard p strong { color: var(--ink); font-weight: 600; }

  /* Job listing cards */
  .joblist { display: grid; gap: 14px; }
  .jobcard {
    padding: 28px 30px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 8px;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  .jobcard:hover { border-color: var(--rule-strong); box-shadow: 0 10px 22px rgba(14,26,31,0.05); }
  .jobcard__title {
    font-family: var(--f-serif);
    font-size: clamp(20px, 2.2vw, 26px); letter-spacing: -0.01em; color: var(--ink);
  }
  .jobcard__meta {
    font-family: var(--f-mono);
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--teal-deep); font-weight: 600; margin: 8px 0 12px;
  }
  .jobcard__body { font-size: 15px; line-height: 1.6; color: var(--ink-3); max-width: 70ch; margin-bottom: 18px; }

  /* Success story cards (data-driven) */
  .storycard {
    display: flex; flex-direction: column;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  }
  .storycard:hover { border-color: var(--rule-strong); transform: translateY(-2px); box-shadow: 0 14px 26px rgba(14,26,31,0.07); }
  .storycard__photo {
    position: relative; height: 170px;
    background: linear-gradient(135deg, #2E3F46 0%, #1B2A31 60%, #0E1A1F 100%);
    background-size: cover; background-position: center;
  }
  .storycard__photo::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(60% 80% at 20% 20%, rgba(110,212,194,0.10), transparent 60%), linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.30));
  }
  .storycard__body { display: flex; flex-direction: column; gap: 10px; padding: 26px 26px 28px; flex: 1; }
  .storycard__eyebrow {
    font-family: var(--f-mono);
    font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-deep); font-weight: 600;
  }
  .storycard__title { font-family: var(--f-serif); font-size: clamp(20px, 2.1vw, 25px); letter-spacing: -0.01em; line-height: 1.2; color: var(--ink); }
  .storycard__body p { font-size: 14.5px; line-height: 1.55; color: var(--ink-3); }
  .storycard__link {
    margin-top: auto; padding-top: 8px;
    font-size: 13.5px; color: var(--ink); align-self: flex-start;
    border-bottom: 1px solid var(--rule-strong);
    transition: color .15s ease, border-color .15s ease;
  }
  .storycard__link:hover { color: var(--teal-deep); border-bottom-color: var(--teal-deep); }

  /* Logo proof row (reuses namesband look, lighter) */
  .logorow {
    display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 56px); align-items: center;
  }
  .logorow img {
    max-width: 100%; height: clamp(34px, 4vw, 46px); width: auto; object-fit: contain;
    opacity: 0.72; filter: grayscale(1); margin: 0 auto;
    transition: opacity .25s ease, filter .25s ease;
  }
  .logorow img:hover { opacity: 1; filter: grayscale(0); }

  /* Two-column prose feature */
  .twocol { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
  .prose { font-size: 16.5px; line-height: 1.65; color: var(--ink-3); }
  .prose + .prose { margin-top: 14px; }
  .prose strong { color: var(--ink); font-weight: 600; }

  /* Inline incentive / highlight band */
  .band {
    background: var(--bone-2);
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: clamp(32px, 5vw, 56px);
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(32px, 5vw, 64px);
    align-items: center;
  }
  .band__title { font-family: var(--f-serif); font-weight: 400; font-size: clamp(26px, 3.2vw, 38px); letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); }
  .band__body { margin-top: 16px; font-size: 16px; line-height: 1.6; color: var(--ink-3); }
  .band__aside { display: grid; gap: 16px; }
  .band__stat { padding: 18px 20px; background: var(--paper); border: 1px solid var(--rule); border-radius: 8px; }
  .band__stat-num { font-family: var(--f-serif); font-size: clamp(22px, 2.6vw, 30px); color: var(--teal-deep); letter-spacing: -0.01em; }
  .band__stat-label { font-size: 12.5px; color: var(--mute); margin-top: 4px; }

  /* Responsive collapses for subpage components */
  @media (max-width: 1080px) {
    .twocol { grid-template-columns: 1fr; gap: 36px; }
    .band { grid-template-columns: 1fr; }
  }
  @media (max-width: 920px) {
    .cardgrid, .cardgrid--4 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .step:nth-child(4n) { border-right: 1px solid var(--rule); }
    .step:nth-child(2n) { border-right: none; }
    .statstrip { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
    .logorow { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  }
  @media (max-width: 620px) {
    .cardgrid, .cardgrid--2, .cardgrid--4 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .step { border-right: none !important; }
    .form-row { grid-template-columns: 1fr; }
    .timeline__item { grid-template-columns: 1fr; gap: 6px; }
    .logorow { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 720px) {
    .subhero__inner, .sec-head, .twocol { text-align: left; }
  }

/* Asset reintegration: restrained visual panels using legacy FMC images/SVGs */
.subhero__grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(320px,.78fr);gap:clamp(28px,5vw,70px);align-items:center}
.subhero__grid .subhero__inner{max-width:880px}
.subhero__media{position:relative;border-radius:34px;padding:10px;background:linear-gradient(135deg,rgba(255,255,255,.74),rgba(255,255,255,.28));border:1px solid var(--rule);box-shadow:0 30px 80px rgba(13,31,36,.13);overflow:hidden}
.subhero__media:before{content:"";position:absolute;inset:-30%;background:radial-gradient(circle at 18% 12%,rgba(9,199,185,.22),transparent 34%),radial-gradient(circle at 78% 82%,rgba(166,35,48,.16),transparent 34%);pointer-events:none}
.subhero__media img{position:relative;display:block;width:100%;height:100%;max-height:430px;object-fit:cover;border-radius:25px;filter:saturate(.96) contrast(1.03)}
.subhero__media--contain img{object-fit:contain;background:rgba(255,255,255,.76);padding:clamp(22px,4vw,44px)}
.subhero__media-caption{position:absolute;left:22px;right:22px;bottom:22px;z-index:2;display:flex;justify-content:space-between;gap:14px;align-items:center;padding:12px 14px;border-radius:18px;background:rgba(13,31,36,.76);color:var(--bone);backdrop-filter:blur(16px);font-size:12px;letter-spacing:.1em;text-transform:uppercase}
.visual-panel{border:1px solid var(--rule);border-radius:30px;background:rgba(255,255,255,.62);box-shadow:0 18px 50px rgba(14,26,31,.08);overflow:hidden}
.visual-panel img{display:block;width:100%;height:auto}.visual-panel__copy{padding:20px 22px}.visual-panel__label{font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--teal-deep);font-weight:750}.visual-panel__text{margin-top:8px;color:var(--ink-3);line-height:1.55}
.logo-cloud{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:24px}.logo-tile{min-height:92px;border:1px solid rgba(255,255,255,.16);border-radius:20px;background:rgba(255,255,255,.07);display:flex;align-items:center;justify-content:center;padding:16px}.section--paper .logo-tile,.logo-tile--light{border-color:var(--rule);background:rgba(255,255,255,.64)}.logo-tile img{max-width:100%;max-height:52px;object-fit:contain;filter:saturate(.85) contrast(.98)}.section--ink .logo-tile img{filter:brightness(0) invert(1) saturate(0) opacity(.86)}
.protocol-strip{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:12px}.protocol-strip img{width:100%;height:50px;object-fit:contain;border:1px solid var(--rule);border-radius:18px;background:rgba(255,255,255,.72);padding:12px}
.image-band{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:24px}.image-band figure{margin:0;border-radius:24px;overflow:hidden;border:1px solid var(--rule);background:var(--paper);box-shadow:0 14px 42px rgba(14,26,31,.08)}.image-band img{display:block;width:100%;height:180px;object-fit:cover}.image-band figcaption{padding:12px 14px;color:var(--ink-3);font-size:13px}
.contact-snapshot{margin-top:18px;border-radius:26px;overflow:hidden;border:1px solid var(--rule);background:var(--paper);box-shadow:0 18px 50px rgba(14,26,31,.08)}.contact-snapshot img{display:block;width:100%;height:210px;object-fit:cover}.contact-snapshot__body{padding:18px;color:var(--ink-3);line-height:1.55}
@media(max-width:920px){.subhero__grid{grid-template-columns:1fr}.subhero__media{max-width:620px}.logo-cloud{grid-template-columns:repeat(2,minmax(0,1fr))}.protocol-strip,.image-band{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.protocol-strip,.image-band{grid-template-columns:1fr}.subhero__media-caption{position:static;margin-top:10px;background:rgba(13,31,36,.92)}}

/* ============================================================
   SAFE-REDUCTIONS MIGRATION — 2026-06-01
   Page-local <style> blocks previously inlined on
   solutions.html and building-pulse.html are scoped to
   body.subpage--editorial so the existing taller-hero and
   rounded-card variants stay on those two pages only; the
   other redesigned pages (our-story, success-stories,
   join-our-team, contact-us, index) continue to use the
   canonical subpage components above.
   ============================================================ */
body.subpage--editorial .subhero {
  padding: clamp(120px,16vw,184px) 0 clamp(72px,10vw,120px);
  background: linear-gradient(180deg, var(--bone) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--rule);
}
body.subpage--editorial .subhero__inner { max-width: 880px; }
body.subpage--editorial .subhero__title {
  font-size: clamp(48px,9vw,104px);
  margin-top: 18px;
}
body.subpage--editorial .subhero__sub {
  font-size: clamp(18px,2vw,24px);
  line-height: 1.45;
  color: var(--ink-3);
  max-width: 760px;
  margin-top: 24px;
}
body.subpage--editorial .section { padding: clamp(72px,10vw,120px) 0; }
body.subpage--editorial .section--paper { background: var(--paper); }
body.subpage--editorial .section--ink {
  background: var(--ink);
  color: var(--bone);
}
body.subpage--editorial .section--ink .sec-head__title,
body.subpage--editorial .section--ink .card__title { color: var(--bone); }
body.subpage--editorial .section--ink .sec-head__sub,
body.subpage--editorial .section--ink .card__body { color: rgba(244,242,236,.74); }
body.subpage--editorial .sec-head { max-width: 760px; margin-bottom: 34px; }
body.subpage--editorial .sec-head__title {
  font-size: clamp(34px,5vw,64px);
  line-height: 1.04;
  letter-spacing: -.03em;
  font-weight: 500;
  color: var(--ink);
}
body.subpage--editorial .sec-head__sub {
  margin-top: 16px;
  color: var(--ink-3);
  font-size: 18px;
  line-height: 1.55;
}
body.subpage--editorial .cardgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}
body.subpage--editorial .card {
  display: block;
  background: rgba(255,255,255,.62);
  border: 1px solid var(--rule);
  border-radius: 26px;
  padding: 26px;
  min-height: 100%;
  box-shadow: 0 18px 50px rgba(14,26,31,.08);
}
body.subpage--editorial .section--ink .card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
}
body.subpage--editorial .card__kicker {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 700;
}
body.subpage--editorial .section--ink .card__kicker { color: var(--teal-bright); }
body.subpage--editorial .card__title {
  font-size: 24px;
  line-height: 1.1;
  margin-top: 14px;
  color: var(--ink);
}
body.subpage--editorial .card__body {
  margin-top: 12px;
  color: var(--ink-3);
  line-height: 1.6;
}
body.subpage--editorial .band {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bone-2);
}
body.subpage--editorial .statstrip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
body.subpage--editorial .statstrip__item {
  padding: 24px;
  border-right: 1px solid var(--rule);
}
body.subpage--editorial .statstrip__item:last-child { border-right: 0; }
body.subpage--editorial .statstrip__num {
  font-size: clamp(34px,5vw,56px);
  font-weight: 650;
  letter-spacing: -.04em;
  color: var(--ink);
}
body.subpage--editorial .statstrip__num em {
  font-size: .45em;
  font-style: normal;
  color: var(--teal-deep);
}
body.subpage--editorial .statstrip__label {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 6px;
}
body.subpage--editorial .split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px,6vw,72px);
  align-items: start;
}
body.subpage--editorial .process {
  counter-reset: step;
  display: grid;
  gap: 14px;
}
body.subpage--editorial .process li {
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 22px;
}
body.subpage--editorial .process li strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  margin-bottom: 6px;
}
@media (max-width: 860px) {
  body.subpage--editorial .cardgrid,
  body.subpage--editorial .split,
  body.subpage--editorial .statstrip { grid-template-columns: 1fr; }
  body.subpage--editorial .statstrip__item {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  body.subpage--editorial .statstrip__item:last-child { border-bottom: 0; }
}

/* ── BuildingPulse-only: four-answers grid, data layer (heat map +
   load-duration curve), pricing tiers, also-included, final CTA.
   Selectors are unique to this page but kept scoped under
   body.page-building-pulse so a future page can reuse names without
   collision. ── */
body.page-building-pulse .subhero__note {
  margin-top: 22px;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--mute);
}
body.page-building-pulse .subhero__note strong { color: var(--ink); font-weight: 600; }

body.page-building-pulse .fourgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}
body.page-building-pulse .four {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255,255,255,.62);
  border: 1px solid var(--rule);
  border-radius: 26px;
  padding: 28px;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(14,26,31,.08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
body.page-building-pulse .four:hover {
  transform: translateY(-2px);
  border-color: var(--teal-line);
  box-shadow: 0 22px 60px rgba(14,26,31,.12);
}
/* .four__num (decorative 01–04) removed 2026-06-11 — the labels carry
   the structure now. */
body.page-building-pulse .four__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
body.page-building-pulse .four h3 {
  font-size: 23px;
  line-height: 1.1;
  color: var(--ink);
  margin: 4px 0 2px;
  font-weight: 500;
}
body.page-building-pulse .four p {
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
body.page-building-pulse .four__tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-deep);
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--rule);
}

body.page-building-pulse .datawrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
body.page-building-pulse .datacard {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 26px;
  padding: clamp(22px,4vw,34px);
  box-shadow: 0 18px 50px rgba(14,26,31,.08);
}
body.page-building-pulse .datacard__eyebrow {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 700;
}
body.page-building-pulse .datacard h3 {
  font-size: clamp(24px,3.4vw,38px);
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 12px 0 10px;
  font-weight: 500;
}
body.page-building-pulse .datacard h3 .accent { color: var(--teal-deep); }
body.page-building-pulse .datacard__sub {
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 62ch;
  margin-bottom: 22px;
}
body.page-building-pulse .heatmap,
body.page-building-pulse .ldc {
  width: 100%;
  display: block;
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: 16px;
}
body.page-building-pulse .heatmap { height: 240px; }
body.page-building-pulse .ldc { height: 260px; }
body.page-building-pulse .heat-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--mute);
}
body.page-building-pulse .heat-legend .bar {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, #E7E3D8, #5BBFB1, #E0A21A, #A62330);
}
body.page-building-pulse .annot {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--teal-soft);
  border-left: 3px solid var(--teal-line);
  border-radius: 0 12px 12px 0;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
}
body.page-building-pulse .annot strong { color: var(--teal-deep); font-weight: 650; }
body.page-building-pulse .ldc-stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
body.page-building-pulse .ldc-stat {
  padding: 16px 18px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--rule);
  border-radius: 16px;
}
body.page-building-pulse .ldc-stat__num {
  font-size: 26px;
  font-weight: 650;
  letter-spacing: -.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
body.page-building-pulse .ldc-stat__num.amber { color: #B7860B; }
body.page-building-pulse .ldc-stat__num.red { color: #A62330; }
body.page-building-pulse .ldc-stat__lbl {
  font-size: 12px;
  color: var(--mute);
  margin-top: 6px;
  line-height: 1.4;
}
body.page-building-pulse .datacard__foot {
  margin-top: 16px;
  font-size: 13px;
  color: var(--mute);
}

body.page-building-pulse .tiers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
body.page-building-pulse .tier {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.62);
  border: 1px solid var(--rule);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(14,26,31,.08);
}
body.page-building-pulse .tier--feature {
  border-color: var(--teal-line);
  box-shadow: 0 22px 60px rgba(13,138,124,.14);
}
body.page-building-pulse .tier__name {
  font-size: 13px;
  letter-spacing: .04em;
  font-weight: 700;
  color: var(--teal-deep);
}
body.page-building-pulse .tier__name span { color: var(--mute); font-weight: 600; }
body.page-building-pulse .tier h3 {
  font-size: 24px;
  line-height: 1.1;
  color: var(--ink);
  margin: 10px 0 8px;
  font-weight: 500;
}
body.page-building-pulse .tier > p { color: var(--ink-3); line-height: 1.6; }
body.page-building-pulse .tier__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
body.page-building-pulse .tier__list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-3);
  line-height: 1.5;
  font-size: 15px;
}
body.page-building-pulse .tier__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}
body.page-building-pulse .tier__price {
  margin-top: 22px;
  padding: 20px;
  background: var(--teal-soft);
  border: 1px solid var(--teal-line);
  border-radius: 18px;
}
body.page-building-pulse .tier--quote .tier__price {
  background: var(--bone-2);
  border-color: var(--rule);
}
body.page-building-pulse .tier__price-val {
  font-size: 34px;
  font-weight: 650;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
}
body.page-building-pulse .tier__price-val small {
  font-size: 14px;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 0;
}
body.page-building-pulse .tier__price-val.quote { font-size: 22px; }
body.page-building-pulse .tier__price-meta {
  margin-top: 8px;
  font-size: 13px;
  color: var(--mute);
  line-height: 1.5;
}
body.page-building-pulse .tier__price-meta strong { color: var(--ink-3); font-weight: 600; }

body.page-building-pulse .bp-final { text-align: center; }
body.page-building-pulse .bp-final .sec-head {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 26px;
}
body.page-building-pulse .bp-final .hero__ctas {
  justify-content: center;
  margin-top: 0;
}
body.page-building-pulse .also-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 860px) {
  body.page-building-pulse .fourgrid,
  body.page-building-pulse .tiers,
  body.page-building-pulse .ldc-stats,
  body.page-building-pulse .also-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body.page-building-pulse { overflow-x: hidden; }
  body.page-building-pulse .subhero,
  body.page-building-pulse .section,
  body.page-building-pulse footer { overflow: hidden; }
  body.page-building-pulse .subhero__grid,
  body.page-building-pulse .split { min-width: 0; }
  body.page-building-pulse .subhero__inner,
  body.page-building-pulse .sec-head,
  body.page-building-pulse .card,
  body.page-building-pulse .four,
  body.page-building-pulse .datacard,
  body.page-building-pulse .tier { min-width: 0; }
  body.page-building-pulse .subhero__title { font-size: clamp(44px,12.5vw,58px); }
  body.page-building-pulse .subhero__sub,
  body.page-building-pulse .sec-head__sub {
    font-size: 18px;
    max-width: 100%;
  }
  body.page-building-pulse .hero__ctas { align-items: flex-start; }
  body.page-building-pulse .subhero__media {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  body.page-building-pulse .subhero__media-caption {
    gap: 10px;
    font-size: 10px;
    white-space: normal;
  }
  body.page-building-pulse .heatmap,
  body.page-building-pulse .ldc { max-width: 100%; }
}

/* ── Contact page: Google Places autocomplete dropdown styled to
   match the editorial palette. Selectors live in the .pac-*
   namespace owned by Google's Places library; scope to
   body.page-contact-us so they don't leak if Places lands on
   another page later. ── */
body.page-contact-us .pac-container {
  background: var(--paper) !important;
  border: 1px solid var(--rule-strong) !important;
  border-radius: 10px !important;
  margin-top: 4px;
  box-shadow: 0 12px 30px rgba(14,26,31,0.18) !important;
  font-family: var(--f-sans) !important;
}
body.page-contact-us .pac-item {
  background: transparent !important;
  color: var(--ink-3) !important;
  border-top: 1px solid var(--rule) !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
}
body.page-contact-us .pac-item:hover,
body.page-contact-us .pac-item-selected { background: var(--teal-soft) !important; }
body.page-contact-us .pac-item-query { color: var(--ink) !important; font-size: 13px !important; }
body.page-contact-us .pac-matched { color: var(--teal-deep) !important; }


/* ============================================================
   Success-story detail template — ported verbatim from styles.css
   2026-06-09 (migration spec B1 — docs/legacy-pages-styles-alt-
   migration-spec-2026-06-08.md). One CSS port serves all 8
   success-story pages; the team-bio (vcard) pages and the
   BuildingPulse Get wizard also reference the dark-theme tokens
   and .btn-primary / fadeIn below from their inline <style>.

   Notes:
   - The :root tokens below are the styles.css variables these rules
     reference. Namespaces verified disjoint with styles-alt.css's own
     tokens (--teal and --teal-bright exist in both with identical
     values and are NOT re-declared here).
   - Three selectors collide with styles-alt.css components used by
     modern pages (.prose — cortex.html, .timeline — our-story.html,
     .accent — descendant rules sitewide). Those, plus the dark page
     canvas from styles.css's body/body::after, are scoped under
     body.page-dark, which the migrated dark legacy pages opt into.
   ============================================================ */

:root {
  --bg: #000000;
  --border: rgba(255,255,255,0.08);
  --text-primary: #f5f5f7;
  --text-secondary: #a1a1a6;
  --text-tertiary: #8e8e93;
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --glass-bg: rgba(255,255,255,0.06);
  --glass-bg-hover: rgba(255,255,255,0.10);
  --glass-border: rgba(255,255,255,0.14);
  --glass-highlight: rgba(255,255,255,0.22);
  --glass-shadow: rgba(0,0,0,0.50);
  --glass-blur: 24px;
  --glass-saturation: 180%;
  --glass-radius: 22px;
  --radius-control: 8px;
}

/* Dark page canvas — styles.css's body + body::after, opted into via
   <body class="page-dark"> so it can't leak onto the bone-paper pages. */
body.page-dark {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font);
  position: relative;
}
body.page-dark::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 650px at 10% 10%, rgba(13,138,124,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 800px 550px at 85% 35%, rgba(45,212,191,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 700px 550px at 35% 70%, rgba(13,138,124,0.06) 0%, transparent 60%);
  mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
}
/* styles.css had no main{padding-top}: the legacy heroes carry their own
   fixed-nav clearance (.page-hero padding-top 140px, vcard 120px), so
   cancel styles-alt.css's main{padding-top:var(--nav-h)} offset here. */
body.page-dark main { padding-top: 0; }
/* styles.css had no .container either — success-hopkinton-ms.html wraps
   its sections' content in <div class="container"> divs that rendered as
   plain full-width blocks. Neutralize styles-alt's .container inside the
   ported sections only (the shared footer still gets the real one). */
body.page-dark :is(.page-hero, .stats-glass, .content-section, .cta-section) .container {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* UI/UX pass 2026-06-09: success-hopkinton-ms wraps its stats in an extra
   .container inside the flex .stats-glass, which made the four stats stack
   vertically while every other success page shows a horizontal strip.
   Make that inner wrapper a flex row so the page matches its siblings. */
body.page-dark .stats-glass > .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

/* ── De-AI v1: project dossier strip ───────────────────────────────
   Job / Scope / System / Outcome row, used on success-story pages
   and any page that wants a "project-specific, not templated"
   header. Each cell stacks an all-caps label over a value. Mobile
   collapses to 2 columns then 1. */
.dossier-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-control);
  overflow: hidden;
  margin: 18px 0 22px;
}
.dossier-strip > .dossier-cell {
  background: rgba(8,14,18,0.78);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dossier-cell-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.dossier-cell-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
@media (max-width: 760px) {
  .dossier-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .dossier-strip { grid-template-columns: 1fr; }
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  opacity: 0; animation: fadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s forwards;
  will-change: opacity, transform;
}

.page-hero .hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.45;
  font-weight: 400;
  opacity: 0; animation: fadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s forwards;
  will-change: opacity, transform;
}

.page-hero .brand-hero-logo {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 auto 24px;
  opacity: 0; animation: fadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
  will-change: opacity, transform;
}

/* Hero variant — replaces .brand-hero-logo image */
.page-hero .brand-hero-logo.txt-logo {
  height: auto;
  font-size: 52px;
  margin: 0 auto 24px;
  text-align: center;
}

@media (max-width: 720px) {
  .page-hero .brand-hero-logo.txt-logo { font-size: 36px; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate3d(0, 20px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* ===== SECTION SHARED ===== */
.section-divider {
  width: 100%;
  height: 0.5px;
  background: var(--border);
}

.section-header {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-bright);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* ===== LIQUID GLASS CARD ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(var(--glass-saturation));
  -webkit-backdrop-filter: blur(20px) saturate(var(--glass-saturation));
  border: 0.5px solid var(--glass-border);
  border-radius: var(--glass-radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 0.5px 0 0 rgba(255,255,255,0.15),
    0 8px 32px rgba(0,0,0,0.35),
    0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(255,255,255,0.18);
  box-shadow:
    inset 0 0.5px 0 0 rgba(255,255,255,0.22),
    0 12px 40px rgba(0,0,0,0.45),
    0 4px 12px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}

.glass-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}

.glass-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  z-index: 2;
}

.glass-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.glass-card .card-icon {
  font-size: 28px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.glass-card .card-icon-svg {
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
  color: var(--teal-bright);
  opacity: 0.88;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.glass-card .card-icon-svg svg { display: block; }

.glass-card .card-eyebrow {
  font-size: 11px;
  color: var(--teal-bright);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.glass-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  color: var(--teal-bright);
  margin-top: 12px;
  transition: gap 0.2s;
  position: relative;
  z-index: 2;
}

.glass-card .card-link:hover { gap: 6px; }

/* ===== BUTTONS (Liquid Glass) ===== */
.btn-primary {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  background: rgba(13,138,124,0.8);
  color: white;
  padding: 12px 28px;
  border-radius: 980px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 0.5px solid rgba(45,212,191,0.3);
  cursor: pointer;
  display: inline-block;
  position: relative;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.2),
    0 4px 16px rgba(13,138,124,0.3),
    0 1px 3px rgba(0,0,0,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-primary:hover {
  background: rgba(16,160,143,0.9);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.25),
    0 6px 24px rgba(13,138,124,0.4),
    0 2px 6px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

/* ===== CTA SECTION (Liquid Glass panel) ===== */
.cta-section {
  padding: 0 24px 120px;
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 48px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
  border: 0.5px solid var(--glass-border);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 0.5px 0 0 var(--glass-highlight),
    0 12px 48px var(--glass-shadow),
    0 4px 12px rgba(0,0,0,0.3);
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45,212,191,0.3), transparent);
  pointer-events: none;
}

.cta-inner h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.cta-inner p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.cta-inner .btn-primary { position: relative; z-index: 1; }

/* ===== CONTENT SECTIONS ===== */
.content-section {
  padding: 100px 24px;
  max-width: 1024px;
  margin: 0 auto;
}

.content-section.centered { text-align: center; }

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.content-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.content-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ===== STATS BAR (Liquid Glass) ===== */
.stats-glass {
  display: flex;
  gap: 0;
  border-radius: var(--glass-radius);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
  border: 0.5px solid var(--glass-border);
  box-shadow:
    inset 0 0.5px 0 0 var(--glass-highlight),
    0 8px 32px var(--glass-shadow);
  overflow: hidden;
  position: relative;
  padding: 28px 0;
  max-width: 720px;
  margin: 0 auto;
}

.stats-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.stats-glass .stat {
  text-align: center;
  padding: 0 36px;
  position: relative;
  z-index: 2;
  flex: 1;
}

.stats-glass .stat + .stat {
  border-left: 0.5px solid rgba(255,255,255,0.08);
}

.stat-num {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 400;
}

/* .accent / .prose / .timeline collide with styles-alt.css components —
   scoped to the dark legacy pages (see block comment above). */
body.page-dark .accent { color: var(--teal-bright); }

/* ===== PROSE CONTENT ===== */
body.page-dark .prose {
  max-width: 680px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}
body.page-dark .prose strong { color: var(--text-primary); font-weight: 600; }
body.page-dark .prose p + p { margin-top: 16px; }
body.page-dark .prose h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
}

/* ===== TIMELINE ===== */
body.page-dark .timeline {
  max-width: 680px;
  margin: 48px auto 0;
  position: relative;
  padding-left: 32px;
}

body.page-dark .timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.5px;
  background: rgba(255,255,255,0.08);
}

.timeline-item {
  padding-bottom: 40px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(13,138,124,0.4);
}

.timeline-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-bright);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== NUMBERED STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.step-card { padding: 32px; text-align: center; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
  color: var(--teal-bright);
  background: rgba(45,212,191,0.10);
  border: 0.5px solid rgba(45,212,191,0.35);
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 0.5px 0 0 rgba(255,255,255,0.12);
}

.step-card h3 { position: relative; z-index: 2; margin-bottom: 10px; }
.step-card p { position: relative; z-index: 2; }

/* ===== CTA SUBTITLE ===== */
.cta-inner .cta-sub {
  max-width: 560px;
  margin: 14px auto 24px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.55;
  text-align: center;
}

/* ===== SUCCESS STORY PROPERTY HERO ===== */
.story-hero-image {
  max-width: 1100px;
  margin: 8px auto 0;
  padding: 0 24px;
}
.story-hero-stage {
  position: relative;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 520px 320px at 20% 20%, rgba(45,212,191,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 480px 280px at 82% 90%, rgba(13,138,124,0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  overflow: hidden;
  padding: 28px;
  box-shadow: 0 12px 44px rgba(0,0,0,0.28);
}
.story-hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 40%);
  pointer-events: none;
}
.story-hero-stage svg.property-iso {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  position: relative;
  z-index: 1;
}
.story-hero-stage--photo {
  padding: 0;
  aspect-ratio: 16 / 7;
  background: #0e1a1f;
}
.story-hero-stage--photo::after {
  background:
    radial-gradient(60% 80% at 18% 18%, rgba(45,212,191,0.10), transparent 58%),
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.26));
}
.story-hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.story-hero-stage svg.property-iso .prop-label {
  font-family: var(--font);
  font-size: 11px;
  fill: rgba(255,255,255,0.72);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.story-hero-stage svg.property-iso .prop-chip-title {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  fill: var(--text-primary);
}
.story-hero-stage svg.property-iso .prop-chip-sub {
  font-family: var(--font);
  font-size: 11px;
  fill: rgba(255,255,255,0.65);
}
.story-hero-stage svg.property-iso .prop-stat-value {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  fill: var(--teal-bright);
  letter-spacing: -0.02em;
}
.story-hero-stage svg.property-iso .prop-stat-label {
  font-family: var(--font);
  font-size: 10px;
  fill: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.story-hero-caption {
  margin: 12px 0 0;
  text-align: center;
  font-size: 11.5px;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) {
  .story-hero-stage { padding: 14px; }
  .story-hero-stage--photo { padding: 0; aspect-ratio: 16 / 10; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.reveal.visible,
.reveal.active { opacity: 1; transform: translate3d(0, 0, 0); }

/* ===== RESPONSIVE (success-template subset of styles.css's 768px block) ===== */
@media (max-width: 768px) {
  .page-hero { padding: 120px 24px 60px; }
  .page-hero h1 { font-size: 36px; }
  .page-hero .brand-hero-logo { height: 40px; }
  .content-section { padding: 60px 24px; }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid.cols-3 { grid-template-columns: 1fr; }
  .content-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-glass { flex-wrap: wrap; padding: 20px 0; }
  .stats-glass .stat { padding: 12px 24px; flex: none; width: 50%; }
  .stats-glass .stat + .stat { border-left: none; }
  .cta-section { padding: 0 24px 80px; }
  .cta-inner { padding: 40px 28px; }
}

/* ============================================================
   SUCCESS-STORY DETAIL PAGES — light editorial (2026-06-11)
   The eight success-*.html pages were converted from the legacy
   page-dark glass design to the bone-paper editorial system so
   they match the listing (/success-stories/) and the rest of the
   public site. The canonical subpage components (subhero,
   statstrip, sec-head, cardgrid, steps, timeline, band, cta) do
   the heavy lifting; the classes below cover only what the
   stories need beyond them.
   ============================================================ */
.story-back {
  display: flex; width: max-content; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute); font-weight: 600;
  margin-bottom: clamp(18px, 2.5vw, 26px);
  transition: color .15s ease;
}
.story-back:hover { color: var(--teal-deep); }
.story-back svg { width: 13px; height: 13px; flex-shrink: 0; transition: transform .15s ease; }
.story-back:hover svg { transform: translateX(-3px); }

/* Full-width photo: reuses .subhero__media's frame + caption pill. */
.story-media { margin-top: clamp(36px, 5vw, 56px); }
.story-media img { max-height: 480px; }

/* Three-stat variant (Granite, L.L. Bean). Base .statstrip handles
   the ≤920px two-column collapse. */
@media (min-width: 921px) {
  .statstrip--3 { grid-template-columns: repeat(3, 1fr); }
}

/* Measure-width body copy for narrative sections. */
.story-body { max-width: 70ch; }
.story-body > * + * { margin-top: 14px; }

ul.prose-list {
  list-style: none;
  margin: 18px 0 0;
  display: grid; gap: 10px;
}
ul.prose-list li {
  position: relative;
  padding-left: 22px;
  font-size: 16px; line-height: 1.6; color: var(--ink-3);
}
ul.prose-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.66em;
  width: 11px; height: 1.5px;
  background: var(--teal);
}
ul.prose-list strong { color: var(--ink); font-weight: 600; }

/* Standalone highlight card inside a narrative section. */
.story-card { max-width: 760px; margin-top: 28px; }

/* Editorial pull-quote with attribution. */
.story-quote {
  max-width: 760px;
  margin-top: clamp(40px, 6vw, 56px);
  padding-left: clamp(22px, 3vw, 34px);
  border-left: 2px solid var(--teal-line);
}
.story-quote p {
  font-family: var(--f-serif);
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink-2);
}
.story-quote footer {
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute); font-weight: 600;
}

/* Project dossier strip (de-AI v1), light edition — the four cells a
   facilities owner reads first: which building, what we did, what
   runs the controls, what changed. */
.story-dossier {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: clamp(36px, 5vw, 56px) 0 0;
}
.story-dossier > div {
  padding: 20px 22px 22px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 8px;
}
.story-dossier > div:last-child { border-right: 0; }
.story-dossier dt {
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-deep); font-weight: 600;
}
.story-dossier dd { margin: 0; font-size: 14px; line-height: 1.5; color: var(--ink-2); font-weight: 500; }
@media (max-width: 860px) {
  .story-dossier { grid-template-columns: 1fr 1fr; }
  .story-dossier > div:nth-child(2n) { border-right: 0; }
  .story-dossier > div:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .story-dossier > div { padding: 16px 18px 18px; }
}
@media (max-width: 480px) {
  .story-dossier { grid-template-columns: 1fr; }
  .story-dossier > div { border-right: 0 !important; border-bottom: 1px solid var(--rule); }
  .story-dossier > div:last-child { border-bottom: 0; }
}

/* Outcome line at the foot of a .step (Crown Colony measures). */
.step__result {
  display: block;
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-deep); font-weight: 600;
}

/* The story CTAs run longer than the listing's "Have a project in
   mind?" — let them breathe. */
.cta__title--wide { max-width: 26ch; }
