
    :root {
      --ink: #201e1d;
      --ink-2: #2a2827;
      --paper: #f3f2f0;
      --paper-2: #e8e6e2;
      --line: #c9c5c0;
      --slate: #2e4057;
      --slate-2: #5b7590;
      --slate-3: #8fa3b8;
      --signal: #ec3013;
      --white: #faf9f7;
      --max: 1320px;
      --pad: clamp(22px, 5vw, 72px);
      --bp-display-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
      --bp-reading-font: Charter, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: var(--bp-display-font);
      font-size: 16px;
      line-height: 1.55;
      text-rendering: optimizeLegibility;
    }

    a { color: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    button { font: inherit; }
    img { display: block; width: 100%; }
    ::selection { background: var(--signal); color: var(--white); }

    .shell {
      width: min(100%, var(--max));
      margin-inline: auto;
      padding-inline: var(--pad);
    }

    .eyebrow {
      margin: 0;
      color: var(--slate-2);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .eyebrow.light { color: var(--slate-3); }

    .nav {
      position: sticky;
      z-index: 30;
      top: 0;
      color: var(--white);
      background: rgba(32, 30, 29, .97);
      border-bottom: 1px solid #3b3836;
      backdrop-filter: blur(12px);
    }

    .nav-inner {
      display: flex;
      min-height: 70px;
      align-items: center;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      margin-right: auto;
      color: var(--white);
      font-size: 17px;
      font-weight: 800;
      letter-spacing: -.015em;
      text-decoration: none;
    }

    .mark {
      display: grid;
      width: 18px;
      height: 18px;
      grid-template-columns: repeat(3, 1fr);
      align-items: end;
      gap: 2px;
    }

    .mark i { display: block; background: var(--slate); }
    .mark i:nth-child(1) { height: 38%; }
    .mark i:nth-child(2) { height: 68%; background: var(--slate-2); }
    .mark i:nth-child(3) { height: 100%; background: var(--signal); }

    .nav-links {
      display: flex;
      align-self: stretch;
      align-items: stretch;
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      padding: 4px 13px 0;
      border-top: 4px solid transparent;
      color: #d8d4d0;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .11em;
      text-decoration: none;
      text-transform: uppercase;
      transition: color .18s ease, background .18s ease, border-color .18s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--white);
      background: #2a2827;
      border-color: var(--slate-2);
      outline: none;
    }

    .nav-cta {
      display: inline-flex;
      min-height: 42px;
      align-items: center;
      justify-content: center;
      padding: 0 18px;
      color: var(--white);
      background: var(--slate);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .1em;
      text-decoration: none;
      text-transform: uppercase;
      transition: background .18s ease, transform .18s ease;
    }

    .nav-cta:hover,
    .nav-cta:focus-visible { background: #3d5673; transform: translateY(-1px); }

    .hero {
      overflow: hidden;
      color: var(--white);
      background:
        linear-gradient(115deg, rgba(32,30,29,.98) 0 52%, rgba(32,30,29,.75) 75%, rgba(32,30,29,.92) 100%),
        url("../images/boardpath-working-session.png") center right / cover no-repeat;
    }

    .hero-inner {
      display: grid;
      min-height: min(790px, calc(100vh - 70px));
      grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
      align-items: end;
      gap: clamp(36px, 6vw, 96px);
      padding-block: clamp(84px, 11vw, 150px) clamp(48px, 6vw, 78px);
    }

    .hero-copy { max-width: 810px; }

    h1, h2, h3, p { text-wrap: pretty; }

    h1 {
      max-width: 13ch;
      margin: 34px 0 34px;
      font-size: clamp(48px, 6.6vw, 92px);
      font-weight: 800;
      letter-spacing: -.052em;
      line-height: .96;
    }

    h1 span { color: var(--slate-3); }

    .hero-dek {
      max-width: 58ch;
      margin: 0;
      color: #d1cdca;
      font-family: var(--bp-reading-font);
      font-size: clamp(18px, 1.65vw, 22px);
      line-height: 1.6;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 38px;
    }

    .button {
      display: inline-flex;
      min-height: 52px;
      align-items: center;
      justify-content: center;
      padding: 0 22px;
      border: 1px solid var(--signal);
      color: var(--white);
      background: var(--signal);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .11em;
      text-decoration: none;
      text-transform: uppercase;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }

    .button:hover,
    .button:focus-visible {
      background: #d8290e;
      border-color: #d8290e;
      transform: translateY(-2px);
      outline: none;
    }

    .button.secondary {
      background: transparent;
      border-color: var(--slate-2);
    }

    .button.secondary:hover,
    .button.secondary:focus-visible { background: var(--slate); border-color: var(--slate); }

    .field-note {
      align-self: end;
      border-top: 4px solid var(--signal);
      background: rgba(46, 64, 87, .93);
      padding: 26px;
    }

    .field-note .note-label {
      margin: 0 0 52px;
      color: #b7c3ce;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .field-note blockquote {
      margin: 0;
      font-family: var(--bp-reading-font);
      font-size: clamp(19px, 2vw, 26px);
      line-height: 1.35;
    }

    .field-note small {
      display: block;
      margin-top: 22px;
      color: #c5cdd4;
      font-size: 11px;
      letter-spacing: .05em;
    }

    .proof-bar { border-bottom: 1px solid var(--line); }

    .proof-inner {
      display: grid;
      grid-template-columns: 1.1fr repeat(3, 1fr);
      min-height: 128px;
      align-items: stretch;
    }

    .proof-intro,
    .proof-item {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 26px clamp(18px, 2.4vw, 34px);
      border-right: 1px solid var(--line);
    }

    .proof-intro { padding-left: 0; }
    .proof-item:last-child { border-right: 0; }
    .proof-item strong { font-size: 14px; line-height: 1.3; }
    .proof-item span { margin-top: 6px; color: #67615e; font-family: var(--bp-reading-font); font-size: 14px; }

    .section { padding-block: clamp(82px, 9vw, 132px); }

    .section-head {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: clamp(42px, 8vw, 120px);
      align-items: start;
    }

    .section h2 {
      max-width: 17ch;
      margin: 22px 0 0;
      font-size: clamp(32px, 4.1vw, 56px);
      letter-spacing: -.038em;
      line-height: 1.04;
    }

    .section h2 span { color: var(--slate); }

    .reading {
      margin: 2px 0 0;
      color: #494441;
      font-family: var(--bp-reading-font);
      font-size: clamp(19px, 1.8vw, 23px);
      line-height: 1.68;
    }

    .reading p { margin: 0 0 22px; }
    .reading p:last-child { margin-bottom: 0; }

    .case-patterns {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: clamp(56px, 7vw, 94px);
      background: var(--ink);
      border: 2px solid var(--ink);
    }

    .case {
      min-height: 310px;
      padding: clamp(25px, 3vw, 40px);
      background: var(--paper);
    }

    .case-number {
      display: inline-grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border-top: 5px solid var(--signal);
      color: var(--white);
      background: var(--slate);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .08em;
    }

    .case h3 {
      margin: 44px 0 13px;
      font-size: 20px;
      letter-spacing: -.02em;
      line-height: 1.16;
    }

    .case p {
      margin: 0;
      color: #5a5552;
      font-family: var(--bp-reading-font);
      font-size: 16px;
      line-height: 1.6;
    }

    .system {
      color: var(--white);
      background: var(--ink);
    }

    .system-top {
      display: grid;
      grid-template-columns: 1fr .72fr;
      gap: clamp(42px, 8vw, 112px);
      align-items: end;
      margin-bottom: 60px;
    }

    .system h2 { max-width: 19ch; }
    .system h2 span { color: var(--slate-3); }

    .system-intro {
      margin: 0;
      color: #c8c4c1;
      font-family: var(--bp-reading-font);
      font-size: 18px;
      line-height: 1.65;
    }

    .system-grid {
      display: grid;
      grid-template-columns: minmax(260px, .7fr) 1.3fr;
      gap: 2px;
      background: #3b3836;
      border: 2px solid #3b3836;
    }

    .stage-list { display: grid; background: var(--ink-2); }

    .stage {
      display: grid;
      grid-template-columns: 47px 1fr auto;
      align-items: center;
      gap: 16px;
      width: 100%;
      min-height: 72px;
      padding: 10px 20px;
      border: 0;
      border-bottom: 1px solid #46413e;
      color: #bdb8b4;
      background: transparent;
      cursor: pointer;
      text-align: left;
      transition: color .18s ease, background .18s ease;
    }

    .stage:last-child { border-bottom: 0; }
    .stage:hover { color: var(--white); background: #302e2c; }
    .stage:focus-visible { outline: 2px solid var(--signal); outline-offset: -3px; }

    .stage-number {
      color: var(--slate-3);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .1em;
    }

    .stage-name { font-size: 14px; font-weight: 700; }
    .stage-arrow { color: var(--slate-2); }

    .stage[aria-selected="true"] {
      color: var(--white);
      background: var(--slate);
    }

    .stage[aria-selected="true"] .stage-number,
    .stage[aria-selected="true"] .stage-arrow { color: var(--white); }

    .system-panel {
      position: relative;
      min-height: 430px;
      padding: clamp(34px, 5vw, 72px);
      background: var(--slate);
      overflow: hidden;
    }

    .system-panel::after {
      position: absolute;
      right: -50px;
      bottom: -70px;
      width: 250px;
      height: 250px;
      border: 2px solid rgba(143, 163, 184, .38);
      content: "";
      transform: rotate(45deg);
    }

    .panel-kicker {
      margin: 0 0 70px;
      color: #b9c6d1;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .panel-title {
      position: relative;
      z-index: 1;
      max-width: 17ch;
      margin: 0 0 22px;
      font-size: clamp(28px, 3.4vw, 45px);
      letter-spacing: -.035em;
      line-height: 1.04;
    }

    .panel-body {
      position: relative;
      z-index: 1;
      max-width: 47ch;
      margin: 0;
      color: #d4dbe1;
      font-family: var(--bp-reading-font);
      font-size: 18px;
      line-height: 1.65;
    }

    .return-path {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 28px;
      color: var(--slate-3);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .return-path::before {
      width: 70px;
      height: 12px;
      border-bottom: 2px solid var(--slate-2);
      border-left: 2px solid var(--slate-2);
      content: "";
    }

    .senior-work { background: var(--paper-2); }

    .senior-grid {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      align-items: stretch;
    }

    .session-image {
      position: relative;
      min-height: 540px;
      background: var(--ink);
      overflow: hidden;
    }

    .session-image img {
      height: 100%;
      object-fit: cover;
      filter: grayscale(1) contrast(1.04);
    }

    .session-image::after {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(46,64,87,.13), transparent 48%);
      content: "";
      pointer-events: none;
    }

    .image-caption {
      position: absolute;
      z-index: 2;
      right: 0;
      bottom: 0;
      max-width: 270px;
      margin: 0;
      padding: 18px 22px;
      border-top: 4px solid var(--signal);
      color: #cfd5da;
      background: rgba(32,30,29,.94);
      font-size: 10px;
      letter-spacing: .08em;
      line-height: 1.5;
      text-transform: uppercase;
    }

    .senior-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(52px, 7vw, 98px);
      background: var(--white);
    }

    .senior-copy h2 {
      max-width: 14ch;
      margin: 25px 0 26px;
      font-size: clamp(34px, 4vw, 54px);
      letter-spacing: -.04em;
      line-height: 1.04;
    }

    .senior-copy h2 span { color: var(--slate); }

    .senior-copy p {
      margin: 0;
      color: #4f4946;
      font-family: var(--bp-reading-font);
      font-size: 19px;
      line-height: 1.66;
    }

    .plain-link {
      align-self: flex-start;
      margin-top: 34px;
      padding-bottom: 4px;
      border-bottom: 2px solid var(--signal);
      color: var(--signal);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .1em;
      text-decoration: none;
      text-transform: uppercase;
    }

    .outcomes-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: clamp(44px, 8vw, 116px);
      align-items: start;
    }

    .outcome-list { border-top: 2px solid var(--ink); }

    .outcome {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 24px;
      padding: 25px 0;
      border-bottom: 1px solid var(--line);
    }

    .outcome strong {
      color: var(--slate);
      font-size: 11px;
      letter-spacing: .08em;
    }

    .outcome p {
      margin: 0;
      font-family: var(--bp-reading-font);
      font-size: 18px;
      line-height: 1.55;
    }

    .cta {
      color: var(--white);
      background: var(--slate);
    }

    .cta-inner {
      display: grid;
      grid-template-columns: 1.25fr .75fr;
      gap: clamp(40px, 8vw, 110px);
      align-items: end;
      padding-block: clamp(74px, 9vw, 120px);
    }

    .cta h2 {
      max-width: 14ch;
      margin: 24px 0 0;
      font-size: clamp(40px, 5vw, 68px);
      letter-spacing: -.045em;
      line-height: .98;
    }

    .cta h2 span { color: #bdcbd6; }
    .cta-copy p { margin: 0 0 28px; color: #d0d8de; font-family: var(--bp-reading-font); font-size: 18px; }

    footer { color: #bdb8b4; background: var(--ink); }

    .footer-inner {
      display: flex;
      min-height: 130px;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      font-size: 11px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .footer-links { display: flex; gap: 24px; }
    .footer-links a { text-decoration: none; }
    .footer-links a:hover { color: var(--white); }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .55s ease, transform .55s ease;
    }

    .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 980px) {
      .nav-links { display: none; }
      .hero-inner,
      .section-head,
      .system-top,
      .outcomes-grid,
      .cta-inner { grid-template-columns: 1fr; }
      .hero-inner { min-height: auto; }
      .field-note { max-width: 520px; }
      .proof-inner { grid-template-columns: 1fr 1fr; }
      .proof-intro, .proof-item { border-bottom: 1px solid var(--line); }
      .case-patterns { grid-template-columns: 1fr; }
      .case { min-height: auto; }
      .system-grid { grid-template-columns: 1fr; }
      .senior-grid { grid-template-columns: 1fr; }
      .session-image { min-height: 450px; }
      .senior-copy { padding-inline: var(--pad); }
    }

    @media (max-width: 620px) {
      .nav-inner { min-height: 64px; gap: 12px; }
      .nav-cta { padding-inline: 12px; font-size: 9px; }
      .hero { background-position: 62% center; }
      .hero-inner { padding-top: 76px; }
      h1 { font-size: clamp(43px, 13vw, 62px); }
      .proof-inner { grid-template-columns: 1fr; }
      .proof-intro, .proof-item { padding-inline: 0; border-right: 0; }
      .system-panel { min-height: 410px; }
      .stage { grid-template-columns: 40px 1fr auto; padding-inline: 14px; }
      .session-image { min-height: 360px; }
      .footer-inner { align-items: flex-start; flex-direction: column; justify-content: center; }
      .footer-links { flex-wrap: wrap; gap: 14px 20px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
      .reveal { opacity: 1; transform: none; }
    }
  

    .nav-links a[aria-current="page"] { color: var(--white); border-color: var(--signal); }
    .mobile-menu { display: none; position: relative; }
    .mobile-menu summary {
      display: grid; width: 42px; height: 42px; place-items: center;
      border: 1px solid #4b4744; color: var(--white); cursor: pointer;
      font-size: 10px; font-weight: 800; letter-spacing: .1em; list-style: none;
    }
    .mobile-menu summary::-webkit-details-marker { display: none; }
    .mobile-menu nav {
      position: absolute; top: 50px; right: 0; width: min(82vw, 320px);
      padding: 12px; border-top: 4px solid var(--signal); background: var(--ink-2);
      box-shadow: 0 20px 50px rgba(0,0,0,.32);
    }
    .mobile-menu nav a {
      display: block; padding: 14px; border-bottom: 1px solid #46413e;
      color: var(--white); font-size: 11px; font-weight: 800;
      letter-spacing: .1em; text-decoration: none; text-transform: uppercase;
    }
    .mobile-menu nav a:last-child { border-bottom: 0; }

    .subhero { color: var(--white); background: var(--ink); }
    .subhero-inner {
      display: grid; min-height: 590px; grid-template-columns: 1.15fr .85fr;
      gap: clamp(46px, 8vw, 118px); align-items: end;
      padding-block: clamp(84px, 10vw, 144px) clamp(54px, 7vw, 88px);
    }
    .subhero h1 {
      max-width: 14ch; margin: 32px 0 30px;
      font-size: clamp(48px, 6vw, 82px); font-weight: 800;
      letter-spacing: -.05em; line-height: .98;
    }
    .subhero h1 span { color: var(--slate-3); }
    .subhero-copy { max-width: 58ch; color: #d1cdca; font-family: var(--bp-reading-font); font-size: 20px; line-height: 1.65; }
    .subhero-aside {
      padding: 28px; border-top: 5px solid var(--signal); background: var(--slate);
    }
    .subhero-aside strong {
      display: block; margin-bottom: 58px; color: #bdc9d3;
      font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
    }
    .subhero-aside p { margin: 0; font-family: var(--bp-reading-font); font-size: 21px; line-height: 1.45; }

    .route-grid, .client-grid, .article-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
      margin-top: 56px; border: 2px solid var(--ink); background: var(--ink);
    }
    .route, .client-card, .article-card {
      padding: clamp(25px, 3vw, 40px); background: var(--paper); text-decoration: none;
    }
    .route { min-height: 275px; }
    .route strong, .card-meta {
      color: var(--slate); font-size: 10px; font-weight: 800;
      letter-spacing: .11em; text-transform: uppercase;
    }
    .route h3, .client-card h3, .article-card h3 {
      margin: 48px 0 14px; font-size: 21px; letter-spacing: -.025em; line-height: 1.15;
    }
    .route p, .client-card p, .article-card p {
      margin: 0; color: #57514e; font-family: var(--bp-reading-font); font-size: 16px; line-height: 1.6;
    }
    .route:hover, .article-card:hover { background: var(--paper-2); }

    .service-list { display: grid; gap: 18px; margin-top: 56px; }
    .service-card {
      display: grid; grid-template-columns: 95px 1.1fr .9fr auto; gap: 30px;
      align-items: start; padding: clamp(26px, 3vw, 42px);
      color: inherit; background: var(--paper-2); border-left: 6px solid var(--slate);
      text-decoration: none; transition: transform .18s ease, border-color .18s ease;
    }
    .service-card:hover { transform: translateX(4px); border-color: var(--signal); }
    .service-card .service-num { color: var(--slate); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
    .service-card h3 { margin: 0 0 12px; font-size: 24px; letter-spacing: -.028em; line-height: 1.12; }
    .service-card p { margin: 0; color: #595451; font-family: var(--bp-reading-font); font-size: 16px; line-height: 1.55; }
    .service-card .service-type { color: var(--slate); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
    .service-card .service-arrow { color: var(--signal); font-size: 22px; }

    .detail-meta {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
      border: 1px solid #484441; background: #484441;
    }
    .detail-meta div { min-height: 108px; padding: 20px; background: #292725; }
    .detail-meta dt { color: #9faebc; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
    .detail-meta dd { margin: 8px 0 0; font-family: var(--bp-reading-font); font-size: 15px; line-height: 1.45; }

    .bullet-list { margin: 46px 0 0; padding: 0; border-top: 2px solid var(--ink); list-style: none; }
    .bullet-list li {
      position: relative; padding: 20px 0 20px 30px; border-bottom: 1px solid var(--line);
      font-family: var(--bp-reading-font); font-size: 17px; line-height: 1.55;
    }
    .bullet-list li::before { position: absolute; left: 0; color: var(--signal); content: "—"; font-family: var(--bp-display-font); font-weight: 800; }

    .process-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
      margin-top: 54px; background: #46413e; border: 2px solid #46413e;
    }
    .process-step { min-height: 340px; padding: clamp(26px, 3vw, 42px); color: var(--white); background: var(--ink-2); }
    .process-step:nth-child(2) { background: var(--slate); }
    .process-step strong { color: var(--slate-3); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
    .process-step h3 { margin: 76px 0 17px; font-size: 26px; letter-spacing: -.03em; line-height: 1.08; }
    .process-step p { margin: 0; color: #cbc6c3; font-family: var(--bp-reading-font); font-size: 16px; line-height: 1.6; }

    .client-grid { grid-template-columns: repeat(2, 1fr); }
    .client-card { min-height: 340px; }
    .client-card:nth-child(3n) { color: var(--white); background: var(--slate); }
    .client-card:nth-child(3n) p, .client-card:nth-child(3n) .card-meta { color: #d2dbe2; }

    .portrait-block {
      display: grid; min-height: 560px; place-items: end start; padding: clamp(32px, 5vw, 70px);
      color: var(--white); background:
        linear-gradient(110deg, rgba(32,30,29,.2), rgba(32,30,29,.78)),
        url("../images/boardpath-working-session.png") center / cover no-repeat;
    }
    .portrait-block p {
      max-width: 32ch; margin: 0; padding: 22px; border-top: 4px solid var(--signal);
      background: rgba(32,30,29,.92); font-family: var(--bp-reading-font); font-size: 18px;
    }

    .topic-filter { display: flex; flex-wrap: wrap; gap: 9px; margin: 34px 0 48px; }
    .topic-filter button {
      padding: 11px 15px; border: 1px solid var(--line); color: var(--ink);
      background: transparent; cursor: pointer; font-size: 10px; font-weight: 800;
      letter-spacing: .1em; text-transform: uppercase;
    }
    .topic-filter button[aria-pressed="true"], .topic-filter button:hover { color: var(--white); background: var(--slate); border-color: var(--slate); }
    .article-grid { margin-top: 0; }
    .article-card { display: flex; min-height: 330px; flex-direction: column; }
    .article-card h3 { margin-top: 45px; }
    .article-card .article-foot {
      display: flex; justify-content: space-between; gap: 20px; margin-top: auto;
      padding-top: 28px; color: #69635f; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    }
    .article-card[hidden] { display: none; }

    .article-hero { color: var(--white); background: var(--ink); }
    .article-hero-inner { max-width: 980px; padding-block: clamp(88px, 11vw, 150px) clamp(62px, 8vw, 102px); }
    .article-hero h1 {
      max-width: 15ch; margin: 34px 0 30px; font-size: clamp(47px, 6.3vw, 82px);
      font-weight: 800; letter-spacing: -.05em; line-height: .98;
    }
    .article-standfirst { max-width: 56ch; color: #cfcac7; font-family: var(--bp-reading-font); font-size: 22px; line-height: 1.58; }
    .article-byline { margin-top: 34px; color: var(--slate-3); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
    .prose { max-width: 760px; margin-inline: auto; }
    .prose p { margin: 0 0 28px; font-family: var(--bp-reading-font); font-size: 20px; line-height: 1.78; }
    .prose h2 { max-width: none; margin: 68px 0 24px; font-size: 34px; }
    .prose blockquote {
      margin: 62px -9vw; padding: 38px 9vw; border-top: 4px solid var(--signal);
      color: var(--white); background: var(--slate); font-family: var(--bp-reading-font);
      font-size: clamp(25px, 3vw, 37px); line-height: 1.35;
    }
    .one-test { margin-top: 64px; padding: 34px; border: 2px solid var(--ink); }
    .one-test strong { display: block; margin-bottom: 18px; color: var(--slate); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
    .one-test p { margin: 0; }

    .form-shell {
      display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(46px, 8vw, 112px); align-items: start;
    }
    .form-panel { padding: clamp(30px, 5vw, 64px); color: var(--white); background: var(--slate); }
    .form-panel h2 { max-width: 14ch; margin: 22px 0 26px; }
    .form-panel p { color: #d7dfe5; font-family: var(--bp-reading-font); font-size: 17px; }
    .contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 18px; }
    .field { display: grid; gap: 8px; }
    .field.full { grid-column: 1 / -1; }
    .field label { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
    .field input, .field select, .field textarea {
      width: 100%; min-height: 50px; padding: 13px; border: 1px solid var(--line);
      border-radius: 0; color: var(--ink); background: var(--white); font: inherit;
    }
    .field textarea { min-height: 160px; resize: vertical; }
    .field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--signal); outline-offset: 2px; }
    .form-note { grid-column: 1 / -1; color: #655f5b; font-family: var(--bp-reading-font); font-size: 14px; }

    .legal { max-width: 850px; }
    .legal h2 { max-width: none; margin-top: 56px; font-size: 28px; }
    .legal p, .legal li { font-family: var(--bp-reading-font); font-size: 18px; line-height: 1.7; }

    @media (max-width: 980px) {
      .mobile-menu { display: block; }
      .subhero-inner, .form-shell { grid-template-columns: 1fr; }
      .route-grid, .article-grid { grid-template-columns: 1fr 1fr; }
      .service-card { grid-template-columns: 70px 1fr auto; }
      .service-card .service-type { grid-column: 2; }
      .process-grid { grid-template-columns: 1fr; }
      .process-step { min-height: auto; }
    }
    @media (max-width: 620px) {
      .nav-cta { display: none; }
      .route-grid, .client-grid, .article-grid, .detail-meta { grid-template-columns: 1fr; }
      .service-card { grid-template-columns: 45px 1fr; }
      .service-card .service-arrow { grid-column: 2; }
      .contact-form { grid-template-columns: 1fr; }
      .field.full { grid-column: auto; }
      .prose blockquote { margin-inline: 0; padding-inline: 28px; }
    }


    .engagement-hero {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background: var(--ink);
    }

    .engagement-hero::after {
      position: absolute;
      right: -9vw;
      bottom: -26vw;
      width: 56vw;
      height: 56vw;
      border: 2px solid rgba(143,163,184,.22);
      content: "";
      transform: rotate(45deg);
    }

    .engagement-hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      min-height: 720px;
      grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
      gap: clamp(50px, 8vw, 120px);
      align-items: end;
      padding-block: clamp(90px, 11vw, 154px) clamp(58px, 7vw, 92px);
    }

    .engagement-hero h1 {
      max-width: 13ch;
      margin-bottom: 30px;
      font-size: clamp(50px, 6.1vw, 84px);
    }

    .engagement-hero .hero-dek { max-width: 56ch; }

    .engagement-card {
      border-top: 5px solid var(--signal);
      padding: 30px;
      background: var(--slate);
    }

    .engagement-card .number {
      margin: 0 0 80px;
      color: #b9c6d1;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .12em;
    }

    .engagement-card dl { margin: 0; }
    .engagement-card div { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.22); }
    .engagement-card dt { margin-bottom: 6px; color: #b9c6d1; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
    .engagement-card dd { margin: 0; font-family: var(--bp-reading-font); font-size: 17px; }

    .cost-section { background: var(--paper-2); }

    .cost-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: clamp(50px, 8vw, 118px);
      align-items: start;
    }

    .cost-grid h2 { max-width: 15ch; }
    .cost-points { border-top: 2px solid var(--ink); }

    .cost-point {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 24px;
      padding: 24px 0;
      border-bottom: 1px solid var(--line);
    }

    .cost-point strong { color: var(--signal); font-size: 11px; letter-spacing: .09em; }
    .cost-point p { margin: 0; font-family: var(--bp-reading-font); font-size: 18px; line-height: 1.58; }

    .change-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 58px;
      background: var(--ink);
      border: 2px solid var(--ink);
    }

    .change {
      min-height: 300px;
      padding: clamp(24px, 3vw, 38px);
      background: var(--paper);
    }

    .change:nth-child(2),
    .change:nth-child(5) { background: var(--paper-2); }
    .change strong { color: var(--slate); font-size: 11px; letter-spacing: .1em; }
    .change h3 { margin: 54px 0 14px; font-size: 21px; letter-spacing: -.024em; line-height: 1.14; }
    .change p { margin: 0; color: #57514e; font-family: var(--bp-reading-font); font-size: 16px; line-height: 1.58; }

    .movements {
      color: var(--white);
      background: var(--ink);
    }

    .movements-head {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: clamp(45px, 8vw, 110px);
      align-items: end;
      margin-bottom: 56px;
    }

    .movements h2 { max-width: 15ch; }
    .movements h2 span { color: var(--slate-3); }
    .movements .reading { color: #ccc7c4; }

    .movement-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: #46413e;
      border: 2px solid #46413e;
    }

    .movement {
      min-height: 420px;
      padding: clamp(28px, 4vw, 48px);
      background: #282624;
    }

    .movement:nth-child(2) { background: var(--slate); }
    .movement .phase { color: var(--slate-3); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
    .movement:nth-child(2) .phase { color: #c4d0d9; }
    .movement h3 { margin: 94px 0 20px; font-size: clamp(25px, 2.6vw, 34px); letter-spacing: -.032em; line-height: 1.05; }
    .movement p { margin: 0; color: #c9c4c1; font-family: var(--bp-reading-font); font-size: 17px; line-height: 1.62; }
    .movement:nth-child(2) p { color: #d9e0e5; }

    .fit-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      margin-top: 58px;
      background: var(--ink);
      border: 2px solid var(--ink);
    }

    .fit-column { padding: clamp(30px, 4vw, 52px); background: var(--paper); }
    .fit-column.alt { color: var(--white); background: var(--slate); }
    .fit-column h3 { margin: 0 0 30px; font-size: 22px; letter-spacing: -.02em; }
    .fit-column ul { margin: 0; padding: 0; list-style: none; }
    .fit-column li {
      position: relative;
      padding: 17px 0 17px 28px;
      border-top: 1px solid var(--line);
      font-family: var(--bp-reading-font);
      font-size: 16px;
      line-height: 1.54;
    }
    .fit-column.alt li { border-color: rgba(255,255,255,.24); }
    .fit-column li::before { position: absolute; left: 0; color: var(--signal); content: "—"; font-family: var(--bp-display-font); font-weight: 800; }

    .engagement-photo {
      position: relative;
      min-height: 570px;
      background: var(--ink);
      overflow: hidden;
    }
    .engagement-photo img { height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
    .engagement-photo::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(32,30,29,.15), transparent 60%); content: ""; }

    @media (max-width: 980px) {
      .engagement-hero-inner,
      .cost-grid,
      .movements-head { grid-template-columns: 1fr; }
      .engagement-card { max-width: 620px; }
      .change-grid { grid-template-columns: 1fr 1fr; }
      .movement-grid { grid-template-columns: 1fr; }
      .movement { min-height: auto; }
      .movement h3 { margin-top: 58px; }
    }

    @media (max-width: 620px) {
      .change-grid,
      .fit-grid { grid-template-columns: 1fr; }
      .engagement-photo { min-height: 390px; }
    }
  

    .page-hero {
      color: var(--white);
      background: var(--ink);
      border-bottom: 1px solid #3b3836;
    }

    .page-hero-inner {
      display: grid;
      min-height: 610px;
      grid-template-columns: 1.15fr .85fr;
      gap: clamp(50px, 9vw, 130px);
      align-items: end;
      padding-block: clamp(86px, 11vw, 150px) clamp(56px, 7vw, 90px);
    }

    .page-hero h1 {
      max-width: 12ch;
      margin-bottom: 28px;
      font-size: clamp(52px, 6.4vw, 86px);
    }

    .page-hero .reading { color: #d1cdca; font-size: 20px; }

    .hero-index {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 3px;
      align-items: end;
      min-height: 250px;
      padding: 26px;
      border: 1px solid #4b4744;
      background: #252321;
    }

    .hero-index span {
      position: relative;
      display: block;
      min-height: 34px;
      background: var(--slate);
    }

    .hero-index span:nth-child(1) { height: 28%; }
    .hero-index span:nth-child(2) { height: 41%; background: #364b63; }
    .hero-index span:nth-child(3) { height: 54%; background: #405870; }
    .hero-index span:nth-child(4) { height: 68%; background: #4b6580; }
    .hero-index span:nth-child(5) { height: 83%; background: var(--slate-2); }
    .hero-index span:nth-child(6) { height: 100%; background: var(--signal); }

    .hero-index span::before {
      position: absolute;
      top: -27px;
      left: 0;
      color: #9c9793;
      content: attr(data-num);
      font-size: 9px;
      font-weight: 800;
      letter-spacing: .1em;
    }

    .system-page .system-grid { margin-top: 54px; }

    .loop-section { background: var(--paper-2); }

    .loop-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: clamp(50px, 9vw, 130px);
      align-items: center;
    }

    .loop-figure {
      position: relative;
      display: grid;
      min-height: 430px;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, 1fr);
      gap: 2px;
      padding: 42px;
      border: 2px solid var(--ink);
    }

    .loop-node {
      display: flex;
      min-height: 120px;
      flex-direction: column;
      justify-content: space-between;
      padding: 17px;
      color: var(--white);
      background: var(--slate);
    }

    .loop-node:nth-child(2),
    .loop-node:nth-child(5) { background: #405872; }
    .loop-node:nth-child(3) { background: var(--slate-2); }
    .loop-node:nth-child(6) { background: var(--signal); }
    .loop-node strong { font-size: 10px; letter-spacing: .09em; }
    .loop-node span { font-size: 13px; font-weight: 700; }

    .loop-figure::after {
      position: absolute;
      right: 18px;
      bottom: 18px;
      left: 18px;
      height: 18px;
      border-right: 2px solid var(--ink);
      border-bottom: 2px solid var(--ink);
      border-left: 2px solid var(--ink);
      content: "";
    }

    .loop-copy h2 { max-width: 14ch; }
    .loop-copy .reading { margin-top: 28px; }

    .lens-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      margin-top: 58px;
      background: var(--ink);
      border: 2px solid var(--ink);
    }

    .lens {
      min-height: 310px;
      padding: clamp(24px, 3vw, 38px);
      background: var(--paper);
    }

    .lens-letter {
      color: var(--signal);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .1em;
    }

    .lens h3 {
      margin: 62px 0 16px;
      font-size: 22px;
      letter-spacing: -.025em;
    }

    .lens p {
      margin: 0;
      color: #57514e;
      font-family: var(--bp-reading-font);
      font-size: 16px;
      line-height: 1.6;
    }

    .comparison { color: var(--white); background: var(--slate); }

    .comparison-head {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: clamp(45px, 8vw, 110px);
      align-items: end;
      margin-bottom: 52px;
    }

    .comparison-head h2 { max-width: 16ch; }
    .comparison-head h2 span { color: #bdcbd6; }
    .comparison-head .reading { color: #d4dbe1; }

    .comparison-table { border-top: 2px solid var(--white); }

    .comparison-row {
      display: grid;
      grid-template-columns: .42fr 1fr 1fr;
      border-bottom: 1px solid rgba(255,255,255,.25);
    }

    .comparison-row > * { padding: 22px clamp(14px, 2.3vw, 30px); }
    .comparison-row > * + * { border-left: 1px solid rgba(255,255,255,.2); }
    .comparison-row strong { color: #d4dce3; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
    .comparison-row p { margin: 0; font-family: var(--bp-reading-font); font-size: 16px; line-height: 1.55; }
    .comparison-row.header { min-height: 58px; align-items: center; background: rgba(32,30,29,.2); }
    .comparison-row.header span { color: #bec9d2; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

    @media (max-width: 980px) {
      .page-hero-inner,
      .loop-grid,
      .comparison-head { grid-template-columns: 1fr; }
      .hero-index { max-width: 620px; }
      .lens-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 620px) {
      .hero-index { min-height: 190px; padding: 22px; }
      .loop-figure { min-height: 380px; padding: 24px; }
      .lens-grid { grid-template-columns: 1fr; }
      .comparison-row { grid-template-columns: 1fr; padding-block: 10px; }
      .comparison-row > * { padding-block: 10px; }
      .comparison-row > * + * { border-left: 0; }
      .comparison-row.header { display: none; }
    }
  

    /* Boardpath Version 2: structural motif, disciplined slate roles, accessible signal */
    :root { --signal: #c5280f; }

    .motif-band-wrap {
      position: relative;
      z-index: 2;
      background: linear-gradient(180deg, rgba(32,30,29,0) 0%, rgba(32,30,29,.78) 38%, #201e1d 100%);
    }
    .motif-band {
      display: grid;
      height: clamp(68px, 8.5vw, 124px);
      grid-template-columns: repeat(18, 1fr);
      align-items: end;
      gap: 3px;
    }
    .motif-band span { display: block; background: var(--slate); }
    .motif-band span:nth-child(n+5) { background: #394f67; }
    .motif-band span:nth-child(n+9) { background: #465f78; }
    .motif-band span:nth-child(n+13) { background: var(--slate-2); }
    .motif-band span:last-child { background: var(--signal); }

    /* Slate now has three roles: method/system surfaces, selected states, secondary action. */
    .cta,
    .field-note,
    .subhero-aside,
    .form-panel,
    .client-card:nth-child(3n),
    .process-step:nth-child(2),
    .movement:nth-child(2),
    .fit-column.alt,
    .fit-side.alt,
    .editorial-quote,
    .featured-side,
    .service-tile:nth-child(2) { background: var(--ink-2); }

    .client-card:nth-child(3n) p,
    .client-card:nth-child(3n) .card-meta { color: #d2ccc8; }
    .cta h2 span { color: var(--slate-3); }
    .form-panel h2 span { color: var(--slate-3) !important; }

    .v2-founder {
      color: var(--white);
      background: var(--ink);
    }
    .v2-founder-grid {
      display: grid;
      grid-template-columns: .78fr 1.22fr;
      gap: 2px;
      align-items: stretch;
    }
    .v2-founder-mark {
      position: relative;
      display: flex;
      min-height: 570px;
      flex-direction: column;
      justify-content: space-between;
      padding: clamp(34px, 6vw, 84px);
      overflow: hidden;
      background: var(--paper-2);
      color: var(--ink);
    }
    .v2-founder-mark strong {
      position: relative;
      z-index: 1;
      font-size: clamp(110px, 19vw, 270px);
      font-weight: 800;
      letter-spacing: -.09em;
      line-height: .76;
    }
    .v2-founder-mark p {
      position: relative;
      z-index: 1;
      max-width: 28ch;
      margin: 0;
      color: #5b5551;
      font-family: var(--bp-reading-font);
      font-size: 15px;
    }
    .v2-founder-mark::after {
      position: absolute;
      right: -100px;
      bottom: -170px;
      width: 420px;
      height: 420px;
      border: 2px solid var(--slate-2);
      content: "";
      transform: rotate(45deg);
    }
    .v2-founder-copy {
      display: flex;
      min-height: 570px;
      flex-direction: column;
      justify-content: center;
      padding: clamp(52px, 8vw, 112px);
    }
    .v2-founder-copy h2 {
      max-width: 15ch;
      margin: 25px 0 27px;
      font-size: clamp(35px, 4.4vw, 60px);
      letter-spacing: -.044em;
      line-height: 1.02;
    }
    .v2-founder-copy h2 span { color: var(--slate-3); }
    .v2-founder-copy p { max-width: 52ch; margin: 0; color: #cec9c6; font-family: var(--bp-reading-font); font-size: 19px; line-height: 1.65; }

    .v2-method-bridge {
      color: var(--white);
      background: var(--ink);
    }
    .v2-method-bridge-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(48px, 8vw, 116px);
      align-items: center;
      padding-block: clamp(74px, 9vw, 126px);
    }
    .v2-method-bridge blockquote {
      max-width: 23ch;
      margin: 0;
      font-family: var(--bp-reading-font);
      font-size: clamp(29px, 3.7vw, 49px);
      line-height: 1.32;
    }
    .v2-method-bridge blockquote span { color: var(--slate-3); }
    .v2-six {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 3px;
      align-items: end;
      min-height: 300px;
    }
    .v2-six div { display: flex; min-height: 54px; flex-direction: column; justify-content: flex-end; padding: 12px 8px; background: var(--slate); }
    .v2-six div:nth-child(1) { height: 30%; }
    .v2-six div:nth-child(2) { height: 44%; background:#394f67; }
    .v2-six div:nth-child(3) { height: 58%; background:#435a72; }
    .v2-six div:nth-child(4) { height: 72%; background:#4d657d; }
    .v2-six div:nth-child(5) { height: 86%; background:var(--slate-2); }
    .v2-six div:nth-child(6) { height: 100%; background:var(--signal); }
    .v2-six strong { font-size: 9px; letter-spacing: .08em; }
    .v2-six span { display: none; }

    .v2-about-evidence {
      color: var(--white);
      background: var(--ink);
    }
    .v2-about-evidence-grid {
      display: grid;
      min-height: 530px;
      grid-template-columns: .7fr 1.3fr;
      gap: 2px;
      align-items: stretch;
    }
    .v2-about-initials {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: clamp(36px, 6vw, 82px);
      color: var(--ink);
      background: var(--paper-2);
    }
    .v2-about-initials strong { font-size: clamp(120px, 20vw, 285px); letter-spacing: -.1em; line-height: .75; }
    .v2-about-initials small { max-width: 30ch; color: #5c5652; font-family: var(--bp-reading-font); font-size: 13px; }
    .v2-about-proof { display: flex; flex-direction: column; justify-content: center; padding: clamp(46px, 8vw, 110px); }
    .v2-about-proof h2 { max-width: 15ch; margin: 24px 0 25px; font-size: clamp(36px, 4.5vw, 61px); letter-spacing: -.045em; line-height: 1.02; }
    .v2-about-proof h2 span { color: var(--slate-3); }
    .v2-about-proof p { max-width: 52ch; margin: 0; color: #cec9c6; font-family: var(--bp-reading-font); font-size: 18px; line-height: 1.65; }

    /* Desktop solutions mega menu */
    .nav-solutions {
      position: relative;
      display: flex;
      align-self: stretch;
      align-items: stretch;
    }
    .nav-solutions > a .nav-caret {
      margin-left: 7px;
      color: var(--slate-3);
      font-size: 11px;
      transition: transform .18s ease;
    }
    .mega-menu {
      position: absolute;
      z-index: 40;
      top: calc(100% - 1px);
      left: 0;
      display: grid;
      width: min(820px, calc(100vw - 190px));
      grid-template-columns: .78fr 1.22fr;
      gap: 2px;
      padding: 2px;
      visibility: hidden;
      border-top: 4px solid var(--signal);
      background: #3b3836;
      box-shadow: 0 24px 50px rgba(0,0,0,.3);
      opacity: 0;
      pointer-events: none;
      transform: translateY(8px);
      transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }
    .nav-solutions:hover .mega-menu,
    .nav-solutions:focus-within .mega-menu {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    .nav-solutions:hover > a .nav-caret,
    .nav-solutions:focus-within > a .nav-caret { transform: rotate(180deg); }
    .nav-links .mega-menu a {
      display: block;
      padding: 0;
      border: 0;
      color: inherit;
      background: transparent;
      letter-spacing: 0;
      text-transform: none;
    }
    .nav-links .mega-menu a:hover,
    .nav-links .mega-menu a:focus-visible {
      border: 0;
      color: inherit;
      background: transparent;
      outline: none;
    }
    .mega-feature {
      display: flex !important;
      min-height: 270px;
      flex-direction: column;
      justify-content: flex-end;
      padding: 30px !important;
      color: var(--white) !important;
      background: var(--slate) !important;
    }
    .mega-feature small,
    .mega-link small {
      display: block;
      font-size: 9px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .mega-feature small { margin-bottom: auto; color: #c8d3dc; }
    .mega-feature strong { max-width: 15ch; font-size: 24px; letter-spacing: -.025em; line-height: 1.04; }
    .mega-feature span { max-width: 31ch; margin-top: 12px; color: #d7e0e7; font-family: var(--bp-reading-font); font-size: 13px; line-height: 1.45; }
    .mega-links {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: var(--paper);
    }
    .mega-link {
      min-height: 90px;
      padding: 19px 21px !important;
      border-right: 1px solid var(--line) !important;
      border-bottom: 1px solid var(--line) !important;
    }
    .mega-link:nth-child(even) { border-right: 0 !important; }
    .mega-link:hover,
    .mega-link:focus-visible { background: var(--paper-2) !important; }
    .mega-link small { margin-bottom: 7px; color: var(--signal); }
    .mega-link strong { display: block; color: var(--ink); font-size: 13px; line-height: 1.25; }
    .mega-link span { display: block; margin-top: 5px; color: #68615d; font-family: var(--bp-reading-font); font-size: 11px; line-height: 1.35; }

    /* The bar motif is the interaction, not decoration beside an accordion. */
    .discipline-explorer {
      overflow: hidden;
      border: 2px solid #3b3836;
      background: var(--ink-2);
    }
    .discipline-bars {
      display: grid;
      min-height: 430px;
      grid-template-columns: repeat(6, 1fr);
      gap: 4px;
      align-items: end;
      padding: 36px 36px 0;
      background: var(--ink);
    }
    .discipline-explorer .discipline-bar {
      display: grid;
      height: 100%;
      min-height: 360px;
      grid-template-rows: 1fr 74px;
      gap: 0;
      padding: 0;
      border: 0;
      color: var(--white);
      background: transparent;
      cursor: pointer;
      text-align: left;
    }
    .discipline-explorer .discipline-column {
      position: relative;
      display: flex;
      width: 100%;
      height: var(--bar-height);
      min-height: 84px;
      align-self: end;
      align-items: flex-start;
      padding: 15px;
      background: var(--bar-color, var(--slate));
      box-shadow: inset 0 0 0 0 var(--signal);
      transition: height .25s ease, filter .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    .discipline-explorer .discipline-bar:nth-child(2) { --bar-color: #394f67; }
    .discipline-explorer .discipline-bar:nth-child(3) { --bar-color: #435a72; }
    .discipline-explorer .discipline-bar:nth-child(4) { --bar-color: #4d657d; }
    .discipline-explorer .discipline-bar:nth-child(5) { --bar-color: var(--slate-2); }
    .discipline-explorer .discipline-bar:nth-child(6) { --bar-color: var(--signal); }
    .discipline-explorer .discipline-number {
      color: rgba(255,255,255,.8);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .12em;
    }
    .discipline-explorer .discipline-name {
      display: flex;
      align-items: flex-start;
      padding: 14px 9px 0;
      color: #beb9b5;
      font-size: 11px;
      font-weight: 800;
      line-height: 1.25;
    }
    .discipline-explorer .discipline-bar:hover .discipline-column { filter: brightness(1.12); }
    .discipline-explorer .discipline-bar:focus-visible { outline: 2px solid var(--signal); outline-offset: -2px; }
    .discipline-explorer .discipline-bar[aria-selected="true"] .discipline-column {
      box-shadow: inset 0 5px 0 var(--signal);
      filter: brightness(1.14);
      transform: translateY(-7px);
    }
    .discipline-explorer .discipline-bar:nth-child(6)[aria-selected="true"] .discipline-column {
      box-shadow: inset 0 5px 0 var(--white);
    }
    .discipline-explorer .discipline-bar[aria-selected="true"] .discipline-name { color: var(--white); }
    .discipline-readout {
      position: relative;
      display: grid;
      min-height: 250px;
      grid-template-columns: .38fr 1.12fr 1fr;
      gap: clamp(28px, 5vw, 72px);
      align-items: start;
      padding: clamp(30px, 5vw, 66px);
      overflow: hidden;
      color: var(--white);
      background: var(--slate);
    }
    .discipline-readout::after {
      position: absolute;
      right: -90px;
      bottom: -165px;
      width: 310px;
      height: 310px;
      border: 2px solid rgba(255,255,255,.16);
      content: "";
      transform: rotate(45deg);
    }
    .discipline-readout .panel-kicker { margin: 5px 0 0; }
    .discipline-readout .panel-title { position: relative; z-index: 1; margin: 0; font-size: clamp(25px, 3vw, 40px); }
    .discipline-readout .panel-body { position: relative; z-index: 1; margin: 0; }

    /* SOAR is one aligned optical path rather than four separate pillars. */
    .soar-telescope {
      position: relative;
      display: grid;
      min-height: 410px;
      grid-template-columns: .42fr 1fr .9fr .8fr .7fr .7fr;
      gap: 0;
      align-items: center;
      margin-top: 52px;
      overflow: hidden;
      padding: 38px 28px;
      color: var(--white);
      background: var(--ink);
    }
    .soar-telescope::before {
      position: absolute;
      right: 12%;
      left: 7%;
      height: 2px;
      background: var(--slate-2);
      content: "";
    }
    .telescope-source,
    .telescope-focus {
      position: relative;
      z-index: 2;
      display: flex;
      aspect-ratio: 1;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      text-align: center;
    }
    .telescope-source {
      width: 76px;
      border: 1px solid #635d58;
      color: #aaa39e;
      font-size: 9px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .telescope-lens {
      position: relative;
      z-index: 2;
      display: flex;
      width: 74%;
      min-width: 110px;
      aspect-ratio: .42;
      align-items: center;
      justify-content: center;
      justify-self: center;
      border: 2px solid var(--slate-2);
      border-radius: 50%;
      background: rgba(91,116,140,.12);
      box-shadow: inset 16px 0 30px rgba(143,163,184,.08), 12px 0 30px rgba(0,0,0,.24);
    }
    .telescope-lens::before,
    .telescope-lens::after {
      position: absolute;
      top: 50%;
      width: 28px;
      height: 1px;
      background: var(--slate-2);
      content: "";
    }
    .telescope-lens::before { right: 100%; }
    .telescope-lens::after { left: 100%; }
    .telescope-lens:nth-of-type(3) { width: 69%; }
    .telescope-lens:nth-of-type(4) { width: 64%; }
    .telescope-lens:nth-of-type(5) { width: 59%; }
    .telescope-lens b {
      color: var(--white);
      font-size: clamp(48px, 6vw, 82px);
      letter-spacing: -.06em;
    }
    .telescope-lens span {
      position: absolute;
      right: 50%;
      bottom: 19%;
      width: max-content;
      max-width: 130px;
      color: #d2dce4;
      font-size: 9px;
      font-weight: 800;
      letter-spacing: .08em;
      line-height: 1.2;
      text-transform: uppercase;
      transform: translateX(50%);
    }
    .telescope-focus {
      width: 112px;
      padding: 14px;
      border: 3px solid var(--signal);
      background: rgba(197,40,15,.12);
      box-shadow: 0 0 38px rgba(197,40,15,.18);
    }
    .telescope-focus span { display: block; color: #d9d4d0; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
    .telescope-focus strong { display: block; margin-top: 5px; font-size: 15px; line-height: 1.05; }
    .soar-definitions {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .soar-definition {
      min-height: 205px;
      padding: 26px;
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }
    .soar-definition strong { display: block; margin-bottom: 13px; font-size: 15px; }
    .soar-definition strong span { margin-right: 9px; color: var(--signal); }
    .soar-definition p { margin: 0; color: #615a56; font-family: var(--bp-reading-font); font-size: 14px; line-height: 1.55; }

    /* Restore the original concept's compact editorial ladder. */
    .discipline-explorer {
      padding: clamp(36px, 5vw, 72px);
      border: 0;
      color: var(--white);
      background: var(--ink);
    }
    .discipline-bars {
      min-height: 0;
      padding: 0;
      gap: 2px;
      align-items: stretch;
      background: transparent;
    }
    .discipline-explorer .discipline-bar {
      display: grid;
      height: auto;
      min-height: 0;
      width: 100%;
      grid-template-columns: minmax(0, 1fr);
      grid-template-rows: 136px auto auto auto;
      gap: 0;
      align-items: start;
      align-content: start;
      padding: 0;
      color: var(--white);
      background: transparent;
    }
    .discipline-explorer .discipline-column {
      width: 100%;
      height: var(--bar-height);
      min-height: 0;
      align-self: end;
      margin: 0 0 20px;
      padding: 0;
      background: var(--bar-color, var(--slate));
      box-shadow: none;
      transform: none;
    }
    .discipline-explorer .discipline-bar:nth-child(6) { --bar-color: #586f88; }
    .discipline-explorer .discipline-number {
      display: flex;
      width: clamp(34px, 3vw, 46px);
      height: clamp(34px, 3vw, 46px);
      align-items: center;
      justify-content: center;
      margin: 0 0 16px;
      border-top: 5px solid var(--signal);
      color: var(--white);
      background: var(--slate);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .1em;
    }
    .discipline-explorer .discipline-name {
      display: block;
      min-height: 0;
      margin: 0 0 10px;
      padding: 0 10px 0 0;
      color: var(--white);
      font-size: clamp(13px, 1.3vw, 17px);
      line-height: 1.2;
    }
    .discipline-short {
      margin: 0;
      padding: 0 12px 0 0;
      color: #aaa5a1;
      font-family: var(--bp-reading-font);
      font-size: 12px;
      line-height: 1.55;
    }
    .discipline-explorer .discipline-bar:hover .discipline-column { filter: brightness(1.1); }
    .discipline-explorer .discipline-bar[aria-selected="true"] .discipline-column {
      background: var(--signal);
      box-shadow: none;
      filter: none;
      transform: none;
    }
    .discipline-explorer .discipline-bar[aria-selected="true"] .discipline-number { background: var(--ink); }
    .discipline-return {
      position: relative;
      height: clamp(28px, 3vw, 44px);
      margin-top: clamp(28px, 3vw, 44px);
      border: 2px solid var(--slate-2);
      border-top: 0;
    }
    .discipline-return::before {
      position: absolute;
      top: -2px;
      left: -6px;
      width: 12px;
      height: 12px;
      background: var(--signal);
      content: "";
    }
    .discipline-return::after {
      position: absolute;
      top: -2px;
      right: -2px;
      width: 2px;
      height: 12px;
      background: var(--signal);
      content: "";
    }
    .discipline-return-label {
      margin: 18px 0 0;
      color: var(--slate-3);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
    }
    .discipline-detail {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(28px, 5vw, 76px);
      padding: clamp(48px, 6vw, 88px);
      color: var(--ink);
      background: var(--paper);
    }
    .discipline-detail-lead { align-content: start; }
    .discipline-detail-badge {
      display: flex;
      width: clamp(56px, 5vw, 76px);
      height: clamp(56px, 5vw, 76px);
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      border-top: 6px solid var(--signal);
      color: var(--white);
      background: var(--slate);
      font-size: clamp(15px, 1.5vw, 19px);
      font-weight: 800;
      letter-spacing: .06em;
    }
    .discipline-detail h3 {
      max-width: 16ch;
      margin: 0 0 20px;
      font-size: clamp(30px, 4vw, 52px);
      letter-spacing: -.045em;
      line-height: 1.05;
    }
    .discipline-detail .panel-body {
      max-width: 40ch;
      margin: 0 0 24px;
      color: #4a4645;
      font-family: var(--bp-reading-font);
      font-size: 17px;
      line-height: 1.7;
    }
    .discipline-mini-bars {
      display: grid;
      width: 200px;
      height: 44px;
      grid-template-columns: repeat(6, 1fr);
      gap: 2px;
      align-items: end;
    }
    .discipline-mini-bars span { display: block; background: var(--slate); }
    .discipline-mini-bars span:nth-child(1) { height: 28%; }
    .discipline-mini-bars span:nth-child(2) { height: 42%; }
    .discipline-mini-bars span:nth-child(3) { height: 56%; }
    .discipline-mini-bars span:nth-child(4) { height: 70%; }
    .discipline-mini-bars span:nth-child(5) { height: 85%; }
    .discipline-mini-bars span:nth-child(6) { height: 100%; }
    .discipline-mini-bars span.is-active { background: var(--signal); }
    .discipline-detail .panel-kicker { margin: 12px 0 0; color: #6b6765; }
    .discipline-condition { padding: 0 0 26px; }
    .discipline-condition + .discipline-condition { padding: 26px 0 0; border-top: 2px solid var(--ink); }
    .discipline-condition small,
    .discipline-example small {
      display: block;
      margin: 0 0 12px;
      color: #6b6765;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
    }
    .discipline-condition + .discipline-condition small,
    .discipline-example small { color: var(--slate); }
    .discipline-condition strong {
      display: block;
      max-width: 38ch;
      font-size: clamp(19px, 1.9vw, 22px);
      line-height: 1.45;
    }
    .discipline-condition p {
      max-width: 44ch;
      margin: 0;
      color: #4a4645;
      font-family: var(--bp-reading-font);
      font-size: 17px;
      line-height: 1.7;
    }
    .discipline-example {
      display: grid;
      grid-column: 1 / -1;
      grid-template-columns: .8fr 1.2fr;
      gap: clamp(20px, 4vw, 56px);
      padding: clamp(24px, 3vw, 40px);
      background: var(--paper-2);
    }
    .discipline-example strong { display: block; max-width: 27ch; font-size: clamp(19px, 1.9vw, 22px); line-height: 1.45; }
    .discipline-example p { max-width: 54ch; margin: 0; color: #4a4645; font-family: var(--bp-reading-font); font-size: 17px; line-height: 1.7; }

    /* Every SOAR lens carries equal visual weight. */
    .soar-telescope { grid-template-columns: .42fr repeat(4, 1fr) .72fr; }
    .telescope-lens,
    .telescope-lens:nth-of-type(3),
    .telescope-lens:nth-of-type(4),
    .telescope-lens:nth-of-type(5) { width: 68%; }

    @media (max-width:980px) {
      .v2-founder-grid,
      .v2-method-bridge-grid,
      .v2-about-evidence-grid { grid-template-columns: 1fr; }
      .v2-founder-mark,
      .v2-founder-copy { min-height: auto; }
      .v2-founder-mark { min-height: 390px; }
      .discipline-detail { grid-template-columns: 1fr; }
      .discipline-example { grid-column: auto; }
      .soar-telescope { min-width: 840px; }
      .soar-telescope-wrap { overflow-x: auto; }
    }
    @media (max-width:620px) {
      .motif-band { grid-template-columns: repeat(12, 1fr); }
      .motif-band span:nth-child(-n+6) { display: none; }
      .v2-six { min-height: 390px; grid-template-columns: repeat(3, 1fr); }
      .discipline-explorer { padding: 28px 16px; overflow-x: auto; }
      .discipline-bars { min-width: 760px; }
      .discipline-explorer .discipline-bar { grid-template-rows: 136px auto auto auto; }
      .discipline-explorer .discipline-column { min-height: 0; padding: 0; }
      .discipline-explorer .discipline-name { padding: 0 8px 0 0; font-size: 13px; }
      .discipline-detail { padding: 42px 24px; }
      .discipline-example { grid-template-columns: 1fr; }
      .soar-definitions { grid-template-columns: 1fr; }
    }

/* Elementor bridge: keep the approved V2 sections edge-to-edge inside containers. */
.elementor-widget-bp-hero,
.elementor-widget-bp-hero > .elementor-widget-container,
.elementor-widget-bp-narrative,
.elementor-widget-bp-narrative > .elementor-widget-container,
.elementor-widget-bp-card-grid,
.elementor-widget-bp-card-grid > .elementor-widget-container,
.elementor-widget-bp-cta,
.elementor-widget-bp-cta > .elementor-widget-container,
.elementor-widget-bp-system-explorer,
.elementor-widget-bp-system-explorer > .elementor-widget-container,
.elementor-widget-bp-soar-telescope,
.elementor-widget-bp-soar-telescope > .elementor-widget-container,
.elementor-widget-bp-insights-grid,
.elementor-widget-bp-insights-grid > .elementor-widget-container,
.elementor-widget-bp-lead-capture,
.elementor-widget-bp-lead-capture > .elementor-widget-container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.elementor-element.e-con.bp-imported-section,
.e-con > .e-con-inner {
  max-width: none;
}

.bp-theme-slate {
  background: var(--slate);
  color: white;
}

.bp-theme-dark {
  background: var(--ink);
  color: white;
}

.bp-theme-slate .eyebrow,
.bp-theme-dark .eyebrow {
  color: var(--signal);
}

.bp-theme-slate h2,
.bp-theme-dark h2,
.bp-theme-slate .reading,
.bp-theme-dark .reading {
  color: white;
}

.bp-columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bp-columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bp-columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.bp-soar-section {
  overflow: hidden;
}

.bp-telescope {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr repeat(4, minmax(150px, 1fr)) 0.9fr;
  align-items: center;
  gap: clamp(10px, 1.4vw, 24px);
  min-height: 420px;
  padding: 60px 0;
}

.bp-telescope-axis {
  position: absolute;
  z-index: 0;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: var(--line);
}

.bp-decision-input,
.bp-decision-output {
  position: relative;
  z-index: 1;
  padding: 18px;
  border-top: 4px solid var(--signal);
  background: var(--paper);
  color: var(--ink);
  font: 700 0.78rem/1.3 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bp-decision-output {
  background: var(--ink);
  color: white;
}

.bp-lens {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1.18;
  padding: 24px 18px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  box-shadow: inset 0 0 0 7px rgba(93, 121, 148, 0.12);
  text-align: center;
}

.bp-lens-letter {
  color: var(--signal);
  font: 800 1.5rem/1 var(--sans);
}

.bp-lens strong {
  margin: 8px 0;
  font: 700 clamp(0.82rem, 1vw, 1rem)/1.2 var(--sans);
}

.bp-lens small {
  color: var(--muted);
  font: 500 0.75rem/1.35 var(--sans);
}

.bp-form-embed {
  padding: clamp(28px, 4vw, 56px);
  border-top: 5px solid var(--signal);
  background: var(--ink);
  color: white;
}

.bp-form-placeholder p {
  margin: 12px 0 24px;
  color: rgba(255,255,255,0.72);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.insight-card {
  padding: clamp(26px, 3.5vw, 46px);
  background: var(--paper);
}

.insight-card h3,
.insight-card h2 {
  margin: 10px 0 16px;
}

.insight-card a {
  color: inherit;
}

.insight-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.insight-filters button {
  padding: 9px 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: 700 0.72rem/1 var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.insight-filters button.is-active {
  border-color: var(--signal);
  background: var(--signal);
  color: white;
}

.insight-card[hidden] {
  display: none;
}

.article-reading {
  max-width: 760px;
}

.article-reading p {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.75;
}

.insight-pullquote,
.insight-test {
  margin: 44px 0;
  padding: 30px;
  border-top: 5px solid var(--signal);
  background: var(--soft);
}

@media (max-width: 980px) {
  .bp-columns-4,
  .bp-columns-3,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bp-telescope {
    grid-template-columns: 1fr 1fr;
  }

  .bp-telescope-axis {
    display: none;
  }

  .bp-decision-input,
  .bp-decision-output {
    grid-column: 1 / -1;
  }

  .bp-lens {
    aspect-ratio: auto;
    min-height: 220px;
  }
}

@media (max-width: 680px) {
  .bp-columns-2,
  .bp-columns-3,
  .bp-columns-4,
  .insight-grid,
  .bp-telescope {
    grid-template-columns: 1fr;
  }
}

/* Version 2.1: Hello Elementor compatibility and editor-safe presentation. */
body.boardpath-site {
  --bp-ink: #201e1d;
  --bp-ink-2: #2a2827;
  --bp-paper: #f3f2f0;
  --bp-paper-2: #e8e6e2;
  --bp-line: #c9c5c0;
  --bp-slate: #2e4057;
  --bp-slate-2: #5b7590;
  --bp-slate-3: #8fa3b8;
  --bp-signal: #c5280f;
  --bp-white: #faf9f7;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--bp-display-font);
}

body.boardpath-site h1,
body.boardpath-site h2,
body.boardpath-site h3,
body.boardpath-site h4,
body.boardpath-site h5,
body.boardpath-site h6,
body.boardpath-site button,
body.boardpath-site .button,
body.boardpath-site .eyebrow,
body.boardpath-site .nav,
body.boardpath-site footer {
  font-family: var(--bp-display-font) !important;
}

body.boardpath-site h1,
body.boardpath-site h2,
body.boardpath-site h3,
body.boardpath-site h4,
body.boardpath-site h5,
body.boardpath-site h6 {
  color: inherit;
}

body.boardpath-site .elementor,
body.boardpath-site .elementor-section-wrap,
body.boardpath-site .elementor-widget-wrap,
body.boardpath-site .elementor-widget-container,
body.boardpath-site .site-main,
body.boardpath-site main {
  max-width: none;
}

body.boardpath-site .bp-imported-section.e-con,
body.boardpath-site .bp-imported-section.e-con-full,
body.boardpath-site .elementor-widget-bp-hero,
body.boardpath-site .elementor-widget-bp-cta {
  --container-max-width: none;
  --content-width: 100%;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.boardpath-site .bp-imported-section > .e-con-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.boardpath-site .elementor-widget-bp-hero > .elementor-widget-container,
body.boardpath-site .elementor-widget-bp-cta > .elementor-widget-container {
  width: 100%;
  max-width: none;
}

body.elementor-editor-active.boardpath-site .reveal,
body.elementor-editor-preview.boardpath-site .reveal,
body.boardpath-site.elementor-editor-active .reveal,
body.boardpath-site .elementor-edit-area .reveal,
body.boardpath-site .elementor-editor-widget-settings .reveal {
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Elementor Kit colors must not wash out the dark Boardpath surfaces. */
body.boardpath-site .hero,
body.boardpath-site .engagement-hero,
body.boardpath-site .page-hero,
body.boardpath-site .subhero,
body.boardpath-site .movements,
body.boardpath-site .v2-method-bridge,
body.boardpath-site .cta,
body.boardpath-site .comparison {
  color: var(--white);
}

body.boardpath-site .hero-dek,
body.boardpath-site .subhero-copy,
body.boardpath-site .engagement-card,
body.boardpath-site .cta-copy {
  color: inherit;
}

body.boardpath-site .engagement-card {
  background: var(--slate);
}

body.boardpath-site .movement:nth-child(2),
body.boardpath-site .fit-column.alt {
  color: var(--white);
  background: var(--ink-2);
}

@media (prefers-reduced-motion: reduce) {
  body.boardpath-site .reveal {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Version 2.2: native Elementor containers and widgets. */
body.boardpath-site .bp-native-section,
body.boardpath-site .bp-native-custom-section,
body.boardpath-site .bp-native-container,
body.boardpath-site .bp-native-section > .e-con-inner,
body.boardpath-site .bp-native-custom-section > .e-con-inner,
body.boardpath-site .bp-native-container > .e-con-inner {
  --container-max-width: none;
  --content-width: 100%;
  min-width: 0;
  max-width: none;
  gap: 0;
}

body.boardpath-site .bp-native-section,
body.boardpath-site .bp-native-custom-section {
  width: 100%;
  margin: 0;
}

body.boardpath-site .bp-native-custom-section,
body.boardpath-site .elementor-widget-bp-system-explorer,
body.boardpath-site .elementor-widget-bp-soar-telescope,
body.boardpath-site .elementor-widget-bp-motif {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.boardpath-site .elementor-widget.bp-native-text,
body.boardpath-site .elementor-widget.bp-native-heading,
body.boardpath-site .elementor-widget.bp-native-button,
body.boardpath-site .elementor-widget.bp-native-image {
  margin: 0;
}

body.boardpath-site .bp-native-text > .elementor-widget-container > :first-child {
  margin-top: 0;
}

body.boardpath-site .bp-native-text > .elementor-widget-container > :last-child {
  margin-bottom: 0;
}

/* Elementor containers default to flex. These Boardpath layout primitives are grids. */
body.boardpath-site :is(
  .hero-inner,
  .subhero-inner,
  .engagement-hero-inner,
  .proof-inner,
  .section-head,
  .system-top,
  .system-grid,
  .stage-list,
  .stage,
  .senior-grid,
  .outcomes-grid,
  .outcome,
  .cta-inner,
  .route-grid,
  .service-list,
  .service-card,
  .client-grid,
  .article-grid,
  .form-shell,
  .detail-meta,
  .process-grid,
  .cost-grid,
  .cost-point,
  .change-grid,
  .movements-head,
  .movement-grid,
  .fit-grid,
  .case-patterns,
  .page-hero-inner,
  .hero-index,
  .loop-grid,
  .loop-figure,
  .lens-grid,
  .soar-definitions,
  .comparison-head,
  .comparison-row,
  .v2-founder-grid,
  .v2-six,
  .v2-about-evidence-grid,
  .v2-method-bridge-grid
) {
  display: grid !important;
}

body.boardpath-site :is(
  .hero-actions,
  .proof-intro,
  .proof-item,
  .return-path,
  .senior-copy,
  .article-card,
  .article-foot,
  .loop-node,
  .v2-founder-mark,
  .v2-founder-copy,
  .v2-about-initials,
  .v2-about-proof
) {
  display: flex !important;
}

body.boardpath-site .hero-actions { flex-direction: row; }

body.boardpath-site .bp-native-button {
  width: auto;
}

body.boardpath-site .bp-native-button .elementor-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--signal);
  border-radius: 0;
  color: var(--white);
  background: var(--signal);
  font-family: var(--bp-display-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1;
  text-transform: uppercase;
}

body.boardpath-site .bp-button-secondary .elementor-button {
  border-color: rgba(255,255,255,.42);
  background: transparent;
}

body.boardpath-site .bp-native-button .elementor-button:hover,
body.boardpath-site .bp-native-button .elementor-button:focus-visible {
  color: var(--white);
  background: #a8210d;
}

body.boardpath-site .bp-button-secondary .elementor-button:hover,
body.boardpath-site .bp-button-secondary .elementor-button:focus-visible {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

body.boardpath-site .bp-native-image figure,
body.boardpath-site .bp-native-image img {
  width: 100%;
  margin: 0;
}

body.boardpath-site .bp-native-portrait {
  display: block !important;
  min-height: clamp(390px, 56vw, 760px);
  padding: 0 !important;
  overflow: hidden;
  background: var(--paper-2);
}

body.boardpath-site .bp-native-portrait > .elementor-widget-container,
body.boardpath-site .bp-native-portrait .elementor-image,
body.boardpath-site .bp-native-portrait img {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

body.boardpath-site .bp-native-portrait img {
  display: block;
  object-fit: cover;
}

body.boardpath-site .elementor-widget-form.contact-form {
  display: block !important;
}

body.boardpath-site .bp-native-form .elementor-form-fields-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 18px;
}

body.boardpath-site .bp-native-form .elementor-field-group {
  width: auto !important;
  margin: 0;
  padding: 0;
}

body.boardpath-site .bp-native-form .elementor-col-100 {
  grid-column: 1 / -1;
}

body.boardpath-site .bp-native-form .elementor-field-label {
  margin-bottom: 8px;
  font-family: var(--bp-display-font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

body.boardpath-site .bp-native-form :is(.elementor-field, .elementor-button) {
  border-radius: 0;
}

body.boardpath-site .bp-native-form .elementor-field {
  min-height: 50px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

body.boardpath-site .bp-native-form textarea.elementor-field {
  min-height: 160px;
}

body.boardpath-site .bp-native-form .elementor-button {
  min-height: 52px;
  border: 0;
  background: var(--signal);
  font-family: var(--bp-display-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

body.boardpath-site .bp-native-header,
body.boardpath-site .bp-native-footer {
  width: 100%;
  max-width: none;
}

body.boardpath-site .bp-native-header-inner {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  min-height: 70px;
}

body.boardpath-site .bp-native-brand {
  width: auto;
  white-space: nowrap;
}

body.boardpath-site .bp-native-brand .elementor-heading-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.02em;
}

body.boardpath-site .bp-native-brand .elementor-heading-title::before {
  width: 20px;
  height: 18px;
  background:
    linear-gradient(to top, var(--signal) 0 100%) 0 100% / 4px 35% no-repeat,
    linear-gradient(to top, var(--slate-3) 0 100%) 8px 100% / 4px 65% no-repeat,
    linear-gradient(to top, var(--white) 0 100%) 16px 100% / 4px 100% no-repeat;
  content: "";
}

body.boardpath-site .bp-native-nav-menu {
  justify-self: center;
}

body.boardpath-site .bp-native-nav-menu .elementor-nav-menu--main .elementor-item {
  padding: 26px 12px;
  color: var(--white);
  font-family: var(--bp-display-font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.boardpath-site .bp-native-nav-menu .sub-menu {
  min-width: 280px !important;
  padding: 12px;
  border-top: 4px solid var(--signal);
  background: var(--ink-2);
}

body.boardpath-site .bp-native-nav-menu .sub-menu .elementor-sub-item {
  padding: 13px 16px;
  border-bottom: 1px solid #46413e;
  color: var(--white);
  font-size: 11px;
}

body.boardpath-site .bp-native-header-cta {
  width: auto;
}

body.boardpath-site .bp-native-header-cta .elementor-button {
  min-height: 36px;
  padding: 0 15px;
  border-radius: 0;
  background: var(--slate);
  font-family: var(--bp-display-font);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

body.boardpath-site .bp-native-footer-inner {
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 132px;
}

body.boardpath-site .bp-native-footer-menu {
  justify-self: center;
}

body.boardpath-site .bp-native-footer-menu .elementor-nav-menu--main .elementor-item {
  padding: 12px 9px;
  color: #c8c4c1;
  font-family: var(--bp-display-font);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.boardpath-site .bp-native-copyright {
  color: #938d89;
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Fidelity safeguards: Elementor uses --display for container layout, so
   Boardpath typography uses its own variables and wins after Kit styles. */
body.boardpath-site,
body.boardpath-site .elementor {
  font-family: var(--bp-display-font) !important;
}

body.boardpath-site .elementor-widget-heading .elementor-heading-title,
body.boardpath-site .elementor-widget-button .elementor-button,
body.boardpath-site .elementor-widget-text-editor .eyebrow,
body.boardpath-site .eyebrow {
  font-family: var(--bp-display-font) !important;
}

body.boardpath-site :is(
  .reading,
  .hero-dek,
  .subhero-copy,
  .system-intro,
  .cta-copy,
  .loop-copy,
  .cost-point,
  .change,
  .movement,
  .fit-column,
  .comparison-row,
  .discipline-short,
  .discipline-detail,
  .soar-definition
) {
  font-family: var(--bp-reading-font) !important;
}

body.boardpath-site .shell.bp-native-container {
  width: min(100%, var(--max)) !important;
  max-width: var(--max) !important;
  margin-inline: auto !important;
  padding-inline: var(--pad) !important;
}

body.boardpath-site :is(.hero, .subhero, .engagement-hero) h1.elementor-heading-title {
  margin: 32px 0 30px !important;
  font-size: clamp(48px, 6vw, 92px) !important;
  font-weight: 800 !important;
  letter-spacing: -.052em !important;
  line-height: .98 !important;
}

body.boardpath-site .section h2.elementor-heading-title,
body.boardpath-site .cta h2.elementor-heading-title,
body.boardpath-site .v2-about-evidence h2.elementor-heading-title,
body.boardpath-site .v2-founder h2.elementor-heading-title,
body.boardpath-site .v2-method-bridge h2.elementor-heading-title {
  margin: 22px 0 0 !important;
  font-size: clamp(32px, 4.1vw, 56px) !important;
  font-weight: 800 !important;
  letter-spacing: -.038em !important;
  line-height: 1.04 !important;
}

body.boardpath-site .bp-native-text > .elementor-widget-container,
body.boardpath-site .bp-native-text > .elementor-widget-container > * {
  color: inherit;
  font-family: inherit;
}

body.boardpath-site .eyebrow > .elementor-widget-container,
body.boardpath-site .eyebrow > .elementor-widget-container > * {
  margin: 0 !important;
  font-family: var(--bp-display-font) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

body.boardpath-site .bp-native-button .elementor-button,
body.boardpath-site .bp-native-form .elementor-button {
  color: var(--white) !important;
  background-color: var(--signal) !important;
}

body.boardpath-site .bp-button-secondary .elementor-button {
  border-color: rgba(255,255,255,.42) !important;
  background-color: transparent !important;
}

body.boardpath-site .bp-native-custom-section > .e-con-inner,
body.boardpath-site .elementor-widget-bp-system-explorer > .elementor-widget-container,
body.boardpath-site .elementor-widget-bp-soar-telescope > .elementor-widget-container {
  width: 100%;
  max-width: none;
}

@media (max-width: 1100px) {
  body.boardpath-site .discipline-explorer {
    overflow-x: auto;
  }

  body.boardpath-site .discipline-bars,
  body.boardpath-site .discipline-return,
  body.boardpath-site .discipline-return-label {
    min-width: 920px;
  }
}

@media (max-width: 680px) {
  body.boardpath-site .bp-native-form .elementor-form-fields-wrapper {
    grid-template-columns: 1fr;
  }

  body.boardpath-site .bp-native-form .elementor-field-group {
    grid-column: 1;
  }

  body.boardpath-site .bp-native-header-inner {
    grid-template-columns: auto 1fr;
  }

  body.boardpath-site .bp-native-nav-menu {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  body.boardpath-site .bp-native-header-cta {
    display: none;
  }

  body.boardpath-site .bp-native-footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-block: 36px;
  }

  body.boardpath-site .bp-native-footer-menu {
    justify-self: start;
  }
}

/* Version 2.4: approved System/Insights presentation and palette locks. */
body.boardpath-site {
  --e-global-color-primary: var(--ink);
  --e-global-color-secondary: var(--slate);
  --e-global-color-text: #494441;
  --e-global-color-accent: var(--signal);
}

body.boardpath-site .bp-system-light {
  color: var(--ink) !important;
  background: var(--paper) !important;
}

body.boardpath-site .bp-system-light .eyebrow.light,
body.boardpath-site .bp-system-light .discipline-return-label {
  color: var(--slate-2) !important;
}

body.boardpath-site .bp-system-light h2 span {
  color: var(--slate) !important;
}

body.boardpath-site .bp-system-light .system-intro {
  color: #494441 !important;
}

body.boardpath-site .bp-system-light .discipline-explorer {
  overflow-x: auto;
  color: var(--ink) !important;
  background: var(--paper-2) !important;
}

body.boardpath-site .bp-system-light .discipline-bars {
  min-width: 1080px;
  background: transparent !important;
}

body.boardpath-site .bp-system-light .discipline-bar {
  min-width: 0;
  color: var(--ink) !important;
}

body.boardpath-site .bp-system-light .discipline-name {
  color: var(--ink) !important;
  overflow-wrap: anywhere;
}

body.boardpath-site .bp-system-light .discipline-short {
  min-width: 0;
  color: #5a5552 !important;
  overflow-wrap: anywhere;
}

body.boardpath-site .bp-system-light .discipline-bar[aria-selected="true"] .discipline-name {
  color: var(--ink) !important;
}

body.boardpath-site .bp-system-light .discipline-return {
  min-width: 1080px;
  border-color: var(--slate-2);
}

body.boardpath-site .bp-system-light .discipline-return-label {
  min-width: 1080px;
}

body.boardpath-site .bp-system-light .discipline-detail {
  border: 1px solid var(--line);
  border-top: 0;
}

body.boardpath-site .elementor-widget-bp-soar-telescope .soar-telescope-wrap {
  width: 100%;
}

body.boardpath-site .elementor-widget-bp-soar-telescope .soar-telescope {
  grid-template-columns: .42fr repeat(4, 1fr) .72fr !important;
}

body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-lens {
  width: 68% !important;
}

body.boardpath-site .elementor-widget-bp-soar-telescope .soar-definition {
  display: block !important;
  min-width: 0;
  background: var(--paper);
}

body.boardpath-site .insight-grid {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 2px;
  padding: 0 !important;
  border: 2px solid var(--ink);
  background: var(--ink);
}

body.boardpath-site .insight-card {
  display: flex;
  min-width: 0;
  min-height: 390px;
  flex-direction: column;
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

body.boardpath-site .insight-card:nth-child(even) {
  background: var(--paper-2);
}

body.boardpath-site .insight-card .eyebrow {
  color: var(--slate-2) !important;
  font-size: 10px !important;
}

body.boardpath-site .insight-card h2,
body.boardpath-site .insight-card h3 {
  max-width: 15ch;
  margin: 40px 0 18px !important;
  font-size: clamp(27px, 2.3vw, 38px) !important;
  font-weight: 800 !important;
  letter-spacing: -.04em !important;
  line-height: 1.02 !important;
  overflow-wrap: break-word;
}

body.boardpath-site .insight-card h2 a,
body.boardpath-site .insight-card h3 a {
  color: var(--ink) !important;
  text-decoration: none;
}

body.boardpath-site .insight-card > p:not(.eyebrow) {
  margin: 0;
  color: #57514e;
  font-family: var(--bp-reading-font);
  font-size: 15px;
  line-height: 1.58;
}

body.boardpath-site .insight-card .plain-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 28px;
  border-bottom: 2px solid var(--signal);
  color: var(--ink) !important;
  font-family: var(--bp-display-font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

body.boardpath-site .bp-native-header {
  color: var(--white) !important;
  background: var(--ink) !important;
}

body.boardpath-site .bp-native-brand .elementor-heading-title,
body.boardpath-site .bp-native-brand .elementor-heading-title a,
body.boardpath-site .bp-native-nav-menu .elementor-nav-menu--main > .elementor-nav-menu > li > .elementor-item,
body.boardpath-site .bp-native-nav-menu .elementor-menu-toggle {
  color: var(--white) !important;
}

body.boardpath-site .bp-native-nav-menu .elementor-nav-menu--main > .elementor-nav-menu > li > .elementor-item:hover,
body.boardpath-site .bp-native-nav-menu .elementor-nav-menu--main > .elementor-nav-menu > li > .elementor-item:focus-visible,
body.boardpath-site .bp-native-nav-menu .elementor-nav-menu--main > .elementor-nav-menu > li.current-menu-item > .elementor-item {
  color: var(--slate-3) !important;
}

body.boardpath-site .bp-native-header-cta .elementor-button {
  border-color: var(--slate) !important;
  color: var(--white) !important;
  background: var(--slate) !important;
}

body.boardpath-site .bp-native-header-cta .elementor-button:hover,
body.boardpath-site .bp-native-header-cta .elementor-button:focus-visible {
  border-color: #3d5673 !important;
  background: #3d5673 !important;
}

body.boardpath-site :is(a.button, button.button):not(.secondary),
body.boardpath-site .elementor-widget-button.bp-native-button:not(.bp-button-secondary) .elementor-button,
body.boardpath-site .bp-native-form .elementor-button {
  border-color: var(--signal) !important;
  color: var(--white) !important;
  background: var(--signal) !important;
}

body.boardpath-site .bp-native-footer {
  color: #c8c4c1 !important;
  background: var(--ink) !important;
}

body.boardpath-site .bp-native-footer a,
body.boardpath-site .bp-native-footer-menu .elementor-nav-menu--main .elementor-item {
  color: #c8c4c1 !important;
}

@media (max-width: 980px) {
  body.boardpath-site .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  body.boardpath-site .insight-grid {
    grid-template-columns: 1fr !important;
  }

  body.boardpath-site .insight-card {
    min-height: 330px;
  }
}

/* Version 2.9: consolidated Elementor layout, color, and responsive system. */
html body.boardpath-site {
  --ink: #201e1d;
  --ink-2: #2a2827;
  --paper: #f3f2f0;
  --paper-2: #e8e6e2;
  --line: #c9c5c0;
  --slate: #2e4057;
  --slate-2: #5b7590;
  --slate-3: #8fa3b8;
  --signal: #c5280f;
  --white: #faf9f7;
  --e-global-color-primary: #201e1d;
  --e-global-color-secondary: #2e4057;
  --e-global-color-text: #494441;
  --e-global-color-accent: #c5280f;
  overflow-x: clip;
}

html body.boardpath-site .elementor .bp-native-container.e-con,
html body.boardpath-site .elementor .bp-native-section.e-con,
html body.boardpath-site .elementor .bp-native-custom-section.e-con {
  min-width: 0 !important;
  --width: 100%;
  --flex-grow: 0;
  --flex-shrink: 1;
  --flex-basis: auto;
}

html body.boardpath-site .elementor .shell.bp-native-container.e-con {
  width: 100% !important;
  max-width: 1320px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: clamp(22px, 5vw, 72px) !important;
  padding-left: clamp(22px, 5vw, 72px) !important;
}

html body.boardpath-site .elementor .bp-native-container.e-con > .e-con,
html body.boardpath-site .elementor .bp-native-container.e-con > .elementor-element {
  min-width: 0 !important;
  max-width: 100%;
}

/* Global buttons: red primary, transparent secondary, slate header CTA. */
html body.boardpath-site .elementor .elementor-widget-button .elementor-widget-container .elementor-button-wrapper > a.elementor-button,
html body.boardpath-site .elementor .elementor-widget-form form.elementor-form button.elementor-button,
html body.boardpath-site .elementor .bp-native-form button.elementor-button,
html body.boardpath-site a.button:not(.secondary),
html body.boardpath-site button.button:not(.secondary) {
  border: 1px solid #c5280f !important;
  border-radius: 0 !important;
  color: #faf9f7 !important;
  background-color: #c5280f !important;
  background-image: none !important;
  box-shadow: none !important;
  -webkit-text-fill-color: #faf9f7 !important;
  opacity: 1 !important;
}

html body.boardpath-site .elementor .elementor-widget-button .elementor-widget-container .elementor-button-wrapper > a.elementor-button:hover,
html body.boardpath-site .elementor .elementor-widget-button .elementor-widget-container .elementor-button-wrapper > a.elementor-button:focus-visible,
html body.boardpath-site .elementor .elementor-widget-form form.elementor-form button.elementor-button:hover,
html body.boardpath-site .elementor .elementor-widget-form form.elementor-form button.elementor-button:focus-visible,
html body.boardpath-site a.button:not(.secondary):hover,
html body.boardpath-site a.button:not(.secondary):focus-visible {
  border-color: #a9210d !important;
  background-color: #a9210d !important;
}

html body.boardpath-site .elementor .elementor-widget-button.bp-button-secondary .elementor-widget-container .elementor-button-wrapper > a.elementor-button,
html body.boardpath-site a.button.secondary {
  border: 1px solid rgba(250,249,247,.52) !important;
  color: #faf9f7 !important;
  background-color: transparent !important;
  -webkit-text-fill-color: #faf9f7 !important;
}

html body.boardpath-site .elementor .elementor-widget-button.bp-button-secondary .elementor-widget-container .elementor-button-wrapper > a.elementor-button:hover,
html body.boardpath-site .elementor .elementor-widget-button.bp-button-secondary .elementor-widget-container .elementor-button-wrapper > a.elementor-button:focus-visible,
html body.boardpath-site a.button.secondary:hover,
html body.boardpath-site a.button.secondary:focus-visible {
  border-color: #2e4057 !important;
  background-color: #2e4057 !important;
}

/* Theme Builder header/footer should not inherit Elementor Kit link colors. */
html body.boardpath-site .elementor-location-header,
html body.boardpath-site .elementor-location-header header,
html body.boardpath-site header.bp-native-header {
  color: #faf9f7 !important;
  background: #201e1d !important;
}

html body.boardpath-site .elementor-location-header .elementor .elementor-widget-nav-menu .elementor-widget-container .elementor-nav-menu--main a.elementor-item,
html body.boardpath-site .elementor-location-header .elementor .elementor-widget-nav-menu .elementor-widget-container .elementor-nav-menu--dropdown a.elementor-item,
html body.boardpath-site header.bp-native-header .elementor-widget-nav-menu .elementor-widget-container a.elementor-item {
  color: #d8d4d0 !important;
  fill: #d8d4d0 !important;
  -webkit-text-fill-color: #d8d4d0 !important;
  opacity: 1 !important;
}

html body.boardpath-site .elementor-location-header .elementor .elementor-widget-nav-menu .elementor-widget-container .elementor-nav-menu--main a.elementor-item:hover,
html body.boardpath-site .elementor-location-header .elementor .elementor-widget-nav-menu .elementor-widget-container .elementor-nav-menu--main a.elementor-item:focus-visible,
html body.boardpath-site .elementor-location-header .elementor .elementor-widget-nav-menu .elementor-widget-container li.current-menu-item > a.elementor-item,
html body.boardpath-site header.bp-native-header .elementor-widget-nav-menu .elementor-widget-container a.elementor-item:hover {
  color: #faf9f7 !important;
  fill: #faf9f7 !important;
  -webkit-text-fill-color: #faf9f7 !important;
}

html body.boardpath-site .elementor-location-header .elementor .elementor-widget-button .elementor-widget-container .elementor-button-wrapper > a.elementor-button,
html body.boardpath-site header.bp-native-header .elementor-widget-button .elementor-widget-container .elementor-button-wrapper > a.elementor-button {
  border-color: #2e4057 !important;
  color: #faf9f7 !important;
  background-color: #2e4057 !important;
  -webkit-text-fill-color: #faf9f7 !important;
}

html body.boardpath-site .elementor-location-header .elementor .elementor-widget-button .elementor-widget-container .elementor-button-wrapper > a.elementor-button:hover,
html body.boardpath-site .elementor-location-header .elementor .elementor-widget-button .elementor-widget-container .elementor-button-wrapper > a.elementor-button:focus-visible {
  border-color: #3d5673 !important;
  background-color: #3d5673 !important;
}

html body.boardpath-site .elementor-location-footer,
html body.boardpath-site .elementor-location-footer footer,
html body.boardpath-site footer.bp-native-footer {
  color: #c8c4c1 !important;
  background: #201e1d !important;
}

html body.boardpath-site .elementor-location-footer a,
html body.boardpath-site footer.bp-native-footer a {
  color: #c8c4c1 !important;
  -webkit-text-fill-color: #c8c4c1 !important;
}

/* Converted heroes and core editorial layouts. */
html body.boardpath-site .elementor .hero-inner.bp-native-container,
html body.boardpath-site .elementor .subhero-inner.bp-native-container,
html body.boardpath-site .elementor .engagement-hero-inner.bp-native-container,
html body.boardpath-site .elementor .page-hero-inner.bp-native-container {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr) !important;
  column-gap: clamp(48px, 7vw, 110px) !important;
  row-gap: 48px !important;
  align-items: center !important;
}

html body.boardpath-site .elementor .subhero-inner.bp-native-container,
html body.boardpath-site .elementor .engagement-hero-inner.bp-native-container {
  min-height: min(760px, calc(100svh - 70px)) !important;
  padding-top: clamp(82px, 9vw, 132px) !important;
  padding-bottom: clamp(72px, 8vw, 112px) !important;
}

html body.boardpath-site .elementor :is(.hero-inner,.subhero-inner,.engagement-hero-inner,.page-hero-inner) h1.elementor-heading-title {
  max-width: 13ch !important;
  margin: 30px 0 !important;
  font-size: clamp(50px, 6vw, 86px) !important;
  line-height: .98 !important;
}

html body.boardpath-site .elementor .detail-meta.bp-native-container {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1px !important;
  width: 100% !important;
}

html body.boardpath-site .elementor .detail-meta.bp-native-container > .e-con {
  min-width: 0 !important;
  width: auto !important;
}

html body.boardpath-site .elementor .elementor-widget-bp-motif,
html body.boardpath-site .elementor .elementor-widget-bp-motif > .elementor-widget-container,
html body.boardpath-site .elementor .motif-band-wrap {
  width: 100% !important;
  max-width: none !important;
  align-self: stretch !important;
}

html body.boardpath-site .elementor .elementor-widget-bp-motif .motif-band {
  display: grid !important;
  width: 100% !important;
  max-width: 1320px !important;
  grid-template-columns: repeat(18, minmax(0, 1fr)) !important;
  gap: 3px !important;
  align-items: end !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

html body.boardpath-site .elementor .page-hero-inner .hero-index.bp-native-container {
  display: grid !important;
  min-height: 260px !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 3px !important;
  align-items: end !important;
  padding: clamp(24px, 4vw, 42px) !important;
}

html body.boardpath-site .elementor .page-hero-inner .hero-index > .elementor-element {
  min-width: 0 !important;
  width: auto !important;
}

html body.boardpath-site .elementor .section-head.bp-native-container,
html body.boardpath-site .elementor .proof-inner.bp-native-container,
html body.boardpath-site .elementor .cta-inner.bp-native-container,
html body.boardpath-site .elementor .movements-head.bp-native-container,
html body.boardpath-site .elementor .comparison-head.bp-native-container {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr) !important;
  column-gap: clamp(46px, 7vw, 104px) !important;
  row-gap: 36px !important;
  align-items: start !important;
}

html body.boardpath-site .elementor .loop-grid.bp-native-container {
  display: grid !important;
  grid-template-columns: minmax(420px, .8fr) minmax(0, 1.2fr) !important;
  column-gap: clamp(58px, 8vw, 118px) !important;
  row-gap: 48px !important;
  align-items: center !important;
}

html body.boardpath-site .elementor .loop-grid.bp-native-container > .e-con {
  min-width: 0 !important;
  width: auto !important;
}

html body.boardpath-site .elementor .loop-figure.bp-native-container {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  gap: 2px !important;
  width: 100% !important;
}

html body.boardpath-site .elementor .loop-figure.bp-native-container > .loop-node {
  min-width: 0 !important;
  width: auto !important;
}

html body.boardpath-site .elementor .loop-copy {
  min-width: 0 !important;
  max-width: 720px !important;
  width: 100% !important;
}

html body.boardpath-site .elementor .loop-copy h2.elementor-heading-title {
  max-width: 12ch !important;
  font-size: clamp(40px, 4.2vw, 62px) !important;
  line-height: 1.01 !important;
}

/* Six-discipline explorer: fluid desktop, card grid on tablet/mobile. */
html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-explorer {
  overflow: hidden !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars {
  display: grid !important;
  min-width: 0 !important;
  width: 100% !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 2px !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar {
  min-width: 0 !important;
  max-width: 100% !important;
  width: auto !important;
  overflow: hidden !important;
  white-space: normal !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bar :is(.discipline-name,.discipline-short) {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer :is(.discipline-return,.discipline-return-label) {
  min-width: 0 !important;
  width: 100% !important;
}

/* SOAR: one solid optical line, opaque endpoints, equal visual weight. */
html body.boardpath-site .elementor-widget-bp-soar-telescope .soar-telescope-wrap {
  width: 100% !important;
  overflow: visible !important;
}

html body.boardpath-site .elementor-widget-bp-soar-telescope .soar-telescope {
  width: 100% !important;
  max-width: 1320px !important;
  min-width: 0 !important;
  grid-template-columns: .72fr repeat(4, minmax(0, 1fr)) .72fr !important;
  gap: 0 !important;
  margin: 52px auto 0 !important;
  padding: clamp(32px, 4vw, 54px) !important;
}

html body.boardpath-site .elementor-widget-bp-soar-telescope .soar-telescope::before {
  right: 7% !important;
  left: 7% !important;
  height: 2px !important;
  background: #5b7590 !important;
}

html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-lens::before,
html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-lens::after {
  background: #5b7590 !important;
}

html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-source,
html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-focus {
  width: 112px !important;
  min-width: 112px !important;
  padding: 14px !important;
  border-width: 3px !important;
  color: #faf9f7 !important;
}

html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-source {
  border-color: #5b7590 !important;
  background: #252a2f !important;
}

html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-focus {
  border-color: #c5280f !important;
  background: #37221f !important;
}

html body.boardpath-site .elementor-widget-bp-soar-telescope :is(.telescope-source,.telescope-focus) span {
  display: block !important;
  color: #d9d4d0 !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: .12em !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
}

html body.boardpath-site .elementor-widget-bp-soar-telescope :is(.telescope-source,.telescope-focus) strong {
  display: block !important;
  margin-top: 5px !important;
  color: #faf9f7 !important;
  font-size: 15px !important;
  line-height: 1.05 !important;
}

html body.boardpath-site .elementor-widget-bp-soar-telescope .soar-definitions {
  width: 100% !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
}

@media (max-width: 980px) {
  html body.boardpath-site .elementor :is(
    .hero-inner,
    .subhero-inner,
    .engagement-hero-inner,
    .page-hero-inner,
    .section-head,
    .proof-inner,
    .cta-inner,
    .movements-head,
    .comparison-head,
    .loop-grid,
    .form-shell,
    .cost-grid,
    .fit-grid,
    .v2-founder-grid,
    .v2-method-bridge-grid,
    .v2-about-evidence-grid
  ).bp-native-container {
    grid-template-columns: 1fr !important;
  }

  html body.boardpath-site .elementor .subhero-inner.bp-native-container,
  html body.boardpath-site .elementor .engagement-hero-inner.bp-native-container {
    min-height: auto !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-explorer {
    padding: 28px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar {
    display: grid !important;
    grid-template-columns: 50px minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    grid-template-areas:
      "number name"
      "number short" !important;
    min-height: 148px !important;
    padding: 20px !important;
    border: 1px solid #c9c5c0 !important;
    background: #f3f2f0 !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-column {
    display: none !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-number {
    grid-area: number !important;
    align-self: start !important;
    margin: 0 !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-name {
    grid-area: name !important;
    min-height: 0 !important;
    margin: 2px 0 8px !important;
    padding: 0 0 0 14px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-short {
    grid-area: short !important;
    margin: 0 !important;
    padding: 0 0 0 14px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-return {
    display: none !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-return-label {
    margin: 24px 0 0 !important;
  }

  html body.boardpath-site .elementor-widget-bp-soar-telescope .soar-telescope {
    grid-template-columns: .68fr repeat(4, minmax(0, 1fr)) .68fr !important;
    min-height: 330px !important;
    padding: 28px 20px !important;
  }

  html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-lens {
    min-width: 64px !important;
    width: 76% !important;
  }

  html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-lens b {
    font-size: clamp(36px, 7vw, 58px) !important;
  }

  html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-source,
  html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-focus {
    width: 86px !important;
    min-width: 86px !important;
    padding: 10px !important;
  }

  html body.boardpath-site .elementor-widget-bp-soar-telescope :is(.telescope-source,.telescope-focus) strong {
    font-size: 12px !important;
  }
}

/* Version 2.9: final discipline sizing lock.
   The desktop chart reserves enough vertical space for a genuinely taller
   Follow-Through bar, while mobile choices become compact selection rows. */
@media (min-width: 981px) {
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar {
    grid-template-rows: 176px auto auto auto !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:nth-child(5) .discipline-column {
    height: 116px !important;
    max-height: 116px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:nth-child(6) .discipline-column {
    height: 168px !important;
    max-height: 168px !important;
  }
}

@media (max-width: 680px) {
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-explorer {
    padding: 10px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars {
    gap: 2px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:hover,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:focus,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar[aria-selected="true"] {
    min-height: 68px !important;
    grid-template-columns: 38px minmax(0, 1fr) !important;
    grid-template-rows: 5px minmax(48px, auto) !important;
    grid-template-areas:
      "motif motif"
      "number name" !important;
    padding: 0 12px 10px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar .discipline-column,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:nth-child(6) .discipline-column {
    width: 100% !important;
    height: 5px !important;
    max-height: 5px !important;
    min-height: 5px !important;
    margin: 0 0 7px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-number {
    width: 38px !important;
    height: 38px !important;
    align-self: center !important;
    border-top-width: 4px !important;
    font-size: 11px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-name {
    align-self: center !important;
    margin: 0 !important;
    padding: 0 0 0 11px !important;
    font-size: 14px !important;
    line-height: 1.15 !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-short,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-return,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-return-label {
    display: none !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .bp-system-variant-home .discipline-detail {
    margin-top: 14px !important;
  }
}

/* V2.16 final Targeted Solutions lock.
   These component selectors intentionally do not depend on a WordPress page
   body class, because previously installed Elementor documents may not expose
   the expected slug class in every preview and Theme Builder context. */
html body.boardpath-site .elementor .subhero .eyebrow,
html body.boardpath-site .elementor .subhero .eyebrow p,
html body.boardpath-site .elementor .section .eyebrow,
html body.boardpath-site .elementor .section .eyebrow p,
html body.boardpath-site .elementor .cta .eyebrow,
html body.boardpath-site .elementor .cta .eyebrow p {
  margin: 0 !important;
  color: #5b7590 !important;
  font-family: var(--bp-display-font) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .14em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

html body.boardpath-site .elementor :is(.subhero,.cta) .eyebrow,
html body.boardpath-site .elementor :is(.subhero,.cta) .eyebrow p,
html body.boardpath-site .elementor .section:has(.process-grid) .eyebrow,
html body.boardpath-site .elementor .section:has(.process-grid) .eyebrow p {
  color: #8fa3b8 !important;
}

html body.boardpath-site .elementor .subhero-inner.bp-native-container {
  display: grid !important;
  min-height: 590px !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr) !important;
  gap: clamp(46px, 8vw, 118px) !important;
  align-items: end !important;
  padding-top: clamp(84px, 10vw, 144px) !important;
  padding-bottom: clamp(54px, 7vw, 88px) !important;
}

html body.boardpath-site .elementor .subhero-inner.bp-native-container > .e-con {
  width: auto !important;
  min-width: 0 !important;
  align-self: end !important;
}

html body.boardpath-site .elementor .detail-meta.bp-native-container {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid #484441 !important;
  background: #484441 !important;
}

html body.boardpath-site .elementor .detail-meta.bp-native-container :is(
  .e-con,
  .elementor-element,
  .elementor-widget-container
) {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

html body.boardpath-site .elementor .detail-meta.bp-native-container > .e-con {
  display: flex !important;
  min-height: 132px !important;
  width: auto !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding: 22px !important;
  background: #292725 !important;
}

html body.boardpath-site .elementor .detail-meta.bp-native-container :is(dt,dd) {
  color: #faf9f7 !important;
  font-family: var(--bp-reading-font) !important;
}

html body.boardpath-site .elementor .detail-meta.bp-native-container dt {
  margin: 0 !important;
  color: #9faebc !important;
  font-family: var(--bp-display-font) !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: .1em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

html body.boardpath-site .elementor .detail-meta.bp-native-container dd {
  margin: 14px 0 0 !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}

html body.boardpath-site .elementor .section.bp-native-section {
  min-height: 0 !important;
  padding-top: clamp(82px, 9vw, 132px) !important;
  padding-bottom: clamp(82px, 9vw, 132px) !important;
}

html body.boardpath-site .elementor .section.bp-native-section:has(.bullet-list) {
  color: #201e1d !important;
  background: #e8e6e2 !important;
}

html body.boardpath-site .elementor .section.bp-native-section:has(.process-grid) {
  color: #faf9f7 !important;
  background: #201e1d !important;
}

html body.boardpath-site .elementor .section-head.bp-native-container {
  display: grid !important;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr) !important;
  gap: clamp(42px, 8vw, 120px) !important;
  align-items: start !important;
}

html body.boardpath-site .elementor .section-head.bp-native-container > .e-con {
  width: auto !important;
  min-width: 0 !important;
}

/* Elementor may place bullet-list on either the Text Editor widget or its ul. */
html body.boardpath-site .elementor .bullet-list {
  width: 100% !important;
  margin-top: 46px !important;
}

html body.boardpath-site .elementor :is(
  .bullet-list > .elementor-widget-container > ul,
  .bullet-list .elementor-widget-container > ul,
  ul.bullet-list
) {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-top: 2px solid #201e1d !important;
  list-style: none !important;
}

html body.boardpath-site .elementor .bullet-list li {
  position: relative !important;
  margin: 0 !important;
  padding: 20px 0 20px 30px !important;
  border-bottom: 1px solid #d4d0cc !important;
  color: #494441 !important;
  font-family: var(--bp-reading-font) !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
  list-style: none !important;
}

html body.boardpath-site .elementor .bullet-list li::before {
  position: absolute !important;
  left: 0 !important;
  color: #c5280f !important;
  content: "—" !important;
  font-family: var(--bp-display-font) !important;
  font-weight: 800 !important;
}

html body.boardpath-site .elementor .change-grid.bp-native-container {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 2px !important;
  margin-top: 58px !important;
  border: 2px solid #201e1d !important;
  background: #201e1d !important;
}

html body.boardpath-site .elementor .change-grid.bp-native-container > .change.e-con {
  min-height: 300px !important;
  width: auto !important;
  padding: clamp(24px, 3vw, 38px) !important;
  color: #201e1d !important;
  background: #f3f2f0 !important;
}

html body.boardpath-site .elementor .change-grid.bp-native-container > .change.e-con:nth-child(2) {
  background: #e8e6e2 !important;
}

html body.boardpath-site .elementor .change :is(strong,p) {
  color: #57514e !important;
  font-family: var(--bp-reading-font) !important;
}

html body.boardpath-site .elementor .change strong {
  color: #2e4057 !important;
  font-family: var(--bp-display-font) !important;
  font-size: 11px !important;
  letter-spacing: .1em !important;
}

html body.boardpath-site .elementor .change h3.elementor-heading-title {
  margin: 54px 0 14px !important;
  color: #201e1d !important;
  font-size: 21px !important;
  letter-spacing: -.024em !important;
  line-height: 1.14 !important;
}

html body.boardpath-site .elementor .change p {
  font-size: 16px !important;
  line-height: 1.58 !important;
}

html body.boardpath-site .elementor .process-grid.bp-native-container {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 2px !important;
  margin-top: 54px !important;
  border: 2px solid #46413e !important;
  background: #46413e !important;
}

html body.boardpath-site .elementor .process-grid.bp-native-container > .process-step.e-con {
  min-height: 340px !important;
  width: auto !important;
  padding: clamp(26px, 3vw, 42px) !important;
  color: #faf9f7 !important;
  background: #292725 !important;
}

html body.boardpath-site .elementor .process-grid.bp-native-container > .process-step.e-con:nth-child(2) {
  background: #2e4057 !important;
}

html body.boardpath-site .elementor .section:has(.process-grid) h2.elementor-heading-title,
html body.boardpath-site .elementor .process-step h3.elementor-heading-title {
  color: #faf9f7 !important;
}

html body.boardpath-site .elementor .section:has(.process-grid) h2.elementor-heading-title span,
html body.boardpath-site .elementor .process-step strong {
  color: #8fa3b8 !important;
}

html body.boardpath-site .elementor .section:has(.process-grid) :is(.reading,.reading p),
html body.boardpath-site .elementor .process-step p {
  color: #cbc6c3 !important;
}

html body.boardpath-site .elementor .process-step strong {
  font-family: var(--bp-display-font) !important;
  font-size: 10px !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

html body.boardpath-site .elementor .process-step h3.elementor-heading-title {
  margin: 76px 0 17px !important;
  font-size: 26px !important;
  letter-spacing: -.03em !important;
  line-height: 1.08 !important;
}

html body.boardpath-site .elementor .process-step p {
  font-family: var(--bp-reading-font) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

@media (max-width: 980px) {
  html body.boardpath-site .elementor .subhero-inner.bp-native-container,
  html body.boardpath-site .elementor .section-head.bp-native-container {
    min-height: 0 !important;
    grid-template-columns: 1fr !important;
  }

  html body.boardpath-site .elementor .change-grid.bp-native-container,
  html body.boardpath-site .elementor .process-grid.bp-native-container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  html body.boardpath-site .elementor .detail-meta.bp-native-container,
  html body.boardpath-site .elementor .change-grid.bp-native-container,
  html body.boardpath-site .elementor .process-grid.bp-native-container {
    grid-template-columns: 1fr !important;
  }

  html body.boardpath-site .elementor .detail-meta.bp-native-container > .e-con {
    min-height: 96px !important;
    padding: 18px !important;
  }

  html body.boardpath-site .elementor .section.bp-native-section {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }

  html body.boardpath-site .elementor .change-grid.bp-native-container > .change.e-con,
  html body.boardpath-site .elementor .process-grid.bp-native-container > .process-step.e-con {
    min-height: auto !important;
  }

  html body.boardpath-site .elementor .change h3.elementor-heading-title,
  html body.boardpath-site .elementor .process-step h3.elementor-heading-title {
    margin-top: 42px !important;
  }
}

/* V2.16 solution-template fidelity lock.
   The HTML-to-Elementor conversion moves list and card classes to widget
   wrappers and cannot retain the original inline section backgrounds. */
html body.boardpath-site.boardpath-solution-page .elementor .subhero {
  color: #faf9f7 !important;
  background: #201e1d !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .subhero-inner.bp-native-container {
  display: grid !important;
  min-height: 590px !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr) !important;
  gap: clamp(46px, 8vw, 118px) !important;
  align-items: end !important;
  padding-top: clamp(84px, 10vw, 144px) !important;
  padding-bottom: clamp(54px, 7vw, 88px) !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .subhero-inner.bp-native-container > .e-con {
  width: auto !important;
  min-width: 0 !important;
  align-self: end !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .subhero h1.elementor-heading-title {
  max-width: 14ch !important;
  margin: 32px 0 30px !important;
  font-size: clamp(48px, 6vw, 82px) !important;
  letter-spacing: -.05em !important;
  line-height: .98 !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .subhero-copy,
html body.boardpath-site.boardpath-solution-page .elementor .subhero-copy p {
  max-width: 58ch !important;
  color: #d1cdca !important;
  font-family: var(--bp-reading-font) !important;
  font-size: 20px !important;
  line-height: 1.65 !important;
}

/* Restore the specification panel without styling Elementor's internal divs. */
html body.boardpath-site.boardpath-solution-page .elementor .detail-meta.bp-native-container {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid #484441 !important;
  background: #484441 !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .detail-meta.bp-native-container :is(
  .e-con,
  .elementor-element,
  .elementor-widget-container
) {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .detail-meta.bp-native-container > .e-con {
  display: flex !important;
  min-height: 132px !important;
  width: auto !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding: 22px !important;
  background: #292725 !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .detail-meta.bp-native-container dt {
  margin: 0 !important;
  color: #9faebc !important;
  font-family: var(--bp-display-font) !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: .1em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .detail-meta.bp-native-container dd {
  margin: 14px 0 0 !important;
  color: #faf9f7 !important;
  font-family: var(--bp-reading-font) !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}

/* Recreate the original solution-page section rhythm and dropped surfaces. */
html body.boardpath-site.boardpath-solution-page .elementor .section.bp-native-section {
  min-height: 0 !important;
  padding-top: clamp(82px, 9vw, 132px) !important;
  padding-bottom: clamp(82px, 9vw, 132px) !important;
  color: #201e1d !important;
  background: #f3f2f0 !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .section.bp-native-section:has(.bullet-list) {
  background: #e8e6e2 !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .section.bp-native-section:has(.process-grid) {
  color: #faf9f7 !important;
  background: #201e1d !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .section-head.bp-native-container {
  display: grid !important;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr) !important;
  gap: clamp(42px, 8vw, 120px) !important;
  align-items: start !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .section-head.bp-native-container > .e-con {
  width: auto !important;
  min-width: 0 !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .section h2.elementor-heading-title {
  max-width: 17ch !important;
  margin: 22px 0 0 !important;
  font-size: clamp(32px, 4.1vw, 56px) !important;
  letter-spacing: -.038em !important;
  line-height: 1.04 !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .section .reading,
html body.boardpath-site.boardpath-solution-page .elementor .section .reading p {
  color: #494441 !important;
  font-family: var(--bp-reading-font) !important;
  font-size: clamp(19px, 1.8vw, 23px) !important;
  line-height: 1.68 !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .section.bp-native-section:has(.process-grid) h2.elementor-heading-title {
  color: #faf9f7 !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .section.bp-native-section:has(.process-grid) h2.elementor-heading-title span {
  color: #8fa3b8 !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .section.bp-native-section:has(.process-grid) :is(.reading,.reading p) {
  color: #cbc6c3 !important;
}

/* The class lives on the Text Editor widget after conversion, not on its ul. */
html body.boardpath-site.boardpath-solution-page .elementor .bullet-list.bp-native-text {
  width: 100% !important;
  margin-top: 46px !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .bullet-list.bp-native-text > .elementor-widget-container > ul {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-top: 2px solid #201e1d !important;
  list-style: none !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .bullet-list.bp-native-text li {
  position: relative !important;
  margin: 0 !important;
  padding: 20px 0 20px 30px !important;
  border-bottom: 1px solid #d4d0cc !important;
  color: #494441 !important;
  font-family: var(--bp-reading-font) !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .bullet-list.bp-native-text li::before {
  position: absolute !important;
  left: 0 !important;
  color: #c5280f !important;
  content: "—" !important;
  font-family: var(--bp-display-font) !important;
  font-weight: 800 !important;
}

/* Outcome and movement cards retain the prototype's borders, height, and hierarchy. */
html body.boardpath-site.boardpath-solution-page .elementor .change-grid.bp-native-container {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 2px !important;
  margin-top: 58px !important;
  border: 2px solid #201e1d !important;
  background: #201e1d !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .change-grid.bp-native-container > .change.e-con {
  min-height: 300px !important;
  width: auto !important;
  padding: clamp(24px, 3vw, 38px) !important;
  color: #201e1d !important;
  background: #f3f2f0 !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .change-grid.bp-native-container > .change.e-con:nth-child(2) {
  background: #e8e6e2 !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .change strong {
  color: #2e4057 !important;
  font-family: var(--bp-display-font) !important;
  font-size: 11px !important;
  letter-spacing: .1em !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .change h3.elementor-heading-title {
  margin: 54px 0 14px !important;
  color: #201e1d !important;
  font-size: 21px !important;
  letter-spacing: -.024em !important;
  line-height: 1.14 !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .change p {
  color: #57514e !important;
  font-family: var(--bp-reading-font) !important;
  font-size: 16px !important;
  line-height: 1.58 !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .process-grid.bp-native-container {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 2px !important;
  margin-top: 54px !important;
  border: 2px solid #46413e !important;
  background: #46413e !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .process-grid.bp-native-container > .process-step.e-con {
  min-height: 340px !important;
  width: auto !important;
  padding: clamp(26px, 3vw, 42px) !important;
  color: #faf9f7 !important;
  background: #292725 !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .process-grid.bp-native-container > .process-step.e-con:nth-child(2) {
  background: #2e4057 !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .process-step strong {
  color: #8fa3b8 !important;
  font-family: var(--bp-display-font) !important;
  font-size: 10px !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .process-step h3.elementor-heading-title {
  margin: 76px 0 17px !important;
  color: #faf9f7 !important;
  font-size: 26px !important;
  letter-spacing: -.03em !important;
  line-height: 1.08 !important;
}

html body.boardpath-site.boardpath-solution-page .elementor .process-step p {
  color: #cbc6c3 !important;
  font-family: var(--bp-reading-font) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

@media (max-width: 980px) {
  html body.boardpath-site.boardpath-solution-page .elementor .subhero-inner.bp-native-container,
  html body.boardpath-site.boardpath-solution-page .elementor .section-head.bp-native-container {
    min-height: 0 !important;
    grid-template-columns: 1fr !important;
  }

  html body.boardpath-site.boardpath-solution-page .elementor .change-grid.bp-native-container,
  html body.boardpath-site.boardpath-solution-page .elementor .process-grid.bp-native-container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  html body.boardpath-site.boardpath-solution-page .elementor .subhero-inner.bp-native-container {
    padding-top: 76px !important;
    padding-bottom: 54px !important;
  }

  html body.boardpath-site.boardpath-solution-page .elementor .detail-meta.bp-native-container,
  html body.boardpath-site.boardpath-solution-page .elementor .change-grid.bp-native-container,
  html body.boardpath-site.boardpath-solution-page .elementor .process-grid.bp-native-container {
    grid-template-columns: 1fr !important;
  }

  html body.boardpath-site.boardpath-solution-page .elementor .detail-meta.bp-native-container > .e-con {
    min-height: 96px !important;
    padding: 18px !important;
  }

  html body.boardpath-site.boardpath-solution-page .elementor .section.bp-native-section {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }

  html body.boardpath-site.boardpath-solution-page .elementor .change-grid.bp-native-container > .change.e-con,
  html body.boardpath-site.boardpath-solution-page .elementor .process-grid.bp-native-container > .process-step.e-con {
    min-height: auto !important;
  }

  html body.boardpath-site.boardpath-solution-page .elementor .change h3.elementor-heading-title,
  html body.boardpath-site.boardpath-solution-page .elementor .process-step h3.elementor-heading-title {
    margin-top: 42px !important;
  }
}

/* Version 2.9: two deliberate System presentations. */
html body.boardpath-site .elementor-widget-bp-system-explorer .system.bp-system-variant-home {
  color: #faf9f7 !important;
  background: #201e1d !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .system.bp-system-variant-system {
  color: #201e1d !important;
  background: #f3f2f0 !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer :is(.bp-system-variant-home,.bp-system-variant-system) .system-top {
  display: grid !important;
  grid-template-columns: minmax(0, .82fr) minmax(300px, 1.18fr) !important;
  gap: clamp(42px, 8vw, 120px) !important;
  align-items: start !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .bp-system-variant-home .system-top :is(h2,h2 span) {
  color: #faf9f7 !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .bp-system-variant-home .system-top h2 span {
  color: #8fa3b8 !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .bp-system-variant-home :is(.system-intro,.system-intro p) {
  color: #cbc6c3 !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .bp-system-variant-system .eyebrow.light {
  color: #5b7590 !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .bp-system-variant-system .system-top h2 {
  color: #201e1d !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .bp-system-variant-system .system-top h2 span {
  color: #2e4057 !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .bp-system-variant-system :is(.system-intro,.system-intro p) {
  color: #494441 !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer :is(.bp-system-variant-home,.bp-system-variant-system) .discipline-explorer {
  color: #faf9f7 !important;
  background: #201e1d !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer :is(.bp-system-variant-home,.bp-system-variant-system) .discipline-detail {
  color: #201e1d !important;
  background: #faf9f7 !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .bp-system-variant-home .discipline-detail {
  margin-top: clamp(38px, 5vw, 62px) !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .bp-system-variant-system .discipline-explorer {
  margin-top: clamp(44px, 6vw, 76px) !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bar .discipline-column {
  height: var(--bar-height) !important;
  max-height: var(--bar-height) !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bar:nth-child(6) .discipline-column {
  height: 148px !important;
  max-height: 148px !important;
}

/* Flagship hero card: apply row rules only to the four semantic rows,
   never to Elementor's wrapper divs. */
html body.boardpath-site .elementor .engagement-hero-inner.bp-native-container {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr) !important;
  gap: clamp(50px, 8vw, 120px) !important;
  align-items: end !important;
}

html body.boardpath-site .elementor .engagement-card.bp-native-container {
  align-self: end !important;
  width: 100% !important;
  max-width: 520px !important;
  padding: 30px !important;
  border: 0 !important;
  border-top: 5px solid #c5280f !important;
  color: #faf9f7 !important;
  background: #2e4057 !important;
}

html body.boardpath-site .elementor .engagement-card.bp-native-container div {
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

html body.boardpath-site .elementor .engagement-card.bp-native-container > .number {
  margin: 0 0 80px !important;
}

html body.boardpath-site .elementor .engagement-card.bp-native-container > .number :is(p,.elementor-widget-container) {
  margin: 0 !important;
  color: #b9c6d1 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .12em !important;
}

html body.boardpath-site .elementor .engagement-card.bp-native-container > .bp-native-container {
  display: block !important;
  width: 100% !important;
}

html body.boardpath-site .elementor .engagement-card.bp-native-container > .bp-native-container > .bp-native-container {
  display: block !important;
  width: 100% !important;
  padding: 18px 0 !important;
  border-top: 1px solid rgba(255,255,255,.22) !important;
}

html body.boardpath-site .elementor .engagement-card.bp-native-container > .bp-native-container > .bp-native-container > :first-child {
  margin-bottom: 6px !important;
  color: #b9c6d1 !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

html body.boardpath-site .elementor .engagement-card.bp-native-container > .bp-native-container > .bp-native-container > :last-child {
  margin: 0 !important;
  color: #faf9f7 !important;
  font-family: var(--bp-reading-font) !important;
  font-size: 17px !important;
  line-height: 1.45 !important;
  text-transform: none !important;
}

html body.boardpath-site .elementor .engagement-card.bp-native-container > .bp-native-container > .bp-native-container p {
  margin: 0 !important;
  color: inherit !important;
  font: inherit !important;
}

/* Flagship bridge graph: only its six direct children are bars. */
html body.boardpath-site .elementor .v2-method-bridge-grid.bp-native-container {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(48px, 8vw, 116px) !important;
  align-items: center !important;
}

html body.boardpath-site .elementor .v2-six.bp-native-container {
  display: grid !important;
  min-height: 300px !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 3px !important;
  align-items: end !important;
}

html body.boardpath-site .elementor .v2-six.bp-native-container div {
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

html body.boardpath-site .elementor .v2-six.bp-native-container > .bp-native-container {
  display: flex !important;
  min-width: 0 !important;
  min-height: 54px !important;
  width: auto !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 12px 8px !important;
  color: #faf9f7 !important;
  background: #2e4057 !important;
}

html body.boardpath-site .elementor .v2-six.bp-native-container > .bp-native-container:nth-child(1) { height: 30% !important; }
html body.boardpath-site .elementor .v2-six.bp-native-container > .bp-native-container:nth-child(2) { height: 44% !important; background: #394f67 !important; }
html body.boardpath-site .elementor .v2-six.bp-native-container > .bp-native-container:nth-child(3) { height: 58% !important; background: #435a72 !important; }
html body.boardpath-site .elementor .v2-six.bp-native-container > .bp-native-container:nth-child(4) { height: 72% !important; background: #4d657d !important; }
html body.boardpath-site .elementor .v2-six.bp-native-container > .bp-native-container:nth-child(5) { height: 86% !important; background: #5b7590 !important; }
html body.boardpath-site .elementor .v2-six.bp-native-container > .bp-native-container:nth-child(6) { height: 100% !important; background: #c5280f !important; }

html body.boardpath-site .elementor .v2-six.bp-native-container > .bp-native-container .elementor-widget {
  width: 100% !important;
  color: inherit !important;
}

html body.boardpath-site .elementor .v2-six.bp-native-container > .bp-native-container :is(strong,p,.elementor-widget-container) {
  margin: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  background: transparent !important;
}

html body.boardpath-site .elementor .v2-six.bp-native-container > .bp-native-container strong {
  display: block !important;
  font-size: 9px !important;
  letter-spacing: .08em !important;
}

html body.boardpath-site .elementor .v2-six.bp-native-container > .bp-native-container span {
  display: none !important;
}

/* Existing Elementor Pro headers are enhanced into the full Solutions mega menu. */
@media (min-width: 981px) {
  html body.boardpath-site .elementor-location-header .bp-solutions-mega,
  html body.boardpath-site header.bp-native-header .bp-solutions-mega {
    position: relative !important;
  }

  html body.boardpath-site .elementor-location-header .bp-solutions-mega > ul.bp-mega-menu,
  html body.boardpath-site header.bp-native-header .bp-solutions-mega > ul.bp-mega-menu {
    position: absolute !important;
    z-index: 9999 !important;
    top: 100% !important;
    left: 0 !important;
    display: none !important;
    width: min(1120px, calc(100vw - 64px)) !important;
    grid-template-columns: minmax(300px, .86fr) repeat(2, minmax(250px, 1fr)) !important;
    grid-template-rows: repeat(3, minmax(112px, auto)) !important;
    gap: 1px !important;
    padding: 1px !important;
    overflow: hidden !important;
    border: 0 !important;
    border-top: 5px solid #c5280f !important;
    background: #c9c5c0 !important;
    box-shadow: 0 24px 50px rgba(0,0,0,.32) !important;
  }

  html body.boardpath-site .elementor-location-header .bp-solutions-mega:hover > ul.bp-mega-menu,
  html body.boardpath-site .elementor-location-header .bp-solutions-mega:focus-within > ul.bp-mega-menu,
  html body.boardpath-site header.bp-native-header .bp-solutions-mega:hover > ul.bp-mega-menu,
  html body.boardpath-site header.bp-native-header .bp-solutions-mega:focus-within > ul.bp-mega-menu {
    display: grid !important;
  }

  html body.boardpath-site .elementor-location-header ul.bp-mega-menu > li,
  html body.boardpath-site header.bp-native-header ul.bp-mega-menu > li {
    display: block !important;
    min-width: 0 !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: #f3f2f0 !important;
  }

  html body.boardpath-site .elementor-location-header ul.bp-mega-menu > li.bp-mega-feature,
  html body.boardpath-site header.bp-native-header ul.bp-mega-menu > li.bp-mega-feature {
    grid-column: 1 !important;
    grid-row: 1 / 4 !important;
    background: #2e4057 !important;
  }

  html body.boardpath-site .elementor-location-header ul.bp-mega-menu > li > a.elementor-sub-item,
  html body.boardpath-site header.bp-native-header ul.bp-mega-menu > li > a.elementor-sub-item {
    display: flex !important;
    min-height: 112px !important;
    height: 100% !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 26px 30px !important;
    border: 0 !important;
    color: #201e1d !important;
    background: #f3f2f0 !important;
    white-space: normal !important;
  }

  html body.boardpath-site .elementor-location-header ul.bp-mega-menu > li.bp-mega-feature > a.elementor-sub-item,
  html body.boardpath-site header.bp-native-header ul.bp-mega-menu > li.bp-mega-feature > a.elementor-sub-item {
    justify-content: flex-end !important;
    padding: 54px 46px !important;
    color: #faf9f7 !important;
    background: #2e4057 !important;
  }

  html body.boardpath-site .elementor-location-header ul.bp-mega-menu small,
  html body.boardpath-site header.bp-native-header ul.bp-mega-menu small {
    display: block !important;
    margin: 0 0 12px !important;
    color: #c5280f !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: .13em !important;
    text-transform: uppercase !important;
  }

  html body.boardpath-site .elementor-location-header ul.bp-mega-menu strong,
  html body.boardpath-site header.bp-native-header ul.bp-mega-menu strong {
    display: block !important;
    color: inherit !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    letter-spacing: -.02em !important;
    line-height: 1.15 !important;
  }

  html body.boardpath-site .elementor-location-header ul.bp-mega-menu span,
  html body.boardpath-site header.bp-native-header ul.bp-mega-menu span {
    display: block !important;
    margin-top: 10px !important;
    color: #5f5955 !important;
    font-family: var(--bp-reading-font) !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  html body.boardpath-site .elementor-location-header ul.bp-mega-menu .bp-mega-feature small,
  html body.boardpath-site header.bp-native-header ul.bp-mega-menu .bp-mega-feature small {
    margin-bottom: auto !important;
    color: #c4d0d9 !important;
  }

  html body.boardpath-site .elementor-location-header ul.bp-mega-menu .bp-mega-feature strong,
  html body.boardpath-site header.bp-native-header ul.bp-mega-menu .bp-mega-feature strong {
    max-width: 12ch !important;
    font-size: 34px !important;
  }

  html body.boardpath-site .elementor-location-header ul.bp-mega-menu .bp-mega-feature span,
  html body.boardpath-site header.bp-native-header ul.bp-mega-menu .bp-mega-feature span {
    max-width: 28ch !important;
    color: #d7e0e7 !important;
    font-size: 16px !important;
  }

  html body.boardpath-site .elementor-location-header ul.bp-mega-menu > li.bp-mega-link > a.elementor-sub-item:hover,
  html body.boardpath-site .elementor-location-header ul.bp-mega-menu > li.bp-mega-link > a.elementor-sub-item:focus-visible,
  html body.boardpath-site header.bp-native-header ul.bp-mega-menu > li.bp-mega-link > a.elementor-sub-item:hover,
  html body.boardpath-site header.bp-native-header ul.bp-mega-menu > li.bp-mega-link > a.elementor-sub-item:focus-visible {
    color: #201e1d !important;
    background: #e8e6e2 !important;
  }
}

@media (max-width: 980px) {
  html body.boardpath-site .elementor-widget-bp-system-explorer :is(.bp-system-variant-home,.bp-system-variant-system) .system-top,
  html body.boardpath-site .elementor .engagement-hero-inner.bp-native-container,
  html body.boardpath-site .elementor .v2-method-bridge-grid.bp-native-container {
    grid-template-columns: 1fr !important;
  }

  html body.boardpath-site .elementor .engagement-card.bp-native-container {
    max-width: 620px !important;
  }

  html body.boardpath-site .elementor .v2-six.bp-native-container {
    min-height: 260px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > .discipline-bar .discipline-column,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > .discipline-bar:nth-child(6) .discipline-column {
    height: 9px !important;
    max-height: 9px !important;
  }

  html body.boardpath-site .elementor-location-header ul.bp-mega-menu small,
  html body.boardpath-site .elementor-location-header ul.bp-mega-menu span,
  html body.boardpath-site header.bp-native-header ul.bp-mega-menu small,
  html body.boardpath-site header.bp-native-header ul.bp-mega-menu span {
    display: none !important;
  }

  html body.boardpath-site .elementor-location-header ul.bp-mega-menu strong,
  html body.boardpath-site header.bp-native-header ul.bp-mega-menu strong {
    color: inherit !important;
    font: inherit !important;
  }
}

@media (max-width: 680px) {
  html body.boardpath-site .elementor .v2-six.bp-native-container {
    min-height: 220px !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  html body.boardpath-site .elementor .v2-six.bp-native-container > .bp-native-container {
    padding: 10px 5px !important;
  }
}

@media (max-width: 680px) {
  html body.boardpath-site .elementor .shell.bp-native-container.e-con {
    padding-right: 22px !important;
    padding-left: 22px !important;
  }

  html body.boardpath-site .elementor :is(.hero-inner,.subhero-inner,.engagement-hero-inner,.page-hero-inner) h1.elementor-heading-title {
    font-size: clamp(42px, 13vw, 62px) !important;
  }

  html body.boardpath-site .elementor .detail-meta.bp-native-container,
  html body.boardpath-site .elementor :is(
    .case-patterns,
    .change-grid,
    .movement-grid,
    .process-grid,
    .outcomes-grid,
    .route-grid,
    .article-grid,
    .client-grid,
    .lens-grid,
    .soar-definitions
  ).bp-native-container {
    grid-template-columns: 1fr !important;
  }

  html body.boardpath-site .elementor .elementor-widget-bp-motif .motif-band {
    height: 72px !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    gap: 2px !important;
  }

  html body.boardpath-site .elementor .elementor-widget-bp-motif .motif-band span:nth-child(-n+6) {
    display: none !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .system-top {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-explorer {
    padding: 16px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars {
    grid-template-columns: 1fr !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar {
    min-height: 126px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-detail {
    padding: 36px 22px !important;
  }

  html body.boardpath-site .elementor-widget-bp-soar-telescope .soar-telescope {
    display: grid !important;
    min-height: 0 !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(6, auto) !important;
    gap: 26px !important;
    padding: 36px 22px !important;
  }

  html body.boardpath-site .elementor-widget-bp-soar-telescope .soar-telescope::before {
    top: 7% !important;
    bottom: 7% !important;
    left: calc(50% - 1px) !important;
    width: 2px !important;
    height: auto !important;
  }

  html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-lens {
    width: min(220px, 82vw) !important;
    min-width: 0 !important;
    height: 112px !important;
    aspect-ratio: auto !important;
  }

  html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-lens::before,
  html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-lens::after {
    display: none !important;
  }

  html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-lens b {
    font-size: 46px !important;
  }

  html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-lens span {
    bottom: 12px !important;
  }

  html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-source,
  html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-focus {
    width: 104px !important;
    min-width: 104px !important;
  }

  html body.boardpath-site .elementor-widget-bp-soar-telescope .soar-definitions {
    grid-template-columns: 1fr !important;
  }
}

/* Version 2.9: component fidelity pass.
   These rules intentionally target the converted Elementor structure so
   Elementor Kit defaults cannot flatten the Boardpath layouts. */

/* The compact proof strip beneath the home hero is its own four-part layout. */
html body.boardpath-site .elementor .proof-bar {
  border-bottom: 1px solid #d4d0cc !important;
}

html body.boardpath-site .elementor .proof-inner.bp-native-container {
  display: grid !important;
  min-height: 128px !important;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  align-items: stretch !important;
}

html body.boardpath-site .elementor .proof-inner.bp-native-container > :is(.proof-intro,.proof-item) {
  display: flex !important;
  min-width: 0 !important;
  width: auto !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 26px clamp(18px, 2.4vw, 34px) !important;
  border-right: 1px solid #d4d0cc !important;
}

html body.boardpath-site .elementor .proof-inner.bp-native-container > .proof-intro {
  padding-left: 0 !important;
}

html body.boardpath-site .elementor .proof-inner.bp-native-container > :last-child {
  border-right: 0 !important;
}

html body.boardpath-site .elementor .proof-item strong {
  font-size: 14px !important;
  line-height: 1.3 !important;
}

html body.boardpath-site .elementor .proof-item span {
  display: block !important;
  margin-top: 6px !important;
  color: #67615e !important;
  font-family: var(--bp-reading-font) !important;
  font-size: 14px !important;
}

/* Restore every editorial grid used by the flagship engagement and library pages. */
html body.boardpath-site .elementor .cost-grid.bp-native-container {
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr) !important;
  gap: clamp(50px, 8vw, 118px) !important;
  align-items: start !important;
}

html body.boardpath-site .elementor .cost-point.bp-native-container {
  grid-template-columns: 52px minmax(0, 1fr) !important;
  gap: 24px !important;
  padding: 24px 0 !important;
  border-bottom: 1px solid #d4d0cc !important;
}

html body.boardpath-site .elementor .case-patterns.bp-native-container,
html body.boardpath-site .elementor .change-grid.bp-native-container,
html body.boardpath-site .elementor .movement-grid.bp-native-container,
html body.boardpath-site .elementor .process-grid.bp-native-container,
html body.boardpath-site .elementor .route-grid.bp-native-container,
html body.boardpath-site .elementor .article-grid.bp-native-container,
html body.boardpath-site .elementor .client-grid.bp-native-container,
html body.boardpath-site .elementor .fit-grid.bp-native-container {
  display: grid !important;
  gap: 2px !important;
  border: 2px solid #201e1d !important;
  background: #201e1d !important;
}

html body.boardpath-site .elementor .case-patterns.bp-native-container,
html body.boardpath-site .elementor .change-grid.bp-native-container,
html body.boardpath-site .elementor .movement-grid.bp-native-container,
html body.boardpath-site .elementor .process-grid.bp-native-container,
html body.boardpath-site .elementor .route-grid.bp-native-container,
html body.boardpath-site .elementor .article-grid.bp-native-container {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

html body.boardpath-site .elementor .client-grid.bp-native-container,
html body.boardpath-site .elementor .fit-grid.bp-native-container {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

html body.boardpath-site .elementor :is(
  .case-patterns,
  .change-grid,
  .movement-grid,
  .process-grid,
  .route-grid,
  .article-grid,
  .client-grid,
  .fit-grid
).bp-native-container > .e-con {
  min-width: 0 !important;
  width: auto !important;
  max-width: none !important;
}

html body.boardpath-site .elementor .movements-head.bp-native-container {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr) !important;
  gap: clamp(45px, 8vw, 110px) !important;
  align-items: end !important;
}

/* The System explorer is a single approved dark component. */
html body.boardpath-site .elementor-widget-bp-system-explorer .system.bp-system-dark {
  color: #faf9f7 !important;
  background: #201e1d !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .bp-system-dark .system-top {
  display: grid !important;
  grid-template-columns: minmax(0, .82fr) minmax(300px, 1.18fr) !important;
  gap: clamp(42px, 8vw, 120px) !important;
  align-items: start !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .bp-system-dark :is(.system-intro,.system-intro p) {
  color: #cbc6c3 !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .bp-system-dark .discipline-explorer {
  color: #faf9f7 !important;
  background: #201e1d !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar,
html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:hover,
html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:focus,
html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:focus-visible,
html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar[aria-selected="true"] {
  appearance: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #faf9f7 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  -webkit-text-fill-color: currentColor !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:hover,
html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:focus-visible {
  transform: none !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar[aria-selected="true"] .discipline-column {
  background: #c5280f !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:hover .discipline-column {
  filter: brightness(1.12) !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar :is(.discipline-name,.discipline-short) {
  color: #faf9f7 !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar .discipline-short {
  color: #aaa5a1 !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-return {
  border-color: #5b7590 !important;
}

html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-return-label {
  color: #93a7b8 !important;
}

/* Theme Builder navigation follows the same ink / warm-white / signal rule. */
html body.boardpath-site .elementor-location-header .elementor-widget-button a.elementor-button,
html body.boardpath-site header.bp-native-header .elementor-widget-button a.elementor-button {
  border-color: #c5280f !important;
  color: #faf9f7 !important;
  background: #c5280f !important;
  background-color: #c5280f !important;
}

html body.boardpath-site .elementor-location-header .elementor-widget-button a.elementor-button:hover,
html body.boardpath-site .elementor-location-header .elementor-widget-button a.elementor-button:focus-visible,
html body.boardpath-site header.bp-native-header .elementor-widget-button a.elementor-button:hover,
html body.boardpath-site header.bp-native-header .elementor-widget-button a.elementor-button:focus-visible {
  border-color: #a9210d !important;
  background: #a9210d !important;
  background-color: #a9210d !important;
}

html body.boardpath-site .elementor-location-header .elementor-nav-menu--dropdown,
html body.boardpath-site header.bp-native-header .elementor-nav-menu--dropdown {
  border-top: 4px solid #c5280f !important;
  background: #292725 !important;
  box-shadow: 0 22px 42px rgba(0,0,0,.28) !important;
}

html body.boardpath-site .elementor-location-header .elementor-nav-menu--dropdown a.elementor-item,
html body.boardpath-site header.bp-native-header .elementor-nav-menu--dropdown a.elementor-item {
  border-bottom: 1px solid #4b4744 !important;
  color: #faf9f7 !important;
  background: #292725 !important;
}

html body.boardpath-site .elementor-location-header .elementor-nav-menu--dropdown a.elementor-item:hover,
html body.boardpath-site .elementor-location-header .elementor-nav-menu--dropdown a.elementor-item:focus-visible,
html body.boardpath-site header.bp-native-header .elementor-nav-menu--dropdown a.elementor-item:hover,
html body.boardpath-site header.bp-native-header .elementor-nav-menu--dropdown a.elementor-item:focus-visible {
  color: #faf9f7 !important;
  background: #2e4057 !important;
}

/* SOAR endpoint labels use the same hierarchy and stay inside equal circles. */
html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-source,
html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-focus {
  width: 128px !important;
  min-width: 128px !important;
  aspect-ratio: 1 !important;
  padding: 13px !important;
}

html body.boardpath-site .elementor-widget-bp-soar-telescope :is(.telescope-source,.telescope-focus) > div {
  width: 100% !important;
}

html body.boardpath-site .elementor-widget-bp-soar-telescope :is(.telescope-source,.telescope-focus) span {
  font-size: 9px !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

html body.boardpath-site .elementor-widget-bp-soar-telescope :is(.telescope-source,.telescope-focus) strong {
  margin-top: 5px !important;
  font-size: 13px !important;
  letter-spacing: 0 !important;
  line-height: 1.05 !important;
  text-transform: none !important;
  white-space: nowrap !important;
}

@media (max-width: 980px) {
  html body.boardpath-site .elementor .proof-inner.bp-native-container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body.boardpath-site .elementor .proof-inner.bp-native-container > :is(.proof-intro,.proof-item) {
    min-height: 128px !important;
    border-right: 1px solid #d4d0cc !important;
    border-bottom: 1px solid #d4d0cc !important;
  }

  html body.boardpath-site .elementor .proof-inner.bp-native-container > :nth-child(even) {
    border-right: 0 !important;
  }

  html body.boardpath-site .elementor .proof-inner.bp-native-container > .proof-intro {
    padding-left: clamp(18px, 2.4vw, 34px) !important;
  }

  html body.boardpath-site .elementor .cost-grid.bp-native-container,
  html body.boardpath-site .elementor .movements-head.bp-native-container,
  html body.boardpath-site .elementor-widget-bp-system-explorer .bp-system-dark .system-top {
    grid-template-columns: 1fr !important;
  }

  html body.boardpath-site .elementor :is(
    .case-patterns,
    .change-grid,
    .movement-grid,
    .process-grid,
    .route-grid,
    .article-grid,
    .client-grid,
    .fit-grid
  ).bp-native-container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  /* On smaller screens the bar motif becomes a dark, stepped card system. */
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-explorer {
    padding: 24px !important;
    background: #201e1d !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:hover,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:focus,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar[aria-selected="true"] {
    position: relative !important;
    display: grid !important;
    min-height: 162px !important;
    grid-template-columns: 54px minmax(0, 1fr) !important;
    grid-template-rows: 9px auto auto !important;
    grid-template-areas:
      "motif motif"
      "number name"
      "number short" !important;
    gap: 0 !important;
    padding: 0 20px 22px !important;
    overflow: hidden !important;
    border: 1px solid #4b4744 !important;
    color: #faf9f7 !important;
    background: #292725 !important;
    background-color: #292725 !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar[aria-selected="true"] {
    border-color: #c5280f !important;
    box-shadow: inset 0 0 0 1px #c5280f !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-column {
    display: block !important;
    grid-area: motif !important;
    justify-self: start !important;
    width: 32% !important;
    height: 9px !important;
    min-height: 9px !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
    background: #33485f !important;
    transform: none !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bar:nth-child(2) .discipline-column { width: 45% !important; background: #394f67 !important; }
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bar:nth-child(3) .discipline-column { width: 58% !important; background: #435a72 !important; }
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bar:nth-child(4) .discipline-column { width: 72% !important; background: #4d657d !important; }
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bar:nth-child(5) .discipline-column { width: 86% !important; background: #5b7590 !important; }
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bar:nth-child(6) .discipline-column { width: 100% !important; background: #647e98 !important; }
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bar[aria-selected="true"] .discipline-column { background: #c5280f !important; }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-number {
    grid-area: number !important;
    align-self: start !important;
    margin: 0 !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-name {
    grid-area: name !important;
    margin: 2px 0 8px !important;
    padding: 0 0 0 14px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-short {
    grid-area: short !important;
    margin: 0 !important;
    padding: 0 0 0 14px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-return {
    display: block !important;
    height: 30px !important;
    margin-top: 28px !important;
  }

  html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-source,
  html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-focus {
    width: 104px !important;
    min-width: 104px !important;
  }

  html body.boardpath-site .elementor-widget-bp-soar-telescope :is(.telescope-source,.telescope-focus) strong {
    font-size: 11px !important;
  }
}

@media (max-width: 680px) {
  html body.boardpath-site .elementor .proof-inner.bp-native-container,
  html body.boardpath-site .elementor :is(
    .case-patterns,
    .change-grid,
    .movement-grid,
    .process-grid,
    .route-grid,
    .article-grid,
    .client-grid,
    .fit-grid
  ).bp-native-container {
    grid-template-columns: 1fr !important;
  }

  html body.boardpath-site .elementor .proof-inner.bp-native-container > :is(.proof-intro,.proof-item) {
    border-right: 0 !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-explorer {
    padding: 14px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars {
    grid-template-columns: 1fr !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:hover,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:focus,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar[aria-selected="true"] {
    min-height: 144px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-return {
    height: 26px !important;
    margin-top: 24px !important;
  }

  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-return-label {
    margin-top: 15px !important;
    font-size: 9px !important;
  }

  html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-source,
  html body.boardpath-site .elementor-widget-bp-soar-telescope .telescope-focus {
    width: 116px !important;
    min-width: 116px !important;
  }

  html body.boardpath-site .elementor-widget-bp-soar-telescope :is(.telescope-source,.telescope-focus) strong {
    font-size: 12px !important;
  }
}

/* V2.16 final cascade lock — keep after every inherited fidelity layer. */
@media (min-width: 981px) {
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar {
    grid-template-rows: 176px auto auto auto !important;
  }
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:nth-child(5) .discipline-column {
    height: 116px !important;
    max-height: 116px !important;
  }
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:nth-child(6) .discipline-column {
    height: 168px !important;
    max-height: 168px !important;
  }
}

@media (max-width: 680px) {
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-explorer {
    padding: 10px !important;
  }
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars {
    gap: 2px !important;
  }
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:hover,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:focus,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar[aria-selected="true"] {
    min-height: 68px !important;
    grid-template-columns: 38px minmax(0, 1fr) !important;
    grid-template-rows: 5px minmax(48px, auto) !important;
    grid-template-areas: "motif motif" "number name" !important;
    padding: 0 12px 10px !important;
  }
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar .discipline-column,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-bars > button.discipline-bar:nth-child(6) .discipline-column {
    width: 100% !important;
    height: 5px !important;
    max-height: 5px !important;
    min-height: 5px !important;
    margin: 0 0 7px !important;
  }
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-number {
    width: 38px !important;
    height: 38px !important;
    align-self: center !important;
    border-top-width: 4px !important;
    font-size: 11px !important;
  }
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-name {
    align-self: center !important;
    margin: 0 !important;
    padding: 0 0 0 11px !important;
    font-size: 14px !important;
    line-height: 1.15 !important;
  }
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-short,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-return,
  html body.boardpath-site .elementor-widget-bp-system-explorer .discipline-return-label {
    display: none !important;
  }
  html body.boardpath-site .elementor-widget-bp-system-explorer .bp-system-variant-home .discipline-detail {
    margin-top: 14px !important;
  }
}

/* V2.16 absolute final solution-page cascade. */
html body.boardpath-site .elementor .section-head.bp-native-container {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr) !important;
  gap: clamp(42px, 8vw, 120px) !important;
}

html body.boardpath-site .elementor .section.bp-native-section:has(.bullet-list) {
  color: #201e1d !important;
  background: #e8e6e2 !important;
}

html body.boardpath-site .elementor .section.bp-native-section:has(.process-grid) {
  color: #faf9f7 !important;
  background: #201e1d !important;
}

html body.boardpath-site .elementor .bullet-list {
  width: 100% !important;
  margin-top: 46px !important;
}

html body.boardpath-site .elementor .bullet-list ul {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-top: 2px solid #201e1d !important;
  list-style: none !important;
}

html body.boardpath-site .elementor .bullet-list li {
  position: relative !important;
  margin: 0 !important;
  padding: 20px 0 20px 30px !important;
  border-bottom: 1px solid #d4d0cc !important;
  color: #494441 !important;
  font-family: var(--bp-reading-font) !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
  list-style: none !important;
}

html body.boardpath-site .elementor .bullet-list li::before {
  position: absolute !important;
  left: 0 !important;
  color: #c5280f !important;
  content: "—" !important;
}

html body.boardpath-site .elementor .change-grid.bp-native-container {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 2px !important;
  margin-top: 58px !important;
  border: 2px solid #201e1d !important;
  background: #201e1d !important;
}

html body.boardpath-site .elementor .change-grid.bp-native-container > .change.e-con {
  min-height: 300px !important;
  width: auto !important;
  padding: clamp(24px, 3vw, 38px) !important;
  color: #201e1d !important;
  background: #f3f2f0 !important;
}

html body.boardpath-site .elementor .change-grid.bp-native-container > .change.e-con:nth-child(2) {
  background: #e8e6e2 !important;
}

html body.boardpath-site .elementor .process-grid.bp-native-container {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 2px !important;
  margin-top: 54px !important;
  border: 2px solid #46413e !important;
  background: #46413e !important;
}

html body.boardpath-site .elementor .process-grid.bp-native-container > .process-step.e-con {
  min-height: 340px !important;
  width: auto !important;
  padding: clamp(26px, 3vw, 42px) !important;
  color: #faf9f7 !important;
  background: #292725 !important;
}

html body.boardpath-site .elementor .process-grid.bp-native-container > .process-step.e-con:nth-child(2) {
  background: #2e4057 !important;
}

@media (max-width: 980px) {
  html body.boardpath-site .elementor .section-head.bp-native-container {
    grid-template-columns: 1fr !important;
  }

  html body.boardpath-site .elementor .change-grid.bp-native-container,
  html body.boardpath-site .elementor .process-grid.bp-native-container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  html body.boardpath-site .elementor .change-grid.bp-native-container,
  html body.boardpath-site .elementor .process-grid.bp-native-container {
    grid-template-columns: 1fr !important;
  }
}

/* V2.16 reusable Elementor library. */
.bp-faq-theme-dark {
  color: var(--white);
  background: var(--ink);
}

.bp-faq-theme-dark .reading,
.bp-faq-theme-dark .bp-faq-answer {
  color: #c9c5c0;
}

.bp-faq-list {
  margin-top: clamp(40px, 6vw, 76px);
  border-top: 2px solid currentColor;
}

.bp-faq-item {
  border-bottom: 1px solid var(--line);
}

.bp-faq-item summary {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
  line-height: 1.2;
  list-style: none;
}

.bp-faq-item summary::-webkit-details-marker {
  display: none;
}

.bp-faq-item summary span {
  color: var(--slate-2);
  font-size: 11px;
  letter-spacing: .12em;
}

.bp-faq-item summary::after {
  color: var(--signal);
  content: "+";
  font-size: 28px;
  font-weight: 400;
  text-align: right;
}

.bp-faq-item[open] summary::after {
  content: "−";
}

.bp-faq-answer {
  max-width: 780px;
  padding: 0 46px 26px 72px;
  color: #5b5551;
  font-family: var(--bp-reading-font);
  font-size: 17px;
}

.bp-lib-section {
  width: 100%;
  padding: clamp(72px, 9vw, 132px) 0;
  color: var(--ink);
  background: var(--paper);
}

.bp-lib-section--paper-2 {
  background: var(--paper-2);
}

.bp-lib-section--dark {
  color: var(--white);
  background: var(--ink);
}

.bp-lib-section--slate {
  color: var(--white);
  background: var(--slate);
}

.bp-lib-shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.bp-lib-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.bp-lib-heading {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 5.4vw, 78px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .98;
}

.bp-lib-heading span,
.bp-lib-accent {
  color: var(--slate-3);
}

.bp-lib-subheading {
  margin: 0;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1;
}

.bp-lib-reading,
.bp-lib-reading p {
  margin: 0;
  color: #5b5551;
  font-family: var(--bp-reading-font);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}

.bp-lib-section--dark .bp-lib-reading,
.bp-lib-section--dark .bp-lib-reading p,
.bp-lib-section--slate .bp-lib-reading,
.bp-lib-section--slate .bp-lib-reading p {
  color: #d8d5d1;
}

.bp-lib-two-col {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

.bp-lib-three-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bp-lib-four-col {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bp-lib-card-grid {
  margin-top: clamp(38px, 6vw, 72px);
  border: 2px solid currentColor;
}

.bp-lib-card {
  min-height: 260px;
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--line);
}

.bp-lib-card:last-child {
  border-right: 0;
}

.bp-lib-card-number {
  margin: 0 0 52px;
  color: var(--slate-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bp-lib-card h3 {
  margin: 0 0 14px;
  font-size: clamp(19px, 2vw, 27px);
  letter-spacing: -.03em;
  line-height: 1.08;
}

.bp-lib-card p {
  margin: 0;
  color: #5b5551;
  font-family: var(--bp-reading-font);
  font-size: 16px;
  line-height: 1.5;
}

.bp-lib-section--dark .bp-lib-card p,
.bp-lib-section--slate .bp-lib-card p {
  color: #d8d5d1;
}

.bp-lib-hero-image {
  min-height: min(680px, 72vh);
  background:
    linear-gradient(90deg, rgba(32, 30, 29, .94) 0%, rgba(32, 30, 29, .76) 52%, rgba(32, 30, 29, .18) 100%),
    var(--bp-lib-image, linear-gradient(135deg, #2e4057, #8fa3b8));
  background-position: center;
  background-size: cover;
}

.bp-lib-hero-image .bp-lib-shell {
  display: flex;
  min-height: inherit;
  align-items: center;
}

.bp-lib-hero-image .bp-lib-stack {
  max-width: 720px;
}

.bp-lib-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 26px;
  color: var(--slate-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bp-lib-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--slate-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bp-lib-breadcrumbs a {
  text-decoration: none;
}

.bp-lib-article-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 1fr);
  gap: clamp(52px, 9vw, 132px);
}

.bp-lib-article-body {
  color: #494441;
  font-family: var(--bp-reading-font);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.75;
}

.bp-lib-article-body h2,
.bp-lib-article-body h3 {
  color: var(--ink);
  font-family: var(--bp-display-font);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.bp-lib-article-body blockquote {
  margin: 48px 0;
  padding: 26px 0 26px 32px;
  border-left: 5px solid var(--signal);
  color: var(--slate);
  font-size: clamp(23px, 2.5vw, 34px);
  line-height: 1.25;
}

.bp-lib-article-aside {
  position: sticky;
  top: 110px;
  padding-top: 18px;
  border-top: 5px solid var(--signal);
}

.bp-lib-before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(40px, 6vw, 72px);
  border: 2px solid var(--ink);
}

.bp-lib-before-after > * {
  min-height: 320px;
  padding: clamp(28px, 4vw, 54px);
}

.bp-lib-before-after > :first-child {
  color: var(--white);
  background: var(--ink);
}

.bp-lib-before-after > :last-child {
  background: var(--paper);
}

.bp-lib-before-after h3,
.bp-lib-fit h3 {
  margin: 0 0 28px;
  font-size: clamp(23px, 2.8vw, 36px);
  letter-spacing: -.04em;
}

.bp-lib-list,
.bp-lib-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bp-lib-list li {
  position: relative;
  padding: 13px 0 13px 24px;
  border-bottom: 1px solid rgba(143, 163, 184, .35);
  font-family: var(--bp-reading-font);
}

.bp-lib-list li::before {
  position: absolute;
  left: 0;
  color: var(--signal);
  content: "—";
}

.bp-lib-vignette {
  display: grid;
  grid-template-columns: 170px minmax(0, .8fr) minmax(0, 1.2fr);
  margin-top: clamp(38px, 6vw, 72px);
  border-top: 5px solid var(--signal);
  background: var(--ink-2);
}

.bp-lib-vignette > * {
  padding: clamp(28px, 4vw, 48px);
}

.bp-lib-vignette strong {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.bp-lib-vignette p {
  margin: 0;
  color: #d8d5d1;
  font-family: var(--bp-reading-font);
  font-size: 18px;
}

.bp-lib-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(42px, 6vw, 72px);
  border: 2px solid #46413e;
  background: #46413e;
  gap: 2px;
}

.bp-lib-process > * {
  min-height: 330px;
  padding: clamp(26px, 3vw, 42px);
  color: var(--white);
  background: var(--ink-2);
}

.bp-lib-process > :nth-child(2) {
  background: var(--slate);
}

.bp-lib-process small {
  color: var(--slate-3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bp-lib-process h3 {
  margin: 88px 0 14px;
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: -.035em;
}

.bp-lib-process p {
  margin: 0;
  color: #d8d5d1;
  font-family: var(--bp-reading-font);
}

.bp-lib-fit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(40px, 6vw, 72px);
  border: 2px solid var(--ink);
}

.bp-lib-fit > * {
  min-height: 390px;
  padding: clamp(28px, 4vw, 52px);
}

.bp-lib-fit > :last-child {
  color: var(--white);
  background: var(--ink-2);
}

.bp-lib-quote {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, .7fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: end;
}

.bp-lib-quote blockquote {
  margin: 0;
  font-family: var(--bp-reading-font);
  font-size: clamp(32px, 5vw, 68px);
  letter-spacing: -.025em;
  line-height: 1.12;
}

.bp-lib-quote blockquote span {
  color: var(--slate-3);
}

.bp-lib-quote cite {
  padding-top: 20px;
  border-top: 5px solid var(--signal);
  color: #d8d5d1;
  font-style: normal;
}

.bp-lib-founder {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  min-height: 620px;
}

.bp-lib-founder-image {
  min-height: 520px;
  background: var(--bp-lib-image, linear-gradient(135deg, #e8e6e2, #8fa3b8));
  background-position: center;
  background-size: cover;
}

.bp-lib-founder-media > .e-con-inner,
.bp-lib-founder-media > .elementor-element,
.bp-lib-founder-media .elementor-widget-container,
.bp-lib-founder-media img {
  width: 100%;
  height: 100%;
}

.bp-lib-founder-media img {
  min-height: 520px;
  object-fit: cover;
}

.bp-lib-founder-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 8vw, 112px);
  color: var(--white);
  background: var(--ink);
}

.bp-lib-topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.bp-lib-topic-nav a {
  padding: 10px 15px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.bp-lib-topic-nav a:hover,
.bp-lib-topic-nav a:focus {
  color: var(--white);
  background: var(--slate);
}

.bp-lib-form-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(42px, 8vw, 120px);
}

.bp-lib-form-card {
  padding: clamp(28px, 4vw, 52px);
  border-top: 5px solid var(--signal);
  background: var(--white);
}

.bp-lib-privacy,
.bp-lib-disclosure {
  margin-top: 18px;
  color: #6a6561;
  font-family: var(--bp-reading-font);
  font-size: 13px;
  line-height: 1.55;
}

.bp-lib-author {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.bp-lib-author-image {
  width: 110px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bp-lib-image, linear-gradient(135deg, #2e4057, #8fa3b8));
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.bp-lib-author-image .elementor-widget-container,
.bp-lib-author-image img {
  width: 100%;
  height: 100%;
}

.bp-lib-author-image img {
  object-fit: cover;
}

.bp-lib-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 5px solid var(--signal);
  background: var(--slate);
}

.bp-lib-proof-strip > * {
  min-height: 180px;
  padding: 28px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.bp-lib-proof-strip > :last-child {
  border-right: 0;
}

.bp-lib-proof-strip strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(19px, 2vw, 26px);
}

.bp-lib-event-card,
.bp-lib-resource-card {
  padding: clamp(30px, 5vw, 58px);
  border-top: 5px solid var(--signal);
  background: var(--slate);
}

.bp-lib-event-card dl,
.bp-lib-resource-card dl {
  margin: 0;
}

.bp-lib-event-card dt,
.bp-lib-resource-card dt {
  margin-top: 24px;
  color: var(--slate-3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bp-lib-event-card dd,
.bp-lib-resource-card dd {
  margin: 8px 0 0;
  color: var(--white);
  font-family: var(--bp-reading-font);
  font-size: 19px;
}

.bp-lib-utility {
  display: grid;
  min-height: 66vh;
  place-items: center;
  text-align: center;
}

.bp-lib-utility .bp-lib-stack {
  max-width: 800px;
  align-items: center;
}

.bp-lib-utility-code {
  color: var(--signal);
  font-size: clamp(86px, 18vw, 220px);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .75;
}

.bp-lib-inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border-top: 5px solid var(--signal);
}

.bp-lib-inline-cta .button {
  white-space: nowrap;
}

.bp-lib-button .elementor-button,
.bp-lib-button a.elementor-button {
  padding: 14px 20px;
  border: 1px solid var(--signal);
  border-radius: 0;
  color: var(--white);
  background: var(--signal);
  font-family: var(--bp-display-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.bp-lib-button .elementor-button:hover,
.bp-lib-button .elementor-button:focus {
  color: var(--white);
  background: #9f210e;
  border-color: #9f210e;
}

.bp-lib-search-form {
  width: min(760px, 100%);
  margin-top: 26px;
}

.bp-lib-search-form input[type="search"] {
  min-height: 58px;
  border: 0;
  border-bottom: 2px solid var(--white);
  border-radius: 0;
  color: var(--white);
  background: transparent;
}

@media (max-width: 980px) {
  .bp-lib-two-col,
  .bp-lib-article-shell,
  .bp-lib-form-layout,
  .bp-lib-quote,
  .bp-lib-founder {
    grid-template-columns: 1fr;
  }

  .bp-lib-three-col,
  .bp-lib-four-col,
  .bp-lib-process,
  .bp-lib-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bp-lib-vignette {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .bp-lib-vignette > :last-child {
    grid-column: 1 / -1;
  }

  .bp-lib-article-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  .bp-faq-item summary {
    grid-template-columns: 36px minmax(0, 1fr) 22px;
    gap: 12px;
  }

  .bp-faq-answer {
    padding-left: 48px;
  }

  .bp-lib-three-col,
  .bp-lib-four-col,
  .bp-lib-before-after,
  .bp-lib-process,
  .bp-lib-fit,
  .bp-lib-proof-strip {
    grid-template-columns: 1fr;
  }

  .bp-lib-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .bp-lib-card:last-child {
    border-bottom: 0;
  }

  .bp-lib-card-number {
    margin-bottom: 28px;
  }

  .bp-lib-vignette {
    grid-template-columns: 1fr;
  }

  .bp-lib-vignette > :last-child {
    grid-column: auto;
  }

  .bp-lib-founder-image {
    min-height: 400px;
  }

  .bp-lib-author {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .bp-lib-author-image {
    width: 72px;
  }

  .bp-lib-inline-cta {
    grid-template-columns: 1fr;
  }
}
