:root {
  --pdl-navy: #111629;
  --pdl-navy-2: #1c2340;
  --pdl-card: #ffffff;
  --pdl-bg: #f5f6f8;
  --pdl-gold: #f7ad2f;
  --pdl-blue: #51a6dc;
  --pdl-green: #5ecfa8;
  --pdl-text: #182033;
  --pdl-muted: #667085;
  --pdl-line: #e4e7ec;
  --pdl-danger: #b42318;
  --pdl-radius: 24px;
}

.pdl-page {
  background: var(--pdl-bg);
  color: var(--pdl-text);
}

.pdl-container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.pdl-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 82px;
  background:
    radial-gradient(circle at 85% 15%, rgba(81, 166, 220, .24), transparent 32%),
    radial-gradient(circle at 12% 85%, rgba(247, 173, 47, .18), transparent 28%),
    linear-gradient(135deg, #101527 0%, #1b2340 100%);
  color: #fff;
}

.pdl-hero::after {
  position: absolute;
  inset: auto -120px -180px auto;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
}

.pdl-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 70px;
  align-items: center;
}

.pdl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--pdl-gold);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pdl-eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.pdl-hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(2.55rem, 6vw, 5.1rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.pdl-hero h1 em {
  color: var(--pdl-gold);
  font-style: normal;
}

.pdl-hero-lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.05rem, 2vw, 1.27rem);
  line-height: 1.75;
}

.pdl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.pdl-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 13px 22px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.pdl-btn:hover {
  transform: translateY(-2px);
}

.pdl-btn-primary {
  background: var(--pdl-gold);
  color: #151a2c;
  box-shadow: 0 14px 30px rgba(247, 173, 47, .25);
}

.pdl-btn-ghost {
  border-color: rgba(255, 255, 255, .27);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.pdl-status-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 26px;
  padding: 28px;
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
}

.pdl-logo {
  width: min(100%, 340px);
  height: auto;
  margin-bottom: 25px;
}

.pdl-status-list {
  display: grid;
  gap: 13px;
}

.pdl-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, .11);
  padding-top: 13px;
  color: rgba(255, 255, 255, .76);
}

.pdl-status-row strong {
  color: #fff;
}

.pdl-main {
  padding: 84px 0 96px;
}

.pdl-heading {
  max-width: 790px;
  margin: 0 auto 46px;
  text-align: center;
}

.pdl-heading h2 {
  margin: 0 0 15px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.pdl-heading p {
  margin: 0;
  color: var(--pdl-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.pdl-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pdl-product-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--pdl-line);
  border-radius: var(--pdl-radius);
  background: var(--pdl-card);
  box-shadow: 0 16px 44px rgba(16, 24, 40, .07);
}

.pdl-product-top {
  min-height: 170px;
  padding: 28px;
  background: linear-gradient(145deg, #151b30, #242e50);
  color: #fff;
}

.pdl-product-card:nth-child(2) .pdl-product-top {
  background: linear-gradient(145deg, #172537, #164c54);
}

.pdl-product-card:nth-child(3) .pdl-product-top {
  background: linear-gradient(145deg, #302316, #5b3c14);
}

.pdl-product-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  color: var(--pdl-gold);
  font-size: 1.45rem;
}

.pdl-product-top h3 {
  margin: 0 0 9px;
  font-size: 1.55rem;
}

.pdl-product-top p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
}

.pdl-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.pdl-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 7px 11px;
  background: #fff5df;
  color: #9a6400;
  font-size: .78rem;
  font-weight: 800;
}

.pdl-list {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.pdl-list li {
  position: relative;
  padding-left: 25px;
  color: #475467;
  line-height: 1.55;
}

.pdl-list li::before {
  position: absolute;
  top: .1em;
  left: 0;
  color: var(--pdl-green);
  font-weight: 900;
  content: "✓";
}

.pdl-note {
  margin-top: auto;
  border-radius: 15px;
  padding: 15px 16px;
  background: #f7f8fa;
  color: #596273;
  font-size: .9rem;
  line-height: 1.55;
}

.pdl-note strong {
  color: var(--pdl-text);
}

.pdl-card-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.pdl-card-actions .pdl-btn {
  width: 100%;
}

.pdl-btn-dark {
  background: var(--pdl-navy);
  color: #fff;
}

.pdl-btn-outline {
  border-color: var(--pdl-line);
  background: #fff;
  color: var(--pdl-navy);
}

.pdl-lifecycle {
  margin-top: 72px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--pdl-navy);
  color: #fff;
}

.pdl-lifecycle-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  padding: 48px;
  align-items: center;
}

.pdl-lifecycle h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.pdl-lifecycle p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
}

.pdl-timeline {
  display: grid;
  gap: 13px;
}

.pdl-time-row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 17px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 16px;
  padding: 15px;
  background: rgba(255, 255, 255, .05);
}

.pdl-time-number {
  color: var(--pdl-gold);
  font-size: 1.15rem;
  font-weight: 900;
  text-align: center;
}

.pdl-time-row strong {
  display: block;
  margin-bottom: 3px;
}

.pdl-time-row span {
  color: rgba(255, 255, 255, .67);
  font-size: .91rem;
  line-height: 1.45;
}

.pdl-credit-section {
  padding-top: 80px;
}

.pdl-credit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

.pdl-credit {
  border: 1px solid var(--pdl-line);
  border-radius: 20px;
  padding: 25px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 34px rgba(16, 24, 40, .055);
}

.pdl-credit strong {
  display: block;
  margin-bottom: 7px;
  color: var(--pdl-navy);
  font-size: 1.65rem;
}

.pdl-credit span {
  display: block;
  min-height: 42px;
  margin-bottom: 19px;
  color: var(--pdl-muted);
  font-size: .9rem;
  line-height: 1.45;
}

.pdl-dashboard {
  margin-top: 78px;
  border: 1px solid var(--pdl-line);
  border-radius: 28px;
  padding: 45px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 24, 40, .07);
}

.pdl-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 48px;
  align-items: center;
}

.pdl-dashboard h2 {
  margin: 0 0 15px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.pdl-dashboard p {
  margin: 0 0 24px;
  color: var(--pdl-muted);
  line-height: 1.7;
}

.pdl-dashboard-panel {
  display: grid;
  gap: 12px;
  border-radius: 20px;
  padding: 23px;
  background: #f5f7fb;
}

.pdl-dashboard-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-radius: 12px;
  padding: 13px 15px;
  background: #fff;
  color: #5b6474;
}

.pdl-dashboard-row strong {
  color: var(--pdl-text);
}

.pdl-fineprint {
  margin-top: 35px;
  color: var(--pdl-muted);
  font-size: .88rem;
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 960px) {

  .pdl-hero-grid,
  .pdl-lifecycle-grid,
  .pdl-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .pdl-product-grid {
    grid-template-columns: 1fr;
  }

  .pdl-credit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .pdl-hero {
    padding: 82px 0 58px;
  }

  .pdl-main {
    padding: 58px 0 72px;
  }

  .pdl-container {
    width: min(100% - 22px, 1180px);
  }

  .pdl-lifecycle-grid,
  .pdl-dashboard {
    padding: 27px 20px;
  }

  .pdl-credit-grid {
    grid-template-columns: 1fr;
  }

  .pdl-time-row {
    grid-template-columns: 60px 1fr;
  }

  .pdl-hero-actions {
    display: grid;
  }

  .pdl-btn {
    width: 100%;
  }
}