/* ==========================================================================
   BIOCRROSS — Clinical Confidence design system
   Source: Anthropic Design handoff (bccl-app/project/Moodboard.html)
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&family=Fraunces:opsz,wght@9..144,300;9..144,400&display=swap");

:root {
  /* Palette — sampled from logo + moodboard */
  --red:        #E51E25;  /* Cross Red — signal */
  --red-deep:   #B3171C;  /* hover/active */
  --ink:        #1C1B1A;  /* graphite */
  --ink-2:      #2A2826;
  --bone:       #FFFFFF;  /* canvas */
  --paper:      #FAFAF8;  /* surface */
  --paper-2:    #F4F4F2;
  --mint:       #C9D8CF;
  --mint-deep:  #5A7A6A;
  --line:       #E8E6E0;
  --muted:      #6B6660;

  /* Aliases for legacy class compatibility */
  --primary-red: var(--red);
  --primary-black: var(--ink);
  --white: var(--bone);
  --bg-light: var(--paper);
  --bg-grey: var(--paper-2);
  --text-dark: var(--ink);
  --text-muted: var(--muted);
  --text-light: #9c9890;
  --border-light: var(--line);
  --border-color: var(--line);

  /* Shadows — soft, paper-like */
  --shadow-sm: 0 1px 2px rgba(28, 27, 26, 0.04);
  --shadow:    0 2px 8px rgba(28, 27, 26, 0.04);
  --shadow-md: 0 8px 20px rgba(28, 27, 26, 0.06);
  --shadow-lg: 0 18px 40px rgba(28, 27, 26, 0.08);
  --shadow-hover: 0 14px 32px rgba(28, 27, 26, 0.10);

  /* Radius — refined, less rounded than before */
  --radius-sm:   3px;
  --radius:      6px;
  --radius-lg:   8px;
  --radius-pill: 999px;
  --radius-full: 999px;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.25rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 2.5rem;
  --space-3xl: 3rem;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition: all 0.2s var(--ease);

  /* Typography stacks */
  --font-display: 'Archivo', system-ui, -apple-system, sans-serif;
  --font-body:    'Archivo', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --font-serif:   'Fraunces', Georgia, serif;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: var(--transition); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 800; letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 3.6vw, 2.75rem); font-weight: 700; letter-spacing: -0.03em; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; }
h5 { font-size: 0.95rem; font-weight: 600; }
p  { color: var(--ink-2); line-height: 1.6; }
em { font-style: italic; }

/* ============ TYPE UTILITIES ============ */
.mono   { font-family: var(--font-mono); letter-spacing: 0.02em; }
.serif  { font-family: var(--font-serif); font-style: italic; font-weight: 300; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 1rem;
}
.label-mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ LAYOUT ============ */
.container    { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-lg { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 1.5rem; }
.py-section, .py-section-lg { padding: var(--space-3xl) 0; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
}
.navbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 88px; gap: 2rem;
}
.navbar-brand { display: flex; align-items: center; gap: 0.75rem; }
.navbar-brand img { height: 72px; width: auto; transition: transform 0.3s var(--ease); }
.navbar.scrolled .navbar-brand img { height: 60px; }
@media (max-width: 575px) {
  .navbar-inner { height: 76px; }
  .navbar-brand img { height: 56px; }
  .navbar.scrolled .navbar-brand img { height: 48px; }
}

.navbar-menu {
  display: flex; align-items: center; gap: 2rem;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 500;
}
.navbar-menu > a, .dropdown > a {
  position: relative;
  color: var(--ink); padding: 0.5rem 0;
  letter-spacing: -0.005em;
}
.navbar-menu > a::after, .dropdown > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.navbar-menu > a:hover::after, .dropdown:hover > a::after { transform: scaleX(1); }

.navbar-menu .pill-btn { margin-left: 0.5rem; }

.navbar-toggle {
  display: none; width: 40px; height: 40px; border: none; background: transparent;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  cursor: pointer; padding: 0;
}
.navbar-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  min-width: 220px; background: var(--bone);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 0.5rem; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.dropdown-menu a {
  display: block; padding: 0.625rem 1rem; font-size: 13.5px; color: var(--ink-2);
  border-radius: var(--radius-sm); transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--paper); color: var(--ink); }

@media (max-width: 991px) {
  .navbar-toggle { display: flex; }
  .navbar-menu {
    position: fixed; top: 88px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bone); border-bottom: 1px solid var(--line);
    padding: 1rem; transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
    max-height: calc(100vh - 88px); overflow-y: auto;
  }
  .navbar-menu.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .navbar-menu > a, .dropdown > a { padding: 0.875rem 0.5rem; border-bottom: 1px solid var(--line); }
  .navbar-menu > a::after, .dropdown > a::after { display: none; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; pointer-events: auto;
    transform: none; box-shadow: none; border: none; min-width: 0; padding: 0 0 0.5rem 1rem;
    max-height: 0; overflow: hidden; transition: max-height 0.25s var(--ease);
  }
  .dropdown.active .dropdown-menu { max-height: 400px; }
  .dropdown-menu a { padding: 0.5rem 0.5rem; }
  .navbar-menu .pill-btn { margin: 0.5rem 0 0; justify-content: center; }
}

/* ============ BUTTONS ============ */
.btn, .pill-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.625rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent; border-radius: var(--radius-pill);
  cursor: pointer; text-decoration: none;
  transition: transform 0.15s var(--ease), background 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover, .pill-btn:hover { transform: translateY(-1px); }

.btn-primary, .pill-btn-primary {
  background: var(--red); color: #fff;
}
.btn-primary:hover, .pill-btn-primary:hover {
  background: var(--red-deep); color: #fff; box-shadow: 0 6px 18px rgba(229,30,37,0.28);
}
.btn-secondary, .pill-btn-ink {
  background: var(--ink); color: var(--bone);
}
.btn-secondary:hover, .pill-btn-ink:hover { background: var(--ink-2); color: var(--bone); }

.btn-outline, .pill-btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn-outline:hover, .pill-btn-ghost:hover { background: var(--ink); color: var(--bone); }

.btn-white { background: var(--bone); color: var(--ink); }
.btn-white:hover { background: var(--paper); color: var(--ink); }

.pill-btn .arrow {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center; font-size: 11px; line-height: 1;
}
.pill-btn-ghost .arrow { background: var(--ink); color: #fff; }

/* ============ NAVBAR "BUY ONLINE" — rectangular eye-catching CTA ============ */
.navbar-menu .pill-btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  padding: 0.7rem 1.1rem 0.7rem 1.25rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 4px 14px rgba(229,30,37,0.32),
    0 1px 0 rgba(255,255,255,0.18) inset;
  position: relative; overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}
.navbar-menu .pill-btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}
.navbar-menu .pill-btn-primary:hover {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 10px 26px rgba(229,30,37,0.45),
    0 1px 0 rgba(255,255,255,0.22) inset;
  filter: brightness(1.05);
}
.navbar-menu .pill-btn-primary:hover::before { transform: translateX(110%); }
.navbar-menu .pill-btn-primary:active {
  transform: translateY(0) scale(1);
  box-shadow: 0 4px 10px rgba(229,30,37,0.35);
}
.navbar-menu .pill-btn-primary .arrow {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border-radius: 4px;
  width: 20px; height: 20px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.navbar-menu .pill-btn-primary:hover .arrow {
  background: #fff; color: var(--red-deep);
  transform: translateX(3px);
}

/* ============ BADGES ============ */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: var(--paper); color: var(--ink); border: 1px solid var(--line);
}
.badge.dot::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor;
}
.b-rx   { background: #fde6e7; color: var(--red-deep); border-color: #f5cdcf; }
.b-stk  { background: #dceae2; color: var(--mint-deep); border-color: #c8dcd0; }
.b-new  { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.b-iso  { background: var(--paper-2); color: var(--ink); border-color: var(--line); }

/* ============ SECTION HELPERS ============ */
.section-header {
  text-align: center; max-width: 640px; margin: 0 auto var(--space-md);
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { color: var(--muted); font-size: 1.0625rem; }
.section-grey { background: var(--paper); }
.section-dark { background: var(--ink); color: var(--bone); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--bone); }
.section-dark p  { color: rgba(255,255,255,0.72); }

/* ============ HERO (SPLIT) ============ */
.hero { position: relative; padding: 0; overflow: hidden; background: var(--bone); }

.hero-split {
  display: grid; grid-template-columns: 5fr 7fr;
  border-bottom: 1px solid var(--line);
  min-height: 640px;
}
.hero-l {
  padding: 8rem 4rem 4rem;
  display: flex; flex-direction: column; justify-content: center; gap: 1.75rem;
  background: var(--bone);
}
.hero-l .eyebrow { margin-bottom: 0; }
.hero-headline {
  font-size: clamp(2.5rem, 5.4vw, 4.25rem);
  line-height: 0.95; font-weight: 800; letter-spacing: -0.04em;
  margin: 0; text-wrap: balance;
}
.hero-headline .red { color: var(--red); }
.hero-headline em {
  font-family: var(--font-serif); font-style: italic; font-weight: 300; color: var(--ink-2);
}
.hero-sub { max-width: 460px; font-size: 1rem; line-height: 1.55; color: var(--ink-2); }
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.hero-stats > div { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-stats b {
  font-family: var(--font-display); font-size: 1.875rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--ink); line-height: 1;
}
.hero-stats span {
  font-family: var(--font-mono); font-size: 10px; color: var(--muted);
  letter-spacing: 0.16em; text-transform: uppercase;
}

.hero-r {
  position: relative; background: var(--ink); overflow: hidden; min-height: 640px;
}
.hero-r .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  will-change: transform;
}
.hero-r .red-bar {
  position: absolute; left: 0; top: 0; bottom: 0; width: 14px; background: var(--red); z-index: 2;
}
.hero-batch {
  position: absolute; right: 2rem; top: 2rem;
  color: #a89e8d; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; text-align: right; line-height: 1.7;
  z-index: 3;
}
.hero-tag {
  position: absolute; left: 2rem; bottom: 1.75rem;
  color: #a89e8d; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; z-index: 3;
}
.hero-tag span { color: #fff; }

/* ============ HERO — MONTAGE + FOCAL CARD ============ */
/* Carousel banner — single horizontal rail, advances by translateX. Bulletproof pattern. */
.hero-focal {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 86%);
  height: 460px;
  z-index: 4;
  background: rgba(20, 19, 18, 0.62);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
  will-change: transform, opacity;
}
.hero-focal::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--red); z-index: 2;
}

/* Full-bleed variant — banner fills the entire right column */
.hero-focal.hero-focal--fullbleed {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  transform: none;
  width: 100%; height: 100%;
  border: 0; border-radius: 0;
  background: var(--ink);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  box-shadow: none;
}
.hero-focal.hero-focal--fullbleed::before { display: none; }
.focal-rail {
  display: flex; height: 100%;
  transform: translateX(0);
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.focal-slide {
  flex: 0 0 auto;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.focal-slide-img {
  position: absolute; inset: 0;
  z-index: 1;
  background: var(--ink);
  overflow: hidden;
}
/* Foreground: full banner, no crop */
.focal-slide-img .focal-slide-fg {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  display: block;
}
/* Background: same banner, blurred + scaled up to fill the empty side strips
   left by `contain`. Dark-tinted so it doesn't compete with the foreground. */
.focal-slide-img .focal-slide-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: blur(28px) brightness(0.55) saturate(1.1);
  transform: scale(1.15);
  display: block;
}
.focal-slide-img::after {
  content: ""; position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.78) 100%);
  pointer-events: none;
}

/* Auto-slide progress bar — visible at the top, fills over each cycle */
.focal-progress {
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  z-index: 6; background: rgba(255,255,255,0.12);
  pointer-events: none;
}
.focal-progress-fill {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--red), var(--red-deep));
  transition: width 0.1s linear;
}
.focal-progress-fill.is-running { transition: width var(--focal-cycle, 3500ms) linear; width: 100%; }
.focal-slide-meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  padding: 1.5rem 2rem 4rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  max-width: 80%;
}
.hero-focal--fullbleed .focal-slide-meta {
  padding: 2rem 2.5rem 4.5rem;
}
.hero-focal--fullbleed .focal-slide-name {
  font-size: 2rem;
}
.focal-slide-cat {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.focal-slide-name {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.02em; color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.45);
}
.focal-slide-dose {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.focal-pips {
  position: absolute; left: 1.25rem; bottom: 1.5rem; z-index: 5;
  display: flex; gap: 6px; align-items: center;
  background: transparent; padding: 0; margin: 0;
}
.hero-focal--fullbleed .focal-pips {
  left: 2.5rem; bottom: 2rem;
}
.focal-pips .pip {
  width: 22px; height: 2px; border-radius: 2px;
  background: rgba(255,255,255,0.25);
  border: 0; padding: 0; cursor: pointer;
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
}
.focal-pips .pip.is-active { background: var(--red); width: 36px; }
.focal-pips .pip:hover { background: rgba(255,255,255,0.5); }
.focal-pips .pip.is-active:hover { background: var(--red); }

/* Mobile resize: keep image area generous */
@media (max-width: 991px) {
  .hero-focal { width: min(440px, 88%); height: 380px; }
  .focal-slide-name { font-size: 1.3125rem; }
}
@media (max-width: 575px) {
  .hero-focal { width: 90%; height: 340px; }
}

@media (max-width: 991px) {
  .hero-split { grid-template-columns: 1fr; min-height: 0; }
  .hero-l { padding: 7rem 1.5rem 3rem; }
  .hero-r { min-height: 460px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .hero-focal { width: min(320px, 82%); padding: 1.25rem 1.25rem 1rem; }
  .hero-focal-name { font-size: 1.25rem; }
}
@media (max-width: 575px) {
  .hero-headline { font-size: 2.4rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-montage { padding: 0 1rem; gap: 0.6rem; }
  .montage-col { gap: 0.6rem; }
  .hero-focal { width: 86%; }
}

/* Legacy hero classes (for other pages still using them) */
.hero-content { max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-pill); font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2); margin-bottom: 1.25rem;
}
.hero-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-shape { display: none; }

/* ============ STATS ============ */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
}
.stat-item {
  background: var(--bone); padding: 2rem 1.5rem; text-align: center;
  transition: var(--transition);
}
.stat-item:hover { background: var(--paper); }
.stat-number {
  font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1; margin-bottom: 0.5rem;
}
.stat-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
@media (max-width: 991px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .stats-grid { grid-template-columns: 1fr; } }

/* ============ ABOUT ============ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-content h2 { margin-bottom: 1rem; }
.about-content p { margin-bottom: 1rem; color: var(--ink-2); }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem;
}
.about-feature { display: flex; gap: 1rem; align-items: flex-start; }
.about-feature-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  display: grid; place-items: center; color: var(--red); font-size: 1rem;
}
.about-feature h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.about-feature p  { font-size: 0.875rem; color: var(--muted); margin: 0; line-height: 1.5; }

.about-image { position: relative; }
.about-image img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-image-badge {
  position: absolute; bottom: 1.5rem; left: -1.5rem;
  background: var(--red); color: #fff; padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(229,30,37,0.32);
}
.about-image-badge .number {
  font-family: var(--font-display); font-size: 1.875rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1;
}
.about-image-badge .label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; margin-top: 0.25rem;
}
@media (max-width: 991px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-features { grid-template-columns: 1fr; }
  .about-image-badge { left: 1rem; }
}

/* ============ SERVICES / CARDS ============ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.service-card {
  background: var(--bone); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  border-color: var(--ink); transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 48px; height: 48px; background: var(--paper);
  border-radius: var(--radius); display: grid; place-items: center;
  color: var(--red); font-size: 1.25rem; margin-bottom: 1.25rem;
  border: 1px solid var(--line);
}
.service-card h3, .service-card h4 { margin-bottom: 0.5rem; }
.service-card p  { color: var(--muted); font-size: 0.9375rem; line-height: 1.55; margin: 0; }
@media (max-width: 991px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .services-grid { grid-template-columns: 1fr; } }

/* ============ PRODUCTS ============ */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.product-card {
  display: grid; grid-template-rows: auto 1fr;
  background: var(--bone); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  border-color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow-md);
}
.product-card img {
  width: 100%; aspect-ratio: 1; object-fit: contain;
  background: linear-gradient(180deg, #ffffff, var(--paper));
  padding: 1.5rem;
}
.product-card-body { padding: 1rem 1.25rem 1.25rem; }
.product-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.product-card p {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin: 0;
}
@media (max-width: 991px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }

/* Moodboard-style product card with pill mock */
.prod-mock {
  display: grid; grid-template-rows: auto 1fr auto;
  background: var(--bone); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.prod-mock:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.prod-mock .ph {
  aspect-ratio: 1; position: relative;
  background: linear-gradient(180deg, #ffffff, #f0ece4);
  display: grid; place-items: center;
}
.prod-mock .ph .pill-shape {
  width: 54%; height: 30%; background: #fff; border-radius: var(--radius-pill);
  box-shadow: inset 0 0 0 1px var(--line), 0 14px 26px rgba(28,27,26,0.15);
  position: relative; overflow: hidden;
}
.prod-mock .ph .pill-shape::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: var(--line);
}
.prod-mock .ph .pill-shape .h {
  position: absolute; left: 0; top: 0; bottom: 0; width: 50%;
  background: linear-gradient(180deg, var(--red), var(--red-deep));
}
.prod-mock .body { padding: 1.25rem; }
.prod-mock .cat {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem;
}
.prod-mock .nm { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.02em; margin: 0.25rem 0; }
.prod-mock .sub { font-size: 0.8125rem; color: var(--muted); margin: 0; }
.prod-mock .foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 1.25rem 1.25rem;
}
.prod-mock .price {
  font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink);
}
.prod-mock .price small {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500; color: var(--muted); margin-left: 0.25rem;
}
.prod-mock .add {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: #fff; border: none;
  display: grid; place-items: center; cursor: pointer; font-size: 1.125rem;
  transition: var(--transition);
}
.prod-mock .add:hover { background: var(--red); transform: scale(1.05); }

/* ============ CATEGORIES ============ */
.categories-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.category-card {
  position: relative; aspect-ratio: 5/4; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ink); text-decoration: none; color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.category-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--red); z-index: 3;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-card:hover::before { transform: scaleX(1); }
.category-card img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.78; transition: opacity 0.4s var(--ease), transform 0.6s var(--ease);
}
.category-card:hover img { opacity: 0.6; transform: scale(1.06); }
.category-card-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.125rem 1.125rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.78));
  display: flex; flex-direction: column; gap: 0.25rem;
}
.category-card h4 {
  color: #fff; font-size: 1.0625rem; font-weight: 700; margin: 0; letter-spacing: -0.01em;
}
.category-tagline {
  color: rgba(255,255,255,0.78); font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; margin: 0;
}
.category-explore {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.45rem;
  color: var(--red); font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
}
.category-explore::after {
  content: "→"; transition: transform 0.3s var(--ease);
}
.category-card:hover .category-explore::after { transform: translateX(4px); }
@media (max-width: 991px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }

/* ============ TRUST / CERTIFICATIONS ============ */
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.trust-item {
  background: var(--bone); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.125rem 1rem;
  text-align: center; transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 0.375rem;
}
.trust-item:hover { border-color: var(--ink); transform: translateY(-2px); }
.trust-item img { max-height: 40px; margin: 0; }
.trust-item .fa-solid, .trust-item .fa-certificate {
  font-size: 1.375rem; color: var(--red); margin: 0 0 0.25rem;
}
.trust-item h4 { font-size: 0.9375rem; margin: 0; }
.trust-item p {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin: 0;
}
@media (max-width: 991px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ PRINCIPLES ============ */
.principles-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.principle {
  padding: 1.75rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.principle .n {
  font-family: var(--font-mono); font-size: 11px; color: var(--red);
  letter-spacing: 0.14em; display: inline-block; margin-bottom: 0.875rem;
}
.principle h4 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.principle p { font-size: 0.875rem; line-height: 1.55; color: var(--muted); margin: 0; }
@media (max-width: 991px) { .principles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .principles-grid { grid-template-columns: 1fr; } }

/* ============ CTA ============ */
.cta-section {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--bone);
  padding: var(--space-3xl) 0;
}
.cta-section::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 14px; background: var(--red);
}
.cta-content {
  position: relative; z-index: 2; max-width: 720px; margin: 0 auto; text-align: center;
}
.cta-content h2 { color: #fff; margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.72); font-size: 1.0625rem; margin-bottom: 2rem; }
.cta-buttons {
  display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center;
}
.cta-shape {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(229,30,37,0.18), transparent 65%);
  pointer-events: none;
}
.cta-shape-1 { width: 320px; height: 320px; top: -100px; right: -80px; }
.cta-shape-2 { width: 240px; height: 240px; bottom: -80px; left: 5%; background: radial-gradient(circle, rgba(201,216,207,0.16), transparent 65%); }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid; grid-template-columns: 5fr 7fr; gap: 4rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  display: grid; place-items: center; color: var(--red); font-size: 1rem;
}
.contact-item h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-item p  { font-size: 0.9375rem; color: var(--ink-2); margin: 0; line-height: 1.5; }
.contact-item p a { color: var(--ink-2); transition: var(--transition); }
.contact-item p a:hover { color: var(--red); }

.contact-form {
  background: var(--bone); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem;
}
.form-control {
  width: 100%; padding: 0.875rem 1rem; background: var(--bone);
  border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9375rem; color: var(--ink);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.form-control:focus {
  outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(28,27,26,0.06);
}
.form-control::placeholder { color: var(--text-light); }

@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============ PAGE HEADER (sub-pages) ============ */
.page-header {
  padding: 8rem 0 3rem; background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-header h1 { font-size: clamp(2.25rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.breadcrumb {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); display: flex; gap: 0.625rem; align-items: center;
}
.breadcrumb a { color: var(--muted); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { color: var(--muted); }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink); color: rgba(255,255,255,0.72);
  padding: 4rem 0 1.5rem;
  position: relative;
}
.footer::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--red), transparent 40%);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 56px; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-brand p {
  color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.55; max-width: 320px;
}
.footer-social { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.72);
  display: grid; place-items: center; font-size: 0.875rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }

.footer h5 {
  color: #fff; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem;
}
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a {
  color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: color 0.15s;
}
.footer ul a:hover { color: #fff; }

.footer-bottom {
  padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
}
.footer-bottom p { color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: #fff; }

@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 575px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-red    { color: var(--red); }
.text-muted  { color: var(--muted); }
.text-white  { color: #fff; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.bg-white { background: var(--bone); }
.bg-light { background: var(--paper); }
.bg-dark  { background: var(--ink); }
.bg-red   { background: var(--red); }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: var(--space-xs); }
.gap-2 { gap: var(--space-sm); }
.gap-3 { gap: var(--space-md); }

/* ============ SCROLL REVEAL ANIMATION ============ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.94);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

.reveal-stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.00s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.06s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.18s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.30s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.36s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.42s; }

/* Stagger with scale (cards) */
.reveal-stagger.scale-in > * { transform: translateY(20px) scale(0.96); }
.reveal-stagger.scale-in.is-visible > * { transform: translateY(0) scale(1); }

/* ============ SCROLL PROGRESS BAR ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: transparent; z-index: 200; pointer-events: none;
}
.scroll-progress::before {
  content: ""; display: block; height: 100%; width: var(--p, 0%);
  background: linear-gradient(90deg, var(--red), var(--red-deep));
  transition: width 0.08s linear;
}

/* ============ MARQUEE ============ */
.marquee {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bone); padding: 1.25rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 3rem; align-items: center; width: max-content;
  animation: marquee-slide 40s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 0.625rem;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); white-space: nowrap;
}
.marquee-item .dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--red);
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Reverse-direction marquee (visual variety) */
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee.dark { background: var(--ink); border-color: rgba(255,255,255,0.06); }
.marquee.dark .marquee-item { color: rgba(255,255,255,0.85); }
.marquee.dark .marquee-item .dot { background: var(--red); }

/* ============ WHY CHOOSE US ============ */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--line);
}
.why-item {
  background: var(--bone); padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  position: relative; transition: var(--transition);
}
.why-item:hover { background: var(--paper); }
.why-item .why-num {
  font-family: var(--font-mono); font-size: 10px; color: var(--red);
  letter-spacing: 0.16em;
}
.why-item h4 {
  font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.02em; margin: 0;
}
.why-item p { font-size: 0.8125rem; line-height: 1.5; color: var(--muted); margin: 0; }
.why-item::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.why-item:hover::after { transform: scaleX(1); }
@media (max-width: 991px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .why-grid { grid-template-columns: 1fr; } }

/* ============ DIVISIONS CLOUD ============ */
.divisions-wrap {
  display: flex; flex-wrap: wrap; gap: 0.625rem; justify-content: center;
  max-width: 880px; margin: 0 auto;
}
.division-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--bone); border: 1px solid var(--line); border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.08em; color: var(--ink-2);
  transition: var(--transition);
}
.division-pill:hover {
  background: var(--ink); color: var(--bone); border-color: var(--ink); transform: translateY(-2px);
}
.division-pill .num {
  font-size: 10px; color: var(--muted);
}
.division-pill:hover .num { color: rgba(255,255,255,0.5); }

/* ============ SCROLL-PINNED SECTION ============ */
.pin-section {
  position: relative;
}
.pin-stage {
  position: sticky; top: 88px;
  min-height: calc(100vh - 88px);
  display: flex; align-items: center;
}

/* ============ HERO PARALLAX TARGETS ============ */
.hero-r .grid-bg { will-change: transform; }

/* ============ FEATURED CATALOG (real product images) ============ */
.featured-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.featured-card {
  display: flex; flex-direction: column;
  background: var(--bone); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
}
.featured-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.featured-card-img {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 70%, #f0ece4 100%);
  display: grid; place-items: center;
  padding: 1.25rem;
  overflow: hidden;
}
.featured-card-img img {
  max-width: 88%; max-height: 88%; width: auto; height: auto; object-fit: contain;
  transition: transform 0.5s var(--ease);
  filter: drop-shadow(0 12px 24px rgba(28,27,26,0.12));
}
.featured-card:hover .featured-card-img img { transform: scale(1.06) rotate(-1deg); }

.featured-tag {
  position: absolute; top: 0.875rem; left: 0.875rem; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid;
}
.featured-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor;
}
.featured-tag.rx  { background: #fde6e7; color: var(--red-deep); border-color: #f5cdcf; }
.featured-tag.otc { background: var(--paper-2); color: var(--ink); border-color: var(--line); }

/* Diagonal red accent stripe in image bg */
.featured-card-img::before {
  content: ""; position: absolute;
  left: -20%; right: 60%; bottom: 30%; height: 4px;
  background: var(--red);
  opacity: 0; transform: rotate(-8deg) translateX(-20%);
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease);
}
.featured-card:hover .featured-card-img::before { opacity: 0.85; transform: rotate(-8deg) translateX(0); }

.featured-card-body {
  padding: 1.125rem 1.25rem 1.25rem;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.375rem;
}
.featured-card-cat {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.featured-card-name {
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 700;
  letter-spacing: -0.02em; color: var(--ink); line-height: 1.15;
}
.featured-card-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 0.25rem;
}
.featured-card-meta .mono {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.featured-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--paper); color: var(--ink);
  display: grid; place-items: center; font-size: 0.875rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.featured-card:hover .featured-arrow {
  background: var(--red); color: #fff; transform: translateX(2px);
}

@media (max-width: 991px) { .featured-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }

/* ============ WORD-BY-WORD REVEAL ============ */
.words-reveal { display: inline; }
.words-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%);
  filter: blur(6px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), filter 0.6s var(--ease);
  will-change: opacity, transform, filter;
}
.words-reveal .word + .word::before { content: " "; }
.words-reveal.is-visible .word { opacity: 1; transform: translateY(0); filter: blur(0); }
/* Stagger up to 32 words */
.words-reveal.is-visible .word:nth-child( 1) { transition-delay: 0.000s; }
.words-reveal.is-visible .word:nth-child( 2) { transition-delay: 0.040s; }
.words-reveal.is-visible .word:nth-child( 3) { transition-delay: 0.080s; }
.words-reveal.is-visible .word:nth-child( 4) { transition-delay: 0.120s; }
.words-reveal.is-visible .word:nth-child( 5) { transition-delay: 0.160s; }
.words-reveal.is-visible .word:nth-child( 6) { transition-delay: 0.200s; }
.words-reveal.is-visible .word:nth-child( 7) { transition-delay: 0.240s; }
.words-reveal.is-visible .word:nth-child( 8) { transition-delay: 0.280s; }
.words-reveal.is-visible .word:nth-child( 9) { transition-delay: 0.320s; }
.words-reveal.is-visible .word:nth-child(10) { transition-delay: 0.360s; }
.words-reveal.is-visible .word:nth-child(11) { transition-delay: 0.400s; }
.words-reveal.is-visible .word:nth-child(12) { transition-delay: 0.440s; }
.words-reveal.is-visible .word:nth-child(13) { transition-delay: 0.480s; }
.words-reveal.is-visible .word:nth-child(14) { transition-delay: 0.520s; }
.words-reveal.is-visible .word:nth-child(15) { transition-delay: 0.560s; }
.words-reveal.is-visible .word:nth-child(16) { transition-delay: 0.600s; }
.words-reveal.is-visible .word:nth-child(17) { transition-delay: 0.640s; }
.words-reveal.is-visible .word:nth-child(18) { transition-delay: 0.680s; }
.words-reveal.is-visible .word:nth-child(19) { transition-delay: 0.720s; }
.words-reveal.is-visible .word:nth-child(20) { transition-delay: 0.760s; }
.words-reveal.is-visible .word:nth-child(21) { transition-delay: 0.800s; }
.words-reveal.is-visible .word:nth-child(22) { transition-delay: 0.840s; }
.words-reveal.is-visible .word:nth-child(23) { transition-delay: 0.880s; }
.words-reveal.is-visible .word:nth-child(24) { transition-delay: 0.920s; }
.words-reveal.is-visible .word:nth-child(25) { transition-delay: 0.960s; }
.words-reveal.is-visible .word:nth-child(26) { transition-delay: 1.000s; }
.words-reveal.is-visible .word:nth-child(27) { transition-delay: 1.040s; }
.words-reveal.is-visible .word:nth-child(28) { transition-delay: 1.080s; }
.words-reveal.is-visible .word:nth-child(29) { transition-delay: 1.120s; }
.words-reveal.is-visible .word:nth-child(30) { transition-delay: 1.160s; }
.words-reveal.is-visible .word:nth-child(31) { transition-delay: 1.200s; }
.words-reveal.is-visible .word:nth-child(32) { transition-delay: 1.240s; }

/* ============ CLIP-PATH IMAGE WIPE ============ */
.clip-reveal {
  position: relative;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s var(--ease);
  will-change: clip-path;
}
.clip-reveal.is-visible { clip-path: inset(0 0 0 0); }

/* ============ SECTION TITLE UNDERLINE DRAW ============ */
.title-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 0.25em;
}
.title-underline::after {
  content: "";
  position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.7s var(--ease) 0.3s;
}
.reveal.is-visible .title-underline::after,
.title-underline.is-visible::after { transform: scaleX(1); }

/* ============ HORIZONTAL SCROLL SHOWCASE (divisions / formats) ============ */
.h-scroll {
  position: relative;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0 2rem;
  scrollbar-color: var(--ink) transparent;
}
.h-scroll::-webkit-scrollbar { height: 4px; }
.h-scroll::-webkit-scrollbar-track { background: var(--line); border-radius: 2px; }
.h-scroll::-webkit-scrollbar-thumb { background: var(--ink); border-radius: 2px; }
.h-scroll-track {
  display: flex; gap: 1.25rem;
  padding: 0 max(1.5rem, calc((100vw - 1240px) / 2));
}
.h-card {
  flex: 0 0 auto; width: 280px; height: 360px;
  background: var(--bone); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; justify-content: space-between;
  scroll-snap-align: start;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.h-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.h-card .h-num {
  font-family: var(--font-mono); font-size: 11px; color: var(--red);
  letter-spacing: 0.16em;
}
.h-card h4 {
  font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1;
  margin: 0;
}
.h-card .h-tag {
  font-family: var(--font-mono); font-size: 10px; color: var(--muted);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.h-card::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-deep));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.h-card:hover::after { transform: scaleX(1); }
.h-card.featured {
  background: var(--ink); color: var(--bone); border-color: var(--ink);
}
.h-card.featured h4 { color: var(--bone); }
.h-card.featured .h-num { color: var(--red); }
.h-card.featured .h-tag { color: rgba(255,255,255,0.6); }

.h-scroll-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.h-scroll-meta .arrows { display: flex; gap: 0.4rem; align-items: center; }

@media (prefers-reduced-motion: reduce) {
  .words-reveal .word { opacity: 1 !important; transform: none !important; filter: none !important; }
  .clip-reveal { clip-path: none !important; }
  .title-underline::after { transform: scaleX(1) !important; transition: none !important; }
}

/* Fade-in helper used in legacy markup — preserve for back-compat */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.7s var(--ease) both; }
.fade-in-delay-1 { animation-delay: 0.10s; }
.fade-in-delay-2 { animation-delay: 0.20s; }
.fade-in-delay-3 { animation-delay: 0.30s; }
.fade-in-delay-4 { animation-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
