@font-face {
  font-family: "ParaSupreme";
  src: url("assets/fonts/para-supreme.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Peter";
  src: url("assets/fonts/peter-light.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Peter";
  src: url("assets/fonts/peter-regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Peter";
  src: url("assets/fonts/peter-medium.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

:root {
  --black: #050505;
  --ink: #262626;
  --muted: #6f6a62;
  --line: #d9d4ca;
  --cream: #f4f0e7;
  --paper: #fbfaf7;
  --beige: #ddd8c7;
  --white: #ffffff;
  --shell: 1180px;
  --shadow: 0 18px 50px rgba(24, 22, 18, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Peter", Arial, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
  overflow-x: clip;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "ParaSupreme", Georgia, serif;
  font-weight: 400;
}

[id] {
  scroll-margin-top: 104px;
}

h2 {
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 0.98;
}

h2 em,
h1 em {
  font-style: italic;
}

.skip-link {
  background: var(--white);
  color: var(--black);
  left: 12px;
  padding: 10px 14px;
  position: fixed;
  top: 12px;
  transform: translateY(-150%);
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.shell {
  margin-inline: auto;
  max-width: 820px;
  padding-inline: 24px;
  width: 100%;
}

.shell--wide {
  max-width: calc(var(--shell) + 48px);
}

.announcement {
  align-items: center;
  background: var(--black);
  color: var(--white);
  display: flex;
  font-size: 11px;
  font-weight: 400;
  gap: 18px;
  justify-content: center;
  letter-spacing: 0.14em;
  min-height: 34px;
  padding: 8px 20px;
  text-align: center;
  text-transform: uppercase;
}

.announcement i {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  height: 3px;
  width: 3px;
}

.site-header {
  align-items: center;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(38, 38, 38, 0.1);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 28px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  display: inline-flex;
  width: 178px;
}

.brand img {
  height: auto;
  object-fit: contain;
  width: 100%;
}

.button {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 500;
  gap: 14px;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 54px;
  padding: 15px 26px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-1px);
}

.button--small {
  font-size: 11px;
  min-height: 42px;
  padding: 10px 19px;
}

.button--block {
  width: 100%;
}

.hero {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 32px 0 36px;
}

.hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(40px, 6vw, 84px);
  grid-template-areas: "media copy";
  grid-template-columns: minmax(0, 0.96fr) minmax(400px, 0.86fr);
}

.hero__copy {
  grid-area: copy;
  max-width: 510px;
}

.eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.6);
}

.hero h1 {
  font-size: clamp(3.25rem, 5vw, 5.35rem);
  letter-spacing: -0.035em;
  line-height: 0.93;
  margin-bottom: 24px;
}

.hero__dek {
  color: #49463f;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 480px;
}

.rating {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  gap: 10px;
  margin-bottom: 20px;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.rating:hover {
  text-decoration: none;
}

.stars {
  color: var(--black);
  font-family: Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.hero__offer {
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 15px 0;
}

.product-name,
.product-size {
  display: block;
}

.product-name {
  font-family: "ParaSupreme", Georgia, serif;
  font-size: 22px;
  line-height: 1.15;
}

.product-size {
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}

.price {
  font-size: 20px;
  font-weight: 400;
}

.button-note {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  margin: 10px auto 0;
  text-align: center;
}

.hero__checks {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.hero__checks li {
  border-left: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.35;
  padding-left: 10px;
}

.hero__media {
  align-self: stretch;
  grid-area: media;
  margin: 0;
  max-height: 690px;
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  width: 100%;
}

.hero__media figcaption {
  background: rgba(5, 5, 5, 0.88);
  bottom: 18px;
  color: var(--white);
  font-size: 12px;
  left: 18px;
  letter-spacing: 0.03em;
  padding: 10px 13px;
  position: absolute;
}

.proof-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 28px 0 18px;
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-strip__grid > div {
  border-right: 1px solid var(--line);
  padding: 0 26px;
  text-align: center;
}

.proof-strip__grid > div:first-child {
  padding-left: 0;
}

.proof-strip__grid > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-family: "ParaSupreme", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  margin: 7px auto 0;
  max-width: 130px;
  text-transform: uppercase;
}

.proof-strip > p {
  color: var(--muted);
  font-size: 10px;
  margin: 20px auto 0;
  max-width: 720px;
  padding-inline: 24px;
  text-align: center;
}

.video-proof {
  background: var(--black);
  color: var(--white);
  padding: 74px 0 64px;
}

.video-proof h2,
.video-proof h3 {
  color: var(--white);
}

.section-head {
  align-items: flex-end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.section-head h2 {
  margin-bottom: 14px;
}

.section-head p:last-child {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0;
}

.section-head--dark p:last-child {
  color: var(--muted);
}

.rail-actions {
  display: flex;
  gap: 8px;
}

.rail-button {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 17px;
  height: 42px;
  justify-content: center;
  transition: background-color 150ms ease, color 150ms ease;
  width: 42px;
}

.rail-button:hover {
  background: var(--white);
  color: var(--black);
}

.stories {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px max(24px, calc((100vw - var(--shell)) / 2)) 24px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
  scrollbar-width: thin;
}

.story {
  flex: 0 0 258px;
  scroll-snap-align: center;
}

.video-card {
  aspect-ratio: 9 / 16;
  background: #161616;
  border: 0;
  border-radius: 16px;
  color: var(--white);
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.video-card:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 5px;
}

.video-card video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.play-overlay {
  align-items: center;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  height: 58px;
  inset: 50% auto auto 50%;
  justify-content: center;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
  width: 58px;
}

.play-overlay i {
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--black);
  border-top: 8px solid transparent;
  height: 0;
  margin-left: 4px;
  width: 0;
}

.story__identity {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  bottom: 0;
  left: 0;
  padding: 60px 15px 15px;
  position: absolute;
  right: 0;
  text-align: left;
  transition: opacity 180ms ease;
}

.story__identity small {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 10px;
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.video-card.is-playing .play-overlay,
.video-card.is-playing .story__identity {
  opacity: 0;
}

.story__copy {
  padding: 16px 5px 0;
}

.story__copy h3 {
  font-family: "Peter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 8px;
}

.story__copy p {
  color: rgba(255, 255, 255, 0.57);
  font-size: 12px;
  line-height: 1.45;
  margin-bottom: 0;
}

.results-note {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  margin-bottom: 0;
  margin-top: 8px;
}

.formula,
.ritual,
.reviews,
.standards,
.faq {
  padding: 100px 0;
}

.formula {
  background: var(--cream);
}

.formula__grid,
.study__grid,
.standards__grid,
.offer__grid {
  align-items: center;
  display: grid;
  gap: clamp(42px, 7vw, 92px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.formula__media,
.study__media,
.standards figure,
.offer__media {
  margin: 0;
  overflow: hidden;
}

.formula__media,
.study__media,
.standards figure {
  max-height: 620px;
}

.formula__media img,
.study__media img,
.standards figure img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.formula__copy h2,
.standards h2 {
  margin-bottom: 24px;
}

.large-copy {
  color: #504c45;
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 30px;
}

.active-list {
  border-top: 1px solid var(--line);
}

.active-list article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 32px 1fr;
  padding: 17px 0;
}

.active-list > article > span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding-top: 5px;
}

.active-list h3 {
  font-family: "Peter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.active-list p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 0;
}

.study {
  background: var(--black);
  color: var(--white);
  padding: 92px 0;
}

.study h2 {
  color: var(--white);
  margin-bottom: 36px;
}

.study__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.82fr);
}

.study__stats {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.study__stats > div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  min-height: 142px;
  padding: 22px 20px 20px 0;
}

.study__stats > div:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.study__stats > div:nth-child(even) {
  padding-left: 26px;
}

.study__stats strong,
.study__stats span {
  display: block;
}

.study__stats strong {
  color: var(--white);
  font-family: "ParaSupreme", Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
}

.study__stats span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
  margin-top: 8px;
  max-width: 150px;
  text-transform: uppercase;
}

.study__note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.45;
  margin: 18px 0 0;
}

.ritual {
  background: var(--white);
}

.ritual__grid {
  align-items: stretch;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.ritual__steps {
  border-top: 1px solid var(--line);
}

.ritual__steps article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 42px 1fr;
  padding: 26px 0;
}

.ritual__steps > article > span {
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  font-size: 12px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.ritual__steps h3 {
  font-family: "Peter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.ritual__steps p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

.ritual__images {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.ritual__images img {
  height: min(54svh, 560px);
  object-fit: cover;
  width: 100%;
}

.inline-cta {
  align-items: center;
  background: var(--cream);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 48px;
  padding: 22px 24px;
}

.inline-cta strong,
.inline-cta span {
  display: block;
}

.inline-cta strong {
  font-family: "ParaSupreme", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

.inline-cta > div > span {
  color: var(--muted);
  font-size: 12px;
}

.reviews {
  background: var(--cream);
}

.reviews__intro {
  max-width: 720px;
}

.reviews__intro h2 {
  margin-bottom: 22px;
}

.reviews__score {
  align-items: center;
  display: flex;
  font-size: 13px;
  gap: 12px;
}

.review-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 26px;
}

.review-card > div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.review-card > div > span:last-child {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.review-card h3 {
  font-family: "Peter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  margin: 28px 0 15px;
  text-transform: uppercase;
}

.review-card .review-summary {
  color: var(--ink);
  font-family: "ParaSupreme", Georgia, serif;
  font-size: 21px;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 28px;
}

.review-card .review-author {
  color: var(--muted);
  font-size: 12px;
  margin: auto 0 0;
}

.standards {
  background: var(--paper);
}

.standards__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.standards__list {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.standards__list li {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 115px 1fr;
  padding: 17px 0;
}

.standards__list strong {
  font-family: "ParaSupreme", Georgia, serif;
  font-size: 23px;
  font-weight: 400;
}

.standards__list span {
  color: var(--muted);
  font-size: 13px;
}

.offer {
  background: var(--cream);
  padding: 88px 0;
}

.offer__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.86fr);
}

.offer__media {
  align-self: stretch;
  max-height: 650px;
}

.offer__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.offer__copy h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 4px;
}

.offer__subtitle {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.offer__rating {
  align-items: center;
  display: flex;
  font-size: 13px;
  gap: 10px;
}

.offer__price {
  font-family: "ParaSupreme", Georgia, serif;
  font-size: 34px;
  margin: 26px 0 22px;
}

.offer__copy > ul {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.offer__copy > ul li {
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  padding: 10px 0 10px 22px;
  position: relative;
}

.offer__copy > ul li::before {
  content: "✓";
  left: 0;
  position: absolute;
}

.guarantee {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 18px;
}

.guarantee strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
}

.guarantee p,
.guarantee a {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.guarantee p {
  margin-bottom: 6px;
}

.guarantee a {
  text-underline-offset: 3px;
}

.faq {
  background: var(--white);
}

.faq h2 {
  margin-bottom: 44px;
}

.faq__items {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-family: "ParaSupreme", Georgia, serif;
  font-size: 21px;
  list-style: none;
  padding: 22px 42px 22px 0;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span,
.faq summary span::after {
  background: var(--ink);
  content: "";
  height: 1px;
  position: absolute;
  right: 2px;
  top: 50%;
  width: 16px;
}

.faq summary span::after {
  left: 0;
  right: auto;
  top: 0;
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq details[open] summary span::after {
  transform: rotate(0);
}

.faq details p {
  color: var(--muted);
  font-size: 15px;
  margin: -4px 0 24px;
  max-width: 690px;
}

.site-footer {
  align-items: center;
  background: var(--cream);
  color: var(--muted);
  display: flex;
  flex-direction: column;
  padding: 62px 24px 36px;
  text-align: center;
}

.brand--footer {
  margin-bottom: 22px;
  width: 190px;
}

.site-footer > p {
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 16px 24px;
  justify-content: center;
  margin: 16px 0 34px;
}

.site-footer nav a {
  text-underline-offset: 3px;
}

.site-footer .disclaimer {
  border-top: 1px solid var(--line);
  color: #918b82;
  font-size: 9px;
  line-height: 1.5;
  margin: 0;
  max-width: 760px;
  padding-top: 24px;
}

.sticky-buy {
  align-items: center;
  background: rgba(251, 250, 247, 0.96);
  border-top: 1px solid var(--line);
  bottom: 0;
  display: none;
  gap: 14px;
  justify-content: space-between;
  left: 0;
  padding: 10px max(14px, env(safe-area-inset-left)) max(10px, env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-right));
  position: fixed;
  right: 0;
  transform: translateY(110%);
  transition: transform 180ms ease;
  z-index: 60;
}

.sticky-buy.is-visible {
  transform: translateY(0);
}

.sticky-buy strong,
.sticky-buy span {
  display: block;
}

.sticky-buy strong {
  font-family: "ParaSupreme", Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.1;
}

.sticky-buy > div > span {
  color: var(--muted);
  font-size: 10px;
  margin-top: 2px;
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  }

  .hero h1 {
    font-size: clamp(3rem, 6vw, 4.2rem);
  }

  .hero__checks {
    grid-template-columns: 1fr;
  }

  .proof-strip__grid > div {
    padding-inline: 15px;
  }

  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-card:last-child {
    grid-column: 1 / -1;
    min-height: 240px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
    padding-bottom: 74px;
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .announcement {
    font-size: 9px;
    gap: 10px;
    letter-spacing: 0.11em;
    min-height: 31px;
    padding-inline: 10px;
  }

  .announcement span:last-child,
  .announcement i:last-of-type {
    display: none;
  }

  .site-header {
    min-height: 62px;
    padding: 9px 16px;
  }

  .brand {
    width: 138px;
  }

  .site-header .button--small {
    min-height: 38px;
    padding-inline: 14px;
  }

  .shell,
  .shell--wide {
    padding-inline: 18px;
  }

  .hero {
    padding: 27px 0 20px;
  }

  .hero__grid {
    display: grid;
    gap: 26px;
    grid-template-areas: "copy" "media";
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: none;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13.8vw, 4rem);
    line-height: 0.94;
    margin-bottom: 18px;
  }

  .hero__dek {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .rating {
    margin-bottom: 14px;
  }

  .hero__offer {
    padding: 12px 0;
  }

  .product-name {
    font-size: 19px;
  }

  .hero__checks {
    gap: 4px;
    grid-template-columns: 1fr 1fr;
    margin-top: 15px;
  }

  .hero__checks li {
    padding-block: 2px;
  }

  .hero__checks li:last-child {
    grid-column: 1 / -1;
  }

  .hero__media {
    height: min(62svh, 510px);
    min-height: 0;
  }

  .hero__media figcaption {
    bottom: 12px;
    left: 12px;
  }

  .proof-strip {
    padding: 24px 0 16px;
  }

  .proof-strip__grid {
    gap: 22px 0;
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip__grid > div,
  .proof-strip__grid > div:first-child,
  .proof-strip__grid > div:last-child {
    padding-inline: 12px;
  }

  .proof-strip__grid > div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip strong {
    font-size: 32px;
  }

  .video-proof {
    padding: 62px 0 52px;
  }

  .section-head {
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .rail-actions {
    display: none;
  }

  .stories {
    gap: 13px;
    padding-inline: 18px;
  }

  .story {
    flex-basis: min(72vw, 270px);
  }

  .formula,
  .ritual,
  .reviews,
  .standards,
  .faq {
    padding: 72px 0;
  }

  .formula__grid,
  .study__grid,
  .standards__grid,
  .offer__grid {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .formula__media,
  .study__media,
  .standards figure {
    height: min(62svh, 520px);
  }

  .formula__copy h2,
  .standards h2 {
    margin-bottom: 20px;
  }

  .large-copy {
    font-size: 17px;
  }

  .study {
    padding: 72px 0;
  }

  .study__copy {
    order: 1;
  }

  .study__media {
    order: 2;
  }

  .study__stats > div {
    min-height: 128px;
    padding-right: 14px;
  }

  .study__stats > div:nth-child(even) {
    padding-left: 18px;
  }

  .study__stats strong {
    font-size: 44px;
  }

  .ritual__grid {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .ritual__images img {
    height: min(50svh, 440px);
  }

  .inline-cta {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  .inline-cta .button {
    width: 100%;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card,
  .review-card:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .standards figure {
    order: 2;
  }

  .standards__grid > div {
    order: 1;
  }

  .offer {
    padding: 72px 0;
  }

  .offer__grid {
    grid-template-columns: 1fr;
  }

  .offer__media {
    height: min(62svh, 540px);
    max-height: none;
  }

  .faq summary {
    font-size: 19px;
  }

  .sticky-buy {
    display: flex;
  }

  .site-footer {
    padding-bottom: 30px;
  }
}

@media (max-width: 420px) {
  .announcement span:nth-of-type(2),
  .announcement i:first-of-type {
    display: none;
  }

  .hero__checks {
    grid-template-columns: 1fr;
  }

  .hero__checks li:last-child {
    grid-column: auto;
  }

  .proof-strip span {
    font-size: 10px;
  }

  .story {
    flex-basis: 74vw;
  }

  .ritual__images {
    gap: 8px;
  }

  .standards__list li {
    gap: 12px;
    grid-template-columns: 96px 1fr;
  }

  .sticky-buy .button {
    min-height: 40px;
    padding-inline: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
