:root {
  --red: #cc2e2e;
  --green: #1d8b5a;
  --blue: #1e90ff;
  --white: #ffffff;
  --ink: #1f2328;
  --muted: #5d6673;
  --line: #d9e0e8;
  --bg: #f6f8fb;
  --soft: #edf4f1;
  --shadow: 0 12px 36px rgba(20, 31, 45, 0.08);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(205, 46, 46, 0.04), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 224, 232, 0.8);
}

.brand img {
  width: 118px;
  height: auto;
}

.brand {
  grid-row: 1;
}

.topbar > .button-primary {
  grid-column: 1 / -1;
  grid-row: 3;
  justify-self: end;
  display: none;
  width: 100%;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.nav-toggle-button {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(20, 31, 45, 0.06);
}

.nav-toggle:focus-visible + .nav-toggle-button {
  outline: 3px solid rgba(30, 144, 255, 0.35);
  outline-offset: 3px;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.topnav {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(20, 31, 45, 0.08);
  color: var(--muted);
}

.nav-toggle:checked ~ .topnav {
  display: grid;
}

.nav-toggle:checked ~ .button-primary {
  display: inline-flex;
}

.topnav a {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
}

.topnav a:hover {
  color: var(--ink);
  background: var(--soft);
}

main {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.25rem 1.25rem;
  background: linear-gradient(180deg, rgba(205, 46, 46, 0.04), transparent 18%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./stiral-powder-9kg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  filter: blur(18px);
  opacity: 0.15;
  z-index: -1;
}

.hero-copy {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 span {
  display: block;
  color: var(--red);
  font-weight: 700;
  font-size: 1.3em;
}

.hero-actions {
  justify-content: center;
}

.hero-copy,
.hero-visual,
.section,
.footer {
  animation: fadeUp 0.5s ease both;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
}

/* Цветовые варианты для текста */
.eyebrow-red { color: var(--red); }
.eyebrow-blue { color: var(--blue); }
.eyebrow-muted { color: var(--muted); }

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

h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

/* Цветовые варианты для h1 */
h1.text-red { color: var(--red); }
h1.text-green { color: var(--green); }
h1.text-blue { color: var(--blue); }
h1.text-ink { color: var(--ink); } /* default */

h2 {
  font-size: clamp(1.4rem, 4vw, 2.25rem);
  line-height: 1.1;
}

h3 {
  font-size: 1.05rem;
}

.lead,
.brand-panel p,
.product-lead,
.ingredients,
.use-card li,
.faq-list p,
.footer p,
.buy-item span {
  color: var(--muted);
  line-height: 1.55;
}

.lead {
  max-width: 60ch;
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.articles-lead {
  max-width: none;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.hero-meta > div,
.rating,
.buy-item,
.benefit-card,
.use-card,
.brand-panel,
.product-card,
.faq-list details {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 14px;
}

.hero-meta > div {
  min-width: 156px;
  padding: 0.85rem 1rem;
}

.meta-label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.hero-meta strong {
  font-size: 1.4rem;
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--red), #a91919);
  box-shadow: 0 10px 24px rgba(204, 46, 46, 0.2);
}

.button-secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.hero-visual {
  min-width: 0;
}

.hero-card {
  overflow: hidden;
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #f2f7f3);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(29, 139, 90, 0.08), rgba(30, 144, 255, 0.08));
}

.hero-card-copy {
  padding-top: 0.9rem;
}

.card-kicker {
  margin-bottom: 0.35rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section {
  padding: 2.25rem 0 0;
}

.split-panels {
  display: grid;
  gap: clamp(0.75rem, 1.8vw, 1rem);
  width: 100%;
  margin-inline: auto;
}

.promo-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.section-heading {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.brand-panel {
  padding: clamp(1.25rem, 2.8vw, 2rem);
  display: grid;
  gap: 1rem;
  border-radius: 24px;
}

.promo-panel .brand-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 330px;
}

.promo-panel .card-actions {
  margin-top: auto;
}

.promo-panel#brand .card-actions {
  margin-top: 0;
}

.promo-panel .button {
  min-width: 230px;
}

.feature-card {
  position: relative;
  flex: 1;
  display: grid;
  align-content: start;
  gap: 0.58rem;
  overflow: hidden;
  min-height: 150px;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--green) 22%, var(--line));
  color: var(--ink);
  box-shadow: var(--shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.feature-card:hover,
.feature-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(20, 31, 45, 0.14);
  outline: none;
}

.brand-feature-card {
  background: #d8eef8;
  border-color: color-mix(in srgb, var(--blue) 20%, var(--line));
}

.brand-feature-card:hover,
.brand-feature-card:focus-visible {
  background: #e0f3fb;
}

.latest-article-card {
  background: #c4e7a0;
  border-color: color-mix(in srgb, var(--green) 22%, var(--line));
}

.latest-article-card:hover,
.latest-article-card:focus-visible {
  background: #cbeaa9;
}

.oxygen-feature-card {
  background: #d7f1f8;
  border-color: color-mix(in srgb, var(--blue) 22%, var(--line));
}

.oxygen-feature-card:hover,
.oxygen-feature-card:focus-visible {
  background: #e1f6fb;
}

.feature-card-badge {
  width: fit-content;
  max-width: calc(100% - 3rem);
  padding: 0.32rem 0.72rem;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font-size: 0.78rem;
  line-height: 1;
}

.feature-card-arrow {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  width: 34px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
}

.feature-card-arrow::before,
.feature-card-arrow::after {
  content: "";
  position: absolute;
  background: var(--ink);
}

.feature-card-arrow::before {
  top: 50%;
  left: 9px;
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
}

.feature-card-arrow::after {
  top: 11px;
  right: 9px;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
  background: transparent;
  transform: rotate(45deg);
}

.feature-card-meta {
  margin-top: 0.42rem;
  font-size: 0.66rem;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
}

.feature-card strong {
  display: block;
  max-width: calc(100% - 3.25rem);
  font-size: clamp(1.25rem, 1.75vw, 1.55rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.feature-card-desc {
  max-width: calc(100% - 3.25rem);
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.38;
}

.mascot-bridge {
  position: fixed;
  right: clamp(0.75rem, 3vw, 2rem);
  top: 50%;
  z-index: 20;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
}

.mascot-bridge__img {
  width: clamp(76px, 9vw, 112px);
  height: auto;
  pointer-events: auto;
  user-select: none;
  filter: drop-shadow(0 10px 24px rgba(20, 31, 45, 0.12));
  transform: translate3d(var(--mascot-x, 0px), var(--mascot-y, 0px), 0)
    rotate(var(--mascot-rot, 0deg))
    scale(var(--mascot-scale, 1));
  will-change: transform;
}

.mascot-bridge:hover .mascot-bridge__img,
.mascot-bridge:focus-visible .mascot-bridge__img {
  --mascot-scale: 1.08;
}

.mascot-bridge:focus-visible {
  outline: 3px solid rgba(30, 144, 255, 0.35);
  outline-offset: 5px;
  border-radius: 999px;
}

.dirt-game[hidden] {
  display: none;
}

.dirt-game {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: stretch;
  padding: 0;
  background: rgba(15, 16, 19, 0.5);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.dirt-game__topbar,
.dirt-game__stats,
.dirt-game__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.dirt-game__topbar {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  right: 0.9rem;
  z-index: 5;
  padding: 0.2rem 0.1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  color: #eef3f5;
}

.dirt-game__topbar h2 {
  font-size: clamp(1.35rem, 5vw, 2rem);
  color: #f3f6f8;
}

.dirt-game__close,
.dirt-game__controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.dirt-game__close {
  font-size: 1.5rem;
}

.dirt-game__stats {
  position: absolute;
  top: 5.75rem;
  left: 0.9rem;
  z-index: 5;
  min-width: min(360px, calc(100vw - 1.8rem));
  padding: 0.2rem 0.1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  color: rgba(238, 243, 245, 0.76);
  font-weight: 800;
}

.dirt-game__stats strong {
  color: var(--red);
}

.dirt-game__hint {
  position: absolute;
  left: 1rem;
  top: 7.3rem;
  z-index: 6;
  width: clamp(150px, 20vw, 210px);
  height: clamp(150px, 20vw, 210px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: rgba(12, 16, 28, 0.84);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
  color: #fff;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.dirt-game__hint.is-hidden {
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
}

.dirt-game__hint-keys {
  display: grid;
  gap: 0.35rem;
  place-items: center;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1;
  opacity: 0.96;
}

.dirt-game__hint-keys > div {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0.35rem;
}

.dirt-game__hint-pointer {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  font-size: clamp(3rem, 8vw, 4.8rem);
  line-height: 1;
  transform: rotate(-18deg);
  opacity: 0.98;
}

.dirt-game__field {
  position: relative;
  position: absolute;
  inset: 0;
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.05), transparent 22%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.03), transparent 16%),
    linear-gradient(180deg, rgba(17, 18, 22, 0.38) 0%, rgba(9, 10, 13, 0.5) 100%);
  touch-action: none;
}

.dirt-game__field::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.dirt-game__runner {
  position: absolute;
  left: 50vw;
  top: 50vh;
  width: clamp(72px, 12vw, 120px);
  transform: translateX(-50%) scaleX(var(--runner-facing, 1));
  filter: drop-shadow(0 10px 18px rgba(20, 31, 45, 0.18));
  user-select: none;
  pointer-events: auto;
  z-index: 3;
  touch-action: none;
  cursor: grab;
}

.dirt-game__runner:active {
  cursor: grabbing;
}

.dirt-spot {
  position: absolute;
  width: var(--spot-size, 34px);
  height: var(--spot-size, 34px);
  border-radius: var(--spot-radius, 46% 54% 48% 52%);
  background:
    radial-gradient(circle at 32% 28%, var(--spot-sheen, rgba(255, 255, 255, 0.18)) 0 18%, transparent 20%),
    radial-gradient(circle at 38% 34%, var(--spot-accent, rgba(160, 105, 64, 0.92)) 0 28%, var(--spot-core, rgba(88, 49, 28, 0.94)) 55%, var(--spot-edge, rgba(34, 22, 14, 0.92)) 100%);
  box-shadow:
    10px 7px 0 -9px rgba(0, 0, 0, 0.18),
    -8px 9px 0 -9px rgba(0, 0, 0, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.16);
  pointer-events: none;
  transform: rotate(var(--spot-rot, 0deg)) scaleX(var(--spot-scale-x, 1)) scaleY(var(--spot-scale-y, 1));
  filter: saturate(0.98) contrast(1.03);
}

.dirt-spot::before,
.dirt-spot::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  background: var(--spot-accent, rgba(88, 49, 28, 0.78));
  opacity: 0.78;
}

.dirt-spot::before {
  width: 42%;
  height: 38%;
  right: -13%;
  top: 18%;
  transform: rotate(16deg);
}

.dirt-spot::after {
  width: 30%;
  height: 30%;
  left: 12%;
  bottom: -10%;
  transform: rotate(-18deg);
}

.dirt-spot--coffee::before,
.dirt-spot--coffee::after,
.dirt-spot--earth::before,
.dirt-spot--earth::after,
.dirt-spot--mud::before,
.dirt-spot--mud::after {
  opacity: 0.9;
}

.dirt-spot--blood {
  box-shadow:
    10px 7px 0 -9px rgba(90, 10, 10, 0.45),
    -8px 9px 0 -9px rgba(184, 32, 32, 0.36),
    0 10px 18px rgba(0, 0, 0, 0.18);
}

.dirt-spot--wine {
  mix-blend-mode: screen;
}

.dirt-spot--berries::before {
  width: 24%;
  height: 24%;
  right: 8%;
  top: 6%;
  box-shadow:
    -15px 10px 0 0 var(--spot-accent, rgba(141, 79, 178, 0.82)),
    -27px 26px 0 -2px var(--spot-core, rgba(94, 31, 112, 0.9)),
    14px 18px 0 -4px rgba(188, 125, 230, 0.9);
}

.dirt-spot--grass {
  box-shadow:
    8px 7px 0 -9px rgba(32, 88, 28, 0.52),
    -12px 10px 0 -10px rgba(103, 157, 64, 0.44),
    0 10px 18px rgba(0, 0, 0, 0.14);
}

.dirt-spot--grass::before {
  width: 56%;
  height: 22%;
  left: -16%;
  top: 35%;
  transform: rotate(-14deg);
}

.dirt-spot--grass::after {
  width: 36%;
  height: 20%;
  right: -14%;
  bottom: 20%;
  transform: rotate(9deg);
}

.dirt-spot--coffee {
  border-radius: 58% 42% 62% 38% / 44% 56% 42% 58%;
  clip-path: polygon(8% 34%, 16% 14%, 33% 4%, 54% 0%, 73% 7%, 89% 18%, 98% 34%, 100% 52%, 95% 69%, 82% 82%, 61% 96%, 39% 100%, 18% 94%, 6% 78%, 0% 56%);
}

.dirt-spot--coffee::before {
  width: 48%;
  height: 26%;
  right: -18%;
  top: 10%;
  transform: rotate(22deg);
  clip-path: polygon(0 46%, 22% 12%, 52% 0%, 79% 20%, 100% 50%, 82% 79%, 53% 100%, 22% 84%, 6% 64%);
}

.dirt-spot--coffee::after {
  width: 28%;
  height: 22%;
  left: -6%;
  bottom: 2%;
  transform: rotate(-20deg);
  clip-path: polygon(12% 50%, 28% 14%, 55% 0%, 82% 17%, 100% 48%, 84% 82%, 54% 100%, 23% 84%, 4% 65%);
}

.dirt-spot--blood {
  border-radius: 54% 46% 57% 43% / 34% 36% 64% 66%;
  clip-path: polygon(10% 36%, 18% 16%, 32% 6%, 52% 0%, 70% 6%, 83% 20%, 92% 40%, 100% 56%, 96% 74%, 85% 88%, 66% 98%, 45% 100%, 25% 94%, 10% 82%, 2% 62%);
}

.dirt-spot--blood::before {
  width: 26%;
  height: 42%;
  right: 6%;
  top: -10%;
  transform: rotate(10deg);
  border-radius: 64% 36% 42% 58% / 24% 18% 82% 76%;
  clip-path: polygon(35% 0%, 63% 9%, 89% 31%, 100% 56%, 88% 82%, 62% 100%, 35% 94%, 15% 72%, 6% 43%, 13% 18%);
}

.dirt-spot--blood::after {
  width: 18%;
  height: 24%;
  left: 18%;
  bottom: -8%;
  transform: rotate(-12deg);
  border-radius: 56% 44% 59% 41% / 40% 42% 58% 60%;
}

.dirt-spot--wine {
  border-radius: 52% 48% 46% 54% / 60% 39% 61% 40%;
  clip-path: polygon(6% 28%, 19% 10%, 39% 2%, 58% 0%, 77% 8%, 92% 23%, 100% 44%, 95% 64%, 83% 81%, 63% 94%, 39% 100%, 21% 95%, 8% 82%, 0% 58%);
}

.dirt-spot--wine::before {
  width: 34%;
  height: 34%;
  right: -16%;
  top: 8%;
  transform: rotate(16deg);
  border-radius: 44% 56% 49% 51% / 34% 45% 55% 66%;
  clip-path: polygon(20% 50%, 34% 16%, 58% 0%, 82% 12%, 100% 40%, 94% 64%, 76% 90%, 53% 100%, 28% 82%, 12% 64%);
}

.dirt-spot--wine::after {
  width: 22%;
  height: 18%;
  left: 4%;
  bottom: 4%;
  transform: rotate(-24deg);
  border-radius: 70% 30% 60% 40% / 48% 56% 44% 52%;
}

.dirt-spot--berries {
  border-radius: 48% 52% 60% 40% / 54% 42% 58% 46%;
  clip-path: polygon(10% 18%, 26% 6%, 47% 0%, 67% 7%, 83% 21%, 95% 40%, 100% 61%, 93% 80%, 79% 93%, 59% 100%, 38% 96%, 19% 87%, 6% 70%, 0% 48%);
}

.dirt-spot--berries::before {
  width: 34%;
  height: 34%;
  right: 0%;
  top: 2%;
  border-radius: 50%;
  transform: none;
  clip-path: circle(50% at 50% 50%);
  box-shadow:
    -16px 12px 0 0 var(--spot-accent, rgba(141, 79, 178, 0.82)),
    -30px 28px 0 -2px var(--spot-core, rgba(94, 31, 112, 0.9)),
    12px 18px 0 -3px rgba(188, 125, 230, 0.9);
}

.dirt-spot--berries::after {
  width: 20%;
  height: 20%;
  left: 14%;
  bottom: 8%;
  border-radius: 50%;
  transform: none;
  box-shadow:
    18px -8px 0 0 var(--spot-core, rgba(94, 31, 112, 0.9)),
    34px 4px 0 -2px var(--spot-accent, rgba(141, 79, 178, 0.82));
}

.dirt-spot--earth {
  border-radius: 58% 42% 47% 53% / 46% 52% 48% 54%;
  clip-path: polygon(4% 30%, 15% 13%, 33% 4%, 52% 0%, 72% 6%, 89% 18%, 98% 35%, 100% 55%, 94% 73%, 81% 87%, 62% 97%, 41% 100%, 19% 94%, 7% 80%, 0% 59%);
}

.dirt-spot--earth::before {
  width: 44%;
  height: 28%;
  right: -14%;
  top: 14%;
  transform: rotate(18deg);
  clip-path: polygon(12% 56%, 24% 18%, 48% 0%, 76% 9%, 96% 38%, 86% 78%, 62% 100%, 32% 92%, 12% 74%);
}

.dirt-spot--earth::after {
  width: 30%;
  height: 24%;
  left: -8%;
  bottom: 0%;
  transform: rotate(-16deg);
  clip-path: polygon(8% 42%, 20% 16%, 42% 2%, 67% 10%, 90% 34%, 100% 58%, 84% 84%, 58% 100%, 31% 88%, 12% 68%);
}

.dirt-spot--mud {
  border-radius: 50% 50% 58% 42% / 50% 44% 56% 50%;
  clip-path: polygon(8% 24%, 22% 10%, 41% 3%, 61% 0%, 79% 9%, 92% 24%, 100% 44%, 98% 63%, 89% 79%, 74% 92%, 53% 100%, 32% 96%, 15% 87%, 4% 69%, 0% 48%);
}

.dirt-spot--mud::before {
  width: 38%;
  height: 28%;
  right: -14%;
  top: 16%;
  transform: rotate(14deg);
  clip-path: polygon(16% 48%, 30% 16%, 54% 0%, 79% 14%, 95% 40%, 86% 70%, 63% 94%, 38% 100%, 18% 82%, 8% 60%);
}

.dirt-spot--mud::after {
  width: 26%;
  height: 22%;
  left: -6%;
  bottom: 6%;
  transform: rotate(-18deg);
  clip-path: polygon(12% 44%, 28% 12%, 53% 0%, 79% 12%, 96% 38%, 92% 66%, 72% 92%, 46% 100%, 22% 84%, 6% 62%);
}

.dirt-spot--grass {
  border-radius: 62% 38% 54% 46% / 32% 64% 36% 68%;
  clip-path: polygon(0 48%, 10% 28%, 25% 14%, 39% 4%, 58% 0%, 76% 8%, 90% 22%, 98% 43%, 100% 57%, 96% 73%, 84% 88%, 67% 98%, 48% 100%, 29% 95%, 13% 85%, 4% 69%);
}

.dirt-spot--grass::before {
  width: 68%;
  height: 16%;
  left: -20%;
  top: 38%;
  transform: rotate(-16deg);
  border-radius: 999px;
}

.dirt-spot--grass::after {
  width: 44%;
  height: 14%;
  right: -18%;
  bottom: 20%;
  transform: rotate(10deg);
  border-radius: 999px;
}

.dirt-game__controls {
  position: absolute;
  left: 50%;
  bottom: 0.95rem;
  z-index: 5;
  justify-content: center;
  transform: translateX(-50%);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  gap: 0.85rem;
}

.dirt-game__start {
  min-width: 120px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #a91919) !important;
  border-color: transparent !important;
}

body.game-open {
  overflow: hidden;
}

@media (max-width: 759px) {
  .promo-panel .brand-panel {
    min-height: auto;
  }

  .feature-card {
    min-height: 150px;
    border-radius: 20px;
  }

  .feature-card-badge {
    max-width: calc(100% - 3rem);
  }

  .feature-card-arrow {
    width: 34px;
  }

  .feature-card-arrow::before {
    left: 9px;
    width: 16px;
  }

  .feature-card-arrow::after {
    top: 11px;
    right: 9px;
    width: 11px;
    height: 11px;
  }

  .feature-card strong {
    max-width: calc(100% - 3.25rem);
  }

  .mascot-bridge {
    right: 0.75rem;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .dirt-game {
    padding: 0;
  }

  .dirt-game__field {
    min-height: 100vh;
  }

  .dirt-game__topbar,
  .dirt-game__stats,
  .dirt-game__controls {
    padding: 0.75rem 0.85rem;
  }

  .dirt-game__topbar {
    top: 0.65rem;
    left: 0.65rem;
    right: 0.65rem;
  }

  .dirt-game__stats {
    top: 5.35rem;
    left: 0.65rem;
    min-width: calc(100vw - 1.3rem);
  }

  .dirt-game__hint {
    left: 0.65rem;
    top: 7rem;
    width: 138px;
    height: 138px;
    border-radius: 26px;
  }

  .dirt-game__controls {
    bottom: 0.65rem;
    transform: translateX(-50%);
  }
}

.product-grid,
.benefit-grid,
.use-grid,
.seo-landing-grid {
  display: grid;
  gap: 1rem;
}

.product-card {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
}

.product-body {
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}

.product-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.rating {
  padding: 0.35rem 0.55rem;
  color: var(--red);
  font-weight: 800;
  white-space: nowrap;
}

.product-lead {
  font-size: 0.98rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.chips li {
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: var(--soft);
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0;
}

.product-price__label {
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 600;
}

.product-price strong {
  font-size: 1.3rem;
  color: var(--text);
}

.ingredients {
  font-size: 0.92rem;
}

.seo-landing-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.seo-landing-card h3 {
  max-width: 18rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.18;
}

.seo-landing-card p,
.seo-landing-card li {
  color: var(--muted);
  line-height: 1.55;
}

.seo-landing-card ul {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding-left: 1.15rem;
}

.seo-landing-card a {
  width: fit-content;
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.seo-landing-card a:hover {
  color: var(--ink);
}

.gallery-marquee {
  position: relative;
  width: 100%;
  margin-left: 0;
  overflow: hidden;
  padding: 0.25rem 0 0.5rem;
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: galleryScroll 44s linear infinite;
  will-change: transform;
}

.gallery-set {
  display: flex;
  gap: 1rem;
  padding-inline: 0.5rem;
}

.gallery-card {
  flex: 0 0 clamp(180px, 22vw, 260px);
  width: clamp(180px, 22vw, 260px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--white);
}

.benefit-card,
.use-card,
.faq-list details {
  padding: 1rem;
}

.benefit-card {
  box-shadow: var(--shadow);
}

.benefit-card p,
.use-card ul,
.faq-list p {
  margin-top: 0.5rem;
}

.use-card ul {
  padding-left: 1.1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin-top: 0.8rem;
}

.buy-strip {
  display: grid;
  gap: 0.75rem;
}

.buy-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.buy-item strong {
  color: var(--ink);
}

.articles-grid {
  display: grid;
  gap: 1rem;
}

.article-card {
  --article-accent: var(--green);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  animation: articleReveal 0.6s ease both;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.article-card:nth-child(2) {
  --article-accent: var(--red);
  animation-delay: 0.08s;
}

.article-card:nth-child(3) {
  --article-accent: var(--blue);
  animation-delay: 0.16s;
}

.article-card:nth-child(4) {
  animation-delay: 0.24s;
}

.article-card::after {
  content: "";
  position: absolute;
  inset: auto 1rem 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--article-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.article-card:hover,
.article-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--article-accent);
  border-color: color-mix(in srgb, var(--article-accent) 42%, var(--line));
  box-shadow: 0 18px 44px rgba(20, 31, 45, 0.14);
}

.article-card:hover::after,
.article-card:focus-within::after {
  transform: scaleX(1);
}

.article-link {
  display: grid;
  height: 100%;
  outline: none;
}

.article-image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.5rem;
  background: var(--white);
  transform: scale(1);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.article-card:hover .article-image img,
.article-card:focus-within .article-image img {
  filter: saturate(1.06);
  transform: scale(1.04);
}

.article-card:hover .article-content h2,
.article-card:hover .article-content h3,
.article-card:focus-within .article-content h2,
.article-card:focus-within .article-content h3 {
  color: var(--article-accent);
}

.article-content {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  align-content: start;
}

.article-content h2,
.article-content h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  min-height: calc(1.25em * 3);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.article-category,
.article-meta,
.article-content p {
  color: var(--muted);
  line-height: 1.5;
}

.article-category {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-content > p:not(.article-category) {
  min-height: calc(1.5em * 4);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  margin-top: auto;
}

.article-hero {
  max-width: 820px;
  margin-inline: auto;
  padding-top: 2.5rem;
}

.article-hero h1 {
  max-width: 100%;
  margin-bottom: 1rem;
}

.article-hero .lead {
  max-width: 100%;
}

.article-cover {
  overflow: hidden;
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 0.5rem;
}

.article-cover img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  aspect-ratio: auto;
}

.article-body {
  max-width: 820px;
  margin-inline: auto;
  padding-top: 2rem;
}

.article-body h2 {
  margin: 1.8rem 0 0.7rem;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.article-body p,
.article-body li {
  color: var(--muted);
  line-height: 1.7;
}

.article-body p + p {
  margin-top: 0.8rem;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.3rem;
  margin: 0.7rem 0 0;
}

.related-articles {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.related-articles-heading {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.related-articles-heading span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-articles-heading h2 {
  margin: 0;
}

.related-articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.related-article-card {
  display: grid;
  gap: 0.45rem;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(28, 40, 44, 0.06);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.related-article-card:hover,
.related-article-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--green);
  box-shadow: 0 14px 34px rgba(28, 40, 44, 0.12);
}

.related-article-card strong {
  font-size: 1rem;
  line-height: 1.3;
}

.related-article-card span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.related-article-topic {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
}

.article-cta {
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-cta p {
  margin: 0.5rem 0 1rem;
}

.footer {
  width: min(1160px, calc(100% - 2rem));
  margin: 3rem auto 0;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  color: var(--muted);
}

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

@media (min-width: 760px) {
  .nav-toggle-button {
    display: none;
  }

  .topbar > .button-primary {
    grid-column: 3;
    grid-row: 1;
    display: inline-flex;
    width: auto;
  }

  .topnav {
    display: flex;
    grid-column: auto;
    justify-content: center;
    gap: 1.25rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .topnav a {
    padding: 0;
    border-radius: 0;
  }

  .topnav a:hover {
    background: transparent;
  }

  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2.75rem;
  }

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

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

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

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

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

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

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

  .split-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    grid-auto-rows: 1fr;
  }

  .promo-panel {
    min-height: 0;
  }

  .footer {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }
}

@media (min-width: 1060px) {
  .split-panels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

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

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

@keyframes galleryScroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 0.5rem), 0, 0);
  }
}

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

  .hero-copy,
  .hero-visual,
  .section,
  .footer,
  .article-card,
  .gallery-track {
    animation: none;
  }

  .button,
  .article-card,
  .article-card::after,
  .article-image img {
    transition: none;
  }

  .button:hover,
  .article-card:hover,
  .article-card:focus-within,
  .article-card:hover .article-image img,
  .article-card:focus-within .article-image img {
    transform: none;
  }
}
