/* =========================================================
   PartnerBridge: How We Work
   Production CSS
   ========================================================= */

/* Page shell */
.pb-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 5%, rgba(212, 82, 213, 0.13), transparent 26rem),
    radial-gradient(circle at 94% 12%, rgba(255, 121, 26, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
}

.pb-container {
  width: min(var(--pb-max), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================================================
   Top nav
   ========================================================= */

.pb-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(1, 123, 160, 0.12);
  transition: box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.pb-topbar.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(1, 123, 160, 0.18);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.pb-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.pb-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.pb-logo {
  display: block;
  width: 225px;
  max-width: 46vw;
  height: auto;
}

.pb-navlinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px;
  border: 2px solid rgba(1, 123, 160, 0.16);
  border-radius: 999px;
  background: var(--pb-white);
  box-shadow: 4px 4px 0 rgba(212, 82, 213, 0.12);
}

.pb-nav-item {
  position: relative;
}

.pb-nav-main {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--pb-ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.pb-has-menu > .pb-nav-main::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.68;
}

.pb-nav-main:hover,
.pb-nav-item:focus-within > .pb-nav-main,
.pb-nav-item:hover > .pb-nav-main {
  color: var(--pb-white);
  background: var(--pb-ocean-gradient);
}

.pb-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 242px;
  padding: 10px;
  border: 2px solid rgba(1, 123, 160, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 8px 8px 0 rgba(212, 82, 213, 0.14), 0 20px 50px rgba(0, 0, 0, 0.10);
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.pb-dropdown::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.pb-nav-item:hover .pb-dropdown,
.pb-nav-item:focus-within .pb-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.pb-dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--pb-ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.pb-dropdown a:hover,
.pb-dropdown a:focus {
  color: var(--pb-blue);
  background: rgba(1, 123, 160, 0.08);
  outline: none;
}

.pb-dropdown .pb-sub-link {
  margin-left: 10px;
  padding-left: 18px;
  color: var(--pb-muted);
  border-left: 2px solid rgba(1, 123, 160, 0.14);
  font-size: 13px;
}

.pb-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.pb-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 60px; padding: 0 18px; border-radius: 999px; border: 2px solid transparent; font-size: 20px; font-weight: 900; text-decoration: none; box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.12); transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease; cursor: pointer; }
    .pb-btn:hover { transform: translate(-1px, -1px); box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.14); }
    .pb-btn-primary { color: #fff; background: var(--pb-gradient); border-color: rgba(0, 0, 0, 0.07); }
    .pb-btn-ghost { color: var(--pb-blue); background: #fff; border-color: rgba(1, 123, 160, 0.22); box-shadow: none; }
    
.pb-btn-light {
  color: var(--pb-blue);
  background: var(--pb-white);
  border-color: rgba(255, 255, 255, 0.2);
}

.pb-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(1, 123, 160, 0.20);
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  cursor: pointer;
}

.pb-menu-btn span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--pb-ink);
  border-radius: 999px;
}

    .pb-mobile-panel {
      display: none;
      padding: 0 0 18px;
    }

    .pb-mobile-panel a {
      display: block;
      padding: 14px 0;
      font-weight: 850;
      text-decoration: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .pb-mobile-panel .pb-btn { margin-top: 14px; width: 100%; text-align: center; }

    .pb-mobile-group {
      padding: 10px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .pb-mobile-group strong {
      display: block;
      padding: 8px 0 4px;
      color: var(--pb-blue);
      font-size: 13px;
      font-weight: 950;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .pb-mobile-group a {
      padding: 10px 0 10px 14px;
      border-bottom: 0;
      color: var(--pb-ink);
      font-weight: 820;
    }

/* =========================================================
   Shared content styles
   ========================================================= */

.pb-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 2px solid rgba(1, 123, 160, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--pb-pink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(212, 82, 213, 0.10);
}

.pb-gradient-text {
  background: var(--pb-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   How We Work hero: partner motion machine
   ========================================================= */

.pb-hero.pb-how-hero {
  position: relative;
  padding: 82px 0 86px;
  overflow: hidden;
  background:
    linear-gradient(rgba(1, 123, 160, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 123, 160, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 9% 20%, rgba(1, 123, 160, 0.13), transparent 25rem),
    radial-gradient(circle at 92% 24%, rgba(255, 121, 26, 0.11), transparent 26rem),
    #ffffff;
  background-size: 32px 32px, 32px 32px, auto, auto, auto;
  border-bottom: 1px solid rgba(1, 123, 160, 0.10);
}

.pb-how-hero::before {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -28px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  opacity: 0.72;
  background-image:
    linear-gradient(45deg, rgba(1, 123, 160, 0.12) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(1, 123, 160, 0.12) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(1, 123, 160, 0.12) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(1, 123, 160, 0.12) 75%);
  background-size: 22px 22px;
  background-position: 0 0, 0 11px, 11px -11px, -11px 0;
  z-index: 0;
}

.pb-how-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.pb-how-hero-copy {
  align-self: center;
}

.pb-how-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  padding: 10px 16px;
  border: 3px solid rgba(21, 49, 58, 0.88);
  border-radius: 18px 18px 18px 4px;
  background: #ffffff;
  box-shadow:
    7px 7px 0 rgba(212, 82, 213, 0.15),
    0 14px 30px rgba(0, 0, 0, 0.06);
  color: var(--pb-blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pb-how-kicker span {
  display: block;
  width: 38px;
  height: 7px;
  border-radius: 999px;
  background: var(--pb-gradient);
}

.pb-how-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--pb-ink);
  font-size: clamp(48px, 6.4vw, 86px);
  line-height: 0.91;
  letter-spacing: -0.075em;
  font-weight: 950;
  overflow: visible;
}

.pb-how-hero-copy h1 span {
  display: block;
  padding-bottom: 0.08em;
  background: var(--pb-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pb-how-subtitle {
  position: relative;
  max-width: 690px;
  margin: 28px 0 0;
  padding: 22px 26px 22px 34px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(1, 123, 160, 0.07), rgba(212, 82, 213, 0.045)),
    rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(1, 123, 160, 0.16);
  box-shadow:
    7px 7px 0 rgba(255, 121, 26, 0.10),
    0 16px 34px rgba(0, 0, 0, 0.05);
  color: #40565D;
  font-size: clamp(20px, 1.8vw, 23px);
  line-height: 1.35;
  font-weight: 720;
  letter-spacing: -0.035em;
}

.pb-how-subtitle::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  bottom: 18px;
  width: 6px;
  border-radius: 999px;
  background: var(--pb-gradient);
}

.pb-how-hero-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 690px;
  margin-top: 24px;
}

.pb-how-hero-actions a {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 2px solid rgba(1, 123, 160, 0.14);
  box-shadow: 4px 4px 0 rgba(255, 121, 26, 0.10);
  color: var(--pb-ink);
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
}

.pb-how-hero-actions a:hover {
  color: var(--pb-blue);
}

/* Motion machine object */

.pb-motion-machine {
  position: relative;
  width: 100%;
  max-width: 650px;
  justify-self: end;
  align-self: center;
  transform: rotate(1deg);
}

.pb-motion-shell {
  position: relative;
  min-height: 475px;
  padding: 30px 32px 32px;
  border: 4px solid rgba(21, 49, 58, 0.94);
  border-radius: 28px;
  background:
    linear-gradient(rgba(1, 123, 160, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 123, 160, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 16% 16%, rgba(238, 227, 88, 0.22), transparent 13rem),
    radial-gradient(circle at 88% 84%, rgba(255, 121, 26, 0.14), transparent 15rem),
    #fffdf5;
  background-size: 22px 22px, 22px 22px, auto, auto, auto;
  box-shadow:
    12px 12px 0 rgba(212, 82, 213, 0.16),
    0 24px 55px rgba(0, 0, 0, 0.10);
  overflow: hidden;
}

.pb-motion-shell::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 24px;
  height: 54px;
  border-radius: 18px 18px 8px 8px;
  background: #172b34;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    5px 5px 0 rgba(255, 121, 26, 0.10);
  z-index: 0;
}

.pb-motion-lights {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  margin: 4px 0 32px 4px;
}

.pb-motion-lights span {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: var(--pb-yellow);
}

.pb-motion-lights span:nth-child(2) {
  background: var(--pb-orange);
}

.pb-motion-lights span:nth-child(3) {
  background: var(--pb-pink);
}

.pb-motion-header {
  position: relative;
  z-index: 2;
  padding: 22px 24px;
  border: 3px solid rgba(21, 49, 58, 0.86);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(1, 123, 160, 0.08), rgba(212, 82, 213, 0.045)),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    7px 7px 0 rgba(255, 121, 26, 0.10),
    0 16px 30px rgba(0, 0, 0, 0.06);
  transform: rotate(-1deg);
}

.pb-motion-header small {
  display: block;
  margin-bottom: 8px;
  color: var(--pb-pink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pb-motion-header strong {
  display: block;
  max-width: 430px;
  color: var(--pb-ink);
  font-size: clamp(31px, 3.3vw, 46px);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.pb-motion-inputs {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 8px 20px;
}

.pb-motion-inputs span {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 8px 10px;
  border: 3px solid rgba(21, 49, 58, 0.84);
  border-radius: 999px;
  background: #ffffff;
  color: var(--pb-blue);
  font-size: 11px;
  line-height: 1.05;
  text-align: center;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(212, 82, 213, 0.11);
}

.pb-motion-inputs span:nth-child(2) {
  background: var(--pb-yellow);
  color: var(--pb-ink);
}

.pb-motion-track {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  border: 3px solid rgba(21, 49, 58, 0.90);
  border-radius: 22px;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.05) 0 2px,
      transparent 2px 8px
    ),
    #172b34;
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.08),
    6px 6px 0 rgba(212, 82, 213, 0.12);
}

.pb-motion-track::before {
  display: none;
}

.pb-motion-stage {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 82px;
  padding: 10px 6px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  text-align: center;
}

.pb-motion-stage b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--pb-orange);
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.pb-motion-stage span {
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  white-space: normal;
}

.pb-motion-stage.is-active {
  background: var(--pb-gradient);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.10);
}

.pb-motion-stage.is-active b {
  color: var(--pb-pink);
}

.pb-motion-output {
  position: relative;
  z-index: 3;
  margin: 22px 28px 0;
  padding: 18px 20px;
  border: 3px solid rgba(21, 49, 58, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    6px 6px 0 rgba(255, 121, 26, 0.10),
    0 14px 28px rgba(0, 0, 0, 0.06);
}

.pb-motion-output small {
  display: block;
  margin-bottom: 6px;
  color: var(--pb-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pb-motion-output strong {
  display: block;
  color: var(--pb-ink);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 950;
}

.pb-motion-output p {
  margin: 7px 0 0;
  color: #40565D;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 760;
}

.pb-motion-stamp {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 4;
  padding: 12px 18px;
  border: 3px solid rgba(21, 49, 58, 0.86);
  border-radius: 999px;
  background: var(--pb-gradient);
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transform: rotate(-8deg);
  box-shadow: 5px 5px 0 rgba(1, 123, 160, 0.14);
}

/* =========================================================
   Sections
   ========================================================= */

.pb-section {
  padding: 78px 0;
}

.pb-section-soft {
  background:
    linear-gradient(180deg, rgba(245, 245, 247, 0.88), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 92% 20%, rgba(255, 121, 26, 0.10), transparent 20rem);
  border-top: 1px solid rgba(1, 123, 160, 0.08);
  border-bottom: 1px solid rgba(1, 123, 160, 0.08);
}

.pb-section-head {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 32px;
}

.pb-section-head.center {
  display: block;
  max-width: 820px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pb-section h2 {
  max-width: 840px;
  margin: 0;
  color: var(--pb-ink);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.pb-section-head.center h2 {
  margin-left: auto;
  margin-right: auto;
}

.pb-section-intro {
  margin: 15px 0 0;
  color: #40565D;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 620;
}

.pb-prose {
  color: #40565D;
  font-size: 18px;
  line-height: 1.68;
  font-weight: 560;
}

.pb-prose p {
  margin: 0 0 18px;
}

/* =========================================================
   Process cards
   ========================================================= */

.pb-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pb-process-card {
  min-height: 330px;
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  border: 3px solid rgba(21, 49, 58, 0.84);
  box-shadow: 8px 8px 0 rgba(9, 152, 143, 0.13), 0 18px 42px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.pb-process-number {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--pb-gradient);
  box-shadow: 4px 4px 0 rgba(1, 123, 160, 0.16);
  font-size: 14px;
  font-weight: 950;
  margin-bottom: 24px;
}

.pb-process-card h3 {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.pb-process-card p {
  margin: 0 0 20px;
  color: var(--pb-muted);
  font-size: 20px;
  line-height: 1.48;
  font-weight: 600;
}

.pb-process-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: grid;
  gap: 10px;
}

.pb-process-list li {
  position: relative;
  padding-left: 22px;
  color: #40565D;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 850;
}

.pb-process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pb-gradient);
  box-shadow: 3px 3px 0 rgba(1, 123, 160, 0.14);
}

/* =========================================================
   Product cards
   ========================================================= */

.pb-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pb-product-card {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 2px solid rgba(1, 123, 160, 0.15);
  box-shadow: var(--pb-soft-shadow);
}

.pb-product-card strong {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(1, 123, 160, 0.09);
  color: var(--pb-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.pb-product-card h3 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.pb-product-card p {
  margin: 0 0 20px;
  color: var(--pb-muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 680;
}

.pb-product-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.pb-product-card li {
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(245, 245, 247, 0.86);
  color: #40565D;
  font-size: 14px;
  font-weight: 820;
  line-height: 1.32;
}

/* =========================================================
   What changes and proof panel
   ========================================================= */

.pb-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.pb-readable-card {
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 2px solid rgba(1, 123, 160, 0.15);
  box-shadow: var(--pb-soft-shadow);
}

.pb-readable-card h3 {
  margin-bottom: 14px;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.05em;
}

    .pb-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 50px;
      justify-content: center;
    }


    .pb-quick-proof {`
      gap: 10px;
      width: 100%;
    }

    .pb-proof-pill {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 10px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      font-size: 14px;
      font-weight: 900;
      box-shadow: 3px 3px 0 rgba(255, 121, 26, 0.12);
      width: 32%;
      justify-content: center;
    }

    .pb-proof-pill::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--pb-gradient);
    }

.pb-readable-card p {
  color: #40565D;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 620;
}

.pb-proof-panel {
  padding: 28px;
  border-radius: 24px;
  color: #fff;
  background: var(--pb-ocean-gradient);
  box-shadow: 8px 8px 0 rgba(212, 82, 213, 0.15);
}

.pb-proof-panel small {
  display: block;
  margin-bottom: 12px;
  color: var(--pb-yellow);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pb-proof-panel b {
  display: block;
  max-width: 520px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.pb-proof-panel p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 720;
}

.pb-proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.pb-proof-metrics div {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.pb-proof-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 950;
  margin-bottom: 8px;
}

.pb-proof-metrics strong {
  display: block;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.04em;
}

/* =========================================================
   Final CTA
   ========================================================= */

.pb-final {
  padding: 72px 0;
  background: linear-gradient(135deg, rgba(1, 123, 160, 0.22), rgba(0, 0, 0, 0)), var(--pb-gradient);
}

.pb-final-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.pb-final h2 {
  font-size: clamp(33px, 4.4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.052em;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--pb-white);
}

.pb-final p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  font-weight: 620;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1080px) {
  .pb-navlinks,
  .pb-actions {
    display: none;
  }
  .pb-mobile-panel.is-open { display: block; }
  .pb-menu-btn {
    display: block;
  }

  .pb-section-head,
  .pb-split,
  .pb-final-inner {
    grid-template-columns: 1fr;
  }

  .pb-process-grid,
  .pb-product-grid,
  .pb-proof-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .pb-how-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pb-how-path div:not(:last-child)::after {
    display: none;
  }
  
  .pb-how-hero-grid {
    grid-template-columns: 1fr;
  }

  .pb-motion-machine {
    justify-self: start;
    max-width: 680px;
    transform: none;
  }
}

@media (max-width: 720px) {
  .pb-container {
    width: min(100% - 32px, var(--pb-max));
  }
  .pb-mobile-panel.is-open { display: block; }

  .pb-logo {
    width: 210px;
    max-width: 62vw;
  }

  .pb-nav {
    min-height: 74px;
    gap: 12px;
  }

  .pb-menu-btn {
    display: block;
    flex: 0 0 auto;
  }

  .pb-hero.pb-how-hero {
    padding: 34px 0 48px;
  }

  .pb-how-hero-shell {
    max-width: none;
  }

  .pb-how-tab {
    width: fit-content;
    margin: 0 0 28px 0;
    padding: 14px 18px;
    border-radius: 16px 16px 16px 4px;
    box-shadow:
      6px 6px 0 rgba(212, 82, 213, 0.15),
      0 12px 24px rgba(0, 0, 0, 0.05);
  }

  .pb-how-tab span {
    gap: 11px;
    font-size: 12px;
    letter-spacing: 0.15em;
  }

  .pb-how-tab span::before {
    width: 28px;
    height: 5px;
  }

  .pb-hero.pb-how-hero {
    padding: 52px 0 56px;
  }

  .pb-how-hero-grid {
    gap: 34px;
  }

  .pb-how-kicker {
    margin-bottom: 24px;
    padding: 13px 15px;
    font-size: 11px;
    letter-spacing: 0.10em;
  }

  .pb-how-kicker span {
    width: 28px;
    height: 5px;
  }

  .pb-how-hero-copy h1 {
    font-size: clamp(44px, 14vw, 62px);
    line-height: 0.94;
    letter-spacing: -0.075em;
  }

  .pb-how-subtitle {
    margin-top: 26px;
    padding: 20px 20px 20px 30px;
    font-size: 19px;
    line-height: 1.34;
    font-weight: 720;
  }

  .pb-how-subtitle::before {
    left: 14px;
    top: 16px;
    bottom: 16px;
    width: 5px;
  }

  .pb-how-hero-actions {
    grid-template-columns: 1fr;
  }

  .pb-motion-shell {
    min-height: auto;
    padding: 26px 20px 24px;
    border-radius: 24px;
  }

  .pb-motion-shell::before {
    left: 18px;
    right: 18px;
    top: 18px;
    height: 48px;
  }

  .pb-motion-lights {
    margin-bottom: 26px;
  }

  .pb-motion-header {
    padding: 20px;
    transform: none;
  }

  .pb-motion-header strong {
    font-size: 34px;
  }

  .pb-motion-inputs {
    grid-template-columns: 1fr;
    margin: 20px 0 18px;
  }

  .pb-motion-track {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  .pb-motion-track::before {
    top: 24px;
    bottom: 24px;
    left: 50%;
    right: auto;
    width: 5px;
    height: auto;
    transform: translateX(-50%);
  }

  .pb-motion-stage {
    min-height: 68px;
    grid-template-columns: 42px 1fr;
    align-items: center;
    text-align: left;
    padding: 12px 14px;
  }

  .pb-motion-stage b {
    margin: 0;
  }

  .pb-motion-stage span {
    font-size: 13px;
  }

  .pb-motion-output {
    margin: 20px 0 0;
  }

  .pb-motion-stamp {
    position: relative;
    right: auto;
    bottom: auto;
    width: fit-content;
    margin: 18px 0 0 auto;
    transform: rotate(-4deg);
  }

  .pb-process-grid,
  .pb-product-grid,
  .pb-proof-metrics
  {
    grid-template-columns: 1fr;
  }

  .pb-section {
    padding: 56px 0;
  }

  .pb-section h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .pb-section-intro {
    font-size: 17px;
  }

  .pb-final-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
}