:root {
    --ink: #231826;
    --body: #292929;
    --purple: #894ae3;
    --purple-btn: #944fb9;
    --blue-muted: #69838d;
    --cream-muted: #7f7b6b;
    --bg-blue: #edfbff;
    --bg-cream: #f0eee5;
    --bg-dark: #222222;
    --font-display: "Bricolage Grotesque", sans-serif;
    --font-label: "Space Grotesk", sans-serif;
    --font-body: "Inter", sans-serif;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--body); background: #fff; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }

  .eyebrow {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    color: var(--purple);
    opacity: .85;
    text-align: center;
  }
  .section-quote {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(28px, 4.2vw, 48px);
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--ink);
    text-align: center;
  }
  .attribution {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(15px, 1.6vw, 20px);
    line-height: 1.4;
    letter-spacing: 1.6px;
    opacity: .85;
    text-align: center;
  }
  .section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    max-width: 1192px;
    margin: 0 auto;
  }
  .section-head .icon { width: 80px; height: 80px; object-fit: contain; }
  .section-head .quote-block { display: flex; flex-direction: column; gap: 16px; }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-btn);
    color: #fff;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    padding: 11px 18px;
    border-radius: 8px;
    transition: background .15s ease;
  }
  .btn:hover { background: #7e3fa1; }

  /* ---------- Nav ---------- */
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 24px 32px;
    background: var(--bg-blue);
    position: relative;
    z-index: 100;
  }
  .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 0;
    padding: 0;
  }
  .nav-links a {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 14px;
    color: #000;
    opacity: .75;
    text-decoration: none;
  }
  .nav-links a:hover,
  .nav-links a.is-active { opacity: 1; }
  .nav-links .nav-links__cta { display: none; }
  .logo { display: flex; align-items: center; gap: 9px; text-decoration: none; }
  .logo .mark { height: 36px; width: auto; }
  .logo .wordmark { height: 23px; width: auto; }
  .nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
  .nav-right .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-btn);
    color: #fff;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    text-decoration: none;
    padding: 11px 18px;
    border-radius: 8px;
  }
  .nav .gh-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--ink);
    position: relative;
    z-index: 130;
  }
  .nav .gh-burger .icon-close { display: none; }
  .nav .gh-burger.is-active .icon-burger,
  .nav .gh-burger[aria-expanded="true"] .icon-burger { display: none; }
  .nav .gh-burger.is-active .icon-close,
  .nav .gh-burger[aria-expanded="true"] .icon-close { display: block; }
  .nav .gh-navigation-overlay { display: none; }
  .nav .gh-navigation-overlay.is-visible {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(35, 24, 38, 0.2);
    z-index: 110;
  }
  body.menu-open { overflow: hidden; }
  .hero-cta { display: none; }

  /* ---------- Hero ---------- */
  .hero { background: var(--bg-blue); padding-top: 20px; }
  .hero-text {
    max-width: 792px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 29px;
  }
  .hero-eyebrow {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    color: var(--purple);
    opacity: .85;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(32px, 5.2vw, 56px);
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--ink);
  }
  .hero .hero-attr { color: var(--blue-muted); }
  .hero-sub {
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.6;
    letter-spacing: -0.4px;
    opacity: .85;
  }
  .hero-tabs {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 32px 24px 40px;
    overflow: visible;
  }
  .hero-tabs-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .hero-tab {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    color: #000;
    opacity: .45;
    white-space: nowrap;
    background: none;
    border: none;
    padding: 12px 0;
    cursor: pointer;
    border-radius: 30px;
    transition: opacity .15s ease;
  }
  .hero-tab:hover { opacity: .7; }
  .hero-tab.active {
    background: #2a2a2a;
    color: #fff;
    font-weight: 700;
    opacity: 1;
    padding: 12px 16px;
  }
  .hero-tab.active span { opacity: .85; }
  .hero-visual {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px 40px;
  }
  .hero-frame-holder {
    height: clamp(420px, 40vw, 560px);
    border: 1px solid #c6e5ef;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  .hero-frame-holder:hover,
  .hero-visual:hover .hero-frame-holder {
    border-color: #9bc2ce;
    box-shadow: 0 0 0 3px rgba(155, 194, 206, 0.35);
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-frame-holder { transition: none; }
  }
  .hero-visual iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    transform-origin: top left;
    pointer-events: none;
  }

  /* ---------- Logo band ---------- */
  .logo-band {
    background: #fff;
    padding: 70px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .logo-band-label { padding: 0 24px; }
  .logo-band-label {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    color: #6b6b6b;
    opacity: .85;
    text-align: center;
  }
  .logo-ticker {
    width: 100%;
    overflow: hidden;
  }
  .logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: logo-scroll 35s linear infinite;
  }
  .logo-ticker:hover .logo-track { animation-play-state: paused; }
  .logo-row {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 60px;
    padding-right: 60px;
  }
  .logo-row .cell { display: flex; align-items: center; justify-content: center; }
  .logo-row img { object-fit: contain; max-width: none; }
  @keyframes logo-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .logo-track { animation: none; }
  }

  /* ---------- Shared section shell ---------- */
  .section { padding: 60px clamp(24px, 5vw, 80px) 80px; }
  .section-inner { max-width: 1352px; margin: 0 auto; display: flex; flex-direction: column; gap: 60px; align-items: center; }
  .bg-cream { background: var(--bg-cream); }
  .bg-blue { background: var(--bg-blue); }
  .bg-cream .attribution { color: var(--cream-muted); }
  .bg-blue .attribution { color: var(--blue-muted); }
  .bg-white .attribution { color: var(--cream-muted); }

  /* ---------- Product summary (crawlable) ---------- */
  .product-summary-inner {
    max-width: 920px;
    gap: 48px;
    align-items: stretch;
  }
  .product-summary-inner .section-head {
    align-items: flex-start;
    max-width: none;
    width: 100%;
    gap: 0;
  }
  .product-summary {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .product-summary__item {
    padding: 28px 0;
    border-top: 1px solid rgba(35, 24, 38, 0.12);
  }
  .product-summary__item:last-child {
    padding-bottom: 0;
  }
  .product-summary__heading {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(22px, 2.8vw, 28px);
    line-height: 1.25;
    letter-spacing: -0.5px;
    color: var(--ink);
    text-align: left;
    margin: 0 0 12px;
  }
  .product-summary__item p {
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.6;
    letter-spacing: -0.3px;
    color: var(--body);
    opacity: .85;
    margin: 0;
    text-align: left;
  }
  .product-summary__item a {
    color: var(--purple);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .product-summary__item a:hover {
    color: #7e3fa1;
  }

  /* ---------- Problem ---------- */
  .task-cloud {
    width: 100%;
    max-width: 1392px;
  }
  .task-cloud__scroll {
    width: 100%;
  }
  .task-cloud__canvas {
    position: relative;
    width: 100%;
    aspect-ratio: 2144 / 643;
  }
  .task-cloud__item {
    position: absolute;
    left: var(--x);
    top: var(--y);
    z-index: var(--z, 2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .task-cloud__chip {
    display: inline-flex;
    align-items: center;
    padding: clamp(9px, 1vw, 13px) clamp(10px, 1.05vw, 14px);
    border: 1.5px solid #9bc2ce;
    border-radius: 8px;
    background: #d7f6ff;
    color: #2a2a2a;
    font-family: var(--font-label);
    font-size: clamp(10px, 1.02vw, 13.5px);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1.15;
  }
  .task-cloud__person {
    width: clamp(28px, 3vw, 42px);
    flex-shrink: 0;
    line-height: 0;
  }
  .task-cloud__person svg {
    width: 100%;
    height: auto;
    display: block;
  }
  .task-cloud__person--teal { color: #7db8a8; }
  .task-cloud__person--blue { color: #5b8fd4; }
  .task-cloud__person--purple { color: #9b7ec8; }

  @media (max-width: 900px) {
    .task-cloud__scroll {
      overflow: visible;
    }
    .task-cloud__canvas {
      position: static;
      width: 100%;
      aspect-ratio: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: stretch;
      gap: 8px;
    }
    .task-cloud__item {
      position: static;
      left: auto;
      top: auto;
      flex: 0 1 calc(50% - 4px);
      max-width: calc(50% - 4px);
      gap: 4px;
      min-width: 0;
    }
    .task-cloud__chip {
      font-size: 9px;
      letter-spacing: 0.03em;
      padding: 7px 8px;
      white-space: normal;
      min-width: 0;
      line-height: 1.25;
    }
    .task-cloud__person { width: 22px; }
  }

  /* ---------- Solution ---------- */
  .equation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
  }
  .eq-card {
    background: #e5eff2;
    border: 1px solid #c6e5ef;
    border-radius: 12px;
    padding: 24px 28px;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .eq-card .eq-label {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    color: #525252;
    opacity: .85;
  }
  .eq-card .eq-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #3d3d3d;
  }
  .eq-card.axari {
    background: #f8ecff;
    border: 2px solid #e2d6f4;
    width: 326px;
    min-height: 180px;
    padding: 20px 28px;
    filter: drop-shadow(0 15px 4.5px rgba(133,133,133,0.05)) drop-shadow(0 7px 3.5px rgba(133,133,133,0.09)) drop-shadow(0 2px 2px rgba(133,133,133,0.1));
  }
  .eq-card.axari .eq-label, .eq-card.axari .eq-title { color: #4a04b3; }
  .eq-plus {
    font-family: var(--font-label);
    font-size: 32px;
    letter-spacing: 2.56px;
    color: #626a6c;
    opacity: .85;
  }
  .eq-people { display: flex; gap: 8px; }
  .eq-people img { width: 19px; height: 19px; }
  .eq-apps { display: flex; gap: 12px; }
  .eq-apps img { width: 34px; height: 34px; }
  .eq-stack { display: flex; align-items: center; gap: 11px; }
  .eq-stack img { height: 27px; width: auto; }
  .eq-result {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 40px);
    line-height: 1.2;
    letter-spacing: -1px;
    color: #525252;
    font-weight: 400;
    text-align: center;
    margin-top: 44px;
  }
  .eq-result strong { color: var(--ink); font-weight: 600; }

  .teammate-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    padding-top: 32px;
  }
  .teammate-card {
    background: #fffffd;
    border-radius: 28px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 13px 13px rgba(133,133,133,0.09), 0 3px 7px rgba(133,133,133,0.1);
  }
  .teammate-card .card-label {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    color: #2343c4;
    opacity: .85;
  }
  .teammate-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--ink);
    margin-top: 8px;
  }
  .teammate-card .illo { border-radius: 12px; overflow: hidden; }
  .teammate-card .illo img { width: 100%; height: auto; }
  .checklist { display: flex; flex-direction: column; gap: 16px; }
  .check-item { display: flex; align-items: center; gap: 17px; }
  .check-item img { width: 20px; height: 20px; flex-shrink: 0; margin: 4px; }
  .check-item p { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.6; letter-spacing: -0.4px; opacity: .85; }

  /* ---------- See it in action ---------- */
  .action-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; width: 100%; }
  .action-card { display: flex; flex-direction: column; gap: 32px; }
  .shot-frame {
    background: #6acbae;
    border: 1px solid #ececec;
    border-radius: 16px;
    height: 320px;
    overflow: hidden;
    position: relative;
  }
  .shot-frame img {
    position: absolute;
    left: 4%;
    top: 8%;
    width: 92%;
    height: 84%;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    box-shadow: 0 48px 48px rgba(0,0,0,0.09), 0 12px 26px rgba(0,0,0,0.1);
  }
  .action-card .card-caption { display: flex; flex-direction: column; gap: 8px; }
  .card-caption .cap-label {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #6a9bcc;
    opacity: .85;
  }
  .card-caption p { font-size: 20px; line-height: 1.6; letter-spacing: -0.4px; opacity: .85; }

  /* ---------- What changes ---------- */
  .changes-sub {
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.6;
    letter-spacing: -0.4px;
    opacity: .85;
    text-align: center;
    max-width: 800px;
  }
  .changes-scroller {
    display: flex;
    gap: 36px;
    align-self: stretch;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow-x: auto;
    padding: 0 0 8px clamp(24px, 5vw, 80px);
    scroll-snap-type: x proximity;
    scroll-padding-inline-start: clamp(24px, 5vw, 80px);
    scrollbar-width: none;
  }
  .changes-scroller::-webkit-scrollbar { display: none; }
  .change-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 24px 28px;
    width: min(562px, 88vw);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    scroll-snap-align: start;
    filter: drop-shadow(0 2px 2.5px rgba(120,120,120,0.1));
  }
  .before-after { display: flex; align-items: stretch; gap: 12px; }
  .ba-cell { flex: 1; border-radius: 8px; padding: 16px; display: flex; flex-direction: column; gap: 4px; }
  .ba-cell.before { background: #ffedee; }
  .ba-cell.after { background: #eaf9da; }
  .ba-cell .ba-tag {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    opacity: .85;
    color: #7c7c7c;
  }
  .ba-cell.after .ba-tag { color: #2e7d4f; }
  .ba-cell p { font-size: 16px; font-weight: 500; line-height: 1.6; letter-spacing: -0.32px; opacity: .85; }
  .ba-arrow { align-self: center; font-family: var(--font-label); opacity: .3; }
  .change-quote { display: flex; gap: 8px; }
  .change-quote .qmark {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 52px;
    line-height: .96;
    letter-spacing: -0.5px;
    color: var(--ink);
    width: 20px;
    flex-shrink: 0;
  }
  .change-quote blockquote {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--ink);
  }
  .change-quote cite {
    display: block;
    margin-top: 10px;
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.84px;
    color: #7e7e7e;
    opacity: .85;
  }

  /* ---------- Integrations ---------- */
  .int-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 60px;
    width: 100%;
    align-items: center;
    justify-items: center;
  }
  .int-grid img { max-height: 64px; object-fit: contain; }
  .int-grid .wide { max-height: 52px; width: 84px; }

  /* ---------- Trust ---------- */
  .trust-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; width: 100%; }
  .trust-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    filter: drop-shadow(0 2px 2.5px rgba(120,120,120,0.1));
  }
  .trust-card .tc-head { display: flex; align-items: center; gap: 12px; }
  .trust-card .tc-head img { width: 14px; height: 14px; }
  .trust-card .tc-head span {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    color: #761ef8;
    opacity: .85;
  }
  .trust-card p { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.6; letter-spacing: -0.4px; opacity: .85; }

  /* ---------- Why Axari ---------- */
  .why-list {
    background: #fff;
    border-radius: 24px;
    padding: 60px 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .why-accordion__item {
    border-bottom: 1px dashed #a09d93;
    padding: 0 20px 40px;
  }
  .why-accordion__item:last-child { border-bottom: none; padding-bottom: 0; }
  .why-accordion__trigger {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
  }
  .why-accordion__trigger:focus-visible {
    outline: 2px solid var(--purple);
    outline-offset: 4px;
    border-radius: 4px;
  }
  .why-accordion__heading { display: flex; flex: 1; align-items: flex-start; gap: 12px; min-width: 0; }
  .why-accordion__num {
    flex-shrink: 0;
    font-family: var(--font-label);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.48px;
    color: var(--purple);
    opacity: .85;
  }
  .why-accordion__title {
    flex: 1;
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #000;
  }
  .why-accordion__chevron { flex-shrink: 0; width: 32px; height: 32px; transition: transform .2s ease; }
  .why-accordion__item.is-open .why-accordion__chevron { transform: rotate(180deg); }
  .why-accordion__panel { margin-top: 24px; }
  .why-accordion__panel[hidden] { display: none; }
  .why-panel__split { display: flex; align-items: center; gap: 40px; width: 100%; }
  .why-panel__split--reverse { flex-direction: row-reverse; }
  .why-panel__copy {
    flex-shrink: 0;
    width: 440px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.32px;
    color: #292929;
    opacity: .85;
  }
  .why-panel__copy p { margin: 0; }
  .why-panel__copy strong { font-weight: 700; }
  .why-panel__visual { flex: 1; min-width: 0; min-height: 340px; background: #f9fafa; border-radius: 8px; }
  .why-panel__visual--plain { background: #f9fafa; }
  .why-panel__stack { display: flex; flex-direction: column; align-items: stretch; gap: 24px; width: 100%; }
  .why-panel__bar { width: 100%; max-width: 980px; height: 120px; margin: 0 auto; border-radius: 8px; }
  .why-panel__bar--workflow { background: var(--bg-blue); }
  .why-panel__bar--roles { background: var(--bg-cream); }
  .why-panel__full { display: flex; flex-direction: column; gap: 40px; width: 100%; }
  .why-panel__full > .why-panel__copy { width: 100%; max-width: none; }
  .why-panel__visual--tall { width: 100%; min-height: 419px; flex: none; }
  .why-panel__visual--sand { width: 100%; min-height: 320px; flex: none; background: var(--bg-cream); }
  .why-panel__grid { display: flex; flex-wrap: wrap; gap: 40px; width: 100%; }
  .why-panel__grid--tight { gap: 30px; }
  .why-panel__grid--cols-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .why-panel__grid--cols-4 .why-panel__person--224 { width: 100%; max-width: none; }
  .why-panel__grid--cols-4 .why-panel__tile--224 { width: 100%; max-width: none; height: auto; aspect-ratio: 1; }
  .why-panel__tile { flex-shrink: 0; background: #f9fafa; border-radius: 8px; overflow: hidden; }
  .why-panel__photo { width: 100%; height: 100%; object-fit: cover; display: block; }
  .why-panel__tile--300 { width: 300px; max-width: 100%; height: 300px; }
  .why-panel__tile--224 { width: 224px; max-width: 100%; height: 224px; }
  .why-panel__person { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; flex-shrink: 0; }
  .why-panel__person--300 { width: 300px; max-width: 100%; }
  .why-panel__person--224 { width: 224px; max-width: 100%; }
  .why-panel__person-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .why-panel__person-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #000;
  }
  .why-panel__backers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; width: 100%; }
  .why-panel__backer-label {
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--blue-muted);
    opacity: .85;
    margin: 0 0 12px;
  }
  .why-panel__backer-list { font-size: 18px; line-height: 1.6; letter-spacing: -0.3px; color: #292929; opacity: .85; margin: 0; }
  .why-panel__person-role {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.32px;
    color: #6d6d6d;
    opacity: .85;
  }
  @media (max-width: 1024px) {
    .why-panel__split, .why-panel__split--reverse { flex-direction: column; align-items: stretch; }
    .why-panel__copy { width: 100%; }
    .why-panel__visual { width: 100%; }
    .why-panel__grid--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .why-panel__backers { grid-template-columns: 1fr; }
  }

  /* Why-panel: labeled-block split layout (per Figma expanded design) */
  .wx-split { display: flex; gap: 48px; align-items: stretch; width: 100%; }
  .wx-split--tight { gap: 24px; }
  .wx-visual {
    flex: 1;
    min-width: 0;
    background: #dfe9ed;
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    justify-content: center;
    min-height: 340px;
  }
  .wx-visual--cream { background: var(--bg-cream); }
  /* Embed supplies its own frame and background: no outer box, hug the content height. */
  .wx-visual--bare { background: none; padding: 0; min-height: 0; align-self: center; }
  .wx-frame { background: #fff; border-radius: 12px; width: 100%; flex: 1; min-height: 240px; }
  .wx-embed { width: 100%; flex: 1; border: 0; border-radius: 12px; display: block; }
  .wx-caption {
    font-family: var(--font-label);
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #5c6b70;
    opacity: .85;
    text-align: center;
  }
  .wx-blocks { width: 46%; flex-shrink: 0; display: flex; flex-direction: column; gap: 24px; justify-content: center; }
  .wx-block .wx-label {
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #2343c4;
    opacity: .85;
    margin-bottom: 8px;
  }
  .wx-block p { font-size: 18px; line-height: 1.5; letter-spacing: -0.3px; color: #292929; opacity: .85; margin: 0; }
  .wx-mem {
    width: 100%;
    flex: 1;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 13px;
    line-height: 1.5;
    color: #3d3d3d;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .wx-mem-row { display: flex; gap: 28px; padding: 12px 4px; border-bottom: 1px dashed #d8d2c2; }
  .wx-mem-row:last-child { border-bottom: none; }
  .wx-mem-date { width: 52px; flex-shrink: 0; color: #6d6d6d; }
  .wx-mem-hl { color: #7a3ff2; }
  .wx-chips { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; width: 100%; padding: 12px 0; }
  .wx-chip {
    border: 1px solid #d9d4c8;
    background: #fff;
    padding: 9px 16px;
    border-radius: 22px;
    font-family: var(--font-label);
    font-size: 14px;
    color: #3d3d3d;
    white-space: nowrap;
  }
  .wx-chip--approve { border-color: var(--purple); background: #f2ebff; color: #4a04b3; }
  .wx-chip-arrow { color: #a3a3a3; font-family: var(--font-label); }
  .wx-roles {
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 500;
    color: #8a8a8a;
    padding: 20px 0;
  }
  .wx-roles .wx-lead { color: var(--purple); }
  .wx-roles .wx-arrow { color: #b5b5b5; font-size: .7em; }
  .wx-money { display: flex; flex-direction: column; gap: 16px; align-items: center; justify-content: center; width: 100%; flex: 1; }
  .wx-money-box { background: #fff; border-radius: 12px; padding: 18px 44px; text-align: center; box-shadow: 0 2px 6px rgba(0,0,0,.06); }
  .wx-money-num { font-family: var(--font-display); font-size: 44px; font-weight: 600; color: var(--ink); }
  .wx-money-cap { font-family: var(--font-label); font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: #8a8a8a; margin-bottom: 6px; }
  .wx-para { font-size: 18px; line-height: 1.6; letter-spacing: -0.3px; color: #292929; opacity: .85; margin: 0; }
  @media (max-width: 1024px) {
    .wx-split { flex-direction: column; }
    .wx-blocks { width: 100%; }
    /* Stacked: cross-axis is horizontal, so centering would collapse the embed's width. */
    .wx-visual--bare { align-self: stretch; }
  }

  /* ---------- CTA ---------- */
  .cta {
    background: var(--bg-dark);
    padding: 60px clamp(24px, 5vw, 80px) 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    letter-spacing: 0;
  }
  .cta h2 {
    margin: 0;
    padding: 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(24px, 2.8vw, 32px);
    line-height: 1.2;
    letter-spacing: -1px;
    color: #fff;
    max-width: 1032px;
  }
  .cta .attribution {
    margin: 0;
    padding: 0;
    color: #b5b5b5;
    text-transform: capitalize;
  }
  .cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    background: var(--purple-btn);
    color: #fff;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0;
    text-transform: capitalize;
    text-decoration: none;
    padding: 11px 18px;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
  }
  .cta .btn:hover { background: #7e3fa1; color: #fff; }
  .cta .cta-note {
    font-family: var(--font-label);
    font-size: 14px;
    letter-spacing: -0.28px;
    color: #a2a2a2;
    opacity: .85;
  }

  /* ---------- Footer ---------- */
  .footer {
    background: var(--bg-dark);
    border-top: 1px solid #3d3d3d;
    padding: 32px clamp(24px, 5vw, 60px) 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    letter-spacing: 0;
    font-family: var(--font-label);
  }
  .footer,
  .footer * {
    font-family: var(--font-label);
    letter-spacing: 0;
  }
  .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1160px;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer .logo { display: flex; align-items: center; gap: 9px; text-decoration: none; color: inherit; }
  .footer .logo .mark { height: 32px; width: auto; max-width: none; display: block; }
  .footer .logo .wordmark { height: 20px; width: auto; max-width: none; display: block; filter: invert(1); }
  .footer-social { display: flex; align-items: center; gap: 20px; }
  .footer-social span {
    font-size: 14px;
    color: #fff;
    opacity: .75;
  }
  .footer-social .icons { display: flex; align-items: center; gap: 32px; }
  .footer-social .icons a { display: inline-flex; opacity: .85; color: inherit; text-decoration: none; }
  .footer-social .icons a:hover { opacity: 1; }
  .footer-social .icons img { height: 24px; width: auto; max-width: none; display: block; }
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #fff;
    width: 100%;
  }
  .footer-links__row {
    display: flex;
    align-items: center;
    gap: clamp(12px, 3vw, 32px);
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    width: auto;
    max-width: 100%;
  }
  .footer-links__row > * { opacity: .75; font-size: 14px; line-height: 1.4; }
  .footer-links a {
    color: inherit;
    text-decoration: underline;
    text-underline-position: from-font;
    text-underline-offset: unset;
    text-decoration-thickness: auto;
  }
  .footer-links a:hover { opacity: 1; }
  .footer-links .footer-cookie-prefs {
    appearance: none;
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-decoration: underline;
    text-underline-position: from-font;
    cursor: pointer;
  }
  .footer-links .footer-cookie-prefs:hover { opacity: 1; }
  .footer-links .contact { font-weight: 500; text-transform: capitalize; text-decoration: none; padding: 0; }
  .footer-links .copyright {
    margin: 0;
    opacity: .75;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 1280px) {
    .trust-cards { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 1024px) {
    .teammate-cards, .action-cards { grid-template-columns: 1fr; }
    .action-card { flex-direction: column-reverse; }
    .int-grid { grid-template-columns: repeat(4, 1fr); gap: 48px; }
    .section-head { gap: 28px; }
    .section { padding: 48px clamp(20px, 4vw, 48px) 64px; }
    .section-inner { gap: 40px; }
    .before-after { flex-direction: column; gap: 8px; }
    .ba-arrow { transform: rotate(90deg); align-self: center; }
    .hero-frame-holder { height: clamp(320px, 58vw, 480px); }
  }
  @media (max-width: 900px) {
    .nav { padding: 16px 20px; grid-template-columns: 1fr auto; gap: 12px; }
    .nav-right .btn { display: none; }
    .nav .gh-burger { display: inline-flex; }
    .logo .mark { height: 32px; }
    .logo .wordmark { display: none; }
    .nav-links {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: auto;
      width: min(82vw, 340px);
      display: none;
      flex-direction: column;
      align-items: flex-end;
      justify-content: flex-start;
      gap: 8px;
      padding: 88px 28px 40px;
      background: var(--bg-blue);
      border-radius: 0;
      box-shadow: -12px 0 40px rgba(35, 24, 38, 0.08);
      z-index: 120;
    }
    .nav-links.is-open { display: flex; }
    .nav-links a {
      padding: 10px 0;
      border-radius: 0;
      opacity: 1;
      font-size: 28px;
      font-weight: 500;
      line-height: 1.2;
      text-align: right;
      color: var(--ink);
    }
    .nav-links a:hover,
    .nav-links a.is-active { background: transparent; opacity: .7; }
    .nav-links .nav-links__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: auto;
      align-self: center;
      width: 100%;
      max-width: 280px;
      padding: 14px 20px;
      background: var(--purple-btn);
      color: #fff;
      font-family: "IBM Plex Sans", sans-serif;
      font-weight: 600;
      font-size: 15px;
      text-transform: capitalize;
      border-radius: 8px;
      text-align: center;
      opacity: 1;
    }
    .nav-links .nav-links__cta:hover { background: #7e3fa1; color: #fff; opacity: 1; }
  }
  @media (max-width: 640px) {
    .hero { padding-top: 12px; }
    .hero-text {
      padding: 24px 24px 0;
      gap: 24px;
      max-width: 100%;
    }
    .hero-eyebrow {
      font-size: 12px;
      letter-spacing: 1.4px;
    }
    .hero h1 {
      letter-spacing: -1px;
      font-size: clamp(28px, 8.2vw, 36px);
      line-height: 1.15;
    }
    .hero .hero-attr {
      margin-top: 12px !important;
      font-size: 14px;
      letter-spacing: 0.04em;
    }
    .hero .hero-attr::before { content: "— "; }
    .hero-sub {
      font-size: 15px;
      line-height: 1.55;
      max-width: 34em;
      margin-inline: auto;
    }
    .hero-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      align-self: center;
      margin-top: 4px;
      padding: 13px 22px;
      font-size: 14px;
    }
    .hero-tabs {
      padding: 36px 20px 28px;
      justify-content: center;
    }
    .hero-tabs-inner {
      gap: 10px 14px;
      margin: 0;
      padding-right: 0;
    }
    .hero-tab {
      font-size: 11px;
      letter-spacing: 1px;
      padding: 10px 0;
    }
    .hero-tab.active { padding: 10px 14px; }
    .hero-visual { padding: 0 16px 32px; }
    .hero-frame-holder { height: min(70vw, 360px); border-radius: 14px; }
    .logo-band { padding: 40px 0 32px; gap: 24px; }
    .logo-band-label { font-size: 12px; letter-spacing: 1.2px; padding: 0 20px; }
    .logo-row { gap: 28px 36px; }
    .logo-row .cell img { max-height: 28px; max-width: 120px; }
    .logo-row .cell img.sq { max-height: 38px; }
    .section { padding: 40px 20px 56px; }
    .section-quote { font-size: clamp(24px, 7vw, 32px); letter-spacing: -0.5px; }
    .section-head { gap: 20px; }
    .product-summary-inner { gap: 32px; }
    .product-summary__item { padding: 22px 0; }
    .int-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
    .int-grid img { max-height: 40px; }
    .int-grid .wide { width: 56px; }
    .eq-card, .eq-card.axari { width: 100%; }
    .eq-plus { display: none; }
    .changes-scroller { padding-left: 20px; scroll-padding-inline-start: 20px; gap: 16px; }
    .change-card { width: min(320px, 85vw); padding: 20px; gap: 20px; }
    .change-quote .qmark { font-size: 40px; }
    .change-quote blockquote { font-size: 17px; }
    .ba-cell p { font-size: 14px; }
    .why-list { padding: 24px 12px; border-radius: 16px; gap: 24px; }
    .why-accordion__item { padding: 0 8px 28px; }
    .why-accordion__num { font-size: 18px; }
    .why-accordion__title { letter-spacing: -0.4px; }
    .why-accordion__chevron { width: 24px; height: 24px; }
    .why-panel__grid--cols-4 { grid-template-columns: 1fr; }
    .wx-visual { min-height: 240px; padding: 16px; }
    .wx-money-box { padding: 16px 24px; }
    .wx-money-num { font-size: 32px; }
    .shot-frame { height: 200px; }
    .trust-cards { grid-template-columns: 1fr; }
    .cta { padding: 48px 20px 64px; gap: 24px; }
    .cta h2 { font-size: clamp(22px, 6vw, 28px); }
    .footer { padding: 28px 20px 48px; gap: 28px; }
    .footer-top { justify-content: center; }
  }

  /* ---------- Cookie consent ---------- */
  .consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    padding: 16px;
    pointer-events: none;
  }
  .consent-banner[hidden] { display: none !important; }
  .consent-banner__inner {
    pointer-events: auto;
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    padding: 18px 20px;
    background: var(--ink);
    color: #f5f5f5;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -8px 32px rgba(35, 24, 38, 0.18);
  }
  .consent-banner__copy { flex: 1 1 280px; min-width: 0; }
  .consent-banner__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.2px;
    margin: 0 0 6px;
    color: #fff;
  }
  .consent-banner__text {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    opacity: .88;
  }
  .consent-banner__text a {
    color: #d4b8ff;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .consent-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
  }
  .consent-banner__btn {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    line-height: 1.2;
  }
  .consent-banner__btn--primary {
    background: var(--purple-btn);
    color: #fff;
  }
  .consent-banner__btn--primary:hover { background: #7e3fa1; }
  .consent-banner__btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
  }
  .consent-banner__btn--ghost:hover { border-color: rgba(255, 255, 255, 0.55); }
