:root {
  --pl-ink: #16202a;
  --pl-muted: #5e6874;
  --pl-border: #d8e0e5;
  --pl-bg: #ffffff;
  --pl-soft: #f5f8f6;
  --pl-blue: #1f4d76;
  --pl-blue-dark: #143552;
  --pl-green: #20745f;
  --pl-gold: #c08a20;
  --pl-shadow: 0 18px 48px rgba(22, 32, 42, 0.12);
}

.partnerlink-page {
  background: var(--pl-bg);
  color: var(--pl-ink);
}

.pl-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.pl-hero {
  position: relative;
  min-height: 760px;
  padding: 150px 0 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pl-hero-media,
.pl-hero-overlay {
  position: absolute;
  inset: 0;
}

.pl-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pl-hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 28, 41, 0.88), rgba(13, 28, 41, 0.62) 48%, rgba(13, 28, 41, 0.2)),
    linear-gradient(0deg, rgba(13, 28, 41, 0.34), rgba(13, 28, 41, 0.08));
}

.pl-hero-content {
  position: relative;
  z-index: 1;
}

.pl-eyebrow,
.pl-kicker {
  margin: 0 0 14px;
  color: var(--pl-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pl-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.04;
  font-weight: 700;
}

.pl-hero-copy {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
  line-height: 1.65;
}

.pl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.pl-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.pl-btn:hover,
.pl-btn:focus {
  transform: translateY(-1px);
  text-decoration: none;
}

.pl-btn-primary {
  background: var(--pl-green);
  color: #ffffff;
}

.pl-btn-primary:hover,
.pl-btn-primary:focus {
  background: #185b4b;
  color: #ffffff;
}

.pl-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.pl-btn-secondary:hover,
.pl-btn-secondary:focus {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.pl-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
  margin-top: 46px;
}

.pl-proof-grid div {
  min-height: 78px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(8, 18, 27, 0.48);
  color: #ffffff;
  font-size: 14px;
  line-height: 1.45;
}

.pl-section {
  padding: 76px 0;
}

.pl-section-intro {
  padding-top: 84px;
}

.pl-band {
  background: var(--pl-soft);
}

.pl-section-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.pl-section h2,
.pl-final h2 {
  margin: 0;
  color: var(--pl-ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
  font-weight: 700;
}

.pl-copy p {
  margin: 18px 0 0;
  color: var(--pl-muted);
  font-size: 17px;
  line-height: 1.75;
}

.pl-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.pl-split-media {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pl-flow {
  display: grid;
  gap: 16px;
}

.pl-flow-step,
.pl-card,
.pl-example-panel {
  border: 1px solid var(--pl-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.pl-flow-step {
  position: relative;
  padding: 22px 22px 22px 76px;
}

.pl-flow-step span {
  position: absolute;
  left: 22px;
  top: 22px;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pl-blue);
  color: #ffffff;
  font-weight: 700;
}

.pl-flow-step h3,
.pl-card h3 {
  margin: 0;
  color: var(--pl-ink);
  font-size: 20px;
}

.pl-flow-step p,
.pl-card p,
.pl-example-panel p,
.pl-check-list,
.pl-steps {
  color: var(--pl-muted);
  line-height: 1.65;
}

.pl-flow-step p,
.pl-card p {
  margin: 10px 0 0;
}

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

.pl-card {
  padding: 24px;
}

.pl-example-panel {
  padding: 28px;
  box-shadow: var(--pl-shadow);
}

.pl-panel-title {
  margin-top: 0;
  color: var(--pl-blue-dark);
  font-weight: 700;
}

.pl-example-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.pl-example-panel li {
  padding: 12px 14px;
  border: 1px solid #e6ecef;
  border-radius: 8px;
  background: #f8fafb;
}

.pl-example-panel code {
  color: var(--pl-blue-dark);
  font-size: 15px;
}

.pl-image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e7ecef;
  box-shadow: var(--pl-shadow);
}

.pl-image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.pl-check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.pl-check-list li {
  position: relative;
  padding-left: 26px;
}

.pl-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pl-green);
}

.pl-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pl-feature-grid div {
  min-height: 76px;
  padding: 18px;
  border-left: 4px solid var(--pl-green);
  border-radius: 8px;
  background: #ffffff;
  color: var(--pl-ink);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(22, 32, 42, 0.06);
}

.pl-usecase-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
}

.pl-usecase-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pl-usecase-list span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--pl-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--pl-blue-dark);
  font-weight: 700;
}

.pl-implementation {
  background: #f8fafb;
}

.pl-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: pl-step;
}

.pl-steps li {
  position: relative;
  min-height: 54px;
  padding: 0 0 18px 64px;
  counter-increment: pl-step;
}

.pl-steps li::before {
  content: counter(pl-step);
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--pl-blue);
  color: #ffffff;
  font-weight: 700;
}

.pl-text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--pl-blue);
  font-weight: 700;
}

.pl-text-link:hover,
.pl-text-link:focus {
  color: var(--pl-blue-dark);
}

.pl-final {
  padding: 74px 0 82px;
  background: var(--pl-blue-dark);
}

.pl-final-inner {
  text-align: center;
}

.pl-final h2 {
  max-width: 780px;
  margin: 0 auto;
  color: #ffffff;
}

.pl-final .pl-actions {
  justify-content: center;
}

.pl-final .pl-btn-secondary {
  border-color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 991px) {
  .pl-hero {
    min-height: 700px;
    padding-top: 126px;
  }

  .pl-proof-grid,
  .pl-benefit-grid,
  .pl-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pl-split,
  .pl-split-media,
  .pl-usecase-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pl-shell {
    width: min(100% - 1.25rem, 1120px);
  }

  .pl-hero {
    min-height: 780px;
    padding: 118px 0 34px;
  }

  .pl-hero-overlay {
    background: linear-gradient(0deg, rgba(13, 28, 41, 0.9), rgba(13, 28, 41, 0.56));
  }

  .pl-hero-copy,
  .pl-copy p {
    font-size: 16px;
  }

  .pl-actions,
  .pl-btn {
    width: 100%;
  }

  .pl-proof-grid,
  .pl-benefit-grid,
  .pl-feature-grid {
    grid-template-columns: 1fr;
  }

  .pl-section {
    padding: 54px 0;
  }

  .pl-section-head {
    text-align: left;
  }

  .pl-flow-step {
    padding-left: 22px;
    padding-top: 72px;
  }
}
