:root {
  --navy: #102a43;
  --navy-soft: #1f425f;
  --green: #168a55;
  --green-dark: #116b43;
  --green-pale: #eaf6ef;
  --cream: #fbfaf6;
  --background: #f5f8f6;
  --white: #ffffff;
  --text: #263238;
  --muted: #5f6b66;
  --border: #dde6e1;
  --focus: #f4b740;
  --shadow-sm: 0 8px 24px rgba(16, 42, 67, 0.07);
  --shadow-md: 0 18px 44px rgba(16, 42, 67, 0.11);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --shell: 72rem;
  --narrow: 60rem;
  --reading: 65ch;
  --space-xs: 0.4rem;
  --space-sm: 0.75rem;
  --space-md: 1.15rem;
  --space-lg: clamp(1.5rem, 3vw, 2.25rem);
  --space-xl: clamp(2.5rem, 6vw, 4.5rem);
  --space-2xl: clamp(3.75rem, 8vw, 6.5rem);
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.0625rem, 1.03rem + 0.13vw, 1.125rem);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.has-mobile-cta {
  padding-bottom: calc(5.1rem + env(safe-area-inset-bottom));
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

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

p {
  max-width: var(--reading);
  text-wrap: pretty;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  margin-bottom: var(--space-sm);
  font-size: clamp(2rem, 8.4vw, 3rem);
}

h2 {
  margin-bottom: var(--space-md);
  font-size: clamp(2rem, 6vw, 3.2rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  transform: translateY(-200%);
  border-radius: 0.5rem;
  color: var(--white);
  background: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

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

.shell {
  width: min(100% - 2.25rem, var(--shell));
  margin-inline: auto;
}

.shell--narrow {
  width: min(100% - 2.25rem, var(--narrow));
}

.editorial-bar {
  color: var(--white);
  background: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.editorial-bar__inner {
  display: flex;
  min-height: 2.7rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.editorial-bar__label {
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  color: #c7ddd1;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(2.25rem, 5vw, 4.25rem);
  background:
    radial-gradient(circle at 92% 8%, rgba(22, 138, 85, 0.1), transparent 30rem),
    linear-gradient(180deg, var(--cream), var(--white));
}

.hero::after {
  position: absolute;
  right: -9rem;
  bottom: -11rem;
  width: 26rem;
  aspect-ratio: 1;
  border: 1px solid rgba(22, 138, 85, 0.12);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-areas:
    "copy"
    "visual"
    "details";
  gap: 0.85rem;
}

.hero__copy {
  grid-area: copy;
}

.hero__visual {
  grid-area: visual;
  min-width: 0;
}

.hero__details {
  grid-area: details;
}

.editorial-meta {
  display: flex;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.editorial-meta time {
  color: var(--navy-soft);
}

.eyebrow {
  margin-bottom: 0.55rem;
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #bfe5cf;
}

.hero__lead {
  margin-bottom: 0;
  color: #42524b;
  font-size: clamp(1.0625rem, 1.01rem + 0.4vw, 1.3rem);
  line-height: 1.5;
}

.hero__product-stage {
  display: grid;
  position: relative;
  min-height: clamp(9.5rem, 48vw, 13rem);
  overflow: hidden;
  place-items: center;
  border: 1px solid #d6e5dc;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 48%, var(--white) 0 28%, transparent 29%),
    linear-gradient(145deg, #edf7f1, #f9fbf9);
}

.hero__product-stage::before {
  position: absolute;
  width: min(72%, 20rem);
  aspect-ratio: 1;
  border: 1px solid rgba(22, 138, 85, 0.12);
  border-radius: 50%;
  content: "";
}

.hero__product-label {
  position: absolute;
  top: 0.65rem;
  left: 0.75rem;
  z-index: 3;
  padding: 0.35rem 0.55rem;
  border: 1px solid #cee3d6;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-image {
  display: block;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

.product-packshot {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-inline: auto;
  aspect-ratio: 0.55;
  border-radius: 1rem;
  background: #f8faf8;
  box-shadow: inset 0 0 0 1px rgba(22, 138, 85, 0.08);
}

.product-packshot .product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: 100% 50%;
}

.product-packshot--hero {
  width: clamp(7rem, 31vw, 7.75rem);
  filter: drop-shadow(0 18px 20px rgba(16, 42, 67, 0.16));
}

.lifestyle-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-md);
  background: #e8efeb;
}

.lifestyle-frame img,
.lifestyle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-image--legs {
  object-position: 50% 50%;
}

.lifestyle-image--walk {
  object-position: 52% 50%;
}

.lifestyle-frame figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.65rem 0.75rem 0.55rem;
  color: var(--white);
  background: linear-gradient(transparent, rgba(16, 42, 67, 0.74));
  font-size: 0.68rem;
  line-height: 1.35;
}

.hero__photo-wrap {
  display: none;
}

.benefit-list,
.feature-list {
  display: grid;
  margin: 0 0 var(--space-md);
  padding: 0;
  gap: 0.42rem;
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.38;
}

.benefit-list svg {
  width: 1.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.05rem;
  padding: 0.23rem;
  border-radius: 50%;
  background: var(--green-pale);
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.hero__offer {
  display: flex;
  max-width: 34rem;
  margin-bottom: 0.65rem;
  padding: 0.65rem 0.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1px solid #cde5d7;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
}

.hero__offer p {
  margin: 0.1rem 0 0;
  line-height: 1.25;
}

.hero__offer strong {
  display: block;
  color: var(--navy);
  font-size: 1.1rem;
  white-space: nowrap;
}

.hero__offer s {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero__offer-next {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-align: right;
}

.offer-kicker {
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.75rem 1.2rem;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button--primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 9px 22px rgba(22, 138, 85, 0.2);
}

.button--primary:hover {
  background: var(--green-dark);
  box-shadow: 0 12px 25px rgba(17, 107, 67, 0.25);
}

.button--secondary {
  color: var(--green-dark);
  border-color: var(--green);
  background: var(--white);
}

.button--secondary:hover {
  color: var(--white);
  background: var(--green);
}

.button--light {
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.button--light:hover {
  background: #edf8f2;
}

.hero__details > .button {
  width: 100%;
  max-width: 34rem;
}

.trust-line {
  display: flex;
  margin: 0.5rem 0 0;
  flex-wrap: wrap;
  gap: 0.2rem 0.7rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.trust-line span:not(:first-child)::before {
  margin-right: 0.7rem;
  color: #aab8b0;
  content: "•";
}

.trust-line--light {
  color: #d8e8df;
}

.price-note,
.disclosure {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.section {
  padding: var(--space-2xl) 0;
}

.section-heading {
  max-width: 46rem;
  margin: 0 0 var(--space-lg);
}

.section-heading p {
  margin-right: auto;
}

.problem,
.social-proof {
  background: var(--background);
}

.problem__mobile-photo {
  aspect-ratio: 16 / 10;
  margin-bottom: var(--space-lg);
}

.symptom-grid,
.step-grid,
.testimonial-grid {
  display: grid;
  gap: 0.8rem;
}

.symptom-card,
.step-card,
.testimonial-card {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.symptom-card,
.testimonial-card {
  box-shadow: var(--shadow-sm);
}

.symptom-card span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green-pale);
  font-size: 0.68rem;
  font-weight: 900;
}

.symptom-card p,
.step-card p,
.testimonial-card blockquote {
  margin-bottom: 0;
}

.symptom-card p {
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.45;
}

.bridge-copy {
  margin: var(--space-lg) 0 var(--space-md);
}

.problem .button {
  width: 100%;
}

.step-card {
  position: relative;
  padding-top: 1.1rem;
  box-shadow: none;
}

.step-card__number {
  display: flex;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.8rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.product .step-grid--compact {
  grid-template-columns: 1fr;
  margin: 1.25rem 0 0.75rem;
  gap: 0.65rem;
}

.step-grid--compact .step-card {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  padding: 0.8rem;
  column-gap: 0.75rem;
}

.step-grid--compact .step-card__number {
  grid-row: 1 / 3;
  margin-bottom: 0;
}

.step-grid--compact h3,
.step-grid--compact p {
  margin-bottom: 0;
}

.product {
  overflow: hidden;
  background: var(--cream);
}

.product__grid {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.product__visual {
  display: grid;
  position: relative;
  min-height: 17rem;
  place-items: center;
}

.product-packshot--section {
  width: min(100%, 10rem);
  filter: drop-shadow(0 24px 24px rgba(16, 42, 67, 0.16));
}

.product__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(76vw, 17rem);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--green-pale);
}

.product__copy > p:not(.eyebrow) {
  color: var(--muted);
}

.feature-list li {
  position: relative;
  padding-left: 1.75rem;
}

.feature-list li::before {
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2rem;
  text-align: center;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.5rem;
  color: var(--green-dark);
  font-weight: 900;
  text-underline-offset: 0.3rem;
}

.testimonial-card {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  justify-content: flex-start;
}

.testimonial-card blockquote {
  margin-bottom: auto;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.45;
}

.testimonial-card figcaption {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.testimonial-card__rating {
  margin-bottom: 0.75rem;
  color: #9a6a00;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.testimonial-card__avatar {
  display: inline-flex;
  width: 2.35rem;
  min-width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 900;
}

.testimonial-card__author > span:last-child {
  display: grid;
  gap: 0.05rem;
}

.testimonial-card__author strong {
  color: var(--navy);
  font-size: 0.84rem;
}

.testimonial-card__author small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.social-proof .disclosure {
  margin-top: var(--space-md);
}

.offer-section {
  background: var(--white);
}

.offer-card {
  display: grid;
  overflow: hidden;
  border: 1px solid #c8ddd2;
  border-radius: var(--radius-lg);
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

.offer-card__product {
  display: grid;
  min-height: 16rem;
  padding: 1.25rem;
  place-items: center;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 31%, transparent 32%),
    linear-gradient(145deg, #d8efe2, #f7fbf8);
}

.product-packshot--offer {
  width: min(100%, 9.5rem);
  filter: drop-shadow(0 22px 22px rgba(16, 42, 67, 0.17));
}

.offer-card__copy {
  padding: clamp(1.35rem, 5vw, 3rem);
  color: var(--white);
}

.offer-card__copy h2 {
  color: var(--white);
}

.offer-summary {
  margin-bottom: 1rem;
  color: #d7e4e9;
}

.offer-badge {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #caead7;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.feature-list--compact {
  color: #edf5f1;
}

.offer-card__copy .price-note {
  color: #b7c6ce;
}

.offer-card__copy .button {
  width: 100%;
}

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

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

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item h3 {
  margin: 0;
}

.faq__question {
  display: flex;
  width: 100%;
  min-height: 4.25rem;
  padding: 1rem 0;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  color: var(--navy);
  background: transparent;
  font: 700 1.04rem/1.4 Inter, Arial, system-ui, sans-serif;
  text-align: left;
  cursor: pointer;
}

.faq__question span {
  position: relative;
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--green-pale);
}

.faq__question span::before,
.faq__question span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 2px;
  transform: translate(-50%, -50%);
  background: var(--green-dark);
  content: "";
}

.faq__question span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq__question[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
  padding: 0 2.5rem 1.15rem 0;
  color: var(--muted);
}

.faq__answer p {
  margin-bottom: 0;
}

.js .faq__answer[hidden] {
  display: none;
}

.final-cta {
  overflow: hidden;
  padding: var(--space-xl) 0;
  color: var(--white);
  background: var(--navy);
}

.final-cta__inner {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.final-cta__media {
  aspect-ratio: 16 / 10;
  border: 5px solid rgba(255, 255, 255, 0.12);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p:not(.eyebrow, .trust-line) {
  color: #d9e4e9;
}

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

.site-footer {
  padding: 2.25rem 0;
  color: #6d7873;
  background: #eef2f0;
  font-size: 0.72rem;
  line-height: 1.6;
}

.site-footer__top {
  display: flex;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  color: var(--navy);
}

.site-footer__disclaimer {
  max-width: 85ch;
}

.legal-nav {
  display: flex;
  margin: 0.8rem 0;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
}

.legal-nav a {
  min-height: 2.75rem;
  align-content: center;
  color: var(--navy-soft);
  text-underline-offset: 0.2rem;
}

.copyright {
  margin-bottom: 0;
}

.mobile-cta {
  display: none;
}

@media (min-width: 30rem) {
  .shell,
  .shell--narrow {
    width: min(100% - 2.75rem, var(--shell));
  }

  .shell--narrow {
    width: min(100% - 2.75rem, var(--narrow));
  }

  .hero__product-stage {
    min-height: 14rem;
  }

  .product-image--hero {
    width: min(56vw, 14rem);
  }

  .symptom-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .problem .button,
  .final-cta .button {
    width: auto;
  }
}

@media (min-width: 48rem) {
  body.has-mobile-cta {
    padding-bottom: 0;
  }

  .shell {
    width: min(100% - 4rem, var(--shell));
  }

  .shell--narrow {
    width: min(100% - 4rem, var(--narrow));
  }

  .section-heading--editorial {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1.05fr);
    max-width: none;
    column-gap: var(--space-xl);
  }

  .section-heading--editorial .eyebrow {
    grid-column: 1 / -1;
  }

  .section-heading--editorial h2,
  .section-heading--editorial p {
    margin-bottom: 0;
  }

  .problem__mobile-photo {
    display: none;
  }

  .symptom-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product__grid,
  .offer-card,
  .final-cta__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product__grid {
    gap: var(--space-xl);
  }

  .product__visual {
    min-height: 24rem;
  }

  .product-packshot--section {
    width: min(100%, 11rem);
  }

  .product__halo {
    width: min(36vw, 22rem);
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .offer-card__product {
    min-height: 29rem;
  }

  .product-packshot--offer {
    width: min(100%, 10.5rem);
  }

  .final-cta__inner {
    grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 1.2fr);
  }

  .final-cta__media {
    aspect-ratio: 5 / 4;
  }
}

@media (min-width: 60rem) {
  h1 {
    font-size: clamp(2.7rem, 4.2vw, 3.75rem);
  }

  .hero__grid {
    grid-template-areas:
      "copy visual"
      "details visual";
    grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
    grid-template-rows: auto 1fr;
    gap: 1rem clamp(2rem, 4vw, 3.5rem);
    align-items: center;
  }

  .hero__product-stage {
    min-height: clamp(27rem, 48vw, 33rem);
  }

  .product-packshot--hero {
    width: min(23vw, 11rem);
    margin-left: 8%;
  }

  .hero__product-label {
    top: 1rem;
    left: 1rem;
    font-size: 0.68rem;
  }

  .hero__photo-wrap {
    display: block;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 3;
    width: min(48%, 14rem);
    aspect-ratio: 4 / 3;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
  }

  .hero__details > .button {
    width: auto;
  }

  .benefit-list li {
    font-size: 0.96rem;
  }

  .hero__offer {
    padding: 0.75rem 0.9rem;
  }

  .hero__offer img {
    width: 4rem;
  }
}

@media (min-width: 75rem) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(25rem, 0.88fr);
  }

  .product-packshot--hero {
    width: min(21vw, 12rem);
  }
}

@media (min-width: 60rem) and (max-height: 51.25rem) {
  .hero {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }

  .hero__grid {
    gap: 0.65rem clamp(1.75rem, 3vw, 3rem);
  }

  h1 {
    margin-bottom: 0.6rem;
    font-size: clamp(2.45rem, 3.8vw, 3.25rem);
  }

  .editorial-meta {
    margin-bottom: 0.4rem;
  }

  .eyebrow {
    margin-bottom: 0.4rem;
  }

  .hero__lead {
    font-size: 1.05rem;
    line-height: 1.42;
  }

  .hero__product-stage {
    min-height: min(66vh, 28rem);
  }

  .product-packshot--hero {
    width: min(20vw, 10rem);
  }

  .benefit-list {
    margin-bottom: 0.7rem;
    gap: 0.28rem;
  }

  .benefit-list li {
    font-size: 0.86rem;
  }

  .hero__offer {
    margin-bottom: 0.5rem;
    padding-block: 0.55rem;
  }

  .hero__offer img {
    width: 3.4rem;
  }

  .button {
    min-height: 3.25rem;
  }

  .trust-line {
    margin-top: 0.35rem;
  }
}

@media (max-width: 47.99rem) {
  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: flex;
    min-height: 4.6rem;
    padding: 0.55rem max(1rem, env(safe-area-inset-right)) calc(0.55rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
    transform: translateY(120%);
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -9px 26px rgba(16, 42, 67, 0.11);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .mobile-cta.is-visible {
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-cta div {
    display: grid;
    line-height: 1.15;
  }

  .mobile-cta strong {
    color: var(--green-dark);
    font-size: 0.7rem;
    text-transform: uppercase;
  }

  .mobile-cta span {
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-weight: 700;
  }

  .mobile-cta .button {
    min-height: 3rem;
    padding: 0.6rem 0.85rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 29.99rem) {
  .hero__grid {
    gap: 0.58rem;
  }

  .hero__product-stage {
    min-height: 10.5rem;
  }

  .product-packshot--hero {
    width: min(34vw, 7rem);
  }

  .hero__details .benefit-list {
    margin-bottom: 0.8rem;
    gap: 0.3rem;
  }

  .benefit-list li {
    font-size: 0.86rem;
  }

  .hero__offer {
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 22.01rem) and (max-width: 23.75rem) {
  h1 {
    font-size: 1.95rem;
  }
}

@media (max-width: 22rem) {
  .shell,
  .shell--narrow {
    width: min(100% - 2rem, var(--shell));
  }

  h1 {
    margin-bottom: 0.45rem;
    font-size: 1.8rem;
  }

  .editorial-bar {
    font-size: 0.63rem;
  }

  .hero {
    padding-top: 0.7rem;
  }

  .hero__grid {
    gap: 0.42rem;
  }

  .editorial-meta {
    margin-bottom: 0.3rem;
    flex-wrap: nowrap;
    gap: 0.3rem;
    font-size: 0.58rem;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .eyebrow {
    margin-bottom: 0.35rem;
    font-size: 0.61rem;
    letter-spacing: 0.08em;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.42;
  }

  .hero__product-stage {
    min-height: 7rem;
  }

  .product-packshot--hero {
    width: min(34vw, 6.25rem);
  }

  .hero__product-label {
    font-size: 0.56rem;
  }

  .hero__details .benefit-list {
    margin-bottom: 0.5rem;
    gap: 0.12rem;
  }

  .benefit-list li {
    gap: 0.4rem;
    font-size: 0.74rem;
    line-height: 1.3;
  }

  .benefit-list svg {
    width: 1.1rem;
    min-width: 1.1rem;
    height: 1.1rem;
  }

  .hero__offer {
    min-height: 3.35rem;
    margin-bottom: 0.4rem;
    padding: 0.4rem 0.65rem;
  }

  .hero__offer img {
    width: 2.75rem;
  }

  .hero__offer strong {
    font-size: 1rem;
  }

  .hero__details > .button {
    padding-inline: 0.55rem;
    font-size: 0.72rem;
  }

  .trust-line {
    display: grid;
    gap: 0.1rem;
  }

  .trust-line span:not(:first-child)::before {
    display: none;
  }

  .mobile-cta div {
    display: none;
  }

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

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

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