@import url("/assets/noot-fonts.css");

:root {
  --ink: #082f21;
  --forest: #06422e;
  --noot: #009b45;
  --leaf: #b6d39f;
  --leaf-pale: #edf5e7;
  --canvas: #f7f6f1;
  --paper: #fffefa;
  --line: #d7dfd3;
  --muted: #5d6a60;
  --sun: #f3c747;
  --white: #ffffff;
  --radius: 10px;
  --shell: min(1312px, calc(100% - 48px));
  --shadow: 0 18px 50px rgba(8, 47, 33, .1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body.noot-home-v3 {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--noot-font-sans, "Figtree", ui-sans-serif, system-ui, sans-serif);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.noot-home-v3.noot-support-open {
  overflow: hidden;
}

body.noot-home-v3 img,
body.noot-home-v3 video {
  display: block;
  max-width: 100%;
}

body.noot-home-v3 a {
  color: inherit;
}

body.noot-home-v3 button,
body.noot-home-v3 select {
  color: inherit;
  font: inherit;
}

body.noot-home-v3 button,
body.noot-home-v3 summary,
body.noot-home-v3 select {
  -webkit-tap-highlight-color: transparent;
}

body.noot-home-v3 :focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--forest);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .16s ease;
}

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

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 7px 18px;
  background: var(--forest);
  color: var(--white);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .04em;
  text-align: center;
}

.announcement span {
  color: var(--sun);
  font-size: 8px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(8, 47, 33, .09);
  background: rgba(255, 254, 250, .96);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 104px;
  height: 52px;
  display: grid;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
}

.desktop-nav a,
.account-link {
  position: relative;
  padding: 10px 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.desktop-nav a::after,
.account-link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--noot);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .18s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.account-link:hover::after,
.account-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 24px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: var(--white) !important;
  font-weight: 850;
  letter-spacing: -.01em;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

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

.button--small {
  min-height: 42px;
  padding: 9px 20px;
  font-size: 13px;
}

.button--light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--forest) !important;
}

.button--light:hover {
  border-color: var(--leaf-pale);
  background: var(--leaf-pale);
}

.button--outline {
  border-color: var(--forest);
  background: transparent;
  color: var(--forest) !important;
  cursor: pointer;
}

.button--outline:hover {
  color: var(--white) !important;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 18px;
  height: 2px;
  background: var(--forest);
  transition: transform .18s ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  padding: 0 max(24px, calc((100% - 1312px) / 2)) 24px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-weight: 780;
  text-decoration: none;
}

.mobile-nav a::after {
  content: "→";
}

.hero {
  overflow: hidden;
  background: var(--paper);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(440px, .86fr);
  gap: clamp(36px, 5vw, 82px);
  align-items: center;
  padding-block: clamp(48px, 6vw, 88px);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--noot);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  display: inline-block;
  background: currentColor;
}

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

.hero h1,
.section-heading h2,
.routine-copy h2,
.root-zone h2,
.assistant-section h2,
.faq-intro h2,
.closing-section h2 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 78px);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .95;
}

.hero h1 {
  max-width: 760px;
}

.hero__lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: #3e5348;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero__proof li span {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf-pale);
  color: var(--noot);
  font-size: 11px;
}

.plan-card {
  max-width: 680px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--canvas);
  box-shadow: 0 12px 35px rgba(8, 47, 33, .06);
}

.plan-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
}

.plan-card__kicker {
  margin: 0 0 2px;
  color: var(--noot);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.plan-card h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.plan-price {
  min-width: 112px;
  text-align: right;
}

.plan-price strong {
  display: block;
  font-size: 27px;
  font-weight: 950;
  letter-spacing: -.05em;
  line-height: 1;
}

.plan-price span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
}

.mode-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 0;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.mode-control button {
  min-height: 54px;
  display: grid;
  gap: 0;
  align-content: center;
  padding: 7px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.mode-control button[aria-pressed="true"] {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.mode-control button span {
  font-size: 13px;
  font-weight: 850;
}

.mode-control button small {
  color: var(--muted);
  font-size: 10px;
}

.mode-control button[aria-pressed="true"] small {
  color: #cbe3d2;
}

.plan-card__controls {
  display: grid;
  grid-template-columns: 1fr 1fr .8fr;
  gap: 8px;
  margin-top: 9px;
}

.quantity-control,
.cadence-control,
.yield-control {
  min-height: 61px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}

.control-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

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

.quantity-control button {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--canvas);
  cursor: pointer;
  font-size: 17px;
}

.quantity-control button:disabled {
  cursor: not-allowed;
  opacity: .4;
}

.quantity-control output,
.yield-control strong {
  font-size: 14px;
  font-weight: 900;
}

.cadence-control select {
  width: 100%;
  padding: 0 20px 0 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 900;
  outline: 0;
}

.plan-card__summary {
  min-height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
}

.plan-card__summary p {
  margin: 0;
}

.plan-card__summary span {
  flex: none;
  font-weight: 750;
}

.button--checkout {
  width: 100%;
  min-height: 50px;
  justify-content: space-between;
  border-radius: 7px;
}

.button--checkout[aria-disabled="true"] {
  pointer-events: none;
  opacity: .58;
}

.catalog-status {
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.catalog-status[data-state="ready"] {
  display: none;
}

.catalog-status[data-state="fallback"] {
  color: #76591e;
}

.catalog-status button {
  padding: 2px 7px;
  border: 0;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-size: 10px;
  font-weight: 850;
  text-decoration: underline;
}

.plan-card__fine-print {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
}

.hero__media {
  position: relative;
}

.hero__media::before {
  position: absolute;
  z-index: 0;
  top: -10%;
  right: -20%;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--leaf-pale);
  content: "";
}

.hero-product {
  position: relative;
  z-index: 1;
  margin: 0;
}

.hero-product > img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
}

.hero-product figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 7px;
  background: rgba(255, 254, 250, .91);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(8, 47, 33, .12);
}

.hero-product figcaption > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.hero-product figcaption p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.hero-product figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.proof-rail {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--leaf-pale);
}

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

.proof-rail__inner > div {
  min-height: 100px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 18px clamp(14px, 2vw, 30px);
  border-right: 1px solid rgba(8, 47, 33, .13);
}

.proof-rail__inner > div:first-child {
  border-left: 1px solid rgba(8, 47, 33, .13);
}

.proof-rail strong {
  font-size: 15px;
  font-weight: 900;
}

.proof-rail span {
  color: var(--muted);
  font-size: 11px;
}

.section {
  padding-block: clamp(76px, 9vw, 128px);
}

.section-heading {
  margin-bottom: clamp(36px, 5vw, 62px);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .65fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: end;
}

.section-heading--split h2,
.section-heading--center h2,
.routine-copy h2,
.root-zone h2,
.assistant-section h2,
.faq-intro h2,
.closing-section h2 {
  font-size: clamp(38px, 4.5vw, 65px);
}

.section-heading > p,
.section-heading--split > p,
.section-heading--split > div:last-child p,
.section-heading--center > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.section-heading--center {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px auto 0;
}

.benefit-explorer {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .75fr);
  gap: clamp(38px, 6vw, 90px);
  align-items: stretch;
}

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

.benefit-row {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 42px 130px 1fr 24px;
  gap: 14px;
  align-items: center;
  padding: 12px 2px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.benefit-row > span {
  color: var(--noot);
  font-size: 12px;
  font-weight: 900;
}

.benefit-row > strong {
  font-size: 18px;
  font-weight: 900;
}

.benefit-row > small {
  color: var(--muted);
  font-size: 12px;
  transition: color .18s ease;
}

.benefit-row > i {
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

.benefit-row:hover > small,
.benefit-row.is-active > small {
  color: var(--ink);
}

.benefit-row.is-active {
  background: var(--leaf-pale);
}

.benefit-stage {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f1f1ec;
}

.benefit-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .16s ease, transform .22s ease;
}

.benefit-stage.is-changing img {
  opacity: .2;
  transform: scale(.985);
}

.benefit-stage figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 20px;
  border-radius: 7px;
  background: rgba(255, 254, 250, .94);
  box-shadow: var(--shadow);
}

.benefit-stage figcaption span {
  color: var(--noot);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.benefit-stage figcaption strong {
  display: block;
  margin-top: 5px;
  font-size: 20px;
  font-weight: 950;
}

.benefit-stage figcaption p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.routine-section {
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.routine-grid {
  display: grid;
  grid-template-columns: minmax(330px, .7fr) minmax(0, 1.2fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}

.routine-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 22px 0 32px;
  color: #cfe0d5;
  font-size: 17px;
}

.routine-copy ol {
  display: grid;
  gap: 0;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.routine-copy li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.routine-copy li > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--forest);
  font-size: 12px;
  font-weight: 950;
}

.routine-copy li strong,
.routine-copy li small {
  display: block;
}

.routine-copy li strong {
  font-size: 15px;
}

.routine-copy li small {
  color: #b9cec1;
  font-size: 11px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-weight: 850;
  text-decoration: none;
}

.text-link--light {
  color: var(--white) !important;
}

.routine-media {
  position: relative;
  min-height: 580px;
}

.routine-media__main {
  position: absolute;
  top: 0;
  right: 0;
  width: 86%;
  height: 78%;
  margin: 0;
}

.routine-media__main img,
.routine-media__small img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.routine-media__small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42%;
  aspect-ratio: 1;
  margin: 0;
  padding: 9px;
  border-radius: calc(var(--radius) + 6px);
  background: var(--forest);
}

.routine-note {
  position: absolute;
  right: 8%;
  bottom: 6%;
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  transform: rotate(-5deg);
}

.routine-note strong,
.routine-note span {
  display: block;
  line-height: 1;
}

.routine-note strong {
  font-size: 27px;
  font-weight: 950;
}

.routine-note span {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 800;
}

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

.inside-card {
  min-height: 280px;
  padding: clamp(25px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.inside-card--wide {
  min-height: 350px;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: 55px;
  align-items: center;
}

.inside-card--green {
  background: var(--leaf-pale);
}

.inside-card__number {
  display: block;
  margin-bottom: 32px;
  color: var(--noot);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.inside-card h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 950;
  letter-spacing: -.05em;
  line-height: 1;
}

.inside-card p {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.ingredient-orbits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 2vw, 26px);
}

.ingredient-orbits figure {
  position: relative;
  margin: 0;
}

.ingredient-orbits img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.ingredient-orbits figcaption {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.inside-card__metric {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin: 0 !important;
  color: var(--forest) !important;
}

.inside-card__metric strong {
  font-size: clamp(70px, 8vw, 112px);
  font-weight: 950;
  letter-spacing: -.085em;
  line-height: .75;
}

.inside-card__metric span {
  max-width: 100px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.root-zone {
  overflow: hidden;
  background: #032e20;
  color: var(--white);
}

.root-zone__inner {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(340px, .72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.root-zone__copy {
  position: relative;
  z-index: 2;
  padding-block: 90px;
}

.root-zone__copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #c3d8cb;
  font-size: 16px;
  line-height: 1.7;
}

.root-zone__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
}

.root-zone__stats > div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 7px;
  background: rgba(255, 255, 255, .06);
}

.root-zone__stats strong,
.root-zone__stats span {
  display: block;
}

.root-zone__stats strong {
  color: var(--sun);
  font-size: 33px;
  font-weight: 950;
  line-height: 1;
}

.root-zone__stats span {
  margin-top: 6px;
  color: #c3d8cb;
  font-size: 11px;
}

.root-zone figure {
  align-self: stretch;
  margin: 0;
}

.root-zone figure img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  object-position: center;
}

.progress-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.progress-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.progress-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.progress-images figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  background: #e9ebe4;
}

.progress-images img {
  width: 100%;
  height: clamp(310px, 35vw, 500px);
  object-fit: cover;
}

.progress-images figcaption {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 99px;
  background: rgba(255, 254, 250, .9);
  color: var(--forest);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.progress-card > div:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 7px 5px;
}

.progress-card > div:last-child span {
  color: var(--noot);
  font-size: 11px;
  font-weight: 850;
}

.progress-card > div:last-child strong {
  font-size: 14px;
  text-align: right;
}

.reviews-section {
  background: var(--paper);
}

.review-slider {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 14px;
  align-items: center;
}

.slider-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  transition: background .16s ease, color .16s ease;
}

.slider-button:hover {
  background: var(--forest);
  color: var(--white);
}

.review-track {
  display: grid;
  grid-auto-columns: minmax(300px, calc((100% - 24px) / 3));
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding: 4px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  touch-action: pan-y pinch-zoom;
  scrollbar-width: none;
  -webkit-overflow-scrolling: auto;
}

.review-track::-webkit-scrollbar {
  display: none;
}

[data-single-step-rail="true"].is-carousel-dragging,
[data-single-step-rail="true"].is-carousel-settling {
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
}

[data-single-step-rail="true"].is-carousel-dragging {
  cursor: grabbing;
  user-select: none;
  -webkit-user-select: none;
}

[data-single-step-rail="true"] img {
  -webkit-user-drag: none;
}

.review-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--canvas);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.review-card > figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  background: var(--leaf-pale);
}

.review-card > figure img,
.review-card > figure video {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.review-card > figure > span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 99px;
  background: rgba(255, 254, 250, .92);
  color: var(--forest);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.review-card > .review-card__quote {
  min-height: 150px;
  display: grid;
  place-items: center;
}

.review-card__quote b {
  color: var(--noot);
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
}

.review-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.review-card > div > small {
  color: var(--noot);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.review-card__rating {
  margin-top: 8px;
  color: var(--noot);
  font-size: 12px;
  letter-spacing: .08em;
}

.review-card > div > strong {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.review-card > div > p {
  margin: 10px 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.review-card time {
  margin-top: auto;
  color: var(--muted);
  font-size: 10px;
}

.review-card__transcript {
  width: 100%;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.review-card__transcript summary {
  cursor: pointer;
  font-weight: 850;
}

.review-card__transcript p {
  margin: 8px 0 0 !important;
}

.review-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 24px;
}

.review-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #bdc6bd;
  cursor: pointer;
}

.review-dots button[aria-current="true"] {
  width: 22px;
  border-radius: 99px;
  background: var(--noot);
}

.assistant-section {
  padding-block: 52px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--leaf-pale);
}

.assistant-section__inner {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 28px;
  align-items: center;
}

.assistant-section__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
}

.assistant-section__icon img {
  width: 42px;
  height: 42px;
  filter: brightness(0) invert(1);
}

.assistant-section .eyebrow {
  margin-bottom: 9px;
}

.assistant-section h2 {
  font-size: clamp(27px, 3.1vw, 43px);
}

.assistant-section__inner > div:nth-child(2) > p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, .55fr) minmax(0, 1fr);
  gap: clamp(55px, 9vw, 140px);
}

.faq-intro > p:not(.eyebrow) {
  max-width: 330px;
  margin: 22px 0 0;
  color: var(--muted);
}

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

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

.faq-list summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf-pale);
  color: var(--noot);
  transition: transform .18s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 660px;
  margin: -6px 55px 24px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.closing-section {
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.closing-section__inner {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(230px, .6fr) minmax(340px, 1fr) auto;
  gap: clamp(40px, 7vw, 95px);
  align-items: center;
}

.closing-section img {
  width: 100%;
  max-height: 390px;
  align-self: end;
  object-fit: contain;
  mix-blend-mode: screen;
}

.closing-section h2 {
  max-width: 650px;
}

.closing-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 24px 0 0;
  padding: 0;
  color: #c7d9ce;
  font-size: 11px;
  list-style: none;
}

.closing-section li::before {
  margin-right: 6px;
  color: var(--sun);
  content: "✓";
}

.site-footer {
  background: #04291d;
  color: var(--white);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.4fr .65fr .8fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  padding-block: 64px 48px;
}

.footer-brand img {
  width: 105px;
  height: auto;
}

.footer-brand p,
.footer-plan p {
  max-width: 250px;
  margin: 16px 0 0;
  color: #9eb8a9;
  font-size: 12px;
  line-height: 1.6;
}

.site-footer nav,
.footer-plan {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer nav strong,
.footer-plan strong {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 900;
}

.site-footer nav a,
.site-footer nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #9eb8a9;
  cursor: pointer;
  font-size: 11px;
  text-decoration: none;
}

.site-footer nav a:hover,
.site-footer nav button:hover {
  color: var(--white);
}

.footer-plan .button {
  margin-top: 10px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px 26px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #809c8b;
  font-size: 9px;
}

.noscript-banner {
  position: fixed;
  z-index: 1000;
  right: 12px;
  bottom: 12px;
  left: 12px;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid var(--sun);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .75fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(42px, 5.6vw, 62px);
  }

  .plan-card__controls {
    grid-template-columns: 1fr 1fr;
  }

  .yield-control {
    display: none;
  }

  .closing-section__inner {
    grid-template-columns: 230px 1fr;
    padding-block: 60px;
  }

  .closing-section__inner > .button {
    grid-column: 2;
    justify-self: start;
    margin-top: -35px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  html {
    scroll-padding-top: 98px;
  }

  .site-header__inner {
    min-height: 66px;
    grid-template-columns: 100px 1fr;
  }

  .desktop-nav,
  .account-link {
    display: none;
  }

  .header-actions {
    justify-content: flex-end;
    gap: 10px;
  }

  .menu-toggle {
    display: grid;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 46px;
  }

  .hero__copy,
  .hero h1,
  .hero__lede,
  .plan-card {
    max-width: none;
  }

  .hero__media {
    max-width: 650px;
    margin-inline: auto;
  }

  .proof-rail__inner {
    grid-template-columns: 1fr 1fr;
  }

  .proof-rail__inner > div,
  .proof-rail__inner > div:first-child {
    border: 0;
    border-right: 1px solid rgba(8, 47, 33, .13);
    border-bottom: 1px solid rgba(8, 47, 33, .13);
  }

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

  .proof-rail__inner > div:nth-child(n+3) {
    border-bottom: 0;
  }

  .section-heading--split,
  .benefit-explorer,
  .routine-grid,
  .root-zone__inner,
  .assistant-section__inner,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .benefit-stage {
    min-height: 610px;
  }

  .routine-media {
    min-height: 560px;
  }

  .root-zone__inner {
    gap: 0;
  }

  .root-zone__copy {
    padding: 80px 0 0;
  }

  .root-zone figure img {
    min-height: 480px;
  }

  .review-track {
    grid-auto-columns: minmax(300px, calc((100% - 12px) / 2));
  }

  .assistant-section__inner {
    justify-items: start;
  }

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

  .inside-card--wide {
    grid-template-columns: 1fr;
  }

  .inside-card--wide,
  .inside-card {
    grid-column: auto;
  }

  .site-footer__main {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-plan {
    grid-column: 1 / -1;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .announcement {
    min-height: 30px;
    font-size: 10px;
  }

  .site-header__inner {
    min-height: 62px;
  }

  .brand {
    width: 86px;
    height: 44px;
  }

  .header-actions > .button {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero__inner {
    gap: 32px;
    padding-block: 38px 48px;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero__lede {
    margin-top: 18px;
    font-size: 15px;
  }

  .hero__proof {
    display: grid;
    margin-block: 20px 24px;
  }

  .plan-card {
    padding: 14px;
    border-radius: 8px;
  }

  .plan-card__head {
    margin-bottom: 12px;
  }

  .plan-card h2 {
    font-size: 16px;
  }

  .plan-price strong {
    font-size: 23px;
  }

  .mode-control button {
    min-height: 50px;
    padding-inline: 9px;
  }

  .mode-control button span {
    font-size: 11px;
  }

  .mode-control button small {
    overflow: hidden;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .plan-card__controls {
    grid-template-columns: 1fr 1fr;
  }

  .quantity-control,
  .cadence-control {
    min-height: 56px;
  }

  .plan-card__summary {
    min-height: 32px;
    font-size: 9px;
  }

  .plan-card__summary span {
    display: none;
  }

  .button--checkout {
    min-height: 47px;
    font-size: 13px;
  }

  .plan-card__fine-print {
    font-size: 8px;
  }

  .hero-product figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .hero-product figcaption > span {
    width: 48px;
    height: 48px;
  }

  .proof-rail__inner > div {
    min-height: 84px;
    padding: 14px 10px;
  }

  .proof-rail strong {
    font-size: 13px;
  }

  .proof-rail span {
    font-size: 9px;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading--split,
  .routine-grid,
  .faq-grid {
    gap: 28px;
  }

  .section-heading--split h2,
  .section-heading--center h2,
  .routine-copy h2,
  .root-zone h2,
  .faq-intro h2,
  .closing-section h2 {
    font-size: 38px;
  }

  .section-heading > p,
  .section-heading--split > p,
  .section-heading--split > div:last-child p,
  .section-heading--center > p:not(.eyebrow) {
    font-size: 14px;
  }

  .benefit-row {
    min-height: 67px;
    grid-template-columns: 32px 96px 1fr 20px;
    gap: 8px;
  }

  .benefit-row > strong {
    font-size: 15px;
  }

  .benefit-row > small {
    font-size: 10px;
  }

  .benefit-stage {
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(280px, 58vw) auto;
  }

  .benefit-stage figcaption {
    position: static;
    padding: 15px;
    border-radius: 0;
    box-shadow: none;
  }

  .routine-media {
    min-height: 400px;
  }

  .routine-media__main {
    width: 92%;
    height: 76%;
  }

  .routine-note {
    width: 92px;
    height: 92px;
  }

  .routine-note strong {
    font-size: 22px;
  }

  .inside-card,
  .inside-card--wide {
    min-height: 0;
    padding: 25px;
  }

  .ingredient-orbits {
    gap: 9px;
  }

  .ingredient-orbits figcaption {
    font-size: 9px;
  }

  .root-zone__copy {
    padding-top: 70px;
  }

  .root-zone figure {
    margin-inline: -14px;
  }

  .root-zone figure img {
    min-height: 360px;
  }

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

  .progress-images img {
    height: 330px;
  }

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

  .slider-button {
    display: none;
  }

  .review-track {
    width: 100%;
    max-width: 100%;
    grid-auto-columns: min(88%, 360px);
    margin: 0;
    padding: 4px 16px 4px 0;
    scroll-padding-inline: 0 16px;
    overscroll-behavior-inline: contain;
  }

  .assistant-section {
    padding-block: 45px;
  }

  .assistant-section__inner {
    gap: 18px;
  }

  .assistant-section h2 {
    font-size: 30px;
  }

  .faq-list summary {
    min-height: 64px;
    font-size: 13px;
  }

  .closing-section__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 64px;
  }

  .closing-section img {
    width: 210px;
    max-height: 210px;
    justify-self: center;
  }

  .closing-section__inner > .button {
    grid-column: auto;
    justify-self: stretch;
    margin-top: 0;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
  }

  .footer-brand,
  .footer-plan {
    grid-column: 1 / -1;
  }

  .footer-plan {
    align-items: stretch;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Keep the Classic gallery controls on top of the media, matching the ShipFare reference. */
body.noot-home-v3 .hero-gallery {
  position: relative;
}

body.noot-home-v3 .hero-gallery__thumbnails {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 14px;
  width: 56px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(8, 47, 33, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 26px rgba(8, 47, 33, .12);
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

body.noot-home-v3 .hero-gallery__thumbnails button {
  width: 40px;
  flex: 0 0 40px;
}

body.noot-home-v3 .hero-gallery__caption {
  left: 84px;
}

body.noot-home-v3 .hero-gallery__hint {
  display: none;
}

@media (max-width: 640px) {
  body.noot-home-v3 .hero-gallery__thumbnails {
    left: 10px;
    width: 48px;
    gap: 6px;
    padding: 5px;
  }

  body.noot-home-v3 .hero-gallery__thumbnails button {
    width: 36px;
    flex-basis: 36px;
  }

  body.noot-home-v3 .hero-gallery__caption {
    right: 64px;
    left: 66px;
  }
}

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

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

/* Shared gallery and renewal controls used by the Classic and V4 previews. */
.plan-card__controls {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quantity-control,
.cadence-control,
.renewal-control,
.yield-control {
  min-width: 0;
}

.renewal-control {
  position: relative;
  min-height: 61px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}

.cadence-control[hidden],
.renewal-control[hidden],
.renewal-picker[hidden] {
  display: none;
}

.renewal-control__trigger {
  position: relative;
  width: 100%;
  min-height: 59px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 8px 28px 8px 11px;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  text-align: left;
}

.renewal-control__trigger strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.renewal-control__chevron {
  position: absolute;
  top: 50%;
  right: 11px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-68%) rotate(45deg);
  transition: transform .18s ease;
}

.renewal-control__trigger[aria-expanded="true"] .renewal-control__chevron {
  transform: translateY(-25%) rotate(225deg);
}

.renewal-picker {
  position: absolute;
  z-index: 30;
  top: calc(100% + 9px);
  right: 0;
  width: min(330px, calc(100vw - 48px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(8, 47, 33, .16);
}

.renewal-picker__head,
.renewal-picker__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.renewal-picker__head > div > strong,
.renewal-picker__head > div > span {
  display: block;
}

.renewal-picker__head > div > strong {
  font-size: 16px;
  font-weight: 900;
}

.renewal-picker__head > div > span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.renewal-picker__close,
.renewal-picker__nav {
  width: 34px;
  height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--canvas);
  color: var(--forest);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.renewal-picker__month {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  gap: 8px;
  align-items: center;
  margin: 16px 0 12px;
}

.renewal-picker__month > strong {
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.renewal-picker__weekdays,
.renewal-picker__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
}

.renewal-picker__weekdays {
  margin-bottom: 4px;
}

.renewal-picker__weekdays span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.renewal-picker__day,
.renewal-picker__blank {
  aspect-ratio: 1;
}

.renewal-picker__day {
  min-width: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.renewal-picker__day:hover,
.renewal-picker__day:focus-visible {
  border-color: #9ab4a5;
  background: var(--leaf-pale);
}

.renewal-picker__day.is-today {
  border-color: #9ab4a5;
}

.renewal-picker__day.is-selected {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.renewal-picker__day:disabled,
.renewal-picker__nav:disabled {
  cursor: not-allowed;
  opacity: .3;
}

.renewal-picker__footer {
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.renewal-picker__footer > span {
  max-width: 175px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.renewal-picker__footer > button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--noot);
  cursor: pointer;
  font-size: 10px;
  font-weight: 850;
  text-decoration: underline;
}

.hero__media {
  width: min(100%, 520px);
  align-self: start;
  justify-self: end;
  margin-top: 24px;
}

.hero__media::before {
  display: none;
}

.hero-gallery {
  width: 100%;
}

.hero-gallery__stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eceae5;
  box-shadow: 0 18px 44px rgba(8, 47, 33, .1);
  isolation: isolate;
  touch-action: pan-y;
}

.hero-gallery__stage > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity .18s ease, transform .28s ease;
}

.hero-gallery__stage[data-fit="contain"] > img {
  padding: clamp(18px, 5vw, 46px);
  object-fit: contain;
}

.hero-gallery__stage.is-changing > img {
  opacity: .72;
  transform: scale(.992);
}

.hero-gallery__shade {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(4, 37, 25, .66), transparent);
  pointer-events: none;
}

.hero-gallery__caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 24px;
  left: 22px;
  max-width: 290px;
  padding: 13px 15px;
  border-radius: 6px;
  background: var(--noot);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(4, 37, 25, .2);
}

.hero-gallery__caption span,
.hero-gallery__caption strong {
  display: block;
}

.hero-gallery__caption span {
  margin-bottom: 4px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-gallery__caption strong {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.18;
}

.hero-gallery__counter {
  position: absolute;
  z-index: 3;
  top: 17px;
  right: 17px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--forest);
  font-size: 10px;
  font-weight: 900;
}

.hero-gallery__counter i {
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: .45;
}

.hero-gallery__arrows {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.hero-gallery__arrows button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(8, 47, 33, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--forest);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(8, 47, 33, .12);
}

.hero-gallery__arrows svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-gallery__thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.hero-gallery__thumbnails button {
  min-width: 0;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 3px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease;
}

.hero-gallery__thumbnails button:hover,
.hero-gallery__thumbnails button[aria-pressed="true"] {
  border-color: var(--noot);
  transform: translateY(-2px);
}

.hero-gallery__thumbnails img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.hero-gallery__hint {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

@media (max-width: 1100px) {
  .plan-card__controls {
    grid-template-columns: 1fr 1fr;
  }

  .yield-control {
    display: grid;
  }
}

@media (max-width: 900px) {
  .hero__media {
    width: 100%;
    max-width: 720px;
    justify-self: center;
    margin: 0 auto;
  }

  .hero-gallery__stage {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 640px) {
  .quantity-control,
  .cadence-control,
  .renewal-control,
  .yield-control {
    min-height: 56px;
  }

  .hero-gallery__stage {
    aspect-ratio: 4 / 5;
  }

  .hero-gallery__caption {
    right: 74px;
    bottom: 14px;
    left: 14px;
    padding: 11px 12px;
  }

  .hero-gallery__caption strong {
    font-size: 16px;
  }

  .hero-gallery__arrows {
    right: 12px;
    bottom: 12px;
    flex-direction: column;
  }

  .hero-gallery__arrows button {
    width: 42px;
    height: 42px;
  }

  .hero-gallery__thumbnails {
    gap: 5px;
  }

  .hero-gallery__hint {
    display: none;
  }

  .renewal-picker {
    position: fixed;
    z-index: 80;
    top: auto;
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
  }
}
