/* =============================================
   STRAPZY'S SHINNIES — MAIN STYLES
   Nude Project-inspired. Premium. Minimal.
   ============================================= */

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

/* ── Image fade-in on load ── */
img {
  opacity: 0;
  transition: opacity 0.5s ease;
}
img.img-loaded {
  opacity: 1;
}
/* Images already cached load instantly — no flash */
img.img-cached {
  opacity: 1;
  transition: none;
}

:root {
  --black: #080808;
  --white: #f2f0eb;
  --grey-100: #161616;
  --grey-200: #242424;
  --grey-300: #343434;
  --grey-400: #666666;
  --grey-500: #999999;
  --accent: #d4ff1a;
  --accent-dim: #a8cc00;
  --accent-glow: rgba(212, 255, 26, 0.15);
  --carbon: #1c1c1c;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Space Grotesk', 'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

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

/* =============================================
   CUSTOM CURSOR
   ============================================= */

.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s var(--ease-out), height 0.2s var(--ease-out), background 0.2s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245, 245, 240, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out), width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s;
}

.cursor.hover {
  width: 50px;
  height: 50px;
  background: var(--accent);
}

.cursor-follower.hover {
  width: 60px;
  height: 60px;
  opacity: 0;
}

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 3.5vw, 48px);
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px clamp(20px, 3.5vw, 48px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--white);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(14px, 2vw, 32px);
}

.nav-link {
  font-family: var(--font-body);
  font-size: clamp(10px, 0.85vw, 13px);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey-500);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--white);
  color: var(--black);
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px clamp(14px, 1.5vw, 24px);
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* ---- Language Toggle ---- */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 4px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--grey-400);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 6px;
  cursor: pointer;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  text-transform: uppercase;
}

.lang-btn:hover { color: var(--white); }

.lang-btn.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.lang-divider {
  color: var(--grey-600);
  font-size: 10px;
  pointer-events: none;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-hamburger.open span:first-child {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-hamburger.open span:last-child {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  padding: 100px 0 60px;
  width: 100%;
}

.mobile-menu li {
  margin: 10px 0;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.2s;
  display: block;
  padding: 6px 0;
}

.mobile-menu a:hover {
  color: var(--accent);
}

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 48px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.carbon-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(200, 255, 0, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200, 255, 0, 0.02) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-label-top {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 32px;
  opacity: 0;
}

.hero-label-top .divider {
  color: var(--accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line span {
  display: inline-block;
}

.hero-line-accent {
  display: flex;
  align-items: center;
  gap: 0.2em;
}

.outline-text {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.s-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.6em;
  height: 0.6em;
}

.s-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.s-fallback {
  font-family: var(--font-display);
  font-size: 0.8em;
  color: var(--accent);
}

.hero-line-sub {
  color: var(--grey-400);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  gap: 64px;
  opacity: 0;
}

.hero-desc {
  max-width: 380px;
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-400);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-400);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--grey-300), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-20px) rotate(720deg); opacity: 0; }
}

/* =============================================
   BUTTONS
   ============================================= */

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 255, 0, 0.25);
}

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease-out);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 20px 48px;
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(200, 255, 0, 0.35);
  background: #d4ff1a;
}

/* =============================================
   MARQUEE
   ============================================= */

.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  padding: 20px 0;
  background: var(--grey-100);
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--grey-500);
}

.marquee-track .dot {
  color: var(--accent);
  font-size: 10px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   SECTION COMMONS
   ============================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 64px;
}

.section-header {
  margin-bottom: 80px;
}

/* =============================================
   PRODUCT SECTION
   ============================================= */

.product-section {
  padding: 120px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card-inner {
  position: relative;
  padding: 48px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.5s var(--ease-out);
}

.product-card:hover .product-card-inner {
  transform: translateY(-4px);
}

.product-card-bg {
  position: absolute;
  inset: 0;
  background: var(--grey-100);
  transition: background 0.4s;
}

.carbon-bg {
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.015) 2px,
      rgba(255,255,255,0.015) 4px
    );
  background-color: var(--grey-100);
}

.product-card:hover .product-card-bg {
  background-color: var(--grey-200);
}

.product-card-content {
  position: relative;
  z-index: 1;
}

.product-icon {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--accent);
  line-height: 1;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--white);
}

.product-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey-400);
  line-height: 1.7;
}

/* =============================================
   CUSTOMISER SECTION
   ============================================= */

.customiser-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  align-items: center;
}

.customiser-left {
  padding: 100px 80px 100px 48px;
  border-right: 1px solid var(--grey-200);
}

.customiser-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.9;
  margin-bottom: 32px;
}

.customiser-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-400);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 32px;
}

.feature-list {
  list-style: none;
  margin-bottom: 48px;
}

.feature-list li {
  font-size: 14px;
  color: var(--grey-400);
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-200);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.feature-list li:hover {
  color: var(--white);
}

.feature-list .check {
  color: var(--accent);
  font-size: 16px;
}

.customiser-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px 80px 80px;
  background: var(--grey-100);
}

.customiser-demo {
  width: 100%;
  max-width: 520px;
}

.demo-screen {
  border-radius: 8px;
  overflow: hidden;
  background: var(--grey-200);
  border: 1px solid var(--grey-300);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.demo-toolbar {
  background: var(--grey-300);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.demo-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.demo-toolbar span:first-child { background: #ff5f56; }
.demo-toolbar span:nth-child(2) { background: #ffbd2e; }
.demo-toolbar span:nth-child(3) { background: #27c93f; }

.demo-content {
  background: var(--grey-200);
  position: relative;
}

/* ---- FORM MOCKUP ---- */
.fm-wrap {
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fm-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fm-step-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.fm-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
}

/* Size cards */
.fm-size-row {
  display: flex;
  gap: 8px;
}

.fm-size-card {
  flex: 1;
  border: 1px solid var(--grey-300);
  border-radius: 6px;
  padding: 12px 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer;
}

.fm-size-card span {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--grey-400);
}

.fm-size-card--active {
  border-color: var(--accent);
  background: rgba(212,255,26,0.06);
}

.fm-size-card--active span {
  color: var(--accent);
}

.fm-pad {
  background: var(--grey-300);
  border-radius: 8px 8px 5px 5px;
}

.fm-pad--s { width: 14px; height: 22px; }
.fm-pad--m { width: 18px; height: 28px; }
.fm-pad--l { width: 22px; height: 34px; border-color: var(--accent); border: 1.5px solid var(--accent); background: rgba(212,255,26,0.15); }

/* Input fields */
.fm-input-wrap { display: flex; flex-direction: column; gap: 6px; }

.fm-input {
  background: var(--grey-100);
  border: 1px solid var(--grey-300);
  border-radius: 4px;
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--white);
  font-family: var(--font-body);
  position: relative;
  transition: border-color 0.2s;
}

.fm-input--focused {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(212,255,26,0.12);
}

.fm-input--narrow {
  width: 90px;
}

.fm-cursor {
  display: inline-block;
  width: 1.5px;
  height: 14px;
  background: var(--accent);
  margin-left: 1px;
  vertical-align: middle;
  animation: cursorBlink 0.9s step-end infinite;
}

.fm-cursor--hidden {
  opacity: 0;
  animation: none;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Submit */
.fm-submit-btn {
  margin-top: 4px;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.06em;
  padding: 14px 20px;
  border-radius: 4px;
  text-align: center;
  animation: submitPulse 1.6s ease-in-out infinite;
}

.fm-submit-btn--active {
  animation: submitPulse 1.2s ease-in-out infinite;
}

.fm-submit-btn--clicked {
  background: var(--accent);
  color: var(--black);
  opacity: 0.7;
  animation: none;
}

@keyframes submitPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,255,26,0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(212,255,26,0); }
}

/* ---- Success overlay ---- */
.fm-success {
  position: absolute;
  inset: 0;
  background: var(--grey-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.fm-success--visible {
  opacity: 1;
}

.fm-success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fm-success-icon--pop {
  transform: scale(1);
}

.fm-success-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.fm-success-sub {
  font-size: 10px;
  color: var(--grey-400);
  text-align: center;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s;
}

.fm-success--visible .fm-success-title,
.fm-success--visible .fm-success-sub {
  opacity: 1;
  transform: translateY(0);
}

.fm-success-dots {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.3s ease 0.6s;
}

.fm-success--visible .fm-success-dots {
  opacity: 1;
}

.fm-success-dots span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: dotBounce 1.2s ease-in-out infinite;
}

.fm-success-dots span:nth-child(2) { animation-delay: 0.15s; }
.fm-success-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes dotBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%       { transform: translateY(-5px); opacity: 1; }
}

.demo-label {
  margin-top: 16px;
  font-size: 12px;
  color: var(--grey-400);
  text-align: center;
  letter-spacing: 0.05em;
}

/* =============================================
   HOW IT WORKS
   ============================================= */

.how-section {
  padding: 120px 0;
  border-top: 1px solid var(--grey-200);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step {
  padding: 48px;
  border-right: 1px solid var(--grey-200);
  position: relative;
  display: flex;
  flex-direction: column;
}

.step:last-child {
  border-right: none;
}

.step-num {
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 24px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  color: var(--white);
}

.step-content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey-400);
  line-height: 1.75;
}

.step-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 16px;
}

.step-arrow {
  position: absolute;
  top: 60px;
  right: -20px;
  font-size: 24px;
  color: var(--accent);
  z-index: 1;
}

.step-arrow.last {
  display: none;
}

/* =============================================
   STATS
   ============================================= */

.stats-section {
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  background: var(--grey-100);
}

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

.stat {
  padding: 60px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  color: var(--white);
}

.stat-unit {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--grey-200);
}

/* =============================================
   ABOUT TEASER
   ============================================= */

.about-teaser {
  padding: 120px 0;
}

.about-teaser-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text-block h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
  margin-bottom: 28px;
}

.about-text-block p {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-400);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 40px;
}

.rotating-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-ring {
  width: min(360px, 100%);
  height: min(360px, 100%);
  object-fit: contain;
  animation: slowRotate 20s linear infinite;
}

.logo-ring-fallback {
  width: 300px;
  height: 300px;
  animation: slowRotate 20s linear infinite;
}

.logo-ring-fallback svg {
  width: 100%;
  height: 100%;
}

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* =============================================
   CTA BANNER
   ============================================= */

/* ── TESTIMONIALS ── */
.reviews-section {
  padding: 100px 0;
  border-top: 1px solid #1a1a1a;
  overflow: hidden;
}
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 64px;
  margin-bottom: 56px;
  gap: 24px;
}
.reviews-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  color: var(--white);
  line-height: 0.92;
  margin: 12px 0 0;
}
.reviews-stars-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.reviews-rating {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--white);
  line-height: 1;
}
.reviews-stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.reviews-count {
  font-size: 12px;
  color: var(--grey-400);
  letter-spacing: 0.5px;
}
/* Scrolling track */
.reviews-track-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 64px 24px;
  cursor: grab;
}
.reviews-track-wrap::-webkit-scrollbar { display: none; }
.reviews-track-wrap:active { cursor: grabbing; }
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
}
.review-card {
  background: #0f0f0f;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 32px;
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: #2a2a2a; }
.review-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 14px;
  color: var(--grey-400);
  line-height: 1.8;
  margin: 0;
  flex: 1;
  font-style: italic;
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid #1a1a1a;
  padding-top: 16px;
}
.review-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.review-detail {
  font-size: 12px;
  color: #444;
}

@media (max-width: 768px) {
  .reviews-header { padding: 0 24px; flex-direction: column; align-items: flex-start; }
  .reviews-track-wrap { padding: 4px 24px 20px; }
}

/* ── INSTAGRAM SECTION ── */
.ig-section {
  padding: 100px 64px;
  border-top: 1px solid #1a1a1a;
}
.ig-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.ig-header-left { display: flex; flex-direction: column; gap: 8px; }
.ig-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}
.ig-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  color: var(--white);
  line-height: 1;
  margin: 0;
  letter-spacing: 1px;
}
.ig-follow-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 12px 24px;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
  align-self: center;
}
.ig-follow-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.ig-feed-wrap {
  width: 100%;
}
/* Behold widget override — make it blend with dark theme */
.ig-feed-wrap behold-widget {
  --behold-background: transparent;
}

@media (max-width: 768px) {
  .ig-section { padding: 72px 24px; }
  .ig-header { flex-direction: column; align-items: flex-start; }
  .ig-follow-btn { width: 100%; text-align: center; }
}

.cta-banner {
  border-top: 1px solid var(--grey-200);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200, 255, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.9;
  margin-bottom: 48px;
}

.cta-sub {
  margin-top: 24px;
  font-size: 14px;
  color: var(--grey-400);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--grey-100);
  border-top: 1px solid var(--grey-200);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 48px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.12em;
}

.footer-brand p {
  font-size: 14px;
  color: var(--grey-400);
  line-height: 1.7;
}

.footer-contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact a {
  font-size: 13px;
  color: var(--grey-400);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--grey-400);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--grey-200);
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--grey-400);
  letter-spacing: 0.05em;
}

/* =============================================
   ANIMATION STATES (pre-animation)
   ============================================= */

[data-gsap="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
}

[data-gsap="reveal"] {
  opacity: 0;
  transform: translateY(40px);
}

[data-gsap="reveal-left"] {
  opacity: 0;
  transform: translateX(-40px);
}

[data-gsap="reveal-right"] {
  opacity: 0;
  transform: translateX(40px);
}

[data-gsap="card"] {
  opacity: 0;
  transform: translateY(30px);
}

[data-gsap="step"] {
  opacity: 0;
  transform: translateY(20px);
}

[data-gsap="stat"] {
  opacity: 0;
  transform: translateY(20px);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .customiser-section {
    grid-template-columns: 1fr;
  }
  .customiser-left {
    border-right: none;
    border-bottom: 1px solid var(--grey-200);
    padding: 80px 48px;
  }
  .customiser-right {
    padding: 60px 48px;
  }
  .about-teaser-inner {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .stat-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 20px 24px;
  }
  .nav.scrolled {
    padding: 14px 24px;
  }
  .nav-links, .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  .hero {
    padding: 120px 24px 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-ghost {
    text-align: center;
  }

  .container {
    padding: 0 24px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step {
    border-right: none;
    border-bottom: 1px solid var(--grey-200);
  }

  .step-arrow {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px 40px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 20px 24px;
  }

  .customiser-left {
    padding: 60px 24px;
  }

  .customiser-right {
    padding: 40px 24px;
  }

  .about-teaser-inner {
    padding: 0 24px;
    gap: 48px;
  }

  .cta-banner {
    padding: 80px 24px;
  }

  .cursor, .cursor-follower {
    display: none;
  }

  body {
    cursor: auto;
  }

  .magnetic {
    transform: none !important;
  }
}

/* =============================================
   IMAGE PLACEHOLDERS
   Styled boxes shown when real images aren't
   loaded yet. Remove once images are added.
   ============================================= */

.img-placeholder {
  display: none; /* shown via onerror in HTML */
  width: 100%;
  height: 300px;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 14px
    ),
    var(--grey-200);
  border: 1.5px dashed var(--grey-300);
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 0;
}

.img-placeholder.tall  { height: 560px; }
.img-placeholder.wide  { height: 360px; }
.img-placeholder.step-ph { height: 180px; border-radius: 6px; }

.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
}

.placeholder-icon { font-size: 32px; line-height: 1; }

.placeholder-inner > span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
}

.placeholder-note {
  font-family: 'Courier New', monospace;
  font-size: 10px !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  color: var(--grey-300) !important;
  line-height: 1.6;
  margin-top: 4px;
}

/* Hero bg placeholder */
.hero-img-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-img-placeholder {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.012) 0px,
      rgba(255,255,255,0.012) 1px,
      transparent 1px,
      transparent 16px
    ),
    var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px dashed var(--grey-300);
}

.hero-img-placeholder .placeholder-inner {
  opacity: 0.5;
}

/* Hero product float */
.hero-product-float {
  position: absolute;
  right: 6vw;
  bottom: 10%;
  width: min(320px, 28vw);
  z-index: 3;
  display: flex;
  align-items: flex-end;
}

.hero-product-float img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.7));
}

.product-float-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 280px;
  background: var(--grey-200);
  border: 1.5px dashed var(--grey-300);
  border-radius: 8px;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.product-float-placeholder span {
  font-size: 11px;
  color: var(--grey-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-float-placeholder .placeholder-note {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: var(--grey-300);
  text-transform: none;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

/* =============================================
   SPLIT INTRO
   ============================================= */

.split-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  border-top: 1px solid var(--grey-200);
}

.split-intro-img {
  position: relative;
  overflow: hidden;
}

.split-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.split-intro-img:hover img { transform: scale(1.03); }

.split-intro-text {
  padding: 80px 64px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.split-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.9;
  margin: 12px 0 28px;
}

.split-intro-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-400);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 28px;
}

.check-list {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--grey-400);
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-200);
  transition: color 0.2s;
}

.check-list li:first-child { border-top: 1px solid var(--grey-200); }
.check-list li:hover { color: var(--white); }

.chk {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   GALLERY GRID
   ============================================= */

.gallery-section {
  padding: 100px 0 0;
  border-top: 1px solid var(--grey-200);
}

.gallery-header {
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--grey-200);
  cursor: none;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out), filter 0.4s;
  filter: brightness(0.85);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

/* =============================================
   AS WORN IN — LEAGUES SECTION
   ============================================= */

.leagues-section {
  padding: 100px 0;
  border-top: 1px solid var(--grey-200);
  background: var(--grey-100);
}

.leagues-header {
  text-align: center;
  margin-bottom: 16px;
}

.leagues-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-400);
  max-width: 480px;
  margin: 16px auto 56px;
  line-height: 1.7;
  text-align: center;
}

.leagues-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

/* Individual badge */
.league-badge {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  overflow: hidden;
  transition: background 0.25s;
}

.league-badge:hover {
  background: var(--grey-300);
  z-index: 2;
}

.lb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  transition: opacity 0.2s, transform 0.25s;
  padding: 12px;
}

.lb-abbr {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.3vw, 17px);
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.15;
  text-align: center;
}

.lb-region {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--grey-500);
  text-align: center;
  margin-top: 2px;
}

.lb-star {
  font-size: 14px;
  color: var(--accent);
  margin-top: 4px;
}

.league-badge--star {
  box-shadow: inset 0 0 0 1px rgba(212,255,26,0.3);
}

/* Highlighted (continental) badges */
.league-badge--highlight .lb-abbr {
  color: var(--accent);
}

.league-badge--highlight {
  background: rgba(212,255,26,0.04);
}

/* Hover overlay with logo */
.lb-hover {
  position: absolute;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  box-shadow: inset 0 0 0 1px var(--accent);
  pointer-events: none;
}

.league-badge:hover .lb-hover {
  opacity: 1;
  transform: translateY(0);
}

.league-badge:hover .lb-inner {
  opacity: 0;
  transform: translateY(-6px);
}

.lb-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.leagues-note {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: var(--grey-500);
  letter-spacing: 0.04em;
  font-style: italic;
}

@media (max-width: 1024px) {
  .leagues-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 640px) {
  .leagues-grid { grid-template-columns: repeat(4, 1fr); }
  .leagues-section { padding: 70px 0; }
}

/* =============================================
   STEP IMAGES
   ============================================= */

.step-img-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--grey-200);
}

.step-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* ---- STEP ANIMATIONS ---- */
.step-anim {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--grey-100);
  position: relative;
  overflow: hidden;
}

/* ── Design step ── */
.sa-pad-shape {
  position: relative;
  width: 56px;
  height: 80px;
  background: var(--grey-300);
  border-radius: 28px 28px 20px 20px;
  border: 2px solid var(--accent);
  box-shadow: 0 0 24px rgba(212,255,26,0.18);
  animation: padPulse 2.4s ease-in-out infinite;
}
.sa-pad-inner {
  position: absolute;
  inset: 8px;
  background: rgba(212,255,26,0.07);
  border-radius: 20px 20px 14px 14px;
  border: 1px solid rgba(212,255,26,0.2);
}
.sa-cursor {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  animation: cursorBounce 2.4s ease-in-out infinite;
}
.sa-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sa-line {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.sa-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineFill 2.4s ease-in-out infinite;
}
.sa-line-1 { width: 80px; }
.sa-line-2 { width: 60px; }
.sa-line-3 { width: 72px; }
.sa-line-1::after { animation-delay: 0s; }
.sa-line-2::after { animation-delay: 0.2s; }
.sa-line-3::after { animation-delay: 0.4s; }

@keyframes padPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 24px rgba(212,255,26,0.18); }
  50%       { transform: scale(1.05); box-shadow: 0 0 36px rgba(212,255,26,0.32); }
}
@keyframes cursorBounce {
  0%, 100% { transform: translate(0,0); }
  30%       { transform: translate(-6px, -8px); }
  60%       { transform: translate(4px, -4px); }
}
@keyframes lineFill {
  0%   { transform: scaleX(0); opacity: 0; }
  20%  { opacity: 1; }
  60%  { transform: scaleX(1); opacity: 1; }
  80%  { transform: scaleX(1); opacity: 0; }
  100% { transform: scaleX(0); opacity: 0; }
}

/* ── Craft step ── */
.sa-cf-grid {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sa-cf-row {
  display: flex;
  gap: 3px;
}
.sa-cf-row span {
  display: block;
  width: 16px;
  height: 16px;
  background: var(--grey-300);
  border-radius: 2px;
  animation: cfShimmer 2s ease-in-out infinite;
}
.sa-cf-row:nth-child(1) span:nth-child(1) { animation-delay: 0.0s; }
.sa-cf-row:nth-child(1) span:nth-child(2) { animation-delay: 0.1s; }
.sa-cf-row:nth-child(1) span:nth-child(3) { animation-delay: 0.2s; }
.sa-cf-row:nth-child(1) span:nth-child(4) { animation-delay: 0.3s; }
.sa-cf-row:nth-child(1) span:nth-child(5) { animation-delay: 0.4s; }
.sa-cf-row:nth-child(2) span:nth-child(1) { animation-delay: 0.1s; }
.sa-cf-row:nth-child(2) span:nth-child(2) { animation-delay: 0.2s; }
.sa-cf-row:nth-child(2) span:nth-child(3) { animation-delay: 0.3s; }
.sa-cf-row:nth-child(2) span:nth-child(4) { animation-delay: 0.4s; }
.sa-cf-row:nth-child(2) span:nth-child(5) { animation-delay: 0.5s; }
.sa-cf-row:nth-child(3) span:nth-child(1) { animation-delay: 0.2s; }
.sa-cf-row:nth-child(3) span:nth-child(2) { animation-delay: 0.3s; }
.sa-cf-row:nth-child(3) span:nth-child(3) { animation-delay: 0.4s; }
.sa-cf-row:nth-child(3) span:nth-child(4) { animation-delay: 0.5s; }
.sa-cf-row:nth-child(3) span:nth-child(5) { animation-delay: 0.6s; }
.sa-cf-row:nth-child(4) span:nth-child(1) { animation-delay: 0.3s; }
.sa-cf-row:nth-child(4) span:nth-child(2) { animation-delay: 0.4s; }
.sa-cf-row:nth-child(4) span:nth-child(3) { animation-delay: 0.5s; }
.sa-cf-row:nth-child(4) span:nth-child(4) { animation-delay: 0.6s; }
.sa-cf-row:nth-child(4) span:nth-child(5) { animation-delay: 0.7s; }

.sa-hand {
  margin-left: 16px;
}
.sa-hand-icon {
  width: 28px;
  height: 36px;
  border: 2px solid var(--accent);
  border-radius: 6px 6px 10px 10px;
  position: relative;
  animation: handPress 2s ease-in-out infinite;
}
.sa-hand-icon::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 10px;
  border: 2px solid var(--accent);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}
.sa-hand-icon::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.6;
}

@keyframes cfShimmer {
  0%, 100% { background: var(--grey-300); }
  50%       { background: rgba(212,255,26,0.35); }
}
@keyframes handPress {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── Ship step ── */
.sa-box {
  position: relative;
  animation: boxFloat 2.4s ease-in-out infinite;
}
.sa-box-lid {
  width: 64px;
  height: 14px;
  background: var(--grey-300);
  border: 2px solid var(--accent);
  border-radius: 4px 4px 0 0;
  margin: 0 auto;
  position: relative;
  animation: lidLift 2.4s ease-in-out infinite;
  transform-origin: center bottom;
}
.sa-box-body {
  width: 64px;
  height: 52px;
  background: var(--grey-300);
  border: 2px solid rgba(255,255,255,0.2);
  border-top: none;
  border-radius: 0 0 6px 6px;
  position: relative;
  overflow: hidden;
}
.sa-box-tape {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
  opacity: 0.7;
}
.sa-dots {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 18px;
}
.sa-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: dotPulse 1.8s ease-in-out infinite;
}
.sa-dot-1 { animation-delay: 0s; }
.sa-dot-2 { animation-delay: 0.2s; }
.sa-dot-3 { animation-delay: 0.4s; }

@keyframes boxFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes lidLift {
  0%, 60%, 100% { transform: rotateX(0deg); }
  30%           { transform: rotateX(-30deg); }
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50%       { opacity: 1; transform: scale(1.2); }
}

/* =============================================
   FULL-WIDTH IMAGE SECTION
   ============================================= */

.brand-statement-band {
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  background: var(--black);
  padding: 100px 48px;
  text-align: center;
}

.brand-statement-inner {
  max-width: 900px;
  margin: 0 auto;
}

.brand-statement-line {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0;
}

.brand-statement-line.accent {
  color: var(--accent);
}

.brand-statement-sub {
  margin-top: 32px;
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-400);
  line-height: 1.8;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .brand-statement-band { padding: 70px 24px; }
}

/* =============================================
   HERO CONTENT LAYER ORDER FIX
   (hero-img-bg sits behind hero-content)
   ============================================= */

.hero-content { z-index: 3; }
.hero-product-float { z-index: 3; }
.hero-video-float { z-index: 3; }
.hero-scroll-indicator { z-index: 3; }
.particles { z-index: 2; }

/* Hero video float */
.hero-video-float {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(340px, 28vw);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.75);
  display: none;
}

@media (min-width: 1100px) {
  .hero-video-float {
    display: block;
  }
}

/* Mobile: show video below hero text as a full-bleed strip */
@media (max-width: 1099px) {
  .hero-video-float {
    display: block;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100vw;
    margin-left: -24px; /* bleed past hero padding */
    border-radius: 0;
    box-shadow: none;
    margin-top: 40px;
    flex-shrink: 0;
  }
  .hero-story-video {
    width: 100%;
    height: 58vw;
    object-fit: cover;
    display: block;
  }
  /* larger sound toggle on mobile for easy tapping */
  .hero-video-float .hero-video-sound {
    width: 48px;
    height: 48px;
    font-size: 20px;
    bottom: 16px;
    right: 16px;
  }
}

.hero-story-video {
  width: 100%;
  height: auto;
  display: block;
}

.hero-video-sound {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
  z-index: 4;
}

.hero-video-sound:hover {
  background: rgba(0,0,0,0.8);
}

/* =============================================
   STORY VIDEO SECTION
   ============================================= */

.story-video-section {
  background: var(--black);
  padding: 80px 48px;
  border-bottom: 1px solid var(--grey-200);
}

.story-video-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.story-video-player {
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  background: #000;
}

/* =============================================
   GRIP SOCKS TEASER
   ============================================= */

.socks-teaser {
  position: relative;
  height: 540px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}

/* ── DRIFTING MOSAIC BACKGROUND ── */
.socks-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.socks-mosaic-col {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.socks-mosaic-col--1 { animation: socksDrift 14s ease-in-out infinite alternate; }
.socks-mosaic-col--2 { animation: socksDrift 14s ease-in-out infinite alternate-reverse 2s; }
.socks-mosaic-col--3 { animation: socksDrift 14s ease-in-out infinite alternate 4s; }

@keyframes socksDrift {
  from { transform: translateY(0); }
  to   { transform: translateY(-40px); }
}

.socks-mosaic-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 200px;
  filter: brightness(0.35);
}

/* ── OVERLAY ── */
.socks-teaser-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.15) 35%,
    rgba(0, 0, 0, 0.7) 75%,
    var(--black) 100%
  );
}

/* ── CONTENT ── */
.socks-teaser-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: flex-end;
  max-width: 640px;
}

.socks-teaser-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 150px);
  line-height: 0.85;
  color: var(--white);
  margin: 0;
}

.socks-teaser-desc {
  font-size: 16px;
  color: var(--grey-400);
  line-height: 1.6;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .socks-teaser {
    height: 460px;
  }
  .socks-teaser-content {
    padding: 0 40px 50px;
  }
  .socks-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
  .socks-mosaic-col--3 {
    display: none;
  }
}

@media (max-width: 480px) {
  .socks-teaser {
    height: 400px;
  }
  .socks-teaser-content {
    padding: 0 24px 44px;
  }
  .socks-teaser-title {
    font-size: 72px;
  }
}

/* =============================================
   RESPONSIVE ADDITIONS
   ============================================= */

@media (max-width: 1024px) {
  .split-intro {
    grid-template-columns: 1fr;
  }
  .split-intro-img {
    height: 400px;
  }
  .split-intro-text {
    padding: 60px 48px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-product-float {
    display: none;
  }
}

@media (max-width: 768px) {
  .story-video-section {
    padding: 60px 24px;
  }
}

@media (max-width: 768px) {
  .split-intro-text {
    padding: 48px 24px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 24px;
  right: auto;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 10px 16px 10px 12px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 16px;
    left: 16px;
    right: auto;
    padding: 10px;
    border-radius: 50%;
  }
  .whatsapp-float span {
    display: none;
  }
}


/* ═══════════════════════════════════════════
   REEL WALL — Instagram Story Format
   ═══════════════════════════════════════════ */
.reel-section {
  padding: 100px 0 80px;
  background: var(--black);
  overflow: hidden;
}

.reel-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 clamp(20px, 5vw, 80px);
}

.reel-track-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px clamp(20px, 5vw, 80px) 40px;
}
.reel-track-wrap::-webkit-scrollbar { display: none; }

.reel-track {
  display: flex;
  gap: 28px;
  width: max-content;
  margin: 0 auto;
}

/* Centre cards on desktop when they fit */
@media (min-width: 900px) {
  .reel-track {
    justify-content: center;
    width: 100%;
    flex-wrap: nowrap;
  }
}

.reel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* ── Phone frame ── */
.reel-phone-frame {
  position: relative;
  width: 220px;
  height: 390px;
  border-radius: 28px;
  border: 2px solid rgba(255,255,255,0.12);
  overflow: hidden;
  background: #0a0a0a;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 20px 60px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reel-phone-frame:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 30px 80px rgba(0,0,0,0.7),
    0 0 40px rgba(255,255,255,0.04);
}

.reel-phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  z-index: 10;
}

.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.reel-video.loaded { opacity: 1; }

/* ── Overlay with play button + caption ── */
.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.6) 100%
  );
  border-radius: 26px;
  transition: opacity 0.3s ease;
}
.reel-phone-frame.playing .reel-overlay {
  opacity: 0;
  pointer-events: none;
}

.reel-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  padding-left: 3px;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-bottom: auto;
  margin-top: auto;
}
.reel-phone-frame:hover .reel-play-btn {
  background: rgba(255,255,255,0.25);
  transform: scale(1.1);
}

.reel-caption {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-align: center;
}

/* ── CTA link below each card ── */
.reel-cta-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.reel-cta-link:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ── Placeholder state (before video loads) ── */
.reel-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  border-radius: 26px;
}
.reel-placeholder-icon {
  font-size: 36px;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .reel-phone-frame {
    width: 180px;
    height: 320px;
  }
}

/* ── Reel sound button ── */
.reel-sound-btn {
  position: absolute;
  bottom: 16px;
  right: 14px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  z-index: 20;
  transition: background 0.2s ease, transform 0.2s ease;
  opacity: 0;
  pointer-events: none;
}
.reel-phone-frame.playing .reel-sound-btn {
  opacity: 1;
  pointer-events: all;
}
.reel-sound-btn:hover {
  background: rgba(0,0,0,0.75);
  transform: scale(1.1);
}
