    .pb-page {
      min-height: 100vh;
      overflow: hidden;
      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;
    }

    .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; 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-final .pb-btn {
      color: var(--pb-blue);
      background: var(--pb-white);
      text-align: center;
    }

    .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-dark { color: #fff; background: var(--pb-ink); border-color: rgba(255, 255, 255, 0.12); }

    .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-mobile-panel.is-open { display: block; }

    .pb-about-pb {
      width: fit-content;
      padding: 10px 16px;
      border: 3px solid rgba(21, 49, 58, 0.90);
      border-radius: 18px 18px 18px 4px;
      background: #ffffff;
      box-shadow:
        8px 8px 0 rgba(212, 82, 213, 0.17),
        0 16px 34px rgba(0, 0, 0, 0.06);
    }
    
    .pb-about-pb span {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: var(--pb-blue);
      font-size: 13px;
      font-weight: 750;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    
    .pb-about-pb span::before {
      content: "";
      width: 38px;
      height: 7px;
      border-radius: 999px;
      background: var(--pb-gradient);
    }

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

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

    .pb-hero::before {
      content: "";
      position: absolute;
      inset: auto -80px 18px auto;
      width: 310px;
      height: 310px;
      background-image:
        linear-gradient(45deg, rgba(1, 123, 160, 0.13) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(1, 123, 160, 0.13) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(1, 123, 160, 0.13) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(1, 123, 160, 0.13) 75%);
      background-size: 22px 22px;
      background-position: 0 0, 0 11px, 11px -11px, -11px 0;
      opacity: 0.9;
      border-radius: 50%;
      z-index: 0;
    }

    .pb-hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 0.94fr 1.06fr;
      gap: 44px;
      align-items: center;
      margin-top: 3%;
    }

    h1, h2, h3, p { margin-top: 0; }
    .pb-hero h1 { max-width: 820px; margin-bottom: 22px; font-size: clamp(48px, 6.8vw, 86px); line-height: 0.93; letter-spacing: -0.065em; font-weight: 950; }
    .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; }
    .pb-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 3%; justify-content: center; }
    .pb-about-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 28px 0 0; max-width: 720px; }
    .pb-about-fact { padding: 14px 14px; border-radius: 14px; background: #fff; border: 2px solid rgba(1, 123, 160, 0.13); box-shadow: 4px 4px 0 rgba(255, 121, 26, 0.11); }
    .pb-about-fact strong { display: block; margin-bottom: 4px; color: var(--pb-ink); font-size: 14px; font-weight: 950; letter-spacing: -0.02em; }
    .pb-about-fact span { color: var(--pb-muted); font-size: 12px; line-height: 1.35; font-weight: 750; }
    .pb-hero-note { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 26px; max-width: 700px; }
    .pb-hero-note span { padding: 13px 12px; border-radius: 14px; background: #fff; box-shadow: 4px 4px 0 rgba(255, 121, 26, 0.11); font-size: 13px; font-weight: 900; text-align: center; }
    .pb-about-card { position: relative; background: #fff; border: 3px solid rgba(21, 49, 58, 0.88); border-radius: 24px; box-shadow: 11px 11px 0 rgba(212, 82, 213, 0.18), 0 24px 55px rgba(0, 0, 0, 0.12); overflow: hidden; }
    .pb-windowbar { min-height: 40px; display: flex; align-items: center; gap: 8px; padding: 0 16px; background: var(--pb-ocean-gradient); color: #fff; font-size: 13px; font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase; }
    .pb-windowbar span { width: 12px; height: 12px; border-radius: 50%; background: var(--pb-yellow); border: 1px solid rgba(0, 0, 0, 0.22);}
    .pb-windowbar span:nth-child(2) { background: var(--pb-orange); }
    .pb-windowbar span:nth-child(3) { background: var(--pb-pink); }
    .pb-windowbar b { margin-left: auto; }

    .pb-about-card-body { padding: 28px; }

    .pb-founder-mini {
      display: grid;
      grid-template-columns: 86px 1fr;
      gap: 18px;
      align-items: center;
      margin-bottom: 24px;
    }

    .pb-avatar {
      width: 86px;
      height: 86px;
      border-radius: 20px;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--pb-gradient);
      font-size: 26px;
      font-weight: 950;
      border: 3px solid rgba(21, 49, 58, 0.90);
      box-shadow: 5px 5px 0 rgba(1, 123, 160, 0.20);
    }

    .pb-founder-mini h2 {
      margin: 0 0 6px;
      font-size: 26px;
      letter-spacing: -0.04em;
      line-height: 1;
    }

    .pb-founder-mini p { margin: 0; color: var(--pb-muted); font-weight: 750; }

    .pb-mini-story {
      padding: 20px;
      border-radius: 18px;
      background:
        linear-gradient(135deg, rgba(1, 123, 160, 0.08), rgba(9, 152, 143, 0.07)),
        #fff;
      border: 2px solid rgba(1, 123, 160, 0.14);
    }

    .pb-mini-story p {
      margin: 0;
      color: #334A51;
      font-size: 17px;
      line-height: 1.58;
      font-weight: 640;
    }

    .pb-section { padding: 74px 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: 900px;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .pb-label {
      display: inline-block;
      margin: 0 0 12px;
      color: var(--pb-pink);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

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

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

    .pb-story-grid {
      display: grid;
      grid-template-columns: 0.78fr 1.22fr;
      gap: 26px;
      align-items: stretch;
    }

    .pb-story-panel,
    .pb-retro-panel,
    .pb-card,
    .pb-team-card,
    .pb-value-card,
    .pb-audience-card {
      background: #fff;
      border: 2px solid rgba(1, 123, 160, 0.15);
      border-radius: var(--pb-radius-lg);
      box-shadow: var(--pb-soft-shadow);
    }

    .pb-story-panel {
      padding: 28px;
      border-color: rgba(21, 49, 58, 0.82);
      box-shadow: 8px 8px 0 rgba(255, 121, 26, 0.16), 0 18px 42px rgba(0, 0, 0, 0.08);
    }

    .pb-story-panel h3 {
      margin-bottom: 14px;
      font-size: 30px;
      line-height: 1.05;
      letter-spacing: -0.045em;
    }

    .pb-story-panel p {
      margin: 0;
      color: #40565D;
      font-size: 17px;
      line-height: 1.6;
      font-weight: 580;
    }

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


    .pb-pain-grid {
      grid-template-columns: 0.72fr 1.28fr;
    }

    .pb-pain-points {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .pb-pain-points .pb-card {
      min-height: 230px;
    }

    .pb-pain-points .pb-card h3 {
      font-size: 20px;
      line-height: 1.05;
    }

    .pb-pain-points .pb-card p {
      font-size: 15px;
      line-height: 1.45;
    }

    .pb-card { padding: 24px; }
    .pb-card .pb-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 10px;
      color: #fff;
      background: var(--pb-ocean-gradient);
      font-size: 13px;
      font-weight: 950;
      box-shadow: 4px 4px 0 rgba(212, 82, 213, 0.16);
      margin-bottom: 18px;
    }
    .pb-card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.08; letter-spacing: -0.035em; }
    .pb-card p { margin: 0; color: var(--pb-muted); font-weight: 620; line-height: 1.52; }

    .pb-belief {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      align-items: center;
    }

    .pb-belief-copy p {
      margin: 16px 0px 16px 0px;
      color: #40565D;
      font-size: 19px;
      line-height: 1.56;
      font-weight: 620;
    }

    .pb-belief-copy p:last-child { margin-bottom: 0; }

    .pb-retro-panel { overflow: hidden; border: 3px solid rgba(21, 49, 58, 0.88); box-shadow: 10px 10px 0 rgba(1, 123, 160, 0.16); }
    .pb-retro-panel-body { padding: 24px; }

    .pb-terminal-lines { display: grid; gap: 12px; }
    .pb-terminal-line {
      display: grid;
      grid-template-columns: 92px 1fr;
      gap: 12px;
      align-items: center;
      padding: 14px;
      border-radius: 14px;
      background: rgba(245, 245, 247, 0.92);
      border: 1px solid rgba(1, 123, 160, 0.12);
    }
    .pb-terminal-line b { color: var(--pb-blue); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }
    .pb-terminal-line span { font-weight: 850; color: var(--pb-ink); }

    .pb-team-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 18px;
    }

    .pb-team-card {
      grid-column: span 4;
      position: relative;
      overflow: hidden;
      padding: 24px;
      min-height: 250px;
      border-color: rgba(1, 123, 160, 0.16);
    }

    .pb-team-card.featured {
      grid-column: span 8;
      display: grid;
      grid-template-columns: 160px 1fr;
      gap: 24px;
      align-items: center;
      border: 3px solid rgba(21, 49, 58, 0.88);
      box-shadow: 10px 10px 0 rgba(212, 82, 213, 0.14), 0 18px 42px rgba(0, 0, 0, 0.08);
    }
    
    .pb-mini-list {
      list-style: none;
      padding: 20px;
      margin: auto 0 0;
      display: grid;
      gap: 10px;
    }
    .pb-mini-list li {
      position: relative;
      padding-left: 22px;
      color: #52666d;
      font-size: 15px;
      font-weight: 800;
      line-height: 1.35;
    }
    .pb-mini-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(135deg, #d452d5, #ff791a);
      box-shadow: 4px 4px 0 rgba(1, 123, 160, 0.15);
    }

    .pb-team-card::before {
      content: "";
      position: absolute;
      inset: auto -32px -46px auto;
      width: 130px;
      height: 130px;
      background: var(--pb-gradient);
      opacity: 0.10;
      border-radius: 34px;
      transform: rotate(12deg);
    }

    .pb-team-avatar {
      width: 82px;
      height: 82px;
      display: grid;
      place-items: center;
      border-radius: 22px;
      background: var(--pb-ocean-gradient);
      color: #fff;
      font-size: 24px;
      font-weight: 950;
      border: 3px solid rgba(21, 49, 58, 0.82);
      box-shadow: 5px 5px 0 rgba(255, 121, 26, 0.16);
      margin-bottom: 18px;
    }

    .pb-team-card.featured .pb-team-avatar {
      width: 140px;
      height: 148px;
      margin: 0;
      font-size: 42px;
      background: var(--pb-gradient);
    }

    .pb-team-card h3 { position: relative; margin: 0 0 4px; font-size: 24px; letter-spacing: -0.04em; line-height: 1.06; }
    .pb-team-card .pb-role { position: relative; display: block; color: var(--pb-blue); font-weight: 900; margin-bottom: 12px; }
    .pb-team-card p { position: relative; margin: 0; color: var(--pb-muted); font-weight: 600; line-height: 1.52; }

    .pb-values-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
    .pb-value-card { padding: 22px; min-height: 190px; }
    .pb-value-card b { display: block; font-size: 20px; letter-spacing: -0.03em; margin-bottom: 10px; }
    .pb-value-card span { display: block; color: var(--pb-muted); font-weight: 620; line-height: 1.52; }

    .pb-audience-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
    .pb-audience-card {
      position: relative;
      overflow: hidden;
      padding: 24px;
      min-height: 240px;
      border-color: rgba(21, 49, 58, 0.86);
      box-shadow: 7px 7px 0 rgba(9, 152, 143, 0.13), 0 18px 42px rgba(0, 0, 0, 0.06);
    }
    .pb-audience-card .pb-tag {
      display: inline-flex;
      margin-bottom: 22px;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(1, 123, 160, 0.09);
      color: var(--pb-blue);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .pb-audience-card h3 { margin: 0 0 10px; font-size: 25px; letter-spacing: -0.04em; }
    .pb-audience-card p { margin: 0; color: var(--pb-muted); font-weight: 620; line-height: 1.52; }

    .pb-offerings-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 30px;
    }
    .pb-offering-pill {
      padding: 20px;
      border-radius: 20px;
      border: 2px solid rgba(1, 123, 160, 0.15);
      background: rgba(255, 255, 255, 0.78);
      box-shadow: 4px 4px 0 rgba(255, 121, 26, 0.11);
      text-decoration: none;
    }
    .pb-offering-pill b { display: block; margin-bottom: 8px; font-size: 20px; }
    .pb-offering-pill span { display: block; color: var(--pb-muted); font-weight: 620; }

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

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

    .pb-final h2 { margin: 0 0 10px; font-size: clamp(32px, 4vw, 50px); line-height: 1; letter-spacing: -0.055em; }
    .pb-final p { margin: 0; max-width: 680px; color: rgba(255,255,255,0.84); font-size: 18px; font-weight: 620; }

    .pb-audience-grid-v12 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 34px;
    }

    .pb-audience-card-v12 {
      position: relative;
      display: grid;
      grid-template-rows: auto auto 1fr auto;
      gap: 14px;
      min-height: 330px;
      padding: 26px;
      background: #fff;
      border: 2px solid rgba(21, 49, 58, 0.86);
      border-radius: var(--pb-radius-lg);
      box-shadow: 7px 7px 0 rgba(9, 152, 143, 0.13), 0 18px 42px rgba(0, 0, 0, 0.06);
      overflow: hidden;
    }

    .pb-audience-card-v12::after {
      content: "";
      position: absolute;
      right: -34px;
      bottom: -42px;
      width: 118px;
      height: 118px;
      border-radius: 28px;
      background: var(--pb-gradient);
      opacity: 0.08;
      transform: rotate(12deg);
    }

    .pb-audience-card-v12 .pb-tag {
      width: fit-content;
      display: inline-flex;
      margin: 0;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(1, 123, 160, 0.09);
      color: var(--pb-blue);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .pb-audience-card-v12 h3 {
      position: relative;
      z-index: 1;
      margin: 0;
      color: var(--pb-ink);
      font-size: clamp(25px, 2vw, 32px);
      line-height: 1;
      letter-spacing: -0.055em;
      font-weight: 950;
    }

    .pb-audience-card-v12 p {
      position: relative;
      z-index: 1;
      margin: 0;
      color: #40565D;
      font-size: 16.5px;
      line-height: 1.48;
      font-weight: 650;
    }

    .pb-audience-proof {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 8px;
      margin-top: 8px;
      padding-top: 16px;
      border-top: 1px solid rgba(1, 123, 160, 0.12);
    }

    .pb-audience-proof span {
      display: grid;
      grid-template-columns: 10px 1fr;
      gap: 10px;
      align-items: start;
      color: var(--pb-muted);
      font-size: 14px;
      line-height: 1.32;
      font-weight: 850;
    }

    .pb-audience-proof span::before {
      content: "";
      width: 9px;
      height: 9px;
      margin-top: 4px;
      border-radius: 999px;
      background: var(--pb-gradient);
      box-shadow: 3px 3px 0 rgba(1, 123, 160, 0.14);
    }

    @media (max-width: 1080px) {
      .pb-navlinks, .pb-actions { display: none; }
      .pb-menu-btn { display: block; }
      .pb-hero-grid, .pb-belief, .pb-final-inner { grid-template-columns: 1fr; }
      .pb-section-head { grid-template-columns: 1fr; align-items: start; }
      .pb-pain-layout-v8, .pb-pain-head { grid-template-columns: 1fr; }
      .pb-pain-cards-v8, .pb-values-grid, .pb-audience-grid, .pb-audience-grid-v12, .pb-offerings-row { grid-template-columns: 1fr 1fr; }
      .pb-team-card, .pb-team-card.featured { grid-column: span 6; }
      .pb-team-card.featured { grid-template-columns: 1fr; }
      .pb-team-card.featured .pb-team-avatar { width: 92px; height: 92px; font-size: 28px; }
      .pb-about-hero-minimal .pb-hero-grid { grid-template-columns: 1fr; }
      .pb-about-origin-card { justify-self: stretch; max-width: none; }
    }

    @media (max-width: 720px) {
      .pb-about-pb { 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-about-pb span { gap: 11px; font-size: 12px; letter-spacing: 0.15em; }
      .pb-about-pb span::before { width: 28px; height: 5px; }
      .pb-container { width: min(100% - 28px, var(--pb-max)); }
      .pb-hero { padding: 52px 0 52px; }
      .pb-hero h1 { font-size: clamp(44px, 14vw, 62px); }
      .pb-hero-note, .pb-pain-cards-v8, .pb-values-grid, .pb-audience-grid, .pb-audience-grid-v12, .pb-offerings-row { grid-template-columns: 1fr; }
      .pb-about-card-body, .pb-story-panel, .pb-card, .pb-team-card, .pb-value-card, .pb-audience-card, .pb-audience-card-v12 { padding: 20px; }
      .pb-origin-statement { grid-template-columns: 1fr; }
      .pb-belief-cards { grid-template-columns: 1fr; }
      .pb-team-card, .pb-team-card.featured { grid-column: span 12; }
      .pb-logo { width: 190px; }
      .pb-pain-card-v8 { min-height: auto; }
      .pb-pain-card-v8 .pb-number { margin-bottom: 16px; }
    }

.pb-about-collage-card {
  position: relative;
  min-height: 430px;
  border: 3px solid rgba(21, 49, 58, 0.88);
  border-radius: 28px;
  background: #fff;
  box-shadow:
    12px 12px 0 rgba(212, 82, 213, 0.18),
    0 24px 55px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.pb-about-collage-bg {
  position: relative;
  min-height: 430px;
  padding: 32px;
  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 20% 20%, rgba(238, 227, 88, 0.22), transparent 13rem),
    radial-gradient(circle at 84% 22%, rgba(255, 121, 26, 0.14), transparent 14rem),
    #ffffff;
  background-size: 24px 24px, 24px 24px, auto, auto, auto;
}

.pb-collage-shape {
  position: absolute;
  border: 3px solid rgba(21, 49, 58, 0.88);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.08);
}

.pb-shape-one {
  width: 96px;
  height: 96px;
  right: 46px;
  top: 42px;
  border-radius: 22px;
  background: var(--pb-gradient);
  transform: rotate(9deg);
}

.pb-shape-two {
  width: 132px;
  height: 52px;
  left: 38px;
  bottom: 42px;
  border-radius: 999px;
  background: var(--pb-yellow);
  transform: rotate(-6deg);
}

.pb-shape-three {
  width: 78px;
  height: 78px;
  right: 90px;
  bottom: 54px;
  border-radius: 50%;
  background: var(--pb-ocean-gradient);
  transform: rotate(5deg);
}

.pb-collage-note {
  position: absolute;
  border: 3px solid rgba(21, 49, 58, 0.88);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    8px 8px 0 rgba(255, 121, 26, 0.12),
    0 16px 34px rgba(0, 0, 0, 0.08);
}

.pb-note-main {
  left: 48px;
  top: 62px;
  width: min(78%, 440px);
  padding: 28px;
  border-radius: 24px;
  transform: rotate(-1.5deg);
  z-index: 3;
}

.pb-note-main span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--pb-pink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pb-note-main h2 {
  margin: 0;
  color: var(--pb-ink);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.pb-note-main p {
  margin: 16px 0 0;
  color: #40565D;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 760;
}

.pb-note-mini {
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 13px 15px;
  border-radius: 16px;
}

.pb-note-mini b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--pb-ocean-gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.pb-note-mini span {
  color: var(--pb-ink);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 900;
}

.pb-note-one {
  left: 34px;
  bottom: 118px;
  transform: rotate(3deg);
}

.pb-note-two {
  right: 34px;
  bottom: 128px;
  transform: rotate(-4deg);
}

.pb-note-three {
  right: 58px;
  bottom: 54px;
  transform: rotate(3deg);
}

.pb-collage-stamp {
  position: absolute;
  left: 58px;
  bottom: 48px;
  z-index: 5;
  padding: 10px 14px;
  border: 3px solid rgba(21, 49, 58, 0.88);
  border-radius: 999px;
  background: var(--pb-gradient);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 rgba(1, 123, 160, 0.15);
  transform: rotate(-7deg);
}
.pb-about-chaos-hero {
  min-height: 430px;
  overflow: hidden;
  border: 3px solid rgba(21, 49, 58, 0.88);
  border-radius: 24px;
  background: #ffffff;
  box-shadow:
    11px 11px 0 rgba(212, 82, 213, 0.18),
    0 24px 55px rgba(0, 0, 0, 0.12);
}

.pb-chaos-bg {
  position: relative;
  min-height: 430px;
  padding: 34px;
  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 12% 18%, rgba(238, 227, 88, 0.18), transparent 13rem),
    radial-gradient(circle at 90% 82%, rgba(255, 121, 26, 0.12), transparent 14rem),
    #ffffff;
  background-size: 22px 22px, 22px 22px, auto, auto, auto;
}

.pb-main-chaos-note {
  position: absolute;
  left: 74px;
  top: 78px;
  z-index: 12;
  width: min(72%, 470px);
  padding: 28px 30px;
  border: 3px solid rgba(21, 49, 58, 0.88);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    8px 8px 0 rgba(255, 121, 26, 0.11),
    0 18px 38px rgba(0, 0, 0, 0.08);
  transform: rotate(-1.2deg);
  pointer-events: none;
}

.pb-main-chaos-note p {
  margin: 0 0 14px;
  color: var(--pb-pink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pb-main-chaos-note h2 {
  margin: 0;
  color: var(--pb-ink);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.pb-main-chaos-note span {
  display: block;
  max-width: 390px;
  margin-top: 18px;
  color: #40565D;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 820;
  letter-spacing: -0.025em;
}

.pb-pain-card {
  position: absolute;
  z-index: 24;
  appearance: none;
  border: 3px solid rgba(21, 49, 58, 0.88);
  border-radius: 15px;
  padding: 12px 15px 12px 34px;
  background: #ffffff;
  color: var(--pb-ink);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.025em;
  cursor: grab;
  user-select: none;
  touch-action: none;
  box-shadow:
    6px 6px 0 rgba(255, 121, 26, 0.11),
    0 12px 24px rgba(0, 0, 0, 0.08);
  transition:
    box-shadow 140ms ease,
    opacity 140ms ease;

  transform:
    translate(var(--drag-x, 0px), var(--drag-y, 0px))
    rotate(var(--r, 0deg));
}

.pb-pain-card::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 13px;
  height: 19px;
  transform: translateY(-50%);
  opacity: 0.72;
  background:
    radial-gradient(circle, rgba(1, 123, 160, 0.68) 2px, transparent 2.5px);
  background-size: 6px 6px;
  background-position: 0 0;
}

.pb-pain-card:hover {
  z-index: 40;
  box-shadow:
    8px 8px 0 rgba(212, 82, 213, 0.14),
    0 18px 34px rgba(0, 0, 0, 0.12);
}

.pb-pain-card.is-dragging {
  z-index: 60;
  cursor: grabbing;
  opacity: 0.96;
  transition: none;
}

/* Starting positions: About hero chaos cards */
.pain-1 { left: 142px; top: 76px; --r: -7deg; background: #EEE358; }
.pain-2 { right: 128px; top: 74px; --r: 4deg; background: #ffffff; }
.pain-3 { right: 92px; top: 188px; --r: 3deg; background: #ffffff; }
.pain-4 { left: 138px; top: 216px; --r: 2deg; background: #EEE358;}
.pain-5 { right: 142px; top: 272px; --r: -5deg; background: #ffffff;}
.pain-6 { left: 166px; top: 326px; --r: -4deg; background: #ffffff;}
.pain-7 { left: 104px; top: 26px; --r: 4deg; background: #ffffff;}
.pain-8 { right: 186px; top: 126px; --r: -5deg; background: #ffffff;}
.pain-9 { left: 78px; top: 250px; --r: -4deg; background: #ffffff;}
.pain-10 { right: 34px; top: 150px; --r: 4deg; background: #ffffff;}
.pain-11 { left: 258px; bottom: 42px; --r: 4deg; background: #ffffff; }
.pain-12 { right: 248px;bottom: 72px;--r: -3deg;background: #EEE358; }

.pb-chaos-stamp { position: absolute; left: 70px; bottom: 38px; z-index: 18; padding: 11px 18px; border: 3px solid rgba(21, 49, 58, 0.88); border-radius: 999px; background: var(--pb-gradient); color: #ffffff; font-size: 13px; font-weight: 950; letter-spacing: 0.10em; text-transform: uppercase; box-shadow: 6px 6px 0 rgba(1, 123, 160, 0.14); transform: rotate(-7deg); }
    /* V4: About-page hero, less landing-page copy */
    .pb-about-hero-minimal {
      padding-top: 92px;
      padding-bottom: 78px;
    }

    .pb-about-hero-minimal .pb-hero-grid {
      grid-template-columns: 0.92fr 1.08fr;
      gap: 58px;
    }

    .pb-about-rhythm {
      max-width: 650px;
      margin-top: 30px;
    }

    .pb-about-origin-card {
      max-width: 650px;
      justify-self: end;
    }

    .pb-origin-statement {
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 18px;
      align-items: center;
    }

    .pb-avatar-small {
      width: 72px;
      height: 72px;
      border-radius: 18px;
      font-size: 22px;
    }

    .pb-origin-statement h2 {
      margin: 0;
      max-width: 470px;
      color: var(--pb-ink);
      font-size: clamp(27px, 2.7vw, 38px);
      line-height: 0.98;
      letter-spacing: -0.055em;
      font-weight: 950;
    }

    .pb-origin-line {
      margin: 22px 0 18px;
      padding: 18px 20px;
      border-radius: 18px;
      background:
        linear-gradient(135deg, rgba(1, 123, 160, 0.08), rgba(9, 152, 143, 0.07)),
        #fff;
      border: 2px solid rgba(1, 123, 160, 0.14);
    }

    .pb-origin-line strong {
      display: block;
      color: #263C44;
      font-size: clamp(20px, 1.75vw, 27px);
      line-height: 1.05;
      letter-spacing: -0.04em;
      font-weight: 950;
    }

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

    .pb-belief-cards div {
      min-height: 124px;
      padding: 16px 14px;
      border-radius: 16px;
      background: #fff;
      border: 2px solid rgba(1, 123, 160, 0.13);
      box-shadow: 5px 5px 0 rgba(255, 121, 26, 0.10);
    }

    .pb-belief-cards b {
      display: block;
      margin-bottom: 10px;
      color: var(--pb-blue);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .pb-belief-cards span {
      display: block;
      color: var(--pb-ink);
      font-size: 15px;
      line-height: 1.25;
      font-weight: 900;
      letter-spacing: -0.03em;
    }

    @media (max-width: 980px) {
      .pb-about-hero-minimal .pb-hero-grid { grid-template-columns: 1fr; }
      .pb-about-origin-card { justify-self: stretch; max-width: none; }
    }

    @media (max-width: 640px) {
      .pb-belief-cards { grid-template-columns: 1fr; }
      .pb-origin-statement { grid-template-columns: 1fr; }
    }

  

    /* V8 partnership pain section: less text, easier scan */
    .pb-pain-head {
      grid-template-columns: 0.8fr 1.2fr;
      align-items: center;
      margin-bottom: 28px;
    }

    .pb-pain-head .pb-section-intro {
      max-width: 680px;
      font-size: 18px;
      line-height: 1.48;
    }

    .pb-pain-layout-v8 {
      display: grid;
      grid-template-columns: 0.78fr 1.22fr;
      gap: 24px;
      align-items: stretch;
    }

    .pb-pain-lead-v8 {
      min-height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 30px;
    }

    .pb-pain-lead-v8 h3 {
      max-width: 410px;
      font-size: clamp(26px, 2.3vw, 34px);
      line-height: 0.98;
      margin-bottom: 14px;
    }

    .pb-pain-lead-v8 p {
      max-width: 440px;
      font-size: 16.5px;
      line-height: 1.5;
    }

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

    .pb-pain-card-v8 {
      min-height: 210px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .pb-pain-card-v8 .pb-number {
      margin-bottom: 28px;
    }

    .pb-pain-card-v8 h3 {
      font-size: clamp(22px, 1.55vw, 27px);
      line-height: 0.98;
      letter-spacing: -0.05em;
      margin-bottom: 14px;
    }

    .pb-pain-card-v8 p {
      font-size: 15.5px;
      line-height: 1.42;
      max-width: 220px;
    }

.pb-team-card {

  position: relative;

}
    
    .pb-team-linkedin {
      position: absolute;
      top: 22px;
      right: 22px;
      z-index: 4;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 2px solid rgba(1, 123, 160, 0.18);
      border-radius: 12px;
      background: #ffffff;
      box-shadow:
        4px 4px 0 rgba(212, 82, 213, 0.10),
        0 10px 22px rgba(0, 0, 0, 0.06);
      transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease,
        border-color 160ms ease;
    }
    .pb-team-linkedin:hover,
    .pb-team-linkedin:focus {
      background: rgba(1, 123, 160, 0.08);
      border-color: rgba(1, 123, 160, 0.34);
      transform: translate(-1px, -1px);
      box-shadow:
        5px 5px 0 rgba(255, 121, 26, 0.13),
        0 14px 26px rgba(0, 0, 0, 0.08);
      outline: none;
    }
    .pb-team-linkedin img {
      width: 75%;
      height: 75%;
      display: block;
    }
    .pb-team-card.featured .pb-team-linkedin {
      top: 28px;
      right: 28px;
      width: 46px;
      height: 46px;
    }
    .pb-team-card.featured .pb-team-linkedin img {
      width: 75%;
      height: 75%;
    }


    @media (max-width: 980px) {
      .pb-pain-layout-v8, .pb-pain-head { grid-template-columns: 1fr; }
      .pb-pain-cards-v8 { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 640px) {
      .pb-pain-cards-v8 { grid-template-columns: 1fr; }
      .pb-pain-card-v8 { min-height: auto; }
      .pb-pain-card-v8 .pb-number { margin-bottom: 16px; }
    }
    
    @media (max-width: 720px) {
  .pb-about-collage-card {
    min-height: 520px;
  }

  .pb-about-collage-bg {
    min-height: 520px;
    padding: 22px;
  }

  .pb-note-main {
    left: 22px;
    right: 22px;
    top: 34px;
    width: auto;
    padding: 22px;
  }

  .pb-note-main h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .pb-note-one {
    left: 22px;
    bottom: 170px;
  }

  .pb-note-two {
    right: 22px;
    bottom: 104px;
  }

  .pb-note-three {
    left: 44px;
    right: auto;
    bottom: 34px;
  }

  .pb-collage-stamp {
    display: none;
  }
}

@media (max-width: 720px) {
  .pb-about-chaos-hero,
  .pb-chaos-bg {
    min-height: auto;
  }

  .pb-chaos-bg {
    display: grid;
    gap: 12px;
    padding: 20px;
  }

  .pb-main-chaos-note,
  .pb-pain-card,
  .pb-chaos-stamp {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .pb-main-chaos-note {
    pointer-events: auto;
  }

  .pb-main-chaos-note h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .pb-pain-card {
    text-align: left;
    cursor: default;
  }

  .pb-pain-card::after {
    display: none;
  }

  .pb-chaos-stamp {
    width: fit-content;
  }
}
@media (max-width: 720px) {
  .pb-pain-card {
    cursor: default;
    touch-action: auto;
    padding-left: 15px;
  }

  .pb-pain-card::before {
    display: none;
  }
  .pb-team-linkedin,
  .pb-team-card.featured .pb-team-linkedin {
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
  }
  .pb-team-linkedin img,
  .pb-team-card.featured .pb-team-linkedin img {
    width: 75%;
    height: 75%;
  }
}