:root {
  --bg: #ffffff;
  --bg-soft: #f3f6f4;
  --bg-warm: #eef6f0;
  --ink: #111513;
  --ink-dim: #65706a;
  --ink-faint: #a8b0aa;
  --muted: #65706a;
  --line: rgba(17, 21, 19, 0.1);
  --line-strong: rgba(17, 21, 19, 0.18);
  --accent: #14c96f;
  --accent-strong: #087d45;
  --accent-dark: #087d45;
  --accent-2: #8fd6b0;
  --sky-top: #d8f2df;
  --sky-mid: #eef8f0;
  --sky-bot: #ffffff;
  --radius: 22px;
  --radius-sm: 14px;
  --ease: cubic-bezier(0.16, 0.84, 0.34, 1);
  --container: 1280px;
  --font-display: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Compact homepage layout requested in the walkthrough. */
.brand-headline {
  max-width: none;
  color: #0d1210;
  font-size: clamp(4rem, 13vw, 10rem);
  font-weight: 800;
  line-height: 0.82;
}

.brand-headline span {
  color: #18bf70;
}

.statement {
  background: #fff;
  padding-block: clamp(72px, 9vw, 112px);
}

.statement-inner {
  max-width: 1080px;
  text-align: center;
}

.statement h2 {
  max-width: 13ch;
  margin: 18px auto 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.2vw, 5.6rem);
  font-weight: 500;
  line-height: 1.02;
}

.statement p {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.statement .statement-meta {
  max-width: 780px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
}

.social-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 8px;
  width: min(980px, calc(100% - 48px));
}

.social-shot,
.social-shot:nth-child(1),
.social-shot:nth-child(4),
.social-shot:nth-child(6),
.social-shot:nth-child(8) {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: 4 / 5;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
}

.athlete,
.athlete:nth-child(1),
.athlete:nth-child(2),
.athlete:nth-child(3),
.athlete:nth-child(4) {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-sm);
}

.athlete img {
  object-position: center 28%;
}

.athlete:nth-child(1) img {
  object-position: center 18%;
}

.compact-closing {
  background: var(--ink);
  color: #fff;
}

.compact-closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
}

.compact-closing h2 {
  max-width: 18ch;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 500;
  line-height: 1.05;
}

.compact-closing .bar {
  position: static;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.compact-closing .bar a,
.compact-closing .bar-meta {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 920px) {
  .social-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 32px);
    overflow: visible;
    padding: 0;
  }

  .social-shot,
  .social-shot-large,
  .social-shot-wide {
    width: auto;
    aspect-ratio: 4 / 5;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compact-closing-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .brand-headline {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .statement {
    padding-block: 80px;
  }

  .social-proof-grid {
    gap: 6px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
.display {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  position: relative;
  z-index: 10;
  padding: clamp(90px, 12vw, 150px) 0;
}

.eyebrow {
  display: inline-block;
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.section-head h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.section-head p {
  max-width: 560px;
  margin-top: 18px;
  color: var(--ink-dim);
  font-size: 1.05rem;
}

.line-mask {
  display: block;
  overflow: hidden;
}

.word {
  display: inline-block;
}

.magnetic {
  display: inline-block;
  will-change: transform;
}

.grain {
  position: fixed;
  inset: -120%;
  z-index: 1300;
  width: 340%;
  height: 340%;
  opacity: 0.025;
  pointer-events: none;
  mix-blend-mode: multiply;
  background-repeat: repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.8s steps(4) infinite;
}

@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-3%, 2%); }
  50% { transform: translate(2%, -3%); }
  75% { transform: translate(-2%, -2%); }
  100% { transform: translate(3%, 3%); }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1400;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  pointer-events: none;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1350;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  will-change: transform;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--accent);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  margin: -19px 0 0 -19px;
  border: 1px solid rgba(17, 21, 19, 0.45);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), margin 0.3s var(--ease), background 0.3s var(--ease);
}

.cursor-ring.is-hover {
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  background: rgba(17, 21, 19, 0.06);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: transparent;
  overflow: hidden;
}

.pre-panels {
  position: absolute;
  inset: 0;
  display: flex;
}

.pre-panel {
  flex: 1;
  background: var(--bg);
  transform-origin: top center;
}

.pre-panel:not(:last-child) {
  border-right: 1px solid rgba(17, 21, 19, 0.05);
}

.pre-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.pre-brand {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.pre-brand span {
  color: var(--accent);
}

.pre-count {
  display: flex;
  align-items: flex-start;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 13vw, 9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.pre-count em {
  margin-top: 0.4em;
  margin-left: 0.1em;
  color: var(--accent);
  font-size: 0.32em;
  font-style: normal;
}

.pre-line {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  height: 2px;
  background: rgba(17, 21, 19, 0.1);
}

.pre-fill {
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 34px;
  color: var(--ink);
  transition: padding 0.4s var(--ease), color 0.4s var(--ease);
}

.nav.scrolled {
  padding: 16px 34px;
}

.logo,
.bar-logo {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.logo span,
.bar-logo span {
  color: var(--accent);
}

.toggle {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.toggle:hover {
  background: rgba(17, 21, 19, 0.08);
}

.toggle .bar {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.toggle .bar:last-child {
  transform: rotate(90deg);
}

.nav.menu-open .toggle .bar {
  background: #fff;
}

.nav.menu-open .toggle .bar:first-child {
  transform: rotate(45deg);
}

.nav.menu-open .toggle .bar:last-child {
  transform: rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 115;
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  pointer-events: none;
  background: #101216;
  transition: opacity 0.5s var(--ease), clip-path 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-overlay.open {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay .inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 max(34px, 8vw);
}

.nav-overlay .link {
  width: max-content;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s var(--ease), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s var(--ease);
}

.nav-overlay .link:hover {
  color: var(--accent);
}

.nav-overlay .ovcta {
  width: max-content;
  margin-top: 32px;
  padding: 15px 26px;
  border-radius: 100px;
  background: #fff;
  color: #101216;
  font-family: var(--font-display);
  font-weight: 600;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s var(--ease), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s var(--ease);
}

.nav-overlay.open .link,
.nav-overlay.open .ovcta {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay .meta {
  position: absolute;
  left: max(34px, 8vw);
  bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.intro {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
}

.intro .pin {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--sky-mid);
}

.intro .pin::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.58) 32%, rgba(255, 255, 255, 0.08) 68%),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.78), transparent 45%);
}

.product-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  perspective: 1200px;
}

.product-wrap img {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: clamp(34px, 6vw, 98px);
  object-fit: contain;
  object-position: center center;
  filter: saturate(1.04) contrast(1.02);
  transform-origin: 50% 72%;
  transform: translate3d(var(--boot-x, 0px), var(--boot-y, 0px), 0) rotateX(var(--boot-rx, 0deg)) rotateY(var(--boot-ry, 0deg)) rotateZ(var(--boot-rz, 0deg)) scale(var(--boot-scale, 1));
  transition: transform 0.18s linear;
  will-change: transform;
}

.intro .content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(108px, 13vh, 156px) 24px 0;
  text-align: center;
}

.headline {
  max-width: 14ch;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 22px rgba(255, 255, 255, 0.9);
}

.headline .accent-word {
  color: var(--accent-strong);
  font-weight: 800;
}

.sub {
  max-width: 34rem;
  margin-top: 18px;
  color: rgba(17, 21, 19, 0.74);
  font-size: clamp(0.98rem, 1.45vw, 1.14rem);
  font-weight: 500;
  line-height: 1.65;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.86);
}

.sub b {
  color: var(--ink);
  font-weight: 700;
}

.cta-wrap {
  margin-top: 32px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(17, 21, 19, 0.1);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.cta:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.arr {
  color: var(--accent);
}

.wordmark {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5vw;
  pointer-events: none;
}

.svg {
  width: min(86vw, 1040px);
  height: auto;
  overflow: visible;
}

.letter {
  fill: none;
  stroke: #19ff7a;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 12px rgba(25, 255, 122, 0.65))
    drop-shadow(0 0 30px rgba(20, 201, 111, 0.36));
}

.cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
  color: rgba(17, 21, 19, 0.5);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.cue-bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(rgba(17, 21, 19, 0.5), transparent);
  animation: cue-drop 1.8s var(--ease) infinite;
}

@keyframes cue-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.mq {
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 20px 0;
  background: var(--bg);
}

.mq .track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}

.mq .word {
  display: inline-flex;
  align-items: center;
  padding-right: 40px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.7vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mq .star {
  display: inline-block;
  margin-left: 40px;
  color: var(--accent);
  font-size: 0.62em;
}

.products-horizontal {
  position: relative;
  z-index: 10;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

.products-horizontal .track {
  display: flex;
  width: max-content;
  height: 100vh;
  will-change: transform;
}

.product-panel {
  position: relative;
  min-width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 max(34px, 7vw);
  overflow: hidden;
}

.product-panel .pix {
  position: absolute;
  right: -1%;
  top: 50%;
  z-index: 0;
  transform: translateY(-50%);
  color: rgba(17, 21, 19, 0.04);
  font-family: var(--font-display);
  font-size: clamp(8rem, 26vw, 22rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.product-panel.active .pix {
  color: rgba(20, 201, 111, 0.12);
}

.product-panel .inner {
  position: relative;
  z-index: 2;
  width: min(520px, 42vw);
}

.product-panel .tag {
  position: static;
  bottom: auto;
  z-index: auto;
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(20, 201, 111, 0.4);
  border-radius: 100px;
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-panel .name {
  margin-top: 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.2vw, 4.2rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.product-panel .name b {
  font-weight: 700;
}

.product-panel .blurb {
  max-width: 440px;
  margin-top: 16px;
  color: var(--ink-dim);
  font-size: 1.05rem;
}

.product-panel .price {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
}

.price-num {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1;
}

.old-price {
  color: var(--ink-faint);
  text-decoration: line-through;
}

.product-panel .cta {
  margin-top: 26px;
  background: var(--ink);
  color: #fff;
  white-space: nowrap;
}

.product-panel .media {
  position: absolute;
  right: max(34px, 7vw);
  top: 50%;
  z-index: 1;
  width: 39vw;
  max-width: 600px;
  height: 66vh;
  border-radius: var(--radius);
  transform: translateY(-50%);
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(17, 21, 19, 0.18);
  background: var(--bg-soft);
}

.product-panel .media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 34px;
}

.hint {
  position: absolute;
  left: max(34px, 7vw);
  bottom: 30px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-dim);
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hint-line {
  position: relative;
  width: 56px;
  height: 1px;
  overflow: hidden;
  background: var(--line-strong);
}

.hint-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  animation: slide-r 1.8s infinite;
}

@keyframes slide-r {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.full-offer {
  background: var(--bg);
  padding-top: clamp(90px, 13vw, 170px);
}

.shop-hero {
  position: relative;
  z-index: 10;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 16vh, 180px) 0 clamp(70px, 10vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 34%, rgba(20, 201, 111, 0.18), transparent 36%),
    linear-gradient(180deg, var(--sky-top), #fff 76%);
}

.shop-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.shop-hero h1 {
  max-width: 11ch;
  margin-top: 16px;
  font-size: clamp(2.7rem, 7vw, 6.2rem);
  font-weight: 500;
}

.shop-hero p {
  max-width: 590px;
  margin-top: 22px;
  color: var(--ink-dim);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.shop-hero img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  filter: drop-shadow(0 34px 60px rgba(17, 21, 19, 0.16));
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 22px 70px rgba(17, 21, 19, 0.06);
}

.offer-media {
  position: relative;
  display: grid;
  place-items: center;
  height: 190px;
  background:
    radial-gradient(circle at 50% 55%, rgba(20, 201, 111, 0.18), transparent 54%),
    #f7f9f7;
}

.offer-media img {
  max-width: 86%;
  max-height: 82%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.offer-media-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: block;
  width: clamp(40px, 4vw, 58px);
  height: auto;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 8px 16px rgba(17, 21, 19, 0.2));
}

.offer-media-badge-bestseller {
  transform: rotate(3deg);
}

.offer-media-badge-text {
  width: auto;
  max-width: min(128px, calc(100% - 20px));
  padding: 8px 10px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
}

.offer-media-badge-physio {
  background: #b7ff83;
  color: #16320f;
  transform: none;
}

.product-note-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
}

.product-note-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

.product-note-badge-physio {
  background: #b7ff83;
  color: #16320f;
}

.offer-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.offer-meta-row {
  display: flex;
  min-height: 27px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.offer-body small {
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-body h3 {
  min-height: 3.2em;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.2vw, 1.24rem);
  line-height: 1.08;
}

.offer-body p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.product-details {
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-soft);
}

.product-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.product-details summary::-webkit-details-marker {
  display: none;
}

.product-details summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: var(--accent-strong);
  font-size: 1.1rem;
  line-height: 1;
}

.product-details[open] summary::after {
  content: "–";
}

.product-details-content {
  padding: 0 14px 14px;
  color: var(--ink-dim);
  font-size: 0.84rem;
  line-height: 1.55;
}

.product-details-content h4 {
  margin: 2px 0 10px;
  color: var(--ink);
  font-size: 0.92rem;
}

.product-details-content p {
  margin: 8px 0;
  color: var(--ink-dim);
  font-size: inherit;
}

.product-details-content ul {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding-left: 18px;
}

.product-details-content li::marker {
  color: var(--accent-strong);
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
}

.offer-price b {
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.offer-price del {
  color: var(--muted);
  font-size: 0.86rem;
}

.offer-add {
  align-self: flex-start;
  margin-top: 18px;
  padding: 11px 18px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 900;
}

.add-to-cart.added,
.offer-add.added {
  background: var(--accent-strong);
  color: #fff;
}

.stats {
  position: relative;
  z-index: 10;
  padding: clamp(56px, 8vw, 80px) 0;
  border-block: 1px solid var(--line);
  background: var(--bg);
}

.stats .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  position: relative;
  padding: 6px clamp(18px, 3vw, 40px);
  text-align: center;
}

.stat:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 64%;
  transform: translateY(-50%);
  background: var(--line);
}

.num {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
}

.num span {
  background: linear-gradient(180deg, var(--ink) 30%, var(--accent) 150%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.label {
  margin-top: 14px;
  color: var(--ink-dim);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.warranty {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 16%, rgba(20, 201, 111, 0.14), transparent 34%),
    var(--bg);
}

.warranty-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}

.warranty h2 {
  max-width: 12ch;
  margin-top: 16px;
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.warranty p {
  max-width: 650px;
  color: var(--ink-dim);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.75;
}

.process {
  position: relative;
  z-index: 10;
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}

.process .pin {
  height: 100vh;
  display: flex;
  align-items: center;
}

.process .top {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.process .top h2 {
  max-width: 18ch;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300;
  letter-spacing: -0.025em;
}

.process .stage {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.text-col {
  position: relative;
  min-height: 300px;
}

.step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.step.active {
  opacity: 1;
  transform: translateY(0);
}

.week {
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.step-title {
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
}

.body {
  max-width: 40ch;
  margin-top: 14px;
  color: var(--ink-dim);
  font-size: 1.05rem;
  line-height: 1.6;
}

.media-col {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
}

.shot {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.96);
  box-shadow: 0 30px 70px rgba(17, 21, 19, 0.16);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  background: #fff;
}

.shot.active {
  opacity: 1;
  transform: scale(1);
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: clamp(28px, 4vw, 48px);
}

.counter {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
}

.counter span {
  color: var(--ink-faint);
}

.bar {
  position: relative;
  flex: 1;
  height: 2px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--line);
}

.bar-fill {
  position: absolute;
  inset: 0;
  transform: scaleX(0.25);
  transform-origin: 0 50%;
  background: var(--accent);
}

.process-list {
  display: none;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(17, 21, 19, 0.18);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-proof {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
}

.social-proof .section-head h2,
.social-proof .section-head p {
  color: #fff;
}

.social-proof .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.social-proof .section-head {
  margin-inline: auto;
  text-align: center;
}

.social-proof .section-head .social-proof-lead {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(1.2rem, 2.15vw, 1.75rem);
  font-weight: 600;
  line-height: 1.55;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(170px, 14vw);
  gap: 10px;
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
}

.social-shot {
  position: relative;
  grid-column: span 3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #0b0f0d;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.social-shot:nth-child(1),
.social-shot:nth-child(8),
.social-shot:nth-child(15) {
  grid-column: span 4;
  grid-row: span 2;
}

.social-shot:nth-child(4),
.social-shot:nth-child(12),
.social-shot:nth-child(19) {
  grid-column: span 4;
}

.social-shot:nth-child(6),
.social-shot:nth-child(13) {
  grid-column: span 6;
}

.social-shot:nth-child(10) {
  grid-column: span 3;
  grid-row: span 2;
}

.social-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.social-shot:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.03);
}

.ba .frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(17, 21, 19, 0.18);
  cursor: ew-resize;
  user-select: none;
}

.ba .layer {
  position: absolute;
  inset: 0;
}

.ba .layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba .before-layer {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.tag {
  position: absolute;
  bottom: 20px;
  z-index: 4;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(17, 21, 19, 0.55);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.tag-before {
  left: 20px;
}

.tag-after {
  right: 20px;
  color: #bff7d3;
}

.badge {
  position: absolute;
  left: 50%;
  top: 22px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 26px;
  border-radius: 16px;
  transform: translateX(-50%);
  background: rgba(17, 21, 19, 0.42);
  color: #fff;
  text-align: center;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.badge-big {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  font-weight: 700;
}

.badge-small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
}

.handle {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 4;
  width: 0;
  height: 100%;
  pointer-events: none;
}

.handle-line {
  position: absolute;
  top: 0;
  left: -1px;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
}

.knob {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(17, 21, 19, 0.7);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.knob span {
  width: 0;
  height: 0;
  border-block: 5px solid transparent;
}

.knob span:first-child {
  border-right: 7px solid #fff;
}

.knob span:last-child {
  border-left: 7px solid #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  grid-auto-rows: 210px;
}

.athlete {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #eef0f1;
  box-shadow: 0 12px 30px rgba(17, 21, 19, 0.06);
}

.athlete::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(transparent 52%, rgba(0, 0, 0, 0.62));
}

.athlete img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.athlete:hover img {
  transform: scale(1.06);
}

.athlete .cap {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 3;
  color: #fff;
}

.athlete .cap b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.athlete .cap span {
  display: block;
  max-width: 25ch;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.athlete:nth-child(1) {
  grid-column: span 6;
  grid-row: span 2;
}

.athlete:nth-child(2),
.athlete:nth-child(3) {
  grid-column: span 3;
  grid-row: span 2;
}

.athlete:nth-child(4) {
  grid-column: span 12;
}

.why {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(48px, 7vw, 80px);
}

.card {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
}

.card h3 {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 600;
}

.card p {
  margin-top: 12px;
  color: var(--ink-dim);
  font-size: 0.96rem;
  line-height: 1.6;
}

.book-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding: clamp(36px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: radial-gradient(120% 120% at 100% 0%, rgba(20, 201, 111, 0.16), transparent 58%), var(--bg-soft);
}

.intro-col {
  max-width: 34rem;
}

.book .title {
  margin-top: 14px;
  font-size: clamp(2rem, 4.1vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.book .body {
  margin-top: 18px;
  color: var(--ink-dim);
  font-size: 1.06rem;
  line-height: 1.65;
}

.reassure {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  list-style: none;
}

.reassure li {
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  color: var(--ink);
  font-size: 0.8rem;
}

.ct {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 26px;
}

.ct a {
  color: var(--ink-dim);
  font-size: 0.95rem;
  white-space: nowrap;
}

.cart-summary,
.form-card {
  margin-top: 28px;
  padding: clamp(24px, 3.4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: 0 40px 100px rgba(17, 21, 19, 0.1);
}

.cart-summary strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.cart-empty {
  color: var(--ink-dim);
}

.cart-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-controls button,
.remove-item,
.clear-cart {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
  background: var(--bg-soft);
  font-weight: 600;
}

.remove-item {
  margin-top: 8px;
  color: var(--accent-strong);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.cart-total span {
  color: var(--ink-dim);
}

.cart-total b {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.clear-cart {
  margin-top: 18px;
}

.form-card {
  margin-top: 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  color: var(--ink-dim);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 1rem;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}

.privacy-check {
  display: flex;
  gap: 10px;
  color: var(--ink-dim);
  font-size: 0.9rem;
}

.privacy-check input {
  margin-top: 5px;
  accent-color: var(--accent);
}

.submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 58px;
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
}

.submit:hover {
  background: var(--accent-strong);
}

.submit:disabled,
.submit.is-loading {
  cursor: wait;
  opacity: 0.72;
}

.order-status {
  margin-top: 12px;
  padding: 13px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: left;
}

.order-status-success {
  border: 1px solid rgba(20, 201, 111, 0.34);
  background: rgba(20, 201, 111, 0.12);
  color: #0e3c22;
}

.order-status-error {
  border: 1px solid rgba(255, 139, 61, 0.34);
  background: rgba(255, 139, 61, 0.12);
  color: #5c2b10;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.order-summary {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(20, 201, 111, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(20, 201, 111, 0.07);
}

.order-summary > div,
.order-summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
}

.order-summary-total {
  padding-top: 10px;
  border-top: 1px solid rgba(20, 201, 111, 0.22);
  font-size: 1rem;
}

.purchase-type {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  padding: 13px 0 0;
  border: 0;
}

.purchase-type legend,
.check-line {
  color: var(--ink-dim);
  font-size: 0.86rem;
  font-weight: 600;
}

.purchase-type label,
.check-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.purchase-type input,
.check-line input {
  accent-color: var(--accent);
}

.company-fields {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: #d56b3d;
}

.order-success {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(20, 201, 111, 0.38);
  border-radius: var(--radius);
  background: radial-gradient(circle at top right, rgba(20, 201, 111, 0.2), transparent 50%), #101613;
  color: #fff;
}

.order-success h3 { margin: 14px 0; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.order-success p { color: rgba(255,255,255,.76); line-height: 1.65; }
.order-success strong { display: inline-block; margin-top: 22px; color: #19ff7a; }

.note {
  color: var(--ink-faint);
  font-size: 0.82rem;
  text-align: center;
}

.floating-cart {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 17px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(17, 21, 19, 0.18);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.floating-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(17, 21, 19, 0.22);
}

.floating-cart span {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
}

.ghost-action,
.primary-action {
  padding: 13px 18px;
  border-radius: 100px;
  font-weight: 900;
}

.ghost-action {
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.primary-action {
  background: var(--ink);
  color: #fff;
}

.foot {
  position: relative;
  z-index: 10;
}

.closing {
  position: relative;
  min-height: clamp(620px, 94vh, 880px);
  overflow: hidden;
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 38%, var(--sky-bot) 74%);
}

.closing-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(100px, 14vh, 160px) 24px 0;
  text-align: center;
}

.closing-title {
  max-width: 15ch;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  text-shadow: 0 1px 22px rgba(255, 255, 255, 0.7);
}

.photo-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: clamp(54%, 66vh, 72%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 20%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%);
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.foot .bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px 34px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7));
}

.bar-links {
  display: flex;
  gap: 26px;
}

.bar-links a {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
}

.bar-meta {
  justify-self: end;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: right;
}

.social-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.bar .social-links {
  justify-self: end;
  margin-top: 0;
}

.social-links a,
.social-links span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 900;
}

.social-links a:hover {
  background: var(--accent);
  color: var(--ink);
}

.social-links span {
  color: var(--ink-faint);
}

.compact-foot {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.compact-foot .bar {
  position: static;
  background: var(--bg);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0;
}

.legal-nav .logo {
  position: static;
  color: var(--ink);
  transform: none;
}

.legal-links,
.legal-footer > div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.legal-links a,
.legal-footer a {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-page {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) 0;
}

.legal-page h1 {
  max-width: 11ch;
  margin-bottom: 52px;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 8vw, 7rem);
  line-height: 0.92;
}

.legal-page h2 {
  margin: 44px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.legal-page ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.legal-page a {
  color: var(--accent-dark);
  font-weight: 800;
}

.legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 34px;
  border-top: 1px solid var(--line);
}

.legal-footer b {
  font-family: var(--font-display);
  font-weight: 900;
}

.legal-footer b span {
  color: var(--accent-dark);
}

.legal-footer span {
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 920px) {
  .products-horizontal {
    height: auto;
    overflow: hidden;
  }

  .products-horizontal .track {
    width: 100%;
    height: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .product-panel {
    min-width: 88vw;
    height: auto;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 64px 6vw;
    scroll-snap-align: center;
  }

  .product-panel .media {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    height: 44vh;
    margin-top: 28px;
    transform: none;
  }

  .product-panel .inner {
    width: 100%;
    max-width: 100%;
  }

  .product-panel .pix {
    top: 24px;
    right: 4vw;
    transform: none;
    font-size: clamp(6rem, 32vw, 10rem);
  }

  .hint,
  .process .pin {
    display: none;
  }

  .process-list {
    display: block;
    padding: clamp(70px, 12vw, 110px) 0;
  }

  .process-list .list-item {
    margin-bottom: 40px;
  }

  .process-list img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 18px 40px rgba(17, 21, 19, 0.14);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .social-proof-grid {
    display: flex;
    width: 100%;
    overflow-x: auto;
    padding: 0 24px 8px;
    scroll-snap-type: x mandatory;
    background: transparent;
    border: 0;
  }

  .social-shot,
  .social-shot-large,
  .social-shot-wide {
    flex: 0 0 min(82vw, 520px);
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
    scroll-snap-align: center;
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .warranty-grid {
    grid-template-columns: 1fr;
  }

  .shop-hero-inner {
    grid-template-columns: 1fr;
  }

  .shop-hero img {
    max-height: 48vh;
  }

  .athlete,
  .athlete:nth-child(1),
  .athlete:nth-child(2),
  .athlete:nth-child(3),
  .athlete:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 880px) {
  .book-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .stats .grid,
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(3)::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .product-wrap {
    height: 100%;
  }

  .foot .bar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 18px 20px;
    text-align: center;
  }

  .bar-meta {
    justify-self: center;
    text-align: center;
  }

  .bar .social-links {
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .stats .grid,
  .cards,
  .frow,
  .gallery-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .ghost-action,
  .primary-action {
    width: 100%;
  }

  .intro .content {
    padding-top: 110px;
  }

  .legal-nav,
  .legal-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-links,
  .legal-footer > div {
    flex-wrap: wrap;
  }
}

/* Final homepage overrides must follow the shared responsive rules. */
.intro .brand-headline {
  max-width: none;
  color: #0d1210;
  font-size: clamp(4rem, 13vw, 10rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: 0;
}

.intro .brand-headline span {
  color: #18bf70;
}

.social-proof .social-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 8px;
  width: min(980px, calc(100% - 48px));
  overflow: visible;
  padding: 0;
}

.social-proof .social-shot,
.social-proof .social-shot:nth-child(n) {
  grid-column: span 1;
  grid-row: span 1;
  width: auto;
  aspect-ratio: 4 / 5;
}

.gallery .gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
}

.gallery .athlete,
.gallery .athlete:nth-child(n) {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-sm);
}

.gallery .athlete img {
  object-position: center 28%;
}

.gallery .athlete:nth-child(1) img {
  object-position: center 18%;
}

.compact-closing .bar {
  position: static;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

@media (max-width: 920px) {
  .social-proof .social-proof-grid,
  .gallery .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 32px);
  }
}

@media (max-width: 560px) {
  .intro .brand-headline {
    width: 100%;
    font-size: 11.5vw;
    white-space: nowrap;
  }

  .gallery .gallery-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

}

/* Homepage commerce, uncropped social gallery and legal footer. */
.wordmark {
  opacity: 0;
}

.book {
  background:
    radial-gradient(circle at 12% 18%, rgba(20, 201, 111, 0.12), transparent 32%),
    #fff;
}

.privacy-check a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-summary-wide {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 0;
}

.legal-placeholder {
  padding: 18px 20px;
  border: 1px solid rgba(181, 116, 0, 0.28);
  border-radius: var(--radius-sm);
  background: #fff8e8;
  color: #6f4900 !important;
  font-weight: 700;
}

.social-proof .social-shot,
.social-proof .social-shot:nth-child(n) {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0b0f0d;
}

.social-proof .social-shot img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.social-proof .social-shot:hover img {
  transform: none;
}

.footer-intro {
  display: grid;
  justify-items: start;
}

.footer-logo {
  width: min(260px, 68vw);
  height: auto;
  margin-bottom: 28px;
}

.footer-intro p {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 22px;
}

.footer-contact-links a {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.social-links svg {
  width: 22px;
  height: 22px;
}

.social-links svg rect,
.social-links svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links svg .social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.social-links svg path {
  fill: currentColor;
}

.footer-legal-link {
  justify-self: center;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.compact-closing .bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 920px) {
  .compact-closing .bar {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .compact-closing .bar-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .social-proof .social-proof-grid {
    grid-template-columns: 1fr;
  }

  .book-card {
    padding: 24px 18px;
  }

  .cart-row {
    flex-direction: column;
  }
}

/* Compact, fully visible homepage footer. */
.compact-closing-inner {
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(18px, 3vw, 38px);
  padding-top: 38px;
  padding-bottom: 32px;
}

.footer-logo {
  width: min(190px, 58vw);
  margin-bottom: 14px;
}

.compact-closing h2 {
  max-width: 22ch;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2.6rem);
  line-height: 1.08;
}

.footer-intro p {
  margin-top: 10px;
  font-size: 0.9rem;
}

.footer-contact-links {
  margin-top: 12px;
  font-size: 0.9rem;
}

.compact-closing-inner > .cta {
  padding: 14px 22px;
  font-size: 0.86rem;
}

.compact-closing-inner .social-links {
  margin-top: 0;
}

.compact-closing .bar {
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 15px clamp(20px, 4vw, 52px) max(16px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.08);
}

.compact-closing .bar-links {
  flex-wrap: wrap;
  gap: 10px 24px;
}

.compact-closing .bar-links a {
  font-size: 0.8rem;
}

.compact-closing .bar-meta {
  font-size: 0.72rem;
}

.floating-cart {
  transition:
    opacity 0.22s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.floating-cart.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

@media (max-width: 920px) {
  .compact-closing-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .compact-closing-inner .footer-intro {
    grid-column: 1 / -1;
  }

  .compact-closing .bar {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .compact-closing-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .compact-closing .bar {
    justify-items: start;
    text-align: left;
  }

  .compact-closing .bar-links {
    justify-content: flex-start;
  }

  .compact-closing .bar-meta {
    justify-self: start;
    text-align: left;
  }
}

/* Original scroll-driven neon REBOOTS reveal. */
html,
body {
  overflow-x: clip;
}

.intro {
  height: 240vh;
}

.intro .pin {
  position: sticky;
  top: 0;
  height: 100vh;
}

.intro .content,
.product-wrap,
.wordmark,
.intro .cue {
  will-change: transform, opacity;
}

.wordmark {
  visibility: hidden;
  transform-origin: 50% 50%;
}

.wordmark .svg {
  width: min(90vw, 1120px);
}

.wordmark .letter {
  stroke: #19ff7a;
  stroke-width: 7;
  transform-box: fill-box;
  transform-origin: center;
  filter:
    drop-shadow(0 0 8px rgba(25, 255, 122, 0.95))
    drop-shadow(0 0 22px rgba(25, 255, 122, 0.72))
    drop-shadow(0 0 48px rgba(20, 201, 111, 0.5));
}

@media (max-width: 760px) {
  .intro {
    height: 210vh;
  }

  .wordmark {
    padding-inline: 3vw;
  }

  .wordmark .letter {
    stroke-width: 9;
  }
}

/* The legal row stays above a black safe area at the physical page bottom. */
.compact-closing::after {
  content: none;
}

/* Single-line neon wordmark, Reboots footer brand and thin product ticker. */
.wordmark .letter {
  fill: none;
  stroke: #19ff7a;
  stroke-width: 5;
  filter: drop-shadow(0 0 12px rgba(25, 255, 122, 0.72));
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 14px;
  padding: 8px 11px;
  border-radius: 3px;
  background: #fff;
  color: #111513;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.footer-brand span {
  color: var(--accent);
}

.mq {
  padding: 9px 0;
  border-color: rgba(255, 255, 255, 0.1);
  background: #080b09;
}

.mq .track {
  animation: product-name-loop 30s linear infinite;
}

.mq .word {
  padding-right: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.68rem, 0.9vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.mq .star {
  margin-left: 26px;
  color: #19ff7a;
}

@keyframes product-name-loop {
  to {
    transform: translateX(-33.3333%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mq .track {
    animation-duration: 90s;
  }
}

/* Elegant athlete grid: 3 cards per row on desktop, centered final row when needed. */
.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  grid-auto-rows: auto;
}

.gallery .athlete,
.gallery .athlete:nth-child(n) {
  grid-column: span 2;
  grid-row: span 1;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: #0d1210;
  box-shadow: 0 26px 70px rgba(4, 8, 6, 0.18);
}

.gallery .athlete:nth-last-child(2):nth-child(3n + 1) {
  grid-column: 2 / span 2;
}

.gallery .athlete img {
  object-position: center 24%;
}

.gallery .athlete:nth-child(4) img {
  object-position: center center;
}

.gallery .athlete:nth-child(5) img {
  object-position: center 32%;
}

.gallery .athlete:nth-child(6) img {
  object-position: 66% center;
}

.athlete-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 28% 20%, rgba(20, 201, 111, 0.35), transparent 36%),
    linear-gradient(145deg, #121916 0%, #070a08 100%);
}

.athlete-placeholder span {
  display: grid;
  place-items: center;
  width: clamp(92px, 9vw, 132px);
  height: clamp(92px, 9vw, 132px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #19ff7a;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  box-shadow: inset 0 0 34px rgba(25, 255, 122, 0.12);
}

.athlete .cap {
  left: clamp(18px, 2vw, 26px);
  right: clamp(18px, 2vw, 26px);
  bottom: clamp(18px, 2vw, 26px);
}

.athlete .cap b {
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.athlete .cap span {
  max-width: 32ch;
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 32px);
  }

  .gallery .athlete,
  .gallery .athlete:nth-child(n),
  .gallery .athlete:nth-last-child(2):nth-child(3n + 1) {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* One clean footer base: legal links above a built-in black safe area. */
.compact-closing .bar {
  position: relative;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
  padding:
    16px
    clamp(22px, 4vw, 54px)
    clamp(38px, 5vh, 52px);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background: #050706;
}

.compact-closing .bar-links {
  justify-content: flex-start;
  gap: 10px 24px;
}

.compact-closing .bar-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

.compact-closing .bar-meta {
  display: flex;
  justify-self: end;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .compact-closing .bar {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
    padding-bottom: 38px;
    text-align: left;
  }

  .compact-closing .bar-links {
    justify-content: flex-start;
  }

  .compact-closing .bar-meta {
    justify-self: start;
    text-align: left;
  }
}

/* Instagram-style broken mosaic for the lower visual section. */
.social-proof .social-proof-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-areas:
    "a a a a b b b b c c c c"
    "a a a a b b b b c c c c"
    "a a a a d d d e e e e e"
    "f f f f d d d e e e e e"
    "f f f f g g g g h h h h"
    "i i i i g g g g h h h h"
    "i i i i j j j k k k k k"
    "l l l l j j j m m m m m";
  grid-auto-rows: clamp(88px, 8vw, 148px);
  gap: clamp(8px, 1vw, 14px);
  width: calc(100% - clamp(20px, 3vw, 56px));
  margin: 0 auto;
  padding: 0 0 clamp(72px, 8vw, 118px);
  overflow: visible;
}

.social-proof .social-shot,
.social-proof .social-shot:nth-child(n) {
  position: relative;
  display: block;
  grid-column: auto;
  grid-row: auto;
  width: auto;
  aspect-ratio: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: clamp(16px, 1.9vw, 30px);
  background: #080c0a;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.social-proof .social-shot:nth-child(1) {
  grid-area: a;
}

.social-proof .social-shot:nth-child(2) {
  grid-area: b;
}

.social-proof .social-shot:nth-child(3) {
  grid-area: c;
}

.social-proof .social-shot:nth-child(4) {
  grid-area: d;
}

.social-proof .social-shot:nth-child(5) {
  grid-area: e;
}

.social-proof .social-shot:nth-child(6) {
  grid-area: f;
}

.social-proof .social-shot:nth-child(7) {
  grid-area: g;
}

.social-proof .social-shot:nth-child(8) {
  grid-area: h;
}

.social-proof .social-shot:nth-child(9) {
  grid-area: i;
}

.social-proof .social-shot:nth-child(10) {
  grid-area: j;
}

.social-proof .social-shot:nth-child(11) {
  grid-area: k;
}

.social-proof .social-shot:nth-child(12) {
  grid-area: l;
}

.social-proof .social-shot:nth-child(13) {
  grid-area: m;
}

.social-proof .social-shot img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.social-proof .social-shot:nth-child(3) img {
  object-position: center bottom;
}

.social-proof .social-shot:nth-child(7) img,
.social-proof .social-shot:nth-child(10) img {
  object-position: center top;
}

.social-proof .social-shot:nth-child(11) img {
  object-position: center 56%;
}

.social-proof .social-shot:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

@media (max-width: 920px) {
  .social-proof .social-proof-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-areas:
      "a a a b b b"
      "a a a b b b"
      "c c c c d d"
      "c c c c d d"
      "e e e f f f"
      "e e e f f f"
      "g g g h h h"
      "i i i h h h"
      "i i i j j j"
      "k k l l m m";
    grid-auto-rows: clamp(84px, 17vw, 140px);
    width: calc(100% - 24px);
    padding-bottom: 72px;
  }

  .social-proof .social-shot,
  .social-proof .social-shot:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .social-proof .social-proof-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "a"
      "b"
      "c"
      "d"
      "e"
      "f"
      "g"
      "h"
      "i"
      "j"
      "k"
      "l"
      "m";
    grid-auto-rows: auto;
    gap: 10px;
    width: calc(100% - 16px);
  }

  .social-proof .social-shot,
  .social-proof .social-shot:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .social-proof .social-shot:nth-child(2),
  .social-proof .social-shot:nth-child(8),
  .social-proof .social-shot:nth-child(9) {
    aspect-ratio: 16 / 10;
  }
}

/* Twenty-image gallery: three and four images alternate by row. */
.social-proof .social-proof-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-areas: none;
  grid-auto-rows: clamp(118px, 13vw, 220px);
}

.social-proof .social-shot,
.social-proof .social-shot:nth-child(n) {
  grid-area: auto;
  grid-column: span 3;
  grid-row: auto;
}

.social-proof .social-shot:nth-child(7n + 1),
.social-proof .social-shot:nth-child(7n + 2),
.social-proof .social-shot:nth-child(7n + 3),
.social-proof .social-shot:nth-child(n + 18) {
  grid-column: span 4;
}

@media (max-width: 560px) {
  .social-proof .social-proof-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .social-proof .social-shot,
  .social-proof .social-shot:nth-child(n) {
    grid-column: auto;
  }
}


/* Requested product-card badge refinement and social-proof copy adjustment. */
.offer-meta-row {
  min-height: 22px;
  align-items: center;
}

.offer-meta-row small {
  margin-bottom: 0;
  line-height: 1;
}

.product-note-badge {
  flex-shrink: 0;
  gap: 5px;
  padding: 4px 7px;
  font-size: 0.54rem;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(-1px);
}

.product-note-badge::before {
  width: 4px;
  height: 4px;
}

.social-proof {
  padding-top: clamp(52px, 6vw, 82px);
  padding-bottom: 0;
}

.social-proof .social-proof-head {
  max-width: 980px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.social-proof .social-proof-lead {
  max-width: 900px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

@media (max-width: 560px) {
  .product-note-badge {
    font-size: 0.5rem;
    padding: 4px 6px;
  }

  .social-proof {
    padding-top: 44px;
  }
}


/* Social proof gallery override: keep every image uncropped at its original ratio,
   make the section edges clean/straight, and allow up to four images per row. */
.social-proof .social-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-areas: none;
  grid-auto-rows: auto;
  gap: clamp(10px, 1.15vw, 16px);
  width: calc(100% - clamp(20px, 3vw, 56px));
  margin: 0 auto;
  padding: 0 0 38px;
  align-items: start;
}

.social-proof .social-shot,
.social-proof .social-shot:nth-child(n) {
  grid-area: auto !important;
  grid-column: auto !important;
  grid-row: auto !important;
  width: 100%;
  aspect-ratio: auto !important;
  overflow: hidden;
}

.social-proof .social-shot img,
.social-proof .social-shot:nth-child(n) img {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

.social-proof .social-shot:hover img,
.social-proof .social-shot:nth-child(n):hover img {
  transform: none !important;
}

@media (max-width: 1100px) {
  .social-proof .social-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .social-proof .social-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .social-proof .social-proof-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Social proof stacked collage override --- */
.social-proof .social-proof-grid.social-proof-grid--stacked {
  width: min(1680px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.social-proof .social-shot.social-shot--stacked,
.social-proof .social-shot.social-shot--stacked:nth-child(n) {
  grid-column: auto !important;
  grid-row: auto !important;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: auto !important;
  min-height: 0;
  background: transparent;
  box-shadow: none;
}

.social-proof .social-shot.social-shot--stacked img,
.social-proof .social-shot.social-shot--stacked:nth-child(n) img {
  width: 100%;
  height: auto !important;
  display: block;
  object-fit: contain !important;
  aspect-ratio: auto;
  transform: none !important;
}

.social-proof .social-shot.social-shot--stacked:hover img,
.social-proof .social-shot.social-shot--stacked:nth-child(n):hover img {
  transform: none !important;
}

@media (max-width: 767px) {
  .social-proof .social-proof-grid.social-proof-grid--stacked {
    width: calc(100% - 24px);
  }
}


/* Split homepage hero inspired by the supplied reference. */
.intro.intro-split-hero {
  height: auto;
  min-height: 100vh;
  padding: clamp(102px, 12vh, 138px) clamp(20px, 4vw, 64px) clamp(48px, 7vw, 88px);
  background:
    radial-gradient(circle at 78% 18%, rgba(24, 191, 112, 0.13), transparent 34%),
    linear-gradient(145deg, #f8fbf9 0%, #eef7f1 52%, #e7f2ea 100%);
}

.split-hero-inner {
  width: min(1380px, 100%);
  min-height: calc(100vh - clamp(150px, 19vh, 220px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
}

.split-hero-visual,
.split-hero-copy {
  min-width: 0;
}

.split-hero-visual {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.4vw, 32px);
}

.intro .split-hero-brand {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #0d1210;
  font-size: clamp(4rem, 8.5vw, 8.2rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-align: left;
  text-shadow: none;
  white-space: nowrap;
}

.intro .split-hero-brand span {
  color: #18bf70;
}

.split-hero-image {
  position: relative;
  min-height: clamp(330px, 48vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(13, 18, 16, 0.1);
  border-radius: clamp(20px, 2.6vw, 38px);
  background: #fff;
  box-shadow: 0 30px 80px rgba(17, 35, 24, 0.13);
}

.split-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(10, 23, 15, 0.06));
}

.split-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: clamp(18px, 3vw, 48px);
  object-fit: contain;
  object-position: center;
}

.split-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid rgba(24, 191, 112, 0.16);
  border-radius: clamp(20px, 2.6vw, 38px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(17, 35, 24, 0.1);
  backdrop-filter: blur(18px);
}

.split-hero-kicker {
  margin-bottom: clamp(20px, 3vw, 34px);
  color: #18a962;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.split-hero-copy p {
  margin: 0;
  color: #111915;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.65vw, 3.15rem);
  font-weight: 650;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.split-hero-copy .cta {
  margin-top: clamp(30px, 4vw, 48px);
}

@media (max-width: 980px) {
  .intro.intro-split-hero {
    min-height: auto;
    padding-top: 106px;
  }

  .split-hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .split-hero-copy {
    order: 2;
  }
}

@media (max-width: 560px) {
  .intro.intro-split-hero {
    padding-inline: 14px;
    padding-bottom: 44px;
  }

  .intro .split-hero-brand {
    font-size: 18vw;
  }

  .split-hero-image {
    min-height: 300px;
  }

  .split-hero-copy {
    padding: 26px 22px;
  }

  .split-hero-copy p {
    font-size: clamp(1.42rem, 7vw, 2.1rem);
  }
}


/* Homepage hero: copy on the left, product image on the right, while preserving the original neon scroll reveal. */
.intro.intro-reboots-layout {
  height: 240vh;
  min-height: 0;
  padding: 0;
  background: #f5faf7;
}

.intro-reboots-layout .pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 28%, rgba(24, 191, 112, 0.12), transparent 35%),
    linear-gradient(135deg, #f8fbf9 0%, #edf6f0 100%);
}

.intro-reboots-layout .pin::after {
  background: linear-gradient(90deg, rgba(248, 251, 249, 0.98) 0%, rgba(248, 251, 249, 0.9) 42%, rgba(248, 251, 249, 0.22) 67%, rgba(248, 251, 249, 0.04) 100%);
}

.intro-reboots-layout .product-wrap {
  inset: 0 0 0 43%;
  width: 57%;
  height: 100%;
  background: transparent;
}

.intro-reboots-layout .product-wrap img {
  width: 100%;
  height: 100%;
  padding: clamp(96px, 11vh, 138px) clamp(24px, 4vw, 72px) clamp(54px, 7vh, 86px);
  object-fit: contain;
  object-position: center right;
}

.intro-reboots-layout .content {
  inset: 0 auto 0 0;
  width: 54%;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(112px, 14vh, 160px) 3vw clamp(72px, 9vh, 100px) clamp(24px, 6vw, 92px);
  text-align: left;
}

.hero-copy-panel {
  width: min(620px, 100%);
}

.intro-reboots-layout .brand-headline {
  width: 100%;
  margin: 0;
  font-size: clamp(4rem, 8vw, 8.2rem);
  line-height: 0.82;
  text-align: left;
  white-space: nowrap;
}

.intro-reboots-layout .hero-long-copy {
  max-width: 52ch;
  margin-top: clamp(24px, 3vw, 38px);
  color: rgba(17, 25, 21, 0.78);
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.25vw, 1.18rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
  text-shadow: none;
}

.intro-reboots-layout .cta-wrap {
  margin-top: clamp(24px, 3vw, 36px);
}

.intro-reboots-layout .wordmark {
  z-index: 8;
}

@media (max-width: 900px) {
  .intro.intro-reboots-layout {
    height: 220vh;
  }

  .intro-reboots-layout .pin::after {
    background: linear-gradient(180deg, rgba(248, 251, 249, 0.97) 0%, rgba(248, 251, 249, 0.9) 45%, rgba(248, 251, 249, 0.22) 72%, transparent 100%);
  }

  .intro-reboots-layout .content {
    width: 100%;
    height: 55%;
    padding: 108px 24px 20px;
    justify-content: flex-start;
  }

  .intro-reboots-layout .product-wrap {
    inset: 40% 0 0;
    width: 100%;
    height: 60%;
  }

  .intro-reboots-layout .product-wrap img {
    padding: 20px 22px 38px;
    object-position: center bottom;
  }

  .intro-reboots-layout .brand-headline {
    font-size: clamp(3.5rem, 15vw, 6.8rem);
  }

  .intro-reboots-layout .hero-long-copy {
    max-width: 62ch;
    font-size: 0.98rem;
    line-height: 1.65;
  }
}

@media (max-width: 560px) {
  .intro-reboots-layout .content {
    padding-inline: 16px;
  }

  .intro-reboots-layout .brand-headline {
    font-size: 17vw;
  }

  .intro-reboots-layout .hero-long-copy {
    font-size: 0.92rem;
  }
}

/* =========================================================
   IPAD / TABLET FINAL OVERRIDES
   Csak a tablet- és érintőkijelzős megjelenést módosítja.
   ========================================================= */

/* Általános tabletbeállítások, beleértve a 12,9 colos iPad Prót. */
@media (min-width: 700px) and (max-width: 1366px) {
  .wrap {
    padding-right: max(28px, env(safe-area-inset-right));
    padding-left: max(28px, env(safe-area-inset-left));
  }

  .section {
    padding-top: clamp(78px, 9vw, 116px);
    padding-bottom: clamp(78px, 9vw, 116px);
  }

  .nav {
    padding:
      max(18px, env(safe-area-inset-top))
      max(28px, env(safe-area-inset-right))
      18px
      max(28px, env(safe-area-inset-left));
  }

  .nav.scrolled {
    padding:
      max(13px, env(safe-area-inset-top))
      max(28px, env(safe-area-inset-right))
      13px
      max(28px, env(safe-area-inset-left));
  }

  .nav-overlay .inner {
    padding-right: max(40px, env(safe-area-inset-right));
    padding-left: max(40px, env(safe-area-inset-left));
  }

  .nav-overlay .meta {
    left: max(40px, env(safe-area-inset-left));
    bottom: max(34px, env(safe-area-inset-bottom));
  }

  .nav-overlay .link {
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    line-height: 1.05;
  }

  .offer-card,
  .athlete,
  .form-card,
  .cart-summary,
  .book-card {
    min-width: 0;
  }

  .offer-media {
    height: clamp(205px, 24vw, 260px);
  }

  .offer-body {
    padding: 22px;
  }

  .gallery .gallery-grid {
    width: 100%;
    gap: clamp(18px, 2.4vw, 28px);
  }

  .gallery .athlete,
  .gallery .athlete:nth-child(n) {
    min-width: 0;
  }

  /* Az iPad Safari ne nagyítson automatikusan az űrlapmezőkre. */
  .field input,
  .field select,
  .field textarea {
    min-height: 52px;
    font-size: 16px;
  }

  .field textarea {
    min-height: 118px;
  }

  .qty-controls button {
    min-width: 44px;
    min-height: 44px;
    padding: 8px 12px;
  }

  .toggle,
  .cta,
  .offer-add,
  .submit,
  .remove-item,
  .clear-cart,
  .floating-cart,
  .social-links a {
    min-height: 44px;
  }

  .toggle,
  .social-links a {
    min-width: 44px;
  }

  .floating-cart {
    right: max(22px, env(safe-area-inset-right));
    bottom: max(22px, env(safe-area-inset-bottom));
  }

  .compact-closing-inner {
    padding-right: max(28px, env(safe-area-inset-right));
    padding-left: max(28px, env(safe-area-inset-left));
  }

  .compact-closing .bar {
    padding-right: max(28px, env(safe-area-inset-right));
    padding-bottom: max(34px, env(safe-area-inset-bottom));
    padding-left: max(28px, env(safe-area-inset-left));
  }
}

/* Álló iPad: iPad mini, alap iPad, iPad Air és iPad Pro. */
@media (min-width: 700px) and (max-width: 1024px) and (orientation: portrait) {
  .intro.intro-reboots-layout {
    height: 210vh;
    height: 210svh;
  }

  .intro-reboots-layout .pin {
    height: 100vh;
    height: 100svh;
  }

  .intro-reboots-layout .pin::after {
    background: linear-gradient(
      180deg,
      rgba(248, 251, 249, 0.98) 0%,
      rgba(248, 251, 249, 0.93) 43%,
      rgba(248, 251, 249, 0.34) 68%,
      rgba(248, 251, 249, 0.03) 100%
    );
  }

  .intro-reboots-layout .content {
    inset: 0;
    width: 100%;
    height: 48%;
    align-items: flex-start;
    justify-content: flex-start;
    padding:
      max(104px, calc(env(safe-area-inset-top) + 82px))
      max(36px, env(safe-area-inset-right))
      18px
      max(36px, env(safe-area-inset-left));
    text-align: left;
  }

  .hero-copy-panel {
    width: min(760px, 100%);
  }

  .intro-reboots-layout .brand-headline {
    width: 100%;
    max-width: 100%;
    font-size: clamp(5.1rem, 12.8vw, 7.3rem);
    white-space: nowrap;
  }

  .intro-reboots-layout .hero-long-copy {
    max-width: 60ch;
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .intro-reboots-layout .cta-wrap {
    margin-top: 24px;
  }

  .intro-reboots-layout .product-wrap {
    inset: 43% 0 0;
    width: 100%;
    height: 57%;
  }

  .intro-reboots-layout .product-wrap img {
    width: 100%;
    height: 100%;
    padding:
      8px
      max(30px, env(safe-area-inset-right))
      34px
      max(30px, env(safe-area-inset-left));
    object-fit: contain;
    object-position: center bottom;
  }

  .intro .cue {
    bottom: max(18px, env(safe-area-inset-bottom));
  }

  .stats .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stat {
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
  }

  .stat:nth-child(3)::before {
    display: block;
  }

  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .gallery .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .book-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding: clamp(34px, 5vw, 52px);
  }

  .intro-col {
    width: 100%;
    max-width: 720px;
  }

  .form-card,
  .cart-summary {
    width: 100%;
    padding: clamp(28px, 4vw, 40px);
  }

  .frow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .compact-closing-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .compact-closing-inner .footer-intro {
    grid-column: 1 / -1;
  }
}

/* Fekvő iPad, beleértve a 1366 px széles 12,9 colos iPad Prót. */
@media (min-width: 901px) and (max-width: 1366px) and (orientation: landscape) {
  .intro.intro-reboots-layout {
    height: 220vh;
    height: 220svh;
  }

  .intro-reboots-layout .pin {
    height: 100vh;
    height: 100svh;
  }

  .intro-reboots-layout .content {
    width: 51%;
    padding:
      max(88px, calc(env(safe-area-inset-top) + 68px))
      24px
      max(50px, env(safe-area-inset-bottom))
      max(38px, env(safe-area-inset-left));
  }

  .intro-reboots-layout .product-wrap {
    inset: 0 0 0 47%;
    width: 53%;
  }

  .intro-reboots-layout .product-wrap img {
    padding:
      clamp(68px, 10vh, 104px)
      max(22px, env(safe-area-inset-right))
      clamp(34px, 6vh, 62px)
      22px;
    object-position: center;
  }

  .intro-reboots-layout .brand-headline {
    font-size: clamp(4.3rem, 7vw, 6.4rem);
  }

  .intro-reboots-layout .hero-long-copy {
    max-width: 47ch;
    margin-top: clamp(20px, 2.3vw, 30px);
    font-size: clamp(0.96rem, 1.15vw, 1.08rem);
    line-height: 1.62;
  }

  .intro-reboots-layout .cta-wrap {
    margin-top: clamp(20px, 2.2vw, 28px);
  }

  .offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .gallery .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .book-card {
    gap: clamp(28px, 4vw, 52px);
    padding: clamp(34px, 4.5vw, 58px);
  }
}

/* A rendelési blokk közepes iPad-méreten egy oszlopra vált. */
@media (min-width: 700px) and (max-width: 1194px) {
  .book-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .intro-col {
    width: 100%;
    max-width: 760px;
  }

  .form-card,
  .cart-summary {
    width: 100%;
  }
}

/* Alacsonyabb fekvő Safari-nézet. */
@media (min-width: 901px) and (max-width: 1366px) and (orientation: landscape) and (max-height: 900px) {
  .intro-reboots-layout .content {
    padding-top: max(76px, calc(env(safe-area-inset-top) + 58px));
    padding-bottom: max(38px, env(safe-area-inset-bottom));
  }

  .intro-reboots-layout .product-wrap img {
    padding-top: 58px;
    padding-bottom: 28px;
  }

  .intro-reboots-layout .brand-headline {
    font-size: clamp(4rem, 6.6vw, 5.8rem);
  }

  .intro-reboots-layout .hero-long-copy {
    margin-top: 18px;
    line-height: 1.55;
  }

  .intro-reboots-layout .cta-wrap {
    margin-top: 18px;
  }

  .intro .cue {
    bottom: max(12px, env(safe-area-inset-bottom));
  }
}

/* Érintőkijelzős működés. */
@media (hover: none), (pointer: coarse) {
  a,
  button,
  input,
  select,
  textarea,
  label {
    -webkit-tap-highlight-color: rgba(20, 201, 111, 0.16);
  }

  button,
  .cta,
  .offer-add,
  .floating-cart,
  .toggle,
  .social-links a {
    touch-action: manipulation;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  .magnetic,
  .cta:hover,
  .offer-card:hover,
  .athlete:hover,
  .floating-cart:hover {
    transform: none !important;
  }

  .offer-card:hover img,
  .athlete:hover img,
  .social-proof .social-shot:hover img {
    transform: none !important;
  }

  button:active,
  .cta:active,
  .offer-add:active,
  .floating-cart:active {
    transform: scale(0.985);
  }
}

/* Csökkentett mozgás beállítás tiszteletben tartása. */
@media (prefers-reduced-motion: reduce) {
  .grain,
  .cue-bar,
  .mq .track {
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Rendelési sikerüzenet – fekete átfedő szöveg javítása */

.order-success {
  position: relative !important;
  isolation: isolate;
  color: #ffffff !important;
}

.order-success::after,
.order-success h3::before,
.order-success h3::after {
  content: none !important;
  display: none !important;
}

.order-success h3 {
  position: relative !important;
  z-index: 5 !important;
  display: block !important;
  margin: 0 0 22px !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: clamp(30px, 5vw, 52px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  text-shadow: none !important;
  background: none !important;
}

.order-success .eyebrow {
  position: relative !important;
  z-index: 5 !important;
  color: #23e98c !important;
  -webkit-text-fill-color: #23e98c !important;
}

.order-success p {
  position: relative !important;
  z-index: 5 !important;
  color: rgba(255, 255, 255, 0.86) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.86) !important;
}

.order-success strong {
  position: relative !important;
  z-index: 5 !important;
  color: #22f58b !important;
  -webkit-text-fill-color: #22f58b !important;
}

@media (max-width: 640px) {
  .order-success h3 {
    font-size: clamp(28px, 9vw, 38px) !important;
  }
}