:root {
  --px-blue: #4f8f68;
  --px-blue-100: #eef8f1;
  --px-blue-200: #dcefe3;
  --px-blue-500: #99d4ad;
  --px-green: #2f6f54;
  --px-sage: #78ad7f;
  --px-sage-soft: #edf7ee;
  --px-lavender: #a88ac0;
  --px-lavender-soft: #f4edf7;
  --px-amber: #e37c34;
  --px-ivory: #fbf7ee;
  --px-ink: #070707;
  --px-text: #151515;
  --px-muted: #5b5b5b;
  --px-line: #cfcfcf;
  --px-soft-line: rgba(0, 0, 0, 0.12);
  --px-white: #fff;
  --px-radius: 18px;
  --px-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --px-sans: Assistant, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --px-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--px-text);
  font-family: var(--px-sans);
  font-size: 16px;
  line-height: 1.45;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(79, 143, 104, 0.45);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--px-ink);
  font-family: var(--px-serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 12em;
  font-size: clamp(2.7rem, 4.7vw, 4.8rem);
}

h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.8rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

p {
  margin: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  top: 1rem;
  left: 1rem;
  z-index: 999;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  background: #000;
  color: #fff;
}

.px-container {
  width: calc(100% - 32px);
  max-width: 2200px;
  margin-inline: auto;
}

.px-container--narrow {
  width: min(840px, calc(100% - 40px));
  margin-inline: auto;
}

.px-announce {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.45rem 1rem;
  background: #315f42;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
}

.px-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(12px);
}

.px-header__inner {
  display: grid;
  grid-template-columns: minmax(160px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  min-height: 76px;
}

.px-brand {
  color: #000;
  font-family: var(--px-serif);
  font-size: clamp(1.8rem, 2vw, 2.25rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.08em;
  text-decoration: none;
}

.px-nav {
  justify-self: center;
}

.px-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.9rem, 3vw, 2.25rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.px-nav a {
  color: #111;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.px-nav a:hover {
  color: var(--px-blue);
}

.px-header__cta,
.px-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.35rem 1.1rem;
  border: 1.5px solid #111;
  background: rgba(238, 248, 241, 0.82);
  color: #000;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.px-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 46px;
  padding: 0.8rem 1.5rem;
  border: 1px solid #000;
  border-radius: 5px;
  color: #000;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.px-button:hover {
  transform: translateY(-1px);
}

.px-button--dark {
  background: #000;
  color: #fff;
}

.px-button--ghost {
  background: rgba(255, 255, 255, 0.18);
}

.px-button--light {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.px-lacto-hero {
  padding: 16px 0 50px;
  background: linear-gradient(180deg, #fff, var(--px-sage-soft));
}

.px-lacto-hero__frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(680px, 48vw, 900px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 10%, rgba(168, 138, 192, 0.18), transparent 22rem),
    var(--px-sage-soft);
}

.px-lacto-hero__frame > img:not(.px-lacto-hero__product) {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.px-lacto-hero__product {
  position: absolute;
  right: clamp(1.25rem, 3.2vw, 4.5rem);
  bottom: clamp(1.25rem, 3.2vw, 4rem);
  z-index: 2;
  width: min(480px, 27vw);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  box-shadow: 0 34px 100px rgba(22, 61, 38, 0.2);
}

.px-lacto-hero__frame::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(238, 248, 241, 0.94) 0%, rgba(238, 248, 241, 0.8) 35%, rgba(238, 248, 241, 0.12) 68%),
    radial-gradient(circle at 86% 72%, rgba(227, 124, 52, 0.08), transparent 20rem);
  content: "";
}

.px-lacto-hero__copy {
  position: relative;
  z-index: 3;
  width: min(650px, 51%);
  padding: clamp(4rem, 8vw, 8.5rem) 0 3.5rem clamp(2rem, 6vw, 7.5rem);
}

.px-lacto-hero__copy p {
  max-width: 590px;
  margin-top: 1.45rem;
  color: #121212;
  font-size: clamp(1.08rem, 1.35vw, 1.38rem);
  line-height: 1.35;
}

.px-hero__eyebrow {
  margin: 0 !important;
  color: var(--px-green) !important;
  font-size: 0.78rem !important;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.px-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  max-width: 540px;
  padding: 0;
  margin: 1.35rem 0 0;
  color: #1f3d2a;
  font-size: 0.92rem;
  font-weight: 800;
  list-style: none;
}

.px-hero__proof li::before {
  margin-right: 0.42rem;
  color: var(--px-green);
  content: "✦";
}

.px-lacto-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.px-lacto-hero__slider {
  position: absolute;
  right: 42px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.px-lacto-hero__slider span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
}

.px-lacto-hero__slider span:first-child {
  width: 96px;
  height: 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
}

.px-products {
  padding: 6px 0 74px;
  background: #fff;
}

.px-product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.2vw, 1.8rem);
  margin-bottom: 26px;
}

.px-product-tabs a {
  color: #000;
  font-family: var(--px-serif);
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.px-product-tabs a.is-active {
  color: var(--px-green);
}

.px-products__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 20px;
}

.px-products__head h2 {
  font-size: clamp(2.2rem, 3.2vw, 3.7rem);
}

.px-products__head p,
.px-products__note {
  max-width: 520px;
  color: var(--px-muted);
  font-size: 1.04rem;
}

.px-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}

.px-product-card {
  min-width: 0;
}

.px-product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 8%, rgba(168, 138, 192, 0.2), transparent 18rem),
    linear-gradient(135deg, var(--px-sage-soft), var(--px-lavender-soft));
}

.px-product-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.px-product-card:hover .px-product-card__media img {
  transform: scale(1.018);
}

.px-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  padding: 0.2rem 0.72rem;
  border-radius: 999px;
  background: #285d3c;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.px-product-card__category {
  margin-top: 0.9rem;
  color: var(--px-green);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.px-product-card h3 {
  margin-top: 0.2rem;
  font-size: clamp(1.5rem, 2.15vw, 2.25rem);
}

.px-product-card__subtitle {
  min-height: 2.8em;
  margin-top: 0.45rem;
  color: #222;
  font-size: 1rem;
}

.px-product-card__detail {
  min-height: 2.9em;
  margin-top: 0.35rem;
  color: var(--px-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.px-product-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  padding-top: 0.7rem;
  margin-top: 0.9rem;
  border-top: 1px solid #777;
}

.px-product-card__price strong {
  color: #000;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1;
}

.px-product-card__price span {
  color: #777;
  font-size: 1rem;
}

.px-product-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 1rem;
  border: 1.5px solid #111;
  color: #000;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.px-product-card__button:hover {
  background: #000;
  color: #fff;
}

.px-products__note {
  margin-top: 1.35rem;
}

.px-checkout-ready {
  padding: clamp(4.2rem, 7vw, 7rem) 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(168, 138, 192, 0.16), transparent 24rem),
    linear-gradient(135deg, #f8fbf6 0%, #eef8f1 48%, #fbf7ee 100%);
}

.px-checkout-ready__head {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(18rem, 0.94fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
}

.px-checkout-ready__head > p:not(.px-kicker) {
  color: var(--px-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.px-checkout-ready__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.px-checkout-ready__grid article {
  min-height: 250px;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(47, 111, 84, 0.16);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(38, 82, 52, 0.08);
}

.px-checkout-ready__grid span,
.px-demo-card__copy span {
  color: var(--px-green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.px-checkout-ready__grid h3 {
  margin-top: 1rem;
  font-size: clamp(1.55rem, 2.15vw, 2.25rem);
}

.px-checkout-ready__grid p {
  margin-top: 0.85rem;
  color: var(--px-muted);
  font-size: 1.04rem;
}

.px-checkout-ready__note {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(47, 111, 84, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.px-checkout-ready__note p {
  max-width: 760px;
  color: #1f3529;
  font-weight: 800;
}

.px-dossier {
  padding: clamp(4.8rem, 8vw, 7.8rem) 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(168, 138, 192, 0.18), transparent 26rem),
    linear-gradient(180deg, #fff, #f8fbf6 82%);
}

.px-dossier__grid {
  display: grid;
  grid-template-columns: minmax(22rem, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.px-dossier__media {
  overflow: hidden;
  border-radius: 30px;
  background: var(--px-sage-soft);
  box-shadow: 0 30px 100px rgba(18, 52, 31, 0.1);
}

.px-dossier__media img {
  width: 100%;
  min-height: clamp(460px, 48vw, 640px);
  object-fit: cover;
}

.px-dossier__intro {
  max-width: 680px;
  margin-top: 1rem;
  color: var(--px-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.px-dossier__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 2rem 0;
}

.px-dossier__cards article {
  min-height: 210px;
  padding: clamp(1.1rem, 2.4vw, 1.55rem);
  border: 1px solid rgba(47, 111, 84, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.px-dossier__cards span {
  color: var(--px-green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.px-dossier__cards h3 {
  margin-top: 0.75rem;
  font-family: var(--px-sans);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}

.px-dossier__cards p {
  margin-top: 0.65rem;
  color: var(--px-muted);
}

.px-visual-story {
  padding: clamp(4.4rem, 7vw, 7rem) 0;
  background: #fff;
}

.px-visual-story__head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1.05fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(1.6rem, 3vw, 2.5rem);
}

.px-visual-story__head h2 {
  max-width: 760px;
}

.px-visual-story__head > p {
  max-width: 560px;
  color: var(--px-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
}

.px-visual-story__grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 220px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.8vw, 1.2rem);
}

.px-visual-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 220px;
  margin: 0;
  border-radius: 18px;
  background: var(--px-blue-100);
}

.px-visual-tile--large {
  grid-column: span 2;
  grid-row: span 2;
}

.px-visual-tile--wide {
  grid-column: span 2;
}

.px-visual-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.36s ease;
}

.px-visual-tile::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 35%, rgba(0, 0, 0, 0.54) 100%);
  content: "";
}

.px-visual-tile:hover img {
  transform: scale(1.025);
}

.px-visual-tile figcaption {
  position: absolute;
  right: clamp(1rem, 2vw, 1.45rem);
  bottom: clamp(1rem, 2vw, 1.45rem);
  left: clamp(1rem, 2vw, 1.45rem);
  color: #fff;
}

.px-visual-tile figcaption span {
  display: inline-flex;
  padding: 0.22rem 0.66rem;
  background: rgba(255, 255, 255, 0.82);
  color: #1d3d2c;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.px-visual-tile figcaption strong {
  display: block;
  max-width: 560px;
  margin-top: 0.65rem;
  font-family: var(--px-serif);
  font-size: clamp(1.35rem, 2.25vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.03;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.px-availability {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.55), transparent 18rem),
    linear-gradient(100deg, #d9f1df 0%, #94d1a8 48%, #c7ead2 100%);
  text-align: center;
}

.px-availability h2 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(2.5rem, 4.7vw, 5rem);
}

.px-availability p {
  max-width: 720px;
  margin: 1rem auto 0;
  color: #111;
  font-size: 1.15rem;
}

.px-science {
  padding: clamp(4.5rem, 7vw, 7rem) 0 0;
  background: #fff;
}

.px-science__frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(420px, 42vw, 560px);
  border-radius: 18px;
  background: #99d4ad;
}

.px-science__frame img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.px-science__frame::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(67, 126, 82, 0.16);
  content: "";
}

.px-science__copy {
  display: grid;
  place-items: center;
  min-height: inherit;
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0;
  color: #fff;
  text-align: center;
}

.px-science__copy h2 {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.px-science__copy p {
  max-width: 640px;
  margin: 1rem auto 1.55rem;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 700;
}

.px-trust {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background: #fff;
  text-align: center;
}

.px-trust h2 {
  font-style: italic;
}

.px-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.px-trust-card {
  padding: clamp(1.3rem, 3vw, 2.15rem);
  border: 1px solid var(--px-soft-line);
  border-radius: 14px;
  background: #fff;
  text-align: left;
}

.px-trust-card p {
  color: var(--px-blue);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.px-trust-card h3 {
  margin-top: 0.85rem;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.px-trust-card span {
  display: block;
  margin-top: 0.65rem;
  color: var(--px-muted);
}

.px-story {
  padding: clamp(4.2rem, 7vw, 7rem) 0;
  background: #fff;
}

.px-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(22rem, 1.14fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.px-kicker,
.px-eyebrow {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--px-blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.px-story__copy p:last-child {
  margin-top: 1rem;
  color: var(--px-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.px-story__cards {
  display: grid;
  gap: 0.9rem;
}

.px-story__cards article {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--px-soft-line);
  border-radius: 14px;
  background: var(--px-blue-100);
}

.px-story__cards h3 {
  font-family: var(--px-sans);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0;
}

.px-story__cards p {
  margin-top: 0.4rem;
  color: var(--px-muted);
}

.px-story__image {
  width: 100%;
  max-height: 500px;
  margin-top: 2.5rem;
  border-radius: 18px;
  object-fit: cover;
}

.px-safety-section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background: #f8fdff;
}

.px-safety-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(22rem, 1.12fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.px-section-copy {
  max-width: 620px;
  margin-top: 1rem;
  color: var(--px-muted);
  font-size: 1.12rem;
}

.px-section-heading {
  max-width: 900px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.px-section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  max-width: none;
}

.px-section-heading--split > p {
  color: var(--px-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.px-trust-strip {
  padding: 1.2rem 0;
  background: #f6fbf7;
  border-block: 1px solid rgba(0, 0, 0, 0.08);
}

.px-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.08);
}

.px-trust-strip article {
  min-height: 118px;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.86);
}

.px-trust-strip span,
.px-why span,
.px-journal span {
  color: var(--px-green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.px-trust-strip p {
  margin-top: 0.45rem;
  color: var(--px-muted);
  font-size: 0.98rem;
}

.px-why {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(153, 212, 173, 0.18), transparent 32%),
    #fff;
}

.px-why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.px-why__grid article {
  min-height: 320px;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--px-soft-line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f7fbf8);
  box-shadow: 0 22px 60px rgba(28, 76, 50, 0.06);
}

.px-why__grid h3 {
  margin-top: 1.1rem;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
}

.px-why__grid p {
  margin-top: 1rem;
  color: var(--px-muted);
  font-size: 1.05rem;
}

.px-film {
  padding: clamp(2rem, 5vw, 4.5rem) 0;
  background: #fff;
}

.px-community-motion {
  padding: clamp(2.25rem, 5vw, 4.75rem) 0;
  background: #fff;
}

.px-community-motion__frame {
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  min-height: clamp(650px, 54vw, 920px);
  border-radius: 28px;
  background: #1f3d2a;
  isolation: isolate;
}

.px-community-motion__frame::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 29, 19, 0.56), transparent 62%),
    linear-gradient(0deg, rgba(7, 20, 13, 0.48), transparent 48%);
  content: "";
}

.px-community-motion video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.px-community-motion__copy {
  width: min(720px, calc(100% - 3rem));
  margin: clamp(1.5rem, 4vw, 4.5rem);
  padding: clamp(1.6rem, 3.4vw, 3.3rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(18, 50, 32, 0.76);
  color: #fff;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.px-community-motion__copy h2,
.px-community-motion__copy .px-kicker {
  color: #fff;
}

.px-community-motion__copy p:not(.px-kicker) {
  max-width: 620px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
}

.px-community-motion__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.px-community-motion__copy li {
  padding: 0.52rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  font-weight: 800;
}

.px-film__frame {
  position: relative;
  overflow: hidden;
  min-height: clamp(680px, 54vw, 920px);
  border-radius: 28px;
  background: #000;
  isolation: isolate;
}

.px-film video,
.px-product-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.px-film video {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.px-film__frame::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 27, 18, 0.76), rgba(18, 48, 31, 0.26) 55%, rgba(10, 24, 14, 0.42)),
    linear-gradient(0deg, rgba(120, 173, 127, 0.32), transparent 58%),
    radial-gradient(circle at 82% 20%, rgba(168, 138, 192, 0.16), transparent 24rem);
  content: "";
}

.px-film__copy {
  display: grid;
  align-content: center;
  width: min(620px, calc(100% - 2rem));
  min-height: inherit;
  padding: clamp(2rem, 6vw, 5rem);
  color: #fff;
}

.px-film__copy h2,
.px-film__copy .px-kicker {
  color: #fff;
}

.px-film__copy p:not(.px-kicker) {
  margin: 1rem 0 1.5rem;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 700;
}

.px-real-demo {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(153, 212, 173, 0.22), transparent 24rem),
    #fff;
}

.px-real-demo__head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 1.05fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(1.6rem, 3vw, 2.6rem);
}

.px-real-demo__head > p:not(.px-kicker) {
  color: var(--px-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.px-real-demo__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}

.px-demo-card {
  overflow: hidden;
  border: 1px solid rgba(47, 111, 84, 0.15);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(18, 52, 31, 0.09);
}

.px-demo-card__media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0e150f;
}

.px-demo-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.px-demo-card__copy {
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
}

.px-demo-card__copy h3 {
  margin-top: 0.65rem;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.px-demo-card__copy p {
  margin-top: 0.75rem;
  color: var(--px-muted);
}

.px-routine {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background: #f6fbf7;
}

.px-routine__grid,
.px-proof__grid,
.px-product-video__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.px-routine__media img,
.px-proof__visual img {
  width: 100%;
  min-height: 520px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--px-shadow);
}

.px-routine__copy > p:not(.px-kicker),
.px-proof__copy > p {
  margin-top: 1rem;
  color: var(--px-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}

.px-routine__steps {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.px-routine__steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.13);
}

.px-routine__steps span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.px-routine__steps h3 {
  font-family: var(--px-sans);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0;
}

.px-routine__steps p {
  margin-top: 0.35rem;
  color: var(--px-muted);
}

.px-proof {
  padding: clamp(4.8rem, 8vw, 7.8rem) 0;
  background: #fff;
}

.px-proof__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(26rem, 1.1fr);
}

.px-proof__copy {
  align-self: start;
}

.px-proof__note {
  padding: 1rem;
  border-left: 4px solid var(--px-green);
  background: var(--px-blue-100);
  color: #25362d !important;
  font-weight: 800;
}

.px-proof__visual {
  align-self: stretch;
}

.px-proof__cards {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.px-proof__cards article {
  padding: 1.25rem;
  border: 1px solid var(--px-soft-line);
  border-radius: 18px;
  background: #fbfdfb;
}

.px-proof__cards h3 {
  font-family: var(--px-sans);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
}

.px-proof__cards p {
  margin-top: 0.45rem;
  color: var(--px-muted);
}

.px-product-video {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(183, 151, 198, 0.18), transparent 24rem),
    linear-gradient(135deg, #fbf6ef 0%, #eef8f1 48%, #f7f2eb 100%);
}

.px-product-video__grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(26rem, 1.18fr);
}

.px-product-video__grid > div:first-child > p:not(.px-kicker) {
  margin-top: 1rem;
  color: var(--px-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.px-check-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.px-check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: #1f3529;
  font-weight: 800;
}

.px-check-list li::before {
  position: absolute;
  left: 0;
  color: var(--px-green);
  content: "\2713";
}

.px-product-video__media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 26px;
  background: #000;
  box-shadow: var(--px-shadow);
}

.px-journal {
  padding: clamp(4.8rem, 8vw, 7.8rem) 0;
  background: #fff;
}

.px-journal__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.px-journal article {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--px-soft-line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(238, 248, 241, 0.75), rgba(255, 255, 255, 0.92)),
    #fff;
}

.px-journal h3 {
  margin-top: 1rem;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
}

.px-journal p {
  margin-top: 1rem;
  color: var(--px-muted);
}

.px-journal a {
  margin-top: auto;
  color: #000;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.px-customer-proof {
  padding: clamp(4.8rem, 8vw, 7.8rem) 0;
  background:
    radial-gradient(circle at 14% 4%, rgba(168, 138, 192, 0.18), transparent 24rem),
    linear-gradient(135deg, #fff 0%, var(--px-sage-soft) 58%, var(--px-ivory) 100%);
}

.px-customer-proof__head {
  display: grid;
  gap: 1rem;
  width: min(880px, 100%);
}

.px-customer-proof__head > p:not(.px-kicker) {
  color: var(--px-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.px-customer-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.px-customer-proof__grid article {
  min-height: 260px;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(47, 111, 84, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 70px rgba(38, 82, 52, 0.08);
}

.px-customer-proof__grid span {
  color: var(--px-green);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.px-customer-proof__grid p {
  margin-top: 1rem;
  color: #23372a;
  font-family: var(--px-serif);
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
  line-height: 1.1;
}

.px-subscribe {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(168, 138, 192, 0.18), transparent 26rem),
    linear-gradient(135deg, #e7f4e7 0%, #f5edf7 54%, #fbf7ee 100%);
  color: var(--px-ink);
}

.px-subscribe h2,
.px-subscribe .px-kicker {
  color: var(--px-ink);
}

.px-subscribe__inner {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.px-subscribe p:not(.px-kicker) {
  max-width: 680px;
  margin-top: 1rem;
  color: #24402d;
  font-size: 1.12rem;
}

.px-subscribe__media {
  overflow: hidden;
  border: 1px solid rgba(47, 111, 84, 0.16);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(38, 82, 52, 0.12);
}

.px-subscribe__media img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
}

.px-brand-lockup {
  margin-bottom: 1rem;
  color: var(--px-ink) !important;
  font-family: var(--px-serif);
  font-size: clamp(2.6rem, 5vw, 4.8rem) !important;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.px-brand-lockup span {
  color: var(--px-green);
  font-style: normal;
}

.px-newsletter-form {
  display: flex;
  gap: 0.6rem;
  width: min(560px, 100%);
  margin-top: 1.6rem;
}

.px-newsletter-form input {
  flex: 1 1 16rem;
  min-height: 58px;
  border: 2px solid #111;
  border-radius: 0;
  background: #fff;
  color: var(--px-text);
  font: inherit;
  font-size: 1.08rem;
  padding: 0 1.1rem;
}

.px-newsletter-form button {
  min-height: 58px;
  padding: 0 1.6rem;
  border: 2px solid #111;
  background: #111;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.px-subscribe__disclaimer {
  max-width: 740px !important;
  margin-top: 2rem !important;
  color: #18271d !important;
  font-size: 0.78rem !important;
  line-height: 1.35;
}

.px-subscribe__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
  max-width: 680px;
  padding: 0;
  margin: 1.4rem 0 0;
  color: #1f3d2a;
  font-size: 0.96rem;
  font-weight: 800;
  list-style: none;
}

.px-subscribe__benefits li::before {
  margin-right: 0.48rem;
  color: var(--px-green);
  content: "✦";
}

.px-safety-cards {
  display: grid;
  gap: 1rem;
}

.px-safety-cards article {
  padding: 1.35rem;
  border: 1px solid var(--px-soft-line);
  border-radius: 14px;
  background: #fff;
}

.px-safety-cards span {
  color: var(--px-blue);
  font-weight: 900;
}

.px-safety-cards h3 {
  margin-top: 0.5rem;
  font-family: var(--px-sans);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0;
}

.px-safety-cards p {
  margin-top: 0.35rem;
  color: var(--px-muted);
}

.px-safety-note-wrap {
  margin-top: 2rem;
}

.px-faq {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background: #fff;
}

.px-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(24rem, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.px-accordion {
  border-top: 1px solid var(--px-line);
}

.px-accordion__item {
  border-bottom: 1px solid var(--px-line);
}

.px-accordion__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  border: 0;
  background: transparent;
  color: #000;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.px-accordion__trigger span:last-child {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid #111;
}

.px-accordion__trigger[aria-expanded="true"] span:last-child {
  background: #000;
  color: #fff;
}

.px-accordion__panel {
  padding: 0 0 1.2rem;
  color: var(--px-muted);
}

.px-accordion__panel a {
  color: var(--px-blue);
  font-weight: 900;
}

.precilyx-drug-facts {
  width: min(960px, calc(100% - 40px));
  margin: clamp(3rem, 6vw, 5rem) auto;
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 1px solid var(--px-soft-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--px-shadow);
}

.precilyx-drug-facts section {
  padding: 1.5rem 0;
  border-top: 1px solid var(--px-soft-line);
}

.precilyx-drug-facts h3 {
  margin-bottom: 0.8rem;
}

.precilyx-drug-facts h4 {
  margin: 1rem 0 0.65rem;
  font-family: var(--px-sans);
  font-size: 1rem;
  font-weight: 900;
}

.precilyx-drug-facts ul,
.precilyx-drug-facts ol {
  padding-left: 1.25rem;
}

.precilyx-drug-facts li + li {
  margin-top: 0.5rem;
}

.px-footer {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #000;
  color: #fff;
}

.px-footer h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.px-footer a {
  color: inherit;
}

.px-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}

.px-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.px-footer__links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 960px) {
  .px-header__inner,
  .px-products__head,
  .px-visual-story__head,
  .px-section-heading--split,
  .px-checkout-ready__head,
  .px-checkout-ready__grid,
  .px-dossier__grid,
  .px-dossier__cards,
  .px-real-demo__head,
  .px-real-demo__grid,
  .px-trust-strip__grid,
  .px-why__grid,
  .px-routine__grid,
  .px-proof__grid,
  .px-proof__cards,
  .px-product-video__grid,
  .px-customer-proof__grid,
  .px-journal__grid,
  .px-subscribe__inner,
  .px-story__grid,
  .px-safety-grid,
  .px-faq__grid,
  .px-footer__grid {
    grid-template-columns: 1fr;
  }

  .px-header__inner {
    justify-items: start;
    padding: 1rem 0;
  }

  .px-nav {
    justify-self: start;
  }

  .px-lacto-hero__copy {
    width: min(620px, 92%);
  }

  .px-product-grid,
  .px-visual-story__grid,
  .px-checkout-ready__grid,
  .px-trust__grid {
    grid-template-columns: 1fr;
  }

  .px-trust-strip__grid {
    gap: 1px;
  }

  .px-film__frame {
    min-height: 640px;
  }

  .px-community-motion__frame {
    min-height: 700px;
  }

  .px-film__frame::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.2));
  }

  .px-routine__media img,
  .px-proof__visual img,
  .px-dossier__media img {
    min-height: 380px;
  }

  .px-newsletter-form {
    flex-direction: column;
  }

  .px-subscribe__benefits {
    grid-template-columns: 1fr;
  }

  .px-newsletter-form button {
    width: 100%;
  }

  .px-visual-story__grid {
    grid-auto-rows: auto;
  }

  .px-visual-tile,
  .px-visual-tile--large,
  .px-visual-tile--wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .px-container,
  .px-container--narrow {
    width: min(100% - 24px, 1320px);
  }

  .px-announce {
    font-size: 0.86rem;
  }

  .px-header {
    position: static;
  }

  .px-nav ul {
    width: max-content;
    flex-wrap: nowrap;
    gap: 0.8rem 1rem;
    justify-content: start;
  }

  .px-nav {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .px-nav::-webkit-scrollbar {
    display: none;
  }

  .px-nav a {
    font-size: 0.95rem;
  }

  .px-header__cta {
    width: 100%;
    min-height: 46px;
    background: #000;
    color: #fff;
  }

  .px-lacto-hero {
    padding-top: 12px;
  }

  .px-lacto-hero__frame {
    min-height: 680px;
  }

  .px-lacto-hero__frame::after {
    background: linear-gradient(180deg, rgba(238, 248, 241, 0.95) 0%, rgba(238, 248, 241, 0.84) 45%, rgba(238, 248, 241, 0.12) 100%);
  }

  .px-lacto-hero__frame > img:not(.px-lacto-hero__product) {
    object-position: 58% bottom;
  }

  .px-lacto-hero__copy {
    width: 100%;
    max-width: 100%;
    padding: 2.4rem 1.3rem;
  }

  .px-lacto-hero__product {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(520px, calc(100% - 2.4rem));
    margin: -1rem auto 5.2rem;
    transform: none;
  }

  .px-lacto-hero__actions,
  .px-button {
    width: 100%;
    max-width: 100%;
  }

  .px-lacto-hero__slider {
    right: 24px;
    bottom: 24px;
  }

  .px-product-tabs a {
    font-size: 1.35rem;
  }

  .px-trust-strip article,
  .px-why__grid article,
  .px-journal article {
    min-height: auto;
  }

  .px-film__frame {
    min-height: 560px;
    border-radius: 20px;
  }

  .px-community-motion__frame {
    min-height: 640px;
    border-radius: 20px;
  }

  .px-community-motion__copy {
    width: calc(100% - 1.5rem);
    margin: 0.75rem;
    padding: 1.5rem 1.15rem;
  }

  .px-film__copy {
    padding: 2rem 1.25rem;
  }

  .px-routine__media img,
  .px-proof__visual img,
  .px-dossier__media img {
    min-height: 300px;
    border-radius: 18px;
  }

  .px-routine__steps article {
    grid-template-columns: 1fr;
  }

  .px-proof__cards,
  .px-journal__grid,
  .px-real-demo__grid {
    gap: 0.8rem;
  }

  .px-product-card__media img {
    aspect-ratio: 1 / 0.94;
  }

  .px-visual-tile,
  .px-visual-tile--large,
  .px-visual-tile--wide {
    min-height: 320px;
  }

  .px-science__frame {
    min-height: 520px;
  }

  .px-footer__links {
    grid-template-columns: 1fr;
  }
}
