/* ══════════════════════════════════════════════════════════
   HATTORI HANZO SHEARS — "Precision in Motion"
   Design Language: Athlete of Artistry
   ══════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  /* Core palette */
  --black:     #000000;
  --deep:      #121212;
  --charcoal:  #1c1c1c;
  --mid:       #2a2a2a;
  --surface:   #1e1e1e;
  --border:    rgba(255,255,255,.1);
  --white:     #ffffff;
  --off-white: #f0f0f0;
  --muted:     rgba(255,255,255,.5);

  /* Performance accent — Volt Green */
  --volt:      #C5F000;
  --volt-dim:  rgba(197,240,0,.12);
  --volt-glow: rgba(197,240,0,.25);

  /* Typography */
  --font:      'Inter Tight', 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing & shape */
  --radius:    4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--deep);
  color: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Sections ── */
.section { padding: 120px 0; }

/* ── Eyebrow label ── */
.eyebrow {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.eyebrow-volt { color: var(--volt); }

/* ── Section title ── */
.section-title {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--white);
}
.section-title.white { color: var(--white); }

.section-header { margin-bottom: 64px; }
.section-header.split-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.volt-text { color: var(--volt); }
.section-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 56px;
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-volt {
  background: var(--volt);
  color: var(--black);
  border-color: var(--volt);
}
.btn-volt:hover {
  background: #d4ff00;
  border-color: #d4ff00;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--volt-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.05);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--deep);
  border-color: var(--deep);
}
.btn-outline-dark:hover {
  background: var(--deep);
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════
   TOP TICKER
   ══════════════════════════════════════════════════════════ */
.ticker-wrap {
  background: var(--black);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: rgba(255,255,255,.5);
}
.ticker-track span { padding: 0 20px; }
.ticker-track .dot { color: var(--volt); padding: 0 4px; }
.ticker-track .ticker-volt { color: var(--volt); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18,18,18,.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(12,12,12,.98);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: auto;
  width: 100px;
  object-fit: contain;
  /* Invert to white for dark header */
  filter: brightness(0) invert(1);
  transition: filter var(--transition), opacity var(--transition);
}
.logo:hover .logo-img { opacity: .75; }

/* Footer logo */
.footer-logo-img {
  height: auto;
  width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .6;
  margin-bottom: 16px;
}

/* Nav */
.main-nav { flex: 1; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 8px 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  border-radius: var(--radius);
  transition: var(--transition);
}
.main-nav > ul > li > a:hover { color: var(--white); background: rgba(255,255,255,.06); }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 160px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 9px 14px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  border-radius: var(--radius);
  transition: var(--transition);
}
.dropdown li a:hover { color: var(--volt); background: var(--volt-dim); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: rgba(255,255,255,.65);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  font-size: .9rem;
}
.icon-btn:hover { color: var(--white); background: rgba(255,255,255,.07); }
.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--volt);
  color: var(--black);
  font-size: .5rem;
  font-weight: 800;
  width: 14px; height: 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Search Bar */
.search-bar {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, border-color .3s;
  border-bottom: 1px solid transparent;
}
.search-bar.open {
  max-height: 72px;
  border-bottom-color: var(--border);
}
.search-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 60px;
}
.search-bar-inner i { color: var(--muted); }
.search-bar-inner input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 500;
  caret-color: var(--volt);
}
.search-bar-inner input::placeholder { color: rgba(255,255,255,.3); }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}

/* ── Hero Background ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Full-bleed autoplay video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Strong dark gradient — keeps left copy readable, lets video breathe right */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,
      rgba(0,0,0,.88) 0%,
      rgba(0,0,0,.65) 45%,
      rgba(0,0,0,.25) 75%,
      rgba(0,0,0,.10) 100%
    ),
    linear-gradient(to top,
      rgba(0,0,0,.6) 0%,
      transparent 40%
    );
}

/* Film grain texture overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: overlay;
  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)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  background-repeat: repeat;
}

/* Featured shear product shot — floats on the right of the hero */
.hero-shear-art {
  position: absolute;
  right: 4%;
  bottom: 8%;
  z-index: 2;
  height: 72%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  /* subtle drop shadow to separate it from video */
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.7)) drop-shadow(0 4px 16px rgba(0,0,0,.5));
  pointer-events: none;
  animation: shearFloat 6s ease-in-out infinite;
}
@keyframes shearFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-14px) rotate(-2deg); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 32px;
  max-width: 1280px;
  margin: auto;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.badge-volt {
  background: var(--volt);
  color: var(--black);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius);
}
.hero-season {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  font-size: clamp(4rem, 9vw, 6rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-headline .volt {
  color: var(--volt);
  text-shadow:
    0 0 40px rgba(197,240,0,.45),
    0 0 80px rgba(197,240,0,.18),
    0 0 120px rgba(197,240,0,.08);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 340px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
}
.hsp-stars {
  color: var(--volt);
  font-size: .8rem;
  letter-spacing: 2px;
}

/* Line reveal animation */
.line-reveal {
  opacity: 0;
  transform: translateY(40px);
  animation: lineUp .7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--d) * 0.12s + 0.2s);
}
@keyframes lineUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Stats */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 32px;
  background: rgba(0,0,0,.55);
  border-top: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  margin-top: auto;
}
.hero-stat { padding: 0 40px; }
.hero-stat:first-child { padding-left: calc(50vw - 660px + 32px); }
.hs-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--volt);
  line-height: 1;
  margin-bottom: 5px;
}
.hs-label {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.hero-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.08);
}

/* ══════════════════════════════════════════════════════════
   TAGLINE STRIP
   ══════════════════════════════════════════════════════════ */
.tagline-strip {
  background: var(--volt);
  padding: 20px 0;
}
.tagline-inner { text-align: center; }
.tagline-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--black);
  text-transform: uppercase;
}
.tagline-text em { font-style: italic; font-weight: 900; }

/* ══════════════════════════════════════════════════════════
   COLLECTIONS — SHOP BY DISCIPLINE
   ══════════════════════════════════════════════════════════ */
.collections-section { background: var(--deep); }
.collections-intro {
  margin-top: 16px;
  max-width: 580px;
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

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

.collection-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition);
}
.collection-card:hover { transform: translateY(-6px); border-color: rgba(197,240,0,.3); }

/* Card visual area */
.cc-visual {
  height: 280px;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}
.cc-power    { background: #0a0a0a; }
.cc-precision{ background: #080a04; }
.cc-ergo     { background: #0a0808; }

/* Real collection images */
.cc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
  /* darken slightly so text tag is readable */
  filter: brightness(.85) contrast(1.05);
}
.collection-card:hover .cc-img { transform: scale(1.04); }

.cc-tag {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(0,0,0,.45);
  padding: 5px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.cc-body { padding: 28px; }
.cc-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 10px;
}
.cc-name {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 14px;
  color: var(--white);
}
.cc-desc { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 18px; }
.cc-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.cc-specs span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.cc-specs i { color: var(--volt); width: 14px; }
.cc-btn { padding: 12px 24px; font-size: .7rem; width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   PERFORMERS / BEST SELLERS — LOOPABLE CAROUSEL
   ══════════════════════════════════════════════════════════ */
.performers-section { background: var(--black); }
.performers-section .section-title { color: var(--white); }
.performers-section .split-header .btn { color: rgba(255,255,255,.6); border-color: var(--border); }
.performers-section .split-header .btn:hover { color: var(--white); border-color: rgba(255,255,255,.5); }

/* ── Carousel wrapper — contained ── */
.performers-carousel {
  position: relative;
  width: 100%;
  margin-top: 40px;
  overflow: hidden;
}
.performers-viewport {
  width: 100%;
  overflow: hidden;
}
.performers-track {
  display: flex;
  will-change: transform;
  /* width + transform set by JS */
}

/* ── Individual card ── */
.perf-card {
  display: block;
  flex-shrink: 0;              /* JS controls the width */
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform var(--transition);
}
.perf-card:hover { transform: translateY(-6px); }

/* ── Product image ── */
.perf-img {
  aspect-ratio: 6 / 8;        /* 3:4 portrait as requested */
  background: transparent;
  position: relative;
  overflow: hidden;
}
.perf-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform .45s ease;
}
.perf-card:hover .perf-img img { transform: scale(1.04); }

/* ── Arrow navigation ── */
.perf-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: var(--white);
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.perf-nav-btn:hover { background: var(--volt); color: var(--black); border-color: var(--volt); }
.perf-prev { left: 20px; }
.perf-next { right: 20px; }
.perf-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--volt);
  color: var(--black);
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 2px;
  z-index: 2;
}

.perf-info { padding: 16px 20px 24px; }
.perf-sku {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.perf-name {
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 8px;
}
.perf-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 12px; }
.perf-price { font-size: 1rem; font-weight: 800; color: var(--white); }
.perf-monthly { font-size: .65rem; color: rgba(255,255,255,.35); }
.perf-cta {
  display: block;
  text-align: center;
  padding: 9px 12px;
  background: var(--mid);
  color: rgba(255,255,255,.7);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.perf-card:hover .perf-cta { background: var(--volt); color: var(--black); }

/* ══════════════════════════════════════════════════════════
   FAMILY SHEARS
   ══════════════════════════════════════════════════════════ */
.family-section { background: var(--deep); }

/* ── Tab strip ── */
.fs-series-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 48px;
  border-bottom: 1px solid var(--border);
}
.fss-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 14px 22px 16px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
  cursor: pointer;
}
.fss-icon:hover { background: rgba(255,255,255,.04); }
.fss-icon.fss-active {
  border-bottom-color: var(--volt);
  background: rgba(197,240,0,.04);
}
.fsi-hh {
  font-size: .42rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  line-height: 1;
}
.fsi-letter {
  font-size: 1.05rem;
  font-weight: 900;
  color: rgba(255,255,255,.65);
  line-height: 1;
  letter-spacing: .02em;
}
.fsi-name {
  font-size: .52rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  line-height: 1;
}
.fss-icon:hover .fsi-hh,
.fss-icon:hover .fsi-letter,
.fss-icon:hover .fsi-name     { color: rgba(255,255,255,.75); }
.fss-icon.fss-active .fsi-hh,
.fss-icon.fss-active .fsi-name { color: rgba(197,240,0,.7); }
.fss-icon.fss-active .fsi-letter { color: var(--volt); }

/* ── Grid ── */
.family-shears-grid { margin-top: 0; }
.family-shears-grid.tabbed .fs-card { display: none; }
.family-shears-grid.tabbed .fs-card.fs-active {
  display: grid;
  grid-template-columns: 55% 1fr;
  min-height: 500px;
}

/* ── Content side ── */
.fs-content {
  position: relative;
  padding: 56px 60px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 var(--radius-lg);
}
.fs-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--volt), rgba(197,240,0,.3));
}

/* Watermark letter */
.fs-watermark {
  position: absolute;
  bottom: -24px;
  right: -8px;
  font-size: 18rem;
  font-weight: 900;
  color: rgba(197,240,0,.035);
  letter-spacing: -.06em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  text-transform: uppercase;
}

.fs-eyebrow {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 18px;
}
.fs-name {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.025em;
  color: var(--white);
  line-height: 1.04;
  margin-bottom: 22px;
}
.fs-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

/* Spec list */
.fs-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.fs-spec {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.fs-spec i {
  width: 20px; height: 20px;
  background: rgba(197,240,0,.12);
  color: var(--volt);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .52rem;
  flex-shrink: 0;
}

/* Button */
.fs-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--volt);
  color: var(--black);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
  transition: var(--transition);
}
.fs-btn:hover { background: #d4ff00; transform: translateY(-2px); }
.fs-btn i { font-size: .7rem; transition: transform .3s ease; }
.fs-btn:hover i { transform: translateX(5px); }

/* ── Image panel ── */
.fs-img-panel {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(197,240,0,.07), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #131313 100%);
  border: 1px solid var(--border);
  border-left: none;
  border-top: none;
  border-radius: 0 0 var(--radius-lg) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fs-img-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197,240,0,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,240,0,.022) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.fs-img {
  position: relative;
  z-index: 1;
  width: 88%;
  padding: 40px 0;
}
.fs-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,.8));
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fs-card.fs-active:hover .fs-img img { transform: scale(1.05) translateY(-6px); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .fs-series-strip { gap: 0; }
  .fss-icon { padding: 12px 14px 14px; }
  .fsi-name { display: none; }
  .family-shears-grid.tabbed .fs-card.fs-active {
    grid-template-columns: 1fr;
  }
  .fs-content {
    border-right: 1px solid var(--border);
    border-bottom: none;
    border-radius: 0;
    padding: 36px 28px;
  }
  .fs-img-panel {
    border-left: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    min-height: 260px;
  }
  .fs-watermark { font-size: 10rem; }
}

/* ══════════════════════════════════════════════════════════
   INNOVATION LAB
   ══════════════════════════════════════════════════════════ */
.innovation-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.innovation-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197,240,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,240,0,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.innovation-inner { position: relative; z-index: 1; }
.innovation-header { margin-bottom: 64px; max-width: 640px; }
.innovation-sub {
  font-size: .92rem;
  color: rgba(255,255,255,.45);
  margin-top: 16px;
  line-height: 1.7;
}

.tech-blueprint { position: relative; }
.bp-lines { position: absolute; inset: 0; pointer-events: none; }
.bp-h {
  position: absolute;
  top: 50%; left: -32px; right: -32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197,240,0,.08), transparent);
}
.bp-v {
  position: absolute;
  left: 50%; top: -32px; bottom: -32px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(197,240,0,.08), transparent);
}

.tech-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid rgba(197,240,0,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tech-card {
  background: rgba(197,240,0,.02);
  padding: 40px 32px;
  border-right: 1px solid rgba(197,240,0,.08);
  transition: background var(--transition);
  position: relative;
}
.tech-card:last-child { border-right: none; }
.tech-card:hover { background: rgba(197,240,0,.05); }
.tech-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: var(--transition);
}
.tech-card:hover::before { background: var(--volt); }

.tc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.tc-num {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--volt);
}
.tc-tag {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.1);
  padding: 3px 7px;
  border-radius: 2px;
}
.tc-name {
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.tc-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.42);
  line-height: 1.7;
  margin-bottom: 24px;
}
.tc-metric { display: flex; align-items: baseline; gap: 8px; }
.tm-val {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--volt);
  letter-spacing: -.02em;
  line-height: 1;
}
.tm-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

.innovation-cta { text-align: center; margin-top: 56px; }

/* ══════════════════════════════════════════════════════════
   TRIAL — THE TEST DRIVE
   ══════════════════════════════════════════════════════════ */
.trial-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}
.trial-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 60%, rgba(197,240,0,.07) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 30%, rgba(197,240,0,.04) 0%, transparent 45%);
  pointer-events: none;
}
.trial-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Left: Typographic number block ── */
.trial-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.trial-number-block {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}
.trn-num {
  font-size: clamp(7rem, 13vw, 11rem);
  font-weight: 900;
  letter-spacing: -.06em;
  color: var(--volt);
  line-height: .85;
}
.trn-suffix {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 10px;
}
.trn-unit {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  line-height: 1;
}
.trn-label {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--white);
  line-height: 1;
}
.trial-divider {
  width: 72px;
  height: 2px;
  background: var(--volt);
  opacity: .45;
}
.trial-body {
  font-size: .95rem;
  color: rgba(255,255,255,.48);
  line-height: 1.8;
}
.trial-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.trial-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  padding: 7px 13px;
}
.trial-tag i { color: var(--volt); font-size: .58rem; }

/* ── Right: Form card ── */
.trial-form-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.trial-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--volt);
}
.tfc-header { margin-bottom: 28px; }
.tfc-title {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--white);
  margin: 8px 0 10px;
}
.tfc-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.38);
  line-height: 1.5;
}
.trial-highlight {
  display: inline;
  background: var(--white);
  color: var(--black);
  padding: 1px 8px;
  border-radius: 3px;
  font-weight: 900;
}

/* ── Form fields ── */
.trial-form { display: flex; flex-direction: column; gap: 10px; }
.tf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tf-input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font);
  font-size: .82rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  box-sizing: border-box;
}
.tf-input::placeholder { color: rgba(255,255,255,.3); }
.tf-input:focus { border-color: rgba(197,240,0,.4); background: rgba(255,255,255,.09); }
.tf-full { width: 100%; }
.tf-checkbox {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; margin: 4px 0;
}
.tf-checkbox input[type="checkbox"] {
  width: 15px; height: 15px; flex-shrink: 0;
  accent-color: var(--volt); cursor: pointer;
}
.tf-checkbox span { font-size: .73rem; color: rgba(255,255,255,.45); line-height: 1.4; }
.tf-submit {
  width: 100%;
  padding: 15px;
  background: var(--volt);
  color: var(--black);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}
.tf-submit:hover { background: #d4ff00; transform: translateY(-1px); }
.tf-disclaimer {
  font-size: .62rem;
  color: rgba(255,255,255,.25);
  line-height: 1.6;
  margin-top: 2px;
}
.tf-disclaimer a { color: rgba(255,255,255,.38); text-decoration: underline; }

/* ── 3-step strip ── */
.trial-steps {
  background: rgba(255,255,255,.02);
  border-top: 1px solid var(--border);
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
.trial-steps-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 36px 0;
}
.ts-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.tss-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--volt);
  letter-spacing: -.04em;
  line-height: 1;
}
.tss-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.ts-div { width: 1px; height: 52px; background: var(--border); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .trial-inner { grid-template-columns: 1fr; gap: 52px; }
}
@media (max-width: 640px) {
  .trial-steps-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px 0;
  }
  .ts-div { width: 36px; height: 1px; margin: 0 auto; }
  .ts-step {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .ts-step:last-child { border-bottom: none; }
}


/* ══════════════════════════════════════════════════════════
   STAYSHARP™ MEMBERSHIP
   ══════════════════════════════════════════════════════════ */
.staysharp-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.staysharp-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(197,240,0,.08), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(197,240,0,.05), transparent 50%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.015) 0 1px, transparent 1px 24px);
  pointer-events: none;
}
.staysharp-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}

/* ── Left: header ── */
.ss-header { padding-top: 8px; }
.ss-wordmark {
  font-family: var(--font);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.035em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  display: inline-block;
  position: relative;
}
.ss-wordmark em {
  font-style: italic;
  color: var(--volt);
  font-weight: 900;
  margin-left: .04em;
}
.ss-wordmark sup {
  font-size: .28em;
  font-weight: 700;
  vertical-align: top;
  color: rgba(255,255,255,.4);
  margin-left: 4px;
  top: .9em;
  position: relative;
}
.ss-tagline {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 28px;
}
.ss-lede {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.ss-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Right: benefits card ── */
.ss-card {
  background: linear-gradient(180deg, var(--charcoal), var(--mid));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.ss-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: rgba(197,240,0,.06);
  border-bottom: 1px solid rgba(197,240,0,.15);
}
.sch-label {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--volt);
}
.sch-price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.sch-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
}
.sch-unit {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.ss-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.ss-row:last-of-type { border-bottom: none; }
.ss-row:hover { background: rgba(197,240,0,.03); }

.ss-row-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
}
.ss-row-label i {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(197,240,0,.12);
  color: var(--volt);
  border-radius: 50%;
  font-size: .7rem;
  flex-shrink: 0;
}
.ss-row-value {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
}
.ss-row-value strong {
  color: var(--white);
  font-weight: 700;
}

.ss-fine {
  font-size: .65rem;
  color: rgba(255,255,255,.3);
  padding: 14px 28px 18px;
  letter-spacing: .04em;
  font-style: italic;
  border-top: 1px solid var(--border);
}

/* ── Quote callout (spans full width) ── */
.ss-quote {
  grid-column: 1 / -1;
  margin-top: 24px;
  padding: 36px 40px;
  background: rgba(255,255,255,.03);
  border-left: 3px solid var(--volt);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ss-quote blockquote {
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  letter-spacing: -.005em;
  max-width: 880px;
}
.ss-quote figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ss-quote figcaption img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(197,240,0,.4);
}
.ss-q-name {
  display: block;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
}
.ss-q-role {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .staysharp-inner { grid-template-columns: 1fr; gap: 40px; }
  .ss-row { grid-template-columns: 1fr; gap: 6px; padding: 16px 22px; }
  .ss-card-head { padding: 20px 22px; }
  .ss-fine { padding: 14px 22px 18px; }
  .ss-quote { padding: 28px 24px; }
}

/* ══════════════════════════════════════════════════════════
   TRAINING CLUB
   ══════════════════════════════════════════════════════════ */
.training-section {
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.training-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(197,240,0,.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(197,240,0,.06) 0%, transparent 55%);
}
.training-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.training-body { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.75; margin: 20px 0 36px; }

.training-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}
.ts-stat { display: flex; flex-direction: column; gap: 4px; }
.ts-val {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--volt);
  letter-spacing: -.02em;
  line-height: 1;
}
.ts-lbl {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.training-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tm-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}
.tm-card:hover { border-color: rgba(197,240,0,.3); background: rgba(197,240,0,.03); }
.tm-icon {
  width: 40px; height: 40px;
  background: var(--volt-dim);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--volt);
  font-size: .95rem;
  margin-bottom: 14px;
}
.tm-name { font-size: .88rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.tm-desc { font-size: .72rem; color: rgba(255,255,255,.4); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   ARTISTS
   ══════════════════════════════════════════════════════════ */
.athletes-section { background: var(--deep); }

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

.athlete-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.athlete-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197,240,0,.28);
  box-shadow: 0 24px 56px rgba(0,0,0,.55);
}

/* ── Photo area ── */
.ac-visual {
  aspect-ratio: 4 / 3;
  background: #111;
  position: relative;
  overflow: hidden;
}
.ac-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: transform .5s ease, filter .5s ease;
  filter: grayscale(20%);
}
.athlete-card:hover .ac-photo { transform: scale(1.06); filter: grayscale(0%); }

/* Permanent bottom gradient */
.ac-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.82));
  z-index: 1;
  pointer-events: none;
}

/* ── Hover overlay: specialty + location ── */
.ac-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 20px 20px 24px;
  transform: translateY(110%);
  transition: transform .38s cubic-bezier(0.16, 1, 0.3, 1);
}
.athlete-card:hover .ac-overlay { transform: translateY(0); }

.ac-specialty {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 5px;
}
.ac-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
}
.ac-location i { color: var(--volt); font-size: .58rem; }

/* ── Info row ── */
.ac-body {
  padding: 18px 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ac-info { flex: 1; min-width: 0; }
.ac-name {
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--white);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ac-title {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.ac-ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--volt);
  background: rgba(197,240,0,.08);
  border: 1px solid rgba(197,240,0,.18);
  border-radius: var(--radius);
  padding: 6px 12px;
  transition: var(--transition);
}
.ac-ig i { font-size: .85rem; }
.ac-ig:hover {
  background: var(--volt);
  color: var(--black);
  border-color: var(--volt);
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--black); border-top: 1px solid var(--border); }

/* ── Rating bar ── */
.t-rating-bar {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  margin-bottom: 32px;
}
.trb-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
  flex-shrink: 0;
}
.trb-num {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--volt);
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: -.03em;
}
.trb-stars {
  color: var(--volt);
  font-size: .8rem;
  letter-spacing: 3px;
  margin: 5px 0;
}
.trb-count {
  font-size: .6rem;
  color: rgba(255,255,255,.32);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.trb-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
  flex-shrink: 0;
}
.trb-breakdown {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
  max-width: 220px;
}
.trb-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trb-label {
  font-size: .62rem;
  color: rgba(255,255,255,.35);
  width: 22px;
  text-align: right;
  flex-shrink: 0;
}
.trb-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.07);
  border-radius: 2px;
  overflow: hidden;
}
.trb-fill {
  height: 100%;
  background: var(--volt);
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.trb-pct {
  font-size: .6rem;
  color: rgba(255,255,255,.28);
  width: 30px;
  flex-shrink: 0;
}
.trb-platforms {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.trb-plat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
}
.trb-plat i { color: var(--volt); width: 14px; text-align: center; font-size: .72rem; }
.trb-plat span { color: rgba(255,255,255,.38); flex: 1; }
.trb-plat strong { color: #fff; font-weight: 700; font-size: .75rem; }

/* ── Track grid ── */
.testimonials-track {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

/* ── Base card ── */
.t-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.t-card:hover {
  border-color: rgba(197,240,0,.22);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,.45);
}

/* ── Featured card ── */
.t-featured {
  grid-row: span 2;
  background: var(--deep);
  border-color: rgba(197,240,0,.14);
  padding: 40px;
}
.t-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--volt), rgba(197,240,0,.25));
}
.t-featured .t-quote-mark { font-size: 7rem; }
.t-featured .t-quote      { font-size: 1rem; color: rgba(255,255,255,.78); }
.t-featured .t-av         { width: 58px; height: 58px; border-width: 2.5px; }

/* ── Decorative quote mark ── */
.t-quote-mark {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--volt);
  line-height: 0.75;
  margin-bottom: 14px;
  opacity: .6;
  font-family: Georgia, serif;
  user-select: none;
}

/* ── Content ── */
.t-stars {
  color: var(--volt);
  font-size: .68rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.t-quote {
  font-size: .83rem;
  color: rgba(255,255,255,.62);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 22px;
}

/* ── Footer ── */
.t-footer { margin-top: auto; }
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.t-av {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--volt);
}
.t-av img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.t-author-info { min-width: 0; }
.t-name {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
}
.t-role {
  font-size: .6rem;
  color: rgba(255,255,255,.32);
  margin-top: 2px;
}
.t-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.t-shear {
  font-size: .6rem;
  color: rgba(255,255,255,.32);
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.t-shear i { color: var(--volt); flex-shrink: 0; }
.t-verified {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--volt);
  background: rgba(197,240,0,.08);
  border: 1px solid rgba(197,240,0,.18);
  border-radius: 4px;
  padding: 3px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   UPCOMING SHOW
   ══════════════════════════════════════════════════════════ */
.show-section {
  background: var(--volt);
  padding: 80px 0;
}
.show-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.show-text { max-width: 560px; }
.show-text .eyebrow-volt { color: rgba(0,0,0,.5); }
.show-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--black);
  margin: 8px 0 12px;
  line-height: 1;
}
.show-date {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(0,0,0,.5);
  margin-bottom: 12px;
}
.show-desc { font-size: .9rem; color: rgba(0,0,0,.65); margin-bottom: 24px; }

.show-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.scd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: rgba(0,0,0,.12);
  border-radius: var(--radius);
  padding: 10px 16px;
  min-width: 64px;
}
.scd-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.scd-label {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,0,0,.45);
}
.scd-sep {
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(0,0,0,.3);
  line-height: 1;
  margin-bottom: 14px;
}
.show-section .btn-volt {
  background: var(--black);
  color: var(--volt);
  border-color: var(--black);
}
.show-section .btn-volt:hover { background: #111; }

.show-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--black);
}
.sb-month {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .5;
}
.sb-day {
  font-size: 8rem;
  font-weight: 900;
  line-height: .85;
  letter-spacing: -.05em;
}
.sb-line {
  width: 60px; height: 3px;
  background: var(--black);
  opacity: .25;
  margin: 8px 0;
}
.sb-extra {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .4;
}

/* ══════════════════════════════════════════════════════════
   MORE FROM HANZO
   ══════════════════════════════════════════════════════════ */
.more-section { background: var(--deep); }

.more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.more-card {
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.more-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--volt);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}
.more-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197,240,0,.28);
  box-shadow: 0 28px 64px rgba(0,0,0,.55);
}
.more-card:hover::before { transform: scaleX(1); }

/* ── Visual / image area ── */
.mc-visual {
  position: relative;
  aspect-ratio: 16 / 8;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(197,240,0,.05) 0%, transparent 55%),
    linear-gradient(180deg, #0d0d0d 0%, #161616 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mc-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197,240,0,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,240,0,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.mc-img {
  position: relative;
  z-index: 1;
  width: 90%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.6));
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}
.more-card:hover .mc-img { transform: scale(1.05); }

.mc-tag {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: 2px;
}

/* ── Body ── */
.mc-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding: 32px;
  border-top: 1px solid var(--border);
}
.mc-body-text { flex: 1; }
.mc-eyebrow {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 12px;
}
.mc-name {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 14px;
}
.mc-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 420px;
}
.mc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 2px solid var(--volt);
  transition: var(--transition);
}
.mc-cta i {
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: .8rem;
  color: var(--volt);
}
.more-card:hover .mc-cta { color: var(--volt); }
.more-card:hover .mc-cta i { transform: translateX(6px); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .mc-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
  }
  .mc-cta { padding: 10px 0; }
}

/* ══════════════════════════════════════════════════════════
   EDITORIAL — WHY HANZO
   ══════════════════════════════════════════════════════════ */
.editorial-section {
  background: var(--black);
  border-top: 1px solid var(--border);
}

/* ── Header row ── */
.editorial-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}
.editorial-head-left {}
.editorial-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.025em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.06;
  margin-top: 12px;
}
.editorial-lead {
  font-size: .97rem;
  color: rgba(255,255,255,.52);
  line-height: 1.8;
}

/* ── Feature image ── */
.editorial-img-wrap {
  width: 100%;
  margin-bottom: 56px;
}
.editorial-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.editorial-img-wrap:hover .editorial-img { transform: scale(1.02); }

/* ── Horizontal rule ── */
.editorial-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 56px;
}

/* ── Numbered points — 2-col grid ── */
.editorial-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
  margin-bottom: 64px;
}
.ep-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.ep-num {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--volt);
  line-height: 1;
  padding-top: 5px;
  min-width: 22px;
  flex-shrink: 0;
}
.ep-title {
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 10px;
}
.ep-text {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
}

/* ── Stats bar ── */
.editorial-stats {
  display: flex;
  align-items: center;
  background: rgba(197,240,0,.04);
  border: 1px solid rgba(197,240,0,.12);
  border-radius: var(--radius-md);
  padding: 32px 48px;
  margin-bottom: 48px;
}
.es-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.es-val {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--volt);
  letter-spacing: -.02em;
  line-height: 1;
}
.es-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.es-div {
  width: 1px;
  height: 48px;
  background: rgba(197,240,0,.14);
  flex-shrink: 0;
}

/* ── CTA row ── */
.editorial-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .editorial-header { grid-template-columns: 1fr; gap: 24px; }
  .editorial-stats  { padding: 24px 28px; flex-wrap: wrap; gap: 24px; }
  .es-div           { display: none; }
  .es-item          { flex: 1 1 40%; }
}
@media (max-width: 640px) {
  .editorial-points { grid-template-columns: 1fr; gap: 32px; }
  .es-item          { flex: 1 1 100%; }
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer { background: var(--black); }
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding: 80px 32px 64px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}
.footer-socials { display: flex; gap: 8px; margin-bottom: 24px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  transition: var(--transition);
}
.footer-socials a:hover { border-color: var(--volt); color: var(--volt); }
.footer-addr { font-size: .72rem; color: rgba(255,255,255,.2); line-height: 1.7; }

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--volt); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 32px;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .68rem; color: rgba(255,255,255,.2); }
.legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.legal-links a {
  font-size: .65rem;
  color: rgba(255,255,255,.2);
  letter-spacing: .05em;
  transition: var(--transition);
}
.legal-links a:hover { color: var(--volt); }

/* ── Artists CTA — left aligned ── */
.section-cta-left { justify-content: flex-start; }
.athletes-section .section-cta-row { justify-content: flex-start; }

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }

  .main-nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    flex-direction: column;
    padding: 100px 32px 48px;
    overflow-y: auto;
    border: none;
  }
  .main-nav.open > ul { flex-direction: column; gap: 0; width: 100%; }
  .main-nav.open > ul > li > a {
    font-size: 1.6rem;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    color: rgba(255,255,255,.8);
    letter-spacing: -.01em;
  }
  .main-nav.open > ul > li > a:hover { color: var(--volt); background: none; }
  .dropdown { position: static; background: transparent; border: none; box-shadow: none; padding: 8px 0 8px 16px; }
  .dropdown li a { font-size: .9rem; padding: 8px 0; color: rgba(255,255,255,.4); }
  .dropdown li a:hover { background: none; color: var(--volt); }

  .collections-grid { grid-template-columns: 1fr; }
  /* performers carousel handled by JS resize listener */
  .tech-cards-grid  { grid-template-columns: repeat(2, 1fr); }
  .training-inner   { grid-template-columns: 1fr; gap: 48px; }
  .athletes-grid    { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track{ grid-template-columns: 1fr 1fr; }
  .t-featured { grid-row: span 1; }
  .t-rating-bar { flex-wrap: wrap; gap: 24px; }
  .trb-divider  { display: none; }
  .trial-inner      { grid-template-columns: 1fr; gap: 56px; }
  .more-grid        { grid-template-columns: 1fr; }
  .footer-top       { grid-template-columns: 1fr; gap: 48px; }
  .footer-links-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .hero-content { padding: 48px 20px; }
  .hero-headline { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-stats { flex-wrap: wrap; gap: 20px; padding: 20px; }
  .hero-stat:first-child { padding-left: 20px; }
  .hero-stat-div { display: none; }
  .section-header.split-header { flex-direction: column; align-items: flex-start; }
  /* performers carousel: JS handles 2-col on mobile */
  .tech-cards-grid  { grid-template-columns: 1fr; }
  .athletes-grid    { grid-template-columns: 1fr; }
  .testimonials-track{ grid-template-columns: 1fr; }
  .t-featured { grid-row: span 1; }
  .t-rating-bar { padding: 20px; gap: 20px; }
  .trb-breakdown { max-width: 100%; }
  .training-modules { grid-template-columns: 1fr; }
  .training-stats   { flex-wrap: wrap; gap: 20px; }
  .footer-links-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .show-inner       { flex-direction: column; }
  .nl-input-wrap    { flex-direction: column; }
  .hero-shear-art   { display: none; }
  .hero-ctas        { flex-direction: column; }
  .hero-ctas .btn   { width: 100%; justify-content: center; }
}
