:root {
  --tt-in-dur:150ms; --tt-out-dur:50ms; --tt-scale:.98; --tt-delay:80ms;
  --tt-in-ease:ease-out; --tt-out-ease:ease-out; --tt-bg:#fff; --tt-fg:#2f2f2f;
}
.t-tt-wrap {position:relative;display:inline-block;}
.t-tt {position:absolute;bottom:calc(100% + 8px);left:50%;transform:translate(-50%,0) scale(var(--tt-scale));transform-origin:50% 100%;padding:8px 12px;border-radius:8px;background:var(--tt-bg);color:var(--tt-fg);white-space:nowrap;box-shadow:0 0 0 1px rgba(0,0,0,.06),0 2px 6px 0 rgba(0,0,0,.05),0 4px 42px 0 rgba(0,0,0,.06);opacity:0;pointer-events:none;transition:opacity var(--tt-out-dur) var(--tt-out-ease),transform var(--tt-out-dur) var(--tt-out-ease);}
.t-tt-wrap:hover .t-tt,.t-tt-trigger:focus-visible + .t-tt {opacity:1;transform:translate(-50%,0) scale(1);transition-duration:var(--tt-in-dur);transition-timing-function:var(--tt-in-ease);transition-delay:var(--tt-delay);}
@media(prefers-reduced-motion:reduce){.t-tt{transition:none!important;}}

.product-page {
  --product-line: rgba(13, 53, 45, 0.18);
  --product-muted: #566a63;
  --product-accent: #a83a1f;
}

.product-page .reveal,
.product-page .reveal--delay {
  transform: none;
  opacity: 1;
  transition: none;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-block: 1rem 0.4rem;
  color: var(--product-muted);
  font-size: 0.76rem;
}

.product-breadcrumb a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--forest-700);
  text-underline-offset: 0.2em;
}

.product-breadcrumb [aria-current="page"] {
  color: var(--forest-900);
  font-weight: 700;
}

.product-hero {
  display: grid;
  gap: 1.75rem;
  padding-block: 0.75rem 3.5rem;
}

.product-visual {
  order: 2;
  margin: 0;
}

.product-visual__field {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--product-line);
  border-radius: 1.25rem;
  background: #f6f1e6;
}

.product-visual__field::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 0.45rem rgba(255, 255, 255, 0.22);
  content: "";
}

.product-visual img,
.arrival-board__image img {
  display: block;
  width: 100%;
  height: auto;
}

.product-visual figcaption {
  margin: 0.65rem 0 0;
  color: var(--product-muted);
  font-size: 0.7rem;
}

.product-ingredients-panel {
  margin-top: 0.8rem;
}

.product-ingredients__intro {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 0.55rem;
  margin: 0 0 0.7rem;
  color: var(--forest-900);
  font-size: 0.84rem;
  font-weight: 680;
  line-height: 1.4;
}

.product-ingredients__intro span {
  color: var(--product-muted);
  font-size: 0.68rem;
  font-weight: 500;
}

.product-ingredients {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-ingredients li {
  min-width: 0;
  color: var(--forest-800);
}

.product-ingredients .t-tt-wrap {
  display: block;
  width: 100%;
}

.ingredient-pill {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 6.25rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 0.65rem;
  border: 1px solid var(--product-line);
  border-radius: 0.85rem;
  background: rgba(255, 253, 247, 0.88);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: help;
  transition: border-color 150ms ease-out, background 150ms ease-out, transform 150ms ease-out;
}

.ingredient-pill:hover,
.ingredient-pill:focus-visible {
  border-color: rgba(168, 58, 31, 0.55);
  background: var(--white);
  transform: translateY(-2px);
  outline: none;
}

.ingredient-pill:focus-visible {
  box-shadow: 0 0 0 3px rgba(242, 109, 61, 0.2);
}

.ingredient-pill i {
  position: absolute;
  top: 0.52rem;
  right: 0.52rem;
  display: grid;
  width: 1.1rem;
  height: 1.1rem;
  place-items: center;
  border: 1px solid rgba(18, 63, 52, 0.28);
  border-radius: 50%;
  color: var(--forest-700);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 750;
}

.product-ingredients strong {
  padding-right: 1rem;
  color: var(--forest-900);
  font-size: clamp(0.67rem, 3vw, 0.8rem);
  font-weight: 700;
  line-height: 1.2;
}

.product-ingredients strong span {
  display: block;
  margin-top: 0.28rem;
  color: var(--action);
  font-size: 0.72rem;
  font-weight: 750;
}

.product-ingredients small {
  color: var(--product-muted);
  font-size: clamp(0.58rem, 2.5vw, 0.68rem);
  line-height: 1.25;
}

.product-ingredients .t-tt {
  z-index: 10;
  width: min(15rem, calc(100vw - 2rem));
  color: var(--forest-900);
  font-size: 0.68rem;
  font-weight: 550;
  line-height: 1.4;
  text-align: left;
  white-space: normal;
}

.product-ingredients li:first-child .t-tt {
  left: 0;
  transform: translate(0,0) scale(var(--tt-scale));
  transform-origin: 0 100%;
}

.product-ingredients li:first-child .t-tt-wrap:hover .t-tt,
.product-ingredients li:first-child .t-tt-trigger:focus-visible + .t-tt {
  transform: translate(0,0) scale(1);
}

.product-ingredients li:last-child .t-tt {
  right: 0;
  left: auto;
  transform: translate(0,0) scale(var(--tt-scale));
  transform-origin: 100% 100%;
}

.product-ingredients li:last-child .t-tt-wrap:hover .t-tt,
.product-ingredients li:last-child .t-tt-trigger:focus-visible + .t-tt {
  transform: translate(0,0) scale(1);
}

.product-purchase {
  order: 1;
  align-self: center;
}

.product-status-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.product-status-pills > span {
  display: inline-flex;
  min-height: 1.75rem;
  align-items: center;
  padding: 0.38rem 0.65rem;
  border: 1px solid rgba(18, 63, 52, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.82);
  color: var(--forest-700);
  font-size: 0.6rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.product-status-pills .product-status-pills__delivery {
  border-color: rgba(168, 58, 31, 0.24);
  background: var(--peach);
  color: var(--action-dark);
}

.product-purchase h1 {
  max-width: none;
  margin-bottom: 0.9rem;
  font-size: clamp(2.55rem, 12vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.product-purchase h1 strong {
  color: var(--forest-700);
  font-weight: 500;
}

.product-wordmark__tick {
  color: var(--orange-dark);
  font-weight: 700;
}

.product-subtitle {
  max-width: 37rem;
  margin-bottom: 1rem;
  color: var(--product-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.product-offer {
  margin-bottom: 1rem;
  padding-block: 0.85rem;
  border-block: 1px solid var(--product-line);
}

.product-price__label {
  margin: 0 0 0.55rem;
  color: var(--forest-700);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-price {
  display: flex;
  align-items: flex-end;
  gap: 0.7rem;
  margin: 0;
}

.product-price__amount {
  color: var(--forest-900);
  font-size: clamp(3rem, 14vw, 4.5rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.product-price__amount sup {
  position: relative;
  top: -0.2em;
  margin-right: 0.08em;
  font-size: 0.42em;
  letter-spacing: 0;
}

.product-price__currency {
  padding-bottom: 0.1rem;
  color: var(--forest-700);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
}

.product-delivery-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.75rem 0 0;
  color: var(--forest-800);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-delivery-line span {
  color: var(--product-accent);
}

.product-purchase__cta {
  width: 100%;
  min-height: 58px;
  padding-inline: 1.3rem;
}

.product-trust {
  display: grid;
  gap: 0;
  margin: 1rem 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--product-line);
  border-radius: 0.9rem;
  background: rgba(255, 253, 247, 0.75);
  list-style: none;
}

.product-trust li {
  position: relative;
  display: grid;
  grid-template-columns: 1.7rem minmax(0, 1fr);
  min-width: 0;
  align-items: center;
  gap: 0.1rem 0.65rem;
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--product-line);
}

.product-trust li:last-child {
  border-bottom: 0;
}

.product-trust li > span {
  grid-row: 1 / 3;
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border: 1px solid rgba(168, 58, 31, 0.28);
  border-radius: 50%;
  background: var(--peach);
  color: var(--product-accent);
  font-size: 0.55rem;
  font-weight: 750;
}

.product-trust strong {
  color: var(--forest-900);
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1.2;
}

.product-trust small {
  color: var(--product-muted);
  font-size: 0.62rem;
  line-height: 1.3;
}

.product-purchase__fine {
  margin: 0.9rem 0 0;
  color: var(--product-muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.product-facts {
  border-block: 1px solid rgba(251, 248, 239, 0.12);
  background: var(--forest-900);
  color: var(--paper);
}

.product-facts__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-facts__grid div {
  min-width: 0;
  padding: 1.15rem 0.8rem;
  border-right: 1px solid rgba(251, 248, 239, 0.1);
  border-bottom: 1px solid rgba(251, 248, 239, 0.1);
}

.product-facts__grid div:nth-child(2n) {
  border-right: 0;
}

.product-facts__grid span,
.product-facts__grid strong {
  display: block;
}

.product-facts__grid span {
  margin-bottom: 0.35rem;
  color: #a9bf9e;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-facts__grid strong {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
}

.product-facts__grid small {
  display: block;
  margin-top: 0.45rem;
  color: #bfd0b5;
  font-size: 0.66rem;
  line-height: 1.45;
}

.product-facts__delivery {
  background: rgba(242, 109, 61, 0.08);
}

.product-facts__delivery strong {
  color: #ffd9c6;
}

.formula-section,
.what-arrives,
.product-faq {
  padding-block: 4.8rem;
}

.formula-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.formula-heading h2,
.what-arrives__heading h2,
.product-faq__heading h2,
.access-copy h2,
.clinical-leadership__copy h2 {
  font-size: clamp(2.7rem, 11vw, 5rem);
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.formula-heading > p:last-child {
  max-width: 42rem;
  color: var(--product-muted);
}

.product-clarity {
  display: grid;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--product-line);
  border-radius: 1rem;
  background: rgba(255, 253, 247, 0.72);
}

.product-clarity__item {
  padding: 1.3rem;
}

.product-clarity__item + .product-clarity__item {
  border-top: 1px solid var(--product-line);
}

.product-clarity__item--limit {
  background: var(--cream);
}

.product-clarity__item > p {
  margin: 0 0 0.65rem;
  color: var(--forest-700);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-clarity__item h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.3rem, 6vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.product-clarity__item span {
  display: block;
  color: var(--product-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.ingredient-grid {
  display: grid;
  gap: 0.85rem;
}

.ingredient-card {
  position: relative;
  min-height: 14rem;
  padding: clamp(1.2rem, 4vw, 1.5rem);
  overflow: hidden;
  border: 1px solid var(--product-line);
  background: rgba(255, 253, 247, 0.62);
}

.ingredient-card::after {
  position: absolute;
  right: -2.5rem;
  bottom: -3.5rem;
  width: 9rem;
  height: 9rem;
  border: 1px solid rgba(151, 173, 132, 0.3);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.7rem transparent, inset 0 0 0 1.75rem rgba(151, 173, 132, 0.22), inset 0 0 0 3.4rem transparent, inset 0 0 0 3.45rem rgba(151, 173, 132, 0.15);
  content: "";
}

.ingredient-card--base {
  background: var(--lichen);
}

.ingredient-card__class {
  margin: 0 0 1.8rem;
  color: var(--product-muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ingredient-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: 550;
  letter-spacing: -0.035em;
}

.ingredient-card__strength {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.ingredient-card__detail {
  position: relative;
  z-index: 1;
  max-width: 16rem;
  margin: 1.4rem 0 0;
  color: var(--product-muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.formula-note {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-top: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--product-line);
  background: var(--cream);
}

.formula-note > span {
  display: grid;
  flex: 0 0 auto;
  width: 1.6rem;
  height: 1.6rem;
  place-items: center;
  border: 1px solid var(--forest-700);
  border-radius: 50%;
  color: var(--forest-700);
  font-size: 0.7rem;
  font-weight: 700;
}

.formula-note p {
  margin: 0;
  color: var(--product-muted);
  font-size: 0.78rem;
}

.formula-note strong {
  color: var(--forest-900);
}

.product-inline-cta {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: 0.9rem;
  background: var(--forest-900);
  color: var(--paper);
}

.product-inline-cta p {
  display: grid;
  gap: 0.25rem;
  margin: 0;
}

.product-inline-cta strong {
  font-size: 1rem;
  line-height: 1.3;
}

.product-inline-cta p span {
  color: #bfd0b5;
  font-size: 0.76rem;
  line-height: 1.4;
}

.product-inline-cta .button {
  min-height: 52px;
}

.access-section {
  position: relative;
  overflow: hidden;
  padding-block: 4.8rem;
  background: var(--forest-950);
  color: var(--paper);
}

.access-section::after {
  position: absolute;
  top: -7rem;
  right: -8rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(151, 173, 132, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3rem transparent, inset 0 0 0 3.05rem rgba(151, 173, 132, 0.18), inset 0 0 0 6.5rem transparent, inset 0 0 0 6.55rem rgba(151, 173, 132, 0.12);
  content: "";
}

.access-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.6rem;
}

.access-copy > p {
  max-width: 34rem;
  color: #bfd0b5;
}

.access-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 700;
  text-underline-offset: 0.28em;
}

.access-cta span {
  color: var(--orange);
}

.access-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.45rem;
  border-top: 1px solid rgba(251, 248, 239, 0.16);
}

.access-steps li > span {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
}

.access-steps small {
  display: block;
  margin-bottom: 0.35rem;
  color: #a9bf9e;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.access-steps h3 {
  margin-bottom: 0.4rem;
  color: var(--paper);
  font-size: 1.35rem;
  font-weight: 550;
}

.access-steps p {
  margin: 0;
  color: #bfd0b5;
  font-size: 0.84rem;
}

.what-arrives__heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.what-arrives__heading > p {
  max-width: 42rem;
  color: var(--product-muted);
}

.arrival-board {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--product-line);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: 0 1.5rem 4rem rgba(8, 42, 36, 0.08);
}

.arrival-board__image {
  overflow: hidden;
  background: #f6f1e6;
}

.arrival-board__image img {
  height: 100%;
  object-fit: cover;
}

.arrival-board__details {
  padding: clamp(1.25rem, 4vw, 1.75rem);
}

.arrival-board__kicker {
  color: var(--forest-700);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.arrival-board__details ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.arrival-board__details li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  padding-block: 1rem;
  border-top: 1px solid var(--product-line);
}

.arrival-board__details li > span {
  color: var(--product-accent);
  font-size: 0.65rem;
  font-weight: 700;
}

.arrival-board__details strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.arrival-board__details li p,
.arrival-board__note {
  margin: 0;
  color: var(--product-muted);
  font-size: 0.78rem;
}

.arrival-board__note {
  padding-top: 1rem;
  border-top: 1px solid var(--product-line);
  font-size: 0.68rem;
}

.clinical-leadership {
  position: relative;
  overflow: hidden;
  padding-block: 4.8rem;
  background: var(--forest-900);
  color: var(--paper);
}

.clinical-leadership::after {
  position: absolute;
  right: -8rem;
  bottom: -8rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(151, 173, 132, 0.24);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3rem var(--forest-900), inset 0 0 0 3.05rem rgba(151, 173, 132, 0.16), inset 0 0 0 6.5rem var(--forest-900), inset 0 0 0 6.55rem rgba(151, 173, 132, 0.1);
  content: "";
}

.clinical-leadership__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
}

.clinical-leadership__portrait {
  max-width: 22rem;
  margin: 0;
}

.clinical-leadership__portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(251, 248, 239, 0.18);
  border-radius: 1rem;
  filter: saturate(0.88) contrast(1.02);
}

.clinical-leadership__portrait figcaption {
  display: grid;
  gap: 0.15rem;
  margin-top: 0.85rem;
}

.clinical-leadership__portrait figcaption strong {
  color: var(--paper);
  font-size: 1.1rem;
}

.clinical-leadership__portrait figcaption span {
  color: #9fb3a5;
  font-size: 0.67rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.clinical-leadership__copy h2 {
  max-width: 12ch;
}

.clinical-leadership__copy > p {
  max-width: 42rem;
  color: #b7c7b9;
}

.clinical-leadership__lede {
  color: var(--paper) !important;
  font-size: clamp(1.15rem, 5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
}

.clinical-leadership__credentials {
  display: grid;
  margin: 1.75rem 0;
  border-top: 1px solid rgba(251, 248, 239, 0.16);
}

.clinical-leadership__credentials div {
  padding-block: 0.9rem;
  border-bottom: 1px solid rgba(251, 248, 239, 0.16);
}

.clinical-leadership__credentials dt {
  margin-bottom: 0.25rem;
  color: #8ea398;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.clinical-leadership__credentials dd {
  margin: 0;
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 600;
}

.clinical-leadership__actions {
  display: grid;
  gap: 0.9rem;
  align-items: center;
}

.clinical-leadership__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.45rem;
  color: #bfd0c2;
  font-size: 0.75rem;
  font-weight: 650;
  text-underline-offset: 0.28em;
}

.clinical-leadership__link span {
  color: var(--orange);
}

.clinical-leadership__note {
  margin: 1rem 0 0;
  color: #91a99f !important;
  font-size: 0.68rem;
  line-height: 1.5;
}

.product-faq {
  padding-top: 0;
}

.product-faq__heading {
  margin-bottom: 2rem;
}

.product-faq__heading > p {
  max-width: 36rem;
  color: var(--product-muted);
}

.product-final-cta .final-cta__copy h2 {
  max-width: 12ch;
}

.product-page .site-footer {
  padding-bottom: 6.5rem;
}

@media (max-width: 639px) {
  .product-page .privacy-choices {
    transition: bottom 0.25s ease;
  }

  .product-page:has(.mobile-cta.is-visible) .privacy-choices {
    bottom: calc(4.9rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 359px) {
  .product-page .privacy-consent {
    gap: 0.55rem;
    padding: 0.75rem;
  }

  .product-page .privacy-consent__title {
    font-size: 0.9rem;
  }

  .product-page .privacy-consent__copy {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .product-page .privacy-consent__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
    margin-top: 0;
  }

  .product-page .privacy-consent__button {
    padding: 0.5rem 0.4rem;
    font-size: 0.68rem;
  }
}

@media (min-width: 640px) {
  .product-hero { padding-block: 2rem 4.5rem; }
  .ingredient-pill { min-height: 6.8rem; padding: 1rem; }
  .product-trust { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-trust li { align-items: flex-start; border-right: 1px solid var(--product-line); border-bottom: 0; }
  .product-trust li:last-child { border-right: 0; }
  .product-clarity { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-clarity__item { padding: 1.6rem; }
  .product-clarity__item + .product-clarity__item { border-top: 0; border-left: 1px solid var(--product-line); }
  .ingredient-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-facts__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .product-facts__grid div,
  .product-facts__grid div:nth-child(2n) { border-right: 1px solid rgba(251, 248, 239, 0.1); border-bottom: 0; }
  .product-facts__grid div:last-child { border-right: 0; }
  .formula-note,
  .arrival-board__details { padding: 2rem; }
  .product-inline-cta { grid-template-columns: minmax(0, 1fr) auto; padding: 1.5rem; }
  .product-inline-cta .button { width: auto; min-width: 13rem; }
  .clinical-leadership__credentials { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .clinical-leadership__credentials div { padding: 1rem; border-right: 1px solid rgba(251, 248, 239, 0.16); }
  .clinical-leadership__credentials div:first-child { padding-left: 0; }
  .clinical-leadership__credentials div:last-child { border-right: 0; }
  .clinical-leadership__actions { grid-template-columns: auto 1fr; }
  .clinical-leadership__actions .button { width: auto; min-width: 13rem; }
}

@media (min-width: 1024px) {
  .product-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
    padding-block: 2.5rem 6rem;
  }
  .product-visual { grid-column: 1; grid-row: 1; }
  .product-purchase { grid-column: 2; grid-row: 1; }
  .product-purchase h1 { font-size: clamp(4rem, 5.7vw, 5.8rem); }
  .product-facts__grid div { padding: 1.4rem 1.2rem; }
  .formula-section,
  .what-arrives,
  .product-faq,
  .access-section,
  .clinical-leadership { padding-block: 7rem; }
  .ingredient-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ingredient-card { min-height: 15.5rem; padding: 1.55rem; }
  .access-grid { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(4rem, 8vw, 8rem); }
  .arrival-board { grid-template-columns: minmax(0, 1.05fr) minmax(25rem, 0.95fr); }
  .clinical-leadership__grid { grid-template-columns: minmax(19rem, 0.65fr) minmax(0, 1.35fr); align-items: center; gap: clamp(4rem, 8vw, 8rem); }
  .clinical-leadership__portrait { max-width: 27rem; }
  .product-page .site-footer { padding-bottom: 3rem; }
}
