/* =========================================================
   PartnerBridge: Press and Media
   Production CSS
   ========================================================= */

/* Page shell */
.pb-page {
  min-height: 100vh;
  overflow-x: 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;
}

/* =========================================================
   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-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-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;
    }


/* =========================================================
   Media hero
   ========================================================= */

.pb-hero {
  position: relative;
}

.pb-media-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 10% 18%, rgba(212, 82, 213, 0.13), transparent 26rem),
    radial-gradient(circle at 92% 28%, rgba(255, 121, 26, 0.12), transparent 26rem),
    #ffffff;
  background-size: 32px 32px, 32px 32px, auto, auto, auto;
  border-bottom: 1px solid rgba(1, 123, 160, 0.10);
}

.pb-media-hero::before {
  display: none;
}

.pb-media-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 54px;
  align-items: center;
  margin-top: 3%;
}

.pb-media-tab {
  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-media-tab 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-media-tab span::before {
  content: "";
  width: 38px;
  height: 7px;
  border-radius: 999px;
  background: var(--pb-gradient);
}

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

.pb-media-copy h1 span {
  display: inline-block;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
  background: var(--pb-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pb-media-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, 21px);
  line-height: 1.35;
  font-weight: 650;
  letter-spacing: -0.035em;
}

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

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

.pb-media-link-row 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-media-link-row a:hover {
  color: var(--pb-blue);
}

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



/* =========================================================
   Media hero: neon retro cassette object
   ========================================================= */

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

.pb-cassette-shell {
  position: relative;
  min-height: 430px;
  padding: 34px 38px 30px;
  border: 4px solid rgba(21, 49, 58, 0.96);
  border-radius: 24px;
  background: #172b34;
  box-shadow:
    12px 12px 0 rgba(212, 82, 213, 0.18),
    0 24px 55px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

/* Inner colorful cassette face */
.pb-cassette-shell::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 28px;
  height: 260px;
  border: 3px solid rgba(21, 49, 58, 0.90);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 10px),
    linear-gradient(135deg, #ea4ea7 0 42%, #ff791a 42% 58%, #19a7b0 58% 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.14),
    6px 6px 0 rgba(255, 121, 26, 0.12);
  z-index: 0;
}

/* Top label slot */
.pb-cassette-shell::after {
  content: "";
  position: absolute;
  left: 74px;
  right: 74px;
  top: 56px;
  height: 58px;
  border: 3px solid rgba(21, 49, 58, 0.86);
  border-radius: 8px;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(21, 49, 58, 0.34) 0 2px,
      transparent 2px 15px
    ),
    rgba(255, 244, 195, 0.92);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.10);
  z-index: 2;
}

/* Screws */
.pb-cassette-screws span {
  position: absolute;
  z-index: 8;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(21, 49, 58, 0.96);
  border-radius: 999px;
  background: #f6ca5b;
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.35),
    2px 2px 0 rgba(0, 0, 0, 0.18);
}

.pb-cassette-screws span:nth-child(1) {
  left: 14px;
  top: 14px;
}

.pb-cassette-screws span:nth-child(2) {
  right: 14px;
  top: 14px;
}

.pb-cassette-screws span:nth-child(3) {
  left: 14px;
  bottom: 14px;
}

.pb-cassette-screws span:nth-child(4) {
  right: 14px;
  bottom: 14px;
}

/* Coverage message, printed like a sticker on the cassette */
.pb-cassette-label {
  position: relative;
  z-index: 5;
  width: min(390px, calc(100% - 120px));
  margin: 82px auto 20px;
  padding: 18px 22px;
  border: 3px solid rgba(21, 49, 58, 0.90);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.90);
  box-shadow:
    6px 6px 0 rgba(255, 121, 26, 0.12),
    0 14px 28px rgba(0, 0, 0, 0.08);
  transform: rotate(-1deg);
}

.pb-cassette-label small {
  display: block;
  margin-bottom: 7px;
  color: var(--pb-pink);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pb-cassette-label h2 {
  margin: 0;
  color: var(--pb-ink);
  font-size: clamp(29px, 3vw, 42px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.pb-cassette-label p {
  display: none;
}

/* Tape window */
.pb-cassette-window {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 86px 1fr 86px;
  align-items: center;
  gap: 12px;
  width: min(370px, calc(100% - 130px));
  min-height: 82px;
  margin: 0 auto 24px;
  padding: 12px 18px;
  border: 4px solid rgba(21, 49, 58, 0.96);
  border-radius: 14px;
  background: #081922;
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.08),
    5px 5px 0 rgba(212, 82, 213, 0.14);
}

.pb-reel {
  position: relative;
  min-height: 62px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 3px solid #dce9ee;
  background:
    radial-gradient(circle, #f8fbfb 0 18%, #081922 19% 27%, #f8fbfb 28% 53%, #2a3e4b 54% 100%);
}

.pb-reel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  background:
    conic-gradient(
      from 0deg,
      #081922 0 14deg,
      transparent 14deg 46deg,
      #081922 46deg 60deg,
      transparent 60deg 92deg,
      #081922 92deg 106deg,
      transparent 106deg 138deg,
      #081922 138deg 152deg,
      transparent 152deg 184deg,
      #081922 184deg 198deg,
      transparent 198deg 230deg,
      #081922 230deg 244deg,
      transparent 244deg 276deg,
      #081922 276deg 290deg,
      transparent 290deg 322deg,
      #081922 322deg 336deg,
      transparent 336deg 360deg
    );
  opacity: 0.92;
}

.pb-reel strong,
.pb-reel span {
  display: none;
}

.pb-tape-bridge {
  height: 44px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, #211735, #131326 45%, #211735);
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.08),
    inset 18px 0 18px rgba(0, 0, 0, 0.22),
    inset -18px 0 18px rgba(0, 0, 0, 0.22);
}

/* Bottom dark cassette base */
.pb-cassette-bottom {
  position: absolute;
  left: 58px;
  right: 58px;
  bottom: 24px;
  z-index: 6;
  min-height: 96px;
  padding: 20px 22px 14px;
  border: 3px solid rgba(21, 49, 58, 0.96);
  border-radius: 12px 12px 0 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0 2px,
      transparent 2px 7px
    ),
    #172b34;
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
  box-shadow: 5px 5px 0 rgba(255, 121, 26, 0.10);
}

.pb-bottom-stat {
  display: none;
}

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

.pb-bottom-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  border-radius: 999px;
  background: #fffdf5;
  color: var(--pb-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    3px 3px 0 rgba(255, 121, 26, 0.10),
    inset 0 0 0 1px rgba(21, 49, 58, 0.08);
}

.pb-bottom-links a strong {
  color: #871aff;
  font-size: 16px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.pb-bottom-links a:nth-child(2) {
  color: var(--pb-pink);
}

.pb-bottom-links a:nth-child(3) {
  color: var(--pb-orange);
}

.pb-bottom-holes {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 14px;
}

.pb-bottom-holes span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #081922;
  border: 2px solid rgba(255, 255, 255, 0.22);
}

/* Add side tabs like the reference image */
.pb-cassette-card::before,
.pb-cassette-card::after {
  content: "";
  position: absolute;
  top: 205px;
  width: 22px;
  height: 90px;
  border: 3px solid rgba(21, 49, 58, 0.96);
  background: #172b34;
  z-index: 1;
}

.pb-cassette-card::before {
  left: -8px;
  border-radius: 12px 0 0 12px;
}

.pb-cassette-card::after {
  right: -8px;
  border-radius: 0 12px 12px 0;
}

/* =========================================================
   Featured media carousel
   ========================================================= */

.pb-feature-carousel {
  position: relative;
}

.pb-carousel-controls {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.pb-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
}

.pb-carousel-btn[data-pb-carousel-prev] {
  left: -24px;
}

.pb-carousel-btn[data-pb-carousel-next] {
  right: -24px;
}

.pb-carousel-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(21, 49, 58, 0.86);
  border-radius: 14px;
  background: #ffffff;
  color: var(--pb-ink);
  cursor: pointer;
  box-shadow:
    4px 4px 0 rgba(212, 82, 213, 0.12),
    0 12px 24px rgba(0, 0, 0, 0.06);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.pb-carousel-btn span {
  display: block;
  transform: translateY(-1px);
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.pb-carousel-btn:hover,
.pb-carousel-btn:focus {
  outline: none;
  color: #ffffff;
  background: var(--pb-gradient);
  transform: translateY(-50%) translate(-1px, -1px);
  box-shadow:
    6px 6px 0 rgba(1, 123, 160, 0.14),
    0 16px 28px rgba(0, 0, 0, 0.08);
}

.pb-feature-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 1fr);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 18px;
  scrollbar-width: thin;
  scrollbar-color: rgba(1, 123, 160, 0.35) transparent;
  padding-left: 34px;
  padding-right: 34px;
}

.pb-feature-track::-webkit-scrollbar {
  height: 10px;
}

.pb-feature-track::-webkit-scrollbar-track {
  background: rgba(1, 123, 160, 0.06);
  border-radius: 999px;
}

.pb-feature-track::-webkit-scrollbar-thumb {
  background: rgba(1, 123, 160, 0.28);
  border-radius: 999px;
}

.pb-feature-track .pb-feature-card {
  scroll-snap-align: start;
  min-width: 0;
}

/* Desktop: show roughly four cards, but allow carousel for more */
@media (min-width: 1081px) {
  .pb-feature-track {
    grid-auto-columns: calc((100% - 54px) / 4);
  }
}

/* Tablet: show two cards */
@media (max-width: 1080px) {
  .pb-carousel-btn[data-pb-carousel-prev] {
      left: -10px;
    }
    .pb-carousel-btn[data-pb-carousel-next] {
      right: -10px;
    }

  .pb-feature-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }
}

.pb-carousel-btn.is-disabled,
.pb-carousel-btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
  box-shadow:
    4px 4px 0 rgba(212, 82, 213, 0.08),
    0 10px 20px rgba(0, 0, 0, 0.04);
}

.pb-carousel-btn.is-disabled:hover,
.pb-carousel-btn:disabled:hover {
  color: var(--pb-ink);
  background: #ffffff;
  transform: none;
}

/* Mobile: show one card */
@media (max-width: 720px) {
  .pb-carousel-controls {
    justify-content: flex-start;
  }
  
  .pb-feature-track {
      padding-left: 26px;
      padding-right: 26px;
    }
    
    .pb-carousel-btn[data-pb-carousel-prev] {
      left: -6px;
    }
    
    .pb-carousel-btn[data-pb-carousel-next] {
      right: -6px;
    }

  .pb-carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .pb-carousel-btn span {
    font-size: 30px;
  }

  .pb-feature-track {
    grid-auto-columns: 88%;
    gap: 14px;
    padding-bottom: 16px;
  }
}

/* =========================================================
   Shared sections
   ========================================================= */

.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: 800px;
  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;
}

/* =========================================================
   Logo wall
   ========================================================= */

.pb-logo-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.pb-logo-tile {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 18px 12px;
  border-radius: 18px;
  background: #fff;
  border: 2px solid rgba(1, 123, 160, 0.15);
  box-shadow: 5px 5px 0 rgba(212, 82, 213, 0.11), 0 10px 24px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: var(--pb-ink);
}

.pb-logo-tile span {
  display: block;
  text-align: center;
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.pb-logo-tile small {
  display: block;
  margin-top: 6px;
  text-align: center;
  color: var(--pb-blue);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* =========================================================
   Cards
   ========================================================= */

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

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

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

.pb-feature-card,
.pb-coverage-card,
.pb-article-card,
.pb-contact-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-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border-color: rgba(21, 49, 58, 0.82);
  box-shadow: 7px 7px 0 rgba(9, 152, 143, 0.13), 0 18px 42px rgba(0, 0, 0, 0.06);
}

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

.pb-coverage-card,
.pb-article-card {
  padding: 22px;
  min-height: 245px;
  display: flex;
  flex-direction: column;
}

.pb-chip {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  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-source {
  display: block;
  margin: 18px 0 8px;
  color: var(--pb-pink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pb-feature-card h3,
.pb-coverage-card h3,
.pb-article-card h3 {
  position: relative;
  margin: 0 0 10px;
  color: var(--pb-ink);
  font-size: 24px;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.pb-coverage-card h3 {
  font-size: 22px;
}

.pb-feature-card p,
.pb-coverage-card p,
.pb-article-card p {
  position: relative;
  margin: 0;
  color: var(--pb-muted);
  font-size: 15.5px;
  font-weight: 620;
  line-height: 1.48;
}

.pb-card-link {
  position: relative;
  display: inline-flex;
  margin-top: auto;
  padding-top: 18px;
  color: var(--pb-blue);
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
}

.pb-card-link:hover {
  color: var(--pb-pink);
}

/* =========================================================
   Tabs and articles
   ========================================================= */

.pb-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 28px;
}

.pb-tab {
  min-height: 42px;
  padding: 0 14px;
  border: 2px solid rgba(1, 123, 160, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--pb-ink);
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(255, 121, 26, 0.10);
}

.pb-tab.is-active {
  color: #fff;
  background: var(--pb-ocean-gradient);
  border-color: rgba(21, 49, 58, 0.18);
}

.pb-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.pb-date,
.pb-topic {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.pb-date {
  color: var(--pb-pink);
  background: rgba(212, 82, 213, 0.09);
}

.pb-topic {
  color: var(--pb-blue);
  background: rgba(1, 123, 160, 0.09);
}

/* =========================================================
   Quote
   ========================================================= */

.pb-quote-panel {
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  border: 3px solid rgba(21, 49, 58, 0.88);
  box-shadow: 10px 10px 0 rgba(255, 121, 26, 0.14), 0 18px 42px rgba(0, 0, 0, 0.08);
}

.pb-quote-panel blockquote {
  margin: 0;
  color: var(--pb-ink);
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 950;
}

/* =========================================================
   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;
}

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

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

@media (max-width: 1080px) {
  .pb-navlinks,
  .pb-actions {
    display: none;
  }

  .pb-menu-btn {
    display: block;
  }

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

  .pb-feature-grid,
  .pb-coverage-grid,
  .pb-article-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .pb-mobile-panel.is-open { display: block; }

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

  .pb-cassette-card {
    max-width: 680px;
    transform: none;
  }
}

@media (max-width: 720px) {
  .pb-container {
    width: min(100% - 28px, var(--pb-max));
  }

  .pb-logo {
    width: 190px;
  }

  .pb-media-hero {
    padding: 52px 0 56px;
  }
  
  .pb-mobile-panel.is-open { display: block; }

.pb-media-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-media-tab span { gap: 11px; font-size: 12px; letter-spacing: 0.15em; }
.pb-media-tab span::before { width: 28px; height: 5px; }

  .pb-media-copy h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .pb-media-subtitle {
    padding: 20px 20px 20px 30px;
    font-size: 19px;
  }

  .pb-media-link-row,
  .pb-feature-grid,
  .pb-coverage-grid,
  .pb-article-grid,
  .pb-logo-wall {
    grid-template-columns: 1fr;
  }

  .pb-cassette-card {
    border-radius: 26px;
  }

  .pb-cassette-body {
    min-height: auto;
    padding: 22px;
  }

  .pb-cassette-body::before,
  .pb-cassette-body::after {
    display: none;
  }

  .pb-cassette-label {
    padding: 22px;
    transform: none;
  }

  .pb-cassette-label h2 {
    font-size: 38px;
  }

  .pb-cassette-reels,
  .pb-cassette-strip {
    grid-template-columns: 1fr;
  }

  .pb-reel {
    min-height: 96px;
    border-radius: 24px;
  }

  .pb-reel span {
    max-width: none;
  }

  .pb-feature-card,
  .pb-coverage-card,
  .pb-article-card {
    padding: 20px;
  }
}
@media (max-width: 1080px) {
  .pb-cassette-card {
    max-width: 650px;
    justify-self: start;
    transform: none;
  }
}

@media (max-width: 720px) {
  .pb-cassette-shell {
    min-height: 380px;
    padding: 28px 22px;
    border-radius: 22px;
  }

  .pb-cassette-shell::before {
    left: 22px;
    right: 22px;
    top: 24px;
    height: 238px;
  }

  .pb-cassette-shell::after {
    left: 56px;
    right: 56px;
    top: 50px;
    height: 46px;
  }

  .pb-cassette-card::before,
  .pb-cassette-card::after {
    display: none;
  }

  .pb-cassette-label {
    width: calc(100% - 66px);
    margin: 72px auto 18px;
    padding: 16px 18px;
    transform: none;
  }

  .pb-cassette-label h2 {
    font-size: 33px;
  }

  .pb-cassette-window {
    width: calc(100% - 72px);
    grid-template-columns: 64px 1fr 64px;
    min-height: 72px;
    padding: 10px 12px;
  }

  .pb-reel {
    min-height: 52px;
  }

  .pb-tape-bridge {
    height: 34px;
  }

  .pb-cassette-bottom {
    left: 38px;
    right: 38px;
    bottom: 22px;
    min-height: 86px;
    padding: 16px 16px 12px;
  }

  .pb-bottom-links {
    grid-template-columns: 1fr;
  }

  .pb-bottom-holes {
    display: none;
  }
}