:root {
  --font-body: "Segoe UI", Arial, sans-serif;
  --font-display: "Segoe UI", Arial, sans-serif;
  --ink: #123d3a;
  --ink-soft: #476562;
  --teal: #0c6b63;
  --teal-dark: #07534d;
  --mint: #e8f4ec;
  --lime: #98c93c;
  --coral: #f5745b;
  --cream: #fbfaf4;
  --paper: #ffffff;
  --line: #dce8e3;
  --shadow: 0 24px 70px rgba(12, 76, 69, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.siteHeader {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 82px;
  border-bottom: 1px solid rgba(18, 61, 58, 0.09);
  background: rgba(251, 250, 244, 0.9);
  backdrop-filter: blur(18px);
}

.headerInner {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 166px;
  height: auto;
}

.desktopNav {
  display: flex;
  gap: 31px;
  margin-left: auto;
  color: #365a57;
  font-size: 0.91rem;
  font-weight: 650;
}

.desktopNav a,
.loginLink {
  position: relative;
  transition: color 180ms ease;
}

.desktopNav a::after,
.loginLink::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktopNav a:hover,
.loginLink:hover {
  color: var(--teal);
}

.desktopNav a:hover::after,
.loginLink:hover::after {
  transform: scaleX(1);
}

.headerActions {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-left: 34px;
}

.loginLink {
  font-size: 0.91rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 51px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 750;
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.button svg,
.textLink svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.button:hover {
  box-shadow: 0 12px 28px rgba(12, 107, 99, 0.18);
  transform: translateY(-2px);
}

.buttonSmall {
  min-height: 43px;
  padding-inline: 17px;
  border-radius: 12px;
  background: var(--teal);
  color: white;
  font-size: 0.88rem;
}

.mobileMenu {
  display: none;
  margin-left: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 710px;
  padding: 78px 0 0;
  background:
    linear-gradient(118deg, rgba(232, 244, 236, 0.92), rgba(251, 250, 244, 0.15) 53%),
    var(--cream);
}

.hero::before {
  position: absolute;
  top: -150px;
  left: -170px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(12, 107, 99, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(12, 107, 99, 0.025), 0 0 0 110px rgba(12, 107, 99, 0.018);
  content: "";
}

.heroGlow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.heroGlowOne {
  top: 70px;
  right: 4%;
  width: 380px;
  height: 380px;
  background: rgba(152, 201, 60, 0.13);
}

.heroGlowTwo {
  right: 38%;
  bottom: 60px;
  width: 180px;
  height: 180px;
  background: rgba(245, 116, 91, 0.1);
}

.heroGrid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 42px;
}

.heroCopy {
  max-width: 580px;
  padding-bottom: 55px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  border-radius: 4px;
  background: var(--lime);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display), Arial, sans-serif;
}

h1 {
  max-width: 670px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(3.3rem, 5.2vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

h1 em {
  color: var(--teal);
  font-style: normal;
}

.heroLead {
  max-width: 545px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.13rem;
  line-height: 1.72;
}

.heroActions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 35px;
}

.buttonPrimary {
  min-height: 58px;
  padding-inline: 25px;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 13px 29px rgba(12, 107, 99, 0.18);
}

.buttonPrimary:hover {
  background: var(--teal-dark);
}

.textLink {
  border-bottom: 1px solid rgba(18, 61, 58, 0.35);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.7;
}

.trustList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 31px 0 0;
  padding: 0;
  color: #53706d;
  font-size: 0.8rem;
  font-weight: 650;
  list-style: none;
}

.trustList li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trustList svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(152, 201, 60, 0.18);
  fill: none;
  stroke: var(--teal);
  stroke-width: 3;
}

.heroVisual {
  position: relative;
  min-height: 540px;
}

.foodPhoto {
  position: absolute;
  inset: 3px 0 0 18px;
  overflow: hidden;
  border-radius: 46% 22% 35% 20% / 27% 30% 21% 36%;
  background: #ecf2e6;
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.foodPhoto::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 250, 244, 0.16), transparent 42%);
  content: "";
}

.foodPhoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
}

.nutritionCard {
  position: absolute;
  z-index: 4;
  top: 68px;
  left: -8px;
  width: 236px;
  min-height: 370px;
  padding: 16px 15px 12px;
  border: 1px solid rgba(9, 42, 39, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 55px rgba(17, 66, 61, 0.21);
  color: #111;
  font-family: Arial, sans-serif;
  transform: rotate(-3deg);
}

.nfTitle {
  font-size: 1.54rem;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.nfSubtitle {
  margin-top: 3px;
  font-size: 0.88rem;
  font-weight: 800;
}

.nfServing {
  margin-top: 8px;
  font-size: 0.56rem;
  line-height: 1.25;
}

.nfRule {
  width: 100%;
  background: #111;
}

.nfRuleThick {
  height: 8px;
  margin: 4px 0;
}

.nfRuleMedium {
  height: 4px;
  margin: 3px 0;
}

.nfCalories {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.76rem;
  font-weight: 800;
}

.nfCalories strong {
  font-size: 1.5rem;
}

.nfDaily {
  text-align: right;
  font-size: 0.49rem;
  font-weight: 800;
  line-height: 1.08;
}

.nfRow {
  display: flex;
  min-height: 20px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #333;
  font-size: 0.54rem;
}

.nfRow.indent {
  padding-left: 8px;
}

.nfFoot {
  font-size: 0.48rem;
  line-height: 1.2;
}

.accuracyBadge {
  position: absolute;
  z-index: 5;
  right: -8px;
  bottom: 47px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 184px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 15px 38px rgba(15, 74, 68, 0.17);
  backdrop-filter: blur(10px);
}

.accuracyBadge > span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 11px;
  background: var(--teal);
}

.accuracyBadge svg {
  width: 19px;
  fill: none;
  stroke: white;
  stroke-width: 2.7;
}

.accuracyBadge div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.accuracyBadge strong {
  font-size: 0.77rem;
}

.accuracyBadge small {
  color: #68807e;
  font-size: 0.67rem;
}

.heroFootnote {
  position: relative;
  z-index: 3;
  padding: 23px 0 25px;
  border-top: 1px solid rgba(18, 61, 58, 0.1);
  color: #6c807e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: 112px 0;
  scroll-margin-top: 75px;
}

.sectionHeading {
  max-width: 720px;
  margin: 0 auto 55px;
}

.sectionHeading.centered {
  text-align: center;
}

.sectionHeading.centered .eyebrow {
  justify-content: center;
}

.sectionHeading h2,
.benefitCopy h2,
.faqGrid h2,
.ctaBox h2 {
  margin-bottom: 21px;
  font-size: clamp(2.4rem, 4.2vw, 3.75rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.sectionHeading > p:last-child,
.sectionLead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.stepsSection {
  background: #fff;
}

.stepsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stepCard {
  min-height: 325px;
  padding: 27px 28px 31px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.stepCard:hover {
  box-shadow: 0 20px 45px rgba(12, 74, 68, 0.1);
  transform: translateY(-5px);
}

.featuredStep {
  background: var(--mint);
}

.stepTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 36px;
}

.stepTop > span {
  color: rgba(12, 107, 99, 0.35);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.iconBox {
  display: grid;
  width: 65px;
  height: 65px;
  place-items: center;
  border-radius: 18px;
  background: var(--mint);
}

.featuredStep .iconBox {
  background: white;
}

.iconBox svg {
  width: 38px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.1;
}

.stepCard h3 {
  margin-bottom: 13px;
  font-size: 1.27rem;
  font-weight: 780;
  letter-spacing: -0.025em;
}

.stepCard p {
  margin: 0;
  color: #607673;
  font-size: 0.91rem;
  line-height: 1.7;
}

.benefitsSection {
  background: var(--cream);
}

.benefitsGrid {
  display: grid;
  grid-template-columns: 1fr 0.93fr;
  align-items: center;
  gap: 90px;
}

.benefitVisual {
  position: relative;
  min-height: 465px;
  border-radius: 34px;
  background: radial-gradient(circle at 24% 23%, rgba(152, 201, 60, 0.2), transparent 32%), var(--mint);
}

.benefitVisual::before,
.benefitVisual::after {
  position: absolute;
  border: 1px solid rgba(12, 107, 99, 0.11);
  border-radius: 50%;
  content: "";
}

.benefitVisual::before {
  top: 40px;
  left: 35px;
  width: 140px;
  height: 140px;
}

.benefitVisual::after {
  right: 28px;
  bottom: 28px;
  width: 86px;
  height: 86px;
}

.miniWindow {
  position: absolute;
  z-index: 2;
  top: 60px;
  right: -28px;
  left: 55px;
  overflow: hidden;
  border: 1px solid rgba(12, 107, 99, 0.13);
  border-radius: 17px;
  background: white;
  box-shadow: 0 28px 60px rgba(11, 80, 73, 0.15);
  transform: rotate(-1.8deg);
}

.windowBar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 45px;
  padding: 0 17px;
  border-bottom: 1px solid #e6edeb;
  background: #f9fbfa;
}

.windowBar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d2dcda;
}

.windowBar i:first-child {
  background: var(--coral);
}

.windowBar span {
  margin-left: auto;
  color: #54726e;
  font-size: 0.68rem;
  font-weight: 750;
}

.windowBody {
  padding: 25px 28px 29px;
}

.formLine span {
  display: block;
  margin-bottom: 7px;
  color: #78908d;
  font-size: 0.65rem;
  font-weight: 750;
  text-transform: uppercase;
}

.formLine strong {
  display: block;
  margin-bottom: 21px;
  padding: 11px 13px;
  border: 1px solid #d9e5e1;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.8rem;
}

.ingredientLine {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  padding: 11px 12px;
  border-radius: 8px;
  background: #f3f8f5;
  font-size: 0.73rem;
}

.ingredientLine b {
  font-weight: 750;
}

.ingredientLine em {
  color: #5b7773;
  font-style: normal;
}

.addLine {
  padding: 15px 3px 20px;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 750;
}

.progressLine {
  height: 6px;
  overflow: hidden;
  border-radius: 10px;
  background: #eaf0ee;
}

.progressLine span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--lime));
}

.mapleStamp {
  position: absolute;
  z-index: 3;
  right: -17px;
  bottom: 29px;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 7px solid var(--cream);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 15px 30px rgba(79, 64, 51, 0.16);
}

.mapleStamp svg {
  width: 44px;
  fill: white;
}

.benefitCopy h2 {
  font-size: clamp(2.3rem, 3.7vw, 3.35rem);
}

.benefitList {
  display: grid;
  gap: 21px;
  margin-top: 32px;
}

.benefitList > div {
  display: grid;
  grid-template-columns: 29px 1fr;
  gap: 13px;
}

.benefitList svg {
  width: 27px;
  padding: 5px;
  border-radius: 9px;
  background: var(--mint);
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.6;
}

.benefitList p {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}

.benefitList strong {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 0.98rem;
}

.benefitList span {
  color: #607774;
  font-size: 0.86rem;
  line-height: 1.55;
}

.audienceSection {
  background: var(--teal-dark);
  color: white;
}

.splitHeading {
  display: grid;
  max-width: none;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 100px;
}

.splitHeading h2 {
  max-width: 670px;
  margin-bottom: 0;
}

.splitHeading .eyebrow {
  color: #bcdca4;
}

.splitHeading > p {
  padding-bottom: 7px;
  color: rgba(255, 255, 255, 0.68) !important;
}

.audienceGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.audienceGrid article {
  min-height: 240px;
  padding: 34px 34px 22px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.audienceGrid article + article {
  padding-left: 34px;
}

.audienceGrid article:last-child {
  border-right: 0;
}

.audienceGrid span {
  color: #a9d66a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.audienceGrid h3 {
  max-width: 265px;
  margin: 42px 0 12px;
  font-size: 1.27rem;
  line-height: 1.25;
}

.audienceGrid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  line-height: 1.65;
}

.faqSection {
  background: white;
}

.faqGrid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
}

.faqGrid h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 3.8vw, 3.35rem);
}

.faqList {
  border-top: 1px solid var(--line);
}

.faqList details {
  border-bottom: 1px solid var(--line);
}

.faqList summary {
  position: relative;
  padding: 24px 45px 24px 0;
  cursor: pointer;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 750;
  list-style: none;
}

.faqList summary::-webkit-details-marker {
  display: none;
}

.faqList summary i,
.faqList summary i::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
  content: "";
}

.faqList summary i::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faqList details[open] summary i::after {
  transform: rotate(0);
}

.faqList details p {
  max-width: 680px;
  margin: -6px 0 24px;
  color: #607774;
  font-size: 0.9rem;
  line-height: 1.7;
}

.ctaSection {
  padding: 82px 0;
  background: white;
}

.ctaBox {
  position: relative;
  overflow: hidden;
  padding: 78px 40px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 0%, rgba(152, 201, 60, 0.17), transparent 31%),
    radial-gradient(circle at 96% 100%, rgba(245, 116, 91, 0.15), transparent 33%),
    var(--teal);
  color: white;
  text-align: center;
}

.ctaBox::after {
  position: absolute;
  top: -115px;
  right: -115px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.025), 0 0 0 84px rgba(255, 255, 255, 0.018);
  content: "";
}

.lightEyebrow {
  position: relative;
  z-index: 2;
  justify-content: center;
  color: #cbe8b1;
}

.ctaBox h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
}

.ctaBox > p:not(.eyebrow) {
  position: relative;
  z-index: 2;
  margin: 0 0 29px;
  color: rgba(255, 255, 255, 0.7);
}

.buttonLight {
  position: relative;
  z-index: 2;
  background: white;
  color: var(--teal);
}

.ctaLeaf {
  position: absolute;
  width: 120px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 100% 0 100% 0;
}

.ctaLeafLeft {
  bottom: -12px;
  left: 35px;
  transform: rotate(16deg);
}

.ctaLeafRight {
  top: 35px;
  right: 55px;
  transform: rotate(195deg);
}

footer {
  padding-top: 64px;
  background: #eef4ef;
}

.footerTop {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr 1fr;
  gap: 55px;
  padding-bottom: 55px;
}

.footerBrand img {
  width: 155px;
  height: auto;
}

.footerBrand p {
  max-width: 240px;
  margin: 15px 0 0;
  color: #607774;
  font-size: 0.85rem;
  line-height: 1.55;
}

.footerLinks,
.footerCta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footerLinks strong,
.footerCta strong {
  margin-bottom: 6px;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footerLinks a {
  color: #5e7471;
  font-size: 0.82rem;
}

.footerLinks a:hover {
  color: var(--teal);
}

.buttonOutline {
  min-height: 45px;
  margin-top: 4px;
  border-color: rgba(12, 107, 99, 0.28);
  color: var(--teal);
}

.footerBottom {
  display: flex;
  justify-content: space-between;
  padding: 23px 0 26px;
  border-top: 1px solid rgba(18, 61, 58, 0.11);
  color: #718582;
  font-size: 0.72rem;
}

.footerBottom b {
  color: var(--coral);
}

@media (max-width: 1100px) {
  .desktopNav {
    gap: 20px;
  }

  .headerActions {
    margin-left: 23px;
  }

  .heroGrid {
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  }

  .nutritionCard {
    left: -2px;
    width: 220px;
  }

  .benefitsGrid {
    gap: 65px;
  }
}

@media (max-width: 920px) {
  .desktopNav,
  .headerActions {
    display: none;
  }

  .mobileMenu {
    position: relative;
    display: block;
  }

  .mobileMenu summary {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 4px;
    border-radius: 11px;
    background: var(--teal);
    cursor: pointer;
    list-style: none;
  }

  .mobileMenu summary::-webkit-details-marker {
    display: none;
  }

  .mobileMenu summary span {
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: white;
  }

  .mobileMenu nav {
    position: absolute;
    top: 51px;
    right: 0;
    display: grid;
    width: 225px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: 0 18px 45px rgba(12, 74, 68, 0.15);
  }

  .mobileMenu nav a {
    padding: 11px 12px;
    border-radius: 9px;
    font-size: 0.87rem;
    font-weight: 700;
  }

  .mobileMenu nav a:hover {
    background: var(--mint);
  }

  .hero {
    padding-top: 64px;
  }

  .heroGrid {
    grid-template-columns: 1fr;
  }

  .heroCopy {
    max-width: 700px;
    padding-bottom: 0;
  }

  .heroVisual {
    min-height: 510px;
  }

  .foodPhoto {
    left: 80px;
  }

  .nutritionCard {
    left: 25px;
  }

  .accuracyBadge {
    right: 22px;
  }

  .stepsGrid,
  .audienceGrid {
    grid-template-columns: 1fr;
  }

  .stepCard {
    min-height: auto;
  }

  .audienceGrid article,
  .audienceGrid article + article {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .audienceGrid article:last-child {
    border-bottom: 0;
  }

  .audienceGrid h3 {
    margin: 20px 0 10px;
  }

  .benefitsGrid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .benefitVisual {
    width: min(680px, 100%);
  }

  .splitHeading,
  .faqGrid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footerTop {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footerCta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .siteHeader {
    height: 72px;
  }

  .brand img {
    width: 145px;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .hero::before,
  .heroGlowTwo {
    display: none;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  .heroLead {
    font-size: 1rem;
  }

  .heroActions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .textLink {
    align-self: center;
  }

  .trustList {
    gap: 12px 16px;
  }

  .heroVisual {
    min-height: 455px;
    margin-top: 15px;
  }

  .foodPhoto {
    inset: 35px -35px 10px 47px;
  }

  .nutritionCard {
    top: 63px;
    left: 0;
    width: 185px;
    min-height: 322px;
    padding: 13px 12px 10px;
  }

  .nfTitle {
    font-size: 1.27rem;
  }

  .nfRow {
    min-height: 17px;
    font-size: 0.47rem;
  }

  .accuracyBadge {
    right: -3px;
    bottom: 22px;
    min-width: auto;
  }

  .accuracyBadge small {
    display: none;
  }

  .heroFootnote {
    padding-inline: 18px;
    line-height: 1.6;
  }

  .section {
    padding: 82px 0;
  }

  .sectionHeading {
    margin-bottom: 39px;
  }

  .sectionHeading h2,
  .benefitCopy h2,
  .faqGrid h2,
  .ctaBox h2 {
    font-size: 2.35rem;
  }

  .stepCard {
    padding: 23px;
  }

  .stepTop {
    margin-bottom: 22px;
  }

  .benefitVisual {
    min-height: 395px;
  }

  .miniWindow {
    top: 44px;
    right: 19px;
    left: 18px;
  }

  .mapleStamp {
    right: -6px;
    bottom: 17px;
  }

  .splitHeading {
    gap: 25px;
  }

  .ctaSection {
    padding: 60px 0;
  }

  .ctaBox {
    width: calc(100% - 24px);
    padding: 64px 23px;
  }

  .footerTop {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
  }

  .footerBrand,
  .footerCta {
    grid-column: 1 / -1;
  }

  .footerBottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
