/* ═══════════════════════════════════════════════
   RUNNR / Homepage Takeover Concept
   Design system: near-black canvas · volt lime · Archivo display
   ═══════════════════════════════════════════════ */

:root {
  --bg: #070808;
  --panel: #0e1011;
  --panel-2: #14171a;
  --line: rgba(244, 246, 242, 0.08);
  --ink: #f4f6f2;
  --ink-dim: #9ba39e;
  --volt: #d6ff3b;
  --volt-dim: rgba(214, 255, 59, 0.14);
  --tp-green: #00b67a;
  --font-display: "Archivo", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

::selection { background: var(--volt); color: #0a0a0a; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.volt { color: var(--volt); }

/* ═══════════ PRELOADER ═══════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s var(--ease-out), visibility 0.8s;
}
.preloader.done { transform: translateY(-100%); visibility: hidden; }
.preloader-inner { text-align: center; }
.pre-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-stretch: 125%;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.02em;
}
.pre-count {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 1;
  color: var(--volt);
  margin: 12px 0 20px;
  min-height: 1em;
}
.pre-track {
  width: min(260px, 60vw);
  height: 2px;
  background: var(--line);
  margin: 0 auto;
  overflow: hidden;
}
.pre-track span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--volt);
  transition: width 0.4s linear;
}

/* ═══════════ CURSOR ═══════════ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9500;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.cursor-dot { width: 6px; height: 6px; background: var(--volt); }
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(214, 255, 59, 0.5);
  transition: width 0.25s, height 0.25s, border-color 0.25s, background 0.25s;
}
.cursor-ring.hovering {
  width: 58px; height: 58px;
  background: rgba(214, 255, 59, 0.08);
  border-color: var(--volt);
}
@media (pointer: fine) {
  .cursor-dot, .cursor-ring { display: block; }
}

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 8000;
  transition: transform 0.45s var(--ease-out), background 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(7, 8, 8, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav.hidden { transform: translateY(-100%); visibility: hidden; transition: transform 0.45s var(--ease-out), visibility 0s 0.45s, background 0.3s; }
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 56px);
  max-width: 1560px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-stretch: 125%;
  font-size: 1.55rem;
  letter-spacing: 0.01em;
}
.nav-links { display: flex; gap: clamp(16px, 2.6vw, 38px); }
.nav-links a {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--volt);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-sale { color: var(--volt) !important; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-trust {
  font-size: 0.78rem;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px 14px;
  white-space: nowrap;
}
.tp-star { color: var(--tp-green); }
.nav-icon {
  background: none;
  border: none;
  color: var(--ink);
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  position: relative;
  transition: color 0.25s;
}
.nav-icon:hover { color: var(--volt); }
.nav-icon svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute;
  top: 0; right: 0;
  background: var(--volt);
  color: #0a0a0a;
  font-size: 0.66rem;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 100px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  transition: transform 0.3s var(--ease-out);
}
.cart-count.bump { animation: bump 0.45s var(--ease-out); }
@keyframes bump { 40% { transform: scale(1.6); } }
.scroll-progress {
  height: 2px;
  width: 0%;
  background: var(--volt);
}

/* burger + mobile menu (<=720px) */
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 7500;
  background: rgba(7, 8, 8, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px clamp(24px, 8vw, 48px) 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0s 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transition: opacity 0.4s var(--ease-out); }
.mobile-links { display: flex; flex-direction: column; gap: 8px; }
.mobile-links a {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-stretch: 125%;
  font-size: clamp(2.6rem, 11vw, 4rem);
  text-transform: uppercase;
  line-height: 1.15;
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.55s var(--ease-out), opacity 0.4s;
}
.mobile-menu.open .mobile-links a { transform: none; opacity: 1; }
.mobile-menu.open .mobile-links a:nth-child(2) { transition-delay: 0.06s; }
.mobile-menu.open .mobile-links a:nth-child(3) { transition-delay: 0.12s; }
.mobile-menu.open .mobile-links a:nth-child(4) { transition-delay: 0.18s; }
.mobile-menu-foot {
  margin-top: 48px;
  color: var(--ink-dim);
  font-size: 0.9rem;
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 100px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn-volt {
  background: var(--volt);
  color: #0a0a0a;
  box-shadow: 0 0 0 rgba(214, 255, 59, 0);
}
.btn-volt:hover {
  box-shadow: 0 8px 40px rgba(214, 255, 59, 0.35);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(244, 246, 242, 0.25);
}
.btn-ghost:hover {
  border-color: var(--volt);
  color: var(--volt);
  transform: translateY(-2px);
}
.btn-lg { padding: 20px 48px; font-size: 1.05rem; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: calc(var(--nav-h) + 40px) clamp(20px, 4vw, 56px) 40px;
  max-width: 1560px;
  margin: 0 auto;
  width: 100%;
}
.hero-grid > * { min-width: 0; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--ink-dim);
  margin-bottom: 26px;
}
.hero-trust b { color: var(--ink); }
.tp-stars { color: var(--tp-green); letter-spacing: 2px; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-stretch: 125%;
  font-size: clamp(2.9rem, 7.8vw, 8.4rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 28px;
  /* let the outline word run under the hero image */
  width: 145%;
  max-width: none;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.hero-title .word.in { transform: translateY(0); }
.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--volt);
  text-stroke: 2px var(--volt);
}
.hero-sub {
  max-width: 46ch;
  color: var(--ink-dim);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { display: flex; justify-content: flex-end; }
.hero-img-wrap {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease-out);
}
.hero-img-wrap:hover img { transform: scale(1.14); }
.hero-img-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(214, 255, 59, 0.25);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.hero-chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(7, 8, 8, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 600;
}
.chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--volt);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(214, 255, 59, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(214, 255, 59, 0); }
}

.hero-marquee {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: rgba(7, 8, 8, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.marquee-track, .ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 110%;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════ TICKER ═══════════ */
.ticker {
  background: var(--volt);
  padding: 13px 0;
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
  margin: -12px 0 0;
  position: relative;
  z-index: 3;
}
.ticker-track { animation-duration: 22s; }
.ticker-track span {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-stretch: 120%;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #0a0a0a;
}

/* ═══════════ SECTIONS ═══════════ */
.section {
  padding: clamp(72px, 8vw, 116px) clamp(20px, 4vw, 56px) clamp(48px, 5.5vw, 84px);
  max-width: 1560px;
  margin: 0 auto;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-stretch: 125%;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.section-title .index {
  font-size: 0.4em;
  vertical-align: super;
  margin-right: 10px;
  -webkit-text-stroke: 0;
}
.section-sub { color: var(--ink-dim); max-width: 52ch; }
.section-link {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.25s;
  white-space: nowrap;
}
.section-link:hover { color: var(--volt); }
.arrow { display: inline-block; transition: transform 0.3s var(--ease-out); }
.section-link:hover .arrow, .split-panel:hover .arrow { transform: translateX(6px); }

/* ═══════════ PRODUCT CARDS ═══════════ */
.bestsellers { position: relative; }
.product-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(240px, 24vw, 330px);
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px;
  scrollbar-width: none;
}
.product-row::-webkit-scrollbar { display: none; }
.card {
  scroll-snap-align: start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
}
.card:hover {
  border-color: rgba(214, 255, 59, 0.35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}
.card-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e8e8e8;
}
.card-link { position: absolute; inset: 0; z-index: 1; }
.card-info h3 a:hover { color: var(--volt); }
.feature-cta .section-link { width: 100%; }
.card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.8s var(--ease-out);
}
.card-media .img-b { opacity: 0; }
.card:hover .img-b { opacity: 1; }
.card:hover .card-media img { transform: scale(1.05); }
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 100px;
}
.badge-volt { background: var(--volt); color: #0a0a0a; }
.quick-add {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 10, 10, 0.85);
  color: var(--volt);
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out), background 0.3s, color 0.3s;
}
.card:hover .quick-add { opacity: 1; transform: translateY(0); }
.quick-add:hover { background: var(--volt); color: #0a0a0a; }
.card-info { padding: 18px 20px 22px; }
.card-info h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: 1.06rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.card-meta {
  font-size: 0.82rem;
  color: var(--ink-dim);
  margin: 4px 0 10px;
}
.price b { font-size: 1.05rem; font-weight: 700; }
.price s { color: var(--ink-dim); margin-left: 8px; font-size: 0.9rem; }
.head-tools {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
}
.row-nav {
  display: flex;
  gap: 10px;
}
.row-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1.1rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.row-btn:hover { background: var(--volt); color: #0a0a0a; border-color: var(--volt); }

/* touch devices: quick-add always visible */
@media (hover: none) {
  .quick-add { opacity: 1; transform: none; }
}

/* ═══════════ PDP FEATURE STORY ═══════════ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 90px);
  align-items: start;
}
.feature-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.feature-frame {
  position: relative;
  aspect-ratio: 4 / 4.6;
  border-radius: 20px;
  overflow: hidden;
  background: #dfe1e0;
  border: 1px solid var(--line);
}
.feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.7s ease, transform 1.1s var(--ease-out);
}
.feature-img.is-active { opacity: 1; transform: scale(1); }
.feature-counter {
  position: absolute;
  right: 18px;
  top: 18px;
  background: rgba(7, 8, 8, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
  border-radius: 100px;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.feature-counter span { color: var(--volt); }
.feature-steps { display: flex; flex-direction: column; }
.step {
  padding: clamp(40px, 6vh, 80px) 0;
  border-bottom: 1px solid var(--line);
  opacity: 0.3;
  transition: opacity 0.5s;
}
.step.is-active { opacity: 1; }
.step-no {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.12em;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 120%;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  text-transform: uppercase;
  margin: 10px 0 14px;
  line-height: 1.05;
}
.step p { color: var(--ink-dim); max-width: 46ch; }
.feature-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 36px 0 0;
}
.feature-price { display: flex; flex-direction: column; gap: 3px; }
.fp-label {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.fp-price { font-size: 1.5rem; font-weight: 700; }
.fp-price s { color: var(--ink-dim); font-size: 1rem; margin-left: 8px; }
.fp-rating { font-size: 0.82rem; color: var(--ink-dim); }
.fp-rating, .review-stars { letter-spacing: 1px; }
.fp-link { text-decoration: underline; text-underline-offset: 3px; }
.fp-link:hover { color: var(--volt); }
.reassure {
  width: 100%;
  font-size: 0.82rem;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}
.sale-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }

/* ═══════════ COLLECTIONS SPLIT ═══════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 28px);
}
.split-panel {
  position: relative;
  aspect-ratio: 4 / 4.7;
  border-radius: 20px;
  overflow: hidden;
  display: block;
}
.split-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.split-panel:hover img { transform: scale(1.07); }
.split-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 8, 8, 0.85) 0%, rgba(7, 8, 8, 0.1) 45%, rgba(7, 8, 8, 0.15) 100%);
  transition: background 0.4s;
}
.split-label {
  position: absolute;
  left: clamp(20px, 3vw, 40px);
  bottom: clamp(20px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.split-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--volt);
  font-weight: 600;
}
.split-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-stretch: 125%;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
}
.split-cta {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 8px;
  transition: color 0.3s;
}
.split-panel:hover .split-cta { color: var(--ink); }

/* ═══════════ TECH ═══════════ */
.tech { position: relative; overflow: hidden; }
.tech-bg-word {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-stretch: 125%;
  font-size: clamp(8rem, 22vw, 20rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 246, 242, 0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.tech-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.tech-stat {
  background: rgba(14, 16, 17, 0.86);
  padding: clamp(28px, 4vw, 56px) clamp(20px, 2.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.35s;
}
.tech-stat:hover { background: var(--panel-2); }
.tech-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-stretch: 120%;
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  line-height: 1;
  color: var(--volt);
  white-space: nowrap;
}
.tech-label { color: var(--ink-dim); font-size: 0.95rem; }

/* ═══════════ SALE CAMPAIGN ═══════════ */
.sale {
  position: relative;
  margin: clamp(40px, 6vw, 90px) 0;
  padding: clamp(90px, 12vw, 170px) clamp(20px, 4vw, 56px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(214, 255, 59, 0.13), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 90%, rgba(214, 255, 59, 0.09), transparent 55%),
    var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sale::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent 0 70%, rgba(214, 255, 59, 0.06) 78%, transparent 86%);
  animation: sweep 9s linear infinite;
  pointer-events: none;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.sale-inner {
  position: relative;
  max-width: 1560px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.sale-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.sale-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-stretch: 125%;
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 0.88;
  text-transform: uppercase;
}
.sale-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}
.sale-off {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  letter-spacing: 0.12em;
}
.countdown {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.6vw, 18px);
  margin: 8px 0 14px;
}
.cd-cell {
  background: rgba(7, 8, 8, 0.75);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(12px, 1.8vw, 20px) clamp(14px, 2.2vw, 26px);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: clamp(64px, 8vw, 96px);
}
.cd-cell span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1;
  color: var(--volt);
  font-variant-numeric: tabular-nums;
}
.cd-cell label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 6px;
}
.cd-sep {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: var(--ink-dim);
}

/* ═══════════ REVIEWS ═══════════ */
.tp-badge {
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 20px;
  color: var(--ink-dim);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.review {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 2.6vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}
.review:hover { transform: translateY(-6px); border-color: rgba(214, 255, 59, 0.3); }
.review-stars { color: var(--tp-green); }
.review blockquote {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
}
.review figcaption { font-size: 0.85rem; color: var(--ink-dim); }

/* ═══════════ CLUB ═══════════ */
.club-card {
  background:
    radial-gradient(ellipse 70% 90% at 85% 10%, rgba(214, 255, 59, 0.14), transparent 55%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(36px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.club-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-stretch: 125%;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 0.95;
  margin-bottom: 16px;
}
.club-copy p { color: var(--ink-dim); max-width: 44ch; }
.club-field {
  display: flex;
  gap: 10px;
  background: rgba(7, 8, 8, 0.6);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px 6px 6px 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.club-field:focus-within {
  border-color: var(--volt);
  box-shadow: 0 0 0 4px rgba(214, 255, 59, 0.12);
}
.club-field input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
}
.club-field input::placeholder { color: var(--ink-dim); }
.club-field .btn { padding: 14px 26px; white-space: nowrap; }
.club-success {
  margin-top: 14px;
  color: var(--volt);
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}
.club-success.show { opacity: 1; transform: none; visibility: visible; }
.club-success { visibility: hidden; }
.club-error {
  margin-top: 14px;
  color: #ff7a6e;
  font-size: 0.9rem;
  display: none;
}
.club-error.show { display: block; }
.club-field.invalid { border-color: rgba(255, 122, 110, 0.7); }

/* ═══════════ FOOTER ═══════════ */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 56px) 28px;
  max-width: 1560px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  margin-bottom: clamp(50px, 7vw, 90px);
}
.footer-brand p { color: var(--ink-dim); margin-top: 14px; font-size: 0.95rem; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.footer-col a {
  color: var(--ink-dim);
  font-size: 0.95rem;
  transition: color 0.25s;
  width: fit-content;
}
.footer-col a:hover { color: var(--volt); }
.footer-word {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-stretch: 125%;
  font-size: clamp(6rem, 20vw, 19rem);
  line-height: 0.8;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 246, 242, 0.07);
  user-select: none;
  pointer-events: none;
  margin-bottom: -0.08em;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 0.82rem;
  color: var(--ink-dim);
}
.footer-credit { color: rgba(214, 255, 59, 0.6); }
.pay-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-chips span {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
}

/* ═══════════ FOCUS VISIBILITY ═══════════ */
:is(a, button):focus-visible {
  outline: 2px solid var(--volt);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible, .row-btn:focus-visible, .quick-add:focus-visible { border-radius: 100px; }
.quick-add:focus-visible,
.card:focus-within .quick-add { opacity: 1; transform: translateY(0); }

/* ═══════════ REVEALS ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; align-content: center; gap: 36px; }
  .hero-title { width: 100%; }
  .hero-visual { justify-content: flex-start; }
  .hero-img-wrap { width: min(380px, 82vw); aspect-ratio: 4 / 4.4; }
  .nav-trust { display: none; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .club-card { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-sticky { position: relative; top: 0; }
  .feature-frame { max-width: 560px; }
  .feature-counter { display: none; }
  .step { padding: 28px 0 34px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-trust { display: none; }
  .split { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.3rem, 9.6vw, 4.2rem); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cd-cell label { font-size: 0.6rem; }
  .club-field { flex-direction: column; border-radius: 22px; padding: 14px; gap: 12px; }
  .club-field input { padding: 6px 10px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ═══════════ PAGE TRANSITION WIPE ═══════════ */
.page-wipe {
  position: fixed;
  inset: 0;
  z-index: 10500;
  background: var(--volt);
  display: grid;
  place-items: center;
  transform: translateY(100%);
  pointer-events: none;
}
.page-wipe span {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-stretch: 125%;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  color: #0a0a0a;
}
.page-wipe .wipe-dot { color: var(--ink); }
.page-wipe.wipe-in { animation: wipeIn 0.5s var(--ease-out) forwards; }
.page-wipe.wipe-out { transform: translateY(0); animation: wipeOut 0.65s var(--ease-out) 0.15s forwards; }
@keyframes wipeIn { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes wipeOut { from { transform: translateY(0); } to { transform: translateY(-100%); } }

/* ═══════════ LETTER STAGGER (section titles) ═══════════ */
.section-title .wd { display: inline-block; white-space: nowrap; }
.section-title .ch {
  display: inline-block;
  transform: translateY(1.15em) rotate(4deg);
  opacity: 0;
  transition: transform 0.7s var(--ease-out), opacity 0.35s;
  transition-delay: calc(var(--i) * 26ms);
}
.section-title.in .ch, .section-title.chars-in .ch { transform: none; opacity: 1; }

/* ═══════════ PDP ═══════════ */
.pdp { max-width: 1560px; margin: 0 auto; padding: calc(var(--nav-h) + 28px) clamp(20px, 4vw, 56px) 0; }
.crumbs { font-size: 0.85rem; color: var(--ink-dim); display: flex; gap: 10px; margin-bottom: 26px; }
.crumbs a:hover { color: var(--volt); }
.crumbs [aria-current] { color: var(--ink); }
.pdp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}
.gallery { display: grid; grid-template-columns: 84px 1fr; gap: 14px; position: sticky; top: calc(var(--nav-h) + 20px); }
.thumbs { display: flex; flex-direction: column; gap: 10px; }
.thumb {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #e8e8e8;
  padding: 0;
  aspect-ratio: 1;
  opacity: 0.55;
  transition: opacity 0.25s, border-color 0.25s, transform 0.3s var(--ease-out);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb-info {
  background: var(--panel-2);
  display: grid;
  place-items: center;
  opacity: 0.75;
}
.thumb-info::before {
  content: "+";
  color: var(--volt);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
}
.thumb-info::after {
  content: attr(data-label);
  color: var(--ink-dim);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  margin-top: 3px;
}
.thumb-info.is-active::after, .thumb-info:hover::after { color: var(--ink); }
.thumb:hover { opacity: 0.85; transform: translateX(3px); }
.thumb.is-active { opacity: 1; border-color: var(--volt); }
.gallery-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #e8e8e8;
  aspect-ratio: 4 / 4.4;
  border: 1px solid var(--line);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  transform-origin: var(--zx, 50%) var(--zy, 50%);
}
.gallery-main:hover img { transform: scale(1.6); }
.gallery-main.swapping img { animation: imgSwap 0.55s var(--ease-out); }
@keyframes imgSwap {
  0% { clip-path: inset(0 0 100% 0); transform: scale(1.06); }
  100% { clip-path: inset(0 0 0 0); transform: scale(1); }
}
.gallery-main .badge { top: 18px; left: 18px; }
.gallery-hint {
  position: absolute;
  right: 16px;
  bottom: 14px;
  background: rgba(7, 8, 8, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.75rem;
  color: var(--ink-dim);
  opacity: 1;
  transition: opacity 0.3s;
}
.gallery-main:hover .gallery-hint { opacity: 0; }

.buy-panel { padding-top: 6px; }
.pdp-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--volt);
  font-weight: 600;
  margin-bottom: 12px;
}
.pdp-title { font-size: clamp(2.2rem, 3.6vw, 3.6rem); margin-bottom: 16px; }
.pdp-price { display: flex; align-items: center; gap: 14px; font-size: 1.6rem; font-weight: 700; margin-bottom: 10px; }
.pdp-price s { color: var(--ink-dim); font-size: 1.1rem; }
.pdp-stars { color: var(--ink-dim); font-size: 0.9rem; margin-bottom: 18px; }
.pdp-lead { color: var(--ink-dim); max-width: 52ch; margin-bottom: 28px; }
.opt { margin-bottom: 22px; }
.opt-label { display: block; font-size: 0.85rem; color: var(--ink-dim); margin-bottom: 10px; }
.opt-label b { color: var(--ink); }
.swatches { display: flex; gap: 10px; }
.swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: var(--sw);
  outline: 1px solid var(--line);
  outline-offset: 2px;
  transition: transform 0.25s var(--ease-out), outline-color 0.25s;
}
.swatch:hover { transform: scale(1.12); }
.swatch.is-active { outline: 2px solid var(--volt); transform: scale(1.08); }
.sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.size {
  min-width: 52px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.25s, color 0.25s, transform 0.25s var(--ease-out);
}
.size:hover { border-color: rgba(214, 255, 59, 0.5); transform: translateY(-2px); }
.size.is-active { background: var(--volt); color: #0a0a0a; border-color: var(--volt); }
.buy-row { display: flex; gap: 12px; align-items: stretch; margin-bottom: 12px; }
.qty {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0 6px;
}
.qty button {
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.2rem;
  transition: color 0.2s;
}
.qty button:hover { color: var(--volt); }
.qty span { min-width: 22px; text-align: center; font-weight: 700; }
.btn-add { flex: 1; }
.btn-add.added { background: #8bd94a; }
.accordions { margin-top: 26px; border-top: 1px solid var(--line); }
.accordions details { border-bottom: 1px solid var(--line); }
.accordions summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.accordions summary::-webkit-details-marker { display: none; }
.accordions summary::after {
  content: "+";
  color: var(--volt);
  font-size: 1.3rem;
  transition: transform 0.35s var(--ease-out);
}
.accordions details[open] summary::after { transform: rotate(45deg); }
.accordions summary:hover { color: var(--volt); }
.accordions p { color: var(--ink-dim); padding: 0 0 20px; max-width: 56ch; }

/* comparison */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.4vw, 32px);
  max-width: 1060px;
}
.compare-col {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(22px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
}
.compare-col:hover { transform: translateY(-6px); }
.compare-col.pro { border-color: rgba(214, 255, 59, 0.45); box-shadow: 0 24px 80px rgba(214, 255, 59, 0.07); }
.compare-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--volt);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  border-radius: 100px;
  padding: 6px 16px;
  white-space: nowrap;
}
.compare-col img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
}
.compare-col h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 115%;
  text-transform: uppercase;
  font-size: 1.15rem;
}
.compare-price { font-size: 1.3rem; font-weight: 700; }
.compare-price s { color: var(--ink-dim); font-size: 0.95rem; margin-left: 6px; }
.compare-list { list-style: none; display: flex; flex-direction: column; }
.compare-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--ink-dim);
  font-size: 0.94rem;
  border-bottom: 1px solid var(--line);
}
.compare-list li:last-child { border-bottom: none; }
.compare-list li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}
.compare-list li.yes { color: var(--ink); }
.compare-list li.yes::before { content: "✓"; color: var(--volt); }
.compare-list li.no::before { content: "✕"; color: #5a5f58; }
.compare-list li.no { text-decoration: line-through; text-decoration-color: rgba(155, 163, 158, 0.4); }
.compare-col .btn { margin-top: 8px; text-align: center; justify-content: center; }

/* cross-sell */
.cross-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  max-width: 1060px;
}

/* sticky buy bar */
.buy-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 140%);
  z-index: 8500;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(14, 16, 17, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 12px 10px 10px;
  width: min(560px, calc(100vw - 32px));
  transition: transform 0.55s var(--ease-out);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}
.buy-bar.show { transform: translate(-50%, 0); }
.buy-bar img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.buy-bar-info { flex: 1; display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.buy-bar-info b { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 0.88rem; }
.buy-bar-info span { color: var(--ink-dim); font-size: 0.8rem; }
.buy-bar-info s { opacity: 0.7; }
.buy-bar .btn { padding: 12px 24px; font-size: 0.85rem; }

/* toast */
.toast {
  position: fixed;
  top: calc(var(--nav-h) + 14px);
  right: 24px;
  z-index: 9000;
  background: var(--volt);
  color: #0a0a0a;
  font-weight: 700;
  border-radius: 100px;
  padding: 12px 22px;
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s var(--ease-out), opacity 0.35s;
}
.toast.show { transform: none; opacity: 1; }

/* pdp responsive */
@media (max-width: 1080px) {
  .pdp-grid { grid-template-columns: 1fr; }
  .gallery { position: relative; top: 0; grid-template-columns: 1fr; }
  .thumbs { order: 2; flex-direction: row; overflow-x: auto; }
  .thumb { min-width: 72px; }
  .compare-grid { grid-template-columns: 1fr; }
  .cross-grid { grid-template-columns: 1fr; max-width: 560px; }
}
@media (max-width: 720px) {
  .buy-row { flex-wrap: wrap; }
  .btn-add { width: 100%; }
}

/* ═══════════ CAPTURE MODE (?capture=1) ═══════════
   static full-page rendering for screenshots and mockups */
.capture-mode .preloader, .capture-mode .page-wipe, .capture-mode .buy-bar { display: none; }
.capture-mode .reveal,
.capture-mode .section-title .ch,
.capture-mode .hero-title .word { opacity: 1 !important; transform: none !important; }
.capture-mode .step { opacity: 1; }
.capture-mode .hero { min-height: 960px; }
.capture-mode .feature-sticky { position: static; }
.capture-mode .cursor-dot, .capture-mode .cursor-ring { display: none; }
.capture-mode img { content-visibility: visible; }

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .hero-title .word, .section-title .ch { opacity: 1; transform: none; }
  .preloader, .page-wipe { display: none; }
}
