/* ============================================
   STELLA SPORTS — Global stylesheet
   Bold athletic dark theme · red accents
============================================ */

:root {
  --bg-0: #050505;
  --bg-1: #0c0c0e;
  --bg-2: #131318;
  --bg-3: #1c1c22;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);
  --ink-0: #ffffff;
  --ink-1: #e9e9ee;
  --ink-2: #a6a6b0;
  --ink-3: #6f6f7a;
  --red: #e3132b;
  --red-2: #ff2840;
  --red-glow: rgba(227,19,43,0.45);
  --yellow: #ffc83a;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 30px 80px rgba(0,0,0,0.6);
  --container: 1280px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  color: var(--ink-1);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--red-2); }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Anton', 'Impact', 'Arial Narrow', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-0);
  line-height: 1;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.8rem); letter-spacing: 0; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); }
h4 { font-size: 1.15rem; letter-spacing: 0.06em; }

p { margin: 0 0 1em; color: var(--ink-1); }
small, .small { font-size: 0.8rem; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--red);
}

.muted { color: var(--ink-2); }
.text-red { color: var(--red-2); }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: 110px 0; position: relative; }
.section-tight { padding: 70px 0; }

/* Header / Nav */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 50;
  background: rgba(5,5,5,0.7);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo img { height: 46px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-1);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--ink-0); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--ink-0);
  width: 44px; height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.2rem;
  align-items: center; justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  cursor: pointer;
  border-radius: 2px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  background: var(--red-2);
  border-color: var(--red-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--red-glow);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--ink-0);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: var(--ink-0);
  color: var(--bg-0);
  border-color: var(--ink-0);
  box-shadow: none;
}
.btn-arrow::after {
  content: "→"; font-family: 'Inter', sans-serif;
  font-weight: 400; font-size: 1rem;
  transition: transform .25s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background:
    radial-gradient(60% 80% at 75% 30%, rgba(227,19,43,0.20), transparent 60%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 60%, #050505 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(120deg, transparent 49.5%, rgba(255,255,255,0.04) 49.5%, rgba(255,255,255,0.04) 50%, transparent 50%);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-bg-watermark {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%) skewX(-10deg);
  font-family: 'Black Ops One', Impact, 'Arial Black', sans-serif;
  font-style: italic;
  font-size: 26vw;
  line-height: 0.85;
  color: rgba(255,255,255,0.035);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.hero-bg-watermark sub {
  display: block;
  font-family: 'Audiowide', 'Russo One', sans-serif;
  font-style: normal;
  font-size: 0.25em;
  letter-spacing: 0.36em;
  margin-top: -0.4em;
  vertical-align: baseline;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--red-2); }
.hero h1 .outline {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}
.hero-lede {
  max-width: 540px;
  font-size: 1.1rem;
  color: var(--ink-2);
  margin-top: 14px;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 36px;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(60% 70% at 50% 40%, rgba(227,19,43,0.22), transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}
.hero-badge {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--red);
  color: #fff;
  padding: 16px 22px;
  border-radius: 2px;
  z-index: 2;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}
.hero-badge span { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.85); font-family: 'Inter'; letter-spacing: 0.18em; }

.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--ink-3);
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--red), transparent);
  animation: scrollPulse 1.6s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* Stats strip */
.stats-strip {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  color: var(--red-2);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem; letter-spacing: 0.25em;
  color: var(--ink-2); text-transform: uppercase;
  margin-top: 8px;
}

/* Section headers */
.section-head {
  display: flex; justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-head h2 { margin-bottom: 14px; max-width: 720px; }
.section-head p { color: var(--ink-2); max-width: 520px; }

/* Categories grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  position: relative;
  aspect-ratio: 4/5;
  background:
    radial-gradient(60% 70% at 50% 40%, rgba(227,19,43,0.18), transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .4s ease;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  padding: 26px;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(227,19,43,0.18);
  border-color: var(--red);
}
.cat-card img {
  width: 100%; height: 78%; object-fit: contain;
  transition: transform .6s ease;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.55));
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.65));
  padding: 28px 28px 24px;
  pointer-events: none;
}
.cat-card h3 { margin: 0; color: #fff; font-size: 1.6rem; }
.cat-card-tag {
  position: absolute; top: 18px; left: 18px;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 10px;
  font-weight: 700;
}
.cat-card-meta {
  position: absolute; bottom: 28px; right: 28px;
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.cat-card-meta::after { content: "→"; }

/* USP / Features */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.usp {
  background: var(--bg-1);
  border: 1px solid var(--border);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: border-color .3s ease, transform .3s ease;
}
.usp:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.usp-num {
  font-family: 'Anton', sans-serif;
  color: var(--red-2);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.usp h4 { margin-bottom: 10px; }
.usp p { color: var(--ink-2); font-size: 0.92rem; }

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.step {
  padding: 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
  position: relative;
  transition: background .3s ease;
}
.step:hover { background: var(--bg-2); }
.step-num {
  font-family: 'Anton', sans-serif;
  font-size: 4rem; line-height: 1;
  color: var(--bg-3);
  margin-bottom: 22px;
  transition: color .3s ease;
}
.step:hover .step-num { color: var(--red); }
.step h3 { margin-bottom: 12px; font-size: 1.3rem; }
.step p { color: var(--ink-2); font-size: 0.92rem; margin: 0; }

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  padding: 36px 32px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.testi::before {
  content: """;
  position: absolute;
  top: -18px; left: 22px;
  font-family: 'Anton', sans-serif;
  font-size: 6rem;
  color: var(--red);
  line-height: 1;
}
.testi-text {
  font-size: 1.02rem;
  color: var(--ink-1);
  font-style: italic;
  margin-bottom: 22px;
}
.testi-by { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #5a0612);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Anton'; color: #fff;
}
.testi-by-meta { font-size: 0.84rem; }
.testi-by-meta strong { color: var(--ink-0); display: block; font-style: normal; }
.testi-by-meta span { color: var(--ink-3); }

/* Logo strip */
.logo-strip {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-strip-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 36px 0;
}
.client-logo {
  font-family: 'Anton';
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  font-size: 1.2rem;
  opacity: 0.7;
  transition: opacity .3s ease, color .3s ease;
}
.client-logo:hover { opacity: 1; color: var(--ink-0); }

/* CTA block */
.cta-block {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(50% 80% at 20% 50%, rgba(255,255,255,0.06), transparent 70%),
    linear-gradient(120deg, #c80a1f, #5a0612);
  text-align: center;
  overflow: hidden;
}
.cta-block::after {
  content: "STELLA";
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%) skewX(-10deg);
  font-family: 'Black Ops One', Impact, sans-serif;
  font-style: italic;
  font-size: 22vw;
  line-height: 0.85;
  color: rgba(0,0,0,0.10);
  pointer-events: none;
  letter-spacing: -0.04em;
  white-space: nowrap;
  z-index: 0;
}
.cta-block > .container { position: relative; z-index: 1; }
.cta-block::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent, transparent 18px, rgba(0,0,0,0.06) 18px, rgba(0,0,0,0.06) 19px);
  pointer-events: none;
}
.cta-block h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  color: #fff;
  position: relative; z-index: 1;
}
.cta-block p {
  color: rgba(255,255,255,0.9);
  max-width: 600px; margin: 0 auto 28px;
  font-size: 1.1rem;
  position: relative; z-index: 1;
}
.cta-block .btn {
  background: #fff; color: var(--red); border-color: #fff;
}
.cta-block .btn:hover {
  background: #0a0a0a; color: #fff; border-color: #0a0a0a;
}

/* Footer */
.footer {
  background: #030303;
  border-top: 1px solid var(--border);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer h5 {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--ink-0);
  margin-bottom: 22px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; font-size: 0.92rem; }
.footer li a { color: var(--ink-2); }
.footer li a:hover { color: var(--red-2); }
.footer-brand img { height: 60px; margin-bottom: 18px; }
.footer-brand p { color: var(--ink-2); font-size: 0.92rem; max-width: 360px; }
.footer-socials {
  display: flex; gap: 10px; margin-top: 18px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-1);
  transition: all .3s ease;
}
.footer-socials a:hover {
  background: var(--red); border-color: var(--red); color: #fff;
  transform: translateY(-2px);
}
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  font-size: 0.8rem;
  color: var(--ink-3);
  flex-wrap: wrap;
  gap: 14px;
}

/* Product grid */
.product-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
}
.tab {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--ink-1);
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  transition: all .25s ease;
}
.tab:hover { color: #fff; border-color: var(--ink-2); }
.tab.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.product:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 30px 70px rgba(227,19,43,0.18);
}
.product-img {
  background: #fff;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.product:hover .product-img img { transform: scale(1.04); }
.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--bg-0); color: #fff;
  padding: 5px 9px;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}
.product-tag.tag-red { background: var(--red); }
.product-body {
  padding: 22px 24px 26px;
}
.product-code {
  color: var(--ink-3);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.product h4 {
  margin-bottom: 12px;
  font-family: 'Anton', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}
.product-features {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.product-features li {
  font-size: 0.7rem;
  color: var(--ink-2);
  background: var(--bg-3);
  padding: 4px 9px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}
.product-cta {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-2);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .25s ease;
}
.product-cta:hover { color: var(--red-2); gap: 14px; }
.product-cta::after { content: "→"; }

/* ============ SCROLL-SCRUB INTRO ============ */
.intro-scrub {
  position: relative;
  height: 500vh; /* total scroll distance — 5x viewport */
  background: #000;
  /* offset for fixed header so first frame isn't hidden */
  margin-top: calc(-1 * var(--header-h));
}
.scrub-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}
#scrub-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.scrub-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 50% 60%, transparent 30%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.scrub-progress {
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  width: min(280px, 60vw);
  height: 2px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
  pointer-events: none;
}
.scrub-progress::after {
  content: "";
  display: block; height: 100%;
  background: var(--red);
  width: var(--p, 0%);
  transition: width 0.05s linear;
  box-shadow: 0 0 12px var(--red-glow);
}
.scrub-hint {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  font-size: 0.66rem;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  font-weight: 600;
  pointer-events: none;
  opacity: var(--hint-op, 1);
  transition: opacity 0.3s ease;
}
.scrub-hint::after {
  content: "↓";
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  letter-spacing: 0;
  animation: scrubBob 1.6s ease-in-out infinite;
}
@keyframes scrubBob {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

.scrub-captions {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  padding: 0 24px;
}
.scrub-caption {
  position: absolute;
  text-align: center;
  max-width: 920px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.6s ease;
  text-shadow: 0 4px 30px rgba(0,0,0,0.7);
}
.scrub-caption.active {
  opacity: 1; transform: translateY(0);
}
.scrub-caption .eyebrow {
  margin-bottom: 14px;
  color: var(--red-2);
  display: inline-flex;
}
.scrub-caption h2 {
  font-family: 'Black Ops One', Impact, sans-serif;
  font-style: italic;
  font-size: clamp(2.4rem, 7vw, 6rem);
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 0.92;
  margin: 0;
}
.scrub-caption h2 em {
  font-style: italic;
  color: var(--red-2);
  font-weight: normal;
}
.scrub-caption p {
  margin-top: 18px;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.scrub-loading {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  background: #000;
  z-index: 10;
  text-transform: uppercase;
  transition: opacity 0.5s ease;
}
.scrub-loading.hidden { opacity: 0; pointer-events: none; }
.scrub-loading-bar {
  width: 160px; height: 2px;
  background: rgba(255,255,255,0.15);
  margin-top: 18px;
  position: relative; overflow: hidden;
}
.scrub-loading-bar::after {
  content: "";
  display: block; height: 100%;
  background: var(--red);
  width: var(--lp, 0%);
  transition: width 0.2s linear;
}

.scrub-bottom-fade {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, #050505 90%);
  pointer-events: none;
}

/* Reduced motion / fallback */
@media (prefers-reduced-motion: reduce) {
  .intro-scrub { display: none; }
}
.no-scrub .intro-scrub { display: none; }

/* ---- Product showcase (text-paired SVG renderings) ---- */
.showcase {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.showcase:last-child { border-bottom: none; }
.showcase.flip { grid-template-columns: 1fr 1.05fr; }
.showcase.flip .showcase-art { order: 2; }

.showcase-art {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(60% 70% at 50% 40%, rgba(227,19,43,0.18), transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.showcase-art:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 30px 70px rgba(227,19,43,0.18);
}
/* Tall product shots (e.g. full tracksuits) — frame taller, less padding so the garment fills the card */
.showcase-art.is-portrait {
  aspect-ratio: 3 / 5;
  padding: 16px;
}
.showcase-art.is-portrait img {
  filter: drop-shadow(0 24px 50px rgba(0,0,0,0.6));
}
.showcase-art > svg, .showcase-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.55));
}
.showcase-art .corner-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--red);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
}
.showcase-art .corner-code {
  position: absolute;
  bottom: 18px; right: 22px;
  font-family: 'Anton', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--ink-3);
}

.showcase-body .product-code {
  color: var(--ink-3);
  font-family: 'Audiowide', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.showcase-body h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}
.showcase-body .lede {
  color: var(--ink-2);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 520px;
}
.spec-list {
  list-style: none; padding: 0; margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}
.spec-list li {
  font-size: 0.92rem;
  color: var(--ink-1);
  display: flex; align-items: flex-start; gap: 10px;
}
.spec-list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px; height: 8px;
  background: var(--red);
  margin-top: 8px;
  transform: rotate(45deg);
}
.spec-list li strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 2px;
}
.chip-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.chip {
  font-size: 0.7rem;
  color: var(--ink-2);
  background: var(--bg-3);
  padding: 6px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
}
.chip.red {
  background: rgba(227,19,43,0.12);
  border-color: rgba(227,19,43,0.4);
  color: #ffc7cf;
}

/* variant switcher (multi-image products) */
.variant-switcher { margin: 0 0 28px; }
.variant-switcher .variant-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 12px;
}
.variant-thumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.variant-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: all .25s ease;
  font-family: 'Inter', sans-serif;
  color: var(--ink-2);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  width: 118px;
  text-align: center;
  line-height: 1.3;
}
.variant-thumb img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border-radius: 4px;
}
.variant-thumb:hover {
  border-color: var(--ink-3);
  color: var(--ink-0);
  transform: translateY(-2px);
}
.variant-thumb.is-active {
  border-color: var(--red);
  color: var(--ink-0);
  box-shadow: 0 8px 22px rgba(227,19,43,0.22);
}
.variant-main { transition: opacity .25s ease; }
.variant-main.fading { opacity: 0; }

/* button row for paired CTAs */
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* category divider */
.cat-divider {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 70px 0 28px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.cat-divider h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0;
  white-space: nowrap;
}
.cat-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-strong), transparent);
}
.cat-divider .num {
  font-family: 'Audiowide', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--red-2);
}

/* About page */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  background: var(--bg-1);
  padding: 36px 24px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.team-avatar {
  width: 110px; height: 110px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #5a0612);
  color: #fff;
  font-family: 'Anton';
  font-size: 2.4rem;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--bg-2);
  box-shadow: 0 12px 40px rgba(227,19,43,0.35);
}
.team-card h4 { margin-bottom: 4px; }
.team-card .role {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-2);
  margin-bottom: 12px;
}

/* Two-col blocks */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.two-col .img {
  background:
    radial-gradient(60% 70% at 50% 40%, rgba(227,19,43,0.18), transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 36px;
  display: flex; align-items: center; justify-content: center;
  min-height: 380px;
}
.two-col img {
  width: 100%; max-width: 460px;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.55));
}

/* Page banner (for non-home pages) */
.page-banner {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 70px;
  background:
    radial-gradient(50% 80% at 80% 30%, rgba(227,19,43,0.20), transparent 60%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1));
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.crumb {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.crumb a { color: var(--ink-2); }
.crumb a:hover { color: var(--red-2); }
.page-banner h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin: 0; }
.page-banner p { color: var(--ink-2); max-width: 640px; margin-top: 18px; }

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
.field {
  display: flex; flex-direction: column; gap: 8px;
}
.field label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
}
.field input, .field select, .field textarea {
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  color: var(--ink-0);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: 2px;
  transition: border-color .25s ease;
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.field textarea { min-height: 130px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;
  align-items: start;
}
.contact-info {
  background: var(--bg-1);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: var(--radius-lg);
}
.contact-info h3 { margin-bottom: 18px; }
.contact-info .item {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info .item:last-child { border-bottom: none; }
.contact-info .item .ic {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-weight: 700;
}
.contact-info .item .meta {
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 2px;
}
.contact-info .item .val {
  color: var(--ink-0); font-weight: 600;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
}
.blog-card .img {
  aspect-ratio: 16/10;
  background:
    radial-gradient(60% 80% at 50% 40%, rgba(227,19,43,0.18), transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.blog-card img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .5s ease;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.55));
}
.blog-card:hover img { transform: scale(1.05); }
.blog-card .body { padding: 24px 26px 30px; }
.blog-card .meta {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
  display: flex; gap: 14px;
}
.blog-card .meta .cat { color: var(--red-2); }
.blog-card h3 {
  font-size: 1.3rem; line-height: 1.15;
  margin-bottom: 10px;
}
.blog-card p {
  color: var(--ink-2); font-size: 0.92rem;
  margin: 0;
}

/* Reveal animations */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1; transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { transform: none; max-width: 460px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .showcase, .showcase.flip { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .showcase.flip .showcase-art { order: 0; }
  .spec-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-links.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-1); border-top: 1px solid var(--border);
    padding: 14px 28px 24px;
    gap: 4px;
  }
  .nav-links.is-open a { display: block; padding: 12px 0; }
  section { padding: 70px 0; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid, .product-grid, .blog-grid, .team-grid, .footer-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 14px; }
.mt-4 { margin-top: 36px; }
.mb-0 { margin-bottom: 0; }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  margin: 30px 0;
}
.section-alt { background: var(--bg-1); }
