/* =========================================================
   Peptós.LIFE, Individual protocol detail page
   Shared across all 6 protocol pages.
   Class prefix: pd-
   ========================================================= */

/* ---------- Hero: full-bleed image with copy stacked left ---------- */
.pd-hero {
  position: relative;
  background: var(--n-void);
  overflow: hidden;
  min-height: 700px;
  display: flex; align-items: flex-end;
  padding-bottom: 0;
}
.pd-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.pd-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% 30%;
  display: block;
}
.pd-hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(1,9,29,0.95) 0%,
      rgba(1,9,29,0.78) 28%,
      rgba(1,9,29,0.20) 60%,
      transparent 85%),
    linear-gradient(180deg,
      rgba(1,9,29,0.40) 0%,
      transparent 25%,
      transparent 60%,
      rgba(1,9,29,0.92) 100%);
}
.pd-hero__inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding: 88px 48px 96px;
  width: 100%;
  display: flex; flex-direction: column;
  align-items: flex-start;
}
.pd-hero__crumbs {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(220,238,255,0.55);
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 10px;
}
.pd-hero__crumbs a { color: rgba(220,238,255,0.55); transition: color 200ms; }
.pd-hero__crumbs a:hover { color: var(--n-glow-300); }
.pd-hero__crumbs span[aria-hidden] { color: rgba(220,238,255,0.25); }
.pd-hero__tier {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 600;
  font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid currentColor;
  margin-bottom: 22px;
}
.pd-hero__tier-dot { width: 8px; height: 8px; border-radius: 999px; }
.pd-hero__kicker {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 12px; letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(220,238,255,0.62);
  margin-bottom: 20px;
}
.pd-hero__title {
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02; letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 28px;
  max-width: 18ch;
}
.pd-hero__title em {
  font-family: var(--font-edit, 'Fraunces', Georgia, serif);
  font-style: italic;
  font-weight: 400;
  color: var(--n-glow-100);
  letter-spacing: -0.02em;
}
.pd-hero__title .pop {
  font-weight: 400;
  color: var(--n-glow-300);
  text-shadow: 0 0 22px rgba(46,114,255,0.55), 0 0 56px rgba(46,114,255,0.25);
}
.pd-hero__lede {
  font-family: var(--font-body); font-weight: 300;
  font-size: 19px; line-height: 1.55;
  color: rgba(220,238,255,0.82);
  margin: 0 0 40px;
  max-width: 640px;
}
.pd-hero__ctas {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}

/* ---------- How-it-works 4-step strip ---------- */
.pd-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
}
.pd-step {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.pd-step:last-child { border-right: 0; }
.pd-step__num {
  font-family: var(--font-edit, 'Fraunces', Georgia, serif);
  font-style: italic;
  font-weight: 400;
  font-size: 30px; line-height: 1;
  color: var(--n-glow-300);
  text-shadow: 0 0 14px rgba(46,114,255,0.4);
  margin-bottom: 16px;
}
.pd-step__t {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 18px; letter-spacing: -0.008em;
  color: #fff;
  margin: 0 0 10px;
}
.pd-step__b {
  font-family: var(--font-body); font-weight: 300;
  font-size: 13.5px; line-height: 1.6;
  color: rgba(220,238,255,0.65);
  margin: 0;
}

/* ---------- Main body: copy + detail two-up ---------- */
.pd-body {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: start;
}
.pd-body__copy { max-width: 580px; }
.pd-body__copy .nam-eyebrow { margin-bottom: 18px; }
.pd-body__para {
  font-family: var(--font-body); font-weight: 300;
  font-size: 17px; line-height: 1.7;
  color: rgba(220,238,255,0.78);
  margin: 0 0 24px;
}
.pd-body__para b { color: var(--n-glow-100); font-weight: 500; }

/* For Whom callout */
.pd-forwhom {
  margin-top: 32px;
  padding: 24px 26px;
  border-radius: 6px;
  border: 1px solid rgba(127,183,255,0.32);
  background: rgba(46,114,255,0.06);
}
.pd-forwhom__lbl {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--n-glow-300);
  margin-bottom: 10px;
}
.pd-forwhom p {
  font-family: var(--font-body); font-weight: 300;
  font-size: 14.5px; line-height: 1.6;
  color: rgba(220,238,255,0.82);
  margin: 0;
}

/* Right-column detail blocks */
.pd-body__detail {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 40px 36px;
}
.pd-block { margin-bottom: 32px; }
.pd-block:last-child { margin-bottom: 0; }
.pd-block__h {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--n-glow-200);
  margin: 0 0 18px;
  display: flex; align-items: center; gap: 12px;
}
.pd-block__h::before {
  content: ""; width: 24px; height: 1px;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(46,114,255,0.6);
}

.pd-incl {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pd-incl:last-child { border-bottom: 0; }
.pd-incl__mk {
  font-family: var(--font-edit, 'Fraunces', Georgia, serif);
  font-style: italic;
  color: var(--n-glow-300);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}
.pd-incl__lab {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 14.5px;
  color: #fff;
  margin-bottom: 4px;
}
.pd-incl__note {
  font-family: var(--font-body); font-weight: 300;
  font-size: 13.5px; line-height: 1.55;
  color: rgba(220,238,255,0.65);
}

.pd-measures { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-measure {
  font-family: var(--font-mono); font-size: 11.5px;
  padding: 6px 12px;
  background: rgba(46,114,255,0.10);
  border: 1px solid rgba(127,183,255,0.22);
  border-radius: 999px;
  color: rgba(220,238,255,0.85);
}

.pd-expect {
  font-family: var(--font-body); font-weight: 300;
  font-size: 14.5px; line-height: 1.65;
  color: rgba(220,238,255,0.75);
  margin: 0;
}
.pd-expect b { color: var(--n-glow-200); font-weight: 500; }

/* ---------- Disclosure section (MLR block) ---------- */
.pd-disclosure-section {
  background: var(--n-void);
  padding: 0 0 64px;
}
.pd-disclosure {
  max-width: 920px; margin: 0 auto;
  padding: 28px 32px;
  border: 1px solid rgba(255,255,255,0.10);
  border-left: 3px solid var(--accent);
  background: rgba(255,255,255,0.025);
  border-radius: 4px;
}
.pd-disclosure__head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.pd-disclosure__icon { color: var(--n-glow-300); flex-shrink: 0; }
.pd-disclosure h4 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--n-glow-200);
  margin: 0;
}
.pd-disclosure p {
  font-family: var(--font-body); font-weight: 300;
  font-size: 13px; line-height: 1.7;
  color: rgba(220,238,255,0.65);
  margin: 0;
}

/* ---------- Siblings: 5 cards for the other protocols ---------- */
.pd-siblings {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.pd-sibling {
  display: flex; flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.025);
  transition: all 240ms;
}
.pd-sibling:hover {
  border-color: rgba(127,183,255,0.45);
  transform: translateY(-3px);
}
.pd-sibling__img {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
}
.pd-sibling__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.pd-sibling:hover .pd-sibling__img img { transform: scale(1.05); }
.pd-sibling__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(1,9,29,0.55) 100%);
}
.pd-sibling__body {
  padding: 18px 18px 20px;
}
.pd-sibling__tier {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-heading); font-weight: 600;
  font-size: 9px; letter-spacing: 0.20em; text-transform: uppercase;
  margin-bottom: 10px;
}
.pd-sibling__name {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 18px; letter-spacing: -0.008em;
  color: #fff;
  margin: 0 0 4px;
}
.pd-sibling__kicker {
  font-family: var(--font-body); font-weight: 300;
  font-size: 12.5px; line-height: 1.45;
  color: rgba(220,238,255,0.55);
  margin-bottom: 14px;
}
.pd-sibling__cta {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--n-glow-300);
}
.pd-sibling:hover .pd-sibling__cta { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .pd-steps { grid-template-columns: repeat(2, 1fr); }
  .pd-step:nth-child(2) { border-right: 0; }
  .pd-step:nth-child(1), .pd-step:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .pd-body { grid-template-columns: 1fr; gap: 48px; }
  .pd-siblings { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .pd-hero { min-height: 600px; }
  .pd-hero__inner { padding: 64px 24px 64px; }
  .pd-steps { grid-template-columns: 1fr; }
  .pd-step { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .pd-step:last-child { border-bottom: 0; }
  .pd-siblings { grid-template-columns: 1fr; }
  .pd-body__detail { padding: 28px 22px; }
}
