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

    .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-bottom-color: rgba(1, 123, 160, 0.18);
      box-shadow: 0 14px 34px rgba(1, 123, 160, 0.10);
    }

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

    .pb-brand {
      display: inline-flex;
      align-items: center;
      color: var(--pb-blue);
      text-decoration: none;
      line-height: 1;
    }

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

    .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;
      cursor: default;
      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-ink); background: #fff; 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-btn-ocean {
      color: var(--pb-white);
      background: var(--pb-ocean-gradient);
      box-shadow: 4px 4px 0 rgba(212, 82, 213, 0.16);
    }

    .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;
    }

    .pb-hero {
      position: relative;
      padding: 76px 0 62px;
    }

    .pb-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.34;
      background-image:
        linear-gradient(rgba(1, 123, 160, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 123, 160, 0.14) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
      pointer-events: none;
    }

    .pb-hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
      align-items: center;
      gap: 58px;
    }

    .pb-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: var(--pb-blue);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .pb-kicker::before {
      content: "";
      width: 34px;
      height: 5px;
      border-radius: 999px;
      background: var(--pb-gradient);
    }

    h1, h2, h3, p { margin-top: 0; }

    h1 {
      max-width: 790px;
      margin-bottom: 20px;
      color: var(--pb-black);
      font-size: clamp(44px, 6vw, 70px);
      line-height: 0.98;
      letter-spacing: -0.06em;
      font-weight: 900;
    }

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

    .pb-hero-subtitle::before { content: ""; position: absolute; left: 16px; top: 18px; bottom: 18px; width: 6px; border-radius: 999px; background: var(--pb-gradient); }
    .pb-hero-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;margin-bottom: 5%; }
    .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-hero-card-wrap {
      position: relative;
      isolation: isolate;
    }

    .pb-hero-card-wrap::before,
    .pb-hero-card-wrap::after {
      content: "";
      position: absolute;
      z-index: -1;
      opacity: 0.86;
    }

    .pb-hero-card-wrap::before {
      width: 150px;
      height: 150px;
      right: -38px;
      top: -34px;
      background: var(--pb-gradient);
      clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    }

    .pb-hero-card-wrap::after {
      width: 180px;
      height: 180px;
      left: -38px;
      bottom: -38px;
      border-radius: 50%;
      background: rgba(238, 227, 88, 0.45);
    }

    .pb-hero-card {
      padding: 20px;
      border: 3px solid rgba(21, 49, 58, 0.88);
      border-radius: var(--pb-radius-lg);
      background: rgba(255, 255, 255, 0.94);
      box-shadow: var(--pb-shadow);
    }

    .pb-window-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin: -20px -20px 18px;
      padding: 13px 18px;
      border-bottom: 2px solid rgba(0, 0, 0, 0.08);
      border-radius: var(--pb-radius-lg) var(--pb-radius-lg) 0 0;
      background: var(--pb-paper);
    }

    .pb-dots {
      display: flex;
      gap: 7px;
    }

    .pb-dots i {
      width: 11px;
      height: 11px;
      border-radius: 999px;
      background: var(--pb-pink);
      box-shadow: 18px 0 0 var(--pb-orange), 36px 0 0 var(--pb-green);
    }

    .pb-dots i + i { display: none; }

    .pb-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 11px;
      border-radius: 999px;
      background: rgba(9, 152, 143, 0.12);
      color: var(--pb-green);
      font-size: 12px;
      font-weight: 900;
    }

    .pb-status::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--pb-green);
    }

    .pb-score {
      position: relative;
      overflow: hidden;
      padding: 25px;
      border-radius: 18px;
      color: var(--pb-white);
      background: var(--pb-ocean-gradient);
    }

    .pb-score::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.16;
      background-image:
        linear-gradient(45deg, rgba(255, 255, 255, 0.55) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.55) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.55) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.55) 75%);
      background-size: 18px 18px;
      background-position: 0 0, 0 9px, 9px -9px, -9px 0;
    }

    .pb-score-label,
    .pb-score-number,
    .pb-score p { position: relative; z-index: 1; }

    .pb-score-label {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 16px;
      color: rgba(255, 255, 255, 0.88);
      font-weight: 900;
      font-size: 14px;
    }

    .pb-score-number {
      display: flex;
      align-items: baseline;
      gap: 7px;
      margin-bottom: 12px;
      font-size: clamp(70px, 10vw, 96px);
      line-height: 0.86;
      letter-spacing: -0.07em;
      font-weight: 900;
    }

    .pb-score-number small {
      font-size: 22px;
      letter-spacing: -0.02em;
      opacity: 0.9;
    }

    .pb-score p {
      max-width: 370px;
      margin: 0;
      color: rgba(255, 255, 255, 0.88);
      font-size: 16px;
      line-height: 1.4;
    }

    .pb-teaser-metrics {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      margin-top: 17px;
    }

    .pb-teaser-metrics span {
      display: block;
      padding: 10px 9px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 9px;
      background: rgba(255, 255, 255, 0.13);
      color: rgba(255, 255, 255, 0.84);
      font-size: 11px;
      font-weight: 800;
      line-height: 1.1;
    }

    .pb-teaser-metrics b {
      display: block;
      margin-bottom: 4px;
      color: #ffffff;
      font-size: 18px;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .pb-output-card {
      background:
        linear-gradient(135deg, rgba(245, 245, 247, 0.98), rgba(255, 255, 255, 0.94));
    }


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

    .pb-mini {
      min-height: 104px;
      padding: 15px;
      border: 2px solid rgba(0, 0, 0, 0.08);
      border-radius: var(--pb-radius);
      background: var(--pb-white);
      box-shadow: 4px 4px 0 rgba(1, 123, 160, 0.09);
    }

    .pb-mini b {
      display: block;
      color: var(--pb-black);
      font-size: 18px;
      line-height: 1.08;
      letter-spacing: -0.03em;
    }

    .pb-mini span {
      display: block;
      margin-top: 9px;
      color: var(--pb-muted);
      font-size: 12px;
      font-weight: 800;
      line-height: 1.3;
    }

    .pb-connection-card {
      display: grid;
      grid-template-columns: 1fr 46px 1fr;
      align-items: center;
      gap: 10px;
      margin-top: 12px;
      padding: 16px;
      border: 2px solid rgba(0, 0, 0, 0.07);
      border-radius: var(--pb-radius);
      background: var(--pb-paper);
    }

    .pb-chip-label {
      display: block;
      margin-bottom: 4px;
      color: var(--pb-blue);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .pb-connection-card strong {
      display: block;
      color: var(--pb-black);
      font-size: 14px;
      line-height: 1.18;
    }

    .pb-arrow {
      height: 3px;
      background: var(--pb-gradient);
      position: relative;
      border-radius: 999px;
      margin-right: 50%;
    }

    .pb-arrow::after {
      content: "";
      position: absolute;
      right: -1px;
      top: -5px;
      width: 11px;
      height: 11px;
      border-top: 3px solid var(--pb-orange);
      border-right: 3px solid var(--pb-orange);
      transform: rotate(45deg);
    }

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

    .pb-section-soft {
      background:
        linear-gradient(135deg, rgba(1, 123, 160, 0.08) 0%, rgba(245, 245, 247, 0.9) 42%, rgba(212, 82, 213, 0.08) 100%),
        var(--pb-paper);
    }

    .pb-section-dark {
      color: var(--pb-white);
      background:
        radial-gradient(circle at 14% 20%, rgba(212, 82, 213, 0.32), transparent 22rem),
        radial-gradient(circle at 88% 8%, rgba(255, 121, 26, 0.28), transparent 22rem),
        var(--pb-blue);
    }

    .pb-section-head {
      max-width: 740px;
      margin-bottom: 32px;
    }

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

    .pb-label {
      margin-bottom: 10px;
      color: var(--pb-blue);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .pb-section-dark .pb-label { color: var(--pb-yellow); }

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

    .pb-section-dark h2,
    .pb-section-dark h3 { color: var(--pb-white); }

    .pb-section-head p {
      margin-bottom: 0;
      color: var(--pb-muted);
      font-size: 18px;
      line-height: 1.46;
    }

    .pb-section-dark .pb-section-head p { color: rgba(255, 255, 255, 0.82); }

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

    .pb-lane-card,
    .pb-product,
    .pb-audience-card {
      border: 2px solid rgba(0, 0, 0, 0.07);
      border-radius: var(--pb-radius-lg);
      background: var(--pb-white);
      box-shadow: var(--pb-soft-shadow);
    }

    .pb-lane-card {
      min-height: 214px;
      padding: 26px;
      position: relative;
      overflow: hidden;
    }

    .pb-lane-card::after {
      content: "";
      position: absolute;
      right: 18px;
      bottom: 18px;
      width: 54px;
      height: 54px;
      opacity: 0.16;
      background: var(--pb-gradient);
      clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    }

    .pb-icon {
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      margin-bottom: 20px;
      border-radius: 14px;
      color: var(--pb-white);
      background: var(--pb-gradient);
      font-size: 20px;
      font-weight: 900;
      box-shadow: 4px 4px 0 rgba(1, 123, 160, 0.12);
    }

    .pb-lane-card:nth-child(2) .pb-icon { background: var(--pb-ocean-gradient); }
    .pb-lane-card:nth-child(3) .pb-icon { background: linear-gradient(135deg, var(--pb-purple), var(--pb-pink)); }

    .pb-lane-card h3,
    .pb-product h3 {
      margin-bottom: 10px;
      color: var(--pb-black);
      font-size: 25px;
      line-height: 1.08;
      letter-spacing: -0.04em;
      font-weight: 900;
    }

    .pb-lane-card p,
    .pb-product p,
    .pb-audience-card span {
      margin-bottom: 0;
      color: var(--pb-muted);
      font-size: 16px;
    }

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

    .pb-product {
      display: flex;
      flex-direction: column;
      min-height: 312px;
      padding: 28px;
      box-shadow: var(--pb-shadow);
    }

    .pb-product-eyebrow {
      width: max-content;
      margin-bottom: 18px;
      padding: 7px 10px;
      border-radius: 999px;
      color: var(--pb-white);
      background: var(--pb-ocean-gradient);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .pb-product:nth-child(2) .pb-product-eyebrow { background: var(--pb-gradient); }
    .pb-product:nth-child(3) .pb-product-eyebrow { background: linear-gradient(135deg, var(--pb-purple), var(--pb-blue)); }

    .pb-product h3 {
      font-size: 34px;
      letter-spacing: -0.055em;
    }

    .pb-tiny-list {
      display: grid;
      gap: 11px;
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
    }

    .pb-tiny-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--pb-ink);
      font-size: 15px;
      font-weight: 850;
    }

    .pb-tiny-list li::before {
      content: "";
      width: 9px;
      height: 9px;
      flex: 0 0 auto;
      border-radius: 999px;
      background: var(--pb-orange);
    }

    .pb-product a {
      margin-top: auto;
      padding-top: 24px;
      color: var(--pb-blue);
      font-weight: 900;
      text-decoration: none;
    }

    .pb-process {
      max-width: 940px;
      margin: 0 auto;
      border: 2px solid rgba(0, 0, 0, 0.08);
      border-radius: var(--pb-radius-lg);
      overflow: hidden;
      background: var(--pb-white);
      box-shadow: var(--pb-shadow);
    }

    .pb-process-row {
      display: grid;
      grid-template-columns: 76px 1fr 148px;
      align-items: center;
      gap: 18px;
      padding: 18px 22px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    }

    .pb-process-row:last-child { border-bottom: 0; }

    .pb-step-num {
      display: grid;
      place-items: center;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      color: var(--pb-white);
      background: var(--pb-gradient);
      font-weight: 900;
      box-shadow: 3px 3px 0 rgba(1, 123, 160, 0.16);
    }

    .pb-process-row h3 {
      margin-bottom: 3px;
      color: var(--pb-black);
      font-size: 21px;
      letter-spacing: -0.03em;
      font-weight: 900;
    }

    .pb-process-row p {
      margin: 0;
      color: var(--pb-muted);
      font-size: 15px;
    }

    .pb-step-tag {
      justify-self: end;
      padding: 7px 10px;
      border-radius: 999px;
      color: var(--pb-blue);
      background: rgba(1, 123, 160, 0.08);
      font-size: 13px;
      font-weight: 900;
      white-space: nowrap;
    }

    .pb-impact-grid {
      display: grid;
      grid-template-columns: 0.88fr 1.12fr;
      gap: 34px;
      align-items: center;
    }

    .pb-impact-copy p {
      color: rgba(255, 255, 255, 0.84);
      font-size: 18px;
    }

    .pb-impact-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .pb-impact-card {
      padding: 24px;
      border: 2px solid rgba(255, 255, 255, 0.16);
      border-radius: var(--pb-radius-lg);
      background: rgba(255, 255, 255, 0.10);
    }

    .pb-impact-card strong {
      display: block;
      margin-bottom: 8px;
      color: var(--pb-white);
      font-size: 34px;
      line-height: 1;
      letter-spacing: -0.055em;
      font-weight: 900;
    }

    .pb-impact-card span {
      display: block;
      color: rgba(255, 255, 255, 0.76);
      font-size: 15px;
      font-weight: 700;
    }

    .pb-quote {
      margin-top: 22px;
      padding: 22px;
      border-left: 5px solid var(--pb-yellow);
      border-radius: 0 var(--pb-radius-lg) var(--pb-radius-lg) 0;
      background: rgba(255, 255, 255, 0.10);
    }

    .pb-quote p {
      margin-bottom: 9px;
      color: var(--pb-white);
      font-size: 19px;
      line-height: 1.35;
      font-weight: 850;
    }

    .pb-quote cite {
      color: rgba(255, 255, 255, 0.72);
      font-style: normal;
      font-weight: 700;
    }

    .pb-proof-studio {
      position: relative;
      overflow: hidden;
    }

    .pb-proof-studio::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.12;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
      background-size: 34px 34px;
      pointer-events: none;
    }

    .pb-proof-shell {
      position: relative;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 42px;
      align-items: center;
    }

    .pb-proof-copy h2 {
      max-width: 560px;
      margin-bottom: 18px;
    }

    .pb-proof-copy p {
      max-width: 520px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 18px;
      line-height: 1.5;
    }

    .pb-proof-link {
      display: inline-flex;
      align-items: center;
      margin-top: 20px;
      padding: 13px 16px;
      border: 2px solid rgba(255, 255, 255, 0.24);
      border-radius: 999px;
      color: var(--pb-white);
      background: rgba(255, 255, 255, 0.10);
      font-weight: 900;
      text-decoration: none;
      box-shadow: 4px 4px 0 rgba(255, 121, 26, 0.22);
    }

    .pb-proof-board {
      overflow: hidden;
      border: 2px solid rgba(255, 255, 255, 0.20);
      border-radius: 28px;
      background: rgba(245, 245, 247, 0.94);
      box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.10);
    }

    .pb-proof-windowbar {
      display: flex;
      align-items: center;
      gap: 8px;
      min-height: 46px;
      padding: 0 18px;
      border-bottom: 2px solid rgba(0, 0, 0, 0.08);
      background: #f2f2f4;
    }

    .pb-proof-windowbar span {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: var(--pb-pink);
    }

    .pb-proof-windowbar span:nth-child(2) { background: var(--pb-orange); }
    .pb-proof-windowbar span:nth-child(3) { background: var(--pb-green); }

    .pb-proof-windowbar b {
      margin-left: auto;
      color: var(--pb-blue);
      font-size: 13px;
      letter-spacing: 0.03em;
    }

    .pb-proof-hero-card {
      margin: 20px;
      padding: 28px;
      border-radius: 22px;
      color: var(--pb-white);
      background:
        linear-gradient(45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.08) 75%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.08) 75%),
        var(--pb-ocean-gradient);
      background-position: 0 0, 10px 10px, 0 0;
      background-size: 20px 20px, 20px 20px, auto;
    }

    .pb-proof-hero-card span {
      display: block;
      margin-bottom: 10px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .pb-proof-hero-card strong {
      display: block;
      color: var(--pb-white);
      font-size: clamp(42px, 5vw, 72px);
      line-height: 0.95;
      letter-spacing: -0.06em;
      font-weight: 900;
    }

    .pb-proof-hero-card p {
      max-width: 420px;
      margin: 14px 0 0;
      color: rgba(255, 255, 255, 0.9);
      font-size: 17px;
      line-height: 1.35;
    }

    .pb-proof-output-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      padding: 0 20px 20px;
    }

    .pb-proof-output-grid article {
      min-height: 118px;
      padding: 16px;
      border: 2px solid rgba(0, 0, 0, 0.08);
      border-radius: 18px;
      background: var(--pb-white);
      box-shadow: 5px 5px 0 rgba(1, 123, 160, 0.10);
    }

    .pb-proof-output-grid b {
      display: block;
      margin-bottom: 8px;
      color: var(--pb-black);
      font-size: 20px;
      line-height: 1.05;
      letter-spacing: -0.04em;
      font-weight: 900;
    }

    .pb-proof-output-grid span {
      display: block;
      color: var(--pb-muted);
      font-size: 13px;
      line-height: 1.35;
      font-weight: 750;
    }

    .pb-proof-stat-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin: 0 20px 20px;
      padding: 12px;
      border: 2px solid rgba(1, 123, 160, 0.12);
      border-radius: 18px;
      background: rgba(1, 123, 160, 0.06);
    }

    .pb-proof-stat-strip div {
      padding: 10px;
    }

    .pb-proof-stat-strip strong {
      display: block;
      color: var(--pb-blue);
      font-size: 22px;
      line-height: 1;
      letter-spacing: -0.04em;
      font-weight: 900;
    }

    .pb-proof-stat-strip span {
      display: block;
      margin-top: 5px;
      color: var(--pb-ink);
      font-size: 12px;
      font-weight: 800;
    }

    .pb-audience {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .pb-audience-card {
      min-height: 156px;
      padding: 22px;
    }

    .pb-audience-card b {
      display: block;
      margin-bottom: 10px;
      color: var(--pb-black);
      font-size: 20px;
      letter-spacing: -0.03em;
    }

    .pb-final {
      padding: 82px 0;
      color: var(--pb-white);
      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;
      align-items: center;
      gap: 30px;
    }

    .pb-final h2 {
      margin-bottom: 12px;
      color: var(--pb-white);
    }

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

    .pb-final .pb-btn {
      color: var(--pb-blue);
      background: var(--pb-white);
      text-align: center;
    }

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

      .pb-hero-grid,
      .pb-impact-grid,
      .pb-proof-shell,
      .pb-final-inner {
        grid-template-columns: 1fr;
      }

      .pb-hero-card-wrap { max-width: 620px; }
      .pb-product-row,
      .pb-three-lane { grid-template-columns: 1fr; }
      .pb-audience { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 680px) {
      .pb-container { width: min(100% - 28px, var(--pb-max)); }
      .pb-nav { min-height: 72px; }
      .pb-logo { width: 188px; max-height: 40px; }
      .pb-hero { padding: 52px 0 44px; }
      h1 { font-size: clamp(41px, 13vw, 58px); }
      .pb-hero-subtitle { font-size: 18px; }
      .pb-mini-grid,
      .pb-impact-cards,
      .pb-audience
      {
        grid-template-columns: 1fr;
      }
      .pb-score { padding: 22px; }
      .pb-connection-card { display:flex; }
      .pb-arrow { width: 42px; ; margin: 10px 0 10px 18px; margin-right: 5%;}
      .pb-process-row { grid-template-columns: 54px 1fr; }
      .pb-step-tag { grid-column: 2; justify-self: start; }
      .pb-proof-output-grid b { display: block; margin-bottom: 8px; color: var(--pb-black); font-size: 18px; line-height: 1.05; letter-spacing: -0.04em; font-weight: 700; }
      .pb-proof-stat-strip strong { display: block; color: var(--pb-blue); font-size: 16px; line-height: 1; letter-spacing: -0.04em; font-weight: 700; }
    }