/* ══════════════════════════════════════════════
   OSTEO — Nike × Dyson Light Theme
   White bg · Black type · Grey accents
   ══════════════════════════════════════════════ */

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

:root {
  /* Core palette */
  --black:   #000000;
  --near-black: #1d1d1f;
  --white:   #ffffff;
  --grey-f5: #f5f5f7;   /* Apple/Dyson light section bg */
  --grey-eb: #ebebed;
  --grey-d:  #d2d2d7;
  --grey-86: #86868b;   /* secondary text */
  --grey-6e: #6e6e73;
  --grey-48: #48484a;
  --grey-3a: #3a3a3c;

  /* Semantic */
  --bg:        var(--white);
  --bg-alt:    var(--grey-f5);
  --bg-dark:   var(--near-black);
  --text:      var(--near-black);
  --text-sub:  var(--grey-6e);
  --text-dim:  var(--grey-86);
  --border:    rgba(0,0,0,0.08);
  --border-md: rgba(0,0,0,0.14);

  /* Radius scale — pills used intentionally, not by default */
  --r-pill: 50px;   /* CTAs, nav button, tag chips */
  --r-lg:   18px;   /* cards, panels, slideshow, modal */
  --r-md:   12px;   /* image wrappers, feat-icon */
  --r-sm:   8px;    /* spec chips, card-specs, small badges */
  --radius:    var(--r-lg);
  --radius-sm: var(--r-md);

  /* Shadow scale */
  --sh-sm: 0 2px 10px rgba(0,0,0,.05);
  --sh-md: 0 10px 34px rgba(0,0,0,.08);
  --sh-lg: 0 24px 64px rgba(0,0,0,.12);

  --font:  'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font2: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font2);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Keyboard focus affordance (the custom cursor hides the pointer, so this matters) */
:focus-visible { outline: 2px solid var(--near-black); outline-offset: 3px; border-radius: 3px; }
[data-bg="dark"] :focus-visible { outline-color: #fff; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--grey-d); border-radius: 2px; }

/* ── Custom Cursor — enabled only on fine-pointer, motion-friendly devices ── */
#cursor-dot, #cursor-ring { display: none; }   /* hidden by default (touch/reduced-motion keep native cursor) */
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  * { cursor: none !important; }
  #cursor-dot, #cursor-ring { display: block; }
}
#cursor-dot {
  position: fixed; width: 7px; height: 7px;
  background: var(--black); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, opacity .2s, background .2s;
}
#cursor-ring {
  position: fixed; width: 30px; height: 30px;
  border: 1.5px solid rgba(0,0,0,0.45); border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: width .35s cubic-bezier(.25,1,.5,1), height .35s cubic-bezier(.25,1,.5,1), border-color .3s, opacity .3s;
}
#cursor-ring::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(rgba(0,0,0,0.15) 0deg, transparent 90deg, transparent 360deg);
  animation: cursorSpin 1.6s linear infinite;
}
@keyframes cursorSpin { to { transform: rotate(360deg); } }
body.cursor-hover #cursor-dot { width: 4px; height: 4px; opacity: .5; }
body.cursor-hover #cursor-ring { width: 46px; height: 46px; border-color: var(--black); }
body.cursor-click #cursor-dot { width: 12px; height: 12px; }
body.cursor-click #cursor-ring { width: 20px; height: 20px; border-color: var(--black); }
body.cursor-text #cursor-dot { width: 2px; height: 24px; border-radius: 1px; background: var(--black); animation: textBlink 1s ease infinite; }
body.cursor-text #cursor-ring { opacity: 0; }
@keyframes textBlink { 0%,100%{opacity:1} 50%{opacity:.3} }
/* Cursor on dark background — white */
body.cursor-on-dark #cursor-dot { background: #fff; }
body.cursor-on-dark #cursor-ring { border-color: rgba(255,255,255,0.5); }
body.cursor-on-dark #cursor-ring::before { background: conic-gradient(rgba(255,255,255,0.15) 0deg, transparent 90deg, transparent 360deg); }
body.cursor-on-dark.cursor-hover #cursor-ring { border-color: #fff; }
body.cursor-on-dark.cursor-click #cursor-ring { border-color: #fff; }
body.cursor-on-dark.cursor-text  #cursor-dot  { background: #fff; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px;
  background: var(--black); color: var(--white);
  font-family: var(--font); font-weight: 700; font-size: .9rem;
  letter-spacing: .03em; border-radius: 50px; border: none;
  cursor: pointer; transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--near-black); transform: translateY(-1px); }
.btn-primary.large { padding: 18px 44px; font-size: .98rem; }

/* White variant (on dark sections) */
.btn-primary.white {
  background: var(--white); color: var(--black);
}
.btn-primary.white:hover { background: var(--grey-f5); }

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 15px 32px;
  border: 1.5px solid rgba(0,0,0,0.2); color: var(--black);
  font-family: var(--font); font-weight: 600; font-size: .9rem;
  letter-spacing: .03em; border-radius: 50px;
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.4); }

.btn-nav {
  padding: 9px 22px;
  background: var(--black); color: var(--white);
  font-family: var(--font); font-weight: 700; font-size: .82rem;
  letter-spacing: .02em; border-radius: 50px;
  transition: background .2s;
}
.btn-nav:hover { background: var(--near-black); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
/* On hero (dark bg) the nav starts transparent */
.nav { background: transparent; }
.nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px,5vw,80px);
  height: 68px;
  display: flex; align-items: center; gap: 40px;
}
.logo {
  font-family: var(--font); font-weight: 900; font-size: 1.45rem;
  letter-spacing: -1px; color: var(--white); flex-shrink: 0;
  transition: color .3s;
}
.nav.scrolled .logo { color: var(--black); }
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a {
  font-size: .84rem; font-weight: 500; color: rgba(255,255,255,.7);
  transition: color .2s; letter-spacing: .01em;
}
.nav.scrolled .nav-links a { color: var(--grey-6e); }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a:hover { color: var(--black); }
.nav-actions { margin-left: 24px; display: flex; align-items: center; gap: 14px; }
/* Nav button flips on scroll */
.nav .btn-nav { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,.3); }
.nav.scrolled .btn-nav { background: var(--black); color: var(--white); border-color: var(--black); }
/* Language toggle (EN / عربي) in nav */
.lang-toggle {
  flex-shrink: 0; white-space: nowrap; cursor: pointer;
  font-family: var(--font); font-weight: 700; font-size: .8rem;
  padding: 8px 15px; border-radius: 50px;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  transition: background .2s, color .2s, border-color .3s;
}
.lang-toggle:hover { background: rgba(255,255,255,.22); }
.nav.scrolled .lang-toggle { background: transparent; color: var(--near-black); border-color: rgba(0,0,0,.18); }
.nav.scrolled .lang-toggle:hover { background: rgba(0,0,0,.05); }

/* ── RTL (Arabic) adjustments ── */
[dir="rtl"] body { text-align: right; }
[dir="rtl"] .about .section-title[style] { text-align: right !important; }
[dir="rtl"] .hero-subtitle { margin-left: 0; margin-right: 0; }
[dir="rtl"] .nav-links { margin-left: 0; margin-right: auto; }
[dir="rtl"] .cta-trust span,
[dir="rtl"] .feat-item { direction: rtl; }
/* Arabic uses a system Arabic font (Space Grotesk/Inter lack Arabic glyphs) */
[dir="rtl"] { font-family: 'Segoe UI', 'Tahoma', 'Arial', sans-serif; }
[dir="rtl"] .logo, [dir="rtl"] .hero-title, [dir="rtl"] .section-title,
[dir="rtl"] .price-now, [dir="rtl"] .price-old, [dir="rtl"] .stat-num,
[dir="rtl"] .spec-value { font-family: var(--font); }

/* Profile icon in nav (sits next to hamburger) */
.nav-profile {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.25);
  transition: background .2s, color .2s, border-color .3s;
}
.nav-profile svg { width: 20px; height: 20px; }
.nav-profile:hover { background: rgba(255,255,255,.12); color: #fff; }
.nav.scrolled .nav-profile { color: var(--near-black); border-color: rgba(0,0,0,.15); }
.nav.scrolled .nav-profile:hover { background: rgba(0,0,0,.05); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; margin-left: auto; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: background .3s; }
.nav.scrolled .hamburger span { background: var(--black); }

.mobile-menu { display: none; flex-direction: column; background: rgba(255,255,255,.96); backdrop-filter: blur(24px); border-top: 1px solid var(--border); padding: 8px 0 16px; }
.mobile-menu a { padding: 14px clamp(20px,5vw,80px); font-size: 1rem; font-weight: 500; color: var(--grey-6e); border-bottom: 1px solid var(--border); transition: color .2s; }
.mobile-menu a:last-child { border-bottom: none; margin-top: 8px; width: fit-content; margin-left: clamp(20px,5vw,80px); }
.mobile-menu a:hover { color: var(--black); }
.mobile-menu.open { display: flex; }

/* ── HERO — full-bleed dark (Nike billboard style) ── */
.hero {
  min-height: 100svh;
  background: var(--black);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; padding-top: 68px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
/* Very subtle grain texture */
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .4;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(120px); }
.glow-1 { width: 600px; height: 600px; background: rgba(255,255,255,.04); top: -150px; right: 0; }
.glow-2 { width: 400px; height: 400px; background: rgba(255,255,255,.02); bottom: -100px; left: 0; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 50%, black, transparent);
}

.hero-content {
  max-width: 1320px; margin: 0 auto; width: 100%;
  padding: clamp(40px,8vh,100px) clamp(20px,5vw,80px);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: clamp(40px,6vw,100px);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 50px;
  font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.6);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 28px;
  background: rgba(255,255,255,.06);
}
.badge-dot { width: 5px; height: 5px; background: var(--white); border-radius: 50%; animation: pulse 2.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(1.5)} }

/* Nike-style billboard headline */
.hero-title {
  font-family: var(--font); font-size: clamp(3.4rem,7vw,6.5rem);
  font-weight: 900; line-height: .93; letter-spacing: -3.5px;
  color: var(--white); margin-bottom: 28px;
}
.gradient-text {
  background: linear-gradient(118deg, #ffffff 0%, #ffffff 38%, #9a9aa0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
/* On white sections, gradient is black → grey */
.gradient-text-dark {
  background: linear-gradient(135deg, #000000 0%, #555555 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
/* Keep the gradient headline as a single hero showcase — solid elsewhere.
   (On the white About section the white→grey clip was near-invisible.) */
.about-text .gradient-text {
  background: none; -webkit-text-fill-color: var(--near-black); color: var(--near-black);
}
.cta-inner .gradient-text {
  background: none; -webkit-text-fill-color: #fff; color: #fff;
}

.hero-subtitle {
  font-size: clamp(.9rem,1.4vw,1.05rem); color: rgba(255,255,255,.55);
  line-height: 1.7; max-width: 440px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-actions .btn-ghost { border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.8); }
.hero-actions .btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

.hero-stats { display: flex; align-items: center; gap: 28px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font); font-size: 1.7rem; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -1px; }
.stat-num small { font-size: .82rem; color: rgba(255,255,255,.45); margin-left: 2px; font-weight: 500; }
.stat-label { font-size: .68rem; color: rgba(255,255,255,.35); margin-top: 5px; text-transform: uppercase; letter-spacing: .1em; }
.stat-divider { width: 1px; height: 30px; background: rgba(255,255,255,.12); }

/* Hero product photo */
.hero-3d { position: relative; width: 100%; aspect-ratio: 9/16; max-width: 360px; justify-self: center; }
.hero-photo-wrap {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  /* Zoom into the signature gun so it appears bigger / stands out.
     Excess overflows the frame and feathers into the black hero (no layout height added). */
  transform: scale(1.3);
  transform-origin: center 45%;
}
.hero-product-img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;   /* show full photo, no crop */
  display: block;
  animation: heroImgFloat 6s ease-in-out infinite;
  /* No frame/border — feather all four edges so the photo's dark background
     dissolves seamlessly into the black hero slide */
  -webkit-mask-image:
     linear-gradient(to right,  transparent 0%, #000 12%, #000 88%, transparent 100%),
     linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image:
     linear-gradient(to right,  transparent 0%, #000 12%, #000 88%, transparent 100%),
     linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
          mask-composite: intersect;
}
@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.hero-photo-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 80%, rgba(255,255,255,.06), transparent 60%);
}

/* Floating badges */
.float-badge {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(16px); border-radius: 14px; padding: 10px 16px;
  animation: floatY 3s ease-in-out infinite;
}
.fb-1 { top: 8%; left: -5%; animation-delay: 0s; }
.fb-2 { top: 42%; right: -8%; animation-delay: .8s; }
.fb-3 { bottom: 18%; left: -8%; animation-delay: 1.6s; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.fb-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fb-icon svg { width: 18px; height: 18px; opacity: .9; }
.fb-text { display: flex; flex-direction: column; }
.fb-text strong { font-size: .82rem; font-weight: 700; color: var(--white); line-height: 1; }
.fb-text span { font-size: .68rem; color: rgba(255,255,255,.5); margin-top: 2px; }

.scroll-indicator { position: absolute; bottom: 32px; left: clamp(20px,5vw,80px); display: flex; align-items: center; gap: 12px; font-size: .68rem; color: rgba(255,255,255,.3); letter-spacing: .12em; text-transform: uppercase; }
.scroll-line { width: 36px; height: 1px; background: rgba(255,255,255,.2); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top:0;left:-100%; width:100%;height:100%; background: var(--white); animation: scanline 2.2s linear infinite; }
@keyframes scanline { to { left: 100%; } }

/* ── MARQUEE ── */
.marquee-strip {
  overflow: hidden; padding: 14px 0;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.07);
  /* Words dissolve at both ends instead of hard-cutting at the edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 9%, #000 91%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 9%, #000 91%, transparent 100%);
}
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 45s linear infinite; }
.marquee-track span { font-family: var(--font); font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.22); letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; }
.marquee-track .dot { color: rgba(255,255,255,.15); font-size: .5rem; align-self: center; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════
   LIGHT SECTIONS START HERE
   ══════════════════════════ */

/* ── SECTION COMMON ── */
.section-header { text-align: center; margin-bottom: clamp(48px,6vh,80px); }
/* Left-aligned variant — breaks the all-centered rhythm */
.section-header.left { text-align: left; }
.section-header.left .section-sub { margin-left: 0; margin-right: 0; max-width: 560px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 9px; padding: 4px 14px;
  border: 1px solid rgba(0,0,0,.1); border-radius: var(--r-pill);
  font-size: .68rem; font-weight: 700; color: var(--grey-6e);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px;
}
/* Editorial eyebrow index, e.g. "02" — monospace numeral before the tag label */
.section-tag .tag-idx {
  font-family: var(--font); font-weight: 700; letter-spacing: .06em;
  color: var(--near-black); opacity: .85;
}
.section-tag .tag-idx::after { content: ''; display: inline-block; width: 14px; height: 1px; background: currentColor; opacity: .3; margin: 0 2px 3px 8px; vertical-align: middle; }
.gallery-section .section-tag .tag-idx, .cta-inner .section-tag .tag-idx { color: #fff; }
.section-title {
  font-family: var(--font); font-size: clamp(2.2rem,4.5vw,3.8rem);
  font-weight: 900; letter-spacing: -1.5px; margin-bottom: 16px;
  color: var(--near-black); line-height: 1.02;
}
.section-sub {
  color: var(--grey-6e); font-size: clamp(.88rem,1.4vw,1rem);
  max-width: 520px; margin: 0 auto; line-height: 1.7;
}

/* ── ABOUT ── */
.about {
  padding: clamp(100px,12vh,160px) 0;
  background: var(--white);
}
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,7vw,120px); align-items: center; }
.about-text .section-title { margin-bottom: 24px; }
.about-text p { font-size: .95rem; color: var(--grey-6e); line-height: 1.7; margin-bottom: 16px; font-weight: 400; }
.about-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 28px 0 16px; }
.about-tags span {
  padding: 7px 18px; border: 1.5px solid var(--near-black);
  border-radius: 50px; font-family: var(--font); font-size: .7rem;
  font-weight: 800; letter-spacing: .1em; color: var(--near-black);
  text-transform: uppercase;
}
.about-slogan { font-size: .7rem !important; font-weight: 700 !important; letter-spacing: .14em !important; color: var(--grey-86) !important; text-transform: uppercase; margin-top: 8px !important; }
.about-visual { display: flex; flex-direction: column; gap: 28px; }
.about-photo-wrap {
  position: relative;
  height: clamp(280px,32vw,420px);
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
}
.about-photo-wrap::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.32) 0%, transparent 45%);
}
.about-cup-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  filter: grayscale(.2) contrast(1.03);
  transition: transform .7s cubic-bezier(.25,1,.5,1), filter .7s ease;
}
.about-photo-wrap:hover .about-cup-photo { transform: scale(1.04); filter: grayscale(0) contrast(1); }
.about-photo-label {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  padding: 5px 14px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-sm);
  font-family: var(--font); font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.8);
}
.about-stats-row { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; background: var(--white); }
.astat { flex: 1; padding: 20px 16px; text-align: center; border-right: 1px solid var(--border); }
.astat:last-child { border-right: none; }
.astat span { display: block; font-family: var(--font); font-size: 1.9rem; font-weight: 900; color: var(--near-black); letter-spacing: -1px; }
.astat small { font-size: .68rem; color: var(--grey-86); letter-spacing: .07em; text-transform: uppercase; }

/* ── PRODUCTS ── */
.products { padding: clamp(100px,12vh,160px) 0; background: var(--grey-f5); }

.product-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
@media (max-width: 640px) { .product-grid-2 { grid-template-columns: 1fr; } }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%,290px),1fr)); gap: 16px; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .3s, box-shadow .3s; position: relative; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.product-card.featured { box-shadow: var(--sh-md); }
.product-card.hidden { display: none; }
.card-view-all {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,.55); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  padding: 5px 12px; border-radius: var(--r-sm);
  opacity: 0; transform: translateY(4px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.product-card:hover .card-view-all { opacity: 1; transform: translateY(0); }
.card-visual.photo-visual { height: 280px; }

/* ── PRODUCT MODAL ── */
.product-modal {
  display: none; position: fixed; inset: 0; z-index: 9000;
  align-items: center; justify-content: center;
}
.product-modal.open { display: flex; }
.pm-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.8); backdrop-filter: blur(8px);
}
.pm-content {
  position: relative; z-index: 1;
  background: #fff; border-radius: 20px;
  display: grid; grid-template-columns: 1fr 1fr;
  width: min(92vw, 960px); max-height: 90vh;
  overflow: hidden; box-shadow: 0 40px 120px rgba(0,0,0,.4);
}
@media (max-width: 700px) {
  /* Stack image over text and let the whole card scroll on phones */
  .product-modal { align-items: flex-start; }
  .pm-content {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin: 4vh 0;
  }
  .pm-main-wrap { min-height: 240px; }
  .pm-main-img { max-height: 300px; }
  /* Don't vertically-center the text — align to top so nothing is cut off */
  .pm-right { justify-content: flex-start; padding-top: 24px; padding-bottom: 28px; }
}
.pm-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,0,0,.08); border: none;
  font-size: 1rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background .2s;
}
.pm-close:hover { background: rgba(0,0,0,.18); }
.pm-left { background: #111; display: flex; flex-direction: column; }
.pm-main-wrap {
  position: relative; flex: 1; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pm-main-img {
  max-width: 100%; max-height: 420px;
  object-fit: contain; display: block;
  transition: opacity .25s;
}
.pm-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: none;
  color: #fff; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.pm-arr:hover { background: rgba(255,255,255,.25); }
.pm-prev { left: 12px; }
.pm-next { right: 12px; }
.pm-thumbs {
  display: flex; gap: 8px; padding: 12px;
  overflow-x: auto; background: #0a0a0a;
}
.pm-thumbs::-webkit-scrollbar { height: 3px; }
.pm-thumbs::-webkit-scrollbar-thumb { background: #444; border-radius: 2px; }
.pm-thumb {
  width: 60px; height: 60px; border-radius: 8px; overflow: hidden;
  flex-shrink: 0; cursor: pointer; border: 2px solid transparent;
  transition: border-color .2s;
}
.pm-thumb.active { border-color: #fff; }
.pm-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pm-right {
  padding: clamp(28px,4vw,48px); display: flex;
  flex-direction: column; justify-content: center; gap: 16px;
  overflow-y: auto;
}
.pm-category { font-size: .68rem; font-weight: 700; color: var(--grey-86); text-transform: uppercase; letter-spacing: .12em; }
.pm-title { font-family: var(--font); font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 900; letter-spacing: -1.5px; color: var(--near-black); line-height: 1.1; }
.pm-desc { font-size: .9rem; color: var(--grey-6e); line-height: 1.75; }
.pm-specs { display: flex; flex-wrap: wrap; gap: 8px; }
.pm-specs span { padding: 4px 12px; background: var(--grey-f5); border: 1px solid var(--border); border-radius: var(--r-sm); font-size: .72rem; color: var(--grey-6e); }
.pm-price-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.pm-price { font-family: var(--font); font-size: 2rem; font-weight: 900; letter-spacing: -1px; color: var(--near-black); display: flex; flex-direction: column; gap: 4px; }
.pm-price-old { font-family: var(--font2); font-size: 1.1rem; font-weight: 600; color: var(--grey-86); text-decoration: line-through; text-decoration-color: #e11d2a; text-decoration-thickness: 3px; letter-spacing: 0; width: fit-content; }
.pm-price-row-now { display: flex; align-items: center; gap: 10px; }
.pm-price-now { color: #e11d2a; }
.pm-price-badge { font-family: var(--font2); font-size: .62rem; font-weight: 800; letter-spacing: .06em; color: #fff; background: #e11d2a; padding: 4px 11px; border-radius: 50px; }
.pm-secure { display: flex; align-items: flex-start; gap: 8px; margin-top: 12px; font-size: .74rem; color: var(--grey-86); line-height: 1.5; }
.pm-secure svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; stroke: var(--grey-6e); }
.pm-secure strong { color: var(--near-black); font-weight: 700; }

/* ── FEATURES CUPPING PHOTO — crisp rounded card ── */
.feat-cup-wrap {
  width: 100%; height: 100%;
}
.feat-cup-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  filter: grayscale(.15) contrast(1.02);
  transition: transform .6s cubic-bezier(.25,1,.5,1), filter .6s ease;
}
.feat-device:hover .feat-cup-img { transform: scale(1.04); filter: grayscale(0) contrast(1); }
.card-badge { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 4px 10px; background: var(--black); color: var(--white); font-size: .62rem; font-weight: 800; border-radius: var(--r-sm); letter-spacing: .08em; text-transform: uppercase; }
.card-badge.new { background: var(--grey-48); }

.card-visual { height: 210px; display: flex; align-items: center; justify-content: center; background: var(--grey-f5); position: relative; overflow: hidden; }
.product-img-wrap { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.product-glow { position: absolute; width: 160px; height: 160px; background: rgba(0,0,0,.04); border-radius: 50%; filter: blur(40px); pointer-events: none; }
.product-glow.glow-purple, .product-glow.glow-gold, .product-glow.glow-red, .product-glow.glow-teal { background: rgba(0,0,0,.04); }

/* Gun CSS art — dark on light */
.gun-3d-mini { width: 130px; height: 130px; position: relative; }
.gun-body { position: absolute; width: 90px; height: 40px; background: linear-gradient(135deg,#3a3a3c,#2c2c2e); border-radius: 20px 10px 10px 20px; top: 30px; left: 10px; box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.gun-head { position: absolute; width: 42px; height: 42px; background: linear-gradient(135deg,#2c2c2e,#1c1c1e); border-radius: 50%; top: 29px; left: 82px; box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.gun-handle { position: absolute; width: 28px; height: 60px; background: linear-gradient(180deg,#3a3a3c,#1c1c1e); border-radius: 4px 4px 12px 12px; top: 56px; left: 25px; box-shadow: 0 4px 10px rgba(0,0,0,.15); }
.gun-ring { position: absolute; width: 32px; height: 32px; border: 1.5px solid rgba(0,0,0,.2); border-radius: 50%; top: 78px; left: 21px; animation: ringPulse 2.5s ease-in-out infinite; }
@keyframes ringPulse { 0%,100%{transform:scale(1);opacity:.3} 50%{transform:scale(1.15);opacity:.7} }
.gun-btn { position: absolute; width: 12px; height: 12px; background: var(--near-black); border-radius: 50%; top: 47px; left: 28px; }

/* Cupping art */
.cup-visual { display: flex; gap: 8px; align-items: flex-end; }
.cup { background: linear-gradient(135deg,rgba(0,0,0,.12),rgba(0,0,0,.05)); border: 1px solid rgba(0,0,0,.15); border-radius: 0 0 50% 50%; }
.c1{width:20px;height:24px} .c2{width:26px;height:32px} .c3{width:32px;height:40px} .c4{width:24px;height:28px}
.elec-cup { width: 60px; height: 70px; background: linear-gradient(180deg,#3a3a3c,#1c1c1e); border: 1px solid rgba(0,0,0,.1); border-radius: 8px 8px 30px 30px; position: relative; z-index: 2; }
.elec-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(0,0,0,.15); opacity: 0; animation: expandRing 2s ease-out infinite; }
.r1{width:80px;height:80px;top:50%;left:50%;transform:translate(-50%,-50%)}
.r2{width:110px;height:110px;top:50%;left:50%;transform:translate(-50%,-50%);animation-delay:.6s}
.cup-electric{position:relative;display:flex;align-items:center;justify-content:center;width:120px;height:120px}
@keyframes expandRing{0%{opacity:.4;transform:translate(-50%,-50%) scale(.6)}100%{opacity:0;transform:translate(-50%,-50%) scale(1)}}
.foam-roller{width:100px;height:36px;background:linear-gradient(90deg,#3a3a3c 0%,#48484a 50%,#3a3a3c 100%);border-radius:18px;border:1px solid rgba(0,0,0,.1);position:relative;overflow:hidden}
.foam-roller::after{content:'';position:absolute;inset:6px;background:repeating-linear-gradient(90deg,rgba(255,255,255,.08) 0px,rgba(255,255,255,.08) 4px,transparent 4px,transparent 12px);border-radius:12px}
.roller-visual{display:flex;align-items:center;justify-content:center}
.vibe-roller{width:100px;height:36px;background:linear-gradient(90deg,#2c2c2e,#3a3a3c);border-radius:18px;border:1px solid rgba(0,0,0,.1);position:relative;z-index:2}
.vibe-ring{position:absolute;border-radius:18px;border:1px solid rgba(0,0,0,.12);opacity:0;animation:vibeExpand 1.5s ease-out infinite}
.vr1{inset:-6px} .vr2{inset:-12px;animation-delay:.4s}
.vibe-roller-visual{position:relative;display:flex;align-items:center;justify-content:center;width:140px;height:80px}
@keyframes vibeExpand{0%{opacity:.4}100%{opacity:0;transform:scale(1.08)}}

.card-info { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-category { font-size: .68rem; font-weight: 700; color: var(--grey-86); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px; }
.card-info h3 { font-family: var(--font); font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -.4px; color: var(--near-black); }
.card-info p { font-size: .84rem; color: var(--grey-6e); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.card-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.card-specs span { padding: 3px 10px; background: var(--grey-f5); border: 1px solid var(--border); border-radius: var(--r-sm); font-size: .7rem; color: var(--grey-6e); }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.card-price { font-family: var(--font); font-size: 1.5rem; font-weight: 900; color: var(--near-black); letter-spacing: -.5px; display: flex; flex-direction: column; gap: 2px; }
.card-price small { font-size: .82rem; color: var(--grey-86); font-weight: 400; }
.price-old { font-family: var(--font2); font-size: 1.5rem; font-weight: 700; color: var(--grey-6e); text-decoration: line-through; text-decoration-color: #000000; text-decoration-thickness: 2px; letter-spacing: 0; width: fit-content; }
.price-row-now { display: flex; align-items: center; gap: 8px; }
.price-now { color: #e11d2a; }
.price-badge { font-family: var(--font2); font-size: .58rem; font-weight: 800; letter-spacing: .06em; color: #fff; background: #e11d2a; padding: 3px 9px; border-radius: 50px; }
.btn-card { padding: 9px 20px; background: var(--black); color: var(--white); font-family: var(--font2); font-size: .78rem; font-weight: 700; border: none; border-radius: 50px; cursor: pointer; transition: background .2s, transform .2s; }
.btn-card:hover { background: var(--near-black); transform: translateY(-1px); }

/* ── PRODUCT REAL PHOTOS ── */
.photo-wrap {
  background: #111;
  position: absolute; inset: 0;
  overflow: hidden;
}
/* Consistent bottom scrim so cards read as one set despite different studio backdrops */
.photo-wrap::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.30) 0%, transparent 42%);
}
.product-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  /* Slight desaturation unifies mixed backgrounds; returns to full colour on hover */
  filter: grayscale(.2) contrast(1.03);
  transition: transform .6s cubic-bezier(.25,1,.5,1), filter .6s ease;
}
.product-card:hover .product-photo { transform: scale(1.06); filter: grayscale(0) contrast(1); }
.card-visual.photo-visual { background: #111; position: relative; }

/* ── GALLERY / SLIDESHOW SECTION ── */
.gallery-section {
  padding: clamp(80px,10vh,140px) 0;
  background: var(--near-black);
}
.gallery-section .section-tag { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.5); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-sub { color: rgba(255,255,255,.45); }

/* ── SLIDESHOW ── */
.slideshow {
  position: relative;
  margin-top: clamp(40px,5vh,64px);
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
  max-height: 680px;
  user-select: none;
  box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.05);
}
@media (max-width: 768px) { .slideshow { aspect-ratio: 4/3; border-radius: 16px; } }
@media (max-width: 480px) { .slideshow { aspect-ratio: 1/1; border-radius: 12px; } }

/* Track */
.slideshow-track { position: relative; width: 100%; height: 100%; }

/* ── SLIDES ── */
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  /* Fade transition */
  transition: opacity 1.1s cubic-bezier(.4,0,.2,1);
}
.slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
/* Outgoing slide fades AND slightly scales up — cinematic exit */
.slide.leaving {
  opacity: 0;
  z-index: 3;
}
.slide.leaving img {
  animation: slideLeave 1.1s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes slideLeave {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

/* ── Ken Burns per slide — each photo gets a unique slow drift ── */
.slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  will-change: transform;
}
/* 9 unique Ken Burns movements */
.slide.active.kb-0 img { animation: kb0 5s ease-in-out forwards; }
.slide.active.kb-1 img { animation: kb1 5s ease-in-out forwards; }
.slide.active.kb-2 img { animation: kb2 5s ease-in-out forwards; }
.slide.active.kb-3 img { animation: kb3 5s ease-in-out forwards; }
.slide.active.kb-4 img { animation: kb4 5s ease-in-out forwards; }
.slide.active.kb-5 img { animation: kb5 5s ease-in-out forwards; }
.slide.active.kb-6 img { animation: kb6 5s ease-in-out forwards; }
.slide.active.kb-7 img { animation: kb7 5s ease-in-out forwards; }
.slide.active.kb-8 img { animation: kb8 5s ease-in-out forwards; }

/* Zoom in from center */
@keyframes kb0 {
  0%   { transform: scale(1.12) translate(0, 0); }
  100% { transform: scale(1.0)  translate(0, 0); }
}
/* Zoom in + drift right */
@keyframes kb1 {
  0%   { transform: scale(1.08) translate(-2%, 0); }
  100% { transform: scale(1.02) translate(1%, 0.5%); }
}
/* Zoom in + drift left */
@keyframes kb2 {
  0%   { transform: scale(1.08) translate(2%, 0.5%); }
  100% { transform: scale(1.02) translate(-1%, 0); }
}
/* Slow zoom out from top-right */
@keyframes kb3 {
  0%   { transform: scale(1.0)  translate(-1.5%, 1%); }
  100% { transform: scale(1.1)  translate(0, 0); }
}
/* Drift up + zoom */
@keyframes kb4 {
  0%   { transform: scale(1.1) translate(0, 1.5%); }
  100% { transform: scale(1.03) translate(0, -0.5%); }
}
/* Drift down + zoom in */
@keyframes kb5 {
  0%   { transform: scale(1.06) translate(1%, -1.5%); }
  100% { transform: scale(1.01) translate(-0.5%, 0.5%); }
}
/* Gentle pan diagonal */
@keyframes kb6 {
  0%   { transform: scale(1.1) translate(1.5%, 1%); }
  100% { transform: scale(1.03) translate(-1%, -0.5%); }
}
/* Slow zoom in from bottom-left */
@keyframes kb7 {
  0%   { transform: scale(1.04) translate(1%, -1%); }
  100% { transform: scale(1.12) translate(-0.5%, 0.5%); }
}
/* Zoom out + drift right */
@keyframes kb8 {
  0%   { transform: scale(1.0) translate(-1%, 0.5%); }
  100% { transform: scale(1.09) translate(1%, -0.5%); }
}

/* ── Cinematic vignette overlay ── */
.slide::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.5) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.15) 0%, transparent 30%, transparent 60%, rgba(0,0,0,.45) 100%);
  pointer-events: none; z-index: 1;
}

/* ── ARROWS ── */
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .3s cubic-bezier(.34,1.56,.64,1), border-color .25s;
  z-index: 10;
}
.slide-arrow:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-50%) scale(1.1);
}
.slide-arrow:active { transform: translateY(-50%) scale(.96); }
.slide-prev { left: 24px; }
.slide-next { right: 24px; }
@media (max-width: 480px) {
  .slide-arrow { width: 40px; height: 40px; }
  .slide-prev { left: 12px; }
  .slide-next { right: 12px; }
}

/* ── PROGRESS BAR — thin line that fills over 4s ── */
.slide-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; z-index: 10; overflow: hidden;
}
.slide-progress-bar {
  height: 100%;
  background: rgba(255,255,255,.7);
  width: 0%;
  transition: width 0s;
}
.slide-progress-bar.running {
  width: 100%;
  transition: width 4s linear;
}

/* ── DOTS ── */
.slide-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 7px; z-index: 10;
}
.slide-dot {
  height: 5px; width: 5px; border-radius: 3px;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: width .4s cubic-bezier(.34,1.56,.64,1), background .3s;
  flex-shrink: 0;
}
.slide-dot.active {
  width: 28px;
  background: rgba(255,255,255,.95);
  border-radius: 3px;
}
.slide-dot:hover:not(.active) { background: rgba(255,255,255,.55); }

/* ── COUNTER ── */
.slide-counter {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--font); font-size: .66rem; font-weight: 700;
  letter-spacing: .14em; color: rgba(255,255,255,.5);
  background: rgba(0,0,0,.35); backdrop-filter: blur(12px);
  padding: 5px 13px; border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.07);
  z-index: 10;
}

/* ── FEATURES ── */
.features { padding: clamp(100px,12vh,160px) 0; background: var(--white); position: relative; overflow: hidden; }
.features-bg { position: absolute; inset: 0; pointer-events: none; }
.feat-glow { position: absolute; border-radius: 50%; filter: blur(120px); }
.fg1 { width: 500px; height: 500px; background: rgba(0,0,0,.015); top: -100px; right: -100px; }
.fg2 { width: 400px; height: 400px; background: rgba(0,0,0,.012); bottom: -100px; left: -100px; }

.features-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,6vw,100px); align-items: center; }
.features-visual { display: flex; align-items: center; justify-content: center; }
.feat-device {
  position: relative;
  width: clamp(260px,32vw,380px);
  aspect-ratio: 4/5;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #111;
  box-shadow: var(--sh-lg);
  animation: featFloat 6s ease-in-out infinite;
}
@keyframes featFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.features-list { display: flex; flex-direction: column; gap: 4px; }
.feat-item { display: flex; gap: 18px; padding: 20px; border-radius: var(--radius-sm); border: 1px solid transparent; cursor: default; transition: background .2s, border-color .2s; }
.feat-item:hover { background: var(--grey-f5); border-color: var(--border); }
.feat-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--grey-f5); border: 1px solid var(--border-md); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--near-black); }
.feat-icon svg { width: 20px; height: 20px; }
.feat-body h4 { font-family: var(--font); font-size: .96rem; font-weight: 700; margin-bottom: 5px; letter-spacing: -.3px; color: var(--near-black); }
.feat-body p { font-size: .84rem; color: var(--grey-6e); line-height: 1.65; }

/* ── SPECS ── */
.specs { padding: clamp(100px,12vh,160px) 0; background: var(--grey-f5); }
.specs-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,180px),1fr)); gap: 16px; margin-bottom: 40px; }
.spec-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 32px 20px; text-align: center; transition: box-shadow .25s, transform .25s; }
.spec-block:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.spec-icon { width: 36px; height: 36px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.spec-icon svg { width: 22px; height: 22px; stroke: var(--grey-6e); }
.spec-value { font-family: var(--font); font-size: 2.4rem; font-weight: 900; color: var(--near-black); line-height: 1; margin-bottom: 8px; letter-spacing: -2px; }
.spec-value span { font-size: .95rem; color: var(--grey-86); margin-left: 2px; font-weight: 500; letter-spacing: 0; }
.spec-name { font-size: .82rem; font-weight: 700; color: var(--near-black); margin-bottom: 4px; }
.spec-detail { font-size: .72rem; color: var(--grey-86); }

/* Spec table */
.spec-table-wrap { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--border); transition: background .2s; }
.spec-table tr:last-child { border-bottom: none; }
.spec-table tr:hover { background: var(--grey-f5); }
.spec-table td { padding: 16px 28px; font-size: .84rem; }
.spec-table td:first-child { font-family: var(--font); font-weight: 700; font-size: .7rem; letter-spacing: .1em; color: var(--grey-86); text-transform: uppercase; width: 40%; border-right: 1px solid var(--border); }
.spec-table td:last-child { font-family: var(--font); font-weight: 700; color: var(--near-black); letter-spacing: .03em; }
.spec-origin { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 14px 28px; background: var(--grey-f5); border-top: 1px solid var(--border); font-size: .66rem; font-weight: 700; letter-spacing: .14em; color: var(--grey-86); text-transform: uppercase; }
.spec-origin .sep { color: var(--grey-d); }

/* ── WHAT'S IN THE BOX ── */
.inbox-section { padding: clamp(72px,9vh,120px) 0; background: var(--white); }
.inbox-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,240px),1fr)); gap: 16px; }
.inbox-card { background: var(--grey-f5); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: box-shadow .25s, transform .25s; }
.inbox-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.inbox-icon { width: 80px; height: 60px; margin: 0 auto 20px; opacity: .75; }
.inbox-icon svg { width: 100%; height: 100%; }
.inbox-card h4 { font-family: var(--font); font-size: .95rem; font-weight: 800; letter-spacing: -.3px; margin-bottom: 8px; color: var(--near-black); }
.inbox-card p { font-size: .82rem; color: var(--grey-6e); line-height: 1.65; }
/* Invert SVG colours for light background */
.inbox-icon svg { filter: invert(1); }

/* ── CTA — dark (Nike billboard) ── */
.cta-section {
  padding: clamp(100px,12vh,160px) 0;
  background: var(--black);
  position: relative; overflow: hidden; text-align: center;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle,rgba(255,255,255,.045),transparent 70%); top:50%;left:50%;transform:translate(-50%,-50%); }
.cta-inner { position: relative; z-index: 1; }
.cta-inner .section-tag { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.5); }
.cta-inner h2 { font-family: var(--font); font-size: clamp(2.4rem,5.5vw,4.8rem); font-weight: 900; letter-spacing: -2.5px; margin: 16px 0 22px; color: var(--white); line-height: .95; }
.cta-inner p { color: rgba(255,255,255,.5); font-size: 1rem; margin-bottom: 44px; }
.cta-inner p strong { color: rgba(255,255,255,.8); font-weight: 600; }
.cta-actions { margin-bottom: 36px; }
.cta-trust { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.35); }
.cta-trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust-icon { width: 14px; height: 14px; flex-shrink: 0; color: rgba(255,255,255,.5); }
.cta-distributor { margin-top: 24px; font-size: .8rem; color: rgba(255,255,255,.3) !important; }
.cta-distributor a { color: rgba(255,255,255,.6); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ── FOOTER ── */
.footer { background: var(--near-black); border-top: 1px solid rgba(255,255,255,.06); padding: clamp(60px,8vh,100px) 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(32px,5vw,64px); margin-bottom: 56px; }
.footer-brand .logo { font-size: 1.35rem; margin-bottom: 8px; color: var(--white); }
.footer-slogan { font-family: var(--font); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 14px !important; }
.footer-brand p { font-size: .84rem; color: rgba(255,255,255,.35); line-height: 1.75; max-width: 280px; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.35); transition: border-color .2s, color .2s; }
.social-links a:hover { border-color: rgba(255,255,255,.4); color: var(--white); }
.social-links svg { width: 16px; height: 16px; }
.footer-col h5 { font-family: var(--font); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 18px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .84rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .76rem; color: rgba(255,255,255,.2); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,.2); transition: color .2s; }
.footer-legal a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 1; }
  .hero-3d { order: 0; max-width: 380px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-layout { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .features-layout { grid-template-columns: 1fr; }
  .features-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .float-badge { display: none; }
  .inbox-grid { gap: 12px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  /* Keep the profile icon visible on mobile, pushed to the right next to the hamburger */
  .nav-profile { margin-left: auto; }
  .hamburger { display: flex; margin-left: 12px; }
  .hero-3d { max-width: 300px; }
  .hero-title { letter-spacing: -2px; }
  .footer-grid { grid-template-columns: 1fr; }
  .scroll-indicator { display: none; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.4rem; }
  .hero-3d { max-width: 260px; }
  .specs-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .cta-trust { gap: 16px; font-size: .76rem; }
  .product-grid { grid-template-columns: 1fr; }
}
