/* ============================================
   BLACKCOREX · TACTICAL EDITORIAL
   Palette: obsidian, gunmetal, bone, blood
============================================ */

:root {
  --ink: #050505;
  --ink-2: #0c0c0d;
  --ink-3: #131316;
  --steel: #1d1f23;
  --steel-2: #2a2d33;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --bone: #e8e6e1;
  --bone-2: #c9c6bf;
  --mute: #8a8b8e;
  --blood: #b8121a;
  --blood-2: #e2161f;
  --amber: #ff7a1a;
  --font-display: "Bebas Neue", "Barlow Condensed", Impact, sans-serif;
  --font-cond: "Barlow Condensed", "Bebas Neue", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --maxw: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================
   TICKER
============================================ */
.ticker {
  position: relative;
  background: #000;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  height: 28px;
  display: flex;
  align-items: center;
  z-index: 60;
}
.ticker__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--mute);
  padding-left: 100%;
}
.ticker__track span:nth-child(odd) { color: var(--blood-2); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   NAV
============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}
.footer__brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer__brand-lockup .brand__word {
  margin-bottom: 0;
}
.brand__logo--footer {
  width: 34px;
  height: 34px;
}
.brand__word {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.12em;
  color: var(--bone);
}
.brand__x {
  color: var(--blood-2);
  margin-left: 1px;
}
.nav__links {
  display: flex;
  gap: 9px;
  margin-left: auto;
  margin-right: 8px;
}
.nav__links a {
  font-family: var(--font-cond);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--bone-2);
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
  padding: 6px 0;
}
.nav__links a:hover { color: var(--bone); }
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blood-2);
  transition: width 0.25s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  width: 32px;
  height: 28px;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--bone);
  width: 100%;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 32px 32px;
  border-top: 1px solid var(--line);
  gap: 4px;
}
.nav__mobile a {
  font-family: var(--font-cond);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.nav__mobile a.btn { margin-top: 16px; border-bottom: none; }
.nav.is-open .nav__mobile { display: flex; }

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 26px;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--bone);
  background: var(--bone);
  color: var(--ink);
  transition: all 0.22s ease;
  position: relative;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.btn:hover { background: var(--blood-2); border-color: var(--blood-2); color: var(--bone); }
.btn--solid { background: var(--blood); border-color: var(--blood); color: var(--bone); }
.btn--solid:hover { background: var(--bone); border-color: var(--bone); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--bone); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--bone); background: rgba(255,255,255,0.04); color: var(--bone); }
.btn--full { width: 100%; height: 56px; }
.btn .arrow { transition: transform 0.22s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.nav__cta { height: 36px; padding: 0 14px; font-size: 10.5px; }

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 100px 0 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184, 18, 26, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(255, 122, 26, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, #050505 0%, #0a0a0b 60%, #050505 100%);
  z-index: -2;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero__scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, transparent 0, transparent 3px, rgba(255,255,255,0.012) 3px, rgba(255,255,255,0.012) 4px);
}
.hero__hud {
  position: absolute;
  inset: 32px;
  pointer-events: none;
  z-index: 2;
}
.hud-block {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--mute);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hud-block::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blood-2);
}
.hud-label { color: var(--mute); }
.hud-value { color: var(--bone); font-size: 12px; }
.hud-link {
  pointer-events: auto;
  color: var(--bone);
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}
.hud-link:hover { color: var(--blood-2); }
.hud-block--tl { top: 8px; left: 8px; }
.hud-block--tr { top: 8px; right: 8px; align-items: flex-end; }
.hud-block--bl { bottom: 8px; left: 8px; }
.hud-block--br { bottom: 8px; right: 8px; align-items: flex-end; }
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #00ff66;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 8px #00ff66;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  50% { opacity: 0.35; }
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero__logo {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  width: clamp(220px, 32vw, 420px);
  height: auto;
  z-index: -1;
  pointer-events: none;
  filter: drop-shadow(0 0 40px rgba(184, 18, 26, 0.25));
  opacity: 1;
}
/* Animated roaring-skull landing-page logo (video). Screen blend + radial mask
   drop the dark video background so the glowing red skull floats with no box. */
.hero__logo--vid {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  mix-blend-mode: screen;
  /* higher contrast crushes the dark circuit background toward pure black so the
     screen blend fully drops it; long gentle mask feathers any remaining edge away */
  filter: brightness(1.0) contrast(1.55) drop-shadow(0 0 40px rgba(184, 18, 26, 0.3));
  -webkit-mask-image: radial-gradient(circle at 50% 48%, #000 40%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.15) 76%, transparent 90%);
  mask-image: radial-gradient(circle at 50% 48%, #000 40%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.15) 76%, transparent 90%);
}
.hero__coord { display: none; }
.hero__coord-link { color: var(--bone); text-decoration: none; }
.hero__coord-link:hover { color: var(--blood-2); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--blood-2);
  text-transform: uppercase;
  padding-bottom: 24px;
  position: relative;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.005em;
  color: var(--bone);
  margin: 12px 0 28px;
  font-weight: 400;
  text-transform: uppercase;
}
.hero__title--alt {
  color: var(--blood-2);
  -webkit-text-stroke: 1px var(--blood-2);
}
.hero__lede {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--bone-2);
  margin-bottom: 40px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__bottom {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 32px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  margin-top: 80px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 20px;
  border-left: 2px solid var(--blood);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  color: var(--bone);
  line-height: 1;
  display: inline-block;
}
.stat__plus {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  color: var(--blood-2);
  line-height: 1;
  display: inline-block;
  margin-left: 2px;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 10px;
}

/* ============================================
   TRUST STRIP
============================================ */
.trust {
  background: #000;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.trust__row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--blood-2);
  text-transform: uppercase;
}
.trust__items {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.trust__items span {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-2);
}

/* ============================================
   SECTION HEAD
============================================ */
.section-head {
  max-width: 760px;
  margin-bottom: 72px;
}
.section-head__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--blood-2);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 24px;
  padding-left: 0;
}
.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 24px;
}
.section-head__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--bone-2);
  max-width: 640px;
}

/* ============================================
   CAPABILITIES
============================================ */
.capabilities {
  padding: 140px 0;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cap {
  background: var(--ink-2);
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s ease;
}
.cap:hover { background: var(--ink-3); }
.cap::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--blood-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.cap:hover::before { transform: scaleX(1); }
.cap__id {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--mute);
  display: block;
  margin-bottom: 20px;
}
.cap h3 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 16px;
}
.cap p {
  color: var(--bone-2);
  font-size: 15px;
  margin-bottom: 22px;
}
.cap ul {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.cap ul li {
  font-family: var(--font-cond);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--bone-2);
  text-transform: uppercase;
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cap ul li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--blood-2);
  display: inline-block;
}

/* ============================================
   OPERATORS
============================================ */
.operators {
  position: relative;
  padding: 140px 0;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.operators__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(184,18,26,0.12) 0%, transparent 55%),
    linear-gradient(135deg, transparent 0%, transparent 49%, rgba(255,255,255,0.04) 50%, transparent 51%, transparent 100%);
  background-size: 100% 100%, 14px 14px;
  z-index: 0;
  opacity: 0.6;
}
.operators__inner { position: relative; z-index: 1; }
.operators__head { max-width: 820px; margin-bottom: 80px; }
/* animated wireframe operator filling the empty space right of the heading */
.operators__figure {
  position: absolute;
  top: calc(96px + 1cm);
  width: clamp(204px, 22.8vw, 300px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  mix-blend-mode: screen; /* composites against the section bg → black drops out */
  filter: brightness(1.04) contrast(1.25) drop-shadow(0 0 30px rgba(226,22,31,0.3));
  /* soft feather so any residual frame edge dissolves into the section */
  -webkit-mask-image: radial-gradient(ellipse 62% 84% at 50% 50%, #000 70%, transparent 100%);
  mask-image: radial-gradient(ellipse 62% 84% at 50% 50%, #000 70%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
/* rightmost — existing rifle operator, aims right */
.operators__figure--rifle { right: calc(max(32px, (100% - 1280px) / 2 + 32px) + 2cm); }
/* next to it on the left — PKM operator, aims left (covers the other flank) */
.operators__figure--pkm { right: calc(max(32px, (100% - 1280px) / 2 + 32px) + clamp(144px, 15.6vw, 210px) + 2cm); }
@media (max-width: 1000px) { .operators__figure { display: none; } }
.operators__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pillar {
  background: var(--ink-2);
  padding: 40px 32px;
}
.pillar__num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--blood-2);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.pillar h4 {
  font-family: var(--font-cond);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 14px;
}
.pillar p {
  font-size: 14.5px;
  color: var(--bone-2);
  line-height: 1.6;
}

/* ============================================
   SECTORS
============================================ */
.sectors {
  padding: 140px 0;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sector {
  border: 1px solid var(--line);
  padding: 36px 30px;
  background: var(--ink);
  transition: all 0.25s ease;
  position: relative;
}
.sector:hover {
  border-color: var(--blood);
  transform: translateY(-3px);
}
.sector__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--blood-2);
  display: block;
  margin-bottom: 18px;
}
.sector h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 12px;
}
.sector p {
  font-size: 14.5px;
  color: var(--bone-2);
  line-height: 1.6;
}

/* ============================================
   PROCESS
============================================ */
.process {
  padding: 140px 0;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}
.process__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process__steps::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line-strong) 10%, var(--line-strong) 90%, transparent 100%);
}
.process__steps li {
  padding: 0 24px 0 0;
  position: relative;
}
.process__step {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--blood-2);
  display: block;
  margin-bottom: 40px;
  padding-bottom: 32px;
  position: relative;
}
.process__step::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 14px; height: 14px;
  background: var(--blood);
  transform: translateY(50%);
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 1px var(--blood);
}
.process__steps li h4 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 24px 0 14px;
}
.process__steps li p {
  font-size: 14.5px;
  color: var(--bone-2);
  line-height: 1.6;
}

/* ============================================
   WHY / STANDARD
============================================ */
.why {
  padding: 140px 0;
  background:
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><path d='M0 39 L40 39 M39 0 L39 40' stroke='%23ffffff' stroke-width='0.5' opacity='0.05'/></svg>");
  pointer-events: none;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.why__left p {
  font-size: 17px;
  color: var(--bone-2);
  line-height: 1.65;
  margin: 24px 0 32px;
  max-width: 480px;
}
.why__right {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.why__item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.why__item span {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--blood-2);
  line-height: 1;
  margin-top: 2px;
}
.why__item p {
  font-size: 16px;
  color: var(--bone);
  line-height: 1.55;
}

/* ============================================
   CART PILL (in nav)
============================================ */
.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 11px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.02);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--bone);
  margin-right: 8px;
  transition: all 0.22s ease;
}
.cart-pill:hover { border-color: var(--blood-2); color: var(--blood-2); }
.cart-pill__icon { color: var(--blood-2); }
.cart-pill__count {
  min-width: 14px;
  text-align: center;
  font-weight: 600;
}
.cart-pill.is-bump { animation: bump 0.45s ease; }
@keyframes bump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.12); border-color: var(--blood-2); }
  100% { transform: scale(1); }
}

/* ============================================
   SHOP
============================================ */
.shop {
  padding: 140px 0;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.shop::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 90% 0%, rgba(184,18,26,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.shop__head { position: relative; z-index: 1; }

/* View switching */
.shop__view {
  position: relative;
  z-index: 1;
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.shop__view.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Compliance notice */
.shop__notice {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--mute);
  text-transform: uppercase;
  max-width: 520px;
}
.shop__notice--top {
  margin-bottom: 36px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: none;
  justify-content: center;
  text-align: center;
}
.shop__notice-dot {
  width: 8px; height: 8px;
  background: #00ff66;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff66;
  flex-shrink: 0;
}

/* CATEGORY TILES */
.shop__categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.cat-tile {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 32px 30px 26px;
  text-align: left;
  cursor: pointer;
  color: var(--bone);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  font-family: inherit;
  transition: all 0.3s ease;
  overflow: hidden;
}
.cat-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--blood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.cat-tile:hover {
  border-color: var(--blood);
  background: var(--ink-3);
  transform: translateY(-4px);
}
.cat-tile:hover::before { transform: scaleX(1); }
.cat-tile__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--blood-2);
  margin-bottom: 22px;
  display: block;
}
.cat-tile__art {
  background: var(--ink-2);
  border: 1px solid var(--line);
  aspect-ratio: 16 / 7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  perspective: 700px;
}
.cat-tile__art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 18px 18px;
}
.cat-tile__spin {
  position: relative;
  z-index: 1;
  width: 82%;
  max-width: 210px;
  aspect-ratio: 240 / 100;
  transform-style: preserve-3d;
  animation: catSpin 10s linear infinite;
}
.cat-tile:hover .cat-tile__spin { animation-duration: 4.5s; }
.cat-tile__face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.cat-tile__face--back { transform: rotateY(180deg); }
.cat-tile__face svg {
  width: 100%;
  height: 100%;
}
@keyframes catSpin {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .cat-tile__spin { animation: none; }
}
.cat-tile__name {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 10px;
  line-height: 1;
}
.cat-tile__desc {
  font-size: 13.5px;
  color: var(--bone-2);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}
.cat-tile__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.cat-tile__count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--mute);
  text-transform: uppercase;
}
.cat-tile__cta {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blood-2);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cat-tile__cta .arrow { transition: transform 0.22s ease; }
.cat-tile:hover .cat-tile__cta .arrow { transform: translateX(6px); }
.cat-tile__compliance {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--mute);
  text-transform: uppercase;
  opacity: 0.55;
}

/* CATALOG BAR */
.shop__catbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.shop__backcat {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--bone);
  padding: 10px 16px;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.shop__backcat:hover {
  border-color: var(--blood);
  background: var(--blood);
}
.shop__catbar-meta {
  text-align: center;
}
.shop__catbar-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--blood-2);
  display: block;
  margin-bottom: 4px;
}
.shop__catbar-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--bone);
  text-transform: uppercase;
  line-height: 1;
}
.shop__catbar-count {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mute);
  text-transform: uppercase;
}

.shop__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product {
  background: var(--ink);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  position: relative;
}
.product:hover {
  border-color: var(--blood);
  transform: translateY(-4px);
}
.product.is-hidden { display: none; }

.product__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(180deg, var(--ink-3) 0%, var(--ink) 100%);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.product__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--blood-2);
  text-transform: uppercase;
  z-index: 2;
  max-width: 70%;
}
.product__art {
  width: 70%;
  max-width: 220px;
  height: auto;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}
.product:hover .product__art { transform: scale(1.06); }

.product__body {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.product__sku {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mute);
  text-transform: uppercase;
}
.product__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1;
}
.product__desc {
  font-size: 13.5px;
  color: var(--bone-2);
  line-height: 1.55;
  margin-bottom: 8px;
  flex-grow: 1;
}
.product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.product__price {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--bone);
  letter-spacing: 0.02em;
}
.product__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  background: transparent;
  border: 1px solid var(--blood);
  color: var(--blood-2);
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
.product__cta:hover {
  background: var(--blood);
  color: var(--bone);
}
.product__cta .arrow { transition: transform 0.22s ease; }
.product__cta:hover .arrow { transform: translateX(4px); }

/* Stock availability indicator */
.product__stock,
.pdp__stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-2);
  white-space: nowrap;
}
.product__stock { margin-bottom: 12px; }
.stock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3fb56b;
  box-shadow: 0 0 8px rgba(63, 181, 107, 0.75);
  animation: stockPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
.product__stock--low,
.pdp__stock--low { color: var(--blood-2); }
.product__stock--low .stock-dot,
.pdp__stock--low .stock-dot {
  background: var(--blood-2);
  box-shadow: 0 0 8px rgba(226, 22, 31, 0.8);
}
@keyframes stockPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.shop__footnote {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--mute);
  text-transform: uppercase;
}
.shop__footnote a {
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--blood);
  padding-bottom: 2px;
}
.shop__footnote a:hover { color: var(--blood-2); }

/* ============================================
   CART DRAWER
============================================ */
.drawer {
  position: fixed; inset: 0;
  z-index: 300;
  pointer-events: none;
  visibility: hidden;
}
.drawer.is-open { pointer-events: auto; visibility: visible; }

.drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.drawer.is-open .drawer__backdrop { opacity: 1; }

.drawer__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(460px, 100%);
  background: var(--ink);
  border-left: 1px solid var(--blood);
  box-shadow: -20px 0 60px rgba(0,0,0,0.6);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }

.drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  flex-shrink: 0;
}
.drawer__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--blood-2);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.drawer__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--bone);
  text-transform: uppercase;
  line-height: 1;
}
.drawer__close {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--bone);
  width: 36px; height: 36px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}
.drawer__close:hover { background: var(--blood); border-color: var(--blood); }

.drawer__step {
  display: none;
  flex-direction: column;
  flex-grow: 1;
  overflow: hidden;
}
.drawer__step.is-active { display: flex; }

.drawer__items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 8px 28px;
}
.drawer__empty {
  text-align: center;
  padding: 60px 0;
  color: var(--mute);
}
.drawer__empty span {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--bone);
  display: block;
  margin-bottom: 8px;
}
.drawer__empty p { font-size: 13px; color: var(--mute); }

.drawer__item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.drawer__item-art {
  width: 56px; height: 56px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--blood-2);
}
.drawer__item-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1.2;
  margin-bottom: 4px;
}
.drawer__item-price {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--mute);
}
.drawer__qty {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--line-strong);
}
.drawer__qty button {
  background: transparent;
  border: none;
  color: var(--bone);
  width: 28px; height: 28px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.15s ease;
}
.drawer__qty button:hover { background: var(--blood); }
.drawer__qty span {
  min-width: 22px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--bone);
}
.drawer__remove {
  background: transparent;
  border: none;
  color: var(--mute);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  cursor: pointer;
  margin-top: 4px;
  padding: 0;
  transition: color 0.2s ease;
}
.drawer__remove:hover { color: var(--blood-2); }

.drawer__foot {
  padding: 22px 28px 26px;
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  flex-shrink: 0;
}
.drawer__totals { margin-bottom: 18px; }
.drawer__row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bone);
  text-transform: uppercase;
}
.drawer__row--mute { color: var(--mute); font-size: 10px; }
.drawer__row--total {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 14px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--bone);
}
.drawer__row--total span:last-child { color: var(--blood-2); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

.drawer__body {
  padding: 24px 28px 28px;
  overflow-y: auto;
  flex-grow: 1;
}
.drawer__back {
  background: transparent;
  border: none;
  color: var(--mute);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  cursor: pointer;
  padding: 0 0 18px;
  transition: color 0.2s ease;
}
.drawer__back:hover { color: var(--blood-2); }

.drawer__form { display: flex; flex-direction: column; gap: 14px; }
.drawer__form label { display: flex; flex-direction: column; gap: 6px; }
.drawer__form span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--mute);
  text-transform: uppercase;
}
.drawer__form input,
.drawer__form select {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-left: 2px solid var(--blood);
  color: var(--bone);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.drawer__form input:focus,
.drawer__form select:focus {
  border-color: var(--bone);
  border-left-color: var(--blood-2);
}
.drawer__form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0; }
.drawer__note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--mute);
  text-transform: uppercase;
  line-height: 1.6;
  padding: 10px 0 4px;
}

.drawer__demo {
  background: rgba(184,18,26,0.08);
  border: 1px solid var(--blood);
  border-left-width: 3px;
  padding: 16px 18px;
  margin-bottom: 24px;
}
.drawer__demo-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--blood-2);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.drawer__demo p {
  font-size: 13px;
  color: var(--bone-2);
  line-height: 1.55;
}
.drawer__demo strong { color: var(--bone); }

.drawer__pay {
  border: 1px solid var(--line);
  background: var(--ink-2);
  padding: 18px 20px;
  margin-bottom: 22px;
}
.drawer__pay-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bone);
  text-transform: uppercase;
}

.drawer__success {
  text-align: center;
  padding: 60px 28px;
}
.drawer__check {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border: 2px solid #5fd673;
  color: #5fd673;
  font-size: 28px;
  margin-bottom: 24px;
}
.drawer__success h4 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.drawer__success p {
  font-size: 14px;
  color: var(--bone-2);
  margin-bottom: 14px;
}
.drawer__success strong { color: var(--blood-2); font-family: var(--font-mono); letter-spacing: 0.1em; }

/* Cart toast */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  background: var(--ink);
  border: 1px solid var(--blood);
  border-left: 3px solid var(--blood-2);
  padding: 18px 22px;
  max-width: 340px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--bone);
  text-transform: uppercase;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  box-shadow: 0 12px 48px rgba(0,0,0,0.6);
}
.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.toast strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--blood-2);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  font-weight: 400;
}

/* Shop responsive */
@media (max-width: 1024px) {
  .shop__grid { grid-template-columns: repeat(2, 1fr); }
  .shop__categories { grid-template-columns: 1fr; }
  .cat-tile { min-height: 0; }
}
@media (max-width: 720px) {
  .shop__grid { grid-template-columns: 1fr; }
  .shop__catbar { flex-direction: column; gap: 14px; }
  .shop__catbar-meta { text-align: left; }
  .cart-pill { display: none; }
  .toast { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .cat-tile { padding: 26px 22px 22px; }
  .cat-tile__name { font-size: 30px; }
}

/* ============================================
   QUOTE
============================================ */
.quote {
  padding: 140px 0;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.quote blockquote {
  max-width: 980px;
  margin: 0 auto;
}
.quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 32px;
  /* balance lines so the final word never drops onto a line by itself */
  text-wrap: balance;
}
.quote__src {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--blood-2);
  text-transform: uppercase;
}

/* ============================================
   CONTACT
============================================ */
.contact {
  padding: 140px 0;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__copy p {
  font-size: 17px;
  color: var(--bone-2);
  line-height: 1.65;
  margin: 24px 0 40px;
}
.contact__meta {
  list-style: none;
  border-top: 1px solid var(--line);
}
.contact__meta li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--bone);
}
.contact__meta li span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--blood-2);
  text-transform: uppercase;
}
.contact-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-link:hover { color: var(--blood-2); }

.contact__form {
  background: var(--ink);
  padding: 40px;
  border: 1px solid var(--line);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact__form label.full { margin-bottom: 24px; }
.contact__form span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--mute);
  text-transform: uppercase;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-left: 2px solid var(--blood);
  color: var(--bone);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: all 0.2s ease;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-color: var(--bone);
  border-left-color: var(--blood-2);
  background: var(--steel);
}
.contact__form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}
.form__note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--mute);
  margin-top: 18px;
  text-align: center;
  text-transform: uppercase;
}
.form__note.is-success { color: #5fd673; }

/* ============================================
   FOOTER
============================================ */
.footer {
  background: #000;
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
.footer__brand .brand__word {
  font-size: 30px;
  display: inline-block;
}
.footer__brand p {
  font-size: 14px;
  color: var(--mute);
  max-width: 320px;
  line-height: 1.6;
}
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--blood-2);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer__col a,
.footer__col p {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--bone-2);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--blood-2); }
.footer__bar {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--mute);
  text-transform: uppercase;
}

/* ============================================
   REVEAL
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .caps-grid { grid-template-columns: repeat(2, 1fr); }
  .operators__pillars { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .process__steps::before { display: none; }
  .why__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__bottom { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav__inner { padding: 0 20px; height: 64px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__hud { display: none; }
  .hero__coord {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--blood-2);
    margin-bottom: 16px;
  }
  .hero { padding: 60px 0 0; min-height: auto; }
  .hero__logo { display: none; }
  .hero__title { font-size: clamp(56px, 14vw, 92px); }
  .hero__bottom { grid-template-columns: 1fr 1fr; padding: 56px 20px 40px; gap: 24px; }
  .capabilities, .operators, .sectors, .process, .why, .quote, .contact { padding: 90px 0; }
  .caps-grid { grid-template-columns: 1fr; }
  .operators__pillars { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 22px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 48px; }
  .footer__bar { flex-direction: column; }
  .section-head__title { font-size: clamp(36px, 9vw, 64px); }
  .trust__row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .trust__items { gap: 18px 24px; }
}

/* ============================================
   ACCESSIBILITY
============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

::selection {
  background: var(--blood);
  color: var(--bone);
}

/* ====================================================
   SHOP · FIREARMS SUB-CATEGORIES + PRODUCT DETAIL
   ==================================================== */
.subcat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.subcat-tile {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 26px 24px 22px;
  text-align: left;
  cursor: pointer;
  color: var(--bone);
  font-family: inherit;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.subcat-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--blood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.subcat-tile:hover {
  border-color: var(--blood);
  background: var(--ink-3);
  transform: translateY(-4px);
}
.subcat-tile:hover::before { transform: scaleX(1); }
.subcat-tile__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--blood-2);
  margin-bottom: 16px;
}
.subcat-tile__name {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.subcat-tile__desc {
  font-size: 13px;
  color: var(--bone-2);
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 16px;
}
.subcat-tile__cta {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blood-2);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.subcat-tile__cta .arrow { transition: transform 0.22s ease; }
.subcat-tile:hover .subcat-tile__cta .arrow { transform: translateX(6px); }
.subcat-tile__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.subcat-tile__count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--mute);
  text-transform: uppercase;
  white-space: nowrap;
}
.subcat-tile__art {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #000;
  border: 1px solid var(--line);
  margin: 4px 0 16px;
  overflow: hidden;
}
.subcat-tile__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}
.subcat-tile__video--up { transform: none; }
.subcat-tile__video--2x { transform: scale(2); }

/* Photo product card */
.product__media--photo {
  background: linear-gradient(180deg, #f2f2f3 0%, #d7d7da 100%);
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
}
.product__media--photo::before { display: none; }
.product__photo {
  width: 94%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  mix-blend-mode: multiply;
  transition: transform 0.4s ease;
}
.product:hover .product__photo { transform: scale(1.05); }
.product__view {
  position: absolute;
  bottom: 10px;
  right: 12px;
  z-index: 2;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.product--photo:hover .product__view { opacity: 1; }

/* Product detail (spec sheet) */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: start;
}
.pdp__media {
  position: sticky;
  top: 90px;
  background: linear-gradient(180deg, #f2f2f3 0%, #d7d7da 100%);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pdp__tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--blood);
  z-index: 2;
}
.pdp__photo {
  width: 92%;
  height: 92%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.pdp__media.is-video {
  background: #000;
  border-color: var(--line);
}
.pdp__media.is-photo-dark {
  aspect-ratio: 1024 / 1536;
  max-width: 440px;
  margin-inline: auto;
  background: #050505;
  border-color: var(--line);
}
.pdp__photo--dark {
  mix-blend-mode: normal;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pdp__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none; /* hidden by default; shown only for video products */
  background: #000;
}
.pdp__media.is-video .pdp__video { display: block; }
.pdp__info { min-width: 0; }
.pdp__name {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--bone);
  margin-bottom: 18px;
}
.pdp__pricerow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.pdp__pricecol {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pdp__price {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--bone);
  letter-spacing: 0.02em;
}
.pdp__lede {
  font-size: 15px;
  line-height: 1.7;
  color: var(--bone-2);
  margin-bottom: 30px;
}
.pdp__subhead {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--blood-2);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pdp__specs {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.pdp__specs tr { border-bottom: 1px solid var(--line); }
.pdp__specs th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  padding: 10px 16px 10px 0;
  vertical-align: top;
  width: 42%;
}
.pdp__specs td {
  font-size: 14px;
  color: var(--bone);
  padding: 10px 0;
}
.pdp__notes { margin-bottom: 28px; }
.pdp__note {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.pdp__note span {
  color: var(--blood-2);
  font-family: var(--font-mono);
  flex-shrink: 0;
}
.pdp__note p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--bone-2);
}
.pdp__compliance {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--mute);
  border-left: 2px solid var(--blood);
  padding-left: 14px;
}
@media (max-width: 860px) {
  .subcat-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp { grid-template-columns: 1fr; gap: 24px; }
  .pdp__media { position: relative; top: 0; }
}
@media (max-width: 560px) {
  .subcat-grid { grid-template-columns: 1fr; }
}

/* Category tile spinning 3D video */
.cat-tile__art--video {
  padding: 0;
  aspect-ratio: 4 / 3;
}
.cat-tile__video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}
.cat-tile__video--ak { transform: scale(1.3); }
.cat-tile__video--scope { transform: scale(1.35); }

/* ====================================================
   5-SECOND INTRO / BOOT SEQUENCE
   ==================================================== */
body.intro-lock { overflow: hidden; }
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: introOut 0.8s ease 3s forwards; /* no-JS fallback dismiss */
}
.intro.is-done { opacity: 0; visibility: hidden; transition: opacity 0.7s ease, visibility 0.7s ease; }
@keyframes introOut { to { opacity: 0; visibility: hidden; } }

.intro__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(184,18,26,0.22) 0%, transparent 60%),
    linear-gradient(180deg, #050505 0%, #0a0a0b 55%, #050505 100%);
}
.intro__scan {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(180deg, transparent 0, transparent 3px, rgba(255,255,255,0.025) 3px, rgba(255,255,255,0.025) 4px);
  opacity: 0.6;
  animation: introFlicker 3.6s steps(60) infinite;
}
@keyframes introFlicker { 0%,100%{opacity:0.55} 50%{opacity:0.7} }

/* HUD corner brackets */
.intro__hud { position: absolute; inset: 28px; pointer-events: none; }
.intro__bracket { position: absolute; width: 38px; height: 38px; border: 1px solid var(--blood-2); opacity: 0; animation: introBracket 0.6s ease 0.2s forwards; }
.intro__bracket--tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.intro__bracket--tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.intro__bracket--bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.intro__bracket--br { bottom: 0; right: 0; border-left: none; border-top: none; }
@keyframes introBracket { from { opacity: 0; transform: scale(1.4); } to { opacity: 0.7; transform: scale(1); } }

.intro__center {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 24px;
}
.intro__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--blood-2);
  opacity: 0; animation: introFade 0.6s ease 0.3s forwards;
  margin-bottom: 26px;
}
.intro__logo {
  width: clamp(120px, 18vw, 170px);
  height: auto; display: block;
  filter: drop-shadow(0 0 34px rgba(226,22,31,0.5));
  opacity: 0;
  animation: introLogo 0.9s cubic-bezier(.2,.7,.2,1) 0.35s forwards, introGlitch 2.6s steps(40) 1.3s 2;
}
@keyframes introLogo { from { opacity: 0; transform: scale(0.82) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes introGlitch {
  0%,100% { transform: translate(0,0); filter: drop-shadow(0 0 34px rgba(226,22,31,0.5)); }
  92% { transform: translate(0,0); }
  93% { transform: translate(-3px,1px); filter: drop-shadow(3px 0 0 rgba(226,22,31,0.8)); }
  95% { transform: translate(3px,-1px); }
  96% { transform: translate(0,0); }
}
.intro__word {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 104px);
  letter-spacing: 0.14em;
  color: var(--bone);
  line-height: 1;
  margin-top: 22px;
  opacity: 0;
  animation: introWord 0.8s ease 0.6s forwards;
}
.intro__word .intro__x { color: var(--blood-2); }
@keyframes introWord { from { opacity: 0; letter-spacing: 0.4em; } to { opacity: 1; letter-spacing: 0.14em; } }
.intro__tag {
  font-family: var(--font-cond);
  font-size: clamp(12px, 1.6vw, 15px);
  font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--bone-2);
  margin-top: 14px;
  opacity: 0; animation: introFade 0.7s ease 0.95s forwards;
}
.intro__bar {
  width: clamp(180px, 26vw, 280px);
  height: 2px; margin-top: 30px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
  opacity: 0; animation: introFade 0.5s ease 1.0s forwards;
}
.intro__bar span {
  display: block; height: 100%; width: 0;
  background: var(--blood-2);
  box-shadow: 0 0 10px var(--blood-2);
  animation: introBar 2.0s cubic-bezier(.5,.1,.2,1) 0.7s forwards;
}
@keyframes introBar { from { width: 0; } to { width: 100%; } }
.intro__status {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--mute);
  margin-top: 14px;
  opacity: 0; animation: introFade 0.6s ease 1.2s forwards;
}
.intro__foot {
  position: absolute; bottom: 26px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--mute);
  opacity: 0; animation: introFade 0.8s ease 1.4s forwards;
}
@keyframes introFade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .intro__scan, .intro__logo { animation-duration: 0.6s, 0s; }
}

/* ====================================================
   SHOP ACCESS LOCK + NAV LOCK ICON
   ==================================================== */
.lock-ico {
  width: 12px; height: 12px;
  fill: none;
  stroke: var(--blood-2);
  stroke-width: 2;
  vertical-align: -1px;
  margin-left: 6px;
}
.cart-pill .lock-ico { margin-left: 4px; }

body.shop-locked { overflow: hidden; }
.shoplock {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.shoplock.is-open { opacity: 0; visibility: hidden; }
.shoplock__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(184,18,26,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #050505 0%, #0a0a0b 60%, #050505 100%);
}
.shoplock__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0, transparent 3px, rgba(255,255,255,0.02) 3px, rgba(255,255,255,0.02) 4px);
}
.shoplock__panel {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 420px;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.shoplock__icon {
  width: 58px; height: 58px;
  fill: none;
  stroke: var(--blood-2);
  stroke-width: 1.6;
  filter: drop-shadow(0 0 22px rgba(226,22,31,0.5));
  margin-bottom: 22px;
}
.shoplock__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--blood-2);
  margin-bottom: 14px;
}
.shoplock__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 400; letter-spacing: 0.06em;
  color: var(--bone); line-height: 1;
  margin-bottom: 16px;
}
.shoplock__text {
  font-size: 14px; line-height: 1.6;
  color: var(--bone-2);
  margin-bottom: 28px;
}
.shoplock__form {
  display: flex; gap: 10px; width: 100%;
  margin-bottom: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.shoplock__input {
  flex: 1; min-width: 180px;
  height: 50px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 14px; letter-spacing: 0.2em;
  text-align: center; text-transform: uppercase;
  padding: 0 14px;
}
.shoplock__input:focus { outline: none; border-color: var(--blood-2); }
.shoplock__form .btn { height: 50px; }
.shoplock__note {
  min-height: 16px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--blood-2);
  margin-bottom: 18px;
}
.shoplock__back {
  font-family: var(--font-cond);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute);
  transition: color 0.2s ease;
}
.shoplock__back:hover { color: var(--bone); }

/* ============================================================
   WISH LISTS  ·  save button, shop picker modal, account cards
   ============================================================ */

/* Product-card action group: heart + primary CTA share the foot */
.product__actions { display: inline-flex; align-items: center; gap: 10px; }
.pdp__actions { display: inline-flex; align-items: center; gap: 12px; }

.product__save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--bone-2);
  cursor: pointer;
  transition: all 0.2s ease;
}
.product__save svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.product__save:hover { border-color: var(--blood); color: var(--blood-2); }
.product__save:hover svg { fill: rgba(226, 22, 31, 0.18); }
.product__save--pdp { width: 46px; height: 46px; }
.product__save--pdp svg { width: 22px; height: 22px; }

/* Shop wish-list picker modal */
.wlmodal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.wlmodal.is-open { display: flex; }
.wlmodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(3px);
}
.wlmodal__panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  padding: 34px 30px 28px;
  animation: wlPop 0.22s ease;
}
@keyframes wlPop { from { opacity: 0; transform: translateY(10px) scale(0.98); } to { opacity: 1; transform: none; } }
.wlmodal__x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  color: var(--mute);
  font-size: 15px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.wlmodal__x:hover { color: var(--bone); }
.wlmodal__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--blood-2);
  text-transform: uppercase;
}
.wlmodal__item {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--bone);
  margin: 8px 0 22px;
  line-height: 1.05;
}
.wlmodal__lists { display: flex; flex-direction: column; gap: 8px; max-height: 44vh; overflow-y: auto; margin-bottom: 18px; }
.wlmodal__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 13px 15px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  color: var(--bone);
  cursor: pointer;
  text-align: left;
  transition: all 0.18s ease;
}
.wlmodal__list:hover:not(:disabled) { border-color: var(--blood); background: rgba(226, 22, 31, 0.08); }
.wlmodal__list.is-saved { opacity: 0.6; cursor: default; }
.wlmodal__list-name { font-family: var(--font-cond); font-size: 16px; font-weight: 600; letter-spacing: 0.02em; }
.wlmodal__list-meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--mute); text-transform: uppercase; white-space: nowrap; }
.wlmodal__list.is-saved .wlmodal__list-meta { color: #57d08a; }
.wlmodal__empty { font-size: 13px; color: var(--mute); padding: 4px 2px 2px; }
.wlmodal__new { display: flex; gap: 10px; }
.wlmodal__input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 14px;
}
.wlmodal__input:focus { outline: none; border-color: var(--blood); }
.wlmodal__new .btn { white-space: nowrap; }
.wlmodal__note { display: block; margin-top: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: #57d08a; min-height: 14px; }

/* Account dashboard wish-list card */
.acct-card--wide { grid-column: 1 / -1; margin-top: 22px; }
.wl-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.wl-create { display: flex; gap: 10px; }
.wl-create input {
  height: 40px;
  padding: 0 14px;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 13px;
  min-width: 210px;
}
.wl-create input:focus { outline: none; border-color: var(--blood); }
.wl-create .btn { white-space: nowrap; }
.wl-container { display: flex; flex-direction: column; gap: 16px; }
.wl-empty { font-size: 14px; color: var(--mute); line-height: 1.6; }
.wl-empty a { color: var(--blood-2); }
.wl-list { border: 1px solid var(--line); background: var(--ink-3); }
.wl-list__head { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.wl-list__name {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 1px solid transparent;
  color: var(--bone);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  transition: border-color 0.2s ease;
}
.wl-list__name:hover { border-color: var(--line-strong); }
.wl-list__name:focus { outline: none; border-color: var(--blood); background: var(--ink); }
.wl-list__count { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; color: var(--mute); text-transform: uppercase; white-space: nowrap; }
.wl-del {
  width: 28px; height: 28px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--mute);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.wl-del:hover { border-color: var(--blood); color: var(--blood-2); }
.wl-list__empty { font-size: 12.5px; color: var(--mute); padding: 14px; }
.wl-items { list-style: none; margin: 0; padding: 0; }
.wl-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.wl-item:last-child { border-bottom: none; }
.wl-item__name { flex: 1; min-width: 0; font-size: 14px; color: var(--bone); }
.wl-item__price { font-family: var(--font-display); font-size: 18px; color: var(--bone); letter-spacing: 0.02em; white-space: nowrap; }
.wl-item__actions { display: inline-flex; gap: 8px; flex-shrink: 0; }
.wl-item__cart, .wl-item__rm {
  background: transparent;
  border: 1px solid var(--line-strong);
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 11px;
  cursor: pointer;
  transition: all 0.18s ease;
}
.wl-item__cart { color: var(--blood-2); border-color: var(--blood); }
.wl-item__cart:hover, .wl-item__cart.is-added { background: var(--blood); color: var(--bone); }
.wl-item__rm { color: var(--mute); }
.wl-item__rm:hover { color: var(--bone); border-color: var(--bone-2); }

@media (max-width: 560px) {
  .wl-item { flex-wrap: wrap; }
  .wl-item__actions { width: 100%; }
  .wl-create input { min-width: 0; flex: 1; }
  .wl-create { width: 100%; }
}

/* Spam honeypot — hidden from humans, tempting to bots */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
