.peptides-hero {
  position: relative;
  min-height: calc(100vh - var(--pp-header-height));
  width: 100%;
  background-color: #f6f4f0;
  background-image: url("../assets/home/home-hero-glass-molecules.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #0f1f2d;
  overflow: hidden;
}

.peptides-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 76% 48%, rgba(246, 244, 240, 0.12) 12%, rgba(246, 244, 240, 0.38) 54%, rgba(246, 244, 240, 0.82) 100%),
    linear-gradient(180deg, rgba(246, 244, 240, 0.9) 0%, rgba(246, 244, 240, 0.28) 22%, rgba(246, 244, 240, 0.26) 64%, #f6f4f0 100%),
    linear-gradient(90deg, #f6f4f0 0%, rgba(246, 244, 240, 0.96) 30%, rgba(246, 244, 240, 0.58) 56%, rgba(246, 244, 240, 0.24) 82%, rgba(246, 244, 240, 0.7) 100%);
  pointer-events: none;
}

.peptides-hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (2 * var(--pp-page-gutter))), 1220px);
  min-height: inherit;
  margin: 0 auto;
  padding: 72px 0 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.peptides-hero-copy {
  width: 100%;
  min-width: 0;
}

.peptides-hero-kicker {
  margin: 0 0 clamp(34px, 4vw, 52px);
  color: #cba766;
  font-size: clamp(0.72rem, 0.95vw, 0.92rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.peptides-hero-kicker::after {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  margin: 28px 0 0;
  background: linear-gradient(90deg, transparent, #cba766, transparent);
}

.peptides-hero-title {
  margin: 0;
  color: #0f1f2d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.2rem;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-shadow: none;
}

.peptides-hero-title span {
  display: block;
}

.peptides-hero-title span + span {
  margin-top: 0.14em;
  color: #cba766;
}

.peptides-hero-title::after {
  content: none;
}

.peptides-hero-lede {
  max-width: 820px;
  margin: 38px 0 0;
  color: #0f1f2d;
  font-size: 1.16rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
}

.peptides-assessment-bubble {
  --peptides-button-lift: 0px;
  --peptides-button-scale: 1;
  --peptides-button-arrow-x: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: max-content;
  min-width: min(100%, 236px);
  max-width: 100%;
  min-height: 60px;
  margin-top: clamp(38px, 5vh, 58px);
  padding: 16px 28px;
  border: 1px solid var(--pp-prime-navy);
  border-radius: 999px;
  background: var(--pp-prime-navy);
  color: var(--pp-warm-ivory);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none;
  transform: translateY(var(--peptides-button-lift)) scale(var(--peptides-button-scale));
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.peptides-assessment-bubble span:first-child {
  text-align: left;
}

.peptides-assessment-bubble span:last-child {
  display: inline-block;
  flex-shrink: 0;
  color: var(--pp-prime-gold);
  font-size: 1.3rem;
  transform: translateX(var(--peptides-button-arrow-x));
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.peptides-assessment-bubble:focus-visible {
  outline: 2px solid var(--pp-prime-gold);
  outline-offset: 5px;
  border-color: var(--pp-prime-gold);
  background: #233c50;
  box-shadow: 0 6px 18px rgba(15, 31, 45, 0.12);
}

@media (hover: hover) and (pointer: fine) {
  .peptides-assessment-bubble:hover {
    --peptides-button-lift: -3px;
    --peptides-button-arrow-x: 4px;
    border-color: var(--pp-prime-gold);
    background: #233c50;
    box-shadow: 0 8px 22px rgba(15, 31, 45, 0.16);
  }
}

.peptides-assessment-bubble:active {
  --peptides-button-lift: 0px;
  --peptides-button-scale: 0.98;
  box-shadow: 0 2px 6px rgba(15, 31, 45, 0.12);
}

.peptides-bottom-cta {
  display: flex;
  justify-content: center;
  padding: clamp(20px, 3vw, 42px) var(--pp-page-gutter) clamp(72px, 8vw, 112px);
  background: var(--pp-warm-ivory);
}

.peptides-bottom-cta .peptides-assessment-bubble {
  margin-top: 0;
}

.peptides-how {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: clamp(84px, 9vw, 132px) clamp(22px, 5vw, 76px);
  background: var(--pp-black);
  color: var(--pp-black);
}

.peptides-how::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 34%, rgba(203, 167, 102, 0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 26%, rgba(246, 244, 240, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 83% 72%, rgba(203, 167, 102, 0.12) 0 1px, transparent 2px),
    linear-gradient(105deg, transparent 0 28%, rgba(203, 167, 102, 0.045) 28.15%, transparent 28.3% 100%),
    linear-gradient(74deg, transparent 0 61%, rgba(246, 244, 240, 0.03) 61.1%, transparent 61.25% 100%);
  opacity: 0.62;
}

.peptides-how::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(203, 167, 102, 0.35) 12%,
      rgba(203, 167, 102, 0.85) 50%,
      rgba(203, 167, 102, 0.35) 88%,
      transparent 100%
    );
  box-shadow: 0 0 12px rgba(203, 167, 102, 0.18);
}

.peptides-how-inner {
  position: relative;
  z-index: 1;
  width: min(87vw, 1500px);
  margin: 0 auto;
  padding: clamp(34px, 4vw, 58px) clamp(42px, 5vw, 76px);
  border: 1px solid rgba(203, 167, 102, 0.2);
  border-radius: clamp(22px, 2.2vw, 34px);
  background:
    radial-gradient(circle at 72% 16%, rgba(203, 167, 102, 0.1), transparent 34%),
    radial-gradient(circle at 16% 76%, rgba(154, 120, 58, 0.055), transparent 38%),
    linear-gradient(135deg, rgba(246, 244, 240, 0.98), rgba(221, 234, 245, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 22px 58px rgba(0, 0, 0, 0.22),
    0 0 46px rgba(203, 167, 102, 0.12);
}

.peptides-how-heading {
  width: min(100%, 1220px);
  max-width: 1220px;
  margin: 0 auto clamp(26px, 2.6vw, 40px);
  text-align: left;
}

.peptides-how-heading > * {
  max-width: 760px;
}

.peptides-how-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 clamp(22px, 2.4vw, 32px);
  color: var(--pp-gold);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(0.72rem, 0.75vw, 0.84rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.peptides-how-kicker span {
  display: block;
  width: clamp(34px, 3.4vw, 48px);
  height: 1px;
  background: var(--pp-gold);
}

.peptides-how-heading h2 {
  margin: 0;
  color: #0f1f2d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.42rem, 5vw, 5.25rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(154, 120, 58, 0.14);
}

.peptides-how-title-line {
  display: block;
  white-space: nowrap;
}

.peptides-how-title-accent {
  color: var(--pp-gold);
  font-style: italic;
}

.peptides-how-title-bridge {
  color: #0f1f2d;
}

.peptides-how-support {
  max-width: 660px;
  margin: clamp(22px, 2vw, 28px) 0 0;
  color: rgba(15, 31, 45, 0.76);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.62;
}

.peptides-how-experience {
  --active-step: 0;
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
}

.peptides-roadmap-stage {
  position: relative;
  overflow: visible;
  min-height: clamp(330px, 29vw, 400px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.peptides-roadmap-viewport {
  position: relative;
  min-height: clamp(330px, 29vw, 400px);
  padding: clamp(22px, 3vw, 36px);
}

.peptides-roadmap-svg {
  position: absolute;
  inset: clamp(24px, 3vw, 38px);
  width: calc(100% - clamp(48px, 6vw, 76px));
  height: calc(100% - clamp(48px, 6vw, 76px));
  overflow: visible;
}

.peptides-roadmap-path,
.peptides-roadmap-progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.peptides-roadmap-path {
  stroke: rgba(154, 120, 58, 0.22);
  stroke-width: 4;
}

.peptides-roadmap-progress {
  stroke: var(--pp-gold);
  stroke-width: 4.5;
  filter: drop-shadow(0 0 9px rgba(203, 167, 102, 0.24));
  transition: stroke-dashoffset 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.peptides-roadmap-pulse {
  fill: var(--pp-gold);
  opacity: 0.8;
  filter: drop-shadow(0 0 10px rgba(203, 167, 102, 0.42));
  transition:
    cx 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    cy 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms ease;
}

.peptides-roadmap-steps {
  position: absolute;
  inset: clamp(24px, 3vw, 38px);
  z-index: 3;
}

.peptides-roadmap-step {
  position: absolute;
  top: var(--y);
  left: var(--x);
  display: block;
  width: 0;
  height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0f1f2d;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.peptides-roadmap-step:focus-visible {
  outline: none;
}

.peptides-roadmap-marker {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: clamp(28px, 2.7vw, 38px);
  height: clamp(28px, 2.7vw, 38px);
  place-items: center;
  border: 1.5px solid rgba(203, 167, 102, 0.78);
  border-radius: 3px;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 253, 248, 0.72), transparent 44%),
    linear-gradient(145deg, #ead6a7, #cba766 72%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 248, 0.34),
    0 8px 18px rgba(70, 43, 13, 0.16);
  transform: translate(-50%, -50%) rotate(45deg);
  transition:
    border-color 320ms ease,
    box-shadow 320ms ease,
    filter 320ms ease,
    transform 320ms ease;
}

.peptides-roadmap-marker::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(203, 167, 102, 0.44);
  border-radius: 1px;
  transition:
    border-color 420ms ease,
    box-shadow 420ms ease;
}

.peptides-roadmap-marker span {
  position: relative;
  z-index: 1;
  width: clamp(6px, 0.62vw, 8px);
  height: clamp(6px, 0.62vw, 8px);
  border-radius: 50%;
  background: var(--pp-prime-navy);
  box-shadow:
    0 0 0 2px rgba(255, 253, 248, 0.28),
    0 0 8px rgba(203, 167, 102, 0.34);
}

.peptides-roadmap-step.is-active .peptides-roadmap-marker,
.peptides-roadmap-step:hover .peptides-roadmap-marker,
.peptides-roadmap-step:focus-visible .peptides-roadmap-marker {
  filter: drop-shadow(0 0 16px rgba(203, 167, 102, 0.46));
  transform: translate(-50%, -50%) rotate(45deg) scale(1.12);
}

.peptides-roadmap-step.is-active .peptides-roadmap-marker::before,
.peptides-roadmap-step:hover .peptides-roadmap-marker::before,
.peptides-roadmap-step:focus-visible .peptides-roadmap-marker::before {
  border-color: var(--pp-gold);
  box-shadow: inset 0 0 7px rgba(203, 167, 102, 0.18);
}

.peptides-roadmap-step.is-active .peptides-roadmap-marker,
.peptides-roadmap-step:hover .peptides-roadmap-marker,
.peptides-roadmap-step:focus-visible .peptides-roadmap-marker {
  border-color: var(--pp-gold);
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 253, 248, 0.82), transparent 44%),
    linear-gradient(145deg, #f0dfb9, #b9873d 72%);
  box-shadow:
    inset 0 0 0 1px rgba(246, 244, 240, 0.12),
    0 0 18px rgba(203, 167, 102, 0.2),
    0 10px 22px rgba(15, 31, 45, 0.24);
}

.peptides-roadmap-label {
  position: absolute;
  top: clamp(24px, 2.7vw, 38px);
  left: 0;
  width: max-content;
  color: rgba(15, 31, 45, 0.62);
  font-family: Inter, Arial, sans-serif;
  line-height: 1;
  text-align: center;
  transform: translate(-50%, 0);
  transition:
    color 320ms ease,
    opacity 320ms ease,
    transform 320ms ease;
}

.peptides-roadmap-label span {
  display: block;
  color: var(--pp-gold);
  font-size: clamp(0.67rem, 0.76vw, 0.8rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.peptides-roadmap-step.is-active .peptides-roadmap-label,
.peptides-roadmap-step:hover .peptides-roadmap-label,
.peptides-roadmap-step:focus-visible .peptides-roadmap-label {
  color: #0f1f2d;
  opacity: 1;
}

.peptides-roadmap-step:not(.is-active) .peptides-roadmap-label {
  opacity: 0.78;
}

.peptides-roadmap-details {
  position: relative;
  display: grid;
  max-width: 1220px;
  margin: clamp(12px, 1.2vw, 18px) auto 0;
}

.peptides-roadmap-panel {
  grid-area: 1 / 1;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: clamp(176px, 14vw, 220px);
  padding: clamp(24px, 2.8vw, 38px);
  border: 1px solid rgba(154, 120, 58, 0.24);
  border-radius: clamp(18px, 2vw, 24px);
  background:
    radial-gradient(circle at 82% 18%, rgba(203, 167, 102, 0.11), transparent 32%),
    linear-gradient(145deg, rgba(255, 251, 241, 0.92), rgba(231, 221, 202, 0.76)),
    rgba(235, 225, 206, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 22px 52px rgba(70, 43, 13, 0.12);
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 400ms ease,
    transform 400ms ease,
    visibility 0s linear 400ms;
}

.peptides-roadmap-panel[hidden] {
  display: block;
}

.peptides-roadmap-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.peptides-roadmap-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(203, 167, 102, 0.66), transparent);
}

.peptides-roadmap-panel-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 clamp(12px, 1.4vw, 18px);
  color: var(--pp-gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.peptides-roadmap-panel-step::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pp-gold);
  box-shadow: 0 0 14px rgba(203, 167, 102, 0.42);
}

.peptides-roadmap-panel h3 {
  max-width: 780px;
  margin: 0 0 clamp(12px, 1.4vw, 18px);
  color: #0f1f2d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1;
}

.peptides-roadmap-panel p:last-child {
  max-width: 820px;
  margin: 0;
  color: rgba(15, 31, 45, 0.78);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(0.98rem, 1.12vw, 1.14rem);
  line-height: 1.68;
}

.peptides-how-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1220px;
  margin: clamp(18px, 2vw, 28px) auto 0;
  position: relative;
  z-index: 2;
}

.peptides-how-cta .peptides-assessment-bubble {
  margin: 0 auto;
}

.peptides-measure {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: clamp(90px, 9vw, 140px) clamp(20px, 4vw, 56px) clamp(90px, 10vw, 150px);
  background: var(--pp-black);
  color: var(--pp-black);
}

.peptides-measure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(203, 167, 102, 0.35) 12%,
      rgba(203, 167, 102, 0.85) 50%,
      rgba(203, 167, 102, 0.35) 88%,
      transparent 100%
    );
  box-shadow: 0 0 12px rgba(203, 167, 102, 0.18);
  pointer-events: none;
}

.peptides-measure-inner {
  position: relative;
  z-index: 1;
  width: min(87vw, 1500px);
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(42px, 5vw, 76px);
  border: 1px solid rgba(203, 167, 102, 0.2);
  border-radius: clamp(22px, 2.2vw, 34px);
  background:
    radial-gradient(circle at 72% 16%, rgba(203, 167, 102, 0.1), transparent 34%),
    radial-gradient(circle at 16% 76%, rgba(154, 120, 58, 0.055), transparent 38%),
    linear-gradient(135deg, rgba(246, 244, 240, 0.98), rgba(221, 234, 245, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 22px 58px rgba(0, 0, 0, 0.22),
    0 0 46px rgba(203, 167, 102, 0.12);
}

.peptides-measure-heading {
  max-width: 700px;
  margin-bottom: clamp(52px, 6vw, 84px);
  text-align: left;
}

.peptides-measure-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 clamp(22px, 2.4vw, 32px);
  color: var(--pp-gold);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(0.72rem, 0.75vw, 0.84rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.peptides-measure-kicker span {
  display: block;
  width: clamp(34px, 3.4vw, 48px);
  height: 1px;
  background: var(--pp-gold);
}

.peptides-measure-heading h2 {
  margin: 0;
  color: #0f1f2d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 5.8vw, 6.6rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
}

.peptides-measure-heading h2 span {
  display: block;
}

.peptides-measure-heading h2 span:last-child {
  color: var(--pp-gold);
  font-style: italic;
}

.peptides-measure-subcopy {
  max-width: 680px;
  margin: clamp(28px, 3vw, 42px) 0 0;
  color: rgba(15, 31, 45, 0.78);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1rem, 1.08vw, 1.18rem);
  font-weight: 500;
  line-height: 1.62;
}

.peptides-measure-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.95fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

.peptides-measure-card,
.peptides-measure-metric {
  border: 1px solid rgba(154, 120, 58, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.82), rgba(231, 222, 207, 0.72)),
    #eef2f3;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 24px 56px rgba(28, 22, 12, 0.13);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.peptides-measure-card:hover,
.peptides-measure-metric:hover,
.peptides-measure-body:hover {
  border-color: rgba(154, 120, 58, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 30px 70px rgba(28, 22, 12, 0.18);
  transform: translateY(-4px);
}

.peptides-measure-trend {
  display: flex;
  min-height: clamp(420px, 35vw, 560px);
  flex-direction: column;
  border-radius: 24px;
  padding: clamp(28px, 3vw, 44px);
}

.peptides-measure-trend-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.peptides-measure-card-kicker {
  margin: 0 0 12px;
  color: rgba(15, 31, 45, 0.42);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.peptides-measure-trend h3,
.peptides-measure-body-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.peptides-measure-trend h3 {
  color: #152c3e;
  font-size: clamp(1.55rem, 2vw, 2.35rem);
  line-height: 1.05;
}

.peptides-measure-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(203, 167, 102, 0.2);
  color: #2a4b64;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
}

.peptides-measure-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pp-gold);
  box-shadow: 0 0 12px rgba(203, 167, 102, 0.42);
}

.peptides-measure-chart {
  display: flex;
  min-height: 250px;
  flex: 1;
  align-items: center;
  padding: clamp(20px, 3vw, 42px) 0 clamp(14px, 2vw, 24px);
}

.peptides-measure-chart svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.peptides-measure-gridline {
  stroke: rgba(15, 31, 45, 0.16);
  stroke-width: 1;
}

.peptides-measure-area {
  opacity: 0;
  animation: peptidesMeasureFade 1.4s ease 0.35s forwards;
}

.peptides-measure-line {
  fill: none;
  stroke: var(--pp-gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(203, 167, 102, 0.28));
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: peptidesMeasureDraw 1.8s ease forwards;
}

.peptides-measure-dot {
  fill: var(--pp-gold);
  opacity: 0;
  transform: scale(0.72);
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 0 10px rgba(203, 167, 102, 0.36));
  transition:
    filter 220ms ease,
    transform 220ms ease;
  animation: peptidesMeasureDot 700ms ease forwards;
}

.peptides-measure-dot-1 {
  animation-delay: 0.3s;
}

.peptides-measure-dot-2 {
  animation-delay: 0.62s;
}

.peptides-measure-dot-3 {
  animation-delay: 0.94s;
}

.peptides-measure-dot-4 {
  animation-delay: 1.22s;
}

.peptides-measure-trend:hover .peptides-measure-dot {
  filter: drop-shadow(0 0 15px rgba(203, 167, 102, 0.58));
  transform: scale(1.12);
}

.peptides-measure-trend-footer {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: clamp(18px, 2vw, 26px);
  border-top: 1px solid rgba(15, 31, 45, 0.12);
  color: rgba(15, 31, 45, 0.54);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(0.9rem, 0.94vw, 1rem);
  line-height: 1.4;
  flex-wrap: wrap;
}

.peptides-measure-trend-footer strong {
  color: rgba(15, 31, 45, 0.78);
  font-weight: 800;
}

.peptides-measure-trend-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-gold);
}

.peptides-measure-trend-icon svg,
.peptides-measure-metric-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.peptides-measure-body {
  position: relative;
  min-height: clamp(420px, 35vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(203, 167, 102, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 48% 18%, rgba(246, 244, 240, 0.19), transparent 26%),
    radial-gradient(circle at 64% 38%, rgba(203, 167, 102, 0.15), transparent 38%),
    radial-gradient(circle at 26% 24%, rgba(86, 122, 155, 0.18), transparent 34%),
    linear-gradient(148deg, #2a4b64 0%, var(--pp-prime-navy) 38%, var(--pp-black) 100%);
  box-shadow:
    inset 0 1px 0 rgba(246, 244, 240, 0.08),
    0 24px 56px rgba(28, 22, 12, 0.18);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.peptides-measure-body::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background:
    linear-gradient(180deg, transparent, rgba(15, 31, 45, 0.55) 34%, rgba(15, 31, 45, 0.9)),
    radial-gradient(circle at 18% 72%, rgba(15, 31, 45, 0.72), transparent 48%);
  pointer-events: none;
}

.peptides-measure-body-visual {
  position: absolute;
  inset: 0;
  opacity: 0.96;
}

.peptides-measure-body-visual::before {
  content: "";
  position: absolute;
  inset: 6% 4% 18%;
  border-radius: 46% 54% 40% 60%;
  background:
    radial-gradient(circle at 50% 28%, rgba(246, 244, 240, 0.22), transparent 30%),
    radial-gradient(circle at 48% 46%, rgba(86, 122, 155, 0.22), transparent 52%),
    radial-gradient(circle, rgba(203, 167, 102, 0.12), transparent 72%);
  filter: blur(12px);
}

.peptides-measure-body-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(246, 244, 240, 0.26) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(203, 167, 102, 0.2) 0 1px, transparent 1.6px);
  background-position:
    12px 18px,
    52px 41px;
  background-size:
    58px 64px,
    86px 78px;
  opacity: 0.32;
  mask-image: radial-gradient(circle at 54% 35%, black 0%, transparent 72%);
  pointer-events: none;
}

.peptides-measure-body-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 30%;
  filter:
    saturate(0.94)
    contrast(1.04)
    brightness(0.84);
  transform: scale(1.02);
  transition:
    filter 240ms ease,
    transform 240ms ease;
}

.peptides-measure-body-copy {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 3vw, 36px);
  bottom: clamp(24px, 3vw, 36px);
  left: clamp(24px, 3vw, 36px);
}

.peptides-measure-body-copy p:first-child {
  margin: 0 0 12px;
  color: var(--pp-gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.peptides-measure-body-copy h3 {
  color: var(--pp-cream);
  font-size: clamp(1.65rem, 2.2vw, 2.55rem);
  line-height: 1;
}

.peptides-measure-body-copy p:last-child {
  max-width: 320px;
  margin: 16px 0 0;
  color: var(--pp-cream-muted);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(0.92rem, 0.95vw, 1rem);
  line-height: 1.55;
}

.peptides-measure-body:hover .peptides-measure-body-image {
  filter:
    saturate(1)
    contrast(1.08)
    brightness(0.9);
  transform: scale(1.045);
}

.peptides-measure-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  margin-top: clamp(18px, 2vw, 28px);
}

.peptides-measure-metric {
  min-height: 210px;
  border-radius: 22px;
  padding: clamp(24px, 2.4vw, 34px);
}

.peptides-measure-metric-icon {
  display: inline-flex;
  margin-bottom: clamp(26px, 3vw, 38px);
  color: var(--pp-gold);
}

.peptides-measure-metric-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.peptides-measure-metric-head p {
  margin: 0;
  color: rgba(15, 31, 45, 0.46);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.peptides-measure-metric-head strong {
  flex: 0 0 auto;
  color: var(--pp-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.7vw, 2rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.peptides-measure-metric > p {
  margin: 0;
  color: rgba(15, 31, 45, 0.62);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(0.92rem, 0.98vw, 1rem);
  line-height: 1.58;
}

.peptides-measure-note {
  max-width: 720px;
  margin: clamp(34px, 4vw, 52px) 0 0;
  color: rgba(15, 31, 45, 0.56);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(0.82rem, 0.86vw, 0.94rem);
  line-height: 1.55;
}

@keyframes peptidesMeasureDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes peptidesMeasureFade {
  to {
    opacity: 1;
  }
}

@keyframes peptidesMeasureDot {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.peptides-fit {
  padding: clamp(72px, 8vw, 120px) 0;
  color: var(--pp-prime-navy);
}

.peptides-fit-inner {
  width: min(calc(100% - var(--pp-page-gutter) * 2), var(--pp-shell-max));
  margin: 0 auto;
}

.peptides-fit-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.peptides-fit-heading h2 span {
  display: block;
  color: var(--pp-gold);
  font-style: italic;
}

.peptides-fit-copy {
  max-width: 1000px;
  margin: clamp(24px, 3vw, 36px) 0 0;
  color: rgba(15, 31, 45, 0.78);
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  font-weight: 400;
  line-height: 1.75;
}

.peptides-fit-feature {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 0;
  align-items: center;
  margin-top: clamp(36px, 5vw, 72px);
  overflow: hidden;
  background: var(--pp-warm-ivory);
}

.peptides-fit-feature-image {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 auto;
  width: 64%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.peptides-fit-feature--detail .peptides-fit-feature-image {
  object-position: right center;
}

.peptides-fit-feature::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, #f6f4f0, rgba(246, 244, 240, 0) 10%, rgba(246, 244, 240, 0) 90%, #f6f4f0),
    linear-gradient(90deg, #f6f4f0 0%, rgba(246, 244, 240, 0.96) 18%, rgba(246, 244, 240, 0.8) 32%, rgba(246, 244, 240, 0) 57%, rgba(246, 244, 240, 0) 94%, rgba(246, 244, 240, 0.35));
  pointer-events: none;
}

.peptides-fit-feature-copy {
  width: 42%;
  max-width: 560px;
  padding: clamp(24px, 2.5vw, 36px) 0;
}

.peptides-fit-feature-copy h3 {
  margin: 0;
  color: var(--pp-prime-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.65vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.peptides-fit-feature-copy p {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(15, 31, 45, 0.82);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  font-weight: 400;
  line-height: 1.7;
}

@media (min-width: 901px) {
  .peptides-fit-feature--detail .peptides-fit-feature-image {
    mask-image: linear-gradient(90deg, transparent, #000 25%);
  }

  .peptides-fit-feature--reverse .peptides-fit-feature-image {
    right: auto;
    left: 0;
    transform: scaleX(-1);
  }

  .peptides-fit-feature--reverse::after {
    transform: scaleX(-1);
  }

  .peptides-fit-feature--reverse .peptides-fit-feature-copy {
    margin-left: auto;
  }
}

@media (max-width: 900px) {
  .peptides-fit-feature {
    min-height: 0;
    align-items: start;
    margin-top: 28px;
    padding-bottom: 360px;
  }

  .peptides-fit-feature-image {
    inset: auto 0 0;
    width: 100%;
    height: 360px;
    object-position: 72% center;
  }

  .peptides-fit-feature--physician .peptides-fit-feature-image {
    object-position: 80% center;
  }

  .peptides-fit-feature--detail {
    padding-bottom: 280px;
  }

  .peptides-fit-feature--detail .peptides-fit-feature-image {
    height: 280px;
    object-position: 76% center;
  }

  .peptides-fit-feature--performance .peptides-fit-feature-image {
    object-position: 90% center;
  }

  .peptides-fit-feature::after {
    inset: auto 0 0;
    height: 360px;
    background: linear-gradient(180deg, #f6f4f0, rgba(246, 244, 240, 0) 18%, rgba(246, 244, 240, 0) 83%, #f6f4f0);
  }

  .peptides-fit-feature--detail::after {
    height: 280px;
  }

  .peptides-fit-feature-copy {
    width: 100%;
    max-width: 680px;
    padding: 28px 0 0;
  }

  .peptides-fit-feature-copy h3 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .peptides-fit-feature-copy p {
    max-width: none;
    margin-top: 20px;
  }

}

.peptides-faq {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: clamp(78px, 8vw, 118px) clamp(20px, 4vw, 56px) clamp(88px, 9vw, 132px);
  background:
    radial-gradient(circle at 50% 58%, rgba(203, 167, 102, 0.18) 0%, rgba(203, 167, 102, 0.08) 24%, transparent 58%),
    radial-gradient(circle at 50% 42%, rgba(15, 31, 45, 0.86) 0%, rgba(15, 31, 45, 0.24) 36%, transparent 64%),
    radial-gradient(circle at 13% 14%, rgba(203, 167, 102, 0.08) 0%, transparent 34%),
    radial-gradient(circle at 87% 20%, rgba(246, 244, 240, 0.035) 0%, transparent 28%),
    linear-gradient(135deg, var(--pp-black) 0%, var(--pp-black) 38%, var(--pp-prime-navy) 100%);
  color: var(--pp-cream);
}

.peptides-faq::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(203, 167, 102, 0.35) 12%,
      rgba(203, 167, 102, 0.85) 50%,
      rgba(203, 167, 102, 0.35) 88%,
      transparent 100%
    );
  box-shadow: 0 0 12px rgba(203, 167, 102, 0.18);
  pointer-events: none;
}

.peptides-faq::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(203, 167, 102, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 20%, rgba(246, 244, 240, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 72%, rgba(203, 167, 102, 0.09) 0 1px, transparent 2px),
    linear-gradient(108deg, transparent 0 24%, rgba(203, 167, 102, 0.038) 24.1%, transparent 24.22% 100%),
    linear-gradient(72deg, transparent 0 68%, rgba(203, 167, 102, 0.034) 68.08%, transparent 68.2% 100%),
    linear-gradient(90deg, rgba(15, 31, 45, 0.62), transparent 20%, transparent 80%, rgba(15, 31, 45, 0.62)),
    linear-gradient(180deg, rgba(15, 31, 45, 0.34), transparent 22%, transparent 76%, rgba(15, 31, 45, 0.54));
  opacity: 0.66;
}

.peptides-faq-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.peptides-faq-heading {
  max-width: 840px;
  margin: 0 auto clamp(42px, 5vw, 66px);
  text-align: center;
}

.peptides-faq-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(20px, 2vw, 28px);
  color: var(--pp-gold);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(0.76rem, 0.85vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.peptides-faq-kicker span {
  display: block;
  width: 44px;
  height: 1px;
  flex: 0 0 44px;
  background: var(--pp-gold);
}

.peptides-faq-heading h2 {
  margin: 0 0 clamp(18px, 2vw, 26px);
  color: var(--pp-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.25vw, 4.72rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 20px 56px rgba(0, 0, 0, 0.42);
}

.peptides-faq-support {
  max-width: 760px;
  margin: 0;
  color: var(--pp-cream-muted);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.65;
}

.peptides-faq-list {
  display: grid;
  gap: clamp(12px, 1.4vw, 18px);
}

.peptides-faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--pp-gold-faint);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(246, 244, 240, 0.058), rgba(246, 244, 240, 0.012)),
    linear-gradient(145deg, rgba(15, 31, 45, 0.62), rgba(15, 31, 45, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(246, 244, 240, 0.08),
    0 20px 58px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(203, 167, 102, 0.028);
  transition: border-color 90ms linear;
}

.peptides-faq-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(203, 167, 102, 0.54), transparent);
  opacity: 0.58;
}

.peptides-faq-item:hover,
.peptides-faq-item:focus-within,
.peptides-faq-item.is-open {
  border-color: rgba(203, 167, 102, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(246, 244, 240, 0.1),
    0 26px 72px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(203, 167, 102, 0.11);
}

.peptides-faq-item h3 {
  margin: 0;
}

.peptides-faq-question {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: clamp(62px, 5.6vw, 76px);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(18px, 2vw, 24px) clamp(20px, 3vw, 34px);
  border: 0;
  background: transparent;
  color: var(--pp-cream);
  cursor: pointer;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
  text-align: left;
  touch-action: manipulation;
  transition: color 80ms linear;
  -webkit-tap-highlight-color: transparent;
}

.peptides-faq-question:hover,
.peptides-faq-question:focus-visible,
.peptides-faq-item.is-open .peptides-faq-question {
  color: var(--pp-gold);
}

.peptides-faq-question:focus-visible {
  outline: 1px solid rgba(203, 167, 102, 0.64);
  outline-offset: -8px;
}

.peptides-faq-icon {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pp-gold-soft);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, rgba(203, 167, 102, 0.14), transparent 54%),
    linear-gradient(180deg, rgba(15, 31, 45, 0.9), rgba(15, 31, 45, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(246, 244, 240, 0.1),
    0 0 20px rgba(203, 167, 102, 0.15);
  transition:
    border-color 80ms linear,
    box-shadow 80ms linear,
    transform 80ms linear;
}

.peptides-faq-icon::before,
.peptides-faq-icon::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 1px;
  border-radius: 999px;
  background: var(--pp-gold);
  box-shadow: 0 0 8px rgba(203, 167, 102, 0.28);
  transition: transform 55ms linear;
}

.peptides-faq-icon::after {
  transform: rotate(90deg);
}

.peptides-faq-item:hover .peptides-faq-icon,
.peptides-faq-question:focus-visible .peptides-faq-icon,
.peptides-faq-item.is-open .peptides-faq-icon {
  border-color: rgba(203, 167, 102, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(246, 244, 240, 0.13),
    0 0 28px rgba(203, 167, 102, 0.24);
  transform: scale(1.04);
}

.peptides-faq-item.is-open .peptides-faq-icon::after {
  transform: rotate(0deg);
}

.peptides-faq-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 75ms cubic-bezier(0.2, 0.75, 0.3, 1),
    opacity 50ms linear;
}

.peptides-faq-item.is-open .peptides-faq-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.peptides-faq-answer {
  min-height: 0;
  overflow: hidden;
}

.peptides-faq-answer p {
  max-width: 900px;
  margin: 0;
  padding: 0 clamp(20px, 3vw, 34px) clamp(22px, 2.5vw, 30px);
  color: var(--pp-cream-muted);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(0.94rem, 1vw, 1.04rem);
  font-weight: 400;
  line-height: 1.7;
}

.home-final-panel {
  position: relative;
  width: 100%;
  min-height: clamp(650px, 58vw, 860px);
  padding: clamp(72px, 8vw, 120px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 58%, rgba(203, 167, 102, 0.18) 0%, rgba(203, 167, 102, 0.08) 24%, transparent 58%),
    radial-gradient(circle at 50% 42%, rgba(15, 31, 45, 0.86) 0%, rgba(15, 31, 45, 0.24) 36%, transparent 64%),
    radial-gradient(circle at 13% 14%, rgba(203, 167, 102, 0.08) 0%, transparent 34%),
    radial-gradient(circle at 87% 20%, rgba(246, 244, 240, 0.035) 0%, transparent 28%),
    linear-gradient(135deg, var(--pp-black) 0%, var(--pp-black) 38%, var(--pp-prime-navy) 100%);
}

.home-final-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(203, 167, 102, 0.35) 12%,
      rgba(203, 167, 102, 0.85) 50%,
      rgba(203, 167, 102, 0.35) 88%,
      transparent 100%
    );
  box-shadow: 0 0 12px rgba(203, 167, 102, 0.18);
  pointer-events: none;
}

.home-final-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 34%, rgba(203, 167, 102, 0.11) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 26%, rgba(246, 244, 240, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 83% 72%, rgba(203, 167, 102, 0.1) 0 1px, transparent 2px),
    linear-gradient(105deg, transparent 0 28%, rgba(203, 167, 102, 0.045) 28.15%, transparent 28.3% 100%),
    linear-gradient(74deg, transparent 0 61%, rgba(203, 167, 102, 0.035) 61.1%, transparent 61.25% 100%),
    linear-gradient(90deg, rgba(15, 31, 45, 0.64), transparent 20%, transparent 80%, rgba(15, 31, 45, 0.64)),
    linear-gradient(180deg, rgba(15, 31, 45, 0.48), transparent 22%, transparent 76%, rgba(15, 31, 45, 0.58));
  opacity: 0.7;
}

.home-social-follow {
  position: absolute;
  top: clamp(38px, 4.8vw, 70px);
  left: 15%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 24px);
  padding: 12px clamp(18px, 2vw, 26px);
  color: var(--pp-cream);
  font-family: var(--pp-font-body);
  font-size: clamp(0.78rem, 0.85vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-social-follow::before,
.home-social-follow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 56px;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(203, 167, 102, 0.32) 18%,
      rgba(203, 167, 102, 0.9) 50%,
      rgba(203, 167, 102, 0.32) 82%,
      transparent 100%
    );
  box-shadow: 0 0 14px rgba(203, 167, 102, 0.3);
  transform: translateY(-50%);
}

.home-social-follow::before {
  left: 0;
}

.home-social-follow::after {
  right: 0;
}

.home-social-label {
  color: rgba(248, 244, 233, 0.88);
  white-space: nowrap;
}

.home-social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(203, 167, 102, 0.42);
  border-radius: 50%;
  background: rgba(15, 31, 45, 0.36);
  color: #cba766;
  text-decoration: none;
  transition:
    border-color 240ms ease,
    color 240ms ease,
    transform 240ms ease,
    background-color 240ms ease;
}

.home-social-links a:hover,
.home-social-links a:focus-visible {
  border-color: rgba(203, 167, 102, 0.82);
  background: rgba(203, 167, 102, 0.1);
  color: var(--pp-cream);
  transform: translateY(-2px);
}

.home-social-links svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.home-social-links svg rect,
.home-social-links svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.home-legal-container {
  position: relative;
  z-index: 1;
  width: min(90%, 1200px);
  margin: 0 auto;
  color: rgba(248, 244, 233, 0.82);
  font-family: var(--pp-font-body);
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  line-height: 1.8;
  text-align: left;
  transform: translateY(clamp(42px, 6vh, 58px));
}

.home-legal-container p {
  margin: 0;
}

.home-legal-container p + p {
  margin-top: clamp(10px, 1vw, 16px);
}

.home-legal-copyright {
  color: var(--pp-cream);
  font-weight: 600;
}

.home-final-logo {
  position: absolute;
  top: calc(clamp(38px, 4.8vw, 70px) + 31px);
  right: 22%;
  left: auto;
  z-index: 1;
  width: clamp(180px, 16vw, 240px);
  height: auto;
  transform: translateY(-50%);
}

@keyframes peptidesTimelinePulse {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  14%,
  76% {
    opacity: 1;
  }

  100% {
    transform: translateX(calc(min(1180px, 100vw) - clamp(60px, 9vw, 130px) - 25vw));
    opacity: 0;
  }
}

@keyframes peptidesNodeGlow {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(246, 244, 240, 0.12),
      inset 0 0 18px rgba(203, 167, 102, 0.12),
      0 0 22px rgba(203, 167, 102, 0.2),
      0 0 48px rgba(203, 167, 102, 0.08);
  }

  50% {
    box-shadow:
      inset 0 1px 0 rgba(246, 244, 240, 0.14),
      inset 0 0 22px rgba(203, 167, 102, 0.16),
      0 0 30px rgba(203, 167, 102, 0.3),
      0 0 62px rgba(203, 167, 102, 0.13);
  }
}

@keyframes peptidesCardReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .peptides-hero {
    background-size: cover;
    background-position: 62% center;
  }

  .peptides-hero-content {
    width: min(calc(100% - (2 * var(--pp-page-gutter))), 1220px);
  }

  .peptides-hero-copy {
    width: 100%;
    min-width: 0;
  }

  .peptides-hero-title {
    font-size: 5.25rem;
  }

  .peptides-how-experience {
    grid-template-columns: 1fr;
    gap: clamp(28px, 7vw, 46px);
  }

  .peptides-how-cta {
    grid-template-columns: 1fr;
  }

  .peptides-roadmap-stage,
  .peptides-roadmap-viewport {
    min-height: clamp(430px, 58vw, 520px);
  }

  .peptides-how-feature {
    min-height: clamp(390px, 66vw, 520px);
  }

  .peptides-how-timeline {
    min-height: auto;
    padding-left: clamp(34px, 8vw, 56px);
  }

  .peptides-measure-dashboard {
    grid-template-columns: 1fr;
  }

  .peptides-measure-inner {
    width: min(88vw, 980px);
  }

  .peptides-measure-metrics {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .peptides-faq-heading {
    max-width: 720px;
  }
}

@media (max-width: 767px) {
  .peptides-hero-title {
    font-size: 4rem;
  }

  .peptides-hero-lede {
    font-size: 1rem;
  }
}

@media (max-width: 700px) {
  .peptides-measure-metrics {
    grid-template-columns: 1fr;
  }

  .peptides-how-title-line {
    white-space: normal;
  }

  .peptides-roadmap-stage,
  .peptides-roadmap-viewport {
    min-height: 560px;
  }

  .peptides-roadmap-svg {
    inset: 28px 18px;
    width: calc(100% - 36px);
    height: calc(100% - 56px);
  }

  .peptides-roadmap-steps {
    inset: 28px 18px;
  }

  .peptides-roadmap-label {
    top: 26px;
    right: auto;
    bottom: auto;
    left: 50%;
    text-align: center;
    transform: translate(-50%, 0);
  }

  .peptides-faq-question {
    gap: 18px;
  }

  .home-social-follow {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    width: min(88%, 420px);
    justify-content: center;
    margin: 0 auto clamp(28px, 8vw, 44px);
  }

  .home-final-logo {
    position: static;
    display: block;
    width: min(78%, 300px);
    margin: clamp(64px, 14vw, 88px) auto 0;
    transform: none;
  }
}

@media (max-width: 560px) {
  .peptides-how {
    padding: 72px 18px;
  }

  .peptides-how-heading {
    text-align: left;
  }

  .peptides-how-inner {
    width: min(100%, 520px);
    padding: 28px 18px;
    border-radius: 18px;
  }

  .peptides-how-heading h2 {
    font-size: clamp(2.28rem, 11vw, 3.28rem);
  }

  .peptides-how-support {
    font-size: 0.96rem;
  }

  .peptides-roadmap-stage,
  .peptides-roadmap-viewport {
    min-height: 640px;
  }

  .peptides-roadmap-marker {
    width: 30px;
    height: 30px;
  }

  .peptides-roadmap-label {
    top: 24px;
  }

  .peptides-roadmap-label span {
    font-size: 0.64rem;
  }

  .peptides-roadmap-panel {
    min-height: 0;
    padding: 26px 20px;
  }

  .peptides-roadmap-panel h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .peptides-roadmap-panel p:last-child {
    font-size: 0.95rem;
  }

  .peptides-how-cta .peptides-assessment-bubble {
    width: 100%;
  }

  .peptides-how-feature {
    min-height: 430px;
    border-radius: 14px;
  }

  .peptides-how-feature-panel {
    padding: 34px 26px;
  }

  .peptides-how-feature-panel h3 {
    font-size: clamp(2.1rem, 11vw, 3rem);
    margin-bottom: 16px;
  }

  .peptides-how-feature-panel > p:not(.peptides-how-step-label) {
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .peptides-how-timeline {
    padding-left: 20px;
  }

  .peptides-how-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding-right: 4px;
    padding-left: 4px;
  }

  .peptides-how-node {
    width: 48px;
    height: 48px;
  }

  .peptides-how-timeline::before,
  .peptides-how-timeline::after {
    left: 28px;
  }

  .peptides-measure {
    padding: 72px 18px 82px;
  }

  .peptides-measure-inner {
    width: 100%;
    padding: 28px 18px;
    border-radius: 18px;
  }

  .peptides-measure-heading h2 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .peptides-measure-trend,
  .peptides-measure-body {
    min-height: 390px;
    border-radius: 18px;
  }

  .peptides-measure-trend {
    padding: 26px 22px;
  }

  .peptides-measure-trend-header,
  .peptides-measure-metric-head,
  .peptides-measure-trend-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .peptides-measure-status {
    margin-top: 0;
  }

  .peptides-measure-chart {
    min-height: 210px;
  }

  .peptides-measure-metric {
    min-height: 0;
    border-radius: 18px;
    padding: 24px 22px;
  }

  .peptides-faq {
    padding: 72px 18px 82px;
  }

  .peptides-faq-heading {
    text-align: left;
  }

  .peptides-faq-kicker {
    margin-right: 0;
    margin-left: 0;
  }

  .peptides-faq-question {
    min-height: 62px;
    padding: 18px;
    font-size: 0.98rem;
  }

  .peptides-faq-icon {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .peptides-faq-answer p {
    padding-right: 18px;
    padding-left: 18px;
  }

  .home-final-panel {
    min-height: 0;
    padding: 72px 0 82px;
  }

  .home-social-follow {
    gap: 14px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .home-legal-container {
    width: min(88%, 560px);
    font-size: 0.9rem;
    line-height: 1.68;
    transform: none;
  }
}

/* Peptide education panel */
.peptides-how {
  padding-right: 0;
  padding-left: 0;
}

.peptides-how .peptides-how-inner {
  width: min(calc(100% - (2 * var(--pp-page-gutter))), 1220px);
  margin-top: clamp(28px, 3vw, 44px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.peptides-therapy-intro {
  width: min(100%, 1220px);
  margin: 0 auto;
  text-align: left;
}

.peptides-therapy-intro .peptides-how-kicker {
  margin-bottom: clamp(20px, 2.2vw, 30px);
}

.peptides-therapy-intro h2 {
  max-width: 900px;
  margin: 0;
  color: var(--pp-prime-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 6vw, 6.2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.peptides-therapy-copy {
  max-width: 980px;
  margin: clamp(24px, 3vw, 38px) 0 0;
  color: rgba(15, 31, 45, 0.78);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.7;
}

.peptides-therapy-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin: clamp(54px, 6vw, 84px) 0 0;
  padding: 0;
  list-style: none;
}

.peptides-therapy-pillars li {
  min-width: 0;
  min-height: 0;
  padding: clamp(20px, 1.8vw, 28px) clamp(18px, 2vw, 28px);
  border: 1px solid rgba(154, 120, 58, 0.26);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.82), rgba(231, 222, 207, 0.72)),
    #eef2f3;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 24px 56px rgba(28, 22, 12, 0.13);
  text-align: center;
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.peptides-therapy-pillars li:hover {
  border-color: rgba(154, 120, 58, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 30px 70px rgba(28, 22, 12, 0.18);
  transform: translateY(-4px);
}

.peptides-therapy-icon {
  display: grid;
  place-items: center;
  width: clamp(82px, 7vw, 108px);
  height: clamp(82px, 7vw, 108px);
  margin: 0 auto 22px;
  color: var(--pp-gold);
}

.peptides-therapy-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.peptides-therapy-pillars h3 {
  margin: 0;
  color: var(--pp-prime-navy);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.3;
}

.peptides-therapy-pillars p {
  max-width: 260px;
  margin: 12px auto 0;
  color: rgba(15, 31, 45, 0.7);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.58;
}

.peptides-trust-heading {
  max-width: 1060px;
  margin-top: clamp(86px, 10vw, 140px);
  text-align: left;
}

.peptides-trust-heading .peptides-how-kicker {
  margin-bottom: clamp(20px, 2.2vw, 30px);
}

.peptides-trust-heading h2 {
  margin: 0;
  color: var(--pp-prime-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 5.5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.peptides-trust-heading h2 span {
  display: block;
}

.peptides-trust-heading h2 span:last-child {
  margin-top: 0.08em;
  color: var(--pp-gold);
  font-style: italic;
}

.peptides-trust-heading > p:last-child {
  max-width: 980px;
  margin: clamp(24px, 3vw, 38px) 0 0;
  color: rgba(15, 31, 45, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.7;
}

.peptides-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  margin-top: clamp(40px, 5vw, 64px);
}

.peptides-trust-card {
  position: relative;
  min-height: clamp(430px, 39vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(203, 167, 102, 0.52);
  border-radius: 24px;
  background: linear-gradient(155deg, #fffdf8 0%, #f3ecdf 100%);
  box-shadow: 0 24px 56px rgba(86, 67, 35, 0.14);
  color: var(--pp-prime-navy);
}

.peptides-trust-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 6%, rgba(247, 241, 230, 0.12) 30%, rgba(247, 241, 230, 0.98) 52%, #f3ecdf 100%);
  pointer-events: none;
}

.peptides-trust-card img {
  width: 100%;
  height: 58%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.03);
}

.peptides-trust-card:last-child img {
  object-position: center 30%;
}

.peptides-trust-card-copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(22px, 2.5vw, 34px);
  text-align: left;
}

.peptides-trust-kicker {
  margin: 0 0 14px;
  color: var(--pp-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.peptides-trust-card-copy h3 {
  margin: 0;
  color: var(--pp-prime-navy);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1.45rem, 2.15vw, 2.1rem);
  font-weight: 400;
  line-height: 1.15;
}

.peptides-trust-card-copy h3 span {
  color: var(--pp-gold);
}

.peptides-trust-card-copy > p:last-child {
  margin: 13px 0 0;
  color: rgba(15, 31, 45, 0.78);
  font-size: clamp(0.94rem, 1.15vw, 1.06rem);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .peptides-therapy-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .peptides-trust-grid {
    grid-template-columns: 1fr;
  }

  .peptides-trust-card {
    min-height: 500px;
  }
}

/* Keep the care pillars and clinical cards swipeable on phones and smaller tablets. */
@media (max-width: 980px), (max-width: 1000px) and (max-height: 560px) and (hover: none) and (pointer: coarse) {
  .peptides-therapy-pillars,
  .peptides-trust-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(84%, 320px);
    gap: 16px;
    padding-block: 6px 28px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--pp-prime-gold) rgba(203, 167, 102, 0.15);
  }

  .peptides-therapy-pillars {
    margin-top: 44px;
  }

  .peptides-therapy-pillars:focus-visible,
  .peptides-trust-grid:focus-visible {
    outline: 2px solid var(--pp-prime-gold);
    outline-offset: 4px;
  }

  .peptides-therapy-pillars li,
  .peptides-therapy-pillars li:hover {
    display: block;
    min-height: 0;
    scroll-snap-align: start;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.7),
      0 8px 18px rgba(28, 22, 12, 0.1);
    transform: none;
  }

  .peptides-trust-card {
    scroll-snap-align: start;
    box-shadow: 0 8px 18px rgba(86, 67, 35, 0.1);
  }
}

@media (max-width: 560px) {
  .peptides-how .peptides-how-inner {
    width: min(calc(100% - (2 * var(--pp-page-gutter))), 1220px);
    margin-top: 18px;
    padding: 0;
  }

  .peptides-therapy-intro h2 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .peptides-therapy-copy {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .peptides-trust-heading {
    margin-top: 72px;
  }

  .peptides-trust-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .peptides-therapy-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
  }

  .peptides-therapy-pillars p {
    margin-top: 8px;
  }

  .peptides-trust-card {
    min-height: 460px;
    border-radius: 18px;
  }

  .peptides-trust-card-copy {
    padding: 26px 22px;
  }
}

@media (max-width: 480px) {
  .peptides-hero-content {
    padding-top: 56px;
    padding-bottom: 88px;
  }

  .peptides-hero-title {
    font-size: 2.9rem;
  }

  .peptides-hero-lede {
    margin-top: 24px;
    font-size: 0.96rem;
    line-height: 1.58;
  }
}

@keyframes peptidesTimelinePulseMobile {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  14%,
  76% {
    opacity: 1;
  }

  100% {
    transform: translateY(520px);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .peptides-assessment-bubble,
  .peptides-assessment-bubble span:last-child {
    transform: none;
    transition: none;
  }

  .peptides-how-timeline::after,
  .peptides-how-node,
  .peptides-how-step {
    animation: none;
  }

  .peptides-how-feature-panel,
  .peptides-how-timeline::after,
  .peptides-how-node,
  .peptides-how-step,
  .peptides-roadmap-progress,
  .peptides-roadmap-pulse,
  .peptides-roadmap-marker,
  .peptides-roadmap-label,
  .peptides-roadmap-panel,
  .peptides-roadmap-step,
  .timeline-step-icon,
  .peptides-measure-card,
  .peptides-measure-metric,
  .peptides-measure-body,
  .peptides-measure-dot,
  .peptides-faq-item,
  .peptides-faq-question,
  .peptides-faq-icon,
  .peptides-faq-icon::before,
  .peptides-faq-icon::after,
  .peptides-faq-panel {
    transition: none;
  }

  .peptides-how-step:hover .timeline-step-icon,
  .peptides-how-step:focus-within .timeline-step-icon,
  .peptides-how-step:hover,
  .peptides-how-step:focus-visible,
  .peptides-how-step.is-active,
  .peptides-roadmap-step.is-active .peptides-roadmap-marker,
  .peptides-roadmap-step:hover .peptides-roadmap-marker,
  .peptides-roadmap-step:focus-visible .peptides-roadmap-marker,
  .peptides-roadmap-panel.is-active,
  .peptides-measure-card:hover,
  .peptides-measure-metric:hover,
  .peptides-measure-body:hover,
  .peptides-faq-item:hover .peptides-faq-icon,
  .peptides-faq-question:focus-visible .peptides-faq-icon,
  .peptides-faq-item.is-open .peptides-faq-icon,
  .home-social-links a:hover,
  .home-social-links a:focus-visible {
    transform: none;
  }

  .peptides-measure-line,
  .peptides-measure-area,
  .peptides-measure-dot,
  .peptides-roadmap-progress,
  .peptides-roadmap-pulse {
    animation: none;
    opacity: 1;
    stroke-dashoffset: 0;
    transform: scale(1);
  }
}
body > main,
body > main > section:not(.peptides-hero) {
  background: transparent !important;
}

/* Continuous ivory peptides canvas */
body.pp-dark-spotlight-canvas,
body.pp-dark-spotlight-canvas > main {
  background-color: #f6f4f0 !important;
}

.peptides-how,
.peptides-measure,
.peptides-faq,
.home-final-panel {
  background: transparent !important;
  color: #0f1f2d;
}

.peptides-how::before,
.peptides-how::after,
.peptides-measure::before,
.peptides-faq::before,
.peptides-faq::after,
.home-final-panel::before,
.home-final-panel::after {
  content: none !important;
}

.peptides-how-inner,
.peptides-measure-inner {
  width: min(90vw, 1500px);
  padding-right: 0;
  padding-left: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

@media (min-width: 901px) {
  .peptides-measure {
    padding-right: clamp(22px, 5vw, 76px);
    padding-left: clamp(22px, 5vw, 76px);
  }

  .peptides-measure-inner {
    width: min(100%, 1500px);
    margin-right: auto;
    margin-left: auto;
  }

  .peptides-measure-heading {
    width: min(100%, 1220px);
    max-width: 1220px;
    margin-right: auto;
    margin-left: auto;
  }

  .peptides-measure-dashboard {
    width: min(100%, 1220px);
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.85fr);
  }

  .peptides-measure-metrics {
    width: min(100%, 1220px);
    margin-right: auto;
    margin-left: auto;
  }

  .peptides-measure-note {
    width: min(100%, 1220px);
    max-width: 1220px;
    margin-right: auto;
    margin-left: auto;
  }
}

.peptides-faq-heading {
  text-align: left;
  margin-right: 0;
  margin-left: 0;
}

.peptides-faq-heading h2,
.peptides-faq-question {
  color: #0f1f2d;
  text-shadow: none;
}

.peptides-faq-support {
  color: rgba(15, 31, 45, 0.76);
}

.peptides-faq-item {
  border-color: rgba(154, 120, 58, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 252, 245, 0.9), rgba(231, 222, 207, 0.72)),
    #f6f4f0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 48px rgba(28, 22, 12, 0.1);
}

.peptides-faq-item:hover,
.peptides-faq-item:focus-within,
.peptides-faq-item.is-open {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 22px 58px rgba(28, 22, 12, 0.14);
}

.peptides-faq-icon {
  border-color: rgba(203, 167, 102, 0.68);
  background: rgba(255, 253, 248, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 7px 16px rgba(15, 31, 45, 0.1);
}

.peptides-faq-icon::before,
.peptides-faq-icon::after {
  background: #0f1f2d;
  box-shadow: none;
}

.peptides-faq-item:hover .peptides-faq-icon,
.peptides-faq-question:focus-visible .peptides-faq-icon,
.peptides-faq-item.is-open .peptides-faq-icon {
  border-color: #cba766;
  background: #cba766;
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 248, 0.42),
    0 9px 20px rgba(70, 43, 13, 0.16);
}

.peptides-faq-item:hover .peptides-faq-icon::before,
.peptides-faq-item:hover .peptides-faq-icon::after,
.peptides-faq-question:focus-visible .peptides-faq-icon::before,
.peptides-faq-question:focus-visible .peptides-faq-icon::after,
.peptides-faq-item.is-open .peptides-faq-icon::before,
.peptides-faq-item.is-open .peptides-faq-icon::after {
  background: #0f1f2d;
}

.peptides-faq-answer p {
  color: rgba(15, 31, 45, 0.76);
}

.home-social-follow,
.home-social-label,
.home-legal-container,
.home-legal-copyright {
  color: #0f1f2d;
}

.home-social-links a {
  background: rgba(246, 244, 240, 0.78);
}

@media (max-width: 560px) {
  .peptides-hero {
    background-position: 66% center;
  }

  .peptides-hero::before {
    background:
      linear-gradient(180deg, rgba(246, 244, 240, 0.66) 0%, rgba(246, 244, 240, 0.28) 28%, #f6f4f0 68%),
      linear-gradient(90deg, rgba(246, 244, 240, 0.84) 0%, rgba(246, 244, 240, 0.42) 68%, rgba(246, 244, 240, 0.72) 100%);
  }

  .peptides-how-inner,
  .peptides-measure-inner {
    width: min(92vw, 1500px);
  }
}

/* Use the homepage treatment heading's left edge; retain existing widths. */
.peptides-hero-content,
.peptides-how .peptides-how-inner {
  margin-inline-start: max(var(--pp-page-gutter), calc((100% - 1440px) / 2));
  margin-inline-end: 0;
}

.peptides-measure { --peptides-measure-side: clamp(20px, 4vw, 56px); }
.peptides-faq { --peptides-faq-side: clamp(20px, 4vw, 56px); }

.peptides-faq-inner {
  margin-inline-start: calc(max(var(--pp-page-gutter), (100% + var(--peptides-faq-side) * 2 - 1440px) / 2) - var(--peptides-faq-side));
  margin-inline-end: 0;
}

@media (min-width: 901px) {
  .peptides-measure { --peptides-measure-side: clamp(22px, 5vw, 76px); }

  .peptides-measure-inner {
    left: calc(max(var(--pp-page-gutter), (100% + var(--peptides-measure-side) * 2 - 1440px) / 2) - max(var(--peptides-measure-side), (100% + var(--peptides-measure-side) * 2 - 1220px) / 2));
  }
}

@media (max-width: 900px) {
  .peptides-measure-inner {
    margin-inline-start: calc(var(--pp-page-gutter) - var(--peptides-measure-side));
    margin-inline-end: 0;
  }
}

@media (max-width: 560px) {
  .peptides-measure { --peptides-measure-side: 18px; }
  .peptides-faq { --peptides-faq-side: 18px; }
}
