:root {
  --bg: #f1ecdf;
  --bar-bg: #f1ecdf;
  --text: #111111;
  --muted: #353535;
  --border: #1f1f1f;
  --soft: #f4f4f4;
}

html {
  scrollbar-gutter: stable;
}

html:has(.checkout-page) {
  /* No reserved gutter — avoids cream strips beside the white top bar */
  scrollbar-gutter: auto;
}

@supports not (scrollbar-gutter: stable) {
  html {
    overflow-y: scroll;
  }

  html:has(.checkout-page) {
    overflow-y: auto;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
}

main {
  background: var(--bg);
  margin-top: 0;
  padding-top: 0;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

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

.offer-bar,
.outro-bar,
.footer.legal-footer-links {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: var(--bar-bg);
  overflow: hidden;
}

.outro-bar {
  border-top: 0;
}

.offer-bar {
  --offer-shop-edge-inset: 25.2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-bar-logo {
  position: absolute;
  left: calc(var(--offer-shop-edge-inset) + 2.5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
}

.offer-bar-logo:focus-visible {
  outline: 2px solid #1d4ed8;
  outline-offset: 3px;
}

.offer-bar-logo img {
  height: 40px;
  width: auto;
  max-width: min(100px, 22vw);
  object-fit: contain;
  display: block;
}

.offer-bar p,
.outro-bar p {
  margin: 0;
  text-align: center;
  font-weight: 800;
  font-size: clamp(0.9rem, 2vw, 1.08rem);
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--text);
}

#offerTicker {
  display: inline-block;
  overflow: hidden;
  will-change: transform, opacity;
}

.offer-shop-btn {
  position: absolute;
  right: var(--offer-shop-edge-inset);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: 2px solid #111111;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.22rem 0.85rem;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.offer-shop-btn:hover {
  background: #e5e7eb;
  border-color: #111111;
  box-shadow: 0 2px 10px rgba(74, 55, 40, 0.18);
  transform: translateY(-50%);
}

.offer-shop-btn:active {
  background: #d1d5db;
  transform: translateY(-50%);
}

.offer-shop-btn:focus-visible {
  outline: 3px solid #38bdf8;
  outline-offset: 2px;
}

#offerTicker.offer-ticker-exit {
  animation: offerTickerSlideDownOut 0.45s ease forwards;
}

#offerTicker.offer-ticker-enter {
  animation: offerTickerSlideInFromTop 0.45s ease forwards;
}

@keyframes offerTickerSlideDownOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(120%);
  }
}

@keyframes offerTickerSlideInFromTop {
  from {
    transform: translateY(120%);
  }
  to {
    transform: translateY(0);
  }
}

.top-banner {
  width: 100%;
  margin: 0;
  position: relative;
}

.top-banner--ending {
  margin-top: 0;
  padding-top: 2.5rem;
  background: #f1ecdf;
}

.top-banner--ending-fade {
  opacity: 0;
}

.top-banner--ending.top-banner--ending--visible .top-banner--ending-fade {
  animation: endingBannerFadeIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.top-banner--ending .banner-header {
  top: 2.5rem;
}

.banner-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 2;
  pointer-events: none;
}

.banner-brand {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.05;
}

.banner-brand .brainytots-wordmark {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

/* BrainyTots wordmark - navy “Brainy”, multicolor “Tots”, tight kerning, rounded sans */
.brainytots-wordmark {
  font-family: "Baloo 2", "Poppins", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
  line-height: 1.05;
}

.brainytots-brainy {
  color: #0f2744;
}

.brainytots-tots {
  letter-spacing: -0.07em;
}

.brainytots-tots-letter {
  display: inline;
}

.brainytots-tots-t {
  color: #06b6d4;
}

.brainytots-tots-o {
  color: #ec4899;
}

.brainytots-tots-t2 {
  color: #eab308;
}

.brainytots-tots-s {
  color: #a78bfa;
}

.banner-adventure-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: auto;
}

.banner-adventure-text {
  --adventure-x: 325px;
  --adventure-y: -95px;
  margin: 0;
  font-family: "Baloo 2", "Poppins", system-ui, sans-serif;
  font-size: clamp(1.05rem, 3.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111111;
  -webkit-text-stroke: 0;
  text-shadow: none;
  background: linear-gradient(180deg, #fde047 0%, #eab308 55%, #ca8a04 100%);
  border: 3px solid #1e3a8a;
  border-radius: 999px;
  padding: 0.55em 1.35em 0.5em;
  cursor: pointer;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.45),
    0 4px 0 #14532d,
    0 8px 20px rgba(0, 0, 0, 0.35);
  transform: translate(var(--adventure-x), var(--adventure-y));
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.top-banner--ending .banner-adventure-text {
  opacity: 0;
}

.top-banner--ending .banner-adventure-text.banner-adventure-text--in-view {
  opacity: 1;
  animation: journeyButtonDropIn 0.62s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.top-banner--ending .banner-adventure-text.banner-adventure-text--bounce {
  opacity: 1;
  animation: home-cta-bounce-adventure 1.4s ease-in-out infinite;
  transition:
    filter 0.22s ease,
    box-shadow 0.22s ease;
}

.banner-adventure-text:hover,
.banner-adventure-text.banner-adventure-text--bounce:hover {
  animation: none;
  transform: translate(var(--adventure-x), var(--adventure-y)) scale(1.06);
  filter: brightness(1.05);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.55),
    0 5px 0 #14532d,
    0 12px 24px rgba(0, 0, 0, 0.38);
}

.banner-adventure-text:active,
.banner-adventure-text.banner-adventure-text--bounce:active {
  transform: translate(var(--adventure-x), var(--adventure-y)) scale(1.02);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.15),
    0 2px 0 #14532d,
    0 4px 12px rgba(0, 0, 0, 0.3);
}

.banner-adventure-text:focus-visible {
  outline: 3px solid #38bdf8;
  outline-offset: 4px;
}

@keyframes heroBannerFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes endingBannerFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes journeyButtonDropIn {
  from {
    opacity: 0;
    transform: translate(var(--adventure-x), calc(var(--adventure-y) - 28px));
  }
  to {
    opacity: 1;
    transform: translate(var(--adventure-x), var(--adventure-y));
  }
}

.top-banner--hero {
  overflow: hidden;
  opacity: 0;
  animation: heroBannerFadeIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .top-banner--hero {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .top-banner--ending-fade {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .top-banner--ending .banner-adventure-text,
  .top-banner--ending .banner-adventure-text.banner-adventure-text--in-view,
  .top-banner--ending .banner-adventure-text.banner-adventure-text--bounce {
    opacity: 1;
    animation: none !important;
    transform: translate(var(--adventure-x), var(--adventure-y));
  }

  .top-banner--ending.top-banner--ending--visible .top-banner--ending-fade {
    animation: none;
  }
}

.top-banner--hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(62%, 520px);
  background: linear-gradient(
    180deg,
    rgba(255, 250, 245, 0.5) 0%,
    rgba(255, 250, 245, 0.12) 45%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.top-banner--hero img {
  position: relative;
  z-index: 0;
  /* Extend art downward to close the gap above Reviews; overlay layout unchanged */
  height: calc(clamp(300px, 58vw, 820px) + clamp(1.75rem, 4vw, 3rem));
}

.top-banner img {
  width: 100%;
  height: clamp(300px, 58vw, 820px);
  object-fit: cover;
  object-position: center 54%;
  display: block;
}

/* Hero banner - headline stack (reference: playful pills + glow line) */
.hero-banner__bunting {
  position: absolute;
  top: 0.35rem;
  z-index: 3;
  display: flex;
  gap: 0.18rem;
  pointer-events: none;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.12));
}

.hero-banner__bunting--left {
  left: clamp(0.5rem, 3vw, 1.25rem);
}

.hero-banner__bunting--right {
  right: clamp(0.5rem, 3vw, 1.25rem);
  flex-direction: row-reverse;
}

.hero-bunting-flag {
  display: block;
  width: 1.1rem;
  height: 1.35rem;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.hero-bunting-flag--1 {
  background: #3b82f6;
}
.hero-bunting-flag--2 {
  background: #eab308;
}
.hero-bunting-flag--3 {
  background: #f97316;
}
.hero-bunting-flag--4 {
  background: #22c55e;
}
.hero-bunting-flag--5 {
  background: #a855f7;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(1rem, 3.5vw, 2.75rem) clamp(0.75rem, 4vw, 1.5rem) 0;
  /* Must be auto so hovers hit the headline stack; `none` sent events through to the image. */
  pointer-events: auto;
}

.hero-banner__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 1rem);
  max-width: min(56rem, 100%);
  text-align: center;
  pointer-events: auto;
}

.hero-headline-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  pointer-events: auto;
  isolation: isolate;
}

.hero-headline-pill {
  display: inline-block;
  max-width: 100%;
  padding: 0.72rem clamp(1.15rem, 4.2vw, 2.4rem);
  background-color: #f0dcc4;
  background-clip: padding-box;
  border: 3px solid #ffffff;
  border-radius: 999px;
  box-shadow:
    0 6px 20px rgba(74, 55, 40, 0.14),
    0 2px 6px rgba(74, 55, 40, 0.08);
  text-align: center;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  cursor: pointer;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  backface-visibility: hidden;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-headline-pill--raised {
  z-index: 5;
  transform: translate3d(0, -5px, 0) scale(1);
  box-shadow:
    0 16px 36px rgba(74, 55, 40, 0.2),
    0 6px 14px rgba(74, 55, 40, 0.12);
}

.hero-headline-wrap:has(.hero-headline-pill--raised) .hero-grade-pill:not(.hero-grade-pill--raised) {
  z-index: 1;
  transform: translate3d(0, 2px, 0) scale(0.99);
  box-shadow: 0 3px 12px rgba(196, 92, 62, 0.22);
}

.hero-headline-pill__heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.hero-headline-pill__text {
  display: block;
  font-family: "Baloo 2", "Poppins", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 3.8vw, 2.35rem);
  line-height: 1.22;
  letter-spacing: 0.02em;
  color: #4a3728;
  -webkit-text-stroke: 2px #ffffff;
  paint-order: stroke fill;
  text-shadow:
    0 0 1px #ffffff,
    1px 1px 0 #ffffff,
    -1px -1px 0 #ffffff,
    1px -1px 0 #ffffff,
    -1px 1px 0 #ffffff,
    0 3px 6px rgba(74, 55, 40, 0.18);
}

.hero-grade-pill {
  margin: -0.65rem 0 0;
  position: relative;
  z-index: 2;
  padding: 0.38rem clamp(1.1rem, 3.5vw, 1.85rem);
  background: #c45c3e;
  border: 3px solid #ffffff;
  border-radius: 999px;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(0.62rem, 2vw, 0.82rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  box-shadow:
    0 4px 14px rgba(196, 92, 62, 0.32),
    0 2px 6px rgba(196, 92, 62, 0.18);
  cursor: pointer;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  backface-visibility: hidden;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-grade-pill--raised {
  z-index: 5;
  transform: translate3d(0, -5px, 0) scale(1);
  box-shadow:
    0 16px 34px rgba(196, 92, 62, 0.38),
    0 6px 14px rgba(196, 92, 62, 0.22);
}

.hero-headline-wrap:has(.hero-grade-pill--raised) .hero-headline-pill:not(.hero-headline-pill--raised) {
  z-index: 1;
  transform: translate3d(0, 2px, 0) scale(0.99);
  box-shadow:
    0 4px 14px rgba(74, 55, 40, 0.12),
    0 2px 6px rgba(74, 55, 40, 0.06);
}

.top-banner--hero .hero-headline-pill:not(.hero-headline-pill--raised) {
  animation: home-cta-bounce-pill 1.4s ease-in-out infinite;
}

.top-banner--hero .hero-grade-pill:not(.hero-grade-pill--raised) {
  animation: home-cta-bounce-pill 1.4s ease-in-out 0.15s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-headline-pill,
  .hero-grade-pill {
    transition-duration: 0.08s;
    transition-timing-function: ease-out;
    animation: none !important;
  }
}

.hero-worksheets-glow {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(0.95rem, 3.4vw, 1.55rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4a3728;
}

.hero-worksheets-glow__text {
  text-shadow:
    0 0 8px #fde047,
    0 0 16px #facc15,
    0 0 28px rgba(234, 179, 8, 0.55),
    0 0 42px rgba(250, 204, 21, 0.35);
}

.hero-spark {
  font-size: 0.95em;
  filter: drop-shadow(0 0 4px rgba(234, 179, 8, 0.9));
}

@media (max-width: 520px) {
  .hero-headline-pill__text {
    -webkit-text-stroke: 1.5px #ffffff;
  }
}

.grow-section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: #ffffff;
}

.grow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  overflow: visible;
}

.grow-copy {
  position: relative;
  z-index: 2;
}

.grow-copy__body {
  max-width: 42rem;
}

.grow-title {
  margin: 0 0 1.1rem;
  margin-right: calc(-1 * clamp(2.75rem, 11vw, 8.75rem));
  padding-right: clamp(1rem, 2.5vw, 1.75rem);
  background: #ffffff;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-weight: 800;
  line-height: 1.18;
  color: #111111;
  letter-spacing: -0.02em;
}

.grow-title span {
  display: inline;
}

.grow-title-blue {
  color: #1d4ed8;
}

.grow-title-green {
  color: #15803d;
}

.grow-title-yellow {
  color: #eab308;
}

.section.level-strip-section {
  overflow-x: visible;
}

.level-strip-title {
  margin: 0 0 3rem;
  text-align: center;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
  color: #111111;
  line-height: 1.25;
}

.level-strip-our {
  color: #ec4899;
}

.level-strip-bundle {
  color: #eab308;
}

.level-strip-age {
  color: #84cc16;
}

.level-strip-groups {
  color: #c4b5fd;
}

.level-strip-grid {
  --level-spread: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 1.2rem;
  align-items: start;
  overflow: visible;
}

/* Explicit classes: nth-child/nth-of-type is fragile with DOM text nodes / grid order */
.level-item--spread-n1 {
  transform: translateX(calc(var(--level-spread) * -44px));
}

.level-item--spread-n2 {
  transform: translateX(calc(var(--level-spread) * -15px));
}

.level-item--spread-n3 {
  transform: translateX(calc(var(--level-spread) * 15px));
}

.level-item--spread-n4 {
  transform: translateX(calc(var(--level-spread) * 44px));
}

.level-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.level-image {
  width: 100%;
  max-width: 158px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #ececec;
  border: 0;
}

.level-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(6.8);
  transform-origin: center;
}

.level-image--ukg img {
  transform: scale(6.2);
  object-position: 52% center;
}

.level-badge {
  position: absolute;
  top: -6px;
  right: 10px;
  min-width: 54px;
  min-height: 46px;
  padding: 0.35rem 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  clip-path: polygon(25% 0%, 75% 0%, 100% 30%, 100% 70%, 75% 100%, 25% 100%, 0% 70%, 0% 30%);
}

.level-badge--yellow {
  background: #f4e04d;
  color: #111111;
}

.level-badge--green {
  background: #67b64d;
}

.level-badge--orange {
  background: #f05a3a;
}

.level-badge--teal {
  background: #0f766e;
}

.reviews-section {
  position: relative;
  margin-top: 0;
  background: #ffffff;
  overflow: hidden;
}

.reviews-section::before,
.reviews-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1d4ed8, #eab308, #ec4899, #22c55e, #a855f7);
  opacity: 0.85;
}

.reviews-section::before {
  top: 0;
}

.reviews-section::after {
  bottom: 0;
}

.reviews-section__inner {
  position: relative;
  z-index: 1;
}

.reviews-intro {
  display: flex;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto 2rem;
  text-align: center;
}

.reviews-heading {
  margin: 0;
  padding-bottom: 0;
  border-bottom: none;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.15rem, 3.75vw, 2.4rem);
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.28;
  text-wrap: balance;
  text-align: center;
}

.reviews-heading-blue {
  color: #1d4ed8;
}

.reviews-heading-green {
  color: #15803d;
}

.reviews-heading-yellow {
  color: #eab308;
}

.reviews-heading-row {
  display: inline;
}

.reviews-heading-brandtail {
  white-space: nowrap;
}

.reviews-heading-brainy-yellow {
  color: #eab308;
}

.reviews-heading-letter {
  font-weight: inherit;
}

.reviews-heading-letter-t-cyan {
  color: #06b6d4;
}

.reviews-heading-letter-o-pink {
  color: #ec4899;
}

.reviews-heading-letter-t-yellow {
  color: #eab308;
}

.reviews-heading-letter-s-lavender {
  color: #a78bfa;
}

.reviews-carousel {
  position: relative;
  width: 100%;
}

.reviews-scroller {
  container-type: inline-size;
  container-name: reviews-scroll;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
}

.reviews-scroller::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.reviews-track {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  grid-auto-columns: calc((100cqi - 2 * 1.15rem) / 3);
  gap: 1.15rem;
  padding: 0.25rem 0 0.75rem;
  width: max-content;
  min-height: 100%;
  align-items: stretch;
  backface-visibility: hidden;
}

.reviews-carousel--auto .reviews-track {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-carousel--auto .reviews-track,
  .reviews-carousel--static .reviews-track {
    will-change: auto;
    transform: none;
  }

  .reviews-scroller {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}

.reviews-track .review-card {
  width: 100%;
  max-width: none;
  min-width: 0;
}

@supports not (container-type: inline-size) {
  .reviews-track {
    grid-auto-columns: min(280px, calc((100vw - 7rem) / 3));
  }
}

.review-card {
  position: relative;
  border-radius: 18px;
  padding: 1.2rem 1.25rem 1.15rem;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow:
    0 1px 2px rgba(17, 17, 17, 0.04),
    0 12px 32px rgba(74, 55, 40, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.review-card::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #06b6d4, #ec4899, #eab308, #a78bfa);
  opacity: 0.75;
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 78, 216, 0.18);
  box-shadow:
    0 2px 4px rgba(17, 17, 17, 0.06),
    0 18px 40px rgba(29, 78, 216, 0.1);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  flex-wrap: wrap;
  padding-top: 0.15rem;
}

.review-stars {
  display: inline-flex;
  align-items: center;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(234, 179, 8, 0.35));
}

.review-star-half {
  display: inline-block;
  clip-path: inset(0 50% 0 0);
  line-height: 1;
}

.review-score {
  display: inline-flex;
  align-items: baseline;
  gap: 0.08rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 800;
  color: #111111;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #fefce8 0%, #fef9c3 100%);
  border: 1px solid rgba(234, 179, 8, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.review-score-num {
  font-size: 1.02rem;
  line-height: 1;
}

.review-score-suffix {
  font-size: 0.72rem;
  font-weight: 700;
  color: #854d0e;
  opacity: 0.9;
}

.review-quote {
  position: relative;
  margin: 0;
  padding: 0.15rem 0 0 1.15rem;
  border-left: 3px solid rgba(29, 78, 216, 0.22);
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.62;
  color: #353535;
}

.review-quote::before {
  content: "\201C";
  position: absolute;
  left: 0.05rem;
  top: -0.05rem;
  font-family: "Baloo 2", "Poppins", system-ui, sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(29, 78, 216, 0.14);
  pointer-events: none;
}

.review-by {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.15rem 0 0;
  padding-top: 0.65rem;
  border-top: 1px dashed rgba(17, 17, 17, 0.1);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.review-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem;
  min-width: 0;
  line-height: 1.3;
}

.review-name {
  font-weight: 800;
  color: #111111;
}

.review-avatar {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  background: linear-gradient(145deg, #3b82f6, #1d4ed8);
  box-shadow: 0 1px 4px rgba(29, 78, 216, 0.35);
}

.review-card:nth-child(5n + 2) .review-avatar {
  background: linear-gradient(145deg, #22c55e, #15803d);
  box-shadow: 0 1px 4px rgba(21, 128, 61, 0.35);
}

.review-card:nth-child(5n + 3) .review-avatar {
  background: linear-gradient(145deg, #facc15, #ca8a04);
  color: #1f2937;
  box-shadow: 0 1px 4px rgba(202, 138, 4, 0.35);
}

.review-card:nth-child(5n + 4) .review-avatar {
  background: linear-gradient(145deg, #c084fc, #9333ea);
  box-shadow: 0 1px 4px rgba(147, 51, 234, 0.35);
}

.review-card:nth-child(5n + 5) .review-avatar {
  background: linear-gradient(145deg, #fb923c, #ea580c);
  box-shadow: 0 1px 4px rgba(234, 88, 12, 0.35);
}

.review-location {
  font-weight: 700;
  color: #1e3a8a;
}

.review-location::before {
  content: "from ";
  font-weight: 600;
  color: #475569;
}

@media (prefers-reduced-motion: reduce) {
  .review-card {
    transition: none;
  }

  .review-card:hover {
    transform: none;
  }
}

.bundle-showcase-section ~ .section:not(.level-strip-section) {
  background: #ffffff;
}

.bundle-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: stretch;
}

.bundle-showcase-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  column-gap: clamp(0.35rem, 0.9vw, 0.55rem);
  row-gap: clamp(0.35rem, 0.9vw, 0.55rem);
  width: 100%;
  max-width: 360px;
  min-height: 0;
  height: 100%;
  align-self: stretch;
  justify-self: end;
  transform: translateX(-1.5rem);
}

.bundle-gallery-btn {
  --gallery-x-nudge: 0;
  --gallery-hover-scale: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  transform: translate(var(--gallery-x-nudge), 12px) scale(var(--gallery-hover-scale));
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s ease;
  z-index: 1;
}

/* Widen col 1–2 and 2–3 gaps equally (col 1 left, col 3 right) */
.bundle-gallery-btn:nth-child(3n + 1) {
  --gallery-x-nudge: -1.5rem;
}

.bundle-gallery-btn:nth-child(3n) {
  --gallery-x-nudge: 1.5rem;
}

.bundle-gallery-btn.bundle-gallery-btn--in-view {
  opacity: 1;
  transform: translate(var(--gallery-x-nudge), 0) scale(var(--gallery-hover-scale));
}

.bundle-showcase-gallery:hover .bundle-gallery-btn.bundle-gallery-btn--in-view:not(:hover) {
  --gallery-hover-scale: 0.88;
}

.bundle-showcase-gallery .bundle-gallery-btn.bundle-gallery-btn--in-view:hover {
  --gallery-hover-scale: 1.14;
  z-index: 4;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.12);
}

.bundle-gallery-btn:active {
  transform: translate(var(--gallery-x-nudge), 1px) scale(var(--gallery-hover-scale));
}

.bundle-gallery-btn.bundle-gallery-btn--in-view:active {
  transform: translate(var(--gallery-x-nudge), 1px) scale(var(--gallery-hover-scale));
}

.bundle-gallery-btn:focus-visible {
  outline: 2px solid #1d4ed8;
  outline-offset: 3px;
}

.bundle-gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  background: #ffffff;
  transform: scale(1.12);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.bundle-gallery-image--zoom-tiny {
  transform: scale(1.16);
}

.bundle-gallery-image--zoom-a-bit {
  transform: scale(1.24);
}

.bundle-gallery-image--zoom-a-bit-slight {
  transform: scale(1.3);
}

.bundle-gallery-image--zoom-a-bit-more {
  transform: scale(1.38);
}

.bundle-gallery-image--zoom-light {
  transform: scale(1.9);
}

.bundle-gallery-image--zoom-more {
  transform: scale(1.5) translateY(3%);
}

.bundle-gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: linear-gradient(160deg, #ffffff 0%, #ebe6da 55%, #e0dacb 100%);
}

.bundle-gallery-placeholder__label {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(0.55rem, 1.1vw, 0.65rem);
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bundle-showcase-copy h2 {
  margin-bottom: 0.8rem;
}

.bundle-title-featu {
  color: #eab308;
}

.bundle-title-red {
  color: #dc2626;
}

.bundle-title-featured {
  display: inline-block;
  opacity: 0;
  transform: translateY(-52px);
}

.bundle-title-featured.bundle-title-featured--in-view {
  animation: bundleFeaturedSlideIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bundle-title-our {
  color: #1e3a8a;
}

.bundle-title-bundle {
  color: #1e3a8a;
}

@keyframes bundleFeaturedSlideIn {
  from {
    transform: translateY(-52px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.bundle-showcase-copy p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
  max-width: 55ch;
}

.bundle-showcase-copy ul {
  margin: 0 0 0.85rem 1.1rem;
  padding: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
  max-width: 55ch;
}

.bundle-showcase-copy li {
  margin-bottom: 0.55rem;
}

.bundle-showcase-btn {
  margin-top: 0.4rem;
  padding: 0.85rem 1.6rem;
  font-size: 1.05rem;
  background: #7dd3fc;
  border-color: #0369a1;
  color: #111111;
  transform-origin: center;
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.bundle-showcase-btn.bundle-showcase-btn--in-view {
  opacity: 1;
  transform: translateX(0);
  animation: home-cta-bounce 1.4s ease-in-out infinite;
}

/* Entrance uses transition (not animation) so hover wiggle can own transform while hovered */
.bundle-showcase-btn.bundle-showcase-btn--in-view:hover {
  animation: bundle-btn-wiggle 0.38s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .bundle-showcase-btn {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .bundle-showcase-btn.bundle-showcase-btn--in-view,
  .bundle-showcase-btn.bundle-showcase-btn--in-view:hover {
    animation: none;
  }

}

@keyframes home-cta-bounce-pill {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1);
  }
}

@keyframes home-cta-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes home-cta-bounce-adventure {
  0%,
  100% {
    opacity: 1;
    transform: translate(var(--adventure-x), var(--adventure-y));
    box-shadow:
      inset 0 2px 0 rgba(255, 255, 255, 0.45),
      0 4px 0 #14532d,
      0 8px 20px rgba(0, 0, 0, 0.35);
  }
  50% {
    opacity: 1;
    transform: translate(var(--adventure-x), calc(var(--adventure-y) - 10px));
    box-shadow:
      inset 0 2px 0 rgba(255, 255, 255, 0.45),
      0 6px 0 #14532d,
      0 12px 24px rgba(0, 0, 0, 0.38);
  }
}

@keyframes bundle-btn-wiggle {
  0% {
    transform: scale(1.06) rotate(0deg);
  }
  25% {
    transform: scale(1.06) rotate(1.7deg);
  }
  50% {
    transform: scale(1.06) rotate(0deg);
  }
  75% {
    transform: scale(1.06) rotate(-1.7deg);
  }
  100% {
    transform: scale(1.06) rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bundle-gallery-btn {
    opacity: 1;
    transform: translate(var(--gallery-x-nudge), 0) scale(1);
    transition: box-shadow 0.2s ease;
  }

  .bundle-showcase-gallery:hover .bundle-gallery-btn.bundle-gallery-btn--in-view:not(:hover),
  .bundle-showcase-gallery .bundle-gallery-btn.bundle-gallery-btn--in-view:hover {
    --gallery-hover-scale: 1;
  }

  .product-showcase__cta .btn,
  .product-showcase__cta .btn.product-cta-btn--in-view {
    opacity: 1;
    transform: none;
    transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  }

  .product-highlight-card,
  .product-highlight-card.product-highlight-card--in-view {
    opacity: 1;
    transform: none;
    transition: box-shadow 0.2s ease;
  }

  .product-includes__card,
  .product-includes__card.product-includes__card--in-view,
  .product-description__card,
  .product-description__card.product-description__card--in-view {
    opacity: 1;
    transform: none;
    transition: box-shadow 0.2s ease;
  }
}

.grow-lede {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  font-weight: 600;
  line-height: 1.65;
  color: #4a4a4a;
}

.grow-zone {
  margin: 1.65rem 0 0.85rem;
  padding-bottom: 0.45rem;
  position: relative;
  display: inline-block;
}

.grow-zone::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #d4d4d4;
}

.grow-zone__text {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  color: #111111;
}

.grow-zone-progress {
  color: #15803d;
}

.grow-zone-zone {
  color: #dc2626;
}

.grow-subtitle {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
}

.grow-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.9rem, 2.8vw, 1.65rem);
  min-height: clamp(300px, 42vw, 460px);
  transform: translateY(-22px);
}

.grow-visual__cell {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  transform: translateX(34px);
}

.grow-visual--in-view .grow-visual__cell {
  animation: growVisualSlideInRight 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.grow-visual--in-view .grow-visual__cell:nth-child(2) {
  animation-delay: 0.14s;
}

.grow-visual--in-view .grow-visual__cell:nth-child(3) {
  animation-delay: 0.28s;
}

.grow-frame {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

@keyframes growVisualSlideInRight {
  from {
    transform: translateX(42px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.grow-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.grow-frame--circle {
  width: min(100%, 12.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
}

.grow-frame--circle img {
  transform: scale(2.3) translate(0%, 8%);
  transform-origin: center center;
}

.grow-frame--capsule {
  width: min(100%, 10.5rem);
  height: clamp(14rem, 32vw, 18.5rem);
  border-radius: 999px;
}

.grow-frame--capsule img {
  transform: scale(1.35) translate(-2%, 0%);
  transform-origin: center center;
}

.grow-frame--tall {
  width: min(100%, 10.5rem);
  height: clamp(17.5rem, 40vw, 23rem);
  border-radius: 999px;
}

.grow-frame--tall img {
  /* No extra scale: pan the crop so the right side of the photo stays in frame. */
  object-position: 44% center;
}

.hero {
  padding: 1.2rem 0 1.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.pill {
  display: inline-block;
  border: 2px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.96;
  margin-bottom: 0.65rem;
}

h2 {
  font-size: clamp(1.5rem, 3.8vw, 2.3rem);
  margin-bottom: 1rem;
}

.subtitle {
  max-width: 52ch;
  color: var(--muted);
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
}

.price {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0.9rem 0 1rem;
  font-family: "Baloo 2", cursive;
}

.cta-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 0.62rem 1.2rem;
  font-weight: 800;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
}

.btn-primary {
  background: #111111;
  color: #ffffff;
}

.btn-outline {
  background: #ffffff;
  color: #111111;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.btn-outline:hover {
  background: #e5e7eb;
  border-color: #111111;
  box-shadow: 0 2px 10px rgba(74, 55, 40, 0.15);
}

.btn-outline:active {
  background: #d1d5db;
}

.btn-outline:focus-visible {
  outline: 3px solid #38bdf8;
  outline-offset: 2px;
}

.hero-image-card img,
.reference-row img,
.story-image img {
  width: 100%;
  display: block;
  border: 2px solid var(--border);
  border-radius: 18px;
}

.section {
  padding: 2rem 0;
}

.section.reviews-section {
  padding-top: clamp(3.5rem, 6.5vw, 4.75rem);
  padding-bottom: clamp(3.5rem, 6.5vw, 4.75rem);
}

/* Margins sit outside background - use padding so #f1ecdf fills the full band */
.section.bundle-showcase-section {
  margin: 0;
  padding-top: calc(2rem + 1rem + 1rem);
  padding-bottom: calc(2rem + 2.6rem);
  background: #f1ecdf;
}

.section.level-strip-section {
  margin: 0;
  padding-top: calc(2rem + 1rem + 1.5rem);
  padding-bottom: calc(2rem + 1.25rem);
  background: #f1ecdf;
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 0.8rem;
}

.chip {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 0.85rem 0.75rem;
  text-align: center;
  font-weight: 800;
  background: var(--soft);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 1rem;
}

.bundle-card {
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
  background: #fff;
}

.bundle-card h3 {
  font-family: "Poppins", system-ui, sans-serif;
  margin: 0 0 0.35rem;
  font-size: 1.34rem;
}

.bundle-card p {
  margin: 0;
}

.bundle-desc {
  min-height: 44px;
  color: var(--muted);
  font-weight: 600;
}

.bundle-price {
  margin-top: 0.7rem;
  font-size: 1.2rem;
  font-weight: 900;
}

.reference-row {
  margin-top: 1.2rem;
}

.testimonials {
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 0.8rem;
}

.testimonial-card {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 0.9rem;
  background: var(--soft);
}

.testimonial-card strong {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.15rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  align-items: center;
}

.story-copy p {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-weight: 600;
}

.footer.legal-footer-links {
  border-top: none;
  text-align: center;
  padding: 0.5rem 1rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 600;
  position: relative;
}

.legal-footer-links a {
  color: #1d4ed8;
  text-decoration: none;
}

.legal-links-group {
  position: absolute;
  right: 50%;
  margin-right: 15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.legal-trademark {
  color: #111111;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
}

.legal-trademark .brainytots-wordmark {
  font-size: 1em;
  vertical-align: middle;
}

.legal-footer-links .legal-footer-email {
  position: absolute;
  left: 50%;
  margin-left: 15rem;
  color: #111111;
  text-decoration: none;
  white-space: nowrap;
}

.legal-footer-links a:hover {
  text-decoration: underline;
}

.legal-footer-links .legal-footer-email:hover {
  color: #111111;
  text-decoration: underline;
}

.legal-page {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  color: #111111;
  background: #f1ecdf;
}

.legal-container {
  width: min(900px, 92%);
  margin: 0 auto;
  padding: 2.5rem 0 3.5rem;
}

.legal-card {
  background: #ffffff;
  border: 0;
  border-radius: 18px;
  padding: clamp(1.1rem, 2.5vw, 2rem);
}

.legal-title {
  margin: 0 0 1rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.legal-updated {
  margin: 0 0 1.2rem;
  color: #4a4a4a;
  font-weight: 700;
}

.legal-card h2 {
  margin: 1.1rem 0 0.45rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.legal-card p {
  margin: 0 0 0.7rem;
  line-height: 1.6;
  font-weight: 600;
  color: #2f2f2f;
}

.legal-back-link {
  display: inline-block;
  margin-top: 1.1rem;
  font-weight: 800;
  color: #1d4ed8;
  text-decoration: none;
}

.legal-back-link:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .grow-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .grow-title {
    margin-right: 0;
    padding-right: 0;
  }

  .grow-copy__body {
    max-width: none;
  }

  .grow-visual {
    min-height: clamp(280px, 58vw, 400px);
    max-width: 520px;
    margin-inline: auto;
  }

  .level-strip-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 1.35rem 1rem;
  }

  .bundle-showcase-grid {
    grid-template-columns: 1fr;
    gap: clamp(3.8rem, 7.8vw, 3.9rem);
  }

  .bundle-showcase-gallery {
    height: auto;
    max-width: 100%;
    justify-self: stretch;
    width: 100%;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    transform: none;
  }

  .bundle-gallery-btn {
    position: relative;
    aspect-ratio: 1;
    height: auto;
    max-height: none;
  }

  .bundle-gallery-btn:nth-child(3n + 1),
  .bundle-gallery-btn:nth-child(3n) {
    --gallery-x-nudge: 0;
  }

  .bundle-gallery-image,
  .bundle-gallery-image--zoom-tiny,
  .bundle-gallery-image--zoom-light,
  .bundle-gallery-image--zoom-more {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
    background: #ffffff;
  }

  /* Source PNGs are pillarboxed with black side bars — zoom to crop them on small screens */
  .bundle-gallery-image--zoom-a-bit,
  .bundle-gallery-image--zoom-a-bit-slight,
  .bundle-gallery-image--zoom-a-bit-more {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #ffffff;
  }

  .bundle-gallery-image--zoom-a-bit {
    transform: scale(1.68);
  }

  .bundle-gallery-image--zoom-a-bit-slight {
    transform: scale(1.64);
  }

  .bundle-gallery-image--zoom-a-bit-more {
    transform: scale(1.74);
  }

  .hero-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .chip-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .bundle-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }

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

@media (max-width: 620px) {
  .level-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 0.75rem;
    justify-items: center;
  }

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

.checkout-page {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: "Nunito", Arial, sans-serif;
  color: #111111;
  background: #f1ecdf;
}

.checkout-offer-bar-shell {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e6e0d3;
}

.checkout-offer-bar-shell::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: #ffffff;
}

.checkout-offer-bar-shell .offer-bar {
  position: relative;
  z-index: 1;
  background: #ffffff;
}

.checkout-main {
  flex: 1 0 auto;
  width: min(1060px, 92%);
  margin: clamp(3.25rem, 7vw, 4.5rem) auto clamp(1.5rem, 4vw, 2.2rem);
  overflow: visible;
}

.checkout-page > .footer.legal-footer-links {
  flex-shrink: 0;
  width: 100%;
  margin-top: auto;
  background: #ffffff;
  border-top: 1px solid #e6e0d3;
}

.checkout-layout {
  --checkout-slide-distance: clamp(5rem, 18vw, 9rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  grid-template-areas: "form summary";
  gap: 1rem;
  align-items: start;
  overflow: visible;
  width: calc(100% + (2 * var(--checkout-slide-distance)));
  max-width: none;
  margin-inline: calc(-1 * var(--checkout-slide-distance));
  padding-inline: var(--checkout-slide-distance);
}

.checkout-form-card {
  grid-area: form;
}

.checkout-summary-card {
  grid-area: summary;
}

.checkout-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e6e0d3;
  padding: 1rem;
}

.checkout-form-card,
.checkout-summary-card {
  opacity: 0;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s ease;
}

.checkout-form-card:not(.checkout-card--in-view) {
  transform: translateX(calc(-1 * var(--checkout-slide-distance)));
}

.checkout-summary-card:not(.checkout-card--in-view) {
  transform: translateX(var(--checkout-slide-distance));
}

.checkout-form-card.checkout-card--in-view,
.checkout-summary-card.checkout-card--in-view {
  opacity: 1;
  transform: translateX(0);
}

.checkout-form-card h1,
.checkout-summary-card h2 {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
}

.checkout-subtitle {
  margin: 0.35rem 0 0.95rem;
  color: #4a4a4a;
  font-weight: 600;
}

.checkout-form {
  display: grid;
  gap: 0.75rem;
}

.checkout-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.checkout-form input,
.checkout-form textarea {
  border: 1px solid #d5d0c4;
  border-radius: 10px;
  padding: 0.65rem 0.7rem;
  font: inherit;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: #2563eb;
  outline: 2px solid #bfdbfe;
}

.checkout-row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}

.checkout-payment {
  border: 1px solid #e0dacb;
  border-radius: 10px;
  padding: 0.75rem;
  margin: 0.2rem 0 0;
}

.checkout-payment legend {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  padding: 0 0.35rem;
}

.checkout-payment label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.4rem;
}

.checkout-form__actions {
  margin-top: 0.25rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.55rem;
}

.checkout-form__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 2.85rem;
  padding-block: 0.72rem;
  line-height: 1.2;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
}

.checkout-back-btn {
  flex: 0 1 34%;
  padding-inline: 0.85rem;
  font-size: 0.9rem;
  text-decoration: underline;
}

.checkout-back-btn:hover {
  text-decoration: none;
}

.checkout-place-order {
  flex: 1 1 66%;
  margin-top: 0;
  padding-inline: 1.35rem;
  font-size: 1.05rem;
}

.checkout-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 0.7rem;
  align-items: center;
  margin: 0.8rem 0 1rem;
}

.checkout-item img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.checkout-item-title {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
}

.checkout-item-desc {
  margin: 0.2rem 0 0;
  color: #4a4a4a;
}

.checkout-total-lines {
  border-top: 1px solid #e8e2d5;
  padding-top: 0.8rem;
}

.checkout-total-lines p {
  display: flex;
  justify-content: space-between;
  margin: 0.42rem 0;
}

.checkout-discount-prices {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
}

.checkout-discount-prices__compare {
  font-weight: 600;
  color: #6b7280;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.checkout-discount-prices__amount {
  font-weight: 700;
}

.checkout-total {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  border-top: 1px dashed #d8d2c4;
  padding-top: 0.6rem;
  color: #111111;
}

.checkout-total__label,
.checkout-total__amount {
  font-family: inherit;
  font-weight: 800;
}

.checkout-total__amount {
  font-size: 1.2rem;
}

.checkout-note {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: #5b5b5b;
}

@media (prefers-reduced-motion: reduce) {
  .checkout-form-card,
  .checkout-form-card.checkout-card--in-view,
  .checkout-summary-card,
  .checkout-summary-card.checkout-card--in-view {
    opacity: 1;
    transform: none;
    transition: box-shadow 0.2s ease;
  }
}

@media (max-width: 860px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "summary"
      "form";
  }

  .checkout-row {
    grid-template-columns: 1fr;
  }
}

.product-page {
  --product-content-width: min(1120px, 92%);
  --product-panel-width: min(1080px, 91%);
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  color: #111111;
  background: #ffffff;
}

.product-highlights > .container,
.product-includes__stack > .container {
  width: var(--product-panel-width);
  max-width: var(--product-panel-width);
  margin-left: auto;
  margin-right: calc((100% - var(--product-content-width)) / 2);
}

.product-main {
  margin: 0;
  padding: 0;
  background: #ffffff;
}

.product-showcase {
  background: #ffffff;
  padding: clamp(0.85rem, 2.5vw, 1.35rem) 0 0;
  border-block: 1px solid #ebe6da;
}

.product-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.product-showcase__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  margin: clamp(-9rem, -18vw, -6.5rem) 0 0;
  padding: 0;
}

.product-showcase__media {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-showcase__frame {
  position: relative;
  margin: 0;
  padding: clamp(0.35rem, 1.2vw, 0.65rem) clamp(0.75rem, 2vw, 1.25rem) clamp(0.75rem, 2vw, 1.25rem);
  background: #ffffff;
  border-radius: 20px;
  border: none;
  box-shadow: none;
}

.product-showcase__badge {
  position: absolute;
  top: clamp(3.7rem, 11vw, 5.7rem);
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 1;
  display: inline-block;
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  white-space: nowrap;
}

.product-showcase__frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.product-showcase__heading {
  margin: 0;
  width: 100%;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.25;
  text-align: left;
}

.product-showcase__text {
  margin: 0.75rem 0 0;
  width: 100%;
  max-width: 55ch;
  color: #4a4a4a;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
}

.product-price-pill {
  margin: 1.1rem 0 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.product-price-pill__label {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #166534;
}

.product-price-pill__compare {
  font-family: "Baloo 2", "Poppins", system-ui, sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 700;
  color: #6b7280;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.product-price-pill__amount {
  font-family: "Baloo 2", "Poppins", system-ui, sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  font-weight: 800;
  color: #14532d;
  line-height: 1;
}

.product-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin: 0.7rem 0 0;
  width: auto;
  max-width: 100%;
}

.product-rating__text {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #374151;
  line-height: 1.2;
}

.product-rating__score {
  font-weight: 800;
  color: #111111;
}

.product-showcase__cta {
  margin-top: 1.25rem;
}

.product-showcase__cta .btn {
  opacity: 0;
  transform: translateY(1.75rem);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.product-showcase__cta .btn.product-cta-btn--in-view {
  opacity: 1;
  transform: translateY(0);
}

.product-page .product-btn-primary {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-btn-primary--large {
  padding: 0.85rem 1.5rem;
  font-size: 1.05rem;
}

.product-page .product-btn-primary.product-btn-primary--large {
  background: #facc15;
  color: #1f2937;
  border: 2px solid #eab308;
  box-shadow: 0 6px 0 #ca8a04;
  text-decoration: none;
}

.product-page .product-btn-primary.product-btn-primary--large:hover {
  background: #fde047;
}

.product-showcase__cta .btn-outline {
  text-decoration: none;
}

@media (min-width: 861px) {
  .product-showcase__cta {
    align-items: flex-end;
  }

  .product-showcase__cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .product-showcase__cta .btn-outline {
    padding: 0.85rem 1.35rem;
    font-size: 1.05rem;
    line-height: 1.2;
  }
}

.product-highlights {
  position: relative;
  z-index: 2;
  background: #ffffff;
  margin-top: 0;
  padding: clamp(1rem, 2.5vw, 1.5rem) 0 clamp(1rem, 2.5vw, 1.5rem);
}

@media (min-width: 861px) {
  .product-highlights {
    margin-top: clamp(-14rem, -35vw, -7rem);
  }
}

.product-section-title {
  margin: 0 0 1.25rem;
  text-align: center;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  line-height: 1.2;
}

.product-section-title--left {
  text-align: left;
  margin-bottom: 1rem;
}

.product-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

.product-highlight-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e6e0d3;
  padding: 1.1rem 1rem 1.15rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
  opacity: 0;
  transform: translateY(1.75rem);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s ease;
}

.product-highlight-card.product-highlight-card--in-view {
  opacity: 1;
  transform: translateY(0);
}

.product-highlight-card__icon {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.product-highlight-card h3 {
  margin: 0 0 0.4rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.02rem;
}

.product-highlight-card p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #4a4a4a;
  line-height: 1.45;
}

.product-includes {
  padding: clamp(0.75rem, 2vw, 1.25rem) 0 clamp(2rem, 5vw, 3rem);
  background: #ffffff;
}

.product-includes__stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.product-includes__card,
.product-description__card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e6e0d3;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
}

.product-includes__card {
  opacity: 0;
  transform: translateX(clamp(5rem, 18vw, 9rem));
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s ease;
}

.product-includes__card.product-includes__card--in-view {
  opacity: 1;
  transform: translateX(0);
}

.product-description__card {
  margin-top: 0;
  opacity: 0;
  transform: translateX(clamp(-5rem, -18vw, -9rem));
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s ease;
}

.product-description__card.product-description__card--in-view {
  opacity: 1;
  transform: translateX(0);
}

.product-description-title {
  color: #ca8a04;
}

.product-description__list {
  margin: 0;
  padding: 0 0 0 1.15rem;
  display: grid;
  gap: 0.65rem;
}

.product-description__list li {
  font-weight: 600;
  color: #333333;
  line-height: 1.55;
  font-size: 0.98rem;
}

.product-includes__list {
  margin: 0;
  padding: 0 0 0 1.15rem;
  display: grid;
  gap: 0.65rem;
}

.product-includes__list li {
  font-weight: 600;
  color: #333333;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .product-highlights > .container,
  .product-includes__stack > .container {
    width: var(--product-content-width);
    max-width: var(--product-content-width);
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 860px) {
  .product-showcase__grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0;
  }

  .product-showcase {
    padding-top: 0.35rem;
    padding-bottom: 1.25rem;
  }

  .product-showcase__copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: clamp(-6.75rem, -24vw, -4.25rem) 0 0;
    padding: 0 0 0.5rem;
  }

  .product-showcase__heading,
  .product-showcase__text,
  .product-price-pill,
  .product-rating {
    margin: 0;
  }

  .product-showcase__media {
    order: -1;
    position: relative;
    z-index: 1;
    margin-bottom: -1.25rem;
  }

  .product-showcase__frame {
    padding: 0 0.5rem 0;
  }

  .product-showcase__frame img {
    margin-bottom: -1.25rem;
  }

  .product-highlights {
    margin-top: 0;
    padding-top: clamp(1.25rem, 4vw, 1.75rem);
  }

  .product-showcase__cta {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.15rem;
  }

  .product-showcase__cta .btn,
  .product-showcase__cta .btn.product-cta-btn--in-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: none;
  }

  .product-page .product-showcase__cta .btn {
    min-width: 0;
    min-height: 3rem;
    width: auto;
    padding: 0.72rem 0.7rem;
    font-size: clamp(0.72rem, 2.7vw, 0.86rem);
    line-height: 1.2;
    text-align: center;
  }

  .product-showcase__cta .btn-outline {
    flex: 0 1 32%;
  }

  .product-page .product-btn-primary.product-btn-primary--large {
    flex: 1 1 68%;
    padding: 0.72rem 0.7rem;
    font-family: "Poppins", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(0.72rem, 2.7vw, 0.86rem);
    box-shadow: 0 4px 0 #ca8a04;
    margin-bottom: 0.2rem;
  }
}

@media (max-width: 520px) {
  .product-highlights__grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile-only (≤767px): top bar, ending CTA, footer, reviews — desktop unchanged */
@media (max-width: 767px) {
  html {
    overflow-x: clip;
  }

  body {
    overflow-x: clip;
  }

  main {
    overflow-x: clip;
  }

  .offer-bar,
  .checkout-offer-bar-shell {
    display: none;
  }

  .bundle-showcase-gallery {
    transform: none;
  }

  .section.bundle-showcase-section {
    padding-top: 2.85rem;
  }

  .bundle-showcase-section .container {
    width: min(1120px, 94%);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .banner-adventure-wrap {
    align-items: flex-start;
    justify-content: center;
    padding: 1.15rem 0.75rem 0;
  }

  .banner-adventure-text {
    --adventure-x: 0;
    --adventure-y: 0;
    max-width: calc(100% - 1rem);
    font-size: clamp(0.7rem, 3.1vw, 0.98rem);
    padding: 0.48em 0.9em;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    transform: none;
  }

  .top-banner--ending {
    padding-top: 0;
  }

  .footer.legal-footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.75rem 1rem 0.85rem;
    min-height: auto;
  }

  .legal-links-group,
  .legal-trademark,
  .legal-footer-links .legal-footer-email {
    position: static;
    transform: none;
    margin: 0;
    left: auto;
    right: auto;
  }

  .legal-links-group {
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .reviews-track {
    grid-auto-columns: min(260px, calc(100cqi - 1.15rem));
  }

  .reviews-heading {
    font-size: clamp(1.45rem, 4.8vw, 1.85rem);
    line-height: 1.2;
    text-wrap: wrap;
  }

  .reviews-heading-row {
    display: block;
  }

  .reviews-heading-brandtail {
    white-space: nowrap;
  }

  .bundle-showcase-copy h2 {
    font-size: clamp(1.95rem, 6.2vw, 2.35rem);
    line-height: 1.2;
  }

  .level-strip-title {
    font-size: clamp(1.75rem, 5.5vw, 2.1rem);
    line-height: 1.2;
  }

  .product-section-title {
    font-size: clamp(1.8rem, 5.8vw, 2.15rem);
    line-height: 1.2;
  }

  .product-showcase__heading {
    font-size: clamp(1.75rem, 5.5vw, 2rem);
    line-height: 1.22;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .top-banner--hero {
    opacity: 1 !important;
    transform: none !important;
  }

  .top-banner--ending-fade {
    opacity: 1 !important;
  }

  .top-banner--ending .banner-adventure-text,
  .top-banner--ending .banner-adventure-text.banner-adventure-text--in-view {
    opacity: 1 !important;
  }

  .top-banner--ending .banner-adventure-text:not(.banner-adventure-text--bounce) {
    transform: none !important;
  }

  .top-banner--ending .banner-adventure-text.banner-adventure-text--bounce {
    opacity: 1 !important;
    animation: home-cta-bounce 1.4s ease-in-out infinite !important;
  }

  .top-banner--hero .hero-headline-pill:not(.hero-headline-pill--raised) {
    animation: home-cta-bounce-pill 1.4s ease-in-out infinite !important;
  }

  .top-banner--hero .hero-grade-pill:not(.hero-grade-pill--raised) {
    animation: home-cta-bounce-pill 1.4s ease-in-out 0.15s infinite !important;
  }

  .bundle-showcase-btn {
    opacity: 1 !important;
  }

  .bundle-showcase-btn.bundle-showcase-btn--in-view {
    opacity: 1 !important;
    animation: home-cta-bounce 1.4s ease-in-out infinite !important;
  }

  .bundle-title-featured,
  .bundle-title-featured.bundle-title-featured--in-view {
    opacity: 1 !important;
    transform: none !important;
  }

  .bundle-gallery-btn,
  .bundle-gallery-btn.bundle-gallery-btn--in-view {
    opacity: 1 !important;
    transform: translate(var(--gallery-x-nudge), 0) scale(1) !important;
  }

  .bundle-showcase-gallery:hover .bundle-gallery-btn {
    --gallery-hover-scale: 1;
  }

  .level-strip-grid {
    --level-spread: 0 !important;
    gap: 1.15rem 0.75rem !important;
  }

  .level-item,
  .level-item--spread-n1,
  .level-item--spread-n2,
  .level-item--spread-n3,
  .level-item--spread-n4 {
    transform: none !important;
  }

  .product-showcase__cta .btn,
  .product-showcase__cta .btn.product-cta-btn--in-view,
  .product-highlight-card,
  .product-highlight-card.product-highlight-card--in-view,
  .product-includes__card,
  .product-includes__card.product-includes__card--in-view,
  .product-description__card,
  .product-description__card.product-description__card--in-view,
  .checkout-form-card,
  .checkout-form-card.checkout-card--in-view,
  .checkout-summary-card,
  .checkout-summary-card.checkout-card--in-view {
    opacity: 1 !important;
    transform: none !important;
  }

  .review-card:hover {
    transform: none !important;
  }

  .grow-visual__cell,
  .grow-visual--in-view .grow-visual__cell {
    opacity: 1 !important;
    transform: none !important;
  }
}
