@font-face {
  font-family: "Fredoka";
  src: url("fonts/fredoka-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --blue: #2b34f1;
  --blue-dark: #171cae;
  --yellow: #fef200;
  --ink: #0b1020;
  --canvas: #f2f1e9;
  --surface: #ffffff;
  --muted: #dcded6;
  --marine: #9acb3c;
  --freshwater: #01aef0;
  --plant: #ed008c;
  --reef: #6b7abb;
  --coral: #b861a6;
  --border: 3px solid var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow: 7px 7px 0 var(--ink);
  --max: 1480px;
  --font-display: "Fredoka", "Arial Rounded MT Bold", Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

h1,
h2,
h3,
.eyebrow,
.button,
.nav-links,
.product-category,
.category-name,
.category-foot,
.results-bar,
.footer-links > p {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h3 {
  font-family: var(--font-body);
  font-weight: 900;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5.4vw, 5.4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

h3 {
  line-height: 1.05;
}

section[id] {
  scroll-margin-top: 116px;
}

.section-shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--blue);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.8rem 1.15rem;
  border: var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background 180ms ease-out;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.button:active {
  transform: translate(3px, 3px);
  box-shadow: none;
}

.button-yellow {
  background: var(--yellow);
  color: var(--ink);
}

.button-blue {
  background: var(--blue);
  color: var(--surface);
}

.button-small {
  min-height: 42px;
  padding: 0.65rem 0.85rem;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.7rem;
}

.button-small,
.guide-card button,
.product-link,
.text-link {
  min-height: 44px;
}

.button-large {
  min-height: 64px;
  padding-inline: 1.5rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 2px solid currentColor;
  color: var(--surface);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.text-link-dark {
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 0.75rem 1rem;
  border: var(--border);
  background: var(--yellow);
  box-shadow: var(--shadow-sm);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-160%);
}

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

.scroll-top {
  position: fixed;
  z-index: 90;
  right: calc(16px + env(safe-area-inset-right, 0px));
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  display: inline-flex;
  min-width: 74px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.5rem 0.55rem 0.5rem 0.8rem;
  border: var(--border);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) rotate(5deg) scale(0.86);
  transition: opacity 160ms ease-out, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 160ms ease-out;
}

.scroll-top b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 9999px;
  background: var(--plant);
  color: var(--surface);
  font-size: 1.1rem;
  line-height: 1;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) rotate(-3deg) scale(1);
}

.scroll-top:hover {
  box-shadow: 7px 7px 0 var(--ink);
  transform: translate3d(-2px, -2px, 0) rotate(0) scale(1.03);
}

.scroll-top:active {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate3d(2px, 2px, 0) rotate(0) scale(0.98);
}

.scroll-top:focus-visible {
  outline-color: var(--surface);
}

.no-js .scroll-top {
  display: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: var(--canvas);
}

.announcement {
  display: flex;
  min-height: 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  row-gap: 0.2rem;
  padding: 0.3rem 1rem;
  border-bottom: 2px solid var(--ink);
  background: var(--blue);
  color: var(--surface);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.announcement-dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 9999px;
  background: var(--yellow);
}

.announcement-shop {
  border-bottom: 1px solid currentColor;
  color: var(--yellow);
  line-height: 1.25;
}

.nav-shell {
  display: flex;
  width: min(calc(100% - 40px), var(--max));
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-inline: auto;
}

.brand-lockup {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.8rem;
}

.brand-lockup > img {
  width: 134px;
  height: 42px;
  object-fit: contain;
  padding: 8px 10px;
  border: 2px solid var(--ink);
  background: var(--blue);
}

.brand-divider {
  width: 3px;
  height: 34px;
  background: var(--ink);
}

.retailer-mark {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.87rem;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.retailer-mark small {
  margin-top: 0.28rem;
  font-family: var(--font-body);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.4vw, 1.4rem);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links > a:not(.button) {
  position: relative;
  padding-block: 0.4rem;
}

.nav-links > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease-out;
}

.nav-links > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 44px;
  border: var(--border);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-top: var(--border);
  border-bottom: var(--border);
  background: var(--blue);
  color: var(--surface);
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.22;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border: 4px solid var(--ink);
  opacity: 0.95;
}

.hero-circle {
  top: -180px;
  right: 23%;
  width: 420px;
  height: 420px;
  border-radius: 9999px;
  background: var(--yellow);
}

.hero-square {
  bottom: -190px;
  left: 42%;
  width: 360px;
  height: 360px;
  background: var(--plant);
  transform: rotate(32deg);
}

.hero-line {
  top: 9%;
  left: 48%;
  width: 90px;
  height: 620px;
  background: var(--freshwater);
  transform: rotate(-17deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 56px), var(--max));
  min-height: 760px;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  margin-inline: auto;
  padding-block: 6rem;
}

.hero-copy {
  min-width: 0;
  max-width: 820px;
}

.hero-copy .eyebrow {
  display: inline-flex;
  padding: 0.55rem 0.65rem;
  border: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 1.8rem;
  font-size: clamp(3.4rem, 6vw, 5.7rem);
  line-height: 0.84;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
}

.hero-intro {
  max-width: 710px;
  margin-bottom: 2rem;
  font-size: clamp(1.04rem, 1.5vw, 1.32rem);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-product-stage {
  position: relative;
  min-height: 570px;
  isolation: isolate;
}

.stage-orbit {
  position: absolute;
  z-index: -1;
  inset: 38px 48px 32px -12px;
  border: 3px dashed rgba(255, 255, 255, 0.72);
  border-radius: 46% 54% 50% 50%;
  transform: rotate(-8deg);
}

.stage-orbit::before,
.stage-orbit::after {
  position: absolute;
  content: "";
  border-radius: 9999px;
}

.stage-orbit::before {
  top: 12%;
  left: -18px;
  width: 32px;
  height: 32px;
  border: var(--border);
  background: var(--plant);
}

.stage-orbit::after {
  right: 8%;
  bottom: -22px;
  width: 54px;
  height: 54px;
  border: 3px dotted var(--ink);
  background: var(--yellow);
  animation: stage-orbit-spin 12s linear infinite;
}

.stage-label {
  position: absolute;
  z-index: 5;
  top: 22px;
  left: -24px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.8rem;
  border: var(--border);
  background: var(--plant);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.stage-label i {
  width: 8px;
  height: 8px;
  flex: none;
  border: 2px solid var(--ink);
  border-radius: 9999px;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(254, 242, 0, 0.85);
  animation: stage-live-pulse 1.8s ease-out infinite;
}

.stage-card {
  --stage-in-x: 10%;
  --stage-in-y: -2%;
  --stage-in-rotate: 3deg;
  --stage-out-x: -8%;
  --stage-out-y: 2%;
  --stage-out-rotate: -2.5deg;
  position: absolute;
  overflow: hidden;
  border: 4px solid var(--ink);
  background: var(--freshwater);
  box-shadow: 10px 10px 0 var(--ink);
  isolation: isolate;
  transition: background-color 320ms ease-out, box-shadow 180ms ease-out, transform 180ms ease-out;
}

.stage-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.stage-image {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
  opacity: 0;
  transform: translate3d(var(--stage-in-x), var(--stage-in-y), 0) rotate(var(--stage-in-rotate));
  transform-origin: center;
}

.stage-image-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0);
}

.stage-image-entering {
  z-index: 2;
  will-change: transform, opacity;
  animation: stage-shake-in 620ms cubic-bezier(0.22, 0.8, 0.25, 1) both;
}

.stage-image-exiting {
  z-index: 1;
  will-change: transform, opacity;
  animation: stage-shake-out 620ms cubic-bezier(0.4, 0, 0.6, 1) both;
}

.stage-card[data-accent="freshwater"] {
  background: var(--freshwater);
}

.stage-card[data-accent="plant"] {
  background: var(--plant);
}

.stage-card-main {
  inset: 60px 88px 48px 14px;
  transform: rotate(2deg);
}

.stage-card-main .stage-image {
  padding: 6% 7% 22%;
}

.stage-card-main:hover {
  transform: translate(-3px, -3px) rotate(1deg);
  box-shadow: 14px 14px 0 var(--ink);
}

.stage-meta {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 82px;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 0.08rem 0.8rem;
  padding: 0.75rem 0.9rem;
  background: var(--ink);
  color: var(--surface);
}

.stage-meta small,
.stage-meta strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stage-meta small {
  grid-column: 1;
  color: var(--yellow);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stage-meta strong {
  grid-column: 1;
  font-family: var(--font-display);
  font-size: 0.88rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.stage-meta b {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: var(--yellow);
  font-size: 1.3rem;
  transition: transform 180ms ease-out;
}

.stage-card-main:hover .stage-meta b {
  transform: translate(3px, -3px);
}

.stage-card-small {
  z-index: 3;
  right: 0;
  width: 176px;
  height: 176px;
}

.stage-card-small .stage-image {
  padding: 10%;
}

.stage-card-top {
  --stage-in-x: 2%;
  --stage-in-y: -10%;
  --stage-in-rotate: -3deg;
  --stage-out-x: 2%;
  --stage-out-y: 8%;
  --stage-out-rotate: 2.5deg;
  top: 0;
  background: var(--plant);
  transform: rotate(5deg);
}

.stage-card-bottom {
  --stage-in-x: -10%;
  --stage-in-y: 2%;
  --stage-in-rotate: -3deg;
  --stage-out-x: 8%;
  --stage-out-y: -2%;
  --stage-out-rotate: 2.5deg;
  bottom: 0;
  background: var(--freshwater);
  transform: rotate(-5deg);
}

.stage-badge {
  position: absolute;
  z-index: 6;
  right: 118px;
  bottom: 3px;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: var(--border);
  border-radius: 9999px;
  background: var(--marine);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  padding: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  font-size: 0.72rem;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.stage-motion-controls {
  position: absolute;
  z-index: 8;
  bottom: 0;
  left: 28px;
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 0.65rem;
}

.no-js .stage-motion-controls {
  display: none;
}

.stage-progress {
  width: 76px;
  height: 9px;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--surface);
  box-shadow: 2px 2px 0 var(--ink);
}

.stage-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-product-stage.is-cycling .stage-progress i {
  animation: stage-progress 3s linear both;
}

.stage-motion-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.7rem;
  border: 2px solid var(--ink);
  background: var(--surface);
  box-shadow: 2px 2px 0 var(--ink);
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.stage-motion-toggle:hover {
  background: var(--yellow);
}

.stage-pause-icon {
  display: inline-flex;
  width: 13px;
  height: 14px;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.stage-pause-icon i {
  display: block;
  width: 3px;
  height: 12px;
  background: currentColor;
}

.hero-product-stage.is-user-paused .stage-pause-icon {
  width: 0;
  height: 0;
  margin-inline: 2px 1px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.hero-product-stage.is-user-paused .stage-pause-icon i {
  display: none;
}

@keyframes stage-shake-in {
  0%,
  38% {
    opacity: 0;
    transform: translate3d(var(--stage-in-x), var(--stage-in-y), 0) rotate(var(--stage-in-rotate));
  }

  44% {
    opacity: 1;
    transform: translate3d(-1.4%, 0.3%, 0) rotate(-0.8deg);
  }

  52% {
    transform: translate3d(1.1%, -0.2%, 0) rotate(0.6deg);
  }

  62% {
    transform: translate3d(-0.8%, 0.15%, 0) rotate(-0.4deg);
  }

  73% {
    transform: translate3d(0.55%, -0.1%, 0) rotate(0.25deg);
  }

  84% {
    transform: translate3d(-0.3%, 0, 0) rotate(-0.12deg);
  }

  92% {
    transform: translate3d(0.12%, 0, 0) rotate(0.05deg);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0);
  }
}

@keyframes stage-shake-out {
  0%,
  10% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0);
  }

  16% {
    opacity: 1;
    transform: translate3d(-1.4%, 0, 0) rotate(-0.7deg);
  }

  22% {
    opacity: 1;
    transform: translate3d(1.2%, 0.2%, 0) rotate(0.65deg);
  }

  28% {
    opacity: 1;
    transform: translate3d(-0.8%, -0.1%, 0) rotate(-0.4deg);
  }

  34% {
    opacity: 1;
    transform: translate3d(0.4%, 0, 0) rotate(0.2deg);
  }

  42%,
  100% {
    opacity: 0;
    transform: translate3d(var(--stage-out-x), var(--stage-out-y), 0) rotate(var(--stage-out-rotate));
  }
}

@keyframes stage-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes stage-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(254, 242, 0, 0.8);
  }

  70%,
  100% {
    box-shadow: 0 0 0 7px rgba(254, 242, 0, 0);
  }
}

@keyframes stage-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.marquee {
  overflow: hidden;
  border-bottom: var(--border);
  background: var(--ink);
  color: var(--yellow);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
  animation: marquee 31s linear infinite;
}

.marquee-group {
  --marquee-gap: 1.5rem;
  display: flex;
  min-width: 100vw;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: var(--marquee-gap);
  padding: 0.9rem calc(var(--marquee-gap) / 2);
  white-space: nowrap;
}

.marquee-group span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee-group i {
  width: 11px;
  height: 11px;
  flex: none;
  border-radius: 9999px;
  background: var(--plant);
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.ecosystem-strip {
  padding-block: clamp(3rem, 5vw, 5rem);
  border-bottom: var(--border);
  background: var(--yellow);
}

.ecosystem-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(500px, 1.35fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
}

.ecosystem-inner h2 {
  max-width: 540px;
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
}

.ecosystem-copy {
  max-width: 620px;
  margin: 1.5rem 0 0;
  font-weight: 650;
}

.ecosystem-image-frame {
  width: min(100%, 898px);
  justify-self: end;
  padding: 0.75rem;
  border: 4px solid var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.ecosystem-image-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 898 / 166;
  object-fit: contain;
}

.categories-section {
  padding-block: clamp(5rem, 9vw, 9rem);
  border-bottom: var(--border);
  background: var(--canvas);
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 9rem);
}

.split-heading p:last-child {
  max-width: 520px;
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
  font-weight: 600;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.category-card {
  --card-accent: var(--yellow);
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  align-items: stretch;
  padding: 1.25rem;
  border: var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

.category-card::after {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 28px;
  height: 28px;
  border-bottom: var(--border);
  border-left: var(--border);
  background: var(--card-accent);
  content: "";
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 12px 0 var(--ink);
}

.accent-yellow { --card-accent: var(--yellow); }
.accent-freshwater { --card-accent: var(--freshwater); }
.accent-marine { --card-accent: var(--marine); }
.accent-plant { --card-accent: var(--plant); }
.accent-reef { --card-accent: var(--reef); }
.accent-coral { --card-accent: var(--coral); }

.category-index {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.category-glyph {
  position: relative;
  display: block;
  width: 98px;
  height: 98px;
  margin: 1.2rem 0 1.7rem;
}

.category-glyph i,
.category-glyph b {
  position: absolute;
  display: block;
  border: 3px solid var(--ink);
}

.category-glyph i {
  top: 0;
  left: 0;
  width: 72px;
  height: 72px;
  border-radius: 9999px;
  background: var(--card-accent);
}

.category-glyph b {
  right: 0;
  bottom: 0;
  width: 58px;
  height: 58px;
  background: var(--blue);
  transform: rotate(17deg);
}

.category-name {
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.23rem;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-transform: uppercase;
}

.category-description {
  margin-bottom: 1.3rem;
  font-size: 0.88rem;
  font-weight: 550;
}

.category-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 2px solid var(--ink);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-foot b {
  font-size: 1.25rem;
}

.range-section {
  padding-block: clamp(5rem, 8vw, 8rem);
  border-bottom: var(--border);
  background: var(--surface);
}

.range-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 9rem);
  margin-bottom: 3rem;
}

.range-heading > p {
  max-width: 520px;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
}

.results-bar {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-bottom: 1.3rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.results-bar strong {
  color: var(--blue);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 900;
}

.results-bar em {
  margin-left: 0.25rem;
  font-style: normal;
  color: #5f615d;
}

.product-grid {
  display: block;
}

.product-category-group {
  margin-top: clamp(3.5rem, 7vw, 7rem);
}

.product-category-group:first-child {
  margin-top: 0;
}

.product-category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--ink);
}

.product-category-heading .eyebrow {
  margin-bottom: 0.55rem;
}

.product-category-heading h3 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 190ms ease-out, box-shadow 190ms ease-out;
}

.product-card::after {
  position: absolute;
  z-index: 2;
  top: -3px;
  right: -3px;
  width: 17px;
  height: 17px;
  border-bottom: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  background: var(--freshwater);
  content: "";
}

.product-card:nth-child(3n + 2)::after {
  background: var(--plant);
}

.product-card:nth-child(3n)::after {
  background: var(--marine);
}

.product-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  box-shadow: 8px 11px 0 var(--ink);
}

.product-image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: var(--border);
  background: #f7f7f3;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6%;
  filter: grayscale(0.78) saturate(0.72);
  transition: filter 220ms ease-out, transform 220ms ease-out;
}

.product-card:hover .product-image-wrap img {
  filter: grayscale(0) saturate(1);
  transform: scale(1.035);
}

.product-body {
  display: flex;
  min-width: 0;
  min-height: 300px;
  flex: 1;
  flex-direction: column;
  padding: 1.1rem;
}

.product-category {
  margin-bottom: 0.65rem;
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-body h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.02rem, 1.45vw, 1.3rem);
}

.product-body > p:not(.product-category) {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 1.2rem;
  color: #4f514f;
  font-size: 0.86rem;
  font-weight: 520;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.product-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 2px solid var(--ink);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-link span {
  font-size: 1.1rem;
  transition: transform 180ms ease-out;
}

.product-link:hover span {
  transform: translate(3px, -3px);
}

.guide-section {
  padding-block: clamp(5rem, 9vw, 9rem);
  border-bottom: var(--border);
  background: var(--blue);
  color: var(--surface);
}

.guide-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: start;
  gap: 4rem;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.guide-heading h2 {
  max-width: 1050px;
  color: var(--yellow);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 3px solid var(--surface);
  border-left: 3px solid var(--surface);
}

.guide-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 1.5rem;
  border-right: 3px solid var(--surface);
  border-bottom: 3px solid var(--surface);
}

.guide-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 9999px;
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.guide-card h3 {
  margin: 2rem 0 1rem;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.guide-card p {
  font-size: 0.93rem;
}

.guide-card button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: auto;
  padding: 0.85rem 0;
  border: 0;
  border-top: 2px solid var(--surface);
  background: transparent;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 9vw, 9rem);
  border-bottom: var(--border);
  background: var(--plant);
  color: var(--ink);
}

.about-geometry {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-geometry i,
.about-geometry b,
.about-geometry span {
  position: absolute;
  display: block;
  border: 4px solid var(--ink);
  opacity: 0.18;
}

.about-geometry i {
  top: -130px;
  right: 4%;
  width: 430px;
  height: 430px;
  border-radius: 9999px;
  background: var(--yellow);
}

.about-geometry b {
  right: 34%;
  bottom: -210px;
  width: 360px;
  height: 360px;
  background: var(--freshwater);
  transform: rotate(28deg);
}

.about-geometry span {
  top: 0;
  left: 7%;
  width: 80px;
  height: 100%;
  background: var(--blue);
  transform: rotate(-14deg);
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(430px, 0.9fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
}

.about-copy h2 {
  max-width: 790px;
  margin-bottom: 2rem;
}

.about-copy > p {
  max-width: 750px;
  font-weight: 620;
}

.about-copy .about-lead {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.35;
}

.about-copy .button {
  margin-top: 1.2rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-grid article {
  min-height: 220px;
  padding: 1.15rem;
  border: var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.benefit-grid article:nth-child(2),
.benefit-grid article:nth-child(3) {
  background: var(--yellow);
}

.benefit-grid span {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.benefit-grid h3 {
  margin: 2.5rem 0 0.75rem;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.benefit-grid p {
  margin-bottom: 0;
  font-size: 0.86rem;
  font-weight: 600;
}

.faq-section {
  padding-block: clamp(5rem, 9vw, 9rem);
  border-bottom: var(--border);
  background: var(--canvas);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(3rem, 9vw, 10rem);
}

.faq-heading {
  position: sticky;
  top: 142px;
}

.faq-heading h2 {
  margin-bottom: 1.5rem;
}

.faq-heading > p {
  max-width: 480px;
  font-weight: 580;
}

.faq-list {
  border-top: var(--border);
}

.faq-list details {
  border-right: var(--border);
  border-bottom: var(--border);
  border-left: var(--border);
  background: var(--surface);
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.15rem 1.3rem;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary i {
  position: relative;
  width: 28px;
  height: 28px;
  flex: none;
  border: 2px solid var(--ink);
  border-radius: 9999px;
  background: var(--yellow);
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 12px;
  left: 6px;
  width: 12px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.faq-list summary i::after {
  transform: rotate(90deg);
  transition: transform 180ms ease-out;
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details[open] summary {
  background: var(--yellow);
}

.faq-list details > p {
  max-width: 780px;
  margin: 0;
  padding: 0 1.3rem 1.4rem;
  font-size: 0.94rem;
  font-weight: 540;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 9vw, 9rem);
  border-bottom: var(--border);
  background: var(--freshwater);
}

.cta-shape {
  position: absolute;
  border: 4px solid var(--ink);
  opacity: 0.16;
}

.cta-shape-one {
  top: -160px;
  right: 4%;
  width: 440px;
  height: 440px;
  border-radius: 9999px;
  background: var(--yellow);
}

.cta-shape-two {
  bottom: -200px;
  left: 8%;
  width: 390px;
  height: 390px;
  background: var(--plant);
  transform: rotate(32deg);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta h2 {
  max-width: 1150px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  font-size: clamp(3rem, 7vw, 7.2rem);
}

.site-footer {
  padding-top: 4rem;
  background: var(--ink);
  color: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand img {
  width: 180px;
  height: auto;
  margin-bottom: 1.3rem;
}

.footer-brand p {
  margin: 0;
  color: #bfc2ca;
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-links > p {
  margin-bottom: 0.4rem;
  color: var(--yellow);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  color: #d8d9df;
  font-size: 0.86rem;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.3rem;
  border-top: 1px solid #454958;
  color: #9498a4;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-product-stage,
.split-heading > *,
.range-heading > *,
.guide-heading > *,
.about-grid > *,
.faq-grid > *,
.footer-grid > * {
  min-width: 0;
}

.product-body h3,
.faq-list summary span,
.footer-links a {
  overflow-wrap: break-word;
}

@media (hover: hover) and (pointer: fine) {
  .marquee:hover .marquee-track {
    animation-play-state: paused;
  }
}

.not-found {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 2rem;
  border: 8px solid var(--ink);
  background: var(--blue);
  color: var(--surface);
}

.not-found-circle,
.not-found-square {
  position: absolute;
  border: 4px solid var(--ink);
  opacity: 0.9;
}

.not-found-circle {
  top: -180px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 9999px;
  background: var(--yellow);
}

.not-found-square {
  bottom: -190px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: var(--plant);
  transform: rotate(25deg);
}

.not-found-card {
  position: relative;
  z-index: 2;
  width: min(100%, 820px);
  padding: clamp(2rem, 6vw, 5rem);
  border: 4px solid var(--ink);
  background: var(--blue-dark);
  box-shadow: 12px 12px 0 var(--ink);
}

.not-found-card > img {
  width: 190px;
  margin-bottom: 3rem;
}

.not-found-card h1 {
  max-width: 700px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.not-found-card > p:not(.eyebrow) {
  max-width: 610px;
  font-size: 1.05rem;
  font-weight: 620;
}

.not-found-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 1180px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    z-index: 2;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100svh - 116px);
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1rem;
    border: var(--border);
    background: var(--canvas);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .no-js .nav-links {
    display: flex;
    flex-direction: column;
  }

  .nav-links > a:not(.button) {
    display: block;
    min-height: 44px;
    padding: 0.75rem;
    border-bottom: 2px solid var(--ink);
  }

  .hero-content {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: 2rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 6vw, 5.7rem);
  }

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

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

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

  .benefit-grid {
    max-width: 820px;
  }
}

@media (max-width: 920px) {
  .hero,
  .hero-content {
    min-height: 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-block: 4.5rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 10vw, 5.7rem);
  }

  .hero h1 span {
    -webkit-text-stroke: 2px var(--ink);
    paint-order: stroke fill;
    text-shadow: 3px 3px 0 var(--ink);
  }

  .hero-product-stage {
    width: min(100%, 620px);
    min-height: 530px;
    margin-inline: auto;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 106px;
  }

  .section-shell,
  .nav-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .announcement {
    font-size: 0.55rem;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand-lockup > img {
    width: 116px;
    height: 38px;
  }

  .retailer-mark {
    font-size: 0.72rem;
  }

  .nav-links {
    right: 14px;
    left: 14px;
  }

  .ecosystem-inner,
  .split-heading,
  .range-heading,
  .guide-heading,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-inner {
    gap: 2rem;
  }

  .ecosystem-image-frame {
    justify-self: center;
  }

  .split-heading,
  .range-heading {
    gap: 1.5rem;
  }

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

  .product-image-wrap img {
    filter: grayscale(0) saturate(1);
  }

  .guide-heading {
    gap: 1.5rem;
  }

  .faq-heading {
    position: static;
  }

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

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

@media (max-width: 580px) {
  .section-shell {
    width: min(calc(100% - 22px), var(--max));
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 4rem);
  }

  .announcement {
    gap: 0.45rem;
    letter-spacing: 0.09em;
  }

  .announcement-origin,
  .announcement-origin-dot {
    display: none;
  }

  .brand-lockup {
    gap: 0.55rem;
  }

  .brand-lockup > img {
    width: 101px;
    height: 34px;
    padding: 6px 7px;
  }

  .brand-divider {
    height: 28px;
  }

  .retailer-mark {
    font-size: 0.63rem;
  }

  .retailer-mark small {
    font-size: 0.49rem;
  }

  .hero-content {
    width: min(calc(100% - 24px), var(--max));
    padding-block: 3.5rem 4.5rem;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10vw, 4rem);
    line-height: 1;
  }

  .hero-circle {
    display: none;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-product-stage {
    min-height: 430px;
  }

  .stage-card-main {
    inset: 45px 50px 52px 8px;
  }

  .stage-card-main .stage-image {
    padding: 6% 7% 25%;
  }

  .stage-meta {
    min-height: 68px;
    padding: 0.55rem 0.65rem;
  }

  .stage-meta small {
    font-size: 0.48rem;
  }

  .stage-meta strong {
    font-size: 0.68rem;
  }

  .stage-card-small {
    width: 112px;
    height: 112px;
  }

  .stage-badge {
    right: 75px;
    width: 74px;
    height: 74px;
    padding: 0.5rem;
    font-size: 0.53rem;
  }

  .stage-label {
    top: 5px;
    left: 0;
    font-size: 0.52rem;
  }

  .stage-orbit {
    inset: 34px 30px 45px -5px;
  }

  .stage-motion-controls {
    left: 8px;
    gap: 0.4rem;
  }

  .stage-progress {
    width: 48px;
  }

  .stage-motion-toggle {
    padding-inline: 0.5rem;
    font-size: 0.5rem;
  }

  .ecosystem-strip,
  .categories-section,
  .range-section,
  .guide-section,
  .about-section,
  .faq-section,
  .final-cta {
    padding-block: 4rem;
  }

  .ecosystem-image-frame {
    padding: 0.35rem;
    border-width: 3px;
  }

  .category-grid,
  .product-category-grid,
  .guide-grid,
  .benefit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 290px;
  }

  .category-glyph {
    width: 78px;
    height: 78px;
    margin-block: 1rem 1.3rem;
  }

  .category-glyph i {
    width: 60px;
    height: 60px;
  }

  .category-glyph b {
    width: 45px;
    height: 45px;
  }

  .product-body {
    min-height: 270px;
  }

  .guide-grid {
    border-left: 3px solid var(--surface);
  }

  .guide-card {
    min-height: 320px;
  }

  .benefit-grid article {
    min-height: 180px;
  }

  .benefit-grid h3 {
    margin-top: 1.8rem;
  }

  .faq-list summary {
    min-height: 74px;
    padding-inline: 1rem;
    font-size: 0.9rem;
  }

  .faq-list details > p {
    padding-inline: 1rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-links a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .not-found {
    padding: 1rem;
    border-width: 4px;
  }

  .not-found-card {
    padding: 2rem 1.3rem;
  }

  .not-found-card > img {
    margin-bottom: 2rem;
  }

  .not-found-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .stage-progress {
    display: none;
  }
}

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

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

  .marquee-track {
    transform: none !important;
  }

  .marquee-group:nth-child(2) {
    display: none;
  }

  .stage-label i,
  .stage-orbit::after,
  .stage-image-entering,
  .stage-image-exiting,
  .hero-product-stage.is-cycling .stage-progress i {
    animation: none !important;
  }

  .stage-image-active {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) rotate(0) !important;
  }

  .stage-image-entering {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) rotate(0) !important;
  }

  .stage-image-buffer,
  .stage-image-exiting {
    opacity: 0 !important;
  }

  .stage-progress {
    display: none;
  }
}
