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

:root {
  --v4-forest: var(--noot-forest);
  --v4-green: var(--noot-green);
  --v4-leaf: var(--noot-leaf);
  --v4-paper: var(--noot-paper);
  --v4-canvas: var(--noot-canvas);
  --v4-line: var(--noot-line);
  --v4-muted: var(--noot-muted);
  --v4-blue: var(--noot-blue);
  --v4-sun: var(--noot-sun);
  --v4-shadow: var(--noot-shadow);
  --v4-shell: min(1280px, calc(100% - 48px));
  --shell: min(1280px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

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

body.noot-v4 {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--v4-canvas);
  color: var(--v4-forest);
  font-family: var(--noot-font-sans, "Figtree", ui-sans-serif, system-ui, sans-serif);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

body.noot-v4 button,
body.noot-v4 input,
body.noot-v4 select,
body.noot-v4 summary {
  color: inherit;
  font: inherit;
}

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

body.noot-v4 .desktop-nav {
  gap: clamp(6px, 1vw, 16px);
}

body.noot-v4 .desktop-nav a,
body.noot-v4 .account-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 9px;
  border-radius: 6px;
  color: var(--v4-forest);
  line-height: 1;
  transition: background-color .18s ease, color .18s ease;
}

body.noot-v4 .desktop-nav a::after,
body.noot-v4 .account-link::after {
  display: none;
}

.nav-link__icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--v4-green);
  transition: color .18s ease, transform .18s ease;
}

body.noot-v4 .desktop-nav a:hover,
body.noot-v4 .desktop-nav a:focus-visible,
body.noot-v4 .desktop-nav a[aria-current="location"],
body.noot-v4 .account-link:hover,
body.noot-v4 .account-link:focus-visible {
  background: var(--v4-forest);
  color: #fff;
}

body.noot-v4 .desktop-nav a:hover .nav-link__icon,
body.noot-v4 .desktop-nav a:focus-visible .nav-link__icon,
body.noot-v4 .desktop-nav a[aria-current="location"] .nav-link__icon,
body.noot-v4 .account-link:hover .nav-link__icon,
body.noot-v4 .account-link:focus-visible .nav-link__icon {
  color: var(--v4-leaf);
  transform: translateY(-1px);
}

body.noot-v4 .menu-toggle {
  border-color: var(--v4-line);
  color: var(--v4-forest);
  transition: background-color .18s ease, border-color .18s ease;
}

body.noot-v4 .menu-toggle:hover,
body.noot-v4 .menu-toggle:focus-visible {
  border-color: var(--v4-forest);
  background: var(--v4-forest);
}

body.noot-v4 .menu-toggle:hover span,
body.noot-v4 .menu-toggle:focus-visible span {
  background: #fff;
}

body.noot-v4 .mobile-nav {
  padding: 12px max(18px, calc((100% - 1280px) / 2)) 20px;
  border-top-color: var(--v4-line);
  background: var(--v4-paper);
}

body.noot-v4 .mobile-nav a {
  min-height: 64px;
  justify-content: flex-start;
  gap: 12px;
  padding: 0 14px;
  border-bottom-color: var(--v4-line);
  border-radius: 6px;
  color: var(--v4-forest);
  line-height: 1.2;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

body.noot-v4 .mobile-nav a > span {
  min-width: 0;
}

body.noot-v4 .mobile-nav a::after {
  margin-left: auto;
  color: var(--v4-green);
  font-size: 22px;
  line-height: 1;
  transition: color .18s ease, transform .18s ease;
}

body.noot-v4 .mobile-nav a:hover,
body.noot-v4 .mobile-nav a:focus-visible,
body.noot-v4 .mobile-nav a[aria-current="location"] {
  border-bottom-color: var(--v4-forest);
  background: var(--v4-forest);
  color: #fff;
}

body.noot-v4 .mobile-nav a:hover::after,
body.noot-v4 .mobile-nav a:focus-visible::after,
body.noot-v4 .mobile-nav a[aria-current="location"]::after,
body.noot-v4 .mobile-nav a:hover .nav-link__icon,
body.noot-v4 .mobile-nav a:focus-visible .nav-link__icon,
body.noot-v4 .mobile-nav a[aria-current="location"] .nav-link__icon {
  color: var(--v4-leaf);
}

body.noot-v4 .mobile-nav a:hover::after,
body.noot-v4 .mobile-nav a:focus-visible::after {
  transform: translateX(3px);
}

body.noot-v4 .mobile-nav .mobile-nav__order {
  margin-top: 12px;
  border: 1px solid var(--v4-green);
  background: var(--v4-green);
  color: #fff;
}

body.noot-v4 .mobile-nav .mobile-nav__order::after,
body.noot-v4 .mobile-nav .mobile-nav__order .nav-link__icon {
  color: #fff;
}

body.noot-v4 .mobile-nav .mobile-nav__order:hover,
body.noot-v4 .mobile-nav .mobile-nav__order:focus-visible {
  border-color: var(--v4-forest);
  background: var(--v4-forest);
}

.skip-link,
.v4-skip {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 5px;
  background: #fff;
  transform: translateY(-160%);
}

.skip-link:focus,
.v4-skip:focus {
  transform: none;
}

body.noot-v4 main [id] {
  scroll-margin-top: 112px;
}

.v4-kicker {
  margin: 0 0 10px;
  color: var(--v4-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.v4-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 23px;
  border: 1px solid var(--v4-forest);
  border-radius: 6px;
  background: var(--v4-forest);
  color: #fff;
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}

.v4-button:hover {
  background: var(--v4-green);
  transform: translateY(-1px);
}

.v4-button--small {
  min-height: 44px;
  padding: 9px 18px;
  font-size: 13px;
}

.v4-button--light {
  border-color: #fff;
  background: #fff;
  color: var(--v4-forest);
}

.v4-header {
  position: sticky;
  z-index: 120;
  top: 0;
  padding: 14px 24px;
  background: rgba(244, 243, 237, .86);
  backdrop-filter: blur(16px);
}

.v4-header__inner {
  width: var(--v4-shell);
  min-height: 64px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin: auto;
  padding: 8px 10px 8px 20px;
  border: 1px solid rgba(7, 54, 38, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 28px rgba(7, 54, 38, .1);
}

.v4-brand {
  width: 96px;
  display: flex;
  align-items: center;
}

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

.v4-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 36px);
}

.v4-nav a {
  position: relative;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
}

.v4-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--v4-green);
  content: "";
  transform: scaleX(0);
  transition: transform .18s ease;
}

.v4-nav a:hover::after,
.v4-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.v4-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v4-menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--v4-line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

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

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

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

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

.v4-mobile-nav {
  width: var(--v4-shell);
  margin: 8px auto 0;
  padding: 8px 18px 18px;
  border: 1px solid var(--v4-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--v4-shadow);
}

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

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

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

.v4-hero {
  overflow: visible;
  padding: clamp(38px, 5vw, 72px) 0 clamp(58px, 7vw, 96px);
  background: var(--v4-paper);
}

.v4-hero__inner {
  width: var(--v4-shell);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, .82fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: start;
  margin: auto;
}

.v4-hero__copy {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.v4-hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(48px, 5.1vw, 72px);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .98;
}

.v4-hero__lede {
  max-width: 650px;
  margin: 22px 0 0;
  color: #40584c;
  font-size: 18px;
  line-height: 1.62;
}

.v4-hero__proof {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.v4-hero__proof li {
  min-width: 0;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 8px;
  border: 1px solid #cfe0ce;
  border-radius: 6px;
  background: #f1f8ed;
  color: var(--v4-muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.v4-hero__proof li:nth-child(2) {
  border-color: #d5e1e8;
  background: #edf6fa;
}

.v4-hero__proof li:nth-child(3) {
  border-color: #ead9a4;
  background: #fff8df;
}

.v4-hero__proof-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border: 1px solid #bdcdbc;
  border-radius: 50%;
  background: #f7f9f2;
  color: var(--v4-green);
  box-shadow: 0 7px 18px rgba(7, 54, 38, .04);
}

.v4-hero__proof-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.v4-hero__proof li:nth-child(2) .v4-hero__proof-icon {
  border-color: #bfd2dc;
  background: #f7fbfd;
}

.v4-hero__proof li:nth-child(3) .v4-hero__proof-icon {
  border-color: #dfcc8d;
  background: #fffbec;
}

.v4-hero .plan-card {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 24px;
  border-color: #bfd2c5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 54, 38, .1);
}

.v4-hero .plan-card__head {
  margin: -24px -24px 18px;
  padding: 20px 22px;
  border-bottom: 1px solid #cfe0ce;
  border-radius: 7px 7px 0 0;
  background: #edf7e9;
}

.v4-hero .plan-card__head > * {
  min-width: 0;
}

.v4-hero .plan-card__kicker {
  color: var(--v4-green);
}

.v4-hero .plan-price {
  min-width: 0;
  max-width: none;
  min-height: 76px;
  display: grid;
  align-content: center;
  padding: 8px 11px;
  border-radius: 6px;
  background: var(--v4-forest);
  color: #fff;
  text-align: left;
}

.v4-hero .plan-price strong {
  color: #fff;
  font-size: 30px;
}

.v4-hero .plan-price span {
  color: #d8eadc;
}

.v4-hero .mode-control {
  position: relative;
  isolation: isolate;
  min-height: 78px;
  gap: 0;
  overflow: hidden;
  padding: 5px;
  border-color: #c5d5ca;
  border-radius: 999px;
  background: #e7efe9;
  box-shadow: inset 0 1px 3px rgba(6, 63, 45, .08);
}

.v4-hero .mode-control button {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 66px;
  padding: 10px clamp(15px, 2vw, 24px);
  border-color: transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--v4-forest);
  transition: background-color .2s ease, color .2s ease;
}

.v4-hero .mode-control button span,
.v4-hero .mode-control button small {
  overflow-wrap: anywhere;
}

.v4-hero .mode-control button span {
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.15;
}

.v4-hero .mode-control button small {
  margin-top: 3px;
  font-size: clamp(9px, 1.05vw, 11px);
  line-height: 1.2;
}

.v4-hero .mode-control button[aria-pressed="false"]:hover {
  background: rgba(255, 255, 255, .52);
}

.v4-hero .mode-control button[aria-pressed="true"] {
  border-color: transparent;
  background: var(--v4-forest);
  box-shadow: 0 5px 14px rgba(6, 63, 45, .2);
  color: #fff;
}

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

@supports selector(:has(*)) {
  .v4-hero .mode-control::before {
    position: absolute;
    z-index: 0;
    top: 5px;
    bottom: 5px;
    left: 5px;
    width: calc((100% - 10px) / 2);
    border-radius: 999px;
    background: var(--v4-forest);
    box-shadow: 0 5px 14px rgba(6, 63, 45, .2);
    content: "";
    transform: translateX(0);
    transition: transform .26s cubic-bezier(.2, .8, .2, 1);
  }

  .v4-hero .mode-control:has(button[data-plan-mode="one_time"][aria-pressed="true"])::before {
    transform: translateX(100%);
  }

  .v4-hero .mode-control button[aria-pressed="true"] {
    background: transparent;
    box-shadow: none;
  }
}

.v4-hero .plan-card__controls {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
  margin-top: 10px;
}

.v4-hero .quantity-control,
.v4-hero .plan-price,
.v4-hero .yield-control {
  grid-column: span 2;
}

.v4-hero .cadence-control,
.v4-hero .renewal-control {
  grid-column: span 3;
}

.v4-hero .quantity-control,
.v4-hero .cadence-control,
.v4-hero .renewal-control,
.v4-hero .yield-control {
  min-width: 0;
  min-height: 76px;
  border-width: 1px;
  border-radius: 7px;
}

.v4-hero .quantity-control {
  border-color: #c7ddc4;
  background: #eff8e9;
}

.v4-hero .cadence-control {
  border-color: #bfd9e6;
  background: #edf7fb;
}

.v4-hero .renewal-control {
  border-color: #ead7a0;
  background: #fff8df;
}

.v4-hero .yield-control {
  border-color: var(--v4-blue);
  background: var(--v4-blue);
  color: #fff;
}

.v4-hero .yield-control .control-label,
.v4-hero .yield-control strong {
  color: #fff;
}

.v4-hero .yield-control .control-label {
  opacity: .78;
}

.v4-hero .quantity-control button {
  border-color: #a9c7ad;
  background: #fff;
  color: var(--v4-forest);
}

.v4-hero .quantity-control button:not(:disabled):hover {
  border-color: var(--v4-green);
  background: var(--v4-forest);
  color: #fff;
}

.v4-hero .cadence-control select,
.v4-hero .renewal-control__trigger {
  color: var(--v4-forest);
}

.v4-hero .plan-card__summary {
  min-height: 46px;
  margin-top: 10px;
  padding: 9px 11px;
  border-left: 4px solid var(--v4-sun);
  border-radius: 4px;
  background: #fff7d9;
  color: var(--v4-forest);
  overflow-wrap: anywhere;
}

.v4-hero .button--checkout {
  min-height: 58px;
  margin-top: 10px;
  padding-inline: 18px 13px;
  background: var(--v4-green);
  box-shadow: 0 11px 24px rgba(0, 155, 73, .2);
  color: #fff;
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.v4-hero .button--checkout:hover,
.v4-hero .button--checkout:focus-visible {
  background: var(--v4-forest);
  box-shadow: 0 13px 28px rgba(6, 63, 45, .24);
  transform: translateY(-1px);
}

.v4-hero .button--checkout > span:last-child {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--v4-forest);
  font-size: 18px;
}

.v4-hero .plan-card__fine-print {
  margin-top: 8px;
  overflow-wrap: anywhere;
}

.v4-hero__media {
  width: 100%;
  min-width: 0;
  max-width: 610px;
  position: relative;
  align-self: start;
  justify-self: end;
}

.v4-hero .hero-gallery {
  position: sticky;
  top: 104px;
  width: 100%;
  min-width: 0;
}

.v4-hero .hero-gallery__stage {
  min-width: 0;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: #e9ece8;
  box-shadow: 0 18px 54px rgba(7, 54, 38, .12);
  touch-action: pan-y;
}

.v4-hero .hero-gallery__stage[data-fit="contain"] > img {
  padding: 0;
  background: #e9ece8;
  object-fit: contain;
}

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

.v4-hero .hero-gallery__thumbnails button {
  width: 40px;
  flex: 0 0 40px;
}

.v4-hero .hero-gallery__caption {
  right: 132px;
  bottom: 14px;
  left: 72px;
  max-width: none;
  border-radius: 6px;
  background: rgba(0, 91, 54, .96);
}

.v4-hero .hero-gallery__arrows button,
.v4-hero .hero-gallery__thumbnails button {
  min-width: 44px;
  min-height: 44px;
}

.v4-hero .hero-gallery__hint {
  min-height: 16px;
  margin-top: 8px;
}

.v4-trust {
  width: 100%;
  min-width: 0;
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  border-block: 1px solid var(--v4-line);
  background: #fff;
}

.v4-trust > div {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 18px 24px;
  border-right: 1px solid var(--v4-line);
  text-align: center;
}

.v4-trust > div:first-child {
  background: #fff9e6;
}

.v4-trust > div:nth-child(2) {
  background: #f1f8ed;
}

.v4-trust > div:nth-child(3) {
  background: #edf6fa;
}

.v4-trust > div:last-child {
  border-right: 0;
}

.v4-trust strong {
  font-size: 13px;
  line-height: 1.3;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.v4-stars {
  color: var(--v4-sun);
  letter-spacing: 1px;
}

.v4-trust__icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border: 1px solid #aabbb0;
  border-radius: 50%;
  color: var(--v4-green);
  font-weight: 900;
}

.v4-section {
  padding: clamp(76px, 8vw, 112px) max(24px, calc((100vw - 1280px) / 2));
}

.v4-section__head,
.section-heading {
  margin-bottom: clamp(34px, 4vw, 54px);
}

.v4-section__head h2,
.v4-assistant h2,
.v4-closing h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .98;
}

.v4-section__head--split,
.section-heading--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 46px;
}

.v4-section__head--split > p,
.section-heading--split > p {
  max-width: 380px;
  margin: 0;
  color: var(--v4-muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.v4-section__head--center > p:last-child {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--v4-muted);
}

.v4-benefits {
  background: var(--v4-paper);
}

.progress-story {
  display: grid;
  grid-template-columns: minmax(330px, .68fr) minmax(0, 1.32fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.progress-story,
.progress-story * {
  /* The story's scroll mapping owns its position, not active-copy anchoring. */
  overflow-anchor: none;
}

.progress-story__steps {
  min-width: 0;
  border-top: 1px solid var(--v4-line);
}

.progress-step {
  min-height: clamp(260px, 32vh, 340px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--v4-line);
  scroll-margin-top: 120px;
}

.progress-step > button {
  width: 100%;
  min-height: 74px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 31px;
  align-items: center;
  gap: 4px 10px;
  padding: 12px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.progress-step > button > span {
  grid-row: 1 / span 2;
  align-self: start;
  padding-top: 7px;
  color: var(--v4-green);
  font-size: 12px;
  font-weight: 900;
}

.progress-step > button > strong {
  font-size: clamp(23px, 2.1vw, 31px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.progress-step > button > small {
  grid-column: 2;
  color: var(--v4-muted);
  font-size: 13px;
}

.progress-step > button > i {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--v4-green);
  font-size: 24px;
  font-style: normal;
  text-align: right;
}

.progress-step__details {
  display: grid;
  grid-template-rows: 0fr;
  /* Keep text, image, and scroll position in sync; animating this grid can
     interrupt WebKit's explicit smooth navigation to another story step. */
  transition: none;
}

.progress-step__details p {
  overflow: hidden;
  margin: 0;
  color: var(--v4-muted);
  font-size: 17px;
  line-height: 1.65;
}

.progress-step.is-active .progress-step__details {
  grid-template-rows: 1fr;
}

.progress-step.is-active .progress-step__details p {
  padding: 0 36px 24px 52px;
}

.progress-story__stage {
  position: sticky;
  top: var(--progress-sticky-top, 104px);
  height: min(690px, calc(100dvh - var(--progress-sticky-top, 104px) - 20px));
  min-height: min(560px, calc(100dvh - var(--progress-sticky-top, 104px) - 20px));
  display: grid;
  grid-template-rows: 64px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--v4-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--v4-shadow);
}

.progress-story__status {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 0 24px;
  border-bottom: 1px solid var(--v4-line);
  font-size: 14px;
  font-weight: 900;
}

.progress-story__status i {
  height: 4px;
  overflow: hidden;
  background: #e3e8e3;
}

.progress-story__status i b {
  width: 16.666%;
  height: 100%;
  display: block;
  background: var(--v4-green);
  transition: width .22s ease;
}

.progress-story__panels {
  position: relative;
  min-height: 0;
}

.progress-panel {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: #e9ebe7;
}

.progress-panel[hidden] {
  display: none;
}

.progress-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.progress-panel > figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  max-width: 450px;
  padding: 18px 20px;
  border-radius: 6px;
  background: rgba(5, 62, 43, .94);
  color: #fff;
  box-shadow: 0 12px 30px rgba(5, 45, 32, .2);
}

.progress-panel > figcaption span,
.progress-panel > figcaption strong,
.progress-panel > figcaption small {
  display: block;
}

.progress-panel > figcaption span {
  color: #bfe8c9;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.progress-panel > figcaption strong {
  margin-top: 4px;
  font-size: 24px;
  line-height: 1.12;
}

.progress-panel > figcaption small {
  margin-top: 5px;
  color: #d6e4db;
  font-size: 12px;
}

.progress-story__mobile-copy {
  display: none;
}

.v4-routine {
  padding: 0;
}

.v4-routine .routine-grid {
  min-height: 720px;
  padding-block: 86px;
}

.v4-routine .routine-copy h2 {
  max-width: 620px;
  font-size: clamp(42px, 5.2vw, 72px);
}

.v4-routine .routine-media__main img,
.v4-routine .routine-media__small img {
  object-fit: cover;
}

.v4-routine .routine-media__main {
  width: 88%;
  height: 79%;
}

.v4-routine .routine-media__small {
  overflow: hidden;
}

.v4-journey {
  position: relative;
  overflow: clip;
  background: #edf3e9;
}

.v4-journey__scroll {
  position: relative;
  width: min(1120px, 100%);
  margin-inline: auto;
}

.v4-journey__sticky {
  position: sticky;
  z-index: 2;
  top: var(--journey-sticky-top, 96px);
  padding-top: 16px;
  background: #edf3e9;
}

.v4-journey__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2.4vw, 28px);
  margin: 0 auto 24px;
  padding: 0;
  list-style: none;
}

.v4-journey__timeline::before {
  position: absolute;
  z-index: 0;
  top: 48px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: #b9c8bb;
  content: "";
}

.v4-journey__timeline li {
  position: relative;
  min-width: 0;
  text-align: center;
}

.v4-journey__timeline button {
  width: 100%;
  min-height: 44px;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.v4-journey__icon {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border: 1px solid #bdcdbc;
  border-radius: 50%;
  background: #f7f9f2;
  color: var(--v4-green);
  box-shadow: 0 8px 22px rgba(7, 54, 38, .04);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.v4-journey__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.v4-journey__timeline li.is-active .v4-journey__icon {
  border-color: var(--v4-forest);
  background: var(--v4-forest);
  color: #fff;
  box-shadow: 0 14px 30px rgba(7, 54, 38, .18);
  transform: translateY(-3px);
}

.v4-journey__timeline strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.v4-journey__timeline small {
  max-width: 210px;
  display: block;
  margin: 8px auto 0;
  color: var(--v4-muted);
  font-size: 13px;
  line-height: 1.5;
}

.v4-journey__active-copy {
  display: none;
}

.v4-journey__panels {
  max-width: 980px;
  margin-inline: auto;
}

.v4-journey__panel {
  padding: 16px;
  border: 1px solid var(--v4-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 54, 38, .08);
}

.v4-journey__panel[hidden] {
  display: none;
}

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

.journey-compare figure {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--v4-line);
  border-radius: 6px;
  background: #f0f2ed;
}

.journey-compare img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.journey-compare figcaption {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-caption {
  min-height: 44px;
  display: block;
  margin-top: 16px;
  padding: 0 4px 2px;
  font-size: 22px;
  line-height: 1.25;
}

.v4-journey__track {
  height: 150vh;
  min-height: 960px;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  pointer-events: none;
}

.v4-journey__track i {
  display: block;
}

.v4-disclaimer {
  max-width: 700px;
  margin: 30px auto 0;
  color: var(--v4-muted);
  font-size: 12px;
  text-align: center;
}

.v4-inside {
  background: var(--v4-paper);
}

.v4-formula-story .progress-story__stage {
  background: #e9ebe7;
}

.v4-formula-story .progress-panel > img {
  object-position: center;
}

.v4-formula-story .progress-panel:nth-child(3) > img {
  object-position: 68% center;
}

.v4-formula-story .progress-panel:nth-child(4) > img {
  object-position: 62% center;
}

.v4-root-zone {
  position: relative;
  min-height: 780px;
  isolation: isolate;
}

.v4-root-zone .root-zone__inner {
  width: var(--v4-shell);
  min-height: 780px;
  display: block;
}

.v4-root-zone .root-zone__copy {
  width: min(620px, 54%);
  padding-block: 106px;
}

.v4-root-zone .root-zone__copy h2 {
  font-size: clamp(42px, 5vw, 70px);
}

.v4-root-zone figure {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  min-height: 0;
  margin: 0;
}

.v4-root-zone figure::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, #032e20 0%, rgba(3, 46, 32, .96) 25%, rgba(3, 46, 32, .76) 45%, rgba(3, 46, 32, .18) 72%, rgba(3, 46, 32, .06) 100%),
    linear-gradient(180deg, rgba(3, 46, 32, .12), transparent 54%, rgba(3, 46, 32, .2));
  content: "";
  pointer-events: none;
}

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

.v4-plants {
  background: var(--v4-paper);
}

.v4-plants__shell {
  width: var(--v4-shell);
  margin: 0 auto;
}

.v4-plants .v4-section__head {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.v4-plant-search {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--v4-line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 54, 38, .07);
  background: #f0f6e8;
}

.v4-plant-search__source {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-content: center;
  padding: 28px;
  background: var(--v4-forest);
  color: #fff;
}

.v4-plant-search__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  grid-row: span 2;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  color: #bce698;
}

.v4-plant-search__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v4-plant-search__source strong,
.v4-plant-search__source span {
  display: block;
}

.v4-plant-search__source strong {
  font-size: 21px;
  line-height: 1.15;
}

.v4-plant-search__source div > span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
}

.v4-plant-search__source > img {
  width: 116px;
  height: auto;
  grid-column: 2;
  margin-top: 13px;
  padding: 7px 10px;
  border-radius: 4px;
  background: #fff;
}

.v4-plant-search__form {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px;
}

.v4-plant-search__form > label {
  color: var(--v4-forest);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.v4-plant-search__field {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.v4-plant-search__field input {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid #afc1b1;
  border-radius: 5px;
  background: #fff;
  color: var(--v4-forest);
}

.v4-plant-search__field input::placeholder {
  color: #78847c;
}

.v4-plant-search__button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 20px;
  border: 1px solid var(--v4-green);
  border-radius: 5px;
  background: var(--v4-green);
  color: #fff !important;
  cursor: pointer;
  font-weight: 800;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.v4-plant-search__button:hover {
  border-color: var(--v4-forest);
  background: var(--v4-forest);
  color: #fff;
  transform: translateY(-1px);
}

.v4-plant-search__button:disabled {
  cursor: wait;
  opacity: .7;
  transform: none;
}

.v4-plant-search__status {
  min-height: 20px;
  color: var(--v4-muted);
  font-size: 13px;
}

.v4-plant-search__result[hidden] {
  display: none;
}

.v4-plant-result {
  min-width: 0;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border: 1px solid #bdd0b8;
  border-radius: 6px;
  background: #fff;
}

.v4-plant-result__media,
.v4-plant-result__placeholder {
  width: 132px;
  min-height: 122px;
  overflow: hidden;
  border-radius: 5px;
  background: #f3f5ef;
}

.v4-plant-result__media img {
  width: 100%;
  height: 122px;
  object-fit: contain;
  background: #fff;
}

.v4-plant-result__placeholder {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 12px;
  color: var(--v4-muted);
  font-size: 12px;
  text-align: center;
}

.v4-plant-result__copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 5px;
}

.v4-plant-result__source {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--v4-green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.v4-plant-result__source img {
  width: 72px;
  height: auto;
}

.v4-plant-result__copy > strong {
  font-size: 24px;
  line-height: 1.1;
}

.v4-plant-result__copy > em {
  color: var(--v4-muted);
  font-size: 14px;
}

.v4-plant-result__copy > p {
  margin: 4px 0 0;
  color: #31483a;
}

.v4-plant-result__copy > a {
  width: fit-content;
  color: var(--v4-forest);
  font-weight: 800;
}

.v4-plant-result__request,
.v4-plant-lead button {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--v4-forest);
  border-radius: 4px;
  background: var(--v4-forest);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.v4-plant-result__request.is-requested {
  border-color: var(--v4-green);
  background: var(--v4-green);
}

.v4-plant-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 8px;
}

.v4-plant-lead label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.v4-plant-lead input {
  width: 100%;
  min-height: 40px;
  padding: 8px 11px;
  border: 1px solid #afc1b1;
  border-radius: 4px;
  background: #fff;
}

.v4-plant-gallery {
  margin-top: clamp(30px, 4vw, 48px);
}

.v4-plant-gallery__tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 13px;
  scrollbar-width: none;
}

.v4-plant-gallery__tabs::-webkit-scrollbar,
.v4-plant-gallery__viewport::-webkit-scrollbar,
.v4-plant-gallery__dots::-webkit-scrollbar {
  display: none;
}

.v4-plant-gallery__tabs button {
  min-height: 46px;
  flex: 0 0 auto;
  padding: 0 18px;
  border: 1px solid #bdcbbd;
  border-radius: 5px;
  background: transparent;
  color: var(--v4-forest);
  cursor: pointer;
  font-weight: 800;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.v4-plant-gallery__tabs button:hover,
.v4-plant-gallery__tabs button[aria-selected="true"] {
  border-color: var(--v4-forest);
  background: var(--v4-forest);
  color: #fff;
}

.v4-plant-gallery__viewport {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 5px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  touch-action: pan-y pinch-zoom;
  scrollbar-width: none;
  -webkit-overflow-scrolling: auto;
}

.v4-plant-gallery__track {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
}

.v4-plant-card {
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.v4-plant-card[hidden] {
  display: none;
}

.v4-plant-card > button {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--v4-line);
  border-radius: 7px;
  background: #fff;
  color: var(--v4-forest);
  cursor: pointer;
  text-align: left;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.v4-plant-card > button:hover {
  border-color: #9db4a0;
  box-shadow: 0 15px 32px rgba(7, 54, 38, .1);
  transform: translateY(-3px);
}

.v4-plant-card img {
  width: 100%;
  aspect-ratio: 10 / 9;
  object-fit: contain;
  padding: 14px;
  border-bottom: 1px solid #e1e7df;
  background: #f7f8f3;
}

.v4-plant-card button > span {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 18px;
}

.v4-plant-card strong,
.v4-plant-card small {
  display: block;
}

.v4-plant-card strong {
  font-size: 20px;
  line-height: 1.15;
}

.v4-plant-card small {
  color: var(--v4-muted);
  font-size: 14px;
  line-height: 1.4;
}

.v4-plant-gallery__navigation {
  display: grid;
  grid-template-columns: 46px minmax(0, auto) 46px;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.v4-plant-gallery__arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #b8c8b9;
  border-radius: 50%;
  background: #fff;
  color: var(--v4-forest);
  cursor: pointer;
  font-size: 20px;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.v4-plant-gallery__arrow:hover:not(:disabled) {
  border-color: var(--v4-forest);
  background: var(--v4-forest);
  color: #fff;
}

.v4-plant-gallery__arrow:disabled {
  cursor: default;
  opacity: .35;
}

.v4-plant-gallery__dots {
  max-width: min(42vw, 330px);
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 8px 3px;
  scrollbar-width: none;
}

.v4-plant-gallery__dots button {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c7d1c7;
  cursor: pointer;
}

.v4-plant-gallery__dots button[aria-current="true"] {
  width: 24px;
  flex-basis: 24px;
  border-radius: 4px;
  background: var(--v4-green);
}

.v4-results,
.v4-video-reviews,
.v4-reviews {
  padding: clamp(76px, 8vw, 110px) 0;
}

.v4-results {
  background: var(--v4-paper);
}

.v4-results .section-heading h2,
.v4-video-reviews .section-heading h2,
.v4-reviews .section-heading h2 {
  max-width: 800px;
  font-size: clamp(38px, 4.4vw, 62px);
}

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

.progress-review-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--v4-line);
  border-radius: 8px;
  background: #fff;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

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

.v4-results .review-track,
.v4-video-reviews .review-track,
.v4-reviews .review-track {
  align-items: stretch;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 4px;
}

.v4-results .review-slider,
.v4-video-reviews .review-slider,
.v4-reviews .review-slider {
  display: block;
}

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

.review-navigation .review-dots {
  min-height: 44px;
  margin-top: 0;
}

.review-navigation .slider-button {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-color: var(--v4-line);
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 54, 38, .08);
}

.review-navigation .slider-button:hover {
  border-color: var(--v4-forest);
  background: var(--v4-forest);
  color: #fff;
}

.v4-results .section-heading,
.v4-video-reviews .section-heading,
.v4-reviews .section-heading {
  margin-bottom: 36px;
}

.progress-review-card__media {
  aspect-ratio: 4 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 12px 12px 0;
}

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

.progress-review-card__media figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #eef0eb;
}

.progress-review-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.progress-review-card__media figcaption {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.progress-review-card__copy {
  flex: 1;
  padding: 24px;
}

.progress-review-card__copy small,
.progress-review-card__copy strong,
.progress-review-card__rating {
  display: block;
}

.progress-review-card__copy small {
  color: var(--v4-green);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.progress-review-card__rating {
  margin-top: 6px;
  color: var(--v4-green);
  font-size: 12px;
}

.progress-review-card__copy strong {
  margin-top: 8px;
  font-size: 21px;
  line-height: 1.2;
}

.progress-review-card__copy p {
  margin: 8px 0 0;
  color: var(--v4-muted);
}

.v4-video-reviews {
  background: #edf3e9;
}

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

.video-review-card {
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--v4-line);
  border-radius: 8px;
  background: #fff;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.video-review-card > figure {
  position: relative;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #dfe9d8;
}

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

.video-review-card__badge,
.video-review-card__duration {
  position: absolute;
  top: 12px;
  width: max-content;
  max-width: calc(100% - 24px);
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--v4-forest);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
}

.video-review-card__badge {
  right: auto;
  left: 12px;
}

.video-review-card__duration {
  right: 12px;
  left: auto;
}

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

.video-review-card > div > small {
  color: var(--v4-green);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-review-card__rating {
  margin-top: 7px;
  color: var(--v4-green);
  font-size: 12px;
}

.video-review-card > div > strong {
  margin-top: 9px;
  font-size: 20px;
  line-height: 1.2;
}

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

.video-review-card details {
  width: 100%;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--v4-line);
  font-size: 11px;
}

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

.v4-assistant {
  width: var(--v4-shell);
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  grid-template-areas:
    "mark copy"
    "mark actions";
  gap: 22px 28px;
  align-items: center;
  margin: clamp(56px, 6vw, 80px) auto;
  padding: 38px 40px;
  border-radius: 8px;
  background: var(--v4-forest);
  color: #fff;
}

.v4-assistant__mark {
  grid-area: mark;
  align-self: center;
}

.v4-assistant__mark img {
  width: 92px;
  height: 92px;
  display: block;
  object-fit: contain;
}

.v4-assistant__copy {
  grid-area: copy;
  max-width: 780px;
}

.v4-assistant .v4-kicker {
  color: #bce698;
}

.v4-assistant h2 {
  max-width: 760px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.v4-assistant__copy > p:last-child {
  max-width: 760px;
  margin: 10px 0 0;
  color: #cfe0d6;
  font-size: 16px;
  line-height: 1.55;
}

.v4-assistant__actions {
  grid-area: actions;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.v4-assistant__action {
  min-width: 0;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.v4-assistant .v4-assistant__action--quick {
  border-color: #fff;
  background: #fff;
  color: var(--v4-forest);
}

.v4-assistant__action--support {
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.v4-assistant__action > span:first-child {
  min-width: 0;
}

.v4-assistant__action strong,
.v4-assistant__action small {
  display: block;
}

.v4-assistant__action strong {
  font-size: 16px;
  line-height: 1.25;
}

.v4-assistant__action small {
  margin-top: 4px;
  color: #cfe0d6;
  font-size: 12px;
  line-height: 1.35;
}

.v4-assistant__action--quick small {
  color: #597064;
}

.v4-assistant__arrow {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}

.v4-assistant__action:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .15);
  transform: translateY(-1px);
}

.v4-assistant .v4-assistant__action--quick:hover {
  background: #eaf3df;
}

.v4-assistant__action:focus-visible {
  outline: 3px solid #bce698;
  outline-offset: 3px;
}

.v4-faq {
  background: var(--v4-paper);
}

.v4-faq__layout {
  display: grid;
  grid-template-columns: minmax(280px, .55fr) minmax(0, 1fr);
  gap: clamp(56px, 9vw, 140px);
  align-items: start;
}

.v4-faq__intro h2 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 950;
  letter-spacing: -.045em;
  line-height: 1;
}

.v4-faq__intro > p:last-child {
  max-width: 330px;
  margin: 22px 0 0;
  color: var(--v4-muted);
  font-size: 14px;
  line-height: 1.65;
}

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

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

.v4-faq 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;
}

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

.v4-faq summary span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--v4-leaf);
  color: var(--v4-green);
  font-size: 18px;
  line-height: 1;
  transition: background .18s ease, transform .18s ease;
}

.v4-faq summary:hover span {
  background: #cce7af;
}

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

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

.v4-closing {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--v4-forest);
  color: #fff;
}

.v4-closing > div {
  padding: 82px 62px 82px max(24px, calc((100vw - 1280px) / 2));
}

.v4-closing .v4-kicker {
  color: #bce698;
}

.v4-closing ul {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.v4-closing li {
  margin: 8px 0;
}

.v4-closing li::before {
  margin-right: 9px;
  color: #bce698;
  content: "✓";
}

.v4-closing > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v4-footer {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 48px max(24px, calc((100vw - 1280px) / 2));
  background: #fff;
}

.v4-footer p {
  color: var(--v4-muted);
}

.v4-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.v4-footer nav a,
.v4-footer nav button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}

.v4-footer small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--v4-line);
  color: var(--v4-muted);
}

@media (max-width: 1080px) {
  .v4-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(370px, .82fr);
    gap: 30px;
  }

  .v4-hero h1 {
    font-size: 50px;
  }

  .v4-hero .plan-card__controls {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .progress-story {
    grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  :root {
    --v4-shell: min(100% - 32px, 760px);
    --shell: min(100% - 32px, 760px);
  }

  body.noot-v4 .account-link {
    display: none;
  }

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

  .v4-header {
    padding: 10px 12px;
  }

  .v4-header__inner {
    min-height: 58px;
    grid-template-columns: 92px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 6px 7px 6px 14px;
  }

  .v4-brand {
    width: 84px;
  }

  .v4-nav {
    display: none;
  }

  .v4-menu-button {
    display: grid;
  }

  .v4-button--small {
    min-height: 44px;
    padding-inline: 14px;
  }

  .v4-hero {
    padding-top: 28px;
  }

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

  .v4-hero__media {
    order: -1;
    max-width: 720px;
    justify-self: center;
  }

  .v4-hero h1 {
    font-size: clamp(44px, 8.5vw, 62px);
  }

  .v4-hero .hero-gallery {
    position: relative;
    top: auto;
    width: 100%;
    max-width: 720px;
    justify-self: center;
  }

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

  .v4-journey__sticky {
    top: var(--journey-sticky-top, 88px);
  }

  .v4-journey__icon {
    width: 78px;
    height: 78px;
  }

  .v4-journey__icon svg {
    width: 34px;
    height: 34px;
  }

  .v4-journey__timeline::before {
    top: 39px;
  }

  .v4-journey__timeline strong {
    font-size: 16px;
  }

  .v4-journey__timeline small {
    font-size: 12px;
  }

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

  .v4-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-inline: 16px;
  }

  .v4-trust > div {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 16px 10px;
    border-right: 1px solid var(--v4-line);
    border-bottom: 0;
    text-align: center;
  }

  .v4-trust > div:last-child {
    border-right: 0;
  }

  .v4-section__head--split,
  .section-heading--split {
    display: block;
  }

  .v4-section__head--split > p,
  .section-heading--split > p {
    margin-top: 18px;
  }

  .v4-routine .routine-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 72px;
  }

  .v4-routine .routine-media {
    min-height: 520px;
  }

  .v4-root-zone,
  .v4-root-zone .root-zone__inner {
    min-height: 900px;
  }

  .v4-root-zone .root-zone__copy {
    width: min(680px, 100%);
    padding: 72px 0 390px;
  }

  .v4-root-zone figure,
  .v4-root-zone figure img {
    min-height: 0;
  }

  .v4-root-zone figure::before {
    background: linear-gradient(180deg, #032e20 0%, rgba(3, 46, 32, .96) 34%, rgba(3, 46, 32, .76) 54%, rgba(3, 46, 32, .16) 78%, rgba(3, 46, 32, .04) 100%);
  }

  .v4-root-zone figure img {
    object-position: 68% center;
  }

  .v4-plant-search {
    grid-template-columns: 1fr;
  }

  .v4-plant-search__source {
    grid-template-columns: 48px minmax(0, 1fr) auto;
  }

  .v4-plant-search__source > img {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    margin: 0;
  }

  .v4-plant-gallery__track {
    grid-auto-columns: calc((100% - 32px) / 3);
    gap: 16px;
  }

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

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

  .v4-assistant {
    grid-template-columns: 72px minmax(0, 1fr);
    padding: 32px;
  }

  .v4-assistant__mark img {
    width: 72px;
    height: 72px;
  }

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

  .v4-faq__intro > p:last-child {
    max-width: 520px;
  }

  .v4-closing {
    grid-template-columns: 1fr;
  }

  .v4-closing > div {
    padding: 72px 24px;
  }

  .v4-closing > img {
    max-height: 420px;
  }
}

@media (max-width: 760px) {
  .progress-story {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .progress-story__stage {
    z-index: 4;
    top: var(--progress-sticky-top, 80px);
    order: -1;
    height: min(680px, calc(100svh - var(--progress-sticky-top, 80px) - 12px));
    min-height: 0;
    grid-template-rows: 52px minmax(190px, 1fr) minmax(132px, auto);
  }

  .v4-formula-story .progress-story__stage {
    grid-template-rows: 52px minmax(190px, 1fr) 220px;
  }

  .v4-formula-story .progress-story__mobile-copy {
    width: 100%;
    height: 220px;
    min-height: 0;
  }

  .progress-story__status {
    gap: 14px;
    padding-inline: 18px;
  }

  .progress-story__mobile-copy {
    min-height: 142px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 3px 10px;
    align-content: center;
    padding: 17px 20px 20px;
    border-top: 1px solid var(--v4-line);
    background: #fff;
  }

  .progress-story__mobile-copy > span {
    grid-row: 1 / span 3;
    color: var(--v4-green);
    font-size: 12px;
    font-weight: 900;
  }

  .progress-story__mobile-copy > strong {
    font-size: 25px;
    line-height: 1.1;
  }

  .progress-story__mobile-copy > small {
    color: var(--v4-muted);
    font-size: 12px;
  }

  .progress-story__mobile-copy > p {
    grid-column: 2;
    margin: 8px 0 0;
    color: var(--v4-muted);
    font-size: 14px;
    line-height: 1.5;
  }

  .progress-panel > figcaption,
  .journey-caption {
    display: none;
  }

  .progress-story__steps {
    border: 0;
  }

  .progress-step {
    /* These are fixed scroll intervals, not accordion-content-sized spacers. */
    height: clamp(250px, 36svh, 320px);
    min-height: clamp(250px, 36svh, 320px);
    border: 0;
  }

  .progress-step > button,
  .progress-step__details {
    opacity: .001;
  }

  .progress-step:focus-within > button,
  .progress-step:focus-within .progress-step__details {
    opacity: 1;
  }

  .journey-panels .progress-panel {
    padding: 12px;
  }

  .journey-compare {
    height: 100%;
    gap: 6px;
  }

  .journey-compare img {
    object-fit: contain;
  }

  .v4-journey .journey-compare {
    height: auto;
  }

  .v4-journey .journey-caption {
    display: block;
  }
}

@media (max-width: 600px) {
  :root {
    --v4-shell: calc(100% - 24px);
    --shell: calc(100% - 24px);
  }

  .v4-header__inner {
    grid-template-columns: 76px minmax(0, 1fr) auto;
    padding-left: 11px;
  }

  .v4-brand {
    width: 72px;
  }

  .v4-button--small {
    min-height: 44px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .v4-menu-button {
    width: 40px;
    height: 40px;
  }

  .v4-hero {
    padding: 22px 0 58px;
  }

  .v4-hero h1 {
    font-size: clamp(39px, 11.5vw, 54px);
  }

  .v4-hero__lede {
    font-size: 16px;
  }

  .v4-hero__proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .v4-hero__proof li {
    min-height: 78px;
    padding: 9px 5px;
    font-size: 10px;
  }

  .v4-hero__proof-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .v4-hero__proof-icon svg {
    width: 16px;
    height: 16px;
  }

  .v4-hero .plan-card {
    padding: 18px;
  }

  .v4-hero .plan-card__head {
    margin: -18px -18px 16px;
    padding: 16px;
    gap: 12px;
  }

  .v4-hero .plan-price {
    min-width: 0;
    padding: 10px;
  }

  .v4-hero .plan-price strong {
    font-size: 25px;
  }

  .v4-hero .plan-card__controls {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .v4-hero .plan-card__summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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

  .v4-hero .hero-gallery__thumbnails {
    left: 10px;
    width: 56px;
    gap: 6px;
    padding: 6px;
  }

  .v4-hero .hero-gallery__thumbnails button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    flex-basis: 44px;
  }

  .v4-hero .hero-gallery__caption {
    right: 126px;
    bottom: 10px;
    left: 72px;
    padding: 10px 12px;
  }

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

  .v4-trust > div {
    gap: 7px;
    padding: 13px 5px;
  }

  .v4-trust strong {
    font-size: 10px;
  }

  .v4-stars {
    font-size: 9px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .v4-trust__icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .v4-section {
    padding: 64px 12px;
  }

  .v4-section__head h2,
  .v4-assistant h2,
  .v4-closing h2,
  .v4-results .section-heading h2,
  .v4-video-reviews .section-heading h2,
  .v4-reviews .section-heading h2 {
    font-size: 36px;
  }

  .v4-routine .routine-grid {
    width: calc(100% - 36px);
    padding-block: 64px;
  }

  .v4-routine .routine-copy h2 {
    font-size: 43px;
  }

  .v4-routine .routine-media {
    min-height: 440px;
  }

  .v4-journey__sticky {
    top: var(--journey-sticky-top, 80px);
    padding-top: 10px;
  }

  .v4-journey {
    padding-bottom: 24px;
  }

  .v4-journey .v4-disclaimer {
    margin-top: 14px;
  }

  .v4-journey__timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    margin-bottom: 8px;
  }

  .v4-journey__timeline::before {
    top: 29px;
    right: 9%;
    left: 9%;
  }

  .v4-journey__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 8px;
  }

  .v4-journey__icon svg {
    width: 28px;
    height: 28px;
  }

  .v4-journey__timeline strong {
    font-size: 12px;
  }

  .v4-journey__timeline small {
    display: none;
  }

  .v4-journey__active-copy {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 8px;
    padding: 8px 14px;
    color: var(--v4-muted);
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
  }

  .v4-journey__panel {
    padding: 8px;
    border-radius: 6px;
  }

  .v4-journey .journey-compare {
    height: auto;
    gap: 6px;
  }

  .v4-journey .journey-caption {
    min-height: 46px;
    display: block;
    margin-top: 10px;
    padding: 0 2px 2px;
    font-size: 16px;
  }

  .v4-journey__track {
    height: clamp(460px, 64svh, 540px);
    min-height: 0;
  }

  .v4-formula-story .progress-panel:nth-child(3) > img,
  .v4-formula-story .progress-panel:nth-child(4) > img {
    object-position: center;
  }

  .v4-root-zone .root-zone__inner {
    width: calc(100% - 36px);
    min-height: 930px;
  }

  .v4-root-zone {
    min-height: 930px;
  }

  .v4-root-zone .root-zone__copy {
    padding: 62px 0 410px;
  }

  .v4-root-zone .root-zone__copy h2 {
    font-size: 42px;
  }

  .v4-plants .v4-section__head {
    margin-bottom: 24px;
  }

  .v4-plant-search__source {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 22px 18px;
  }

  .v4-plant-search__icon {
    width: 42px;
    height: 42px;
  }

  .v4-plant-search__source > img {
    width: 102px;
    grid-column: 2;
    grid-row: auto;
    justify-self: start;
    margin-top: 9px;
  }

  .v4-plant-search__form {
    padding: 22px 18px;
  }

  .v4-plant-search__field,
  .v4-plant-lead {
    grid-template-columns: 1fr;
  }

  .v4-plant-search__button {
    width: 100%;
  }

  .v4-plant-result {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 13px;
    padding: 13px;
  }

  .v4-plant-result__media,
  .v4-plant-result__placeholder {
    width: 92px;
    min-height: 96px;
  }

  .v4-plant-result__media img {
    height: 96px;
  }

  .v4-plant-result__copy > strong {
    font-size: 20px;
  }

  .v4-plant-gallery {
    margin-top: 30px;
  }

  .v4-plant-gallery__tabs {
    margin-inline: -18px;
    padding-inline: 18px;
  }

  .v4-plant-gallery__track {
    grid-auto-columns: min(82vw, 292px);
    gap: 12px;
  }

  .v4-plant-card > button {
    min-height: 330px;
  }

  .v4-plant-gallery__dots {
    max-width: 48vw;
  }

  .v4-results,
  .v4-video-reviews,
  .v4-reviews {
    padding-block: 64px;
  }

  .v4-results .section-heading,
  .v4-video-reviews .section-heading,
  .v4-reviews .section-heading {
    margin-bottom: 24px;
  }

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

  .review-navigation {
    gap: 10px;
    margin-top: 20px;
  }

  .review-navigation .slider-button {
    width: 42px;
    height: 42px;
    display: grid;
    flex-basis: 42px;
  }

  .video-review-track,
  .review-track {
    grid-auto-columns: 88%;
  }

  .review-track.progress-review-track {
    grid-auto-columns: 88%;
  }

  .progress-review-card__copy,
  .video-review-card > div,
  .v4-reviews .review-card > div {
    padding: 18px;
  }

  .video-review-card {
    min-height: 0;
  }

  .v4-assistant {
    width: calc(100% - 36px);
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-areas:
      "mark copy"
      "actions actions";
    gap: 18px 15px;
    margin: 52px auto;
    padding: 24px 20px 20px;
  }

  .v4-assistant__mark img {
    width: 52px;
    height: 52px;
  }

  .v4-assistant h2 {
    font-size: clamp(27px, 8vw, 34px);
  }

  .v4-assistant__copy > p:last-child {
    font-size: 14px;
  }

  .v4-assistant__actions {
    grid-template-columns: 1fr;
  }

  .v4-assistant__action {
    min-height: 72px;
  }

  .v4-faq__layout {
    gap: 28px;
  }

  .v4-faq__intro h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .v4-faq__intro > p:last-child {
    margin-top: 16px;
  }

  .v4-faq summary {
    min-height: 64px;
    gap: 14px;
    font-size: 14px;
  }

  .v4-faq details p {
    margin: -4px 44px 22px 0;
  }

  .v4-closing > div {
    padding: 64px 20px;
  }

  .v4-closing > img {
    max-height: 310px;
  }

  .v4-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 38px 20px;
  }

  .v4-footer p {
    margin: 0;
  }
}

@media (max-width: 430px) {
  .v4-hero .plan-card__controls {
    gap: 6px;
  }

  .v4-hero .quantity-control,
  .v4-hero .plan-price,
  .v4-hero .yield-control {
    padding-inline: 7px;
  }

  .v4-hero .quantity-control button {
    width: 25px;
    height: 25px;
  }

  .v4-hero .plan-price strong {
    font-size: 22px;
  }

  .v4-hero .plan-price span {
    font-size: 8px;
  }

  .v4-hero .hero-gallery__thumbnails {
    top: 10px;
    left: 50%;
    width: auto;
    max-width: calc(100% - 72px);
    flex-direction: row;
    overflow-x: auto;
    transform: translateX(-50%);
    scrollbar-width: none;
  }

  .v4-hero .hero-gallery__thumbnails::-webkit-scrollbar {
    display: none;
  }

  .v4-hero .hero-gallery__caption {
    right: 118px;
    left: 12px;
  }
}

/* V4 plan builder: compact, high-contrast commerce controls. */
body.noot-v4 .v4-hero .plan-card {
  --plan-border: var(--v4-green);
  overflow: visible;
  padding: 0;
  border: 2px solid var(--plan-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(6, 63, 45, .07);
}

body.noot-v4 .v4-hero .plan-card__head {
  display: block;
  margin: 0;
  padding: 22px 24px 20px;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  background: #fff;
}

body.noot-v4 .v4-hero .plan-card__head h2 {
  margin-top: 4px;
  color: #17221e;
  font-size: clamp(24px, 2.35vw, 34px);
  letter-spacing: 0;
}

body.noot-v4 .v4-hero .plan-card__kicker {
  color: #17221e;
  font-size: 12px;
  letter-spacing: .12em;
}

body.noot-v4 .v4-hero .plan-card__body {
  padding: 22px;
}

body.noot-v4 .v4-hero .mode-control {
  min-height: 76px;
  padding: 4px;
  border: 1px solid var(--plan-border);
  background: #fff;
  box-shadow: none;
}

body.noot-v4 .v4-hero .mode-control button {
  min-height: 66px;
  justify-items: center;
  padding: 10px 18px;
  color: #17221e;
  text-align: center;
}

body.noot-v4 .v4-hero .mode-control button span {
  width: 100%;
  font-size: clamp(15px, 1.55vw, 18px);
  text-align: center;
}

body.noot-v4 .v4-hero .mode-control button small {
  width: 100%;
  color: #52605a;
  font-size: clamp(10px, 1.05vw, 12px);
  text-align: center;
}

body.noot-v4 .v4-hero .mode-control button[aria-pressed="true"] {
  background: var(--v4-green);
  color: #fff;
  box-shadow: none;
}

body.noot-v4 .v4-hero .mode-control button[aria-pressed="true"] small {
  color: #fff;
  opacity: .88;
}

@supports selector(:has(*)) {
  body.noot-v4 .v4-hero .mode-control::before {
    top: 3px;
    bottom: 3px;
    left: 3px;
    width: calc((100% - 6px) / 2);
  }
}

@supports selector(:has(*)) {
  body.noot-v4 .v4-hero .mode-control::before {
    background: var(--v4-green);
    box-shadow: none;
  }
}

body.noot-v4 .v4-hero .plan-card__controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

body.noot-v4 .v4-hero .quantity-control,
body.noot-v4 .v4-hero .plan-price,
body.noot-v4 .v4-hero .yield-control,
body.noot-v4 .v4-hero .cadence-control,
body.noot-v4 .v4-hero .renewal-control {
  grid-column: auto;
  min-width: 0;
  min-height: 142px;
  padding: 16px;
  border: 1px solid var(--plan-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

body.noot-v4 .v4-hero .quantity-control {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 13px;
}

body.noot-v4 .v4-hero .quantity-control > div {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 7px;
}

body.noot-v4 .v4-hero .quantity-control button {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--v4-green);
  background: #fff;
  color: var(--v4-green);
  font-size: 24px;
}

body.noot-v4 .v4-hero .quantity-control button:last-child {
  background: var(--v4-green);
  color: #fff;
}

body.noot-v4 .v4-hero .quantity-control button:disabled {
  cursor: not-allowed;
  opacity: .45;
}

body.noot-v4 .v4-hero .quantity-control output {
  color: #17221e;
  font-size: clamp(34px, 4vw, 45px);
  font-weight: 700;
  text-align: center;
}

body.noot-v4 .v4-hero .control-label {
  color: #27342f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.noot-v4 .v4-hero .plan-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  color: #17221e;
  text-align: left;
  overflow: hidden;
}

body.noot-v4 .v4-hero .plan-price strong {
  max-width: 100%;
  color: #17221e;
  font-size: clamp(31px, 4.4vw, 46px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.045em;
  line-height: .96;
  white-space: nowrap;
}

body.noot-v4 .v4-hero .plan-price span {
  margin-top: 8px;
  color: #27342f;
  font-size: 13px;
}

body.noot-v4 .v4-hero .plan-price em {
  margin-top: 11px;
  color: #c82333;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
}

body.noot-v4 .v4-hero .yield-control {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  border-color: var(--v4-blue);
  background: var(--v4-blue);
  color: #fff;
}

body.noot-v4 .v4-hero .yield-control .control-label,
body.noot-v4 .v4-hero .yield-control strong {
  color: #fff;
}

body.noot-v4 .v4-hero .yield-control strong {
  margin-top: 24px;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.1;
}

body.noot-v4 .v4-hero .plan-card__delivery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 8px;
  margin-top: 10px;
}

body.noot-v4 .v4-hero .plan-card__delivery:has(> [hidden]) {
  display: none;
}

body.noot-v4 .v4-hero .plan-card__delivery[hidden] {
  display: none;
}

body.noot-v4 .v4-hero .cadence-control,
body.noot-v4 .v4-hero .renewal-control {
  min-height: 84px;
  padding: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff 0%, #f5faf3 100%);
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

body.noot-v4 .v4-hero .cadence-control {
  position: relative;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px 40px 12px 14px;
  border-color: var(--plan-border);
  cursor: pointer;
}

body.noot-v4 .v4-hero .renewal-control {
  border-color: var(--plan-border);
}

body.noot-v4 .v4-hero .cadence-control:hover,
body.noot-v4 .v4-hero .renewal-control:hover {
  border-color: #7db893;
  background: #fff;
}

body.noot-v4 .v4-hero .cadence-control:focus-within,
body.noot-v4 .v4-hero .renewal-control:focus-within {
  border-color: var(--v4-green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 157, 84, .14);
}

body.noot-v4 .v4-hero .plan-card__delivery .control-label {
  color: #52605a;
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: .1em;
}

body.noot-v4 .v4-hero .cadence-control select {
  width: 100%;
  min-height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--v4-forest);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
}

body.noot-v4 .v4-hero .cadence-control::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--v4-forest);
  border-bottom: 2px solid var(--v4-forest);
  content: "";
  pointer-events: none;
  transform: translateY(-68%) rotate(45deg);
}

body.noot-v4 .v4-hero .renewal-control__trigger {
  height: 100%;
  min-height: 82px;
  gap: 5px;
  padding: 12px 40px 12px 14px;
}

body.noot-v4 .v4-hero .renewal-control__trigger strong {
  color: var(--v4-forest);
  font-size: 14px;
  line-height: 1.25;
}

body.noot-v4 .v4-hero .renewal-control__chevron {
  right: 14px;
}

body.noot-v4 .v4-hero .button--checkout {
  min-height: 70px;
  margin-top: 16px;
  border: 1px solid var(--v4-green);
  border-radius: 8px;
  background: var(--v4-green);
  box-shadow: none;
  font-size: clamp(17px, 2vw, 22px);
}

body.noot-v4 .v4-hero .button--checkout__content {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

body.noot-v4 .v4-hero .button--checkout__action {
  flex: none;
  color: #fff;
  font-size: inherit;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

body.noot-v4 .v4-hero .button--checkout__coupon {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 6px;
  border: 1px dashed rgba(6, 79, 52, .62);
  border-radius: 5px;
  background: #fff7d9;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .68);
  color: var(--v4-forest);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
}

body.noot-v4 .v4-hero .button--checkout__coupon[hidden] {
  display: none;
}

body.noot-v4 .v4-hero .button--checkout__coupon small {
  padding: 3px 4px 2px;
  border-radius: 3px;
  background: var(--v4-forest);
  color: #fff;
  font-size: 7px;
  font-weight: 950;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

body.noot-v4 .v4-hero .button--checkout__coupon b {
  flex: none;
}

body.noot-v4 .v4-hero .button--checkout > span:last-child {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  color: var(--v4-green);
  font-size: 24px;
}

@media (max-width: 480px) {
  body.noot-v4 .v4-hero .button--checkout__content {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  body.noot-v4 .v4-hero .button--checkout__action {
    font-size: 15px;
  }

  body.noot-v4 .v4-hero .button--checkout__coupon {
    max-width: 100%;
    padding-block: 4px;
    font-size: 10.5px;
  }
}

body.noot-v4 .v4-hero .plan-card__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

body.noot-v4 .v4-hero .plan-card__benefits[hidden] {
  display: none;
}

body.noot-v4 .v4-hero .plan-card__benefits li {
  min-width: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  padding: 0 7px;
  color: #17221e;
  text-align: center;
}

body.noot-v4 .v4-hero .plan-card__benefits li + li {
  border-left: 1px solid var(--v4-green);
}

body.noot-v4 .v4-hero .plan-card__benefits li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--v4-green);
  border-radius: 50%;
  color: var(--v4-green);
}

body.noot-v4 .v4-hero .plan-card__benefits svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

body.noot-v4 .v4-hero .plan-card__benefits strong {
  font-size: 11px;
  line-height: 1.2;
}

@media (max-width: 600px) {
  body.noot-v4 .v4-hero .plan-card__head {
    padding: 18px 16px 16px;
  }

  body.noot-v4 .v4-hero .plan-card__body {
    padding: 15px;
  }

  body.noot-v4 .v4-hero .mode-control {
    min-height: 70px;
  }

  body.noot-v4 .v4-hero .mode-control button {
    min-height: 60px;
    padding-inline: 10px;
  }

  body.noot-v4 .v4-hero .plan-card__controls {
    grid-template-columns: 1.12fr 1.32fr .9fr;
    gap: 7px;
    margin-top: 14px;
  }

  body.noot-v4 .v4-hero .quantity-control,
  body.noot-v4 .v4-hero .plan-price,
  body.noot-v4 .v4-hero .yield-control {
    min-height: 132px;
    padding: 10px;
  }

  body.noot-v4 .v4-hero .quantity-control {
    padding-inline: 6px;
  }

  body.noot-v4 .v4-hero .quantity-control > div {
    grid-template-columns: 34px 1fr 34px;
    gap: 3px;
  }

  body.noot-v4 .v4-hero .quantity-control button {
    width: 34px;
    height: 34px;
    font-size: 21px;
  }

  body.noot-v4 .v4-hero .plan-price strong {
    font-size: clamp(25px, 8vw, 34px);
  }

  body.noot-v4 .v4-hero .plan-price {
    padding-inline: 8px;
  }

  body.noot-v4 .v4-hero .plan-price span {
    font-size: 11px;
  }

  body.noot-v4 .v4-hero .plan-price em {
    font-size: 9px;
  }

  body.noot-v4 .v4-hero .yield-control strong {
    margin-top: 18px;
    font-size: clamp(16px, 5vw, 21px);
  }

  body.noot-v4 .v4-hero .plan-card__delivery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  body.noot-v4 .v4-hero .cadence-control,
  body.noot-v4 .v4-hero .renewal-control {
    min-height: 78px;
    border-radius: 8px;
  }

  body.noot-v4 .v4-hero .cadence-control,
  body.noot-v4 .v4-hero .renewal-control__trigger {
    padding: 11px 34px 11px 12px;
  }

  body.noot-v4 .v4-hero .renewal-control__trigger {
    min-height: 76px;
  }

  body.noot-v4 .v4-hero .cadence-control::after,
  body.noot-v4 .v4-hero .renewal-control__chevron {
    right: 12px;
  }

  body.noot-v4 .v4-hero .button--checkout {
    gap: 7px;
    padding-inline: 12px 9px;
  }

  body.noot-v4 .v4-hero .button--checkout__content {
    flex: 1;
    gap: 6px;
  }

  body.noot-v4 .v4-hero .button--checkout__action {
    font-size: clamp(14px, 4.2vw, 18px);
  }

  body.noot-v4 .v4-hero .button--checkout__coupon {
    padding: 4px 5px;
    font-size: clamp(9.5px, 2.8vw, 11px);
  }

  body.noot-v4 .v4-hero .button--checkout > span:last-child {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
}

@media (max-width: 359px) {
  body.noot-v4 .v4-hero .plan-card__controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.noot-v4 .v4-hero .quantity-control {
    grid-column: 1 / -1;
    min-height: 96px;
  }

  body.noot-v4 .v4-hero .quantity-control > div {
    max-width: 190px;
    align-self: center;
  }

  body.noot-v4 .v4-hero .plan-card__delivery {
    gap: 6px;
  }

  body.noot-v4 .v4-hero .cadence-control,
  body.noot-v4 .v4-hero .renewal-control {
    min-height: 72px;
  }

  body.noot-v4 .v4-hero .cadence-control,
  body.noot-v4 .v4-hero .renewal-control__trigger {
    padding: 10px 30px 10px 10px;
  }

  body.noot-v4 .v4-hero .renewal-control__trigger {
    min-height: 70px;
  }

  body.noot-v4 .v4-hero .plan-card__delivery .control-label {
    font-size: 9px;
    letter-spacing: .07em;
  }

  body.noot-v4 .v4-hero .cadence-control select,
  body.noot-v4 .v4-hero .renewal-control__trigger strong {
    font-size: 13px;
  }

  body.noot-v4 .v4-hero .cadence-control::after,
  body.noot-v4 .v4-hero .renewal-control__chevron {
    right: 10px;
  }
}

/* Responsive V4 order builder: one compact decision path from amount to checkout. */
body.noot-v4 .v4-hero .plan-card__head {
  padding: 19px 22px 17px;
}

body.noot-v4 .v4-hero .plan-card__head h2 {
  margin-top: 3px;
  font-size: clamp(25px, 2.55vw, 36px);
  line-height: 1.04;
}

body.noot-v4 .v4-hero .plan-card__body {
  padding: 18px;
}

body.noot-v4 .v4-hero .mode-control {
  min-height: 64px;
  padding: 3px;
}

body.noot-v4 .v4-hero .mode-control button {
  min-height: 56px;
  padding: 7px 12px;
}

body.noot-v4 .v4-hero .mode-control button span {
  font-size: clamp(14px, 1.45vw, 17px);
}

body.noot-v4 .v4-hero .mode-control button small {
  font-size: clamp(9px, 1vw, 11px);
}

body.noot-v4 .v4-hero .plan-card__amount {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(140px, 1.15fr) minmax(0, 1fr);
  align-items: center;
  gap: 7px 10px;
  margin-top: 12px;
  padding: 11px 12px;
  border: 1px solid var(--plan-border);
  border-radius: 9px;
  background: #fff;
}

body.noot-v4 .v4-hero .plan-card__amount > .control-label {
  grid-column: 1;
}

body.noot-v4 .v4-hero .plan-card__amount .quantity-control {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-column: auto;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.noot-v4 .v4-hero .plan-card__amount .quantity-control button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1.5px solid var(--v4-green);
  border-radius: 50%;
  background: #fff;
  color: var(--v4-green);
  font-size: 23px;
  line-height: 1;
}

body.noot-v4 .v4-hero .plan-card__amount .quantity-control button:last-child {
  background: var(--v4-green);
  color: #fff;
}

body.noot-v4 .v4-hero .plan-card__amount .quantity-control button:disabled {
  cursor: not-allowed;
  opacity: .4;
}

body.noot-v4 .v4-hero .plan-card__amount .quantity-control output {
  min-width: 0;
  color: #17221e;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  white-space: nowrap;
}

/* Coverage is supporting information within the amount summary. */
body.noot-v4 .v4-hero .plan-card__coverage {
  min-width: 0;
  display: grid;
  grid-column: 1 / -1;
  grid-row: 3;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 2px;
  border-radius: 5px;
  background: #f2f3f2;
  color: #555d59;
}

body.noot-v4 .v4-hero .plan-card__coverage > div {
  min-width: 0;
  min-height: 44px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 2px;
  padding: 7px 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

body.noot-v4 .v4-hero .plan-card__coverage .control-label {
  color: inherit;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .06em;
  opacity: 1;
}

body.noot-v4 .v4-hero .plan-card__coverage strong {
  min-width: 0;
  margin: 0;
  color: inherit;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
}

body.noot-v4 .v4-hero .plan-price {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-column: 2;
  grid-row: 1 / 3;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0 6px;
  border: 0;
  border-left: 1px solid #d4e7d9;
  border-radius: 0;
  background: transparent;
  color: #17221e;
  overflow: hidden;
  text-align: center;
}

body.noot-v4 .v4-hero .plan-price > strong {
  min-width: 0;
  color: #17221e;
  font-size: clamp(30px, 3.7vw, 44px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.055em;
  line-height: .95;
  white-space: nowrap;
}

body.noot-v4 .v4-hero .plan-price > .plan-price__details {
  min-width: 0;
  display: grid;
  gap: 3px;
  margin: 0;
  color: #52605a;
  font-size: clamp(11px, 1.2vw, 13px);
  line-height: 1.15;
}

body.noot-v4 .v4-hero .plan-price__details s,
body.noot-v4 .v4-hero .plan-price__details span {
  min-width: 0;
  margin: 0;
  color: inherit;
  font-size: inherit;
  overflow-wrap: anywhere;
}

body.noot-v4 .v4-hero .plan-price__details s {
  color: #6a756f;
  text-decoration-thickness: 1.5px;
}

body.noot-v4 .v4-hero .plan-savings {
  min-width: 0;
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 9px;
  padding: 9px 12px;
  border: 1px solid #c9af65;
  border-radius: 9px;
  background: #fff6d8;
  color: #66501f;
  appearance: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
}

body.noot-v4 .v4-hero .plan-savings:focus-visible {
  outline: 3px solid #07553b;
  outline-offset: 3px;
}

body.noot-v4 .v4-hero .plan-savings[aria-pressed="false"]:not(:disabled) {
  border-color: #bdcbbf;
  background: #f1f4ef;
  color: #52605a;
}

body.noot-v4 .v4-hero .plan-savings[aria-pressed="false"]:not(:disabled) strong,
body.noot-v4 .v4-hero .plan-savings[aria-pressed="false"]:not(:disabled) small {
  color: #52605a;
}

body.noot-v4 .v4-hero .plan-savings[aria-pressed="false"]:not(:disabled) .plan-savings__check {
  background: #dce5dc;
  color: #344a3d;
  font-size: 20px;
}

body.noot-v4 .v4-hero .plan-savings:disabled {
  cursor: default;
}

body.noot-v4 .v4-hero .plan-savings[hidden] {
  display: none;
}

body.noot-v4 .v4-hero .plan-savings__offer {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.noot-v4 .v4-hero .plan-savings__check {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #8a6a21;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}

body.noot-v4 .v4-hero .plan-savings__offer > span:last-child,
body.noot-v4 .v4-hero .plan-savings__value {
  min-width: 0;
  display: grid;
  gap: 2px;
}

body.noot-v4 .v4-hero .plan-savings__offer strong,
body.noot-v4 .v4-hero .plan-savings__value strong {
  color: #66501f;
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 950;
  letter-spacing: .025em;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

body.noot-v4 .v4-hero .plan-savings__offer small,
body.noot-v4 .v4-hero .plan-savings__value small {
  color: #75602c;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

body.noot-v4 .v4-hero .plan-savings__value {
  justify-items: end;
  text-align: right;
  white-space: nowrap;
}

body.noot-v4 .v4-hero .plan-savings__meta {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

body.noot-v4 .v4-hero .plan-savings__meta span {
  color: inherit;
  font: inherit;
}

body.noot-v4 .v4-hero .plan-card__delivery {
  margin-top: 9px;
}

body.noot-v4 .v4-hero .button--checkout {
  min-width: 0;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 11px;
  padding: 10px 10px 10px 15px;
}

body.noot-v4 .v4-hero .button--checkout__content {
  min-width: 0;
  display: grid;
  align-items: center;
  gap: 4px;
  text-align: left;
}

body.noot-v4 .v4-hero .button--checkout__action {
  min-width: 0;
  color: #fff;
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 950;
  line-height: 1.05;
  white-space: nowrap;
}

body.noot-v4 .v4-hero .button--checkout__total,
body.noot-v4 .v4-hero .button--checkout__continue {
  color: #fff;
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

body.noot-v4 .v4-hero .button--checkout > .button--checkout__next {
  min-width: 0;
  width: auto;
  height: auto;
  flex: 0 1 auto;
  flex-basis: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  border-radius: 0;
  background: transparent;
  color: #fff;
}

body.noot-v4 .v4-hero .button--checkout__next .button--checkout__arrow {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--v4-green);
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}

body.noot-v4 .v4-hero .plan-card__benefits {
  margin-top: 13px;
}

body.noot-v4 .v4-hero .plan-card__benefits li {
  gap: 5px;
  padding-inline: 5px;
}

body.noot-v4 .v4-hero .plan-card__benefits li > span {
  width: 38px;
  height: 38px;
}

body.noot-v4 .v4-hero .plan-card__benefits svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 600px) {
  body.noot-v4 .v4-hero .plan-card__head {
    padding: 15px 13px 13px;
  }

  body.noot-v4 .v4-hero .plan-card__head h2 {
    font-size: clamp(23px, 7.4vw, 30px);
  }

  body.noot-v4 .v4-hero .plan-card__body {
    padding: 12px;
  }

  body.noot-v4 .v4-hero .mode-control {
    min-height: 60px;
  }

  body.noot-v4 .v4-hero .mode-control button {
    min-height: 52px;
    padding-inline: 7px;
  }

  body.noot-v4 .v4-hero .mode-control button span {
    font-size: clamp(13px, 4.2vw, 16px);
  }

  body.noot-v4 .v4-hero .mode-control button small {
    font-size: clamp(8.5px, 2.8vw, 10.5px);
  }

  body.noot-v4 .v4-hero .plan-card__amount {
    gap: 6px 8px;
    margin-top: 10px;
    padding: 9px;
  }

  body.noot-v4 .v4-hero .plan-card__amount .quantity-control {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 4px;
  }

  body.noot-v4 .v4-hero .plan-card__amount .quantity-control button {
    width: 44px;
    height: 44px;
    font-size: 21px;
  }

  body.noot-v4 .v4-hero .plan-card__amount .quantity-control output {
    font-size: clamp(14px, 4vw, 17px);
  }


  body.noot-v4 .v4-hero .plan-price {
    min-height: 0;
    gap: 4px;
    margin-top: 0;
    padding: 0 5px;
  }

  body.noot-v4 .v4-hero .plan-price > strong {
    font-size: clamp(30px, 9vw, 38px);
  }

  body.noot-v4 .v4-hero .plan-price__details {
    font-size: clamp(10px, 3.2vw, 12px);
  }

  body.noot-v4 .v4-hero .plan-savings {
    min-height: 54px;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 9px;
  }

  body.noot-v4 .v4-hero .plan-savings__offer {
    gap: 6px;
  }

  body.noot-v4 .v4-hero .plan-savings__check {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 13px;
  }

  body.noot-v4 .v4-hero .plan-savings__offer strong,
  body.noot-v4 .v4-hero .plan-savings__value strong {
    font-size: clamp(10.5px, 3.35vw, 13px);
  }

  body.noot-v4 .v4-hero .plan-savings__offer small,
  body.noot-v4 .v4-hero .plan-savings__value small {
    font-size: 8.5px;
  }

  body.noot-v4 .v4-hero .plan-savings__offer .plan-savings__meta {
    font-size: 9.5px;
  }

  body.noot-v4 .v4-hero .button--checkout {
    min-height: 64px;
    gap: 7px;
    padding: 9px 8px 9px 12px;
  }

  body.noot-v4 .v4-hero .button--checkout__content {
    flex: initial;
    align-items: center;
    flex-direction: initial;
    gap: 3px;
  }

  body.noot-v4 .v4-hero .button--checkout__action {
    font-size: clamp(13px, 4.1vw, 17px);
  }

  body.noot-v4 .v4-hero .button--checkout__total,
  body.noot-v4 .v4-hero .button--checkout__continue {
    font-size: clamp(10.5px, 3.25vw, 13px);
  }

  body.noot-v4 .v4-hero .button--checkout > .button--checkout__next {
    gap: 5px;
  }

  body.noot-v4 .v4-hero .button--checkout__next .button--checkout__arrow {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 21px;
  }

  body.noot-v4 .v4-hero .plan-card__benefits {
    margin-top: 11px;
  }

  body.noot-v4 .v4-hero .plan-card__benefits strong {
    font-size: clamp(9px, 2.7vw, 11px);
  }
}

@media (max-width: 340px) {
  body.noot-v4 .v4-hero .plan-card__amount .quantity-control {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 4px;
  }

  body.noot-v4 .v4-hero .plan-card__amount .quantity-control button {
    width: 44px;
    height: 44px;
  }

  body.noot-v4 .v4-hero .plan-card__coverage > div {
    padding-inline: 8px;
  }

  body.noot-v4 .v4-hero .plan-price {
    gap: 4px;
    padding-inline: 4px;
  }

  body.noot-v4 .v4-hero .plan-price > strong {
    font-size: 28px;
  }

  body.noot-v4 .v4-hero .button--checkout > .button--checkout__next {
    gap: 4px;
  }

  body.noot-v4 .v4-hero .button--checkout__next .button--checkout__arrow {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
}

/* Every customer-facing slide rail settles on exactly one complete card. */
body.noot-v4 .v4-plant-gallery__viewport,
body.noot-v4 .v4-results .review-track,
body.noot-v4 .v4-video-reviews .review-track,
body.noot-v4 .v4-reviews .review-track {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: auto;
}

body.noot-v4 .v4-plant-gallery__viewport .v4-plant-card,
body.noot-v4 .v4-results .review-track .progress-review-card,
body.noot-v4 .v4-video-reviews .review-track .video-review-card,
body.noot-v4 .v4-reviews .review-card {
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

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

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

/* Phones use compact, native one-card rails. The journey no longer burns a
   vertical spacer to simulate slides, so its height cannot shrink per step. */
@media (max-width: 760px), (hover: none) and (pointer: coarse) {
  body.noot-v4 .v4-journey {
    padding: 46px 12px 22px;
  }

  body.noot-v4 .v4-journey .v4-section__head {
    margin-bottom: 20px;
  }

  body.noot-v4 .v4-journey__scroll {
    width: 100%;
  }

  body.noot-v4 .v4-journey__sticky {
    position: static;
    top: auto;
    padding-top: 0;
  }

  body.noot-v4 .v4-journey__timeline {
    gap: 3px;
    margin-bottom: 8px;
  }

  body.noot-v4 .v4-journey__timeline::before {
    top: 29px;
  }

  body.noot-v4 .v4-journey__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 7px;
  }

  body.noot-v4 .v4-journey__icon svg {
    width: 27px;
    height: 27px;
  }

  body.noot-v4 .v4-journey__timeline strong {
    font-size: 12px;
  }

  body.noot-v4 .v4-journey__timeline small,
  body.noot-v4 .v4-journey__active-copy {
    display: none;
  }

  body.noot-v4 .v4-journey__panels {
    width: 100%;
    max-width: none;
    display: grid;
    grid-auto-columns: 100%;
    grid-auto-flow: column;
    grid-template-rows: 1fr;
    align-items: stretch;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    overscroll-behavior-x: contain;
    padding: 2px;
    scroll-behavior: auto;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: auto;
  }

  body.noot-v4 .v4-journey__panels::-webkit-scrollbar {
    display: none;
  }

  body.noot-v4 .v4-journey__panel,
  body.noot-v4 .v4-journey__panel[hidden] {
    height: auto;
    align-self: stretch;
    display: block;
    padding: 7px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  body.noot-v4 .v4-journey .journey-caption {
    min-height: 0;
    margin-top: 8px;
    padding: 0 2px 1px;
    font-size: 15px;
    line-height: 1.3;
  }

  body.noot-v4 .v4-journey__track {
    height: 0;
    min-height: 0;
    display: none;
  }

  body.noot-v4 .v4-journey .v4-disclaimer {
    margin-top: 12px;
  }

  body.noot-v4 .v4-plant-gallery__viewport,
  body.noot-v4 .v4-results .review-track,
  body.noot-v4 .v4-video-reviews .review-track,
  body.noot-v4 .v4-reviews .review-track {
    padding: 2px;
    scroll-padding-inline: 2px;
  }

  body.noot-v4 .v4-plants__shell {
    width: 100%;
  }

  /* Keep the category rail flush with the phone viewport without letting its
     negative gutter add a horizontal document scroll range in Safari. */
  body.noot-v4 .v4-plant-gallery__tabs {
    margin-inline: -12px;
    padding-inline: 12px;
  }

  body.noot-v4 .v4-plant-gallery__track,
  body.noot-v4 .v4-results .review-track,
  body.noot-v4 .v4-video-reviews .review-track,
  body.noot-v4 .v4-reviews .review-track,
  body.noot-v4 .review-track.progress-review-track {
    grid-auto-columns: 100%;
    gap: 8px;
  }

  body.noot-v4 .v4-plant-gallery {
    margin-top: 24px;
  }

  body.noot-v4 .v4-plants,
  body.noot-v4 .v4-results,
  body.noot-v4 .v4-video-reviews,
  body.noot-v4 .v4-reviews {
    padding-block: 52px;
  }

  body.noot-v4 .v4-results .section-heading,
  body.noot-v4 .v4-video-reviews .section-heading,
  body.noot-v4 .v4-reviews .section-heading {
    margin-bottom: 20px;
  }

  body.noot-v4 .review-navigation,
  body.noot-v4 .v4-plant-gallery__navigation {
    margin-top: 14px;
  }

  body.noot-v4 .progress-review-card__copy,
  body.noot-v4 .video-review-card > div,
  body.noot-v4 .v4-reviews .review-card > div {
    padding: 16px;
  }

  body.noot-v4 .video-review-card {
    min-height: 0;
  }
}

/* Overlaid desktop checkpoints reserve the tallest caption, including inactive slides. */
body.noot-v4 .v4-journey__panels {
  display: grid;
}
body.noot-v4 .v4-journey__panel {
  grid-area: 1 / 1;
}
body.noot-v4 .v4-journey__panel[hidden] {
  display: block;
  visibility: hidden;
}
@media (max-width: 760px), (hover: none) and (pointer: coarse) {
  body.noot-v4 .v4-journey__panel {
    grid-area: auto;
  }
}

/* Reserve carousel media before images load; captions cannot squeeze it. */
body.noot-v4 .hero-gallery__stage,
body.noot-v4 .journey-compare figure,
body.noot-v4 .progress-review-card__media,
body.noot-v4 .video-review-card > figure {
  flex-shrink: 0;
  min-width: 0;
  min-height: 0;
}

body.noot-v4 .hero-gallery__stage > img,
body.noot-v4 .journey-compare figure > img,
body.noot-v4 .progress-review-card__media figure > img,
body.noot-v4 .video-review-card > figure > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.noot-v4 .progress-review-card__media {
  grid-template-rows: minmax(0, 1fr);
}

body.noot-v4 .v4-plant-card img {
  height: auto;
}

body.noot-v4 .v4-reviews .review-card > figure {
  height: 220px;
  min-height: 220px;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  body.noot-v4 .progress-story__stage {
    min-height: calc(52px + 190px + var(--progress-copy-height, 220px));
    grid-template-rows: 52px minmax(190px, 1fr) var(--progress-copy-height, 220px);
  }

  body.noot-v4 .progress-story__mobile-copy {
    height: auto;
    min-height: 0;
  }
}

@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;
  }
}
