:root {
  --green: #1c9a3c;
  --green-deep: #0f6b28;
  --green-soft: #d8f5e0;
  --volt: #d6ff2f;
  --ink: #07110c;
  --ink-2: #0d1a12;
  --ink-3: #15241a;
  --paper: #f4f7f3;
  --paper-2: #e8eee6;
  --muted: #6d7c71;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(7, 17, 12, 0.18);
  --radius: 18px;
  --max: 1240px;
  --header: 92px;
  --gutter: clamp(16px, 4vw, 20px);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Bebas Neue", Impact, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--volt);
  color: var(--ink);
  padding: 8px 14px;
  z-index: 1000;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--green-deep);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
.display {
  font-family: var(--display);
  letter-spacing: 0.02em;
  line-height: 0.92;
  margin: 0;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(3.4rem, 9vw, 7.2rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 42rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  max-width: 100%;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--volt);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
}

.topbar {
  background: var(--ink);
  color: #c9d6cc;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 8px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 12, 0.92);
  backdrop-filter: blur(16px);
  color: #fff;
  border-bottom: 1px solid var(--line);
}

.header .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: var(--header);
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.logo img {
  height: 68px;
  width: auto;
  max-width: min(220px, 100%);
  background: transparent;
  padding: 0;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.35));
}

.logo span {
  color: var(--volt);
}

nav.primary {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

nav.primary > a,
.nav-toggle,
.lang,
.icon-btn {
  color: #fff;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

nav.primary > a:hover,
.menu-trigger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.menu {
  position: relative;
}

.menu-trigger {
  background: none;
  border: 0;
  color: #fff;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.mega {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: min(920px, 94vw);
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.menu:hover .mega,
.menu:focus-within .mega {
  display: grid;
}

.mega a {
  padding: 12px;
  border-radius: 12px;
  background: var(--paper);
}

.mega a strong {
  display: block;
}

.mega a span {
  color: var(--muted);
  font-size: 0.82rem;
}

.mega a:hover {
  background: var(--green-soft);
}

.mega-featured {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  background: var(--ink) !important;
  color: #fff;
}

.mega-featured:hover {
  background: var(--ink-2) !important;
}

.mega-featured span {
  color: var(--volt) !important;
}

.tricks {
  padding-top: 0;
}

.tricks-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  padding: 36px 40px;
}

.tricks .eyebrow {
  color: var(--volt);
}

.tricks .lead {
  color: #c9d6cc;
}

.tricks-visual {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
}

.tricks-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.tricks-visual .play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--volt);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  padding-left: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 6px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.lang-switch a {
  color: #9aab9e;
  padding: 6px 8px;
  border-radius: 999px;
}

.lang-switch a:hover,
.lang-switch a.is-active {
  color: var(--volt);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 8px;
}

.legal-links a {
  color: #9aab9e;
  font-size: 0.85rem;
}

.header .wrap > .btn {
  margin-left: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 88vh;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 12, 0.88) 0%, rgba(7, 17, 12, 0.45) 52%, rgba(7, 17, 12, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 17, 12, 0.15), rgba(7, 17, 12, 0.55));
}

.hero .wrap {
  position: relative;
  z-index: 1;
  padding: 90px 0 72px;
}

.hero .eyebrow {
  color: var(--volt);
}

.hero p {
  color: #d7e3d9;
  max-width: 38rem;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 40px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--volt);
}

.stat span {
  color: #b7c5ba;
  font-size: 0.88rem;
}

.section {
  padding: 88px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}

.sport-grid,
.product-grid,
.news-grid,
.card-grid,
.trust,
.clean-grid,
.origin-grid,
.about-grid,
.footer-grid,
.finder-ui,
.product-list,
.cat-grid,
.download-grid {
  min-width: 0;
}

.sport-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.sport-card {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
}

.sport-card:nth-child(1) {
  grid-column: span 3;
}

.sport-card:nth-child(2),
.sport-card:nth-child(3) {
  grid-column: span 3;
}

.sport-card:nth-child(n + 4) {
  grid-column: span 2;
}

.sport-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s;
}

.sport-card:hover img {
  transform: scale(1.06);
}

.sport-card .copy {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(7, 17, 12, 0.92));
}

.sport-card small {
  color: var(--volt);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.origin {
  background: var(--ink);
  color: #fff;
}

.origin-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.tin-photo {
  margin: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #00654d;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
}

.tin-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tin-placeholder {
  color: #fff;
  text-align: center;
  padding: 28px;
  max-width: 80%;
}

.tin-placeholder strong {
  display: block;
  font-family: var(--display);
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.tin-placeholder span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.sport-card img.sport-discus {
  object-position: center 18%;
}

.product-grid,
.news-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card,
.news-card,
.info-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7, 17, 12, 0.06);
}

.product-visual {
  height: 210px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--display);
  font-size: 2.4rem;
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-carousel {
  display: flex;
  grid-template-columns: none;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.news-carousel .news-card {
  flex: 0 0 min(300px, 78vw);
  scroll-snap-align: start;
}

.related-seo-links {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: var(--paper-2);
  padding: 16px;
}

a.product-card {
  color: inherit;
  text-decoration: none;
}

a.product-card:hover h3 {
  color: var(--green-deep);
}

.shop-card {
  display: flex;
  flex-direction: column;
}

.shop-card h3 {
  font-size: 1.05rem;
  margin: 0 0 4px;
}

.shop-buy {
  margin-top: 12px;
  pointer-events: none;
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

.post-prose {
  max-width: 74ch;
}

.post-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 12px 0;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cat-card {
  position: relative;
  min-height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s;
}

.cat-card:hover img {
  transform: scale(1.06);
}

.cat-card .copy {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(7, 17, 12, 0.92));
}

.cat-card small {
  color: var(--volt);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.cat-card h3 {
  margin: 4px 0 6px;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.cat-card p {
  margin: 0;
  color: #c9d6cc;
  font-size: 0.92rem;
}

.magazine-grid {
  grid-template-columns: repeat(3, 1fr);
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.download-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(7, 17, 12, 0.06);
}

.download-card small {
  display: block;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.download-card h3 {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin: 0 0 8px;
}

.download-card p {
  color: var(--muted);
}

.devel-grid {
  grid-template-columns: repeat(3, 1fr);
}

.legal-prose {
  max-width: 74ch;
  font-size: 1.02rem;
}

.legal-prose p,
.legal-prose li {
  color: #3d4a41;
}

.legal-prose p {
  margin: 0 0 1em;
}

.legal-prose strong {
  color: var(--ink);
}

.cart-empty {
  background: #fff;
  border-radius: var(--radius);
  padding: 56px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(7, 17, 12, 0.06);
}

.cart-empty h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.03em;
  margin: 0 0 12px;
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 16px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 30px rgba(7, 17, 12, 0.06);
}

.cart-row img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: var(--paper-2);
  border-radius: 10px;
}

.cart-row h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.cart-foot {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form fieldset {
  border: 0;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.form legend {
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.checkout-pay label,
.form-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-weight: 600;
}

.checkout-pay label {
  padding: 14px;
  border: 1px solid #d5ddd6;
  border-radius: 12px;
  cursor: pointer;
}

.checkout-pay label:has(input:checked) {
  border-color: var(--green);
  background: var(--green-soft);
}

.checkout-pay input,
.form-check input {
  width: auto;
  margin-top: 3px;
}

.checkout-pay small {
  display: block;
  margin-top: 4px;
  font-weight: 500;
  color: var(--muted);
}

.checkout-summary {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(7, 17, 12, 0.06);
  position: sticky;
  top: 96px;
}

.checkout-summary h2,
.form h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.checkout-item,
.checkout-line--total {
  border-color: #d5ddd6;
}

.checkout-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: var(--paper-2);
  border-radius: 8px;
}

.checkout-item h3 {
  margin: 0;
  font-size: 0.95rem;
}

.checkout-item p {
  margin: 4px 0 0;
  font-size: 0.85rem;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0;
}

.checkout-line--total {
  font-size: 1.1rem;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.product-card .body,
.news-card .body,
.info-card {
  padding: 18px;
}

nav.primary a[aria-current="page"] {
  color: var(--volt);
}

.price {
  font-weight: 800;
  margin: 10px 0;
}

.clean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 8px 0 28px;
}

.clean-grid > a,
.clean-floors {
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 22px;
}

.clean-grid > a:hover,
.clean-floor-links a:hover {
  background: var(--green-soft);
}

.clean-grid h3 {
  margin: 0 0 8px;
}

.clean-grid p {
  margin: 0;
  color: var(--muted);
}

.clean-floors {
  grid-column: 1 / -1;
}

.clean-floor-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.clean-floor-links a {
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 800;
}

.clean-study {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  overflow: hidden;
  padding-right: 28px;
}

.clean-study > div {
  padding: 24px 0;
}

.clean-study img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.clean-study .eyebrow {
  color: var(--volt);
}

.clean-study h2,
.clean-study h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.03em;
  margin: 8px 0 12px;
  line-height: 0.95;
}

.clean-study p {
  color: #c9d6cc;
}

.clean-study span {
  display: inline-block;
  font-weight: 800;
  color: var(--volt);
}

.clean-study:hover span {
  text-decoration: underline;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust article {
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 22px;
}

.faq details {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.product-gallery {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(7, 17, 12, 0.06);
}

.product-gallery > img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

.product-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.product-thumb {
  width: 72px;
  height: 72px;
  padding: 6px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--paper-2);
  cursor: pointer;
}

.product-thumb.is-active,
.product-thumb:hover {
  border-color: var(--green-deep);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-buy h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.03em;
  margin: 8px 0 16px;
  max-width: 16ch;
}

.product-buy .price {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.product-buy .price del {
  opacity: 0.55;
  margin-right: 8px;
  font-weight: 600;
}

.product-buy .price ins {
  text-decoration: none;
}

.product-meta {
  color: var(--muted);
  margin: 0 0 20px;
}

.product-desc {
  margin-top: 8px;
}

.product-desc a {
  color: var(--green-deep);
  font-weight: 700;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.partner-banner {
  display: block;
  width: min(100%, 520px);
  height: auto;
  margin: 8px 0 28px;
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(7, 17, 12, 0.06);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  margin: 0 0 48px;
  align-items: stretch;
}

.partner-grid img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  background: #fff;
  padding: 14px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(7, 17, 12, 0.06);
}

.hall-prose {
  max-width: 82ch;
}

.legal-prose img,
.hall-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 12px 0;
  background: #fff;
}

.legal-prose iframe,
.legal-prose .ose-google-docs {
  width: 100%;
  max-width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 12px;
}

.legal-prose h2,
.legal-prose h3,
.legal-prose h4,
.legal-prose h5 {
  font-family: var(--display);
  letter-spacing: 0.03em;
  margin: 1.4em 0 0.4em;
}

.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 72px 0 48px;
}

.page-hero .lead {
  color: #c9d6cc;
}

.page-hero--photo {
  position: relative;
  min-height: 58vh;
  overflow: hidden;
  padding: 0;
}

.page-hero--photo .wrap {
  position: relative;
  z-index: 1;
  padding: 108px 0 72px;
}

.page-hero--photo .eyebrow {
  color: var(--volt);
}

.page-hero--photo h1 {
  font-size: clamp(3rem, 8vw, 6.2rem);
  max-width: 14ch;
}

.crumbs {
  color: #9aab9e;
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.crumbs a:hover {
  color: var(--volt);
}

.about-kicker {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--green-deep);
  margin: 0 0 10px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.prose {
  font-size: 1.05rem;
}

.prose p {
  color: #3d4a41;
}

.about-facts {
  display: grid;
  gap: 12px;
}

.about-facts article,
.about-facts a {
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.about-facts a:hover {
  background: var(--green-soft);
}

.about-facts small {
  display: block;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.about-facts h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  margin: 0 0 8px;
}

.about-facts p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-facts a span {
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
  color: var(--green-deep);
}

.prod-caps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
  color: #9aab9e;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.dev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.dev-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about-split .lead {
  color: #c9d6cc;
}

.sport-use {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.sport-use a,
.sport-use article {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(7, 17, 12, 0.06);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sport-use a:hover {
  background: var(--green-soft);
}

.sport-use small {
  color: var(--green-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.sport-use h3 {
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
}

.cat-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cat-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 140px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 16px 16px 22px;
  box-shadow: 0 10px 30px rgba(7, 17, 12, 0.06);
}

.cat-tile:hover {
  background: var(--green-soft);
}

.cat-tile-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.cat-tile small {
  color: var(--green-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.cat-tile h3 {
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
}

.cat-tile img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  flex-shrink: 0;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

.finder-ui {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}

.filters {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  height: fit-content;
  position: sticky;
  top: 96px;
}

.filters label {
  display: block;
  margin: 8px 0;
  font-weight: 600;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.form {
  display: grid;
  gap: 12px;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
}

.form h2 {
  margin: 0 0 4px;
}

.form input:not([type="checkbox"]):not([type="radio"]),
.form textarea,
.form select {
  width: 100%;
  border: 1px solid #d5ddd6;
  border-radius: 12px;
  padding: 12px 14px;
}

footer.site {
  background: var(--ink);
  color: #c9d6cc;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}

footer.site a:hover {
  color: var(--volt);
}

.legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 0.85rem;
}

.mobile-nav {
  display: none;
}

@media (max-width: 1120px) {
  :root {
    --header: 76px;
  }

  nav.primary {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 44px;
    min-width: 44px;
  }

  .header .wrap {
    gap: 12px;
  }

  .header-actions {
    margin-left: auto;
  }

  .logo {
    flex: 1 1 auto;
  }

  .logo img {
    height: 56px;
  }

  .mobile-nav {
    display: none;
    background: var(--ink-2);
    padding: 8px var(--gutter) 24px;
    max-height: min(70vh, 640px);
    overflow: auto;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .mobile-nav a,
  .mobile-nav button {
    display: block;
    color: #fff;
    padding: 12px 0;
    background: none;
    border: 0;
    font-weight: 700;
  }

  .mobile-nav .lang-switch {
    display: flex;
    gap: 4px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .mobile-nav .lang-switch a {
    display: inline-flex;
    padding: 8px 12px;
  }

  .stats,
  .sport-grid,
  .product-grid,
  .news-grid,
  .card-grid,
  .trust,
  .clean-grid,
  .clean-floor-links,
  .clean-study,
  .origin-grid,
  .two-col,
  .about-grid,
  .about-split,
  .sport-use,
  .cat-tile-grid,
  .tricks-grid,
  .dev-grid,
  .prod-caps,
  .finder-ui,
  .product-list,
  .footer-grid,
  .video-grid,
  .finder-sports,
  .sport-benefits,
  .cat-grid,
  .download-grid,
  .magazine-grid,
  .pay-grid,
  .product-layout,
  .checkout-layout {
    grid-template-columns: 1fr 1fr;
  }

  .sport-card,
  .sport-card:nth-child(1),
  .sport-card:nth-child(2),
  .sport-card:nth-child(3),
  .sport-card:nth-child(n + 4) {
    grid-column: auto;
  }

  .filters {
    position: static;
  }

  .hero {
    min-height: 72vh;
  }

  .page-hero--photo {
    min-height: 46vh;
  }
}

@media (max-width: 640px) {
  :root {
    --header: 64px;
  }

  .logo img {
    height: 42px;
  }

  .header .wrap {
    gap: 8px;
    min-height: var(--header);
  }

  .header-actions {
    gap: 4px;
  }

  .header-actions .btn {
    min-height: 40px;
    padding: 0 12px;
  }

  .lang-switch a {
    padding: 6px 5px;
  }

  .topbar .wrap span:last-child {
    display: none;
  }

  .topbar,
  .stats,
  .sport-grid,
  .product-grid,
  .news-grid,
  .card-grid,
  .trust,
  .clean-grid,
  .clean-floor-links,
  .clean-study,
  .origin-grid,
  .two-col,
  .about-grid,
  .about-split,
  .sport-use,
  .cat-tile-grid,
  .tricks-grid,
  .dev-grid,
  .prod-caps,
  .finder-ui,
  .product-list,
  .footer-grid,
  .legal,
  .section-head,
  .hero-actions,
  .cta-band,
  .video-grid,
  .finder-sports,
  .sport-benefits,
  .finder-search,
  .cat-grid,
  .download-grid,
  .magazine-grid,
  .pay-grid,
  .product-layout,
  .cart-row,
  .checkout-layout,
  .form-row,
  .checkout-item {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
  }

  .checkout-summary {
    position: static;
  }

  .cat-tile {
    min-height: 112px;
    padding: 14px;
  }

  .cat-tile img {
    width: 84px;
    height: 84px;
  }

  .hero {
    min-height: auto;
  }

  .hero .wrap,
  .page-hero--photo .wrap {
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .section,
  .tricks-grid {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .tricks-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tricks-visual,
  .tricks-visual img {
    min-height: 200px;
  }

  .clean-study {
    padding-right: 0;
  }

  .clean-study > div {
    padding: 22px;
  }

  .tin-photo {
    width: min(260px, 72vw);
    margin-inline: auto;
  }

  .page-hero--photo {
    min-height: 38vh;
  }

  .page-hero--photo h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .hero-actions .btn,
  .cta-band .btn {
    width: 100%;
  }

  .stat strong {
    font-size: 2rem;
  }

  .sport-card {
    min-height: 220px;
  }

  .about-media img {
    min-height: 200px;
  }
}

@media (max-width: 400px) {
  .header-actions .lang-switch {
    display: none;
  }

  .logo img {
    height: 36px;
  }
}

.contact-card,
.hours,
.form-status {
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.contact-card a {
  font-weight: 800;
}

.contact-card a:hover,
.hours a:hover {
  color: var(--green-deep);
}

.form label {
  font-weight: 700;
  font-size: 0.88rem;
}

.form-status {
  display: none;
  background: var(--green-soft);
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.video-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(7, 17, 12, 0.06);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.video-card--thumb {
  padding: 0;
  overflow: hidden;
  min-height: 0;
  justify-content: flex-start;
}

.video-card--thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.video-card--thumb h3 {
  padding: 12px 16px 16px;
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}

.sport-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.sport-photos img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--paper-2);
}

.video-card small {
  color: var(--green-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.finder-search {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.finder-search input {
  flex: 1;
  width: 100%;
  min-width: 0;
  border: 1px solid #d5ddd6;
  border-radius: 999px;
  padding: 14px 18px;
  background: #fff;
}

.finder-sports {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.finder-sport,
.sport-product {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(7, 17, 12, 0.06);
}

.finder-sport:hover,
.sport-product:hover,
.video-card:hover {
  background: var(--green-soft);
}

.finder-sport small,
.sport-product small {
  display: block;
  color: var(--green-deep);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 8px;
}

.finder-sport h3,
.sport-product h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
}

.finder-empty {
  color: var(--muted);
}

.sport-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 8px 0 28px;
}

.sport-benefits article {
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 22px;
}

.sport-products {
  display: grid;
  gap: 12px;
}

#a11y-root {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.a11y-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1cm;
  height: 1cm;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.a11y-btn:hover,
.a11y-btn:focus-visible {
  background: var(--green-deep);
}

.a11y-btn svg {
  width: 0.62cm;
  height: 0.62cm;
}

.a11y-panel {
  width: min(22rem, calc(100vw - 2rem));
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--paper-2);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 0.9rem;
}

.a11y-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
}

.a11y-close {
  border: 0;
  background: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: inherit;
}

.a11y-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.a11y-grid button {
  min-height: 3.1rem;
  padding: 0.45rem 0.5rem;
  border: 1px solid var(--paper-2);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.a11y-grid button[aria-pressed="true"] {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

html.a11y-font {
  font-size: calc(100% * var(--a11y-font, 1));
}

html.a11y-readable,
html.a11y-readable body {
  font-family: Arial, Helvetica, sans-serif;
}

html.a11y-contrast {
  filter: contrast(1.35);
}

html.a11y-no-anim *,
html.a11y-no-anim *::before,
html.a11y-no-anim *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

html.a11y-keyboard :focus {
  outline: 3px solid var(--volt) !important;
  outline-offset: 3px;
}

html.a11y-headings h1,
html.a11y-headings h2,
html.a11y-headings h3 {
  outline: 2px solid var(--volt);
  outline-offset: 4px;
}

html.a11y-links a,
html.a11y-links button {
  text-decoration: underline !important;
  text-underline-offset: 0.18em;
}
