.perform-framework-showcase {
  border-top: 1px solid rgba(255,255,255,.12);
  background: #050505;
  padding: 72px 24px;
}
.perform-framework-showcase .pf-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.perform-framework-showcase .pf-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}
.perform-framework-showcase .pf-eyebrow {
  margin: 0 0 12px;
  color: #F7B613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.perform-framework-showcase h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: .95;
  text-transform: uppercase;
}
.perform-framework-showcase .pf-lead {
  margin: 18px auto 0;
  color: rgba(255,255,255,.68);
  font-size: 18px;
  line-height: 1.65;
}
.pf-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 24px;
}
.pf-search {
  min-width: min(100%, 320px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 12px 18px;
  outline: none;
}
.pf-search:focus {
  border-color: #1ABC9C;
  box-shadow: 0 0 0 3px rgba(26,188,156,.2);
}
.pf-count {
  color: rgba(255,255,255,.58);
  font-size: 14px;
}
.pf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 18px;
}
.pf-card {
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  color: #fff;
  padding: 10px;
  text-align: left;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.pf-card:hover,
.pf-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(26,188,156,.75);
  background: rgba(255,255,255,.075);
  outline: none;
}
.pf-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2480 / 3508;
  object-fit: cover;
  border-radius: 12px;
  background: #fff;
}
.pf-card span {
  display: block;
  padding: 11px 4px 3px;
  font-size: 14px;
  font-weight: 800;
}
.pf-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  background: rgba(0,0,0,.86);
}
.pf-modal.is-open {
  display: block;
}
.pf-modal-panel {
  position: absolute;
  inset: 24px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: #080808;
}
.pf-modal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 14px 16px;
}
.pf-modal-title {
  color: #fff;
  font-weight: 900;
}
.pf-modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pf-modal-actions a,
.pf-modal-actions button {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 9px 14px;
  font: inherit;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}
.pf-modal-actions button {
  background: #F7B613;
  color: #000;
  border-color: #F7B613;
  font-weight: 800;
}
.pf-modal-body {
  overflow: auto;
  padding: 18px;
  text-align: center;
}
.pf-modal-body img {
  width: min(100%, 900px);
  height: auto;
  border-radius: 14px;
  background: #fff;
}
.pf-preview-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.pf-cta {
  margin-top: 28px;
  text-align: center;
}
.pf-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #F7B613;
  color: #000;
  padding: 14px 22px;
  font-weight: 900;
  text-decoration: none;
}
@media (max-width: 700px) {
  .perform-framework-showcase {
    padding: 56px 18px;
  }
  .pf-modal-panel {
    inset: 8px;
    border-radius: 16px;
  }
  .pf-modal-bar {
    align-items: flex-start;
    flex-direction: column;
  }
}
