/* Product-pages — Tier 1 (Product hub) + Tier 2 (Distribution) styles.
   Built on Home 1b tokens/classes (--h1b-*, .h1b-section, .h1b-btn, .home-1b__inner). */

/* Phosphor Thin: local face + glyphs come from home-1b.css */

/* —— Current-section nav state (Product / Distribution pages) —— */
.h1b-nav__item.is-current > .h1b-nav__btn {
  color: var(--h1b-ink);
  font-weight: 700;
}

.h1b-mobile__label.is-current {
  color: var(--h1b-ink);
}

/* —— Breadcrumb (Tier 2) —— */
.pp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.8125rem;
  color: #8f95a3;
  margin-bottom: 16px;
}

.pp-breadcrumb a {
  color: #c2c6cf;
}

.pp-breadcrumb a:hover {
  color: #fff;
}

.pp-breadcrumb__current {
  color: var(--h1b-accent);
}

/* —— Product hub hero (Tier 1 — half-height, left-aligned, photo) —— */
.pp-hero {
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  color: #fff;
  background: var(--h1b-ink);
  /* Clip scaled photo; no max-height so copy is never cut off */
  overflow: hidden;
}

.pp-hero__bg,
.pp-hero__shade,
.pp-hero__shade-2 {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.pp-hero__bg {
  background: url('/assets/product/hero.webp?v=2') 42% 55% / cover no-repeat;
  filter: grayscale(1) contrast(1.14) brightness(0.88);
}

.pp-hero__shade {
  background: linear-gradient(
    90deg,
    rgba(52, 55, 64, 0.97) 0%,
    rgba(52, 55, 64, 0.9) 38%,
    rgba(52, 55, 64, 0.72) 68%,
    rgba(52, 55, 64, 0.55) 100%
  );
  mix-blend-mode: multiply;
}

.pp-hero__shade-2 {
  background: linear-gradient(
    90deg,
    rgba(52, 55, 64, 0.55) 0%,
    rgba(52, 55, 64, 0.28) 55%,
    rgba(52, 55, 64, 0.18) 100%
  );
}

.pp-hero__inner {
  position: relative;
  z-index: 1;
  /* Keep .home-1b__inner side gutters — do not set width: 100% */
  padding-block: 64px 56px;
}

.pp-hero__content {
  max-width: 36rem;
}

.pp-hero--product .pp-hero__content {
  max-width: min(100%, 52rem);
}

.pp-hero--product .h1b-word {
  font-style: italic;
  font-weight: 700;
  color: #a2ffc8;
  background: none;
  -webkit-text-fill-color: #a2ffc8;
  text-shadow: 0 0 28px rgba(162, 255, 200, 0.45);
}

.pp-hero__eyebrow {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--h1b-accent);
  margin-bottom: 10px;
}

.pp-hero__title {
  font-weight: 700;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
  text-wrap: balance;
}

.pp-hero--product .pp-hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.04;
  text-wrap: nowrap;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .pp-hero--product .pp-hero__title {
    white-space: normal;
    text-wrap: balance;
    font-size: 1.85rem;
  }
}

.pp-hero__lede {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: #c8ccd4;
  max-width: 34rem;
  margin-bottom: 22px;
}

.pp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pp-hero__note {
  position: absolute;
  bottom: 12px;
  right: max(24px, calc((100% - var(--h1b-max)) / 2));
  z-index: 1;
  font-family: var(--h1b-mono);
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.55);
}

/* —— Distribution hero (Tier 2 — schematic, no photo) —— */
.pp-dist-hero {
  position: relative;
  background: var(--h1b-ink);
  color: #fff;
  padding: 56px 0 64px;
}

.pp-dist-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .pp-dist-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.pp-dist-hero__content {
  max-width: 30rem;
}

/* Schematic: issuer -> network -> investors */
.pp-schematic {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  border: 1px solid rgba(162, 255, 200, 0.22);
  border-radius: 12px;
}

/* Hub-and-spoke: Redbelly centre, networks orbiting */
.pp-hub {
  --hub-size: min(100%, 340px);
  position: relative;
  width: var(--hub-size);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(162, 255, 200, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.pp-hub__ring {
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(162, 255, 200, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.pp-hub__spoke {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(162, 255, 200, 0.55),
    rgba(162, 255, 200, 0.12)
  );
  transform-origin: left center;
  pointer-events: none;
}

.pp-hub__spoke--1 {
  transform: rotate(-90deg);
}
.pp-hub__spoke--2 {
  transform: rotate(-18deg);
}
.pp-hub__spoke--3 {
  transform: rotate(54deg);
}
.pp-hub__spoke--4 {
  transform: rotate(126deg);
}
.pp-hub__spoke--5 {
  transform: rotate(198deg);
}

.pp-hub__node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 72px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.pp-hub__node img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  padding: 6px;
  box-sizing: border-box;
}

.pp-hub__node span {
  font-weight: 500;
  font-size: 0.625rem;
  letter-spacing: 0.02em;
  color: #8f95a3;
  line-height: 1.2;
}

.pp-hub__node--center {
  left: 50%;
  top: 50%;
  width: 72px;
  z-index: 2;
}

.pp-hub__node--center img,
.pp-hub__redbelly {
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  box-shadow: none;
}

.pp-hub__node--center span {
  color: #cfead9;
  font-size: 0.6875rem;
  font-weight: 600;
}

/* Orbit positions on the dashed ring */
.pp-hub__node--n1 {
  left: 50%;
  top: 14%;
}
.pp-hub__node--n2 {
  left: 86%;
  top: 38%;
}
.pp-hub__node--n3 {
  left: 78%;
  top: 78%;
}
.pp-hub__node--n4 {
  left: 22%;
  top: 78%;
}
.pp-hub__node--n5 {
  left: 14%;
  top: 38%;
}

@media (max-width: 767px) {
  .pp-hub {
    --hub-size: min(100%, 280px);
  }

  .pp-hub__node {
    width: 60px;
  }

  .pp-hub__node img {
    width: 30px;
    height: 30px;
    padding: 5px;
  }

  .pp-hub__node--center {
    width: 60px;
  }

  .pp-hub__node--center img,
  .pp-hub__redbelly {
    width: 48px;
    height: 48px;
    padding: 0;
  }

  .pp-hub__node span {
    font-size: 0.5625rem;
  }
}

.pp-ladder__seg--wide {
  font-size: 0.6875rem;
  padding: 0 6px;
}

.pp-schematic__node {
  flex: none;
  text-align: center;
}

.pp-schematic__icon {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  border: 1px solid var(--h1b-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.pp-schematic__icon .ph-thin {
  font-size: 22px;
  color: var(--h1b-accent);
}

.pp-schematic__node--network .pp-schematic__icon {
  border-radius: 50%;
  border-color: rgba(255, 255, 255, 0.35);
}

.pp-schematic__node--network .pp-schematic__icon .ph-thin {
  color: #fff;
}

.pp-schematic__label {
  font-weight: 500;
  font-size: 0.6875rem;
  color: #8f95a3;
}

.pp-schematic__link {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(162, 255, 200, 0.5),
    rgba(162, 255, 200, 0.2)
  );
}

.pp-schematic__fan {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pp-schematic__fan span {
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(162, 255, 200, 0.2),
    rgba(162, 255, 200, 0.45)
  );
}

.pp-schematic__bars {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pp-schematic__bars span {
  display: block;
  width: 34px;
  height: 14px;
  border-radius: 3px;
  background: rgba(162, 255, 200, 0.5);
}

.pp-schematic__bars span:nth-child(2) {
  background: rgba(162, 255, 200, 0.34);
}

.pp-schematic__bars span:nth-child(3) {
  background: rgba(162, 255, 200, 0.2);
}

@media (max-width: 767px) {
  .pp-hero {
    min-height: auto;
    max-height: none;
  }

  .pp-hero__bg {
    background-position: 56% 60%;
    transform: none;
    filter: grayscale(1) contrast(1.14) brightness(0.9);
  }

  .pp-hero__shade {
    background: linear-gradient(
      180deg,
      rgba(52, 55, 64, 0.82) 0%,
      rgba(52, 55, 64, 0.9) 55%,
      rgba(52, 55, 64, 0.96) 100%
    );
  }

  .pp-hero__shade-2 {
    background: linear-gradient(
      180deg,
      rgba(52, 55, 64, 0.3) 0%,
      rgba(52, 55, 64, 0.42) 100%
    );
  }

  .pp-hero__inner {
    padding-block: 40px 44px;
  }

  .pp-hero__title {
    font-size: 1.75rem;
  }

  .pp-hero__lede {
    margin-bottom: 18px;
  }

  .pp-hero__lede-extra {
    display: block;
  }

  .pp-hero__actions {
    width: 100%;
    flex-direction: column;
  }

  .pp-hero__actions .h1b-btn--primary {
    width: 100%;
  }

  .pp-hero__actions .h1b-btn--ghost,
  .pp-dist-hero__content .h1b-btn--ghost {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }

  .pp-hero__note {
    display: block;
  }

  .pp-dist-hero {
    padding: 36px 0 40px;
  }

  .pp-schematic {
    padding: 16px 14px;
  }

  .pp-schematic__icon {
    width: 32px;
    height: 32px;
  }

  .pp-schematic__icon .ph-thin {
    font-size: 16px;
  }
}

/* —— Capabilities (Product hub — click-only tabs) —— */
.pp-cap-kicker {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--h1b-muted);
  text-align: center;
  margin-bottom: 20px;
}

.pp-cap-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.pp-cap-tab {
  padding: 0 2px 8px;
  font-weight: 400;
  font-size: 0.9375rem;
  color: #8f8a83;
  border: 0;
  border-bottom: 1.5px solid transparent;
  background-color: transparent;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease;
}

.pp-cap-tab:hover {
  color: var(--h1b-ink);
}

.pp-cap-tab.is-active {
  font-weight: 600;
  color: var(--h1b-ink);
  border-bottom-color: var(--h1b-ink);
}

/* Stacked (mobile) layout — class toggled by product-pages.js
   Matches Product.html tabsM: outline active, not filled */
.pp-cap.is-stacked .pp-cap-kicker {
  text-align: left;
  margin-bottom: 12px;
}

.pp-cap.is-stacked .pp-cap-tabs {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 16px;
  justify-content: stretch;
}

.pp-cap.is-stacked .pp-cap-tab {
  text-align: left;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2ded7;
  border-radius: 6px;
  background-color: #fff;
  color: #8f8a83;
  font-weight: 400;
}

.pp-cap.is-stacked .pp-cap-tab.is-active {
  border: 1px solid #343740;
  background-color: #fff;
  color: #343740;
  font-weight: 600;
}

.pp-cap.is-stacked .pp-cap-panel {
  min-height: 0;
}

.pp-cap.is-stacked .pp-cap-shot {
  min-height: 180px;
  /* Product.html mobile hatch has no shot label */
  font-size: 0;
  color: transparent;
}

.pp-cap.is-stacked .pp-cap-copy {
  padding: 14px 16px;
  background: #f2f2f2;
}

.pp-cap.is-stacked .pp-cap-copy__eyebrow {
  display: block;
  margin-bottom: 6px;
}

.pp-cap.is-stacked .pp-cap-copy__title {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.pp-cap.is-stacked .pp-cap-copy__body {
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.pp-cap.is-stacked .pp-cap-copy__cta {
  padding: 8px 12px;
  font-size: 0.8125rem;
  background: transparent;
  border: 1px solid #343740;
  color: #343740;
}

.pp-cap-panel {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--h1b-line);
  border-radius: 10px;
  overflow: hidden;
  min-height: 280px;
  background: var(--h1b-soft);
}

.pp-cap-panel[hidden] {
  display: none !important;
}

@media (min-width: 768px) {
  .pp-cap-panel {
    flex-direction: row;
    min-height: 320px;
  }
}

.pp-cap-shot {
  position: relative;
  flex: none;
  width: 100%;
  min-height: 220px;
  background: repeating-linear-gradient(45deg, #e6e7ea 0 8px, #dadce1 8px 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-family: var(--h1b-mono);
  font-size: 0.75rem;
  line-height: 1.35;
  color: #8c867e;
  overflow: hidden;
  word-break: break-word;
}

.pp-cap-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Product Superpowers: white plate so illustrations sit seamlessly */
.pp-cap-shot.has-image {
  background: #fff;
  padding: 0;
  color: transparent;
}

.pp-cap-shot.has-image--contain img {
  object-fit: contain;
}

.pp-cap-shot.has-image--cover img {
  object-fit: cover;
}

/* Floating UI mockups — transparent, no grey plate, shadows uncropped */
.pp-adopt__shot.has-image {
  background: transparent;
  border: none;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  position: relative;
  color: transparent;
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.pp-adopt__shot.has-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.pp-adopt__shot.has-image--contain img {
  object-fit: contain;
}

.pp-adopt__shot.has-image--cover img {
  object-fit: cover;
  object-position: top center;
}

/* Shared figure slots for Phil diagrams / product shots */
.pp-hero-fig {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.pp-hero-fig img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
}

.pp-cap-shot.has-image--contain img,
.pp-hero-fig img {
  filter: contrast(1.28) saturate(1.2) brightness(0.78);
}

/* Light-bg illustrations on dark product heroes (Ease / Distribution) */
.pp-hero-fig--light {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  min-height: 0;
}

.pp-hero-fig--light img {
  max-width: 440px;
  filter: contrast(1.18) saturate(1.15) brightness(0.92);
}

.pp-lt-fig {
  border-radius: 10px;
  overflow: visible;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.pp-lt-fig img {
  display: block;
  width: 100%;
  height: auto;
}

#lookthrough .pp-lt-fig img {
  width: 115%;
  max-width: none;
  transform: none;
  margin-left: -7.5%;
}

.pp-portal-shot {
  position: relative;
  overflow: visible;
}

.pp-portal-shot__img {
  display: block;
  width: 115%;
  max-width: none;
  height: auto;
  border-radius: 10px;
  border: none;
  background: transparent;
  transform: none;
  margin-left: -7.5%;
}

@media (min-width: 768px) {
  .pp-cap-shot {
    /* Slightly narrower illustration column (Matt feedback) */
    flex: 1 1 42%;
    width: 42%;
    max-width: 480px;
    min-height: 300px;
    align-self: stretch;
    padding: 0;
  }
}

@media (min-width: 1100px) {
  .pp-cap-shot {
    flex-basis: 44%;
    width: 44%;
    min-height: 320px;
  }

  .pp-cap-panel {
    min-height: 320px;
  }
}

.pp-cap-copy {
  flex: 1 1 40%;
  min-width: 0;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pp-cap-copy__eyebrow {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--h1b-muted);
  margin-bottom: 8px;
}

.pp-cap-copy__title {
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.2;
  margin-bottom: 12px;
}

.pp-cap-copy__body {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--h1b-muted);
  margin-bottom: 18px;
}

.pp-cap-copy__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid var(--h1b-ink);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--h1b-ink);
}

@media (max-width: 899px) {
  /* Kept as fallback if JS has not yet toggled .is-stacked */
  .pp-cap:not(.is-stacked) .pp-cap-kicker {
    text-align: left;
  }
}

/* —— Why this matters (4-pillar grid) —— */
.pp-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 640px) {
  .pp-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .pp-pillars {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
}

.pp-pillar {
  text-align: center;
}

.pp-pillar .ph-thin {
  font-size: 1.75rem;
  color: var(--h1b-navy);
  display: block;
  margin: 0 auto 14px;
  line-height: 1;
}

.pp-pillar h3 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.pp-pillar p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--h1b-muted-2);
}

@media (max-width: 899px) {
  .pp-pillars {
    gap: 22px;
    text-align: left;
  }

  .pp-pillar {
    text-align: left;
  }

  .pp-pillar .ph-thin {
    margin: 0 0 10px;
  }

  .pp-pillar p {
    display: block;
  }

  #why-it-matters .h1b-head {
    text-align: left;
    align-items: flex-start;
  }

  #why-it-matters .h1b-lede {
    display: block;
  }
}

/* —— Getting started (Product hub, 2-col) —— */
.pp-gs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .pp-gs-grid {
    grid-template-columns: 1fr 1.35fr;
    gap: 36px;
  }
}

/* Product Getting started — keep photo’s landscape frame (no tall crop) */
#getting-started .pp-gs-shot {
  min-height: 0;
  aspect-ratio: 2400 / 1265;
  align-self: center;
  width: 100%;
  background: #e8e9ec;
  filter: none;
}

#getting-started .pp-gs-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 48%;
  filter: grayscale(1) contrast(1.08) brightness(0.92);
}

@media (min-width: 1100px) {
  #getting-started .pp-gs-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
  }
}

.pp-gs-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 22px;
}

.pp-gs-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pp-gs-check .ph-thin {
  font-size: 1.0625rem;
  color: #009c9c;
  line-height: 1.4;
  flex: none;
}

.pp-gs-check span {
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--h1b-ink);
}

.pp-gs-shot {
  min-height: 220px;
  border-radius: 10px;
  background: #343740 url('/assets/product/practitioners.webp?v=4') 50% 45% /
    cover no-repeat;
  filter: grayscale(1) contrast(1.08) brightness(0.92);
  overflow: hidden;
}

.pp-gs-shot--mobile {
  display: none;
}

@media (max-width: 767px) {
  .pp-gs-shot {
    display: none;
  }

  .pp-gs-shot--mobile {
    display: block;
    min-height: 0;
    aspect-ratio: 2400 / 1265;
    margin: 16px 0 20px;
  }

  .pp-gs-checks {
    margin: 0 0 16px;
  }
}

/* —— Cost ladder (Distribution) —— */
.pp-cost-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .pp-cost-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
  }
}

.pp-cost-intro {
  max-width: 100%;
  min-width: 0;
}

.pp-cost-intro .ph-thin {
  font-size: 1.75rem;
  color: var(--h1b-navy);
  display: block;
  margin-bottom: 12px;
}

.pp-ladder {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pp-ladder__label {
  font-weight: 500;
  font-size: 0.8125rem;
  color: #8c867e;
  margin-bottom: 6px;
}

.pp-ladder__bar {
  display: flex;
  gap: 3px;
  height: 34px;
}

.pp-ladder__seg {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.75rem;
  color: #6b655e;
  border-radius: 3px;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 4px;
}

.pp-ladder__seg:first-child {
  border-radius: 4px 0 0 4px;
}

.pp-ladder__seg:last-child {
  border-radius: 0 4px 4px 0;
}

.pp-ladder__seg--reach {
  background: var(--h1b-ink);
  color: #fff;
  font-weight: 600;
}

.pp-ladder--direct .pp-ladder__seg--reach {
  color: var(--h1b-accent);
}

.pp-ladder__note {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #a8a29a;
}

@media (max-width: 767px) {
  .pp-ladder {
    gap: 20px;
    max-width: 100%;
  }

  /* Stack traditional intermediary steps so labels stay readable */
  .pp-ladder > div:not(.pp-ladder--direct) .pp-ladder__bar {
    flex-direction: column;
    height: auto;
    gap: 4px;
  }

  .pp-ladder > div:not(.pp-ladder--direct) .pp-ladder__seg {
    flex: none !important;
    width: 100%;
    height: 34px;
    justify-content: flex-start;
    padding: 0 12px;
    border-radius: 4px !important;
    font-size: 0.8125rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Keep the short direct-path bar proportional */
  .pp-ladder--direct .pp-ladder__bar {
    height: 34px;
    max-width: 100%;
    min-width: 0;
  }

  .pp-ladder--direct .pp-ladder__seg {
    min-width: 0;
    font-size: 0.75rem;
    padding: 0 8px;
  }
}

/* —— Lookthrough (Distribution, tinted) —— */
.pp-lt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .pp-lt-grid {
    grid-template-columns: 1.25fr 1fr;
    gap: 40px;
  }
}

.pp-lt-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px 20px;
}

.pp-lt-timeline {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.pp-lt-dot {
  width: 10px;
  height: 10px;
  flex: none;
  border-radius: 50%;
  background: var(--h1b-ink);
}

.pp-lt-line {
  flex: 1;
  height: 1.5px;
  background: var(--h1b-ink);
}

.pp-lt-labels {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.pp-lt-labels span {
  flex: 1;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--h1b-ink);
  text-align: center;
}

.pp-lt-labels span:first-child {
  text-align: left;
}

.pp-lt-labels span:last-child {
  text-align: right;
}

@media (max-width: 767px) {
  .pp-lt-card {
    padding: 18px 14px;
  }

  .pp-lt-labels {
    gap: 4px;
  }

  .pp-lt-labels span,
  .pp-lt-labels span:first-child,
  .pp-lt-labels span:last-child {
    font-size: 0.6875rem;
    text-align: center;
    min-width: 0;
  }

  .pp-lt-strip {
    font-size: 0.6875rem;
    padding: 0 8px;
    text-align: center;
  }
}

.pp-lt-strip {
  height: 44px;
  border-radius: 6px;
  background: repeating-linear-gradient(45deg, #eceef1 0 8px, #e2e4e9 8px 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--h1b-mono);
  font-size: 0.75rem;
  color: #9aa0ad;
}

.pp-lt-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.pp-lt-checks .pp-gs-check .ph-thin {
  color: #009c9c;
}

/* —— Benefits (Distribution, dark 3-card) —— */
.pp-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pp-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

.pp-benefit-card {
  background: #3d414c;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  align-self: stretch;
}

.pp-benefit-card__body {
  padding: 22px 20px 24px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.pp-benefit-card__kicker {
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--h1b-accent);
  margin-bottom: 8px;
}

.pp-benefit-card__title {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 8px;
}

.pp-benefit-card__text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #a6acb9;
  margin: 0;
}

.pp-benefit-card__shot {
  position: relative;
  flex: 0 0 140px;
  width: 100%;
  height: 140px;
  min-height: 140px;
  max-height: 140px;
  overflow: hidden;
  background: #2a2e38;
}

.pp-benefit-card__shot--photo {
  background: #2a2e38;
}

.pp-benefit-card__shot--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Match Protocol Finance calm slate treatment */
  filter: grayscale(14%) saturate(0.82) contrast(0.98) brightness(0.96);
}

.pp-benefit-card__shot--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      155deg,
      rgba(48, 54, 70, 0.18) 0%,
      rgba(40, 44, 58, 0.36) 55%,
      rgba(34, 38, 50, 0.48) 100%
    ),
    rgba(55, 62, 78, 0.22);
}

@media (min-width: 768px) {
  .pp-benefit-card__shot {
    flex-basis: 150px;
    height: 150px;
    min-height: 150px;
    max-height: 150px;
  }
}

/* —— Investor Portal (Distribution, copy left + image right) —— */
.pp-portal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .pp-portal-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
  }
}

.pp-portal-shot {
  position: relative;
}

.pp-portal-shot__note {
  margin: 10px 0 0;
  font-family: var(--h1b-mono, 'IBM Plex Mono', monospace);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a8a29a;
  text-align: center;
}

.pp-browser {
  border: 1px solid var(--h1b-line);
  border-radius: 10px;
  overflow: hidden;
}

.pp-browser__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--h1b-soft);
  border-bottom: 1px solid var(--h1b-line);
}

.pp-browser__bar span:not(.pp-browser__url) {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9c5be;
}

.pp-browser__url {
  font-weight: 500;
  font-size: 0.75rem;
  color: #8c867e;
  margin-left: 6px;
}

.pp-browser__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pp-browser__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pp-browser__pill {
  width: 60px;
  height: 10px;
  border-radius: 3px;
  background: var(--h1b-ink);
}

.pp-browser__dots {
  display: flex;
  gap: 6px;
}

.pp-browser__dots span {
  width: 22px;
  height: 7px;
  border-radius: 2px;
  background: var(--h1b-line);
}

.pp-browser__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pp-browser__cards span {
  height: 36px;
  border-radius: 4px;
  background: var(--h1b-platform);
}

.pp-browser__chart {
  height: 52px;
  border-radius: 4px;
  background: repeating-linear-gradient(45deg, #f4f5f7 0 8px, #eceef1 8px 16px);
}

.pp-portal-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
}

@media (min-width: 500px) {
  .pp-portal-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pp-portal-feature__head {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
}

.pp-portal-feature__head .ph-thin {
  font-size: 1.0625rem;
  color: #009c9c;
}

.pp-portal-feature__head h3 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--h1b-ink);
}

.pp-portal-feature p {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--h1b-muted);
}

/* —— Stats (tinted, 3 figures) —— */
.pp-stats-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .pp-stats-intro {
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
  }
}

.pp-stats-intro h2 {
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 1.875rem);
  line-height: 1.2;
}

.pp-stats-intro p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--h1b-muted);
}

.pp-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .pp-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.pp-stat {
  border-left: 1px solid #cfd1d6;
  padding-left: 18px;
}

.pp-stat__value {
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.15;
  color: var(--h1b-ink);
  margin-bottom: 6px;
}

.pp-stat__label {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--h1b-ink);
}

.pp-stats-source {
  margin-top: 20px;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--h1b-muted);
}

/* —— Readiness CTA (Distribution — dark, photo) —— */
.pp-readiness {
  position: relative;
  overflow: hidden;
  background: var(--h1b-ink) url('/assets/product/readiness.webp?v=2') 30% 40% /
    cover no-repeat;
  color: #fff;
}

.pp-readiness__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(52, 55, 64, 0.92) 0%,
    rgba(52, 55, 64, 0.74) 34%,
    rgba(52, 55, 64, 0.28) 68%,
    rgba(52, 55, 64, 0.12) 100%
  );
  mix-blend-mode: multiply;
}

.pp-readiness__shade-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(52, 55, 64, 0.5) 0%,
    rgba(52, 55, 64, 0.16) 50%,
    rgba(52, 55, 64, 0) 78%
  );
}

.pp-readiness__inner {
  position: relative;
  z-index: 1;
  padding: 88px 0;
  max-width: 26rem;
}

.pp-readiness__kicker {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--h1b-accent);
  margin-bottom: 12px;
}

.pp-readiness__title {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
  text-wrap: pretty;
}

.pp-readiness__lede {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #dee0e5;
  margin-bottom: 20px;
}

.pp-readiness__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.pp-readiness__note {
  font-size: 0.75rem;
  color: #a6acb9;
}

@media (max-width: 767px) {
  .pp-readiness {
    background-position: 44% 30%;
  }

  .pp-readiness__inner {
    padding: 72px 0 40px;
    max-width: none;
  }

  .pp-readiness__actions {
    flex-direction: column;
  }
}

/* ============================================================
   Liquidity (Tier 2)
   ============================================================ */

/* —— Hero phone mock —— */
.pp-phone {
  width: 240px;
  margin: 0 auto;
  padding: 14px;
  background: #20222a;
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.pp-phone__screen {
  background: #fff;
  border-radius: 20px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pp-phone__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pp-phone__brand-bar {
  width: 64px;
  height: 9px;
  border-radius: 4px;
  background: var(--h1b-ink);
}

.pp-phone__avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--h1b-band);
}

.pp-phone__balance-value {
  display: block;
  width: 112px;
  height: 18px;
  border-radius: 4px;
  background: var(--h1b-ink);
  margin-bottom: 7px;
}

.pp-phone__balance-sub {
  display: block;
  width: 62px;
  height: 9px;
  border-radius: 4px;
  background: #009c9c;
}

.pp-phone__chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 78px;
}

.pp-phone__chart span {
  flex: 1;
  border-radius: 2px;
  background: #dafde5;
}

.pp-phone__chart span:nth-child(2),
.pp-phone__chart span:nth-child(4),
.pp-phone__chart span:nth-child(7) {
  background: var(--h1b-accent);
}

.pp-phone__chart span:nth-child(6),
.pp-phone__chart span:nth-child(8) {
  background: #009c9c;
}

.pp-phone__chart span:nth-child(1) {
  height: 38%;
}
.pp-phone__chart span:nth-child(2) {
  height: 56%;
}
.pp-phone__chart span:nth-child(3) {
  height: 44%;
}
.pp-phone__chart span:nth-child(4) {
  height: 72%;
}
.pp-phone__chart span:nth-child(5) {
  height: 60%;
}
.pp-phone__chart span:nth-child(6) {
  height: 88%;
}
.pp-phone__chart span:nth-child(7) {
  height: 66%;
}
.pp-phone__chart span:nth-child(8) {
  height: 100%;
}

.pp-phone__divider {
  height: 1px;
  background: #eff0f2;
}

.pp-phone__rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pp-phone__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pp-phone__row-label {
  width: 72px;
  height: 8px;
  border-radius: 4px;
  background: var(--ink-200);
}

.pp-phone__row-value {
  height: 8px;
  border-radius: 4px;
  background: var(--h1b-accent);
}

.pp-phone__row-value--a {
  width: 34px;
}

.pp-phone__row-value--b {
  width: 26px;
  background: #ff9a81;
}

.pp-phone__row-value--c {
  width: 40px;
}

.pp-phone__cta {
  height: 24px;
  border-radius: 7px;
  background: var(--h1b-navy);
  margin-top: 2px;
}

@media (max-width: 767px) {
  .pp-phone {
    width: 200px;
  }
}

/* —— Outline button + text link (light/tinted backgrounds) —— */
.h1b-btn--outline {
  border: 1px solid var(--h1b-ink);
  color: var(--h1b-ink);
  background: transparent;
}

.pp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--h1b-navy);
}

.pp-text-link:hover {
  opacity: 0.8;
}

.pp-liq-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.pp-compare + .pp-liq-actions {
  margin-top: 20px;
}

/* —— Capital / Custody photo (real image, not placeholder hatch) —— */
.pp-liq-photo {
  min-height: 320px;
  border-radius: 12px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.pp-liq-photo--capital {
  min-height: 0;
  aspect-ratio: 4 / 3;
  background: transparent;
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 0;
  border-radius: 0;
}

.pp-liq-photo--capital img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}

@media (max-width: 767px) {
  .pp-liq-photo,
  .pp-liq-actions--hide-mobile {
    display: none;
  }
}

/* —— Secondary liquidity — 3-way comparison —— */
.pp-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 22px 18px;
}

@media (min-width: 640px) {
  .pp-compare {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 26px 22px;
  }
}

.pp-compare__col {
  padding: 12px 10px;
  border-radius: 8px;
  background: var(--h1b-soft);
}

.pp-compare__label {
  font-family: var(--h1b-mono);
  font-weight: 500;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9aa0ad;
  margin-bottom: 6px;
}

.pp-compare__title {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.3;
  color: var(--h1b-ink);
  margin-bottom: 12px;
  min-height: 2.6em;
}

.pp-compare__note {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #8c867e;
  margin-top: 10px;
}

.pp-redeem {
  background: #fff;
  border-radius: 10px;
  padding: 26px 22px;
}

.pp-redeem__label {
  font-family: var(--h1b-mono);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: #9aa0ad;
  margin-bottom: 16px;
}

.pp-redeem__row {
  margin-bottom: 16px;
}

.pp-redeem__row:last-child {
  margin-bottom: 0;
}

.pp-redeem__row-label {
  font-weight: 500;
  font-size: 0.8125rem;
  color: #8c867e;
  margin-bottom: 8px;
}

.pp-redeem__bar {
  display: flex;
  gap: 4px;
  height: 22px;
}

.pp-redeem__seg {
  flex: 1;
  background: #e6e7ea;
  border-radius: 3px;
}

.pp-redeem__tick {
  width: 16px;
  flex: none;
  background: var(--h1b-ink);
  border-radius: 3px;
}

.pp-redeem__bar--always {
  border-radius: 3px;
  background: linear-gradient(90deg, var(--h1b-ink), #4c5a52);
}

.pp-redeem__bar--borrow {
  border-radius: 3px;
  background: linear-gradient(90deg, #323b70, #009c9c);
}

@media (max-width: 767px) {
  .pp-redeem {
    padding: 20px 18px;
  }

  .pp-redeem__bar {
    height: 18px;
  }

  .pp-compare__title {
    min-height: 0;
  }
}

/* —— Collateral (dark, split heading) —— */
.pp-collateral-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .pp-collateral-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
  }
}

.pp-collateral-heading .h1b-title {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.pp-collateral-body {
  font-size: 1rem;
  line-height: 1.55;
  color: #c2c6cf;
  margin-bottom: 20px;
}

.pp-collateral-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pp-collateral-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pp-collateral-row .ph-thin {
  font-size: 1.0625rem;
  color: var(--h1b-accent);
  line-height: 1.4;
  flex: none;
}

.pp-collateral-row span {
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #c2c6cf;
}

@media (max-width: 767px) {
  .pp-collateral-grid {
    gap: 20px;
  }
}

/* —— Settlement — atomic diagram —— */
.pp-atomic {
  background: var(--h1b-soft);
  border-radius: 10px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pp-atomic__row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pp-atomic__node {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  border-radius: 8px;
  background: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--h1b-ink);
}

.pp-atomic__row .ph-thin {
  font-size: 1.25rem;
  color: #009c9c;
  flex: none;
}

.pp-atomic__label {
  text-align: center;
  font-weight: 600;
  font-size: 0.8125rem;
  color: #009c9c;
}

.pp-atomic__divider {
  height: 1px;
  background: var(--h1b-line);
}

.pp-atomic__timeline {
  display: flex;
  justify-content: space-between;
  font-family: var(--h1b-mono);
  font-weight: 500;
  font-size: 0.75rem;
  color: #9aa0ad;
}

.pp-atomic__timeline-now {
  color: var(--h1b-ink);
  font-weight: 600;
}

@media (max-width: 767px) {
  .pp-atomic {
    padding: 20px 18px;
  }
}

/* —— Custody — before/after bars —— */
.pp-custody-bars__row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.pp-custody-bars__row:last-of-type {
  margin-bottom: 10px;
}

.pp-custody-bars__label {
  width: 50px;
  flex: none;
  font-weight: 500;
  font-size: 0.75rem;
  color: #8c867e;
}

.pp-custody-bars__track {
  flex: 1;
  display: flex;
  gap: 3px;
}

.pp-custody-bars__track span {
  flex: 1;
  height: 20px;
  border-radius: 3px;
  background: #dcd8d1;
}

.pp-custody-bars__track span:nth-child(2) {
  background: #d3cfc7;
}

.pp-custody-bars__track span:nth-child(3) {
  background: #cac5bc;
}

.pp-custody-bars__track span:nth-child(4) {
  background: var(--h1b-ink);
}

.pp-custody-bars__track--single span {
  background: var(--h1b-ink);
}

.pp-custody-bars__caption {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--h1b-muted);
}

/* —— Impact Calculator CTA (Liquidity — photo background) —— */
.pp-readiness__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.pp-readiness.pp-readiness--calc {
  background: var(--h1b-ink);
  color: #fff;
}

.pp-readiness.pp-readiness--calc .pp-readiness__bg {
  display: block;
  background: url('/assets/product/liquidity-cta.webp?v=1') 52% 42% / cover
    no-repeat;
  filter: saturate(0.55) contrast(1.06) brightness(0.88);
}

.pp-readiness.pp-readiness--calc .pp-readiness__shade,
.pp-readiness.pp-readiness--calc .pp-readiness__shade-2 {
  display: block;
}

.pp-readiness.pp-readiness--calc .pp-readiness__kicker {
  color: var(--h1b-accent);
}

.pp-readiness.pp-readiness--calc .pp-readiness__title {
  color: #fff;
}

.pp-readiness.pp-readiness--calc .pp-readiness__title-accent {
  color: var(--h1b-accent);
}

.pp-readiness.pp-readiness--calc .pp-readiness__lede {
  color: #dee0e5;
}

.pp-readiness.pp-readiness--calc .h1b-btn--primary {
  background: var(--h1b-accent);
  color: var(--h1b-ink);
}

.pp-readiness.pp-readiness--calc .h1b-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.pp-readiness.pp-readiness--calc .h1b-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .pp-readiness.pp-readiness--calc .pp-readiness__bg {
    background-position: 58% 36%;
  }
}

.pp-readiness__title-accent {
  color: var(--h1b-accent);
}

/* ============================================================
   Ease & Efficiency (Tier 2)
   ============================================================ */

.pp-section-head {
  max-width: 40rem;
  margin: 0 auto 36px;
  text-align: center;
}

.pp-section-head .h1b-lede {
  margin-inline: auto;
}

.pp-trust-title {
  white-space: nowrap;
  font-size: clamp(1.625rem, 2.2vw + 0.8rem, 2.5rem);
}

.pp-section-head:has(.pp-trust-title) {
  max-width: min(52rem, 100%);
}

@media (max-width: 640px) {
  .pp-trust-title {
    white-space: normal;
  }
}

.h1b-section--soft {
  background: var(--h1b-soft);
}

.h1b-section--band {
  background: var(--h1b-band);
}

.h1b-kicker--mint {
  color: var(--h1b-accent);
}

.h1b-kicker--navy {
  color: var(--h1b-navy);
}

.h1b-title--light {
  color: #fff;
}

.h1b-lede--light {
  color: #c2c6cf;
}

/* —— Hero timeline device —— */
.pp-timeline {
  background: #20222a;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.pp-timeline__label {
  font-family: var(--h1b-mono);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9aa0ad;
  margin-bottom: 28px;
}

.pp-timeline__track {
  position: relative;
  padding: 8px 4px 0;
}

.pp-timeline__line {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 18px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--h1b-accent) 0%,
    rgba(162, 255, 200, 0.45) 45%,
    rgba(255, 255, 255, 0.28) 100%
  );
}

.pp-timeline__nodes {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.pp-timeline__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.pp-timeline__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  box-shadow: 0 0 0 4px #20222a;
}

.pp-timeline__node.is-filled .pp-timeline__dot {
  background: var(--h1b-accent);
  border-color: var(--h1b-accent);
}

.pp-timeline__name {
  font-weight: 600;
  font-size: 0.8125rem;
  color: #c2c6cf;
}

.pp-timeline__node.is-filled .pp-timeline__name {
  color: #fff;
}

@media (max-width: 767px) {
  .pp-dist-hero__grid .pp-timeline {
    order: -1;
  }

  .pp-hero__actions-secondary {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }
}

/* —— Adoption stages (reuse Home Start Here stepper) —— */
.pp-adopt__stages {
  margin-bottom: 36px;
}

.pp-adopt__detail {
  display: block;
}

.pp-adopt__panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.pp-adopt__panel[hidden] {
  display: none !important;
}

.pp-adopt__shot {
  min-height: 260px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-family: var(--h1b-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #8c867e;
  background: repeating-linear-gradient(
    -45deg,
    #e8e4dc,
    #e8e4dc 6px,
    #f2f0ec 6px,
    #f2f0ec 12px
  );
  border: 1px dashed #cfc8bc;
}

.pp-adopt__shot.has-image {
  min-height: 0;
}

.pp-adopt__eyebrow {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8c867e;
  min-height: 1.1em;
  margin-bottom: 8px;
}

.pp-adopt__eyebrow:empty {
  display: none;
}

.pp-adopt__title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--h1b-ink);
  margin: 0 0 10px;
}

.pp-adopt__body {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--h1b-muted);
  margin: 0;
}

@media (max-width: 767px) {
  .pp-section-head {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .pp-section-head .h1b-lede {
    margin-inline: 0;
  }

  .pp-adopt__panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pp-adopt__shot {
    min-height: 160px;
  }
}

/* —— Guidance / Trust cards —— */
.pp-guide-grid,
.pp-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pp-guide-card,
.pp-trust-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 22px;
  border: 1px solid transparent;
}

.pp-guide-card .ph-thin,
.pp-trust-card .ph-thin {
  font-size: 1.5rem;
  color: var(--h1b-navy);
  display: block;
  margin-bottom: 14px;
}

.pp-guide-card__eyebrow,
.pp-trust-card__eyebrow,
.pp-journey-card__eyebrow {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8c867e;
  margin-bottom: 8px;
}

.pp-guide-card__title,
.pp-trust-card__title,
.pp-journey-card__title {
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.3;
  color: var(--h1b-ink);
  margin: 0 0 10px;
}

.pp-guide-card__body,
.pp-trust-card__body,
.pp-journey-card__body {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--h1b-muted);
  margin: 0;
}

.pp-placeholder {
  border: 1.5px dashed #b7b1a7;
  background: rgba(255, 255, 255, 0.55);
}

.pp-placeholder .ph-thin {
  color: #b45309;
}

.pp-placeholder-flag {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fbbf24;
}

@media (max-width: 899px) {
  .pp-guide-grid,
  .pp-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Architecture —— */
.pp-arch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.pp-arch-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.pp-arch-stat__value {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  color: var(--h1b-accent);
  margin: 0 0 8px;
}

.pp-arch-stat__label {
  font-size: 0.875rem;
  line-height: 1.45;
  color: #c2c6cf;
  margin: 0;
}

.pp-arch-schematic {
  background: #2a2d36;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pp-arch-schematic__label {
  font-weight: 600;
  font-size: 0.8125rem;
  color: #c2c6cf;
  margin: 0 0 10px;
}

.pp-arch-schematic__bars {
  display: flex;
  gap: 6px;
  height: 28px;
}

.pp-arch-schematic__bars span {
  flex: 1;
  border-radius: 4px;
}

.pp-arch-schematic__bars--mint span {
  background: linear-gradient(180deg, #dafde5, var(--h1b-accent));
}

.pp-arch-schematic__bars--mint span:nth-child(2) {
  opacity: 0.85;
}

.pp-arch-schematic__bars--mint span:nth-child(3) {
  opacity: 0.7;
}

.pp-arch-schematic__bars--grey span {
  background: #5a5f6c;
}

.pp-arch-schematic__bars--grey span:nth-child(2) {
  background: #6a7080;
}

.pp-arch-schematic__bars--grey span:nth-child(3) {
  background: #7a8090;
}

.pp-arch-schematic__bars--grey span:nth-child(4) {
  background: #8a90a0;
}

@media (max-width: 899px) {
  .pp-arch-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pp-arch-stats {
    grid-template-columns: 1fr;
  }
}

/* —— Journey —— */
.pp-journey-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.pp-journey-card {
  background: var(--h1b-soft);
  border-radius: 12px;
  padding: 24px 22px;
}

.pp-journey-card--hero {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pp-journey-card--hero .pp-journey-card__body + .pp-journey-card__body {
  margin-top: 10px;
}

.pp-journey-card__cta {
  align-self: flex-start;
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--h1b-ink);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--h1b-ink);
  background: transparent;
  text-decoration: none;
}

.pp-journey-card__cta:hover {
  opacity: 0.85;
}

.pp-journey-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}

.pp-shot-hatch {
  margin-top: auto;
  min-height: 120px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--h1b-mono);
  font-size: 0.75rem;
  color: #8c867e;
  background: repeating-linear-gradient(
    -45deg,
    #e8e4dc,
    #e8e4dc 6px,
    #f2f0ec 6px,
    #f2f0ec 12px
  );
  border: 1px dashed #cfc8bc;
}

@media (max-width: 899px) {
  .pp-journey-grid,
  .pp-journey-stack {
    grid-template-columns: 1fr;
  }
}

/* —— Partnership logos on blue —— */
.pp-partner-logos {
  justify-content: center;
  margin-top: 8px;
}

.pp-partner-logos .h1b-trust__ph {
  background: rgba(50, 59, 112, 0.19);
}

/* —— Why Tokenise CTA —— */
.pp-readiness.pp-readiness--why {
  background: var(--h1b-ink);
}

.pp-readiness.pp-readiness--why .pp-readiness__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url('/assets/product/ease-cta.webp?v=2') 50% 34% / cover no-repeat;
  filter: saturate(0.5) contrast(1.08);
}

.pp-readiness.pp-readiness--why .pp-readiness__inner {
  max-width: 34rem;
}

.pp-why-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.pp-why-chip {
  flex: 1 1 7rem;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.pp-why-chip__num {
  display: block;
  font-family: var(--h1b-mono);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--h1b-accent);
  margin-bottom: 4px;
}

.pp-why-chip__label {
  display: block;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.3;
  color: #dee0e5;
}

.pp-partner-link-wrap {
  margin-top: 20px;
  text-align: center;
}

/* ============================================================
   About Us
   ============================================================ */

.about-hero__grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-provenance {
  border: 1px solid rgba(162, 255, 200, 0.22);
  border-radius: 10px;
  padding: 22px 20px;
}

.about-provenance__label {
  font-family: var(--h1b-mono);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: #8f95a3;
  margin-bottom: 16px;
}

.about-provenance__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.about-provenance__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  font-weight: 500;
  font-size: 0.9375rem;
  color: #fff;
  padding-bottom: 18px;
}

.about-provenance__list li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 14px;
  width: 1.5px;
  height: calc(100% - 10px);
  background: rgba(162, 255, 200, 0.5);
}

.about-provenance__list li:last-child {
  padding-bottom: 0;
}

.about-provenance__list li.is-current {
  font-weight: 600;
  color: var(--h1b-accent);
}

.about-provenance__dot {
  width: 10px;
  height: 10px;
  flex: none;
  border-radius: 50%;
  border: 1.5px solid var(--h1b-accent);
  background: transparent;
  position: relative;
  z-index: 1;
}

.about-provenance__dot.is-filled {
  background: var(--h1b-accent);
}

.about-provenance__note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #8f95a3;
}

.pp-section-head--left {
  margin-inline: 0;
  text-align: left;
  max-width: 36rem;
}

.pp-section-head--left .h1b-lede {
  margin-inline: 0;
}

.about-origin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-origin-card {
  background: var(--h1b-soft);
  border-radius: 10px;
  padding: 22px 20px;
}

.about-origin-card .ph-thin {
  font-size: 1.375rem;
  color: #009c9c;
}

.about-origin-card__title {
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--h1b-ink);
  margin: 12px 0 8px;
}

.about-origin-card__body {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--h1b-muted);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-stat__value {
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1;
  color: var(--h1b-ink);
  margin-bottom: 8px;
}

.about-stat__rule {
  display: block;
  width: 28px;
  height: 2px;
  background: #719fe7;
  margin-bottom: 8px;
}

.about-stat__label {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--h1b-muted);
}

.about-trusted {
  display: flex;
  align-items: center;
  gap: 24px;
}

.about-trusted__label {
  flex: none;
  font-family: var(--h1b-mono);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: #8b93a8;
}

.about-trusted__logos {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
}

.about-trusted__logos .h1b-trust__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
}

.about-trusted__logos .h1b-trust__logo img {
  max-height: 28px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.about-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
}

.about-quote {
  margin: 0;
  border-left: 2px solid var(--h1b-accent);
  padding-left: 16px;
}

.about-quote p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #dee0e5;
  margin-bottom: 14px;
}

.about-quote__name {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 2px;
}

.about-quote__role {
  display: block;
  font-size: 0.8125rem;
  color: #8f95a3;
}

.about-quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-quote__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #fff;
}

.about-partners__logo {
  margin: 0 0 20px;
}

.about-partners__logo img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 160px;
}

.pp-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 22px 0 8px;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

@media (min-width: 768px) {
  .pp-compare {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.35fr);
    align-items: stretch;
    gap: 16px;
  }
}

.pp-compare__side,
.pp-compare__tok {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pp-compare__col {
  background: #fff;
  border: 1px solid var(--h1b-line);
  border-radius: 12px;
  padding: 20px 18px;
  height: 100%;
}

.pp-compare__col--tokeniser {
  border-color: #343740;
  background: #eefaf3;
}

.pp-compare__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #343740;
}

@media (max-width: 767px) {
  .pp-compare__arrow {
    transform: rotate(90deg);
  }
}

.pp-compare__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8c867e;
  margin-bottom: 10px;
}

.pp-compare__col h3 {
  font-size: 1.0625rem;
  margin: 0 0 8px;
}

.pp-compare__col p:not(.pp-compare__label),
.pp-compare__col li {
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--h1b-muted);
}

.pp-compare__col ul {
  margin: 0;
  padding-left: 1.1rem;
}

.pp-ladder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .pp-ladder {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
  }
}

.pp-ladder__flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pp-ladder__layer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  background: #d8d3cb;
  color: #4b4f5d;
  border-radius: 6px;
}

.pp-ladder__layer + .pp-ladder__layer {
  margin-top: 18px;
  position: relative;
}

.pp-ladder__layer + .pp-ladder__layer::before {
  content: '\2193';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875rem;
  color: #8c867e;
}

.pp-ladder__layer--reach {
  background: var(--h1b-ink);
  color: #fff;
}

.pp-ladder--direct .pp-ladder__layer:not(.pp-ladder__layer--reach) {
  background: #c9dbf1;
  color: #323b70;
}

.pp-title-keep .nowrap {
  white-space: nowrap;
}

@media (max-width: 899px) {
  .pp-cap.is-stacked .pp-cap-tabs,
  .pp-adopt.is-peek .h1b-steps,
  .pp-adopt.is-peek .pp-adopt__stages {
    display: none !important;
  }

  .pp-cap.is-stacked .pp-cap-track,
  .pp-adopt.is-peek .pp-adopt-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .pp-cap.is-stacked .pp-cap-panel,
  .pp-cap.is-stacked .pp-cap-panel[hidden],
  .pp-adopt.is-peek .pp-adopt__panel,
  .pp-adopt.is-peek .pp-adopt__panel[hidden] {
    display: flex !important;
    flex-direction: column;
    flex: 0 0 86%;
    min-width: 86%;
    scroll-snap-align: start;
    gap: 16px;
  }

  .pp-adopt.is-peek .pp-adopt__shot.has-image {
    flex-shrink: 0;
    width: 100%;
    min-height: 180px;
    aspect-ratio: 4 / 3;
  }

  .pp-adopt.is-peek .pp-adopt__shot.has-image img {
    position: static;
    width: 100%;
    height: auto;
    inset: auto;
  }

  .pp-title-keep {
    white-space: normal;
  }

  .pp-title-keep .nowrap {
    white-space: nowrap;
  }
}

.pp-settle {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.pp-settle__fig img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 900px) {
  .pp-settle {
    grid-template-columns: 1.15fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 899px) {
  .pp-settle {
    display: flex !important;
    flex-direction: column !important;
  }

  .pp-settle__copy {
    order: 1;
  }

  .pp-settle__fig {
    order: 2;
    width: 100%;
  }

  .pp-settle__fig img {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    min-height: 340px;
    object-fit: contain;
  }
}

@media (max-width: 767px) {
  .pp-hero--product .pp-hero__title {
    white-space: normal;
    text-wrap: balance;
    font-size: 1.85rem;
  }

  #lookthrough .pp-lt-fig img,
  .pp-portal-shot__img {
    width: 100%;
    margin-left: 0;
  }
}

.about-partners {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.about-partners__copy .h1b-lede {
  max-width: 36rem;
}

.about-partners__cta {
  margin-top: 18px;
}

.about-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--h1b-ink);
  background: transparent;
  color: var(--h1b-ink);
  font-weight: 600;
  font-size: 0.875rem;
}

.about-outline-btn:hover {
  opacity: 0.85;
}

.about-duties {
  background: var(--h1b-soft);
  border-radius: 10px;
  padding: 22px;
}

.about-duties__label {
  font-family: var(--h1b-mono);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: #9aa0ad;
  margin-bottom: 14px;
}

.about-duties__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-duties__col {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
}

.about-duties__col h3 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--h1b-ink);
  margin-bottom: 10px;
}

.about-duties__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-duties__col li {
  font-size: 0.8125rem;
  color: var(--h1b-muted);
}

.about-leadership {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-leader__photo {
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  background: #e2e0dc;
  border: 1px dashed #c6c2bb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  overflow: hidden;
}

.about-leader__photo:has(img) {
  border: none;
  background: #d8d5d0;
}

.about-leader__photo .ph-thin {
  font-size: 1.75rem;
  color: #a8a29a;
}

.about-leader__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: inherit;
  display: block;
}

.about-leader__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--h1b-ink);
  margin-bottom: 2px;
}

.about-leader__role {
  font-size: 0.8125rem;
  color: var(--h1b-muted);
  margin-bottom: 8px;
}

.about-leader__linkedin {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #009c9c;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-leader__linkedin:hover {
  opacity: 0.85;
}

.about-cta {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  text-align: center;
  background: var(--h1b-ink);
}

.about-cta__bg {
  position: absolute;
  inset: 0;
  background: url('/assets/product/practitioners.webp?v=4') 50% 42% / cover
    no-repeat;
  filter: saturate(0.5) contrast(1.04);
}

.about-cta__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(52, 55, 64, 0.62) 0%,
    rgba(52, 55, 64, 0.86) 62%,
    rgba(52, 55, 64, 0.95) 100%
  );
  mix-blend-mode: multiply;
}

.about-cta__inner {
  position: relative;
  z-index: 1;
}

.about-cta__title {
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* ============================================================
   Contact
   ============================================================ */

.contact-hero {
  background: var(--h1b-ink);
  padding: 72px 0 64px;
}

.contact-hero .pp-hero__title {
  max-width: 18ch;
}

.contact-hero__lede {
  max-width: 36rem;
  margin-top: 12px;
}

.contact-body {
  padding-top: 64px;
  padding-bottom: 80px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field__label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--h1b-ink);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dcd9d3;
  border-radius: 8px;
  background: #f7f7f6;
  color: var(--h1b-ink);
  font: inherit;
  font-size: 0.9375rem;
  line-height: 1.4;
  padding: 12px 14px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: 2px solid rgba(162, 255, 200, 0.7);
  outline-offset: 1px;
  border-color: #a8a29a;
  background: #fff;
}

.contact-field textarea::placeholder {
  color: #b0aca5;
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

@media (max-width: 479px) {
  .contact-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form__actions > * {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.contact-form__demo {
  border: 1px solid var(--h1b-ink);
  color: var(--h1b-ink);
  background: transparent;
}

.contact-form__demo:hover {
  opacity: 0.85;
}

.contact-form__status {
  min-height: 1.25rem;
  margin: 0;
  font-size: 0.875rem;
  color: var(--h1b-muted);
}

.contact-form__status.form-status--success {
  color: #1f6b45;
}

.contact-form__status.form-status--error {
  color: #a33b2b;
}

.contact-form__status.form-status--pending {
  color: var(--h1b-muted);
}

.contact-direct__kicker {
  font-family: var(--h1b-mono);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: #a8a29a;
  margin: 0 0 14px;
}

.contact-direct__block {
  margin-bottom: 18px;
}

.contact-direct__title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--h1b-ink);
  margin: 0 0 4px;
}

.contact-direct__link {
  font-weight: 500;
  font-size: 0.9375rem;
  color: #2f5d8a;
  text-decoration: none;
}

.contact-direct__link:hover {
  text-decoration: underline;
}

.contact-direct__divider {
  height: 1px;
  background: #e2e0dc;
  margin: 22px 0 18px;
}

.contact-direct__address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--h1b-muted);
}

.h1b-header__contact.is-current {
  box-shadow: 0 0 0 1.5px var(--h1b-accent);
}

@media (max-width: 900px) {
  .contact-layout,
  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding: 56px 0 48px;
  }
}

@media (max-width: 900px) {
  .about-hero__grid,
  .about-origin-grid,
  .about-stats,
  .about-quotes,
  .about-partners,
  .about-leadership {
    grid-template-columns: 1fr;
  }

  .about-trusted {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-trusted__logos {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-leadership {
    grid-template-columns: repeat(2, 1fr);
  }
}
