/* STAP static website styles extracted from docs/public/website/stap.now. */

/* page-blog: docs/website/pages/html/blog.html */


:root {
      --bg: var(--stap-color-warm-light-grey);
      --surface: rgb(var(--stap-color-white-rgb) / .78);
      --surface-solid: var(--stap-color-white);
      --text: var(--stap-color-charcoal);
      --muted: rgb(var(--stap-color-charcoal-rgb) / .68);
      --soft: rgb(var(--stap-color-charcoal-rgb) / .52);
      --line: rgb(var(--stap-color-charcoal-rgb) / .08);
      --blue: var(--stap-color-charcoal);
      --blue-dark: var(--stap-color-charcoal);
      --green: var(--stap-color-secondary-lemon-yellow);
      --shadow: 0 30px 90px rgb(var(--stap-color-charcoal-rgb) / .10);
      --radius-xl: 44px;
      --radius-lg: 30px;
      --radius-md: 22px;
      --max: 1180px;
    }

    body.page-blog * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body.page-blog {
      --article-accent: var(--stap-blue);
      --article-accent-border: rgb(var(--stap-color-primary-soft-violet-rgb) / .32);
      --article-accent-soft: var(--stap-color-primary-soft-violet);
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 50% -10%, rgb(var(--stap-color-primary-soft-violet-rgb) / .14), transparent 34%),
        linear-gradient(180deg, var(--stap-color-white) 0%, var(--bg) 46%, var(--stap-color-warm-light-grey) 100%);
      -webkit-font-smoothing: antialiased;
    }

    body.page-blog a {
      color: inherit;
      text-decoration: none;
    }

    body.page-blog .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgb(var(--stap-color-white-rgb) / .58);
      backdrop-filter: saturate(170%) blur(18px);
      border-bottom: 0;
      transform: translateY(0);
      transition: transform .22s cubic-bezier(.22,1,.36,1);
      will-change: transform;
    }

    body.page-blog .nav-wrap.nav-hidden {
      transform: translateY(-110%);
    }

    body.page-blog .nav {
      width: 100%;
      max-width: 1860px;
      margin: 0 auto;
      padding: 20px 48px 14px;
      min-height: 78px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      position: relative;
      font-size: 13px;
    }

    body.page-blog .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 118px;
      padding-top: 5px;
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
      font-size: 18px;
      line-height: 1;
      font-weight: 760;
      letter-spacing: 0;
      color: var(--text);
      white-space: nowrap;
    }

    body.page-blog .brand-mark {
      width: 28px;
      height: 28px;
      border-radius: 9px;
      background: linear-gradient(145deg,#fff,var(--stap-color-warm-light-grey));
      box-shadow: inset 0 0 0 1px rgb(var(--stap-color-charcoal-rgb) / .08), 0 4px 14px rgb(var(--stap-color-charcoal-rgb) / .08);
      display: grid;
      place-items: center;
      color: var(--stap-color-charcoal);
      font-size: 13px;
      font-weight: 700;
    }

    body.page-blog .nav-links {
      position: absolute;
      left: 50%;
      top: 18px;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      padding: 3px;
      border-radius: 999px;
      background: rgb(var(--stap-color-warm-light-grey-rgb) / .55);
      box-shadow:
        inset 0 1px 0 rgb(var(--stap-color-white-rgb) / .34),
        0 10px 28px rgb(var(--stap-color-charcoal-rgb) / .045);
      backdrop-filter: blur(18px);
      color: rgb(var(--stap-color-white-rgb) / .86);
      font-weight: 600;
      white-space: nowrap;
    }
    body.page-blog .nav-link,
body.page-blog .dropdown-button {
      min-height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 17px;
      border-radius: 999px;
      color: rgb(var(--stap-color-white-rgb) / .86);
      text-transform: uppercase;
      letter-spacing: .03em;
      font-size: 12px;
      line-height: 1;
      transition: background .18s ease, color .18s ease, box-shadow .18s ease;
      cursor: pointer;
    }
    body.page-blog .nav-link:hover,
body.page-blog .dropdown:hover .dropdown-button,
body.page-blog .dropdown:focus-within .dropdown-button {
      color: #fff;
      background: rgb(var(--stap-color-white-rgb) / .14);
    }
    body.page-blog .nav-link.active,
body.page-blog .dropdown.active .dropdown-button {
      color: #fff;
      background: rgb(var(--stap-color-charcoal-rgb) / .42);
      box-shadow: inset 0 1px 0 rgb(var(--stap-color-white-rgb) / .18);
    }

    body.page-blog .dropdown {
      position: relative;
    }

    body.page-blog .dropdown::after {
      content: "";
      position: absolute;
      left: -18px;
      right: -18px;
      top: 100%;
      height: 14px;
      z-index: 1;
    }

    body.page-blog .dropdown-button {
      appearance: none;
      border: 0;
      background: transparent;
      font: inherit;
    }

    body.page-blog .dropdown-menu {
      position: absolute;
      top: 46px;
      left: 50%;
      width: min(430px, calc(100vw - 40px));
      padding: 10px;
      border-radius: 24px;
      border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .07);
      background: rgb(var(--stap-color-white-rgb) / .98);
      backdrop-filter: blur(24px);
      box-shadow: 0 22px 58px rgb(var(--stap-color-charcoal-rgb) / .14);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      white-space: normal;
      transform: translate(-50%, 8px) scale(.985);
      transform-origin: top center;
      transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
      z-index: 2;
    }
    body.page-blog .dropdown:hover .dropdown-menu,
body.page-blog .dropdown:focus-within .dropdown-menu,
body.page-blog .dropdown[data-open="true"] .dropdown-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate(-50%, 0) scale(1);
    }

    body.page-blog .dropdown-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }

    body.page-blog .dropdown-card {
      display: block;
      min-height: 104px;
      padding: 24px 26px 22px;
      border-radius: 14px;
      background: var(--stap-color-warm-light-grey);
      border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .035);
      text-transform: none;
      letter-spacing: 0;
      white-space: normal;
      overflow: hidden;
      transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
    }
    body.page-blog .dropdown-card:hover,
body.page-blog .dropdown-card:focus-visible {
      background: var(--stap-color-warm-light-grey);
      transform: translateY(-1px);
      box-shadow: 0 12px 30px rgb(var(--stap-color-charcoal-rgb) / .06);
      outline: none;
    }

    body.page-blog .dropdown-card strong {
      display: block;
      margin-bottom: 9px;
      color: var(--stap-color-charcoal);
      font-size: 22px;
      line-height: 1.08;
      font-weight: 650;
      letter-spacing: 0;
      white-space: normal;
    }

    body.page-blog .dropdown-card span {
      display: block;
      max-width: 340px;
      color: var(--stap-color-charcoal);
      line-height: 1.28;
      font-size: 15.5px;
      font-weight: 420;
      letter-spacing: 0;
      white-space: normal;
    }

    body.page-blog .nav-cta {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-left: auto;
      padding: 0 17px;
      border-radius: 999px;
      border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .45);
      color: var(--stap-color-charcoal);
      background: rgb(var(--stap-color-white-rgb) / .32);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .055em;
      text-transform: uppercase;
      white-space: nowrap;
      box-shadow: inset 0 1px 0 rgb(var(--stap-color-white-rgb) / .6);
      transition: background .18s ease, border-color .18s ease, transform .18s ease;
    }

    body.page-blog .nav-cta:hover {
      transform: translateY(-1px);
      background: rgb(var(--stap-color-charcoal-rgb) / .06);
      border-color: rgb(var(--stap-color-charcoal-rgb) / .72);
    }
    body.page-blog .nav-link-api,
body.page-blog .mobile-menu-button {
      display: none;
    }

    body.page-blog .mobile-menu-button {
      width: 64px;
      height: 64px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 6px;
      border: 0;
      border-radius: 24px;
      background: var(--stap-color-charcoal);
      color: #fff;
      cursor: pointer;
      box-shadow: 0 14px 34px rgb(var(--stap-color-charcoal-rgb) / .16);
      transition: transform .16s ease, background .16s ease;
    }

    body.page-blog .mobile-menu-button:hover {
      transform: translateY(-1px);
      background: var(--stap-color-charcoal);
    }

    body.page-blog .mobile-menu-button span {
      width: 23px;
      height: 3px;
      border-radius: 999px;
      background: currentColor;
      transition: transform .18s ease, opacity .18s ease;
    }

    body.page-blog .mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    body.page-blog .mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    body.page-blog .mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

    body.page-blog .page {
      min-height: 100vh;
      overflow: hidden;
      padding: 18px 0 34px;
    }

    body.page-blog .hero {
      max-width: var(--max);
      margin: 20px auto 0;
      padding: 84px 38px 54px;
      text-align: center;
      background: transparent;
      border: 0;
      border-radius: 0;
      box-shadow: none;
      backdrop-filter: none;
    }

    body.page-blog .hero-inner {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
    }

    body.page-blog .hero h1 {
      max-width: 1000px;
      margin: 0 auto 24px;
      font-size: clamp(58px, 9.5vw, 128px);
      line-height: 1.04;
      letter-spacing: 0;
      font-weight: 760;
      padding-bottom: .06em;
      background: linear-gradient(180deg,var(--stap-color-charcoal) 0%,var(--stap-color-charcoal) 52%,var(--stap-color-charcoal) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    body.page-blog .hero p {
      max-width: 820px;
      margin: 0 auto;
      font-size: clamp(20px,2.2vw,29px);
      line-height: 1.28;
      letter-spacing: 0;
      color: var(--muted);
      font-weight: 450;
    }

    body.page-blog .sections {
      display: flex;
      flex-direction: column;
      gap: 32px;
      padding: 24px 5vw 96px;
    }

    body.page-blog .topic-section {
      position: relative;
      max-width: var(--max);
      width: 100%;
      margin: 0 auto;
      padding: clamp(28px, 4vw, 44px);
      border-radius: 36px;
      overflow: hidden;
      border: 1px solid rgb(var(--stap-color-charcoal-rgb) / 0.06);
      box-shadow: 0 20px 54px rgb(var(--stap-color-charcoal-rgb) / .055);
      background: rgb(var(--stap-color-white-rgb) / .9);
      backdrop-filter: blur(22px);
    }

    body.page-blog .topic-section::before {
      display: none;
    }

    body.page-blog .topic-section::after {
      display: none;
    }

    body.page-blog .topic-section.ideas::before {
      display: none;
    }

    body.page-blog .topic-section.product::before {
      display: none;
    }

    body.page-blog .topic-section.business::before {
      display: none;
    }

    body.page-blog .topic-section.ideas {
      --article-accent: var(--stap-blue);
      --article-accent-border: rgb(var(--stap-color-primary-soft-violet-rgb) / .32);
      --article-accent-soft: var(--stap-color-primary-soft-violet);
      border-color: rgb(var(--stap-color-charcoal-rgb) / .06);
    }

    body.page-blog .topic-section.product {
      --article-accent: var(--stap-green);
      --article-accent-border: rgb(var(--stap-color-secondary-lemon-yellow-rgb) / .34);
      --article-accent-soft: var(--stap-color-secondary-lemon-yellow);
      border-color: rgb(var(--stap-color-charcoal-rgb) / .06);
    }

    body.page-blog .topic-section.business {
      --article-accent: var(--stap-violet);
      --article-accent-border: rgb(var(--stap-color-primary-soft-violet-rgb) / .34);
      --article-accent-soft: var(--stap-color-primary-soft-violet);
      border-color: rgb(var(--stap-color-charcoal-rgb) / .06);
    }

    body.page-blog .topic-content {
      position: relative;
      z-index: 1;
    }

    body.page-blog .topic-header {
      margin-bottom: 24px;
    }

    body.page-blog .topic-title {
      margin: 0;
      font-size: clamp(34px, 4.8vw, 64px);
      line-height: 0.98;
      letter-spacing: 0;
      font-weight: 760;
      color: var(--text);
    }

    body.page-blog .topic-section.ideas .topic-title {
      color: var(--stap-blue);
    }

    body.page-blog .topic-section.product .topic-title {
      color: var(--stap-green);
    }

    body.page-blog .topic-section.business .topic-title {
      color: var(--stap-violet);
    }

    body.page-blog .articles {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      counter-reset: article-card;
    }

    body.page-blog .article-card {
      counter-increment: article-card;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 18px;
      min-height: 260px;
      padding: 34px 36px 32px;
      border-radius: 0;
      background:
        linear-gradient(var(--text) 0 0) top left / 22px 3px no-repeat,
        linear-gradient(var(--text) 0 0) top left / 3px 22px no-repeat,
        linear-gradient(var(--text) 0 0) top right / 22px 3px no-repeat,
        linear-gradient(var(--text) 0 0) top right / 3px 22px no-repeat,
        linear-gradient(var(--text) 0 0) bottom left / 22px 3px no-repeat,
        linear-gradient(var(--text) 0 0) bottom left / 3px 22px no-repeat,
        linear-gradient(var(--text) 0 0) bottom right / 22px 3px no-repeat,
        linear-gradient(var(--text) 0 0) bottom right / 3px 22px no-repeat,
        rgb(var(--stap-color-white-rgb) / .82);
      border: 1px dashed rgb(var(--stap-color-charcoal-rgb) / .28);
      box-shadow: none;
      cursor: pointer;
      transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
    }

    body.page-blog .article-card::before {
      content: counter(article-card, decimal-leading-zero);
      display: block;
      color: var(--article-accent-soft);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
      font-size: 18px;
      line-height: 1;
      letter-spacing: .06em;
      font-weight: 500;
    }

    body.page-blog .article-card:hover {
      transform: translateY(-2px);
      background:
        linear-gradient(var(--article-accent) 0 0) top left / 22px 3px no-repeat,
        linear-gradient(var(--article-accent) 0 0) top left / 3px 22px no-repeat,
        linear-gradient(var(--article-accent) 0 0) top right / 22px 3px no-repeat,
        linear-gradient(var(--article-accent) 0 0) top right / 3px 22px no-repeat,
        linear-gradient(var(--article-accent) 0 0) bottom left / 22px 3px no-repeat,
        linear-gradient(var(--article-accent) 0 0) bottom left / 3px 22px no-repeat,
        linear-gradient(var(--article-accent) 0 0) bottom right / 22px 3px no-repeat,
        linear-gradient(var(--article-accent) 0 0) bottom right / 3px 22px no-repeat,
        rgb(var(--stap-color-white-rgb) / .94);
      border-color: var(--article-accent-border);
      box-shadow: 0 18px 44px rgb(var(--stap-color-charcoal-rgb) / .055);
    }

    body.page-blog .article-title {
      margin: 0;
      max-width: 15ch;
      font-size: clamp(32px, 3.5vw, 48px);
      line-height: 1.03;
      letter-spacing: 0;
      font-weight: 760;
      color: var(--text);
    }

    body.page-blog .article-desc {
      margin: auto 0 0;
      max-width: 56ch;
      font-size: clamp(18px, 1.6vw, 23px);
      line-height: 1.38;
      letter-spacing: 0;
      color: var(--muted);
      font-weight: 430;
    }

    body.page-blog .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 112px;
      height: 38px;
      padding: 0;
      border-radius: 0;
      background: transparent;
      border: 0;
      color: var(--article-accent-soft);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
      font-size: 15px;
      letter-spacing: .06em;
      font-weight: 500;
      white-space: nowrap;
      box-shadow: none;
      backdrop-filter: none;
      transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
    }

    body.page-blog .article-card .button {
      position: static;
      z-index: 2;
    }

    body.page-blog .button:hover {
      background: transparent;
      border-color: transparent;
      color: var(--article-accent-soft);
      transform: translateY(-1px);
      box-shadow: none;
    }

    body.page-blog .topic-more {
      display: flex;
      justify-content: flex-end;
      margin-top: 18px;
    }

    body.page-blog .more-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 18px;
      border-radius: 999px;
      background: rgb(var(--stap-color-white-rgb) / .56);
      border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .08);
      color: var(--text);
      font-size: 14px;
      letter-spacing: 0;
      font-weight: 650;
      white-space: nowrap;
      box-shadow:
        0 10px 22px rgb(var(--stap-color-charcoal-rgb) / .055),
        inset 0 1px 0 rgb(var(--stap-color-white-rgb) / .74);
      backdrop-filter: blur(14px);
      transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
    }

    body.page-blog .more-button:hover {
      background: rgb(var(--stap-color-white-rgb) / .72);
      border-color: rgb(var(--stap-color-charcoal-rgb) / .12);
      color: var(--text);
      transform: translateY(-1px);
      box-shadow:
        0 14px 28px rgb(var(--stap-color-charcoal-rgb) / .07),
        inset 0 1px 0 rgb(var(--stap-color-white-rgb) / .82);
    }

    body.page-blog .footer {
      max-width: var(--max);
      margin: 0 auto;
      padding: 30px 34px;
      color: var(--soft);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      font-size: 13px;
      background: rgb(var(--stap-color-white-rgb) / .68);
      border: 1px solid rgb(var(--stap-color-white-rgb) / .9);
      border-radius: 30px;
      box-shadow: 0 18px 48px rgb(var(--stap-color-charcoal-rgb) / .06);
    }

    @media (max-width: 1180px) {body.page-blog .nav {
        padding-left: 30px;
        padding-right: 30px;
      }

      body.page-blog .nav-links {
        transform: translateX(-50%) scale(.92);
      }

      body.page-blog .nav-cta {
        padding: 0 14px;
        font-size: 11px;
      }

    }

    @media (max-width: 1000px) {body.page-blog .topic-header {
        margin-bottom: 26px;
      }

      body.page-blog .article-card {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      body.page-blog .button {
        width: fit-content;
      }

    }

    @media (max-width: 920px) {body.page-blog .nav-wrap {
        padding-top: 14px;
        background: transparent;
        backdrop-filter: none;
      }

      body.page-blog .nav {
        width: min(calc(100% - 40px), 980px);
        min-height: 84px;
        padding: 10px 12px 10px 34px;
        align-items: center;
        border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .12);
        border-radius: 999px;
        background: rgb(var(--stap-color-white-rgb) / .96);
        box-shadow: 0 10px 28px rgb(var(--stap-color-charcoal-rgb) / .045);
        backdrop-filter: blur(18px);
      }

      body.page-blog .brand {
        min-width: 0;
        padding-top: 0;
        font-size: clamp(22px, 6vw, 32px);
        letter-spacing: 0;
      }

      body.page-blog .mobile-menu-button {
        display: inline-flex;
        margin-left: auto;
      }

      body.page-blog .nav-cta {
        display: none;
      }

      body.page-blog .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        transform: none;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 30px;
        border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .08);
        background: rgb(var(--stap-color-white-rgb) / .98);
        box-shadow: 0 22px 58px rgb(var(--stap-color-charcoal-rgb) / .14);
        color: var(--text);
        white-space: normal;
      }

      body.page-blog .nav[data-menu-open="true"] .nav-links {
        display: flex;
      }
      body.page-blog .nav-link,
body.page-blog .dropdown-button {
        width: 100%;
        min-height: 48px;
        justify-content: flex-start;
        padding: 0 16px;
        color: var(--text);
        text-transform: none;
        letter-spacing: 0;
        font-size: 16px;
      }
      body.page-blog .nav-link:hover,
body.page-blog .dropdown:hover .dropdown-button,
body.page-blog .dropdown:focus-within .dropdown-button,
body.page-blog .nav-link.active,
body.page-blog .dropdown.active .dropdown-button {
        color: var(--text);
        background: rgb(var(--stap-color-charcoal-rgb) / .05);
        box-shadow: none;
      }

      body.page-blog .nav-link-api {
        display: inline-flex;
      }

      body.page-blog .dropdown {
        width: 100%;
      }

      body.page-blog .dropdown::after {
        display: none;
      }

      body.page-blog .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        margin: 6px 0 4px;
        padding: 8px;
        border: 0;
        border-radius: 22px;
        background: rgb(var(--stap-color-charcoal-rgb) / .04);
        box-shadow: none;
        backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
      }
      body.page-blog .dropdown:hover .dropdown-menu,
body.page-blog .dropdown:focus-within .dropdown-menu {
        transform: none;
      }

      body.page-blog .dropdown[data-open="true"] .dropdown-menu {
        display: block;
      }

      body.page-blog .dropdown-card {
        min-height: auto;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgb(var(--stap-color-white-rgb) / .72);
      }

      body.page-blog .dropdown-card strong {
        font-size: 18px;
      }

      body.page-blog .dropdown-card span {
        font-size: 14px;
      }

    }

    @media (max-width: 720px) {body.page-blog .hero {
        padding: 64px 20px 36px;
      }

      body.page-blog .sections {
        padding: 20px 20px 64px;
        gap: 32px;
      }

      body.page-blog .topic-section {
        padding: 28px 18px;
        border-radius: 30px;
      }

      body.page-blog .topic-header {
        margin-bottom: 22px;
      }

      body.page-blog .article-card {
        min-height: auto;
        padding: 30px 26px 28px;
        border-radius: 0;
      }

      body.page-blog .button {
        width: fit-content;
      }

      body.page-blog .topic-more {
        justify-content: stretch;
      }

      body.page-blog .more-button {
        width: 100%;
      }

      body.page-blog .footer {
        margin-left: 20px;
        margin-right: 20px;
        padding: 24px;
        flex-direction: column;
      }

    }

    @media (max-width: 560px) {body.page-blog .nav {
        width: calc(100% - 24px);
        min-height: 72px;
        padding: 8px 8px 8px 24px;
      }

      body.page-blog .mobile-menu-button {
        width: 56px;
        height: 56px;
        border-radius: 20px;
      }

      body.page-blog .brand {
        font-size: clamp(22px, 7vw, 28px);
      }

    }


/* page-access: docs/website/pages/html/access_and_api.html */


:root {
      --bg: var(--stap-color-warm-light-grey);
      --surface: rgb(var(--stap-color-white-rgb) / .78);
      --surface-solid: var(--stap-color-white);
      --text: var(--stap-color-charcoal);
      --muted: rgb(var(--stap-color-charcoal-rgb) / .68);
      --soft: rgb(var(--stap-color-charcoal-rgb) / .52);
      --line: rgb(var(--stap-color-charcoal-rgb) / .08);
      --blue: var(--stap-color-charcoal);
      --blue-dark: var(--stap-color-charcoal);
      --green: var(--stap-color-secondary-lemon-yellow);
      --shadow: 0 30px 90px rgb(var(--stap-color-charcoal-rgb) / .10);
      --radius-xl: 44px;
      --radius-lg: 30px;
      --radius-md: 22px;
      --max: 1180px;
    }

    body.page-access * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body.page-access {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 50% -10%, rgb(var(--stap-color-primary-soft-violet-rgb) / .14), transparent 34%),
        linear-gradient(180deg, var(--stap-color-white) 0%, var(--bg) 46%, var(--stap-color-warm-light-grey) 100%);
      -webkit-font-smoothing: antialiased;
    }

    body.page-access a {
      color: inherit;
      text-decoration: none;
    }

    body.page-access .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgb(var(--stap-color-white-rgb) / .58);
      backdrop-filter: saturate(170%) blur(18px);
      border-bottom: 0;
      transform: translateY(0);
      transition: transform .22s cubic-bezier(.22,1,.36,1);
      will-change: transform;
    }

    body.page-access .nav-wrap.nav-hidden {
      transform: translateY(-110%);
    }

    body.page-access .nav {
      width: 100%;
      max-width: 1860px;
      margin: 0 auto;
      padding: 20px 48px 14px;
      min-height: 78px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      position: relative;
      font-size: 13px;
    }

    body.page-access .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 118px;
      padding-top: 5px;
      font-size: 18px;
      line-height: 1;
      font-weight: 760;
      letter-spacing: 0;
      color: var(--text);
      white-space: nowrap;
    }

    body.page-access .nav-links {
      position: absolute;
      left: 50%;
      top: 18px;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      padding: 3px;
      border-radius: 999px;
      background: rgb(var(--stap-color-warm-light-grey-rgb) / .55);
      box-shadow:
        inset 0 1px 0 rgb(var(--stap-color-white-rgb) / .34),
        0 10px 28px rgb(var(--stap-color-charcoal-rgb) / .045);
      backdrop-filter: blur(18px);
      color: rgb(var(--stap-color-white-rgb) / .86);
      font-weight: 600;
      white-space: nowrap;
    }
    body.page-access .nav-link,
body.page-access .dropdown-button {
      min-height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 17px;
      border-radius: 999px;
      color: rgb(var(--stap-color-white-rgb) / .86);
      text-transform: uppercase;
      letter-spacing: .03em;
      font-size: 12px;
      line-height: 1;
      transition: background .18s ease, color .18s ease, box-shadow .18s ease;
      cursor: pointer;
    }
    body.page-access .nav-link:hover,
body.page-access .dropdown:hover .dropdown-button,
body.page-access .dropdown:focus-within .dropdown-button {
      color: #fff;
      background: rgb(var(--stap-color-white-rgb) / .14);
    }
    body.page-access .nav-link.active,
body.page-access .dropdown.active .dropdown-button {
      color: #fff;
      background: rgb(var(--stap-color-charcoal-rgb) / .42);
      box-shadow: inset 0 1px 0 rgb(var(--stap-color-white-rgb) / .18);
    }

    body.page-access .dropdown {
      position: relative;
    }

    body.page-access .dropdown::after {
      content: "";
      position: absolute;
      left: -18px;
      right: -18px;
      top: 100%;
      height: 14px;
      z-index: 1;
    }

    body.page-access .dropdown-button {
      appearance: none;
      border: 0;
      background: transparent;
      font: inherit;
    }

    body.page-access .dropdown-menu {
      position: absolute;
      top: 46px;
      left: 50%;
      width: min(430px, calc(100vw - 40px));
      padding: 10px;
      border-radius: 24px;
      border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .07);
      background: rgb(var(--stap-color-white-rgb) / .98);
      backdrop-filter: blur(24px);
      box-shadow: 0 22px 58px rgb(var(--stap-color-charcoal-rgb) / .14);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      white-space: normal;
      transform: translate(-50%, 8px) scale(.985);
      transform-origin: top center;
      transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
      z-index: 2;
    }
    body.page-access .dropdown:hover .dropdown-menu,
body.page-access .dropdown:focus-within .dropdown-menu,
body.page-access .dropdown[data-open="true"] .dropdown-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate(-50%, 0) scale(1);
    }

    body.page-access .dropdown-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }

    body.page-access .dropdown-card {
      display: block;
      min-height: 104px;
      padding: 24px 26px 22px;
      border-radius: 14px;
      background: var(--stap-color-warm-light-grey);
      border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .035);
      text-transform: none;
      letter-spacing: 0;
      white-space: normal;
      overflow: hidden;
      transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
    }
    body.page-access .dropdown-card:hover,
body.page-access .dropdown-card:focus-visible {
      background: var(--stap-color-warm-light-grey);
      transform: translateY(-1px);
      box-shadow: 0 12px 30px rgb(var(--stap-color-charcoal-rgb) / .06);
      outline: none;
    }

    body.page-access .dropdown-card strong {
      display: block;
      margin-bottom: 9px;
      color: var(--stap-color-charcoal);
      font-size: 22px;
      line-height: 1.08;
      font-weight: 650;
      letter-spacing: 0;
      white-space: normal;
    }

    body.page-access .dropdown-card span {
      display: block;
      max-width: 340px;
      color: var(--stap-color-charcoal);
      line-height: 1.28;
      font-size: 15.5px;
      font-weight: 420;
      letter-spacing: 0;
      white-space: normal;
    }

    body.page-access .nav-cta {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-left: auto;
      padding: 0 17px;
      border-radius: 999px;
      border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .45);
      color: var(--stap-color-charcoal);
      background: rgb(var(--stap-color-white-rgb) / .32);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .055em;
      text-transform: uppercase;
      white-space: nowrap;
      box-shadow: inset 0 1px 0 rgb(var(--stap-color-white-rgb) / .6);
      transition: background .18s ease, border-color .18s ease, transform .18s ease;
    }
    body.page-access .nav-cta:hover,
body.page-access .nav-cta.active {
      transform: translateY(-1px);
      background: rgb(var(--stap-color-charcoal-rgb) / .06);
      border-color: rgb(var(--stap-color-charcoal-rgb) / .72);
    }
    body.page-access .nav-link-api,
body.page-access .mobile-menu-button {
      display: none;
    }

    body.page-access .mobile-menu-button {
      width: 64px;
      height: 64px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 6px;
      border: 0;
      border-radius: 24px;
      background: var(--stap-color-charcoal);
      color: #fff;
      cursor: pointer;
      box-shadow: 0 14px 34px rgb(var(--stap-color-charcoal-rgb) / .16);
      transition: transform .16s ease, background .16s ease;
    }

    body.page-access .mobile-menu-button:hover {
      transform: translateY(-1px);
      background: var(--stap-color-charcoal);
    }

    body.page-access .mobile-menu-button span {
      width: 23px;
      height: 3px;
      border-radius: 999px;
      background: currentColor;
      transition: transform .18s ease, opacity .18s ease;
    }

    body.page-access .mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    body.page-access .mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    body.page-access .mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

    body.page-access main {
      padding: 18px 0 34px;
    }
    body.page-access .hero,
body.page-access .section {
      max-width: var(--max);
      margin: 20px auto 0;
      padding: 54px 38px;
      background: rgb(var(--stap-color-white-rgb) / .72);
      border: 1px solid rgb(var(--stap-color-white-rgb) / .9);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      backdrop-filter: blur(24px);
    }

    body.page-access .hero {
      padding-top: 76px;
      padding-bottom: 52px;
      text-align: center;
    }

    body.page-access .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 22px;
      color: var(--soft);
      font-size: 14px;
      font-weight: 600;
    }

    body.page-access .pulse {
      width: 7px;
      height: 7px;
      border-radius: 99px;
      background: var(--stap-color-secondary-lemon-yellow);
      box-shadow: 0 0 0 7px rgb(var(--stap-color-secondary-lemon-yellow-rgb) / .12);
    }

    body.page-access h1 {
      max-width: 960px;
      margin: 0 auto 22px;
      font-size: clamp(58px, 9vw, 112px);
      line-height: .89;
      letter-spacing: 0;
      font-weight: 760;
      background: linear-gradient(180deg,var(--stap-color-charcoal) 0%,var(--stap-color-charcoal) 52%,var(--stap-color-charcoal) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    body.page-access .lead {
      max-width: 760px;
      margin: 0 auto;
      color: var(--muted);
      font-size: clamp(20px,2.1vw,28px);
      line-height: 1.3;
      letter-spacing: 0;
      font-weight: 450;
    }

    body.page-access .section-header {
      max-width: 780px;
      margin-bottom: 24px;
    }

    body.page-access .section-kicker {
      margin-bottom: 10px;
      color: var(--blue);
      font-size: 14px;
      font-weight: 700;
    }

    body.page-access .section h2 {
      margin: 0 0 12px;
      font-size: clamp(36px,5vw,68px);
      line-height: .95;
      letter-spacing: 0;
      font-weight: 720;
    }

    body.page-access .section-header p {
      margin: 0;
      color: var(--muted);
      font-size: 19px;
      line-height: 1.45;
    }

    body.page-access .actions {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    body.page-access .action {
      min-height: 280px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 24px;
      border-radius: var(--radius-lg);
      border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .06);
      background: rgb(var(--stap-color-white-rgb) / .8);
      box-shadow: 0 14px 42px rgb(var(--stap-color-charcoal-rgb) / .055);
      transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
    }

    body.page-access .action:hover {
      transform: translateY(-2px);
      background: rgb(var(--stap-color-white-rgb) / .94);
      box-shadow: 0 22px 58px rgb(var(--stap-color-charcoal-rgb) / .09);
    }

    body.page-access .action-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    body.page-access .icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--stap-color-warm-light-grey);
      color: var(--blue);
      font-size: 18px;
      font-weight: 760;
    }

    body.page-access .label {
      padding: 7px 11px;
      border-radius: 999px;
      border: 1px solid var(--line);
      color: var(--muted);
      background: rgb(var(--stap-color-white-rgb) / .62);
      font-size: 12px;
      font-weight: 650;
      white-space: nowrap;
    }

    body.page-access .action strong {
      display: block;
      margin: 28px 0 8px;
      font-size: 26px;
      line-height: 1.05;
      letter-spacing: 0;
    }

    body.page-access .action span {
      display: block;
      color: var(--muted);
      font-size: 15.5px;
      line-height: 1.45;
    }

    body.page-access .button {
      width: fit-content;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 24px;
      padding: 0 16px;
      border-radius: 999px;
      background: var(--blue);
      color: #fff;
      font-size: 15px;
      font-weight: 650;
      letter-spacing: 0;
      box-shadow: 0 12px 30px rgb(var(--stap-color-primary-soft-violet-rgb) / .22);
      transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
    }

    body.page-access .button:hover {
      transform: translateY(-1px);
      background: var(--blue-dark);
      box-shadow: 0 16px 36px rgb(var(--stap-color-primary-soft-violet-rgb) / .26);
    }

    body.page-access .api-strip {
      margin-top: 28px;
      background: var(--stap-color-charcoal);
      color: var(--stap-color-warm-light-grey);
      border-radius: 24px;
      padding: 18px;
      font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
      font-size: 13px;
      line-height: 1.65;
    }

    body.page-access .api-strip span {
      color: var(--stap-color-secondary-lemon-yellow);
    }

    body.page-access .footer {
      max-width: var(--max);
      margin: 20px auto 0;
      padding: 30px 34px;
      color: var(--soft);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      font-size: 13px;
      background: rgb(var(--stap-color-white-rgb) / .68);
      border: 1px solid rgb(var(--stap-color-white-rgb) / .9);
      border-radius: 30px;
      box-shadow: 0 18px 48px rgb(var(--stap-color-charcoal-rgb) / .06);
    }

    @media (max-width: 1180px) {body.page-access .nav {
        padding-left: 28px;
        padding-right: 28px;
      }
      body.page-access .nav-link,
body.page-access .dropdown-button {
        padding: 0 13px;
        font-size: 11px;
      }

      body.page-access .nav-cta {
        padding: 0 14px;
        font-size: 11px;
      }

      body.page-access .brand {
        min-width: 92px;
        font-size: 17px;
      }

      body.page-access .dropdown-menu {
        width: min(390px, calc(100vw - 36px));
      }

      body.page-access .dropdown-card {
        min-height: 96px;
        padding: 20px 20px 18px;
      }

      body.page-access .dropdown-card strong {
        font-size: 20px;
      }

      body.page-access .dropdown-card span {
        max-width: 310px;
        font-size: 14px;
      }

    }

    @media (max-width: 920px) {body.page-access .actions {
        grid-template-columns: 1fr;
      }

      body.page-access .nav-wrap {
        padding-top: 14px;
        background: transparent;
        backdrop-filter: none;
      }

      body.page-access .nav {
        width: min(calc(100% - 40px), 980px);
        min-height: 84px;
        padding: 10px 12px 10px 34px;
        align-items: center;
        border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .12);
        border-radius: 999px;
        background: rgb(var(--stap-color-white-rgb) / .96);
        box-shadow: 0 10px 28px rgb(var(--stap-color-charcoal-rgb) / .045);
        backdrop-filter: blur(18px);
      }

      body.page-access .brand {
        min-width: 0;
        padding-top: 0;
        font-size: clamp(22px, 6vw, 32px);
        letter-spacing: 0;
      }

      body.page-access .mobile-menu-button {
        display: inline-flex;
        margin-left: auto;
      }

      body.page-access .nav-cta {
        display: none;
      }

      body.page-access .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        transform: none;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 30px;
        border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .08);
        background: rgb(var(--stap-color-white-rgb) / .98);
        box-shadow: 0 22px 58px rgb(var(--stap-color-charcoal-rgb) / .14);
        color: var(--text);
        white-space: normal;
      }

      body.page-access .nav[data-menu-open="true"] .nav-links {
        display: flex;
      }
      body.page-access .nav-link,
body.page-access .dropdown-button {
        width: 100%;
        min-height: 48px;
        justify-content: flex-start;
        padding: 0 16px;
        color: var(--text);
        text-transform: none;
        letter-spacing: 0;
        font-size: 16px;
      }
      body.page-access .nav-link:hover,
body.page-access .dropdown:hover .dropdown-button,
body.page-access .dropdown:focus-within .dropdown-button,
body.page-access .nav-link.active,
body.page-access .dropdown.active .dropdown-button {
        color: var(--text);
        background: rgb(var(--stap-color-charcoal-rgb) / .05);
        box-shadow: none;
      }

      body.page-access .nav-link-api {
        display: inline-flex;
      }

      body.page-access .dropdown {
        width: 100%;
      }

      body.page-access .dropdown::after {
        display: none;
      }

      body.page-access .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        margin: 6px 0 4px;
        padding: 8px;
        border: 0;
        border-radius: 22px;
        background: rgb(var(--stap-color-charcoal-rgb) / .04);
        box-shadow: none;
        backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
      }
      body.page-access .dropdown:hover .dropdown-menu,
body.page-access .dropdown:focus-within .dropdown-menu {
        transform: none;
      }

      body.page-access .dropdown[data-open="true"] .dropdown-menu {
        display: block;
      }

      body.page-access .dropdown-card {
        min-height: auto;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgb(var(--stap-color-white-rgb) / .72);
      }

      body.page-access .dropdown-card strong {
        font-size: 18px;
      }

      body.page-access .dropdown-card span {
        font-size: 14px;
      }

      body.page-access .hero {
        padding-top: 66px;
      }

    }

    @media (max-width: 560px) {body.page-access .nav {
        width: calc(100% - 24px);
        min-height: 72px;
        padding: 8px 8px 8px 24px;
      }

      body.page-access .mobile-menu-button {
        width: 56px;
        height: 56px;
        border-radius: 20px;
      }

      body.page-access .brand {
        font-size: clamp(22px, 7vw, 28px);
      }
      body.page-access .hero,
body.page-access .section,
body.page-access .footer {
        padding-left: 18px;
        padding-right: 18px;
      }
      body.page-access .hero,
body.page-access .section {
        border-radius: 28px;
      }

      body.page-access .action {
        min-height: 230px;
        border-radius: 24px;
      }

      body.page-access .footer {
        flex-direction: column;
      }

    }


/* page-article-vision: docs/website/pages/html/blog_articles/blog__article_1_our_vision.html */


:root {
      --bg: var(--stap-color-warm-light-grey);
      --surface: rgb(var(--stap-color-white-rgb) / .78);
      --surface-solid: var(--stap-color-white);
      --text: var(--stap-color-charcoal);
      --muted: rgb(var(--stap-color-charcoal-rgb) / .68);
      --soft: rgb(var(--stap-color-charcoal-rgb) / .52);
      --line: rgb(var(--stap-color-charcoal-rgb) / .08);
      --blue: var(--stap-color-charcoal);
      --blue-dark: var(--stap-color-charcoal);
      --green: var(--stap-color-secondary-lemon-yellow);
      --shadow: 0 30px 90px rgb(var(--stap-color-charcoal-rgb) / .10);
      --radius-xl: 44px;
      --radius-lg: 30px;
      --radius-md: 22px;
      --max: 1180px;
    }

    body.page-article-vision * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body.page-article-vision {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 50% -10%, rgb(var(--stap-color-primary-soft-violet-rgb) / .14), transparent 34%),
        linear-gradient(180deg, var(--stap-color-white) 0%, var(--bg) 46%, var(--stap-color-warm-light-grey) 100%);
      -webkit-font-smoothing: antialiased;
    }

    body.page-article-vision a {
      color: inherit;
      text-decoration: none;
    }

    body.page-article-vision .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgb(var(--stap-color-white-rgb) / .58);
      backdrop-filter: saturate(170%) blur(18px);
      border-bottom: 0;
      transform: translateY(0);
      transition: transform .22s cubic-bezier(.22,1,.36,1);
      will-change: transform;
    }

    body.page-article-vision .nav-wrap.nav-hidden {
      transform: translateY(-110%);
    }

    body.page-article-vision .nav {
      width: 100%;
      max-width: 1860px;
      margin: 0 auto;
      padding: 20px 48px 14px;
      min-height: 78px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      position: relative;
      font-size: 13px;
    }

    body.page-article-vision .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 118px;
      padding-top: 5px;
      font-size: 18px;
      line-height: 1;
      font-weight: 760;
      letter-spacing: 0;
      color: var(--text);
      white-space: nowrap;
    }

    body.page-article-vision .nav-links {
      position: absolute;
      left: 50%;
      top: 18px;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      padding: 3px;
      border-radius: 999px;
      background: rgb(var(--stap-color-warm-light-grey-rgb) / .55);
      box-shadow:
        inset 0 1px 0 rgb(var(--stap-color-white-rgb) / .34),
        0 10px 28px rgb(var(--stap-color-charcoal-rgb) / .045);
      backdrop-filter: blur(18px);
      color: rgb(var(--stap-color-white-rgb) / .86);
      font-weight: 600;
      white-space: nowrap;
    }
    body.page-article-vision .nav-link,
body.page-article-vision .dropdown-button {
      min-height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 17px;
      border-radius: 999px;
      color: rgb(var(--stap-color-white-rgb) / .86);
      text-transform: uppercase;
      letter-spacing: .03em;
      font-size: 12px;
      line-height: 1;
      transition: background .18s ease, color .18s ease, box-shadow .18s ease;
      cursor: pointer;
    }
    body.page-article-vision .nav-link:hover,
body.page-article-vision .dropdown:hover .dropdown-button,
body.page-article-vision .dropdown:focus-within .dropdown-button {
      color: #fff;
      background: rgb(var(--stap-color-white-rgb) / .14);
    }
    body.page-article-vision .nav-link.active,
body.page-article-vision .dropdown.active .dropdown-button {
      color: #fff;
      background: rgb(var(--stap-color-charcoal-rgb) / .42);
      box-shadow: inset 0 1px 0 rgb(var(--stap-color-white-rgb) / .18);
    }

    body.page-article-vision .dropdown {
      position: relative;
    }

    body.page-article-vision .dropdown::after {
      content: "";
      position: absolute;
      left: -18px;
      right: -18px;
      top: 100%;
      height: 14px;
      z-index: 1;
    }

    body.page-article-vision .dropdown-button {
      appearance: none;
      border: 0;
      background: transparent;
      font: inherit;
    }

    body.page-article-vision .dropdown-menu {
      position: absolute;
      top: 46px;
      left: 50%;
      width: min(430px, calc(100vw - 40px));
      padding: 10px;
      border-radius: 24px;
      border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .07);
      background: rgb(var(--stap-color-white-rgb) / .98);
      backdrop-filter: blur(24px);
      box-shadow: 0 22px 58px rgb(var(--stap-color-charcoal-rgb) / .14);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      white-space: normal;
      transform: translate(-50%, 8px) scale(.985);
      transform-origin: top center;
      transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
      z-index: 2;
    }
    body.page-article-vision .dropdown:hover .dropdown-menu,
body.page-article-vision .dropdown:focus-within .dropdown-menu,
body.page-article-vision .dropdown[data-open="true"] .dropdown-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate(-50%, 0) scale(1);
    }

    body.page-article-vision .dropdown-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }

    body.page-article-vision .dropdown-card {
      display: block;
      min-height: 104px;
      padding: 24px 26px 22px;
      border-radius: 14px;
      background: var(--stap-color-warm-light-grey);
      border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .035);
      text-transform: none;
      letter-spacing: 0;
      white-space: normal;
      overflow: hidden;
      transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
    }
    body.page-article-vision .dropdown-card:hover,
body.page-article-vision .dropdown-card:focus-visible {
      background: var(--stap-color-warm-light-grey);
      transform: translateY(-1px);
      box-shadow: 0 12px 30px rgb(var(--stap-color-charcoal-rgb) / .06);
      outline: none;
    }

    body.page-article-vision .dropdown-card strong {
      display: block;
      margin-bottom: 9px;
      color: var(--stap-color-charcoal);
      font-size: 22px;
      line-height: 1.08;
      font-weight: 650;
      letter-spacing: 0;
      white-space: normal;
    }

    body.page-article-vision .dropdown-card span {
      display: block;
      max-width: 340px;
      color: var(--stap-color-charcoal);
      line-height: 1.28;
      font-size: 15.5px;
      font-weight: 420;
      letter-spacing: 0;
      white-space: normal;
    }

    body.page-article-vision .nav-cta {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-left: auto;
      padding: 0 17px;
      border-radius: 999px;
      border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .45);
      color: var(--stap-color-charcoal);
      background: rgb(var(--stap-color-white-rgb) / .32);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .055em;
      text-transform: uppercase;
      white-space: nowrap;
      box-shadow: inset 0 1px 0 rgb(var(--stap-color-white-rgb) / .6);
      transition: background .18s ease, border-color .18s ease, transform .18s ease;
    }

    body.page-article-vision .nav-cta:hover {
      transform: translateY(-1px);
      background: rgb(var(--stap-color-charcoal-rgb) / .06);
      border-color: rgb(var(--stap-color-charcoal-rgb) / .72);
    }
    body.page-article-vision .nav-link-api,
body.page-article-vision .mobile-menu-button {
      display: none;
    }

    body.page-article-vision .mobile-menu-button {
      width: 64px;
      height: 64px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 6px;
      border: 0;
      border-radius: 24px;
      background: var(--stap-color-charcoal);
      color: #fff;
      cursor: pointer;
      box-shadow: 0 14px 34px rgb(var(--stap-color-charcoal-rgb) / .16);
      transition: transform .16s ease, background .16s ease;
    }

    body.page-article-vision .mobile-menu-button:hover {
      transform: translateY(-1px);
      background: var(--stap-color-charcoal);
    }

    body.page-article-vision .mobile-menu-button span {
      width: 23px;
      height: 3px;
      border-radius: 999px;
      background: currentColor;
      transition: transform .18s ease, opacity .18s ease;
    }

    body.page-article-vision .mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    body.page-article-vision .mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    body.page-article-vision .mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

    body.page-article-vision main {
      padding: 18px 20px 34px;
    }

    body.page-article-vision .article-shell {
      max-width: 980px;
      margin: 20px auto 0;
      padding: clamp(34px, 6vw, 72px);
      border-radius: var(--radius-xl);
      background: rgb(var(--stap-color-white-rgb) / .74);
      border: 1px solid rgb(var(--stap-color-white-rgb) / .88);
      box-shadow: var(--shadow);
      backdrop-filter: blur(24px);
    }

    body.page-article-vision .back-link {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      margin-bottom: 42px;
      color: var(--soft);
      font-size: 14px;
      font-weight: 650;
      letter-spacing: 0;
      transition: color .16s ease, transform .16s ease;
    }

    body.page-article-vision .back-link:hover {
      color: var(--blue);
      transform: translateX(-1px);
    }

    body.page-article-vision .article-kicker {
      margin: 0 0 16px;
      color: var(--blue);
      font-size: 14px;
      line-height: 1;
      font-weight: 760;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    body.page-article-vision h1 {
      margin: 0;
      font-size: clamp(54px, 8vw, 104px);
      line-height: .88;
      letter-spacing: 0;
      font-weight: 760;
      background: linear-gradient(180deg,var(--stap-color-charcoal) 0%,var(--stap-color-charcoal) 52%,var(--stap-color-charcoal) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    body.page-article-vision .subtitle {
      margin: 22px 0 0;
      max-width: 760px;
      color: var(--muted);
      font-size: clamp(21px, 2.4vw, 30px);
      line-height: 1.22;
      letter-spacing: 0;
      font-weight: 520;
    }

    body.page-article-vision .article-body {
      margin-top: 58px;
      color: var(--stap-color-charcoal);
      font-size: clamp(19px, 1.75vw, 22px);
      line-height: 1.58;
      letter-spacing: 0;
    }

    body.page-article-vision .article-body p {
      margin: 0 0 26px;
    }

    body.page-article-vision .article-body ul {
      margin: 10px 0 32px;
      padding-left: 1.25em;
    }

    body.page-article-vision .article-body li {
      margin: 0 0 12px;
    }

    body.page-article-vision .article-footer {
      margin-top: 44px;
      padding-top: 32px;
      border-top: 1px solid var(--line);
    }

    body.page-article-vision .article-footer .back-link {
      margin-bottom: 0;
    }

    body.page-article-vision .footer {
      max-width: 980px;
      margin: 20px auto 0;
      padding: 26px 34px;
      color: var(--soft);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      font-size: 13px;
      background: rgb(var(--stap-color-white-rgb) / .68);
      border: 1px solid rgb(var(--stap-color-white-rgb) / .9);
      border-radius: 30px;
      box-shadow: 0 18px 48px rgb(var(--stap-color-charcoal-rgb) / .06);
    }

    @media (max-width: 1180px) {body.page-article-vision .nav {
        padding-left: 28px;
        padding-right: 28px;
      }
      body.page-article-vision .nav-link,
body.page-article-vision .dropdown-button {
        padding: 0 13px;
        font-size: 11px;
      }

      body.page-article-vision .nav-cta {
        padding: 0 14px;
        font-size: 11px;
      }

      body.page-article-vision .brand {
        min-width: 92px;
        font-size: 17px;
      }

      body.page-article-vision .dropdown-menu {
        width: min(390px, calc(100vw - 36px));
      }

      body.page-article-vision .dropdown-card {
        min-height: 96px;
        padding: 20px 20px 18px;
      }

      body.page-article-vision .dropdown-card strong {
        font-size: 20px;
      }

      body.page-article-vision .dropdown-card span {
        max-width: 310px;
        font-size: 14px;
      }

    }

    @media (max-width: 920px) {body.page-article-vision .nav-wrap {
        padding-top: 14px;
        background: transparent;
        backdrop-filter: none;
      }

      body.page-article-vision .nav {
        width: min(calc(100% - 40px), 980px);
        min-height: 84px;
        padding: 10px 12px 10px 34px;
        align-items: center;
        border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .12);
        border-radius: 999px;
        background: rgb(var(--stap-color-white-rgb) / .96);
        box-shadow: 0 10px 28px rgb(var(--stap-color-charcoal-rgb) / .045);
        backdrop-filter: blur(18px);
      }

      body.page-article-vision .brand {
        min-width: 0;
        padding-top: 0;
        font-size: clamp(22px, 6vw, 32px);
        letter-spacing: 0;
      }

      body.page-article-vision .mobile-menu-button {
        display: inline-flex;
        margin-left: auto;
      }

      body.page-article-vision .nav-cta {
        display: none;
      }

      body.page-article-vision .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        transform: none;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 30px;
        border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .08);
        background: rgb(var(--stap-color-white-rgb) / .98);
        box-shadow: 0 22px 58px rgb(var(--stap-color-charcoal-rgb) / .14);
        color: var(--text);
        white-space: normal;
      }

      body.page-article-vision .nav[data-menu-open="true"] .nav-links {
        display: flex;
      }
      body.page-article-vision .nav-link,
body.page-article-vision .dropdown-button {
        width: 100%;
        min-height: 48px;
        justify-content: flex-start;
        padding: 0 16px;
        color: var(--text);
        text-transform: none;
        letter-spacing: 0;
        font-size: 16px;
      }
      body.page-article-vision .nav-link:hover,
body.page-article-vision .dropdown:hover .dropdown-button,
body.page-article-vision .dropdown:focus-within .dropdown-button,
body.page-article-vision .nav-link.active,
body.page-article-vision .dropdown.active .dropdown-button {
        color: var(--text);
        background: rgb(var(--stap-color-charcoal-rgb) / .05);
        box-shadow: none;
      }

      body.page-article-vision .nav-link-api {
        display: inline-flex;
      }

      body.page-article-vision .dropdown {
        width: 100%;
      }

      body.page-article-vision .dropdown::after {
        display: none;
      }

      body.page-article-vision .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        margin: 6px 0 4px;
        padding: 8px;
        border: 0;
        border-radius: 22px;
        background: rgb(var(--stap-color-charcoal-rgb) / .04);
        box-shadow: none;
        backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
      }
      body.page-article-vision .dropdown:hover .dropdown-menu,
body.page-article-vision .dropdown:focus-within .dropdown-menu {
        transform: none;
      }

      body.page-article-vision .dropdown[data-open="true"] .dropdown-menu {
        display: block;
      }

      body.page-article-vision .dropdown-card {
        min-height: auto;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgb(var(--stap-color-white-rgb) / .72);
      }

      body.page-article-vision .dropdown-card strong {
        font-size: 18px;
      }

      body.page-article-vision .dropdown-card span {
        font-size: 14px;
      }

    }

    @media (max-width: 560px) {body.page-article-vision main {
        padding: 18px 12px 42px;
      }

      body.page-article-vision .nav {
        width: calc(100% - 24px);
        min-height: 72px;
        padding: 8px 8px 8px 24px;
      }

      body.page-article-vision .mobile-menu-button {
        width: 56px;
        height: 56px;
        border-radius: 20px;
      }

      body.page-article-vision .brand {
        font-size: clamp(22px, 7vw, 28px);
      }

      body.page-article-vision .article-shell {
        padding: 30px 20px;
        border-radius: 30px;
      }

      body.page-article-vision .article-body {
        margin-top: 42px;
      }

      body.page-article-vision .footer {
        margin-left: 12px;
        margin-right: 12px;
        padding: 24px 20px;
        flex-direction: column;
      }

    }


/* page-article-bedrock: docs/website/pages/html/blog_articles/blog__article_2_text_is_the_bedrock.html */


:root {
      --bg: var(--stap-color-warm-light-grey);
      --surface: rgb(var(--stap-color-white-rgb) / .78);
      --surface-solid: var(--stap-color-white);
      --text: var(--stap-color-charcoal);
      --muted: rgb(var(--stap-color-charcoal-rgb) / .68);
      --soft: rgb(var(--stap-color-charcoal-rgb) / .52);
      --line: rgb(var(--stap-color-charcoal-rgb) / .08);
      --blue: var(--stap-color-charcoal);
      --blue-dark: var(--stap-color-charcoal);
      --green: var(--stap-color-secondary-lemon-yellow);
      --shadow: 0 30px 90px rgb(var(--stap-color-charcoal-rgb) / .10);
      --radius-xl: 44px;
      --radius-lg: 30px;
      --radius-md: 22px;
      --max: 1180px;
    }

    body.page-article-bedrock * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body.page-article-bedrock {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 50% -10%, rgb(var(--stap-color-primary-soft-violet-rgb) / .14), transparent 34%),
        linear-gradient(180deg, var(--stap-color-white) 0%, var(--bg) 46%, var(--stap-color-warm-light-grey) 100%);
      -webkit-font-smoothing: antialiased;
    }

    body.page-article-bedrock a {
      color: inherit;
      text-decoration: none;
    }

    body.page-article-bedrock .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgb(var(--stap-color-white-rgb) / .58);
      backdrop-filter: saturate(170%) blur(18px);
      border-bottom: 0;
      transform: translateY(0);
      transition: transform .22s cubic-bezier(.22,1,.36,1);
      will-change: transform;
    }

    body.page-article-bedrock .nav-wrap.nav-hidden {
      transform: translateY(-110%);
    }

    body.page-article-bedrock .nav {
      width: 100%;
      max-width: 1860px;
      margin: 0 auto;
      padding: 20px 48px 14px;
      min-height: 78px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      position: relative;
      font-size: 13px;
    }

    body.page-article-bedrock .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 118px;
      padding-top: 5px;
      font-size: 18px;
      line-height: 1;
      font-weight: 760;
      letter-spacing: 0;
      color: var(--text);
      white-space: nowrap;
    }

    body.page-article-bedrock .nav-links {
      position: absolute;
      left: 50%;
      top: 18px;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      padding: 3px;
      border-radius: 999px;
      background: rgb(var(--stap-color-warm-light-grey-rgb) / .55);
      box-shadow:
        inset 0 1px 0 rgb(var(--stap-color-white-rgb) / .34),
        0 10px 28px rgb(var(--stap-color-charcoal-rgb) / .045);
      backdrop-filter: blur(18px);
      color: rgb(var(--stap-color-white-rgb) / .86);
      font-weight: 600;
      white-space: nowrap;
    }
    body.page-article-bedrock .nav-link,
body.page-article-bedrock .dropdown-button {
      min-height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 17px;
      border-radius: 999px;
      color: rgb(var(--stap-color-white-rgb) / .86);
      text-transform: uppercase;
      letter-spacing: .03em;
      font-size: 12px;
      line-height: 1;
      transition: background .18s ease, color .18s ease, box-shadow .18s ease;
      cursor: pointer;
    }
    body.page-article-bedrock .nav-link:hover,
body.page-article-bedrock .dropdown:hover .dropdown-button,
body.page-article-bedrock .dropdown:focus-within .dropdown-button {
      color: #fff;
      background: rgb(var(--stap-color-white-rgb) / .14);
    }
    body.page-article-bedrock .nav-link.active,
body.page-article-bedrock .dropdown.active .dropdown-button {
      color: #fff;
      background: rgb(var(--stap-color-charcoal-rgb) / .42);
      box-shadow: inset 0 1px 0 rgb(var(--stap-color-white-rgb) / .18);
    }

    body.page-article-bedrock .dropdown {
      position: relative;
    }

    body.page-article-bedrock .dropdown::after {
      content: "";
      position: absolute;
      left: -18px;
      right: -18px;
      top: 100%;
      height: 14px;
      z-index: 1;
    }

    body.page-article-bedrock .dropdown-button {
      appearance: none;
      border: 0;
      background: transparent;
      font: inherit;
    }

    body.page-article-bedrock .dropdown-menu {
      position: absolute;
      top: 46px;
      left: 50%;
      width: min(430px, calc(100vw - 40px));
      padding: 10px;
      border-radius: 24px;
      border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .07);
      background: rgb(var(--stap-color-white-rgb) / .98);
      backdrop-filter: blur(24px);
      box-shadow: 0 22px 58px rgb(var(--stap-color-charcoal-rgb) / .14);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      white-space: normal;
      transform: translate(-50%, 8px) scale(.985);
      transform-origin: top center;
      transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
      z-index: 2;
    }
    body.page-article-bedrock .dropdown:hover .dropdown-menu,
body.page-article-bedrock .dropdown:focus-within .dropdown-menu,
body.page-article-bedrock .dropdown[data-open="true"] .dropdown-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate(-50%, 0) scale(1);
    }

    body.page-article-bedrock .dropdown-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }

    body.page-article-bedrock .dropdown-card {
      display: block;
      min-height: 104px;
      padding: 24px 26px 22px;
      border-radius: 14px;
      background: var(--stap-color-warm-light-grey);
      border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .035);
      text-transform: none;
      letter-spacing: 0;
      white-space: normal;
      overflow: hidden;
      transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
    }
    body.page-article-bedrock .dropdown-card:hover,
body.page-article-bedrock .dropdown-card:focus-visible {
      background: var(--stap-color-warm-light-grey);
      transform: translateY(-1px);
      box-shadow: 0 12px 30px rgb(var(--stap-color-charcoal-rgb) / .06);
      outline: none;
    }

    body.page-article-bedrock .dropdown-card strong {
      display: block;
      margin-bottom: 9px;
      color: var(--stap-color-charcoal);
      font-size: 22px;
      line-height: 1.08;
      font-weight: 650;
      letter-spacing: 0;
      white-space: normal;
    }

    body.page-article-bedrock .dropdown-card span {
      display: block;
      max-width: 340px;
      color: var(--stap-color-charcoal);
      line-height: 1.28;
      font-size: 15.5px;
      font-weight: 420;
      letter-spacing: 0;
      white-space: normal;
    }

    body.page-article-bedrock .nav-cta {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-left: auto;
      padding: 0 17px;
      border-radius: 999px;
      border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .45);
      color: var(--stap-color-charcoal);
      background: rgb(var(--stap-color-white-rgb) / .32);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .055em;
      text-transform: uppercase;
      white-space: nowrap;
      box-shadow: inset 0 1px 0 rgb(var(--stap-color-white-rgb) / .6);
      transition: background .18s ease, border-color .18s ease, transform .18s ease;
    }

    body.page-article-bedrock .nav-cta:hover {
      transform: translateY(-1px);
      background: rgb(var(--stap-color-charcoal-rgb) / .06);
      border-color: rgb(var(--stap-color-charcoal-rgb) / .72);
    }
    body.page-article-bedrock .nav-link-api,
body.page-article-bedrock .mobile-menu-button {
      display: none;
    }

    body.page-article-bedrock .mobile-menu-button {
      width: 64px;
      height: 64px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 6px;
      border: 0;
      border-radius: 24px;
      background: var(--stap-color-charcoal);
      color: #fff;
      cursor: pointer;
      box-shadow: 0 14px 34px rgb(var(--stap-color-charcoal-rgb) / .16);
      transition: transform .16s ease, background .16s ease;
    }

    body.page-article-bedrock .mobile-menu-button:hover {
      transform: translateY(-1px);
      background: var(--stap-color-charcoal);
    }

    body.page-article-bedrock .mobile-menu-button span {
      width: 23px;
      height: 3px;
      border-radius: 999px;
      background: currentColor;
      transition: transform .18s ease, opacity .18s ease;
    }

    body.page-article-bedrock .mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    body.page-article-bedrock .mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    body.page-article-bedrock .mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

    body.page-article-bedrock main {
      padding: 18px 20px 34px;
    }

    body.page-article-bedrock .article-shell {
      max-width: 980px;
      margin: 20px auto 0;
      padding: clamp(34px, 6vw, 72px);
      border-radius: var(--radius-xl);
      background: rgb(var(--stap-color-white-rgb) / .74);
      border: 1px solid rgb(var(--stap-color-white-rgb) / .88);
      box-shadow: var(--shadow);
      backdrop-filter: blur(24px);
    }

    body.page-article-bedrock .back-link {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      margin-bottom: 42px;
      color: var(--soft);
      font-size: 14px;
      font-weight: 650;
      letter-spacing: 0;
      transition: color .16s ease, transform .16s ease;
    }

    body.page-article-bedrock .back-link:hover {
      color: var(--blue);
      transform: translateX(-1px);
    }

    body.page-article-bedrock .article-kicker {
      margin: 0 0 16px;
      color: var(--blue);
      font-size: 14px;
      line-height: 1;
      font-weight: 760;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    body.page-article-bedrock h1 {
      margin: 0;
      font-size: clamp(54px, 8vw, 104px);
      line-height: .88;
      letter-spacing: 0;
      font-weight: 760;
      background: linear-gradient(180deg,var(--stap-color-charcoal) 0%,var(--stap-color-charcoal) 52%,var(--stap-color-charcoal) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    body.page-article-bedrock .subtitle {
      margin: 22px 0 0;
      max-width: 760px;
      color: var(--muted);
      font-size: clamp(21px, 2.4vw, 30px);
      line-height: 1.22;
      letter-spacing: 0;
      font-weight: 520;
    }

    body.page-article-bedrock .article-body {
      margin-top: 58px;
      color: var(--stap-color-charcoal);
      font-size: clamp(19px, 1.75vw, 22px);
      line-height: 1.58;
      letter-spacing: 0;
    }

    body.page-article-bedrock .article-body p {
      margin: 0 0 26px;
    }

    body.page-article-bedrock .article-body h2 {
      margin: 54px 0 22px;
      color: var(--stap-ink);
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.05;
      letter-spacing: -.035em;
    }

    body.page-article-bedrock .article-body h3 {
      margin: 38px 0 18px;
      color: var(--stap-ink);
      font-size: clamp(23px, 2.8vw, 32px);
      line-height: 1.12;
      letter-spacing: -.02em;
    }

    body.page-article-bedrock .article-body ol,
    body.page-article-bedrock .article-body ul {
      margin: 10px 0 32px;
      padding-left: 1.25em;
    }

    body.page-article-bedrock .article-body li {
      margin: 0 0 12px;
    }

    body.page-article-bedrock .article-footer {
      margin-top: 44px;
      padding-top: 32px;
      border-top: 1px solid var(--line);
    }

    body.page-article-bedrock .article-footer .back-link {
      margin-bottom: 0;
    }

    body.page-article-bedrock .footer {
      max-width: 980px;
      margin: 20px auto 0;
      padding: 26px 34px;
      color: var(--soft);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      font-size: 13px;
      background: rgb(var(--stap-color-white-rgb) / .68);
      border: 1px solid rgb(var(--stap-color-white-rgb) / .9);
      border-radius: 30px;
      box-shadow: 0 18px 48px rgb(var(--stap-color-charcoal-rgb) / .06);
    }

    @media (max-width: 1180px) {body.page-article-bedrock .nav {
        padding-left: 28px;
        padding-right: 28px;
      }
      body.page-article-bedrock .nav-link,
body.page-article-bedrock .dropdown-button {
        padding: 0 13px;
        font-size: 11px;
      }

      body.page-article-bedrock .nav-cta {
        padding: 0 14px;
        font-size: 11px;
      }

      body.page-article-bedrock .brand {
        min-width: 92px;
        font-size: 17px;
      }

      body.page-article-bedrock .dropdown-menu {
        width: min(390px, calc(100vw - 36px));
      }

      body.page-article-bedrock .dropdown-card {
        min-height: 96px;
        padding: 20px 20px 18px;
      }

      body.page-article-bedrock .dropdown-card strong {
        font-size: 20px;
      }

      body.page-article-bedrock .dropdown-card span {
        max-width: 310px;
        font-size: 14px;
      }

    }

    @media (max-width: 920px) {body.page-article-bedrock .nav-wrap {
        padding-top: 14px;
        background: transparent;
        backdrop-filter: none;
      }

      body.page-article-bedrock .nav {
        width: min(calc(100% - 40px), 980px);
        min-height: 84px;
        padding: 10px 12px 10px 34px;
        align-items: center;
        border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .12);
        border-radius: 999px;
        background: rgb(var(--stap-color-white-rgb) / .96);
        box-shadow: 0 10px 28px rgb(var(--stap-color-charcoal-rgb) / .045);
        backdrop-filter: blur(18px);
      }

      body.page-article-bedrock .brand {
        min-width: 0;
        padding-top: 0;
        font-size: clamp(22px, 6vw, 32px);
        letter-spacing: 0;
      }

      body.page-article-bedrock .mobile-menu-button {
        display: inline-flex;
        margin-left: auto;
      }

      body.page-article-bedrock .nav-cta {
        display: none;
      }

      body.page-article-bedrock .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        transform: none;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 30px;
        border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .08);
        background: rgb(var(--stap-color-white-rgb) / .98);
        box-shadow: 0 22px 58px rgb(var(--stap-color-charcoal-rgb) / .14);
        color: var(--text);
        white-space: normal;
      }

      body.page-article-bedrock .nav[data-menu-open="true"] .nav-links {
        display: flex;
      }
      body.page-article-bedrock .nav-link,
body.page-article-bedrock .dropdown-button {
        width: 100%;
        min-height: 48px;
        justify-content: flex-start;
        padding: 0 16px;
        color: var(--text);
        text-transform: none;
        letter-spacing: 0;
        font-size: 16px;
      }
      body.page-article-bedrock .nav-link:hover,
body.page-article-bedrock .dropdown:hover .dropdown-button,
body.page-article-bedrock .dropdown:focus-within .dropdown-button,
body.page-article-bedrock .nav-link.active,
body.page-article-bedrock .dropdown.active .dropdown-button {
        color: var(--text);
        background: rgb(var(--stap-color-charcoal-rgb) / .05);
        box-shadow: none;
      }

      body.page-article-bedrock .nav-link-api {
        display: inline-flex;
      }

      body.page-article-bedrock .dropdown {
        width: 100%;
      }

      body.page-article-bedrock .dropdown::after {
        display: none;
      }

      body.page-article-bedrock .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        margin: 6px 0 4px;
        padding: 8px;
        border: 0;
        border-radius: 22px;
        background: rgb(var(--stap-color-charcoal-rgb) / .04);
        box-shadow: none;
        backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
      }
      body.page-article-bedrock .dropdown:hover .dropdown-menu,
body.page-article-bedrock .dropdown:focus-within .dropdown-menu {
        transform: none;
      }

      body.page-article-bedrock .dropdown[data-open="true"] .dropdown-menu {
        display: block;
      }

      body.page-article-bedrock .dropdown-card {
        min-height: auto;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgb(var(--stap-color-white-rgb) / .72);
      }

      body.page-article-bedrock .dropdown-card strong {
        font-size: 18px;
      }

      body.page-article-bedrock .dropdown-card span {
        font-size: 14px;
      }

    }

    @media (max-width: 560px) {body.page-article-bedrock main {
        padding: 18px 12px 42px;
      }

      body.page-article-bedrock .nav {
        width: calc(100% - 24px);
        min-height: 72px;
        padding: 8px 8px 8px 24px;
      }

      body.page-article-bedrock .mobile-menu-button {
        width: 56px;
        height: 56px;
        border-radius: 20px;
      }

      body.page-article-bedrock .brand {
        font-size: clamp(22px, 7vw, 28px);
      }

      body.page-article-bedrock .article-shell {
        padding: 30px 20px;
        border-radius: 30px;
      }

      body.page-article-bedrock .article-body {
        margin-top: 42px;
      }

      body.page-article-bedrock .footer {
        margin-left: 12px;
        margin-right: 12px;
        padding: 24px 20px;
        flex-direction: column;
      }

    }

/* Simple static route pages added for Railway deployment. */
body.page-simple {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  color: var(--stap-color-charcoal);
  background: linear-gradient(180deg, var(--stap-color-white) 0%, var(--stap-color-warm-light-grey) 100%);
  -webkit-font-smoothing: antialiased;
}
body.page-simple * { box-sizing: border-box; }
body.page-simple a { color: inherit; text-decoration: none; }
body.page-simple .shell { width: min(1040px, calc(100vw - 40px)); margin: 0 auto; padding: 28px 0 64px; }
body.page-simple .topbar { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
body.page-simple .brand { font-size: 18px; line-height: 1; font-weight: 760; letter-spacing: 0; }
body.page-simple .navline { display: flex; gap: 18px; color: var(--stap-color-charcoal); font-size: 13px; font-weight: 650; }
body.page-simple .hero { padding: 104px 0 48px; }
body.page-simple .eyebrow { margin-bottom: 20px; color: var(--stap-color-charcoal); font-size: 13px; font-weight: 760; letter-spacing: .04em; text-transform: uppercase; }
body.page-simple h1 { max-width: 820px; margin: 0; font-size: clamp(48px, 8vw, 96px); line-height: .92; letter-spacing: 0; }
body.page-simple .lead { max-width: 680px; margin: 28px 0 0; color: var(--stap-color-charcoal); font-size: 21px; line-height: 1.45; }
body.page-simple .grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 36px; }
body.page-simple .card { min-height: 190px; padding: 28px; border-radius: 24px; background: rgb(var(--stap-color-white-rgb) / .78); border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .08); box-shadow: 0 24px 70px rgb(var(--stap-color-charcoal-rgb) / .08); }
body.page-simple .card h2 { margin: 0 0 12px; font-size: 28px; line-height: 1.05; letter-spacing: 0; }
body.page-simple .card p { margin: 0; color: var(--stap-color-charcoal); font-size: 16px; line-height: 1.55; }
body.page-simple .button { display: inline-flex; align-items: center; justify-content: center; margin-top: 22px; min-height: 42px; padding: 0 16px; border-radius: 999px; background: var(--stap-color-charcoal); color: #fff; font-size: 14px; font-weight: 700; }
body.page-simple .diagnosis-form { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto; align-items: end; gap: 14px; margin: 0 0 42px; padding: 18px; border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .08); border-radius: 24px; background: rgb(var(--stap-color-white-rgb) / .72); box-shadow: 0 24px 70px rgb(var(--stap-color-charcoal-rgb) / .08); }
body.page-simple .diagnosis-form label { display: grid; gap: 8px; min-width: 0; color: var(--stap-color-charcoal); font-size: 13px; font-weight: 700; }
body.page-simple .diagnosis-form span { display: block; }
body.page-simple .diagnosis-form input { width: 100%; min-height: 48px; padding: 0 15px; border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .10); border-radius: 14px; background: var(--stap-color-warm-light-grey); color: var(--stap-color-charcoal); font: inherit; font-size: 15px; outline: none; }
body.page-simple .diagnosis-form input:focus { border-color: var(--stap-color-charcoal); box-shadow: 0 0 0 4px rgb(var(--stap-color-primary-soft-violet-rgb) / .12); }
body.page-simple .diagnosis-form .button { margin-top: 0; min-height: 48px; border: 0; cursor: pointer; white-space: nowrap; }
body.page-simple .footer { display: flex; justify-content: space-between; gap: 16px; padding-top: 48px; color: var(--stap-color-charcoal); font-size: 13px; }
@media (max-width: 760px) {
  body.page-simple .shell { width: min(100% - 28px, 1040px); padding-top: 18px; }
  body.page-simple .topbar { align-items: flex-start; }
  body.page-simple .navline { flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
  body.page-simple .hero { padding: 72px 0 32px; }
  body.page-simple h1 { font-size: 54px; }
  body.page-simple .lead { font-size: 18px; }
  body.page-simple .diagnosis-form { grid-template-columns: 1fr; margin-bottom: 32px; padding: 16px; }
  body.page-simple .diagnosis-form .button { width: 100%; }
  body.page-simple .grid { grid-template-columns: 1fr; }
  body.page-simple .footer { flex-direction: column; }
}

/* Shared STAP navigation for simple static routes. */
body.page-simple .nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(var(--stap-color-white-rgb) / .58);
  backdrop-filter: saturate(170%) blur(18px);
  border-bottom: 0;
  transform: translateY(0);
  transition: transform .22s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
body.page-simple .nav-wrap.nav-hidden {
  transform: translateY(-110%);
}
body.page-simple .nav {
  width: 100%;
  max-width: 1860px;
  margin: 0 auto;
  padding: 20px 48px 14px;
  min-height: 78px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  font-size: 13px;
}
body.page-simple .nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 118px;
  padding-top: 5px;
  font-size: 18px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0;
  color: var(--stap-color-charcoal);
  white-space: nowrap;
}
body.page-simple .nav-links {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 3px;
  border-radius: 999px;
  background: rgb(var(--stap-color-warm-light-grey-rgb) / .55);
  box-shadow:
    inset 0 1px 0 rgb(var(--stap-color-white-rgb) / .34),
    0 10px 28px rgb(var(--stap-color-charcoal-rgb) / .045);
  backdrop-filter: blur(18px);
  color: rgb(var(--stap-color-white-rgb) / .86);
  font-weight: 600;
  white-space: nowrap;
}
body.page-simple .nav-link,
body.page-simple .dropdown-button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 999px;
  color: rgb(var(--stap-color-white-rgb) / .86);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 12px;
  line-height: 1;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
body.page-simple .nav-link:hover,
body.page-simple .dropdown:hover .dropdown-button,
body.page-simple .dropdown:focus-within .dropdown-button {
  color: #fff;
  background: rgb(var(--stap-color-white-rgb) / .14);
}
body.page-simple .nav-link.active,
body.page-simple .dropdown.active .dropdown-button {
  color: #fff;
  background: rgb(var(--stap-color-charcoal-rgb) / .42);
  box-shadow: inset 0 1px 0 rgb(var(--stap-color-white-rgb) / .18);
}
body.page-simple .dropdown {
  position: relative;
}
body.page-simple .dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 14px;
  z-index: 1;
}
body.page-simple .dropdown-button {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
}
body.page-simple .dropdown-menu {
  position: absolute;
  top: 46px;
  left: 50%;
  width: min(430px, calc(100vw - 40px));
  padding: 10px;
  border-radius: 24px;
  border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .07);
  background: rgb(var(--stap-color-white-rgb) / .98);
  backdrop-filter: blur(24px);
  box-shadow: 0 22px 58px rgb(var(--stap-color-charcoal-rgb) / .14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  white-space: normal;
  transform: translate(-50%, 8px) scale(.985);
  transform-origin: top center;
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
  z-index: 2;
}
body.page-simple .dropdown:hover .dropdown-menu,
body.page-simple .dropdown:focus-within .dropdown-menu,
body.page-simple .dropdown[data-open="true"] .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}
body.page-simple .dropdown-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
body.page-simple .dropdown-card {
  display: block;
  min-height: 104px;
  padding: 24px 26px 22px;
  border-radius: 14px;
  background: var(--stap-color-warm-light-grey);
  border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .035);
  text-transform: none;
  letter-spacing: 0;
  white-space: normal;
  overflow: hidden;
  transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
}
body.page-simple .dropdown-card:hover,
body.page-simple .dropdown-card:focus-visible {
  background: var(--stap-color-warm-light-grey);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgb(var(--stap-color-charcoal-rgb) / .06);
  outline: none;
}
body.page-simple .dropdown-card strong {
  display: block;
  margin-bottom: 9px;
  color: var(--stap-color-charcoal);
  font-size: 22px;
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: 0;
  white-space: normal;
}
body.page-simple .dropdown-card span {
  display: block;
  max-width: 340px;
  color: var(--stap-color-charcoal);
  line-height: 1.28;
  font-size: 15.5px;
  font-weight: 420;
  letter-spacing: 0;
  white-space: normal;
}
body.page-simple .nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 0 17px;
  border-radius: 999px;
  border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .45);
  color: var(--stap-color-charcoal);
  background: rgb(var(--stap-color-white-rgb) / .32);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .055em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgb(var(--stap-color-white-rgb) / .6);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
body.page-simple .nav-cta:hover {
  transform: translateY(-1px);
  background: rgb(var(--stap-color-charcoal-rgb) / .06);
  border-color: rgb(var(--stap-color-charcoal-rgb) / .72);
}
body.page-simple .nav-link-api,
body.page-simple .mobile-menu-button {
  display: none;
}
body.page-simple .mobile-menu-button {
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 0;
  border-radius: 24px;
  background: var(--stap-color-charcoal);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 34px rgb(var(--stap-color-charcoal-rgb) / .16);
  transition: transform .16s ease, background .16s ease;
}
body.page-simple .mobile-menu-button:hover {
  transform: translateY(-1px);
  background: var(--stap-color-charcoal);
}
body.page-simple .mobile-menu-button span {
  width: 23px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
body.page-simple .mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
body.page-simple .mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
body.page-simple .mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1180px) {
  body.page-simple .nav {
    padding-left: 28px;
    padding-right: 28px;
  }
  body.page-simple .nav-link,
  body.page-simple .dropdown-button {
    padding: 0 13px;
    font-size: 11px;
  }
  body.page-simple .nav-cta {
    padding: 0 14px;
    font-size: 11px;
  }
  body.page-simple .nav .brand {
    min-width: 92px;
    font-size: 17px;
  }
  body.page-simple .dropdown-menu {
    width: min(390px, calc(100vw - 36px));
  }
  body.page-simple .dropdown-card {
    min-height: 96px;
    padding: 20px 20px 18px;
  }
  body.page-simple .dropdown-card strong {
    font-size: 20px;
  }
  body.page-simple .dropdown-card span {
    max-width: 310px;
    font-size: 14px;
  }
}

@media (max-width: 920px) {
  body.page-simple .nav-wrap {
    padding-top: 14px;
    background: transparent;
    backdrop-filter: none;
  }
  body.page-simple .nav {
    width: min(calc(100% - 40px), 980px);
    min-height: 84px;
    padding: 10px 12px 10px 34px;
    align-items: center;
    border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .12);
    border-radius: 999px;
    background: rgb(var(--stap-color-white-rgb) / .96);
    box-shadow: 0 10px 28px rgb(var(--stap-color-charcoal-rgb) / .045);
    backdrop-filter: blur(18px);
  }
  body.page-simple .nav .brand {
    min-width: 0;
    padding-top: 0;
    font-size: clamp(22px, 6vw, 32px);
    letter-spacing: 0;
  }
  body.page-simple .mobile-menu-button {
    display: inline-flex;
    margin-left: auto;
  }
  body.page-simple .nav-cta {
    display: none;
  }
  body.page-simple .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    transform: none;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 30px;
    border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .08);
    background: rgb(var(--stap-color-white-rgb) / .98);
    box-shadow: 0 22px 58px rgb(var(--stap-color-charcoal-rgb) / .14);
    color: var(--stap-color-charcoal);
    white-space: normal;
  }
  body.page-simple .nav[data-menu-open="true"] .nav-links {
    display: flex;
  }
  body.page-simple .nav-link,
  body.page-simple .dropdown-button {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding: 0 16px;
    color: var(--stap-color-charcoal);
    text-transform: none;
    letter-spacing: 0;
    font-size: 16px;
  }
  body.page-simple .nav-link:hover,
  body.page-simple .dropdown:hover .dropdown-button,
  body.page-simple .dropdown:focus-within .dropdown-button,
  body.page-simple .nav-link.active,
  body.page-simple .dropdown.active .dropdown-button {
    color: var(--stap-color-charcoal);
    background: rgb(var(--stap-color-charcoal-rgb) / .05);
    box-shadow: none;
  }
  body.page-simple .nav-link-api {
    display: inline-flex;
  }
  body.page-simple .dropdown {
    width: 100%;
  }
  body.page-simple .dropdown::after {
    display: none;
  }
  body.page-simple .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 6px 0 4px;
    padding: 8px;
    border: 0;
    border-radius: 22px;
    background: rgb(var(--stap-color-charcoal-rgb) / .04);
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  body.page-simple .dropdown:hover .dropdown-menu,
  body.page-simple .dropdown:focus-within .dropdown-menu {
    transform: none;
  }
  body.page-simple .dropdown[data-open="true"] .dropdown-menu {
    display: block;
  }
  body.page-simple .dropdown-card {
    min-height: auto;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgb(var(--stap-color-white-rgb) / .72);
  }
  body.page-simple .dropdown-card strong {
    font-size: 18px;
  }
  body.page-simple .dropdown-card span {
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  body.page-simple .nav {
    width: calc(100% - 24px);
    min-height: 72px;
    padding: 8px 8px 8px 24px;
  }
  body.page-simple .mobile-menu-button {
    width: 56px;
    height: 56px;
    border-radius: 20px;
  }
  body.page-simple .nav .brand {
    font-size: clamp(22px, 7vw, 28px);
  }
}

/* Principal marketplace comparisons:
   docs/public/website/stap.now/pages/solutions/comparisons__for_people.md */
body.page-solutions-people .topic-section.solutions.comparisons {
  --article-accent: var(--terracotta);
  --article-accent-border: var(--stap-ink);
  --article-accent-soft: var(--stap-ink);
  background: var(--terracotta-soft);
}

body.page-solutions-people #comparisons {
  scroll-margin-top: 104px;
}

body.page-solutions-people .topic-kicker,
body.page-comparison-detail .comparison-eyebrow,
body.page-comparison-detail .comparison-label {
  margin: 0 0 12px;
  color: var(--water-blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .09em;
  line-height: 1.3;
  text-transform: uppercase;
}

body.page-solutions-people .comparison-articles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.page-solutions-people .comparisons .article-card {
  min-height: 300px;
}

body.page-solutions-people .comparisons .article-title {
  max-width: 17ch;
}

body.page-solutions-people .comparison-collection-note {
  max-width: 900px;
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 5px solid var(--terracotta);
  color: rgb(var(--stap-color-charcoal-rgb) / .7);
  background: rgb(var(--stap-color-white-rgb) / .52);
  font-size: 14px;
  line-height: 1.5;
}

body.page-comparison-detail {
  background: linear-gradient(180deg, var(--stap-lavender-soft) 0 22rem, var(--stap-white) 42rem);
}

body.page-comparison-detail .comparison-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 32px auto 0;
}

body.page-comparison-detail .comparison-panel {
  min-width: 0;
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-lg);
  background: rgb(var(--stap-color-white-rgb) / .9);
  box-shadow: 0 14px 38px rgb(var(--stap-color-charcoal-rgb) / .06);
}

body.page-comparison-detail .comparison-back {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 32px;
  color: var(--stap-muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

body.page-comparison-detail .comparison-back::before {
  content: "\2190";
  margin-right: 8px;
}

body.page-comparison-detail .comparison-back:hover,
body.page-comparison-detail .comparison-back:focus-visible {
  color: var(--water-blue);
}

body.page-comparison-detail .comparison-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  overflow: hidden;
}

body.page-comparison-detail .comparison-hero__copy {
  min-width: 0;
  padding: clamp(38px, 6vw, 72px);
}

body.page-comparison-detail .comparison-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--stap-ink);
  font-size: clamp(54px, 8vw, 102px);
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: .92;
}

body.page-comparison-detail .comparison-lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--stap-muted);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.4;
}

body.page-comparison-detail .comparison-reviewed {
  display: block;
  margin-top: 22px;
  color: rgb(var(--stap-color-charcoal-rgb) / .55);
  font-size: 13px;
}

body.page-comparison-detail .comparison-snapshot {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4.5vw, 52px);
  background: var(--sun-yellow-soft);
}

body.page-comparison-detail .comparison-snapshot h2 {
  margin: 0;
  color: var(--stap-ink);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 550;
  letter-spacing: -.05em;
  line-height: 1;
}

body.page-comparison-detail .comparison-snapshot dl {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

body.page-comparison-detail .comparison-snapshot div {
  padding: 15px 0;
  border-top: 1px solid rgb(var(--stap-color-charcoal-rgb) / .22);
}

body.page-comparison-detail .comparison-snapshot dt {
  color: rgb(var(--stap-color-charcoal-rgb) / .58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

body.page-comparison-detail .comparison-snapshot dd {
  margin: 6px 0 0;
  color: var(--stap-ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

body.page-comparison-detail .comparison-section {
  padding: clamp(36px, 5.5vw, 66px);
}

body.page-comparison-detail .comparison-section__header {
  max-width: 860px;
  margin-bottom: 28px;
}

body.page-comparison-detail .comparison-section h2,
body.page-comparison-detail .comparison-final h2 {
  margin: 0;
  color: var(--stap-ink);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
}

body.page-comparison-detail .comparison-section__header > p:last-child {
  margin: 16px 0 0;
  color: var(--stap-muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.48;
}

body.page-comparison-detail .comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-md);
  background: var(--stap-white);
}

body.page-comparison-detail .comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

body.page-comparison-detail .comparison-table th,
body.page-comparison-detail .comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--stap-rule);
  color: var(--stap-muted);
  font-size: 15px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

body.page-comparison-detail .comparison-table th {
  color: var(--stap-ink);
  background: var(--stap-lavender-soft);
  font-size: 13px;
  letter-spacing: .03em;
}

body.page-comparison-detail .comparison-table th:first-child,
body.page-comparison-detail .comparison-table td:first-child {
  width: 19%;
  color: var(--stap-ink);
  font-weight: 650;
}

body.page-comparison-detail .comparison-table tr:last-child td {
  border-bottom: 0;
}

body.page-comparison-detail .comparison-strengths,
body.page-comparison-detail .comparison-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

body.page-comparison-detail .comparison-strengths article,
body.page-comparison-detail .comparison-choices article {
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-md);
}

body.page-comparison-detail .comparison-strengths article:first-child {
  background: var(--sun-yellow-soft);
}

body.page-comparison-detail .comparison-strengths article:last-child {
  border-color: var(--stap-ink);
  background: var(--water-blue-soft);
  box-shadow: 7px 7px 0 var(--stap-ink);
}

body.page-comparison-detail .comparison-strengths h3,
body.page-comparison-detail .comparison-choices h3 {
  margin: 0;
  color: var(--stap-ink);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 550;
  letter-spacing: -.045em;
  line-height: 1.04;
}

body.page-comparison-detail .comparison-strengths ul,
body.page-comparison-detail .comparison-choices ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

body.page-comparison-detail .comparison-strengths li,
body.page-comparison-detail .comparison-choices li {
  margin: 9px 0;
  color: var(--stap-muted);
  font-size: 16px;
  line-height: 1.45;
}

body.page-comparison-detail .comparison-choices article {
  background: var(--warm-white);
}

body.page-comparison-detail .comparison-choices article:last-child {
  background: var(--terracotta-soft);
}

/* Deliveroo comparison: concrete request, bidding, and transaction walkthrough. */
body.page-comparison-detail .deliveroo-model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.page-comparison-detail .deliveroo-model-card {
  min-width: 0;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-md);
  background: var(--sun-yellow-soft);
}

body.page-comparison-detail .deliveroo-model-card--stap {
  border-color: var(--stap-ink);
  background: var(--water-blue-soft);
  box-shadow: 7px 7px 0 var(--stap-ink);
}

body.page-comparison-detail .deliveroo-model-card__number {
  margin: 0 0 24px;
  color: rgb(var(--stap-color-charcoal-rgb) / .46);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

body.page-comparison-detail .deliveroo-model-card h3,
body.page-comparison-detail .deliveroo-agent-market h3,
body.page-comparison-detail .deliveroo-flow-compare h3,
body.page-comparison-detail .deliveroo-demo h3 {
  margin: 0;
  color: var(--stap-ink);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 550;
  letter-spacing: -.045em;
  line-height: 1.04;
}

body.page-comparison-detail .deliveroo-model-card ol {
  margin: 22px 0 0;
  padding-left: 22px;
}

body.page-comparison-detail .deliveroo-model-card li {
  margin: 10px 0;
  color: var(--stap-muted);
  font-size: 16px;
  line-height: 1.48;
}

body.page-comparison-detail .deliveroo-model-note {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgb(var(--stap-color-charcoal-rgb) / .22);
  color: var(--stap-muted);
  font-size: 14px;
  line-height: 1.55;
}

body.page-comparison-detail .deliveroo-request-spec {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
  margin: 22px 0 0;
}

body.page-comparison-detail .deliveroo-request-spec div {
  padding: 12px 0;
  border-top: 1px solid rgb(var(--stap-color-charcoal-rgb) / .18);
}

body.page-comparison-detail .deliveroo-request-spec dt {
  color: rgb(var(--stap-color-charcoal-rgb) / .58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

body.page-comparison-detail .deliveroo-request-spec dd {
  margin: 5px 0 0;
  color: var(--stap-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

body.page-comparison-detail .deliveroo-agent-market {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 48px);
  margin-top: 34px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-md);
  background: var(--warm-white);
}

body.page-comparison-detail .deliveroo-agent-market__intro > p:last-child,
body.page-comparison-detail .deliveroo-selection {
  margin: 16px 0 0;
  color: var(--stap-muted);
  font-size: 15px;
  line-height: 1.52;
}

body.page-comparison-detail .deliveroo-bids {
  display: grid;
  gap: 10px;
}

body.page-comparison-detail .deliveroo-bids article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(90px, .75fr) auto minmax(170px, 1.2fr);
  gap: 14px;
  align-items: center;
  padding: 17px 18px;
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-sm);
  background: var(--stap-white);
}

body.page-comparison-detail .deliveroo-bids span {
  color: var(--stap-ink);
  font-size: 15px;
  font-weight: 700;
}

body.page-comparison-detail .deliveroo-bids strong {
  color: var(--stap-ink);
  font-size: 22px;
}

body.page-comparison-detail .deliveroo-bids small {
  color: var(--stap-muted);
  font-size: 12px;
  line-height: 1.35;
}

body.page-comparison-detail .deliveroo-bids .deliveroo-bid--selected {
  border-color: var(--stap-ink);
  background: var(--terracotta-soft);
  box-shadow: 4px 4px 0 var(--stap-ink);
}

body.page-comparison-detail .deliveroo-bids em {
  position: absolute;
  top: -10px;
  right: 14px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--warm-white);
  background: var(--stap-ink);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.page-comparison-detail .deliveroo-selection {
  grid-column: 2;
  margin-top: -2px;
}

body.page-comparison-detail .deliveroo-commit-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

body.page-comparison-detail .deliveroo-commit-flow li {
  display: flex;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-sm);
  background: var(--stap-lavender-soft);
}

body.page-comparison-detail .deliveroo-commit-flow li > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--warm-white);
  background: var(--stap-ink);
  font-size: 12px;
  font-weight: 700;
}

body.page-comparison-detail .deliveroo-commit-flow h3 {
  margin: 3px 0 0;
  color: var(--stap-ink);
  font-size: 18px;
}

body.page-comparison-detail .deliveroo-commit-flow p {
  margin: 8px 0 0;
  color: var(--stap-muted);
  font-size: 14px;
  line-height: 1.45;
}

body.page-comparison-detail .deliveroo-flow-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

body.page-comparison-detail .deliveroo-flow-compare article {
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-md);
  background: var(--sun-yellow-soft);
}

body.page-comparison-detail .deliveroo-flow-compare article:last-child {
  border-color: var(--stap-ink);
  background: var(--water-blue-soft);
}

body.page-comparison-detail .deliveroo-flow-compare p {
  margin: 18px 0 0;
  color: var(--stap-muted);
  font-size: 15px;
  line-height: 1.75;
}

body.page-comparison-detail .deliveroo-flow-compare span {
  padding: 0 4px;
  color: var(--stap-ink);
  font-weight: 700;
}

body.page-comparison-detail .deliveroo-thesis {
  margin: 26px 0 0;
  padding: clamp(28px, 4vw, 44px);
  border: 0;
  border-radius: var(--stap-radius-md);
  color: var(--stap-ink);
  background: var(--stap-lavender-soft);
}

body.page-comparison-detail .deliveroo-thesis p {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 550;
  letter-spacing: -.03em;
  line-height: 1.2;
}

body.page-comparison-detail .deliveroo-demo {
  display: grid;
  grid-template-columns: minmax(230px, .8fr) repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

body.page-comparison-detail .deliveroo-demo > div,
body.page-comparison-detail .deliveroo-demo article,
body.page-comparison-detail .deliveroo-demo aside {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-md);
}

body.page-comparison-detail .deliveroo-demo > div {
  border: 0;
  padding-left: 0;
}

body.page-comparison-detail .deliveroo-demo article {
  background: var(--warm-white);
}

body.page-comparison-detail .deliveroo-demo .deliveroo-demo__stap {
  border-color: var(--stap-ink);
  background: var(--terracotta-soft);
}

body.page-comparison-detail .deliveroo-demo article > span {
  color: var(--stap-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

body.page-comparison-detail .deliveroo-demo article p {
  margin: 16px 0 0;
  color: var(--stap-ink);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.4;
}

body.page-comparison-detail .deliveroo-demo article small {
  display: block;
  margin-top: 16px;
  color: var(--stap-muted);
  font-size: 13px;
  line-height: 1.5;
}

body.page-comparison-detail .deliveroo-demo aside {
  grid-column: 2 / -1;
  color: var(--warm-white);
  background: var(--stap-ink);
}

body.page-comparison-detail .deliveroo-demo aside strong {
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.2;
}

body.page-comparison-detail .deliveroo-demo aside p {
  margin: 10px 0 0;
  color: rgb(var(--stap-color-white-rgb) / .74);
  font-size: 15px;
  line-height: 1.5;
}

body.page-comparison-detail .comparison-caveat {
  color: var(--warm-white);
  background: var(--stap-ink);
}

body.page-comparison-detail .comparison-caveat h2,
body.page-comparison-detail .comparison-caveat p,
body.page-comparison-detail .comparison-caveat li {
  color: inherit;
}

body.page-comparison-detail .comparison-caveat ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

body.page-comparison-detail .comparison-caveat li {
  padding: 18px;
  border: 1px solid rgb(var(--stap-color-white-rgb) / .2);
  border-radius: var(--stap-radius-sm);
  font-size: 14px;
  line-height: 1.5;
}

body.page-comparison-detail .comparison-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}

body.page-comparison-detail .comparison-sources a {
  color: var(--water-blue);
  font-size: 14px;
  font-weight: 650;
}

body.page-comparison-detail .comparison-final {
  padding: clamp(42px, 6vw, 72px);
  text-align: center;
  background: var(--sun-yellow);
}

body.page-comparison-detail .comparison-final p {
  max-width: 700px;
  margin: 18px auto 0;
  color: rgb(var(--stap-color-charcoal-rgb) / .7);
  font-size: 18px;
  line-height: 1.5;
}

body.page-comparison-detail .comparison-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

body.page-comparison-detail .comparison-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--stap-ink);
  border-radius: 999px;
  color: var(--stap-ink);
  background: var(--stap-white);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

body.page-comparison-detail .comparison-button--primary {
  color: var(--warm-white);
  background: var(--stap-ink);
}

body.page-comparison-detail .comparison-button:hover {
  transform: translateY(-2px);
}

body.page-comparison-detail .comparison-back:focus-visible,
body.page-comparison-detail .comparison-button:focus-visible,
body.page-comparison-detail .comparison-sources a:focus-visible {
  outline: 3px solid rgb(var(--stap-color-water-blue-rgb) / .42);
  outline-offset: 3px;
}

body.page-comparison-detail .footer {
  max-width: var(--max);
  margin: 24px auto 0;
}

@media (max-width: 820px) {
  body.page-solutions-people .comparison-articles,
  body.page-comparison-detail .comparison-hero,
  body.page-comparison-detail .comparison-strengths,
  body.page-comparison-detail .comparison-choices,
  body.page-comparison-detail .deliveroo-model-grid,
  body.page-comparison-detail .deliveroo-agent-market,
  body.page-comparison-detail .deliveroo-commit-flow,
  body.page-comparison-detail .deliveroo-flow-compare,
  body.page-comparison-detail .deliveroo-demo {
    grid-template-columns: 1fr;
  }

  body.page-comparison-detail .deliveroo-selection,
  body.page-comparison-detail .deliveroo-demo aside {
    grid-column: auto;
  }

  body.page-comparison-detail .comparison-caveat ul {
    grid-template-columns: 1fr;
  }

  body.page-comparison-detail .comparison-hero__copy,
  body.page-comparison-detail .comparison-snapshot,
  body.page-comparison-detail .comparison-section,
  body.page-comparison-detail .comparison-final {
    padding: 32px 24px;
  }
}

@media (max-width: 560px) {
  body.page-comparison-detail .comparison-shell {
    width: min(100% - 28px, var(--max));
    margin-top: 20px;
  }

  body.page-comparison-detail .comparison-panel {
    border-radius: var(--stap-radius-md);
  }

  body.page-comparison-detail .comparison-hero h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  body.page-comparison-detail .comparison-table th,
  body.page-comparison-detail .comparison-table td {
    padding: 15px;
    font-size: 14px;
  }

  body.page-comparison-detail .deliveroo-request-spec,
  body.page-comparison-detail .deliveroo-bids article {
    grid-template-columns: 1fr;
  }

  body.page-comparison-detail .deliveroo-bids article {
    gap: 6px;
  }
}

/* Shared editorial reading layout for every STAP article page. */
body.page-article {
  --article-paper: var(--stap-color-warm-white);
  --article-ink: var(--stap-color-charcoal);
  --article-muted: rgb(var(--stap-color-charcoal-rgb) / .72);
  --article-faint: rgb(var(--stap-color-charcoal-rgb) / .56);
  --article-rule: rgb(var(--stap-color-charcoal-rgb) / .2);
  --article-serif: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --article-text-serif: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --article-sans: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --article-content-width: 650px;
  --article-rail-width: 220px;
  --article-page-gutter: clamp(22px, 4vw, 52px);
  margin: 0;
  color: var(--article-ink);
  background: var(--article-paper);
  font-family: var(--article-text-serif);
  font-size: 18px;
  line-height: 1.48;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.page-article *,
body.page-article *::before,
body.page-article *::after { box-sizing: border-box; }

body.page-article a { color: inherit; }
body.page-article ::selection {
  color: var(--stap-color-charcoal);
  background: rgb(var(--stap-color-sun-yellow-rgb) / .72);
}

/* Article pages use the homepage navbar surface without any editorial override. */
body.page-article .nav-wrap {
  background: rgb(var(--stap-color-white-rgb) / .58);
  border-bottom: 0;
  backdrop-filter: saturate(170%) blur(18px);
}

body.page-article .article-masthead {
  width: min(760px, calc(100% - 2 * var(--article-page-gutter)));
  margin: 54px auto 0;
  text-align: center;
}

body.page-article .article-masthead h1 {
  max-width: 720px;
  margin: 0 auto;
  color: var(--article-ink);
  background: none;
  font-family: var(--article-serif);
  font-size: clamp(30px, 4.1vw, 49px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.022em;
  text-wrap: balance;
  -webkit-text-fill-color: currentColor;
}

body.page-article .article-meta {
  margin: 21px 0 0;
  font-family: var(--article-sans);
  font-size: 12px;
  line-height: 1.55;
}

body.page-article .article-meta__date { margin-left: 15px; }

body.page-article .article-grid,
body.page-article .article-end {
  width: min(1240px, calc(100% - 2 * var(--article-page-gutter)));
  display: grid;
  grid-template-columns: var(--article-rail-width) minmax(0, var(--article-content-width)) var(--article-rail-width);
  column-gap: clamp(34px, 4vw, 66px);
  justify-content: center;
}

body.page-article .article-grid {
  margin: 78px auto 0;
  align-items: start;
}

body.page-article .article-toc {
  grid-column: 1;
  position: sticky;
  top: 28px;
  color: var(--article-ink);
  font-family: var(--article-sans);
  font-size: 12px;
  line-height: 1.36;
}

body.page-article .article-toc__label {
  margin: 0 0 13px;
  color: var(--article-faint);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .02em;
}

body.page-article .article-toc ul {
  margin: 0;
  padding-left: 17px;
}

body.page-article .article-toc li {
  margin: 0 0 8px;
  padding-left: 1px;
}

body.page-article .article-toc a { text-decoration: none; }
body.page-article .article-toc a:hover,
body.page-article .article-toc a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

body.page-article .article-body {
  grid-column: 2;
  min-width: 0;
  max-width: none;
  font-size: 18px;
  line-height: 1.49;
  letter-spacing: -.004em;
}

body.page-article .article-body > :first-child { margin-top: 0; }
body.page-article .article-body p { margin: 0 0 1.08em; }

body.page-article .article-body h2 {
  margin: 2.55em 0 .68em;
  scroll-margin-top: 28px;
  font-family: var(--article-serif);
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.018em;
}

body.page-article .article-body h3 {
  margin: 2em 0 .65em;
  scroll-margin-top: 28px;
  font-family: var(--article-text-serif);
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.28;
}

body.page-article .article-body ul,
body.page-article .article-body ol {
  margin: .2em 0 1.15em;
  padding-left: 1.35em;
}

body.page-article .article-body li {
  margin: .25em 0;
  padding-left: .1em;
}

body.page-article .article-body strong { font-weight: 700; }
body.page-article .article-body a {
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

body.page-article .article-empty-rail {
  grid-column: 3;
  min-height: 1px;
}

body.page-article .article-end {
  margin: 80px auto 0;
  font-family: var(--article-sans);
  font-size: 11px;
  line-height: 1;
}

body.page-article .article-end__inner {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.page-article .article-end a { text-decoration: none; }
body.page-article .article-end a:hover,
body.page-article .article-end a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.page-article .article-site-footer {
  width: 100%;
  margin: 122px auto 0;
  padding: 36px 0 30px;
  border-top: 1px solid rgb(var(--stap-color-charcoal-rgb) / .42);
  background: var(--article-paper);
  font-family: var(--article-sans);
  font-size: 12px;
  line-height: 1.45;
}

body.page-article .article-site-footer .shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

body.page-article .article-footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
}

body.page-article .article-footer-logo {
  width: fit-content;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.055em;
  text-decoration: none;
}

body.page-article .article-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  font-size: 13px;
}

body.page-article .article-footer-links a {
  text-decoration: none;
}

body.page-article .article-footer-links a:hover,
body.page-article .article-footer-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.page-article .article-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 74px;
  color: var(--article-muted);
  font-size: 12px;
}

@media (max-width: 1020px) {
  body.page-article .article-grid,
  body.page-article .article-end {
    width: min(var(--article-content-width), calc(100% - 2 * var(--article-page-gutter)));
    display: block;
  }

  body.page-article .article-toc {
    position: static;
    margin: 0 0 48px;
    padding: 0 0 24px;
    border-bottom: 1px solid var(--article-rule);
  }

  body.page-article .article-toc ul {
    columns: 2;
    column-gap: 34px;
  }

  body.page-article .article-toc li { break-inside: avoid; }
  body.page-article .article-empty-rail { display: none; }
  body.page-article .article-end__inner { display: flex; }
}

@media (max-width: 820px) {
  body.page-article { --article-page-gutter: 20px; }
  body.page-article .article-masthead {
    width: calc(100% - 40px);
    margin-top: 44px;
  }

  body.page-article .article-masthead h1 {
    max-width: 540px;
    font-size: clamp(29px, 8.6vw, 40px);
    line-height: 1.07;
  }

  body.page-article .article-meta { margin-top: 17px; }
  body.page-article .article-meta__author,
  body.page-article .article-meta__date {
    display: block;
    margin-left: 0;
  }

  body.page-article .article-grid { margin-top: 58px; }
  body.page-article .article-toc { margin-bottom: 42px; }
  body.page-article .article-toc ul { columns: 1; }
  body.page-article .article-body { font-size: 17px; line-height: 1.5; }
  body.page-article .article-body h2 { margin-top: 2.45em; font-size: 25px; }
  body.page-article .article-body h3 { font-size: 18px; }
  body.page-article .article-end { margin-top: 64px; }
  body.page-article .article-site-footer { margin-top: 92px; }
}

@media (max-width: 440px) {
  body.page-article .article-end__inner { gap: 20px; }
  body.page-article .article-footer-top,
  body.page-article .article-footer-bottom {
    display: flex;
    flex-direction: column;
  }
  body.page-article .article-footer-links { justify-content: flex-start; }
  body.page-article .article-footer-bottom { margin-top: 52px; }
}

@media print {
  body.page-article site-navigation,
  body.page-article .article-toc,
  body.page-article .article-end,
  body.page-article .article-site-footer { display: none !important; }
  body.page-article .article-masthead { margin-top: 0; }
  body.page-article .article-grid { display: block; width: 100%; margin-top: 45px; }
  body.page-article .article-body { width: 100%; max-width: none; }
}

/* Shared 2026 STAP marketing-site system: Sun, Water & Earth palette + framed navigation. */
:root {
  --charcoal-black: var(--stap-color-charcoal);
  --water-blue: var(--stap-color-water-blue);
  --sun-yellow: var(--stap-color-sun-yellow);
  --terracotta: var(--stap-color-terracotta);
  --warm-white: var(--stap-color-warm-white);
  --water-blue-soft: rgb(var(--stap-color-water-blue-rgb) / .22);
  --sun-yellow-soft: rgb(var(--stap-color-sun-yellow-rgb) / .42);
  --terracotta-soft: rgb(var(--stap-color-terracotta-rgb) / .14);
  /* Compatibility aliases preserve existing component structure. */
  --soft-violet: var(--water-blue-soft);
  --lemon-yellow: var(--sun-yellow-soft);
  --warm-light-grey: var(--warm-white);
  --stap-blue: var(--water-blue);
  --stap-green: var(--terracotta);
  --stap-violet: var(--water-blue);
  --stap-lavender: var(--water-blue-soft);
  --stap-lavender-soft: var(--warm-white);
  --stap-violet-ink: var(--water-blue);
  --stap-ink: var(--charcoal-black);
  --stap-deep-ink: var(--charcoal-black);
  --stap-muted: rgb(var(--stap-color-charcoal-rgb) / .72);
  --stap-rule: rgb(var(--stap-color-charcoal-rgb) / .24);
  --stap-rule-strong: rgb(var(--stap-color-charcoal-rgb) / .55);
  --stap-warm: var(--charcoal-black);
  --stap-white: var(--stap-color-white);
  --stap-radius-lg: 24px;
  --stap-radius-md: 18px;
  --stap-radius-sm: 14px;
  --frame-corner-length: 11px;
  --frame-thickness: 2px;
  --frame-dot-length: 3px;
  --frame-dot-gap: 4px;
}

body.page-blog,
body.page-access,
body.page-simple,
body.page-article-vision,
body.page-article-bedrock {
  color: var(--stap-ink);
  background: var(--stap-white);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

body.menu-open { overflow: hidden; }

/* The custom-element host owns sticky positioning so its header is not
   constrained to a one-header-high containing block. */
site-navigation {
  display: block;
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
}

body .nav-wrap {
  position: relative !important;
  top: auto;
  z-index: auto;
  background: rgb(var(--stap-color-white-rgb) / .94);
  border-bottom: 1px solid rgb(var(--stap-color-charcoal-rgb) / .12);
  backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform .22s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

body .nav-wrap.nav-hidden { transform: translateY(-110%); }

body .nav.site-nav {
  width: 100%;
  max-width: none;
  min-height: 82px;
  margin: 0;
  padding: 14px 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  font-size: 13px;
}

body .nav.site-nav .brand {
  justify-self: start;
  min-width: 0;
  padding: 0;
  color: var(--stap-deep-ink);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}

/* Keep the shared navigation visually self-contained when a page defines its
   own editorial link treatment (article pages underline links by default). */
body .nav.site-nav :is(.brand, .nav-link, .nav-cta, .dropdown-card) {
  text-decoration: none;
}

body .nav.site-nav .nav-links {
  position: static;
  justify-self: center;
  transform: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  color: var(--stap-muted);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body .nav.site-nav .nav-link,
body .nav.site-nav .dropdown-button,
body .nav.site-nav .nav-cta,
body .nav.site-nav .mobile-menu-button {
  --frame-color: var(--stap-rule);
  --frame-corner-color: var(--stap-deep-ink);
  --frame-background: var(--stap-white);
  --frame-text: var(--stap-muted);
  position: relative;
  isolation: isolate;
  min-height: 44px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 0;
  color: var(--frame-text);
  background: var(--frame-background);
  box-shadow: none;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

body .nav.site-nav .nav-link::before,
body .nav.site-nav .dropdown-button::before,
body .nav.site-nav .nav-cta::before,
body .nav.site-nav .mobile-menu-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(to bottom, var(--frame-color) 0 var(--frame-dot-length), transparent var(--frame-dot-length) calc(var(--frame-dot-length) + var(--frame-dot-gap))),
    repeating-linear-gradient(to bottom, var(--frame-color) 0 var(--frame-dot-length), transparent var(--frame-dot-length) calc(var(--frame-dot-length) + var(--frame-dot-gap))),
    linear-gradient(var(--frame-corner-color), var(--frame-corner-color)), linear-gradient(var(--frame-corner-color), var(--frame-corner-color)),
    linear-gradient(var(--frame-corner-color), var(--frame-corner-color)), linear-gradient(var(--frame-corner-color), var(--frame-corner-color)),
    linear-gradient(var(--frame-corner-color), var(--frame-corner-color)), linear-gradient(var(--frame-corner-color), var(--frame-corner-color)),
    linear-gradient(var(--frame-corner-color), var(--frame-corner-color)), linear-gradient(var(--frame-corner-color), var(--frame-corner-color));
  background-repeat: no-repeat;
  background-position: left center, right center, left top, left top, right top, right top, left bottom, left bottom, right bottom, right bottom;
  background-size:
    var(--frame-thickness) calc(100% - (var(--frame-corner-length) * 2)),
    var(--frame-thickness) calc(100% - (var(--frame-corner-length) * 2)),
    var(--frame-corner-length) var(--frame-thickness), var(--frame-thickness) var(--frame-corner-length),
    var(--frame-corner-length) var(--frame-thickness), var(--frame-thickness) var(--frame-corner-length),
    var(--frame-corner-length) var(--frame-thickness), var(--frame-thickness) var(--frame-corner-length),
    var(--frame-corner-length) var(--frame-thickness), var(--frame-thickness) var(--frame-corner-length);
}

body .nav.site-nav .nav-link:hover,
body .nav.site-nav .dropdown-button:hover,
body .nav.site-nav .dropdown:hover .dropdown-button,
body .nav.site-nav .dropdown:focus-within .dropdown-button,
body .nav.site-nav .nav-link.active,
body .nav.site-nav .dropdown.active .dropdown-button,
body .nav.site-nav .dropdown[data-open="true"] .dropdown-button {
  --frame-color: var(--stap-violet-ink);
  --frame-corner-color: var(--stap-violet-ink);
  --frame-background: var(--stap-lavender-soft);
  --frame-text: var(--stap-violet-ink);
  color: var(--frame-text);
  background: var(--frame-background);
  box-shadow: none;
  transform: translateY(-1px);
}

body .nav.site-nav .nav-cta {
  --frame-color: rgb(var(--stap-color-charcoal-rgb) / .55);
  --frame-corner-color: var(--stap-warm);
  --frame-text: var(--stap-warm);
  justify-self: end;
  margin: 0;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-weight: 500;
}

body .nav.site-nav .nav-cta:hover,
body .nav.site-nav .nav-cta.active {
  --frame-color: var(--stap-warm);
  --frame-corner-color: var(--stap-warm);
  --frame-background: var(--stap-lavender);
  --frame-text: var(--stap-warm);
  color: var(--stap-warm);
  background: var(--stap-lavender);
  transform: translateY(-1px);
}

body .nav.site-nav :is(.nav-link, .dropdown-button, .nav-cta, .mobile-menu-button):focus-visible,
body .nav.site-nav .brand:focus-visible,
body .nav.site-nav .dropdown-card:focus-visible {
  outline: 3px solid rgb(var(--stap-color-primary-soft-violet-rgb) / .28);
  outline-offset: 4px;
}

body .nav.site-nav .dropdown { position: relative; }
body .nav.site-nav .dropdown::after { height: 12px; }

body .nav.site-nav .dropdown-menu {
  position: absolute;
  top: 54px;
  left: 50%;
  display: block;
  width: min(430px, calc(100vw - 40px));
  padding: 10px;
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-md);
  background: rgb(var(--stap-color-white-rgb) / .98);
  box-shadow: 0 18px 45px rgb(var(--stap-color-charcoal-rgb) / .12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px) scale(.985);
  transform-origin: top center;
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

body .nav.site-nav .dropdown:hover .dropdown-menu,
body .nav.site-nav .dropdown:focus-within .dropdown-menu,
body .nav.site-nav .dropdown[data-open="true"] .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

body .nav.site-nav .dropdown-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

body .nav.site-nav .dropdown-card {
  display: block;
  min-height: 96px;
  overflow: hidden;
  padding: 21px 22px 19px;
  border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .16);
  border-radius: var(--stap-radius-sm);
  color: var(--stap-ink);
  background: var(--stap-lavender-soft);
  box-shadow: none;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

body .nav.site-nav .dropdown-card:hover,
body .nav.site-nav .dropdown-card:focus-visible {
  background: var(--stap-lavender);
  border-color: var(--stap-rule-strong);
  box-shadow: none;
  transform: translateY(-1px);
}

body .nav.site-nav .dropdown-card strong {
  display: block;
  margin-bottom: 9px;
  color: var(--stap-deep-ink);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: 0;
  white-space: normal;
}

body .nav.site-nav .dropdown-card span {
  display: block;
  max-width: 340px;
  color: var(--stap-muted);
  font-size: 15.5px;
  font-weight: 420;
  line-height: 1.28;
  letter-spacing: 0;
  white-space: normal;
}
body .nav.site-nav .nav-link-api,
body .nav.site-nav .mobile-menu-button { display: none; }

/* Secondary surfaces inherit the homepage's white/lavender editorial language. */
body.page-simple .shell { width: min(1180px, calc(100vw - 40px)); padding-top: 34px; }
body.page-simple .hero {
  margin-top: 18px;
  padding: clamp(64px, 9vw, 118px) clamp(24px, 6vw, 72px);
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-lg);
  background: var(--stap-lavender);
}
body.page-simple .eyebrow { color: var(--stap-violet-ink); }
body.page-simple h1 { color: var(--stap-ink); font-weight: 500; letter-spacing: -.065em; }
body.page-simple .lead { color: var(--stap-muted); }
body.page-simple .button { border-radius: 0; background: var(--stap-ink); color: var(--stap-white); }
body.page-simple .card,
body.page-simple .diagnosis-form {
  border-color: var(--stap-rule);
  border-radius: var(--stap-radius-md);
  background: var(--stap-white);
  box-shadow: 0 12px 32px rgb(var(--stap-color-charcoal-rgb) / .06);
}
body.page-simple .diagnosis-form input { border-radius: var(--stap-radius-sm); background: var(--stap-white); }
body.page-simple .diagnosis-form input:focus { border-color: var(--stap-violet-ink); box-shadow: 0 0 0 4px rgb(var(--stap-color-primary-soft-violet-rgb) / .12); }

body.page-access main { background: linear-gradient(180deg, var(--stap-lavender-soft) 0 28%, var(--stap-white) 28%); }
body.page-access .hero,
body.page-access .section {
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-lg);
  box-shadow: 0 14px 38px rgb(var(--stap-color-charcoal-rgb) / .06);
}
body.page-access .hero { background: var(--stap-lavender); }
body.page-access h1,
body.page-access .section h2 { color: var(--stap-ink); font-weight: 500; letter-spacing: -.055em; background: none; -webkit-text-fill-color: currentColor; }
body.page-access .section-kicker,
body.page-access .eyebrow { color: var(--stap-violet-ink); }
body.page-access .action { border-color: var(--stap-rule); border-radius: var(--stap-radius-md); box-shadow: none; }
body.page-access .action:hover { border-color: var(--stap-rule-strong); box-shadow: 0 12px 30px rgb(var(--stap-color-charcoal-rgb) / .07); }

body.page-blog { background: linear-gradient(180deg, var(--stap-lavender-soft) 0 24rem, var(--stap-white) 42rem); }
body.page-blog .hero { background: transparent; }
body.page-blog .hero h1 { color: var(--stap-ink); font-weight: 500; letter-spacing: -.065em; background: none; -webkit-text-fill-color: currentColor; }
body.page-blog .topic-section {
  border-color: var(--stap-rule);
  border-radius: var(--stap-radius-lg);
  box-shadow: 0 14px 38px rgb(var(--stap-color-charcoal-rgb) / .06);
}

/* Topic identity comes from the card surface, while all copy stays in the
   charcoal family for consistent contrast and hierarchy. */
body.page-blog .topic-section.ideas { background: var(--soft-violet); }
body.page-blog .topic-section.product { background: var(--lemon-yellow); }
body.page-blog .topic-section.business { background: var(--terracotta-soft); }
body.page-solutions-people .topic-section.solutions,
body.page-solutions-business .topic-section.solutions { background: var(--soft-violet); }

body.page-solutions-people .topic-section.demos {
  background: var(--lemon-yellow);
}

body.page-solutions-people .topic-description {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgb(var(--stap-color-charcoal-rgb) / .68);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.38;
  font-weight: 430;
  text-wrap: pretty;
}

body.page-blog .topic-section:is(.ideas, .product, .business) .topic-title,
body.page-blog .topic-section .article-title,
body.page-blog .topic-section .button,
body.page-blog .topic-section .more-button {
  color: var(--charcoal-black);
}

body.page-blog .topic-section .article-desc {
  color: rgb(var(--stap-color-charcoal-rgb) / .68);
}

body.page-blog .article-card {
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-sm);
  background: rgb(var(--stap-color-white-rgb) / .56);
  box-shadow: none;
}

body.page-blog .topic-section .article-card::before {
  color: rgb(var(--stap-color-charcoal-rgb) / .58);
}

body.page-blog .article-card:hover,
body.page-blog .article-card:focus-visible {
  border-color: var(--charcoal-black);
  background: rgb(var(--stap-color-white-rgb) / .76);
  box-shadow: 0 10px 24px rgb(var(--stap-color-charcoal-rgb) / .07);
  outline: none;
}
body.page-blog .button { border-radius: 0; }

body.page-solutions-people .article-card .button,
body.page-solutions-business .article-card .button {
  align-self: flex-end;
  margin-top: 0;
}

/* Principal getting-started guide:
   docs/public/website/stap.now/pages/solutions/solutions__for_people.md */
body.page-solutions-people .people-guide {
  display: grid;
  gap: 28px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

body.page-solutions-people .people-guide-panel {
  overflow: hidden;
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-lg);
  background: rgb(var(--stap-color-white-rgb) / .88);
  box-shadow: 0 14px 38px rgb(var(--stap-color-charcoal-rgb) / .06);
}

body.page-solutions-people #principal-journey,
body.page-solutions-people #stap-pillars {
  scroll-margin-top: 104px;
}

body.page-solutions-people .people-guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  min-height: 610px;
}

body.page-solutions-people .people-guide-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 76px);
}

body.page-solutions-people .people-guide-eyebrow,
body.page-solutions-people .people-guide-kicker,
body.page-solutions-people .people-guide-pillar__kicker,
body.page-solutions-people .people-guide-example__label,
body.page-solutions-people .people-guide-comparison__label {
  margin: 0;
  color: var(--water-blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .09em;
  line-height: 1.3;
  text-transform: uppercase;
}

body.page-solutions-people .people-guide-hero h2,
body.page-solutions-people .people-guide-section__header h2,
body.page-solutions-people .people-guide-final h2 {
  margin: 0;
  color: var(--stap-ink);
  font-weight: 500;
  letter-spacing: -.055em;
}

body.page-solutions-people .people-guide-hero h2 {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(48px, 6.4vw, 82px);
  line-height: .95;
}

body.page-solutions-people .people-guide-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--stap-muted);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 430;
  letter-spacing: -.018em;
  line-height: 1.35;
  text-wrap: pretty;
}

body.page-solutions-people .people-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

body.page-solutions-people .people-guide-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--stap-ink);
  border-radius: 999px;
  color: var(--stap-ink);
  background: var(--stap-white);
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

body.page-solutions-people .people-guide-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgb(var(--stap-color-charcoal-rgb) / .1);
}

body.page-solutions-people .people-guide-button:focus-visible,
body.page-solutions-people .people-guide-copy:focus-visible {
  outline: 3px solid rgb(var(--stap-color-water-blue-rgb) / .42);
  outline-offset: 3px;
}

body.page-solutions-people .people-guide-button--primary {
  color: var(--warm-white);
  background: var(--stap-ink);
}

body.page-solutions-people .people-guide-button--primary:hover {
  background: var(--water-blue);
}

body.page-solutions-people .people-guide-button--secondary:hover {
  color: var(--warm-white);
  background: var(--water-blue);
  border-color: var(--water-blue);
}

body.page-solutions-people .people-guide-button--accent {
  background: var(--sun-yellow);
}

body.page-solutions-people .people-guide-microcopy {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgb(var(--stap-color-charcoal-rgb) / .58);
  font-size: 13px;
  line-height: 1.45;
}

body.page-solutions-people .people-guide-requirements {
  display: flex;
  align-items: flex-end;
  padding: 42px;
  background: var(--sun-yellow-soft);
}

body.page-solutions-people .people-guide-requirements__box {
  width: 100%;
  padding: 28px;
  border: 1px solid var(--stap-ink);
  border-radius: var(--stap-radius-md);
  background: var(--stap-white);
  box-shadow: 8px 8px 0 var(--stap-ink);
}

body.page-solutions-people .people-guide-requirements h3 {
  margin: 0;
  color: var(--stap-ink);
  font-size: clamp(30px, 3.2vw, 43px);
  font-weight: 550;
  letter-spacing: -.045em;
  line-height: 1;
}

body.page-solutions-people .people-guide-requirements__box > p {
  margin: 12px 0 20px;
  color: var(--stap-muted);
  font-size: 16px;
}

body.page-solutions-people .people-guide-requirement-list {
  display: grid;
  gap: 10px;
}

body.page-solutions-people .people-guide-requirement {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 15px;
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-sm);
}

body.page-solutions-people .people-guide-requirement__label {
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 0 7px;
  border-radius: 999px;
  color: var(--warm-white);
  background: var(--water-blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}

body.page-solutions-people .people-guide-requirement strong,
body.page-solutions-people .people-guide-requirement span,
body.page-solutions-people .people-guide-checks strong,
body.page-solutions-people .people-guide-checks span,
body.page-solutions-people .people-guide-ctc__points strong,
body.page-solutions-people .people-guide-ctc__points span {
  display: block;
}

body.page-solutions-people .people-guide-requirement strong {
  color: var(--stap-ink);
  font-size: 15px;
}

body.page-solutions-people .people-guide-requirement div span {
  margin-top: 4px;
  color: var(--stap-muted);
  font-size: 13px;
  line-height: 1.4;
}

body.page-solutions-people .people-guide-section {
  padding: clamp(40px, 5.5vw, 68px);
}

body.page-solutions-people .people-guide-section__header {
  max-width: 900px;
  margin-bottom: 36px;
}

body.page-solutions-people .people-guide-section__header h2,
body.page-solutions-people .people-guide-final h2 {
  margin-top: 13px;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: .98;
}

body.page-solutions-people .people-guide-section__header > p:last-child,
body.page-solutions-people .people-guide-step__content > p,
body.page-solutions-people .people-guide-final__copy {
  color: var(--stap-muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.48;
}

body.page-solutions-people .people-guide-section__header > p:last-child {
  max-width: 810px;
  margin: 18px 0 0;
}

body.page-solutions-people .people-guide-steps {
  display: grid;
  gap: 22px;
}

body.page-solutions-people .people-guide-step {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-md);
  background: var(--warm-white);
}

body.page-solutions-people .people-guide-step__number,
body.page-solutions-people .people-guide-flow__number,
body.page-solutions-people .people-guide-final__list > li > span {
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-weight: 650;
}

body.page-solutions-people .people-guide-step__number {
  width: 68px;
  height: 68px;
  border: 1px solid var(--stap-ink);
  color: var(--stap-ink);
  font-size: 22px;
}

body.page-solutions-people .people-guide-step__number--yellow {
  background: var(--sun-yellow);
}

body.page-solutions-people .people-guide-step__number--terracotta {
  background: var(--terracotta);
}

body.page-solutions-people .people-guide-step__number--blue {
  color: var(--warm-white);
  background: var(--water-blue);
}

body.page-solutions-people .people-guide-step__content > h3 {
  margin: 0;
  color: var(--stap-ink);
  font-size: clamp(30px, 3.7vw, 47px);
  font-weight: 550;
  letter-spacing: -.045em;
  line-height: 1.04;
}

body.page-solutions-people .people-guide-step__content > p {
  max-width: 880px;
  margin: 12px 0 0;
}

body.page-solutions-people .people-guide-prompt {
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid var(--stap-ink);
  border-radius: var(--stap-radius-sm);
  color: var(--warm-white);
  background: var(--stap-ink);
}

body.page-solutions-people .people-guide-prompt__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid rgb(var(--stap-color-white-rgb) / .2);
}

body.page-solutions-people .people-guide-prompt__header strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.page-solutions-people .people-guide-copy {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgb(var(--stap-color-white-rgb) / .5);
  border-radius: 999px;
  color: var(--warm-white);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition: background 160ms ease;
}

body.page-solutions-people .people-guide-copy:hover {
  background: rgb(var(--stap-color-white-rgb) / .12);
}

body.page-solutions-people .people-guide-prompt pre {
  margin: 0;
  padding: 24px;
  overflow-x: auto;
  color: rgb(var(--stap-color-white-rgb) / .88);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.65;
  white-space: pre-wrap;
}

body.page-solutions-people .people-guide-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

body.page-solutions-people .people-guide-checks article,
body.page-solutions-people .people-guide-ctc__points article {
  padding: 16px;
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-sm);
  background: var(--stap-white);
}

body.page-solutions-people .people-guide-checks strong,
body.page-solutions-people .people-guide-ctc__points strong {
  color: var(--stap-ink);
  font-size: 15px;
}

body.page-solutions-people .people-guide-checks span,
body.page-solutions-people .people-guide-ctc__points span {
  margin-top: 5px;
  color: var(--stap-muted);
  font-size: 13px;
  line-height: 1.42;
}

body.page-solutions-people .people-guide-ctc {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: 18px;
  margin-top: 22px;
}

body.page-solutions-people .people-guide-ctc__amount {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--stap-ink);
  border-radius: var(--stap-radius-md);
  background: var(--terracotta);
}

body.page-solutions-people .people-guide-ctc__value {
  font-size: clamp(62px, 8.4vw, 104px);
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .9;
}

body.page-solutions-people .people-guide-ctc__amount > strong:not(.people-guide-ctc__value) {
  margin-top: 18px;
  font-size: 19px;
}

body.page-solutions-people .people-guide-ctc__amount span {
  margin-top: 8px;
  color: rgb(var(--stap-color-charcoal-rgb) / .72);
  font-size: 14px;
  line-height: 1.4;
}

body.page-solutions-people .people-guide-ctc__points {
  display: grid;
  gap: 11px;
}

body.page-solutions-people .people-guide-note {
  margin: 16px 0 0;
  padding: 14px 18px;
  border-left: 5px solid var(--terracotta);
  border-radius: 0 var(--stap-radius-sm) var(--stap-radius-sm) 0;
  color: var(--stap-muted);
  background: var(--terracotta-soft);
  font-size: 13px;
  line-height: 1.5;
}

body.page-solutions-people .people-guide-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

body.page-solutions-people .people-guide-examples article {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--stap-ink);
  border-radius: var(--stap-radius-sm);
  background: var(--stap-white);
}

body.page-solutions-people .people-guide-examples article:nth-child(2) {
  background: var(--sun-yellow-soft);
}

body.page-solutions-people .people-guide-examples article:nth-child(3) {
  background: var(--water-blue-soft);
}

body.page-solutions-people .people-guide-examples blockquote {
  margin: 18px 0 0;
  color: var(--stap-ink);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 550;
  letter-spacing: -.03em;
  line-height: 1.22;
}

body.page-solutions-people .people-guide-examples small {
  display: block;
  margin-top: auto;
  padding-top: 20px;
  color: var(--stap-muted);
  font-size: 13px;
  line-height: 1.35;
}

body.page-solutions-people .people-guide-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

body.page-solutions-people .people-guide-flow article {
  display: flex;
  min-height: 294px;
  flex-direction: column;
  padding: 19px;
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-sm);
  background: var(--stap-white);
}

body.page-solutions-people .people-guide-flow__number {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--warm-white);
  background: var(--water-blue);
  font-size: 13px;
}

body.page-solutions-people .people-guide-flow h4 {
  margin: 0;
  color: var(--stap-ink);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.028em;
  line-height: 1.08;
}

body.page-solutions-people .people-guide-flow p {
  margin: 10px 0 0;
  color: var(--stap-muted);
  font-size: 13px;
  line-height: 1.42;
}

body.page-solutions-people .people-guide-flow__label {
  display: block;
  margin-top: auto;
  padding-top: 16px;
  color: rgb(var(--stap-color-charcoal-rgb) / .58);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
}

body.page-solutions-people .people-guide-coordination {
  background: var(--sun-yellow-soft);
}

body.page-solutions-people .people-guide-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

body.page-solutions-people .people-guide-comparison > article {
  padding: 26px;
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-md);
  background: var(--warm-white);
}

body.page-solutions-people .people-guide-comparison > .people-guide-comparison__stap {
  border-color: var(--stap-ink);
  background: var(--water-blue-soft);
  box-shadow: 7px 7px 0 var(--stap-ink);
}

body.page-solutions-people .people-guide-comparison h3 {
  margin: 14px 0 0;
  color: var(--stap-ink);
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 550;
  letter-spacing: -.043em;
  line-height: 1.05;
}

body.page-solutions-people .people-guide-comparison p {
  margin: 12px 0 0;
  color: var(--stap-muted);
  font-size: 16px;
  line-height: 1.48;
}

body.page-solutions-people .people-guide-comparison ul,
body.page-solutions-people .people-guide-pillar-grid ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

body.page-solutions-people .people-guide-comparison li {
  margin: 8px 0;
  color: var(--stap-muted);
  font-size: 15px;
  line-height: 1.42;
}

body.page-solutions-people .people-guide-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

body.page-solutions-people .people-guide-principles article {
  padding: 22px;
  border: 1px solid var(--stap-rule);
  border-top: 6px solid var(--sun-yellow);
  border-radius: var(--stap-radius-sm);
  background: var(--stap-white);
}

body.page-solutions-people .people-guide-principles article:nth-child(2) {
  border-top-color: var(--water-blue);
}

body.page-solutions-people .people-guide-principles article:nth-child(3) {
  border-top-color: var(--terracotta);
}

body.page-solutions-people .people-guide-principles strong,
body.page-solutions-people .people-guide-principles span {
  display: block;
}

body.page-solutions-people .people-guide-principles strong {
  color: var(--stap-ink);
  font-size: 20px;
  letter-spacing: -.025em;
}

body.page-solutions-people .people-guide-principles span {
  margin-top: 8px;
  color: var(--stap-muted);
  font-size: 14px;
  line-height: 1.44;
}

body.page-solutions-people .people-guide-equation,
body.page-solutions-people .people-guide-principle-banner {
  margin: 22px 0 0;
  padding: 22px;
  border: 1px solid var(--stap-ink);
  border-radius: var(--stap-radius-sm);
  color: var(--stap-ink);
  background: var(--sun-yellow);
  font-size: clamp(20px, 2.7vw, 31px);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.2;
}

body.page-solutions-people .people-guide-pillars {
  color: var(--warm-white);
  background: var(--stap-ink);
}

body.page-solutions-people .people-guide-pillars .people-guide-kicker {
  color: var(--sun-yellow);
}

body.page-solutions-people .people-guide-pillars .people-guide-section__header h2 {
  color: var(--warm-white);
}

body.page-solutions-people .people-guide-pillars .people-guide-section__header > p:last-child {
  color: rgb(var(--stap-color-white-rgb) / .7);
}

body.page-solutions-people .people-guide-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

body.page-solutions-people .people-guide-pillar-grid > article {
  padding: 24px;
  border: 1px solid rgb(var(--stap-color-white-rgb) / .24);
  border-top: 6px solid var(--sun-yellow);
  border-radius: var(--stap-radius-md);
}

body.page-solutions-people .people-guide-pillar-grid > article:nth-child(2) {
  border-top-color: var(--water-blue);
}

body.page-solutions-people .people-guide-pillar-grid > article:nth-child(3) {
  border-top-color: var(--terracotta);
}

body.page-solutions-people .people-guide-pillar__kicker {
  color: rgb(var(--stap-color-white-rgb) / .55);
}

body.page-solutions-people .people-guide-pillar-grid h3 {
  margin: 14px 0 0;
  color: var(--warm-white);
  font-size: 28px;
  font-weight: 550;
  letter-spacing: -.035em;
  line-height: 1.04;
}

body.page-solutions-people .people-guide-pillar-grid > article > p {
  margin: 10px 0 0;
  color: rgb(var(--stap-color-white-rgb) / .7);
  font-size: 15px;
  line-height: 1.48;
}

body.page-solutions-people .people-guide-pillar-grid li {
  margin: 9px 0;
  color: rgb(var(--stap-color-white-rgb) / .76);
  font-size: 14px;
  line-height: 1.42;
}

body.page-solutions-people .people-guide-levels {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

body.page-solutions-people .people-guide-levels > div {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 11px;
  padding: 11px;
  border: 1px solid rgb(var(--stap-color-white-rgb) / .2);
  border-radius: var(--stap-radius-sm);
}

body.page-solutions-people .people-guide-levels strong {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: var(--stap-ink);
  background: var(--warm-white);
  font-size: 11px;
}

body.page-solutions-people .people-guide-levels span {
  color: rgb(var(--stap-color-white-rgb) / .72);
  font-size: 13px;
  line-height: 1.4;
}

body.page-solutions-people .people-guide-principle-banner {
  border-color: var(--sun-yellow);
  color: var(--warm-white);
  background: transparent;
}

body.page-solutions-people .people-guide-does {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

body.page-solutions-people .people-guide-does article {
  padding: 20px;
  border: 1px solid rgb(var(--stap-color-white-rgb) / .22);
  border-radius: var(--stap-radius-sm);
}

body.page-solutions-people .people-guide-does strong {
  display: block;
  color: var(--warm-white);
  font-size: 18px;
}

body.page-solutions-people .people-guide-does p {
  margin: 7px 0 0;
  color: rgb(var(--stap-color-white-rgb) / .68);
  font-size: 14px;
  line-height: 1.45;
}

body.page-solutions-people .people-guide-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
  gap: 40px;
  align-items: end;
  padding: clamp(42px, 6vw, 74px);
  background: var(--water-blue-soft);
}

body.page-solutions-people .people-guide-final__copy {
  max-width: 730px;
  margin: 20px 0 0;
}

body.page-solutions-people .people-guide-final__list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.page-solutions-people .people-guide-final__list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-sm);
  background: rgb(var(--stap-color-white-rgb) / .66);
}

body.page-solutions-people .people-guide-final__list > li > span {
  width: 36px;
  height: 36px;
  color: var(--stap-ink);
  background: var(--sun-yellow);
  font-size: 13px;
}

body.page-solutions-people .people-guide-final__list strong,
body.page-solutions-people .people-guide-final__list small {
  display: block;
}

body.page-solutions-people .people-guide-final__list strong {
  color: var(--stap-ink);
}

body.page-solutions-people .people-guide-final__list small {
  margin-top: 3px;
  color: var(--stap-muted);
  font-size: 13px;
  line-height: 1.4;
}

body.page-solutions-people .sections {
  padding-top: 72px;
}

body.page-solutions-people .people-guide-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  padding: 13px 16px;
  border-radius: 999px;
  color: var(--warm-white);
  background: var(--stap-ink);
  box-shadow: 0 12px 32px rgb(var(--stap-color-charcoal-rgb) / .18);
  font-size: 13px;
  font-weight: 650;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.page-solutions-people .people-guide-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  body.page-solutions-people .people-guide-hero,
  body.page-solutions-people .people-guide-ctc,
  body.page-solutions-people .people-guide-comparison,
  body.page-solutions-people .people-guide-final {
    grid-template-columns: 1fr;
  }

  body.page-solutions-people .people-guide-hero {
    min-height: auto;
  }

  body.page-solutions-people .people-guide-requirements {
    min-height: 410px;
  }

  body.page-solutions-people .people-guide-examples,
  body.page-solutions-people .people-guide-principles,
  body.page-solutions-people .people-guide-pillar-grid {
    grid-template-columns: 1fr;
  }

  body.page-solutions-people .people-guide-examples article {
    min-height: 210px;
  }

  body.page-solutions-people .people-guide-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-solutions-people .people-guide-flow article {
    min-height: 250px;
  }
}

@media (max-width: 720px) {
  body.page-solutions-people .people-guide {
    width: calc(100% - 40px);
    gap: 20px;
  }

  body.page-solutions-people .people-guide-hero__copy,
  body.page-solutions-people .people-guide-requirements,
  body.page-solutions-people .people-guide-section,
  body.page-solutions-people .people-guide-final {
    padding: 30px 22px;
  }

  body.page-solutions-people .people-guide-hero h2 {
    font-size: clamp(43px, 13vw, 58px);
  }

  body.page-solutions-people .people-guide-requirements {
    min-height: auto;
  }

  body.page-solutions-people .people-guide-requirements__box {
    padding: 22px;
    box-shadow: 5px 5px 0 var(--stap-ink);
  }

  body.page-solutions-people .people-guide-step {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  body.page-solutions-people .people-guide-prompt__header {
    align-items: flex-start;
    flex-direction: column;
  }

  body.page-solutions-people .people-guide-copy {
    width: 100%;
  }

  body.page-solutions-people .people-guide-prompt pre {
    padding: 19px;
    font-size: 12px;
  }

  body.page-solutions-people .people-guide-checks,
  body.page-solutions-people .people-guide-flow,
  body.page-solutions-people .people-guide-does {
    grid-template-columns: 1fr;
  }

  body.page-solutions-people .people-guide-flow article {
    min-height: auto;
  }

  body.page-solutions-people .people-guide-comparison > .people-guide-comparison__stap {
    box-shadow: 5px 5px 0 var(--stap-ink);
  }

  body.page-solutions-people .people-guide-actions {
    flex-direction: column;
  }

  body.page-solutions-people .people-guide-button {
    width: 100%;
  }

  body.page-solutions-people .sections {
    padding-top: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-solutions-people .people-guide-button,
  body.page-solutions-people .people-guide-toast {
    transition: none;
  }
}

/* Get the Best Quotes: docs/public/website/stap.now/pages/solutions/solution__get_the_best_quote.md */
body.page-solution-detail {
  background: linear-gradient(180deg, var(--stap-lavender-soft) 0 32rem, var(--stap-white) 52rem);
}

body.page-solution-detail .page {
  padding-top: 0;
}

body.page-solution-detail .solution-detail-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 36px auto 0;
  padding: clamp(58px, 9vw, 108px) clamp(24px, 7vw, 84px);
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-lg);
  background: var(--soft-violet);
  box-shadow: 0 16px 42px rgb(var(--stap-color-charcoal-rgb) / .07);
}

body.page-solution-detail .solution-detail-hero__inner {
  max-width: 870px;
}

body.page-solution-detail .solution-detail-back,
body.page-solution-detail .solution-flow__eyebrow {
  display: inline-block;
  margin: 0 0 22px;
  color: rgb(var(--stap-color-charcoal-rgb) / .62);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.page-solution-detail .solution-detail-back {
  border-bottom: 1px solid rgb(var(--stap-color-charcoal-rgb) / .32);
  transition: border-color 180ms ease;
}

body.page-solution-detail .solution-detail-back:hover,
body.page-solution-detail .solution-detail-back:focus-visible {
  border-color: var(--stap-ink);
}

body.page-solution-detail .solution-detail-hero h1 {
  max-width: 800px;
  margin: 0;
  color: var(--stap-ink);
  font-size: clamp(58px, 9vw, 112px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .94;
}

body.page-solution-detail .solution-detail-hero p {
  max-width: 710px;
  margin: 30px 0 34px;
  color: rgb(var(--stap-color-charcoal-rgb) / .72);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 430;
  line-height: 1.34;
}

body.page-solution-detail .solution-detail-cta {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid var(--stap-ink);
  border-radius: 999px;
  color: var(--stap-white);
  background: var(--stap-ink);
  font-size: 15px;
  font-weight: 650;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

body.page-solution-detail .solution-detail-cta:hover,
body.page-solution-detail .solution-detail-cta:focus-visible {
  color: var(--stap-ink);
  background: transparent;
  outline: none;
  transform: translateY(-2px);
}

body.page-solution-detail .solution-detail-note {
  display: block;
  margin-top: 14px;
  color: rgb(var(--stap-color-charcoal-rgb) / .56);
  font-size: 14px;
}

body.page-solution-detail .solution-flow {
  width: min(1100px, calc(100% - 40px));
  margin: clamp(70px, 9vw, 118px) auto;
}

body.page-solution-detail .solution-flow__intro {
  max-width: 840px;
  margin-bottom: 58px;
}

body.page-solution-detail .solution-flow__intro h2,
body.page-solution-detail .solution-detail-final h2 {
  margin: 0;
  color: var(--stap-ink);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1;
}

body.page-solution-detail .solution-flow__intro > p:last-child,
body.page-solution-detail .solution-detail-final > p:not(.solution-flow__eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgb(var(--stap-color-charcoal-rgb) / .68);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.45;
}

body.page-solution-detail .solution-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: solution-step;
}

body.page-solution-detail .solution-step {
  counter-increment: solution-step;
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 38px;
  padding: 0 0 76px;
}

body.page-solution-detail .solution-step:last-child {
  padding-bottom: 0;
}

body.page-solution-detail .solution-step::before {
  content: counter(solution-step);
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--stap-ink);
  background: var(--stap-lavender-soft);
  font-size: 24px;
  font-weight: 700;
}

body.page-solution-detail .solution-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 72px;
  bottom: 0;
  left: 35px;
  width: 1px;
  background: var(--stap-rule);
}

body.page-solution-detail .solution-step__content {
  padding: 8px 0 0;
}

body.page-solution-detail .solution-step h3 {
  margin: 0;
  color: var(--stap-ink);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1.08;
}

body.page-solution-detail .solution-step__content > p {
  max-width: 790px;
  margin: 20px 0 0;
  color: rgb(var(--stap-color-charcoal-rgb) / .68);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.48;
}

body.page-solution-detail .solution-step__example {
  max-width: 790px;
  margin-top: 30px;
  padding: 26px 30px;
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-sm);
  background: rgb(var(--stap-color-primary-soft-violet-rgb) / .16);
}

body.page-solution-detail .solution-step__example span {
  color: rgb(var(--stap-color-charcoal-rgb) / .54);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.page-solution-detail .solution-step__example p {
  margin: 12px 0 0;
  color: var(--stap-ink);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
}

body.page-solution-detail .solution-detail-final {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 72px;
  padding: clamp(48px, 7vw, 82px);
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-lg);
  background: var(--lemon-yellow);
  box-shadow: 0 14px 38px rgb(var(--stap-color-charcoal-rgb) / .06);
}

body.page-solution-detail .solution-detail-final .solution-detail-cta {
  margin-top: 32px;
}

/* No Platform Fees: docs/public/website/stap.now/pages/solutions/solution__no_platform_fees.md */
body.page-no-platform-fees .solution-detail-hero__inner {
  max-width: 980px;
}

body.page-no-platform-fees .solution-detail-hero h1 {
  max-width: 960px;
  font-size: clamp(54px, 8vw, 104px);
}

body.page-no-platform-fees .solution-detail-hero p.solution-flow__eyebrow {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.2;
}

body.page-no-platform-fees .solution-detail-back {
  margin-right: 18px;
}

body.page-no-platform-fees .solution-detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

body.page-no-platform-fees .solution-detail-cta--secondary {
  color: var(--stap-ink);
  background: transparent;
}

body.page-no-platform-fees .solution-detail-cta--secondary:hover,
body.page-no-platform-fees .solution-detail-cta--secondary:focus-visible {
  color: var(--stap-white);
  background: var(--stap-ink);
}

body.page-no-platform-fees .no-fees-section {
  width: min(1100px, calc(100% - 40px));
  margin: clamp(70px, 9vw, 118px) auto;
}

body.page-no-platform-fees .no-fees-section__header {
  max-width: 880px;
  margin-bottom: 46px;
}

body.page-no-platform-fees .no-fees-section__header h2,
body.page-no-platform-fees .no-fees-section--split h2 {
  margin: 0;
  color: var(--stap-ink);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1;
}

body.page-no-platform-fees .no-fees-section__header > p:last-child,
body.page-no-platform-fees .no-fees-section--split article > p:last-of-type {
  max-width: 790px;
  margin: 24px 0 0;
  color: rgb(var(--stap-color-charcoal-rgb) / .68);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.45;
}

body.page-no-platform-fees .no-fees-card-grid,
body.page-no-platform-fees .fee-breakdown {
  display: grid;
  gap: 18px;
}

body.page-no-platform-fees .no-fees-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page-no-platform-fees .no-fees-card-grid article,
body.page-no-platform-fees .fee-breakdown article {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-sm);
  background: var(--stap-white);
}

body.page-no-platform-fees .no-fees-card-grid h3,
body.page-no-platform-fees .fee-breakdown h3 {
  margin: 0;
  color: var(--stap-ink);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1.08;
}

body.page-no-platform-fees .no-fees-card-grid p,
body.page-no-platform-fees .fee-breakdown p {
  margin: 18px 0 0;
  color: rgb(var(--stap-color-charcoal-rgb) / .66);
  font-size: 17px;
  line-height: 1.5;
}

body.page-no-platform-fees .no-fees-flow {
  padding: clamp(46px, 7vw, 82px);
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-lg);
  background: rgb(var(--stap-color-primary-soft-violet-rgb) / .12);
}

body.page-no-platform-fees .no-fees-section--lavender {
  width: min(1180px, calc(100% - 40px));
  padding: clamp(46px, 7vw, 82px);
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-lg);
  background: var(--soft-violet);
}

body.page-no-platform-fees .fee-breakdown {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.page-no-platform-fees .fee-breakdown article {
  background: rgb(var(--stap-color-white-rgb) / .58);
}

body.page-no-platform-fees .fee-breakdown span {
  display: block;
  margin-bottom: 22px;
  color: rgb(var(--stap-color-charcoal-rgb) / .58);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.page-no-platform-fees .no-fees-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  border-radius: var(--stap-radius-sm);
  background: var(--stap-rule);
  list-style: none;
  overflow: hidden;
}

body.page-no-platform-fees .no-fees-checklist li {
  min-height: 190px;
  padding: 30px;
  background: var(--stap-white);
}

body.page-no-platform-fees .no-fees-checklist strong,
body.page-no-platform-fees .no-fees-checklist span {
  display: block;
}

body.page-no-platform-fees .no-fees-checklist strong {
  color: var(--stap-ink);
  font-size: 23px;
  line-height: 1.2;
}

body.page-no-platform-fees .no-fees-checklist span {
  margin-top: 16px;
  color: rgb(var(--stap-color-charcoal-rgb) / .66);
  font-size: 17px;
  line-height: 1.5;
}

body.page-no-platform-fees .no-fees-example {
  padding: clamp(46px, 7vw, 82px);
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-lg);
  background: var(--lemon-yellow);
}

body.page-no-platform-fees .journey-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: journey-step;
}

body.page-no-platform-fees .journey-list li {
  counter-increment: journey-step;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid rgb(var(--stap-color-charcoal-rgb) / .18);
  color: var(--stap-ink);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.45;
}

body.page-no-platform-fees .journey-list li::before {
  content: counter(journey-step, decimal-leading-zero);
  color: rgb(var(--stap-color-charcoal-rgb) / .56);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
}

body.page-no-platform-fees .no-fees-table-wrap {
  max-width: 100%;
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-sm);
  overflow-x: auto;
  overscroll-behavior-x: contain;
}

body.page-no-platform-fees .no-fees-table-wrap:focus-visible {
  outline: 3px solid rgb(var(--stap-color-primary-soft-violet-rgb) / .42);
  outline-offset: 4px;
}

body.page-no-platform-fees .no-fees-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--stap-white);
  color: var(--stap-ink);
  text-align: left;
}

body.page-no-platform-fees .no-fees-table th,
body.page-no-platform-fees .no-fees-table td {
  width: 50%;
  padding: 22px 26px;
  border-bottom: 1px solid var(--stap-rule);
  vertical-align: top;
}

body.page-no-platform-fees .no-fees-table th {
  background: var(--warm-light-grey);
  font-size: 18px;
  font-weight: 700;
}

body.page-no-platform-fees .no-fees-table td {
  color: rgb(var(--stap-color-charcoal-rgb) / .7);
  font-size: 17px;
  line-height: 1.45;
}

body.page-no-platform-fees .no-fees-table tr:last-child td {
  border-bottom: 0;
}

body.page-no-platform-fees .no-fees-table :is(th, td) + :is(th, td) {
  border-left: 1px solid var(--stap-rule);
}

body.page-no-platform-fees .no-fees-section--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.page-no-platform-fees .no-fees-section--split article {
  padding: clamp(36px, 5vw, 58px);
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-lg);
  background: var(--warm-light-grey);
}

body.page-no-platform-fees .no-fees-section--split article:last-child {
  background: var(--soft-violet);
}

body.page-no-platform-fees .no-fees-section--split h2 {
  font-size: clamp(36px, 4vw, 58px);
}

body.page-no-platform-fees .no-fees-section--split ul {
  margin: 28px 0 0;
  padding-left: 1.2em;
  color: rgb(var(--stap-color-charcoal-rgb) / .72);
  font-size: 17px;
  line-height: 1.5;
}

body.page-no-platform-fees .no-fees-section--split li + li {
  margin-top: 12px;
}

/* Agent visibility: docs/public/website/stap.now/pages/solutions/solution__improve_agent_visibility.md */
body.page-agent-visibility .solution-detail-hero__inner {
  max-width: 1000px;
}

body.page-agent-visibility .solution-detail-hero h1 {
  max-width: 980px;
  font-size: clamp(52px, 8vw, 102px);
}

body.page-agent-visibility .visibility-proof,
body.page-agent-visibility .agentic-channel,
body.page-agent-visibility .visibility-context {
  width: min(1100px, calc(100% - 40px));
  margin: clamp(70px, 9vw, 118px) auto;
}

body.page-agent-visibility .visibility-proof__grid,
body.page-agent-visibility .agentic-channel__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body.page-agent-visibility .visibility-proof__card,
body.page-agent-visibility .agentic-channel__grid article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-sm);
  background: var(--stap-white);
}

body.page-agent-visibility .visibility-proof__card strong {
  color: var(--stap-ink);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1;
}

body.page-agent-visibility .visibility-proof__card p,
body.page-agent-visibility .agentic-channel__grid p {
  margin: 24px 0;
  color: rgb(var(--stap-color-charcoal-rgb) / .7);
  font-size: 17px;
  line-height: 1.5;
}

body.page-agent-visibility .visibility-proof__card a,
body.page-agent-visibility .solution-step__source {
  width: fit-content;
  margin-top: auto;
  border-bottom: 1px solid rgb(var(--stap-color-charcoal-rgb) / .28);
  color: rgb(var(--stap-color-charcoal-rgb) / .66);
  font-size: 13px;
  font-weight: 650;
}

body.page-agent-visibility .visibility-proof__scope {
  max-width: 900px;
  margin: 22px 0 0;
  color: rgb(var(--stap-color-charcoal-rgb) / .56);
  font-size: 13px;
  line-height: 1.5;
}

body.page-agent-visibility .solution-step__source {
  display: inline-block;
  margin-top: 22px;
}

body.page-agent-visibility .agentic-channel {
  padding: clamp(44px, 7vw, 74px);
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-lg);
  background: var(--stap-lavender-soft);
}

body.page-agent-visibility .agentic-channel__grid article {
  min-height: 240px;
}

body.page-agent-visibility .agentic-channel__grid article.is-new {
  background: var(--lemon-yellow);
}

body.page-agent-visibility .agentic-channel__grid span {
  color: rgb(var(--stap-color-charcoal-rgb) / .5);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

body.page-agent-visibility .agentic-channel__grid h3 {
  margin: auto 0 0;
  color: var(--stap-ink);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -.035em;
}

body.page-agent-visibility .visibility-context {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 8vw, 100px);
  align-items: start;
}

body.page-agent-visibility .visibility-context h2 {
  margin: 0;
  color: var(--stap-ink);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1;
}

body.page-agent-visibility .visibility-context ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--stap-rule);
  list-style: none;
}

body.page-agent-visibility .visibility-context li {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--stap-rule);
}

body.page-agent-visibility .visibility-context li strong {
  color: var(--stap-ink);
}

body.page-agent-visibility .visibility-context li span {
  color: rgb(var(--stap-color-charcoal-rgb) / .66);
  line-height: 1.5;
}

body.page-agent-visibility .visibility-diagnosis {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  gap: clamp(44px, 8vw, 96px);
  scroll-margin-top: 110px;
}

body.page-agent-visibility .visibility-diagnosis__copy > ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

body.page-agent-visibility .visibility-diagnosis__copy > ul li {
  position: relative;
  padding-left: 24px;
  color: rgb(var(--stap-color-charcoal-rgb) / .72);
  line-height: 1.45;
}

body.page-agent-visibility .visibility-diagnosis__copy > ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--stap-ink);
  font-weight: 700;
}

body.page-agent-visibility .visibility-diagnosis__form {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: start;
  padding: 30px;
  border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .16);
  border-radius: var(--stap-radius-sm);
  background: rgb(var(--stap-color-white-rgb) / .7);
}

body.page-agent-visibility .visibility-diagnosis__form label {
  margin: 0 0 8px;
  color: var(--stap-ink);
  font-size: 14px;
  font-weight: 650;
}

body.page-agent-visibility .visibility-diagnosis__form input {
  width: 100%;
  min-height: 52px;
  margin: 0 0 20px;
  padding: 0 15px;
  border: 1px solid rgb(var(--stap-color-charcoal-rgb) / .28);
  border-radius: 8px;
  color: var(--stap-ink);
  background: var(--stap-white);
  font: inherit;
}

body.page-agent-visibility .visibility-diagnosis__form input:focus-visible {
  border-color: var(--stap-ink);
  outline: 3px solid rgb(var(--stap-color-primary-soft-violet-rgb) / .6);
  outline-offset: 1px;
}

body.page-agent-visibility .visibility-diagnosis__form .solution-detail-cta {
  width: 100%;
  margin-top: 2px;
  cursor: pointer;
}

body.page-agent-visibility .visibility-diagnosis__form .solution-detail-cta:disabled {
  cursor: wait;
  opacity: .62;
  transform: none;
}

body.page-agent-visibility .visibility-diagnosis__privacy,
body.page-agent-visibility .visibility-diagnosis__status {
  margin: 12px 0 0;
  color: rgb(var(--stap-color-charcoal-rgb) / .56);
  font-size: 12px;
  line-height: 1.45;
}

body.page-agent-visibility .visibility-diagnosis__status {
  min-height: 36px;
  font-size: 14px;
  font-weight: 600;
}

body.page-agent-visibility .visibility-diagnosis__status[data-state="success"] {
  color: var(--stap-blue);
}

body.page-agent-visibility .visibility-diagnosis__status[data-state="error"] {
  color: var(--terracotta);
}

body.page-agent-visibility .visibility-diagnosis__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 720px) {
  body.page-solution-detail .solution-detail-hero {
    width: calc(100% - 32px);
    margin-top: 20px;
    padding: 46px 24px 50px;
    border-radius: 28px;
  }

  body.page-solution-detail .solution-detail-hero h1 {
    font-size: clamp(52px, 17vw, 76px);
  }

  body.page-solution-detail .solution-flow {
    width: calc(100% - 40px);
    margin-block: 70px;
  }

  body.page-solution-detail .solution-flow__intro {
    margin-bottom: 46px;
  }

  body.page-solution-detail .solution-step {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    padding-bottom: 56px;
  }

  body.page-solution-detail .solution-step::before {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  body.page-solution-detail .solution-step:not(:last-child)::after {
    top: 48px;
    left: 23px;
  }

  body.page-solution-detail .solution-step__content {
    padding-top: 4px;
  }

  body.page-solution-detail .solution-step__example {
    margin-left: 0;
    padding: 22px;
  }

  body.page-solution-detail .solution-detail-final {
    width: calc(100% - 32px);
    margin-bottom: 48px;
    padding: 44px 24px;
    border-radius: 28px;
  }

  body.page-solution-detail .solution-detail-cta {
    width: 100%;
  }

  body.page-no-platform-fees .solution-detail-hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  body.page-no-platform-fees .solution-detail-actions {
    align-items: stretch;
    flex-direction: column;
  }

  body.page-no-platform-fees .no-fees-section,
  body.page-no-platform-fees .no-fees-section--lavender,
  body.page-no-platform-fees .no-fees-flow {
    width: calc(100% - 32px);
  }

  body.page-no-platform-fees .no-fees-flow,
  body.page-no-platform-fees .no-fees-section--lavender,
  body.page-no-platform-fees .no-fees-example {
    padding: 42px 22px;
    border-radius: 28px;
  }

  body.page-no-platform-fees .no-fees-card-grid--three,
  body.page-no-platform-fees .fee-breakdown,
  body.page-no-platform-fees .no-fees-checklist,
  body.page-no-platform-fees .no-fees-section--split {
    grid-template-columns: 1fr;
  }

  body.page-no-platform-fees .no-fees-card-grid article,
  body.page-no-platform-fees .fee-breakdown article,
  body.page-no-platform-fees .no-fees-checklist li {
    min-height: auto;
    padding: 24px;
  }

  body.page-no-platform-fees .no-fees-section--split article {
    padding: 36px 24px;
    border-radius: 28px;
  }

  body.page-no-platform-fees .journey-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
  }

  body.page-no-platform-fees .no-fees-table th,
  body.page-no-platform-fees .no-fees-table td {
    padding: 18px 20px;
  }

  body.page-agent-visibility .visibility-proof,
  body.page-agent-visibility .visibility-context {
    width: calc(100% - 32px);
  }

  body.page-agent-visibility .solution-detail-hero h1 {
    font-size: clamp(46px, 12.5vw, 58px);
    overflow-wrap: normal;
    text-wrap: wrap;
  }

  body.page-agent-visibility .visibility-proof__grid,
  body.page-agent-visibility .agentic-channel__grid,
  body.page-agent-visibility .visibility-context,
  body.page-agent-visibility .visibility-diagnosis {
    grid-template-columns: 1fr;
  }

  body.page-agent-visibility .visibility-proof__card,
  body.page-agent-visibility .agentic-channel__grid article {
    min-height: 220px;
    padding: 24px;
  }

  body.page-agent-visibility .agentic-channel {
    width: calc(100% - 32px);
    padding: 42px 20px;
    border-radius: 28px;
  }

  body.page-agent-visibility .visibility-context {
    gap: 38px;
  }

  body.page-agent-visibility .visibility-context li {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 16px;
  }

  body.page-agent-visibility .visibility-diagnosis {
    gap: 40px;
  }

  body.page-agent-visibility .visibility-diagnosis__form {
    padding: 24px 20px;
  }
}

body.page-article-vision,
body.page-article-bedrock { background: linear-gradient(180deg, var(--stap-lavender-soft) 0 22rem, var(--stap-white) 42rem); }
body.page-article-vision .article-shell,
body.page-article-bedrock .article-shell {
  border: 1px solid var(--stap-rule);
  border-radius: var(--stap-radius-lg);
  background: var(--stap-white);
  box-shadow: 0 16px 42px rgb(var(--stap-color-charcoal-rgb) / .07);
}
body.page-article-vision h1,
body.page-article-bedrock h1 { color: var(--stap-ink); font-weight: 500; letter-spacing: -.055em; background: none; -webkit-text-fill-color: currentColor; }
body.page-article-vision .article-kicker,
body.page-article-bedrock .article-kicker,
body.page-article-vision .back-link:hover,
body.page-article-bedrock .back-link:hover { color: var(--stap-violet-ink); }

@media (max-width: 1024px) {
  body .nav.site-nav { padding-inline: 22px; gap: 14px; }
  body .nav.site-nav .nav-link,
  body .nav.site-nav .dropdown-button { padding-inline: 15px; }
  body .nav.site-nav .nav-cta { padding-inline: 15px; }
}

@media (max-width: 820px) {
  site-navigation { height: 72px; }
  body .nav-wrap,
  body .nav-wrap.nav-hidden {
    padding-top: 0 !important;
    background: rgb(var(--stap-color-white-rgb) / .96);
    transform: none !important;
  }
  body .nav.site-nav {
    width: 100%;
    height: 72px;
    min-height: 72px;
    padding: 12px 18px;
    grid-template-columns: 1fr auto;
    border: 0;
    border-radius: 0;
    background: var(--stap-white);
    box-shadow: none;
  }
  body .nav.site-nav .brand { font-size: 22px; }
  body .nav.site-nav .nav-cta { display: none; }
  body .nav.site-nav .mobile-menu-button {
    width: 48px;
    min-width: 48px;
    min-height: 44px;
    padding: 0;
    display: inline-flex;
    justify-self: end;
    flex-direction: column;
    gap: 5px;
    color: var(--stap-deep-ink);
    background: var(--stap-white);
  }
  body .nav.site-nav .mobile-menu-button span { width: 18px; height: 2px; border-radius: 0; }
  body .nav.site-nav .mobile-menu-button[aria-expanded="true"] {
    --frame-color: var(--stap-violet-ink);
    --frame-corner-color: var(--stap-violet-ink);
    --frame-background: var(--stap-lavender-soft);
    color: var(--stap-violet-ink);
  }
  body .nav.site-nav .mobile-menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body .nav.site-nav .mobile-menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  body .nav.site-nav .mobile-menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body .nav.site-nav .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    width: auto;
    max-height: calc(100dvh - 92px - env(safe-area-inset-bottom));
    justify-self: stretch;
    transform: translateY(-8px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--stap-rule);
    border-radius: var(--stap-radius-md);
    background: rgb(var(--stap-color-white-rgb) / .98);
    box-shadow: 0 20px 50px rgb(var(--stap-color-charcoal-rgb) / .12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }
  body .nav.site-nav[data-menu-open="true"] .nav-links {
    display: grid;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  body .nav.site-nav .nav-link,
  body .nav.site-nav .dropdown-button {
    width: 100%;
    min-height: 50px;
    justify-content: flex-start;
    padding: 0 18px;
    color: var(--stap-muted);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  body .nav.site-nav .nav-link:hover,
  body .nav.site-nav .dropdown-button:hover,
  body .nav.site-nav .dropdown:hover .dropdown-button,
  body .nav.site-nav .dropdown:focus-within .dropdown-button,
  body .nav.site-nav .nav-link.active,
  body .nav.site-nav .dropdown.active .dropdown-button {
    color: var(--stap-violet-ink);
    background: var(--stap-lavender-soft);
  }
  body .nav.site-nav .nav-link-api {
    --frame-color: rgb(var(--stap-color-charcoal-rgb) / .55);
    --frame-corner-color: var(--stap-warm);
    --frame-text: var(--stap-warm);
    display: inline-flex;
    margin-top: 4px;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-weight: 500;
  }
  body .nav.site-nav .dropdown { width: 100%; }
  body .nav.site-nav .dropdown::after { display: none; }
  body .nav.site-nav .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 8px 0 2px;
    padding: 8px;
    border-radius: var(--stap-radius-sm);
    background: var(--stap-lavender-soft);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  body .nav.site-nav .dropdown:hover .dropdown-menu,
  body .nav.site-nav .dropdown:focus-within .dropdown-menu { transform: none; }
  body .nav.site-nav .dropdown[data-open="true"] .dropdown-menu { display: block; transform: none; }
  body .nav.site-nav .dropdown-card { min-height: auto; padding: 15px 16px; background: var(--stap-white); }
  body .nav.site-nav .dropdown-card strong { font-size: 18px; }
  body .nav.site-nav .dropdown-card span { font-size: 14px; }

  body.page-simple .shell { width: min(100% - 28px, 1180px); }
  body.page-simple .hero { margin-top: 0; padding: 58px 20px; border-radius: var(--stap-radius-md); }
  body.page-access .hero,
  body.page-access .section,
  body.page-blog .topic-section,
  body.page-article-vision .article-shell,
  body.page-article-bedrock .article-shell { border-radius: var(--stap-radius-md); }
}

@media (prefers-reduced-motion: reduce) {
  body .nav.site-nav .nav-link,
  body .nav.site-nav .dropdown-button,
  body .nav.site-nav .nav-cta,
  body .nav.site-nav .mobile-menu-button,
  body .nav.site-nav .nav-links,
  body .nav.site-nav .mobile-menu-button span { transition: none; }
}

/* Readability refinements: keep the existing palette and card system intact. */
body.page-home .lead,
body.page-home .section-header p,
body.page-home .api-panel p,
body.page-access .lead,
body.page-access .section-header p,
body.page-blog .article-desc,
body.page-simple .lead,
body.page-simple .card p,
body.page-article-vision .subtitle,
body.page-article-bedrock .subtitle {
  text-wrap: pretty;
}

body.page-home h1,
body.page-home h2,
body.page-access h1,
body.page-access h2,
body.page-blog h1,
body.page-blog h2,
body.page-simple h1,
body.page-simple h2,
body.page-article-vision h1,
body.page-article-bedrock h1 {
  overflow-wrap: anywhere;
  text-wrap: balance;
}

body.page-home .api-strip,
body.page-home .example,
body.page-access .api-strip,
body.page-blog .article-title,
body.page-blog .article-desc {
  overflow-wrap: anywhere;
}

body.page-article-vision .article-body,
body.page-article-bedrock .article-body {
  max-width: 72ch;
}

@media (max-width: 760px) {
  body.page-simple h1 {
    font-size: clamp(40px, 13vw, 54px);
    line-height: .98;
  }

  body.page-simple .lead {
    max-width: 62ch;
  }
}

@media (max-width: 560px) {
  body.page-home .hero {
    padding-left: 0;
    padding-right: 0;
  }

  body.page-access .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  body.page-home .hero h1,
  body.page-access .hero h1 {
    font-size: clamp(44px, 14vw, 58px);
    line-height: .95;
  }

  body.page-home .lead,
  body.page-access .lead {
    font-size: clamp(18px, 5.2vw, 21px);
    line-height: 1.38;
  }

  body.page-blog .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  body.page-blog .article-title {
    font-size: clamp(22px, 7vw, 28px);
    line-height: 1.12;
  }

  body.page-blog .article-desc {
    font-size: 16px;
    line-height: 1.48;
  }

  body.page-article-vision h1,
  body.page-article-bedrock h1 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: .96;
  }

  body.page-article-vision .subtitle,
  body.page-article-bedrock .subtitle {
    font-size: clamp(18px, 5.2vw, 21px);
    line-height: 1.36;
  }

  body.page-article-vision .article-body,
  body.page-article-bedrock .article-body {
    font-size: 18px;
    line-height: 1.65;
  }
}
