:root {
  --bg: #050505;
  --bg-soft: #0a0a0b;
  --panel: #0e0e10;
  --panel-2: #141416;
  --text: #f4f4f5;
  --muted: #8f8f96;
  --line: rgba(255,255,255,.11);
  --red: #ee151f;
  --red-hot: #ff2a35;
  --red-dark: #7f050b;
  --shadow-red: 0 0 48px rgba(238,21,31,.22);
  --max: 1380px;
  --header-h: 88px;
  --ease: cubic-bezier(.22,.8,.22,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 4%, rgba(238,21,31,.07), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: #fff; background: var(--red); }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 1rem;
  top: -5rem;
  padding: .8rem 1rem;
  background: var(--red);
  color: #fff;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  z-index: 99;
  width: 26rem;
  height: 26rem;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238,21,31,.11), rgba(238,21,31,.035) 34%, transparent 68%);
  transform: translate(-50%,-50%);
  opacity: 0;
  transition: opacity .35s;
  mix-blend-mode: screen;
}
body.pointer-active .cursor-glow { opacity: 1; }

.page-loader {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1.25rem;
  background: #020202;
  transition: opacity .6s var(--ease), visibility .6s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.page-loader img { width: 92px; filter: drop-shadow(0 0 22px rgba(238,21,31,.55)); animation: loaderPulse 1.3s ease-in-out infinite; }
.loader-track { width: 220px; height: 2px; background: rgba(255,255,255,.12); overflow: hidden; }
.loader-track span { display: block; height: 100%; width: 45%; background: var(--red); animation: loaderMove 1s ease-in-out infinite; box-shadow: 0 0 18px var(--red); }
.page-loader small { color: #78787d; letter-spacing: .25em; font-size: .62rem; font-weight: 800; }
@keyframes loaderPulse { 50% { transform: scale(.94); opacity: .72; } }
@keyframes loaderMove { from { transform: translateX(-120%); } to { transform: translateX(240%); } }

.notice-bar {
  height: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--red);
  color: #fff;
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .19em;
  white-space: nowrap;
}
.notice-track { display: flex; align-items: center; width: max-content; animation: marquee 28s linear infinite; }
.notice-track span { padding: 0 1.9rem; }
.notice-track i { width: 5px; height: 5px; transform: rotate(45deg); background: #fff; opacity: .8; }
@keyframes marquee { to { transform: translateX(-50%); } }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0 clamp(1rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(5,5,5,.77);
  backdrop-filter: blur(18px) saturate(1.35);
  transition: height .35s var(--ease), background .35s;
}
.site-header.scrolled { height: 70px; background: rgba(3,3,3,.94); }
.brand { display: flex; align-items: center; gap: .72rem; min-width: max-content; }
.brand img { width: 43px; height: 48px; object-fit: contain; filter: drop-shadow(0 0 15px rgba(238,21,31,.35)); }
.brand > span { display: grid; grid-template-columns: auto auto; column-gap: .35rem; align-items: baseline; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; letter-spacing: .055em; font-size: 1.13rem; }
.brand b { color: #fff; }
.brand > span { color: var(--red); }
.brand small { grid-column: 1 / -1; color: #88888e; font-family: ui-sans-serif, system-ui, sans-serif; font-weight: 850; font-size: .44rem; letter-spacing: .27em; }
.main-nav { display: flex; justify-content: center; gap: clamp(1.1rem, 2.6vw, 2.8rem); }
.main-nav a { position: relative; color: #adadb2; font-size: .69rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; transition: color .25s; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.65rem; height: 2px; background: var(--red); transition: right .35s var(--ease); box-shadow: 0 0 10px var(--red); }
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.header-cta { display: flex; align-items: center; gap: 1rem; padding: .86rem 1rem .86rem 1.2rem; color: #fff; border: 1px solid rgba(238,21,31,.55); background: rgba(238,21,31,.09); font-size: .66rem; font-weight: 900; letter-spacing: .14em; overflow: hidden; position: relative; }
.header-cta::before { content: ""; position: absolute; inset: 0 100% 0 0; background: var(--red); transition: right .4s var(--ease); }
.header-cta:hover::before { right: 0; }
.header-cta > * { position: relative; z-index: 1; }
.header-cta svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.menu-toggle { display: none; border: 0; background: transparent; color: #fff; width: 46px; height: 46px; align-items: center; justify-content: center; flex-direction: column; gap: 8px; }
.menu-toggle span { width: 25px; height: 2px; background: currentColor; transition: transform .3s, width .3s; }

.section-pad { padding: clamp(6rem, 10vw, 10rem) clamp(1.1rem, 5vw, 5.5rem); }
.section-heading { max-width: var(--max); margin: 0 auto 4rem; display: grid; grid-template-columns: 1.2fr .62fr; gap: 5rem; align-items: end; }
.section-heading > p { color: var(--muted); font-size: 1rem; line-height: 1.75; max-width: 38rem; margin: 0 0 .7rem; }
.eyebrow { margin: 0 0 1.4rem; color: #bbbcc0; font-size: .66rem; line-height: 1; font-weight: 900; letter-spacing: .24em; display: flex; align-items: center; gap: .75rem; }
.eyebrow span { width: 27px; height: 2px; background: var(--red); box-shadow: 0 0 10px var(--red); }
h1, h2, h3 { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: .015em; }
h1 { font-size: clamp(3.7rem, 7.2vw, 8.1rem); line-height: .84; }
h2 { font-size: clamp(3.5rem, 6.2vw, 7rem); line-height: .86; }
h1 em, h2 em { font-style: normal; color: var(--red); text-shadow: 0 0 30px rgba(238,21,31,.17); }
.section-index { writing-mode: vertical-rl; transform: rotate(180deg); color: #59595d; font-size: .59rem; font-weight: 900; letter-spacing: .23em; }

.hero {
  min-height: calc(100svh - 30px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px,.85fr) minmax(520px,1.15fr);
  align-items: center;
  gap: 2rem;
  padding: clamp(4rem, 8vh, 7rem) clamp(1.1rem, 5vw, 5.5rem) 5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero::before { content: ""; position: absolute; z-index: -4; inset: 0; background: linear-gradient(90deg, #050505 0 35%, rgba(5,5,5,.6) 52%, transparent), radial-gradient(circle at 72% 52%, rgba(238,21,31,.16), transparent 36%); }
.hero-grid { position: absolute; z-index: -3; inset: 0; opacity: .32; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to right, transparent 10%, black 45%, black 100%); transform: perspective(700px) rotateX(60deg) scale(1.35) translateY(20%); transform-origin: center bottom; }
.hero-orbit { position: absolute; z-index: -2; border: 1px solid rgba(238,21,31,.13); border-radius: 50%; right: -20%; top: 12%; }
.orbit-a { width: 52vw; height: 52vw; animation: orbitSpin 32s linear infinite; }
.orbit-b { width: 38vw; height: 38vw; right: -10%; top: 22%; border-style: dashed; animation: orbitSpin 24s linear infinite reverse; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.hero-copy { max-width: 690px; position: relative; z-index: 2; }
.hero-lead { margin: 2rem 0 2.2rem; max-width: 39rem; color: #a4a4aa; font-size: clamp(.98rem, 1.2vw, 1.15rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.btn { position: relative; min-height: 52px; display: inline-flex; justify-content: center; align-items: center; gap: 2rem; padding: 0 1.25rem; border: 1px solid transparent; cursor: pointer; color: #fff; background: transparent; font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; overflow: hidden; transition: transform .25s var(--ease), border-color .25s, background .25s; }
.btn span, .btn b { position: relative; z-index: 2; }
.btn-primary { background: var(--red); border-color: var(--red); box-shadow: 0 10px 34px rgba(238,21,31,.15); }
.btn-primary::before { content: ""; position: absolute; inset: 0; background: #fff; transform: translateX(-104%) skewX(-15deg); transition: transform .5s var(--ease); }
.btn-primary:hover { color: #080808; box-shadow: 0 12px 42px rgba(238,21,31,.3); }
.btn-primary:hover::before { transform: translateX(0) skewX(0); }
.btn-ghost { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.025); }
.btn-ghost:hover { border-color: var(--red); background: rgba(238,21,31,.08); }
.hero-proof { margin-top: 3.7rem; display: flex; max-width: 590px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-proof div { flex: 1; padding: 1.1rem 1.2rem 1.1rem 0; display: grid; gap: .2rem; }
.hero-proof div + div { padding-left: 1.2rem; border-left: 1px solid var(--line); }
.hero-proof strong { color: #fff; font-family: Impact, sans-serif; font-size: 1.45rem; letter-spacing: .08em; }
.hero-proof span { color: #727278; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-visual { position: relative; min-width: 0; }
.weapon-stage { position: relative; min-height: clamp(390px, 52vw, 680px); display: grid; place-items: center; transform-style: preserve-3d; }
.weapon-stage::before { content: ""; position: absolute; inset: 7% 0 8% 2%; border: 1px solid rgba(255,255,255,.08); clip-path: polygon(0 0, 28% 0, 28% 1px, 72% 1px, 72% 0, 100% 0, 100% 100%, 75% 100%, 75% calc(100% - 1px), 25% calc(100% - 1px), 25% 100%, 0 100%); }
.weapon-aura { position: absolute; width: 65%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(238,21,31,.3), rgba(238,21,31,.07) 38%, transparent 69%); filter: blur(18px); animation: auraPulse 4s ease-in-out infinite; }
@keyframes auraPulse { 50% { transform: scale(1.14); opacity: .62; } }
.hero-rifle { position: relative; z-index: 4; width: 112%; max-width: 980px; filter: drop-shadow(0 34px 28px rgba(0,0,0,.82)) drop-shadow(0 0 22px rgba(238,21,31,.14)); transform: translate3d(var(--rifle-x,0), var(--rifle-y,0), 0) rotate(var(--rifle-r,0deg)); transition: transform .12s linear, filter .3s; }
.weapon-stage:hover .hero-rifle { filter: drop-shadow(0 38px 32px rgba(0,0,0,.86)) drop-shadow(0 0 32px rgba(238,21,31,.24)); }
.scan-line { position: absolute; z-index: 7; left: 6%; right: 4%; height: 1px; top: 21%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), var(--red), transparent); box-shadow: 0 0 16px 3px rgba(238,21,31,.45); animation: scan 4.3s ease-in-out infinite; }
@keyframes scan { 0%,100% { top: 22%; opacity: 0; } 10%,88% { opacity: .85; } 50% { top: 76%; } }
.reticle { position: absolute; width: 160px; aspect-ratio: 1; border: 1px solid rgba(238,21,31,.3); border-radius: 50%; z-index: 2; animation: reticleRotate 18s linear infinite; }
.reticle::before, .reticle::after { content: ""; position: absolute; background: rgba(238,21,31,.28); }
.reticle::before { width: calc(100% + 80px); height: 1px; top: 50%; left: -40px; }
.reticle::after { height: calc(100% + 80px); width: 1px; left: 50%; top: -40px; }
.reticle span { position: absolute; inset: 17px; border: 1px dashed rgba(255,255,255,.12); border-radius: 50%; }
@keyframes reticleRotate { to { transform: rotate(360deg); } }
.stage-hud { position: absolute; z-index: 9; display: grid; gap: .2rem; padding-left: .75rem; border-left: 2px solid var(--red); font-size: .53rem; letter-spacing: .16em; }
.stage-hud span { color: #717176; font-weight: 800; }
.stage-hud b { color: #dfdfe2; font-size: .57rem; }
.hud-tl { left: 5%; top: 12%; }
.hud-tr { right: 3%; top: 16%; text-align: right; padding-left: 0; padding-right: .75rem; border-left: 0; border-right: 2px solid var(--red); }
.hud-bl { left: 9%; bottom: 12%; }
.hotspot { position: absolute; z-index: 11; width: 23px; height: 23px; border: 0; border-radius: 50%; background: rgba(238,21,31,.1); cursor: pointer; }
.hotspot::before { content: ""; position: absolute; inset: -5px; border: 1px solid rgba(238,21,31,.45); border-radius: 50%; animation: ping 1.8s ease-out infinite; }
.hotspot span { position: absolute; inset: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 14px var(--red); }
.hotspot b { position: absolute; top: 50%; left: 33px; transform: translateY(-50%) translateX(-8px); padding: .46rem .65rem; color: #fff; background: rgba(5,5,5,.92); border: 1px solid rgba(238,21,31,.45); font-size: .51rem; letter-spacing: .14em; opacity: 0; visibility: hidden; transition: .25s; white-space: nowrap; }
.hotspot:hover b, .hotspot:focus-visible b { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }
.hs-one { left: 49%; top: 33%; }
.hs-two { left: 49%; top: 55%; }
.hs-three { right: 17%; top: 45%; }
@keyframes ping { to { transform: scale(1.7); opacity: 0; } }
.hero-signature { position: absolute; right: 1%; bottom: -1rem; display: flex; align-items: center; gap: .8rem; color: #7d7d82; }
.hero-signature span { font-family: Impact, sans-serif; font-size: 3.4rem; color: rgba(255,255,255,.07); }
.hero-signature p { margin: 0; font-size: .54rem; line-height: 1.5; letter-spacing: .17em; font-weight: 900; }
.scroll-cue { position: absolute; left: 50%; bottom: 1rem; display: flex; align-items: center; gap: .8rem; color: #55555a; font-size: .49rem; letter-spacing: .2em; font-weight: 900; transform: translateX(-50%); }
.scroll-cue span { height: 30px; width: 1px; background: linear-gradient(var(--red), transparent); animation: scrollCue 1.8s ease-in-out infinite; }
@keyframes scrollCue { 50% { transform: translateY(7px); } }

.manifesto { max-width: calc(var(--max) + 11rem); margin: auto; display: grid; grid-template-columns: auto 1.15fr .75fr; gap: clamp(2rem, 6vw, 7rem); align-items: center; border-bottom: 1px solid var(--line); }
.manifesto-text { padding-top: 2rem; }
.manifesto-text p { margin: 0 0 1.3rem; color: #a3a3a8; font-size: 1rem; line-height: 1.85; }
.text-link { display: inline-flex; gap: 1.4rem; align-items: center; margin-top: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--red); color: #fff; font-size: .66rem; font-weight: 900; letter-spacing: .14em; }
.text-link span { color: var(--red); transition: transform .25s; }
.text-link:hover span { transform: translate(4px,-4px); }

.replicas { background: linear-gradient(180deg, transparent, rgba(255,255,255,.018), transparent); }
.category-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.spotlight-card { --mx: 50%; --my: 50%; position: relative; isolation: isolate; overflow: hidden; }
.spotlight-card::before { content: ""; position: absolute; z-index: -1; inset: 0; pointer-events: none; background: radial-gradient(420px circle at var(--mx) var(--my), rgba(238,21,31,.19), transparent 48%); opacity: 0; transition: opacity .35s; }
.spotlight-card:hover::before { opacity: 1; }
.category-card { min-height: 470px; padding: 1.7rem; background: #09090a; display: flex; flex-direction: column; transition: background .35s, transform .35s var(--ease); }
.category-card::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 3px; background: var(--red); box-shadow: 0 0 15px var(--red); transition: right .45s var(--ease); }
.category-card:hover { background: #0d0d0f; transform: translateY(-5px); z-index: 2; }
.category-card:hover::after { right: 0; }
.category-number { color: #57575c; font-size: .6rem; font-weight: 900; letter-spacing: .2em; }
.category-code { margin-top: auto; color: var(--red); font-size: .52rem; font-weight: 900; letter-spacing: .2em; }
.category-card h3 { margin-top: .7rem; font-size: clamp(2.3rem, 3vw, 3.7rem); line-height: .9; }
.category-card h3 span { color: var(--red); }
.category-card p { color: #86868c; font-size: .78rem; line-height: 1.6; max-width: 16rem; }
.category-arrow { position: absolute; top: 1.2rem; right: 1.2rem; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); color: #77777d; transition: .3s; }
.category-card:hover .category-arrow { color: #fff; background: var(--red); border-color: var(--red); transform: rotate(45deg); }
.category-icon { position: absolute; width: 78%; height: 44%; left: 18%; top: 18%; opacity: .28; transform: skewY(-7deg); transition: opacity .35s, transform .45s var(--ease); filter: drop-shadow(0 0 12px rgba(238,21,31,.15)); }
.category-card:hover .category-icon { opacity: .6; transform: skewY(-4deg) translate(-7px,-7px); }
.category-icon::before, .category-icon::after { content: ""; position: absolute; background: linear-gradient(90deg, rgba(238,21,31,.05), rgba(238,21,31,.75), rgba(255,255,255,.2)); clip-path: polygon(2% 35%, 65% 35%, 70% 20%, 77% 20%, 80% 34%, 99% 34%, 99% 48%, 72% 48%, 68% 62%, 52% 62%, 48% 48%, 2% 48%); inset: 22% 0; }
.category-icon::after { inset: 0; background: repeating-linear-gradient(90deg, transparent 0 18px, rgba(238,21,31,.18) 18px 19px); clip-path: none; opacity: .4; }
.icon-hpa::before { clip-path: polygon(0 39%, 60% 39%, 67% 28%, 75% 28%, 78% 38%, 100% 38%, 100% 48%, 72% 48%, 69% 65%, 55% 65%, 48% 48%, 0 48%); }
.icon-sniper::before { clip-path: polygon(0 42%, 72% 42%, 75% 32%, 86% 32%, 88% 41%, 100% 41%, 100% 47%, 62% 47%, 57% 66%, 49% 66%, 51% 47%, 0 47%); }
.icon-pistol::before { inset: 13% 9%; clip-path: polygon(10% 28%, 93% 28%, 98% 40%, 60% 45%, 58% 85%, 40% 85%, 37% 45%, 10% 43%); }

.featured { padding-top: 2rem; }
.featured-shell { max-width: var(--max); min-height: 690px; margin: auto; display: grid; grid-template-columns: .8fr 1.2fr; border: 1px solid var(--line); background: linear-gradient(125deg, #101012, #080809 58%, #100406); }
.featured-shell::before { opacity: .65; background: radial-gradient(650px circle at var(--mx) var(--my), rgba(238,21,31,.18), transparent 50%); }
.featured-info { padding: clamp(2rem, 5vw, 5rem); position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.product-meta { display: flex; gap: .5rem; margin-bottom: 1rem; }
.product-meta span { padding: .35rem .55rem; border: 1px solid rgba(238,21,31,.35); color: #c9c9cc; background: rgba(238,21,31,.07); font-size: .5rem; font-weight: 900; letter-spacing: .16em; }
.featured-info h2 { font-size: clamp(3.2rem, 5vw, 5.8rem); }
.featured-info > p { color: #96969b; line-height: 1.7; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1rem; margin: 1rem 0 1.6rem; }
.feature-list span { color: #c7c7ca; font-size: .67rem; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; display: flex; gap: .6rem; align-items: center; }
.feature-list span::before { content: ""; width: 5px; height: 5px; background: var(--red); box-shadow: 0 0 9px var(--red); }
.finish-selector { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.finish { border: 1px solid var(--line); padding: .65rem .8rem; color: #8e8e94; background: transparent; cursor: pointer; font-size: .55rem; font-weight: 900; letter-spacing: .13em; transition: .25s; }
.finish:hover, .finish.active { color: #fff; border-color: var(--red); background: rgba(238,21,31,.08); }
.swatch { display: inline-block; width: 7px; height: 7px; margin-right: .45rem; border-radius: 50%; box-shadow: 0 0 0 2px rgba(255,255,255,.09); }
.swatch-black { background: #111; }.swatch-grey { background: #6e7278; }.swatch-tan { background: #a58a68; }
.featured-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.price-note { color: #68686d; font-size: .56rem; text-transform: uppercase; letter-spacing: .12em; }
.featured-product { position: relative; display: grid; place-items: center; min-width: 0; overflow: hidden; }
.featured-product::before { content: "KC"; position: absolute; color: rgba(255,255,255,.025); font-family: Impact, sans-serif; font-size: clamp(18rem, 30vw, 35rem); line-height: 1; }
.featured-product img { position: relative; z-index: 4; width: 110%; max-width: none; filter: drop-shadow(0 32px 28px rgba(0,0,0,.85)) drop-shadow(0 0 18px rgba(238,21,31,.12)); transition: opacity .25s, transform .5s var(--ease), filter .4s; }
.featured-product:hover img { transform: scale(1.035) translateY(-5px); filter: drop-shadow(0 38px 32px rgba(0,0,0,.9)) drop-shadow(0 0 30px rgba(238,21,31,.22)); }
.product-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(238,21,31,.19); }
.ring-one { width: 68%; aspect-ratio: 1; animation: orbitSpin 25s linear infinite; }
.ring-two { width: 45%; aspect-ratio: 1; border-style: dashed; animation: orbitSpin 17s linear infinite reverse; }
.product-label { position: absolute; color: #57575c; font-size: .48rem; font-weight: 900; letter-spacing: .19em; }
.label-one { left: 5%; top: 6%; writing-mode: vertical-rl; }.label-two { right: 5%; bottom: 6%; }
.product-shadow { position: absolute; width: 72%; height: 38px; bottom: 25%; border-radius: 50%; background: rgba(0,0,0,.8); filter: blur(18px); }

.lab { position: relative; isolation: isolate; background: #070708; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.lab-background { position: absolute; z-index: -1; inset: 0; opacity: .35; background: radial-gradient(circle at 10% 50%, rgba(238,21,31,.15), transparent 34%), repeating-linear-gradient(115deg, transparent 0 70px, rgba(255,255,255,.018) 70px 71px); }
.lab-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; }
.build-panel { border: 1px solid var(--line); background: rgba(8,8,9,.78); padding: clamp(1.4rem, 3vw, 2.4rem); }
.build-panel fieldset { border: 0; margin: 0; padding: 0 0 2rem; }
.build-panel fieldset + fieldset { border-top: 1px solid var(--line); padding-top: 2rem; }
.build-panel legend { width: 100%; margin-bottom: 1rem; color: #c8c8cb; font-size: .61rem; font-weight: 900; letter-spacing: .16em; }
.build-panel legend span { color: var(--red); margin-right: .7rem; }
.choice-row { display: grid; grid-template-columns: repeat(3,1fr); gap: .65rem; }
.choice-row input { position: absolute; opacity: 0; pointer-events: none; }
.choice-row label > span { min-height: 82px; display: flex; flex-direction: column; justify-content: center; padding: 1rem; border: 1px solid var(--line); color: #bdbdc1; background: rgba(255,255,255,.015); cursor: pointer; font-family: Impact, sans-serif; font-size: 1.3rem; letter-spacing: .05em; transition: .3s; }
.choice-row small { color: #66666b; font-family: ui-sans-serif, system-ui; font-size: .52rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.choice-row input:checked + span { color: #fff; border-color: var(--red); background: linear-gradient(135deg, rgba(238,21,31,.17), rgba(238,21,31,.03)); box-shadow: inset 3px 0 0 var(--red), 0 0 25px rgba(238,21,31,.08); }
.range-head { display: flex; justify-content: space-between; color: #69696e; font-size: .48rem; font-weight: 900; letter-spacing: .13em; }
.range-head strong { color: #fff; }
input[type="range"] { width: 100%; height: 4px; margin-top: 1rem; accent-color: var(--red); cursor: pointer; }
.line-input { width: 100%; padding: .9rem 0; color: #fff; border: 0; border-bottom: 1px solid #303034; outline: none; background: transparent; }
.line-input:focus { border-color: var(--red); }
.build-output { display: flex; flex-direction: column; min-height: 100%; padding: clamp(1.5rem, 3vw, 2.7rem); border: 1px solid rgba(238,21,31,.25); background: linear-gradient(145deg, rgba(238,21,31,.09), rgba(10,10,11,.92) 46%); }
.output-top { display: flex; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid var(--line); font-size: .55rem; font-weight: 900; letter-spacing: .16em; }
.output-top span { color: var(--red); }.output-top b { color: #75757a; }
.build-output > img { width: 100px; margin: 1.8rem auto; opacity: .9; filter: drop-shadow(0 0 20px rgba(238,21,31,.28)); }
.build-output dl { margin: 0 0 1.5rem; }
.build-output dl div { display: flex; justify-content: space-between; gap: 1rem; padding: .78rem 0; border-bottom: 1px solid var(--line); }
.build-output dt { color: #66666c; font-size: .53rem; font-weight: 900; letter-spacing: .14em; }
.build-output dd { margin: 0; color: #ededee; font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-align: right; text-transform: uppercase; }
.build-output > p { color: #95959a; font-size: .85rem; line-height: 1.65; }
.build-output .btn { margin-top: auto; width: 100%; }
.build-output > small { margin-top: .8rem; color: #5e5e63; font-size: .55rem; line-height: 1.5; text-align: center; }

.process { max-width: calc(var(--max) + 11rem); margin: auto; display: grid; grid-template-columns: auto 1fr; column-gap: clamp(2rem, 6vw, 7rem); }
.process-intro { margin-bottom: 4rem; }
.process-grid { grid-column: 2; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.process-card { min-height: 390px; padding: 1.6rem; display: flex; flex-direction: column; background: #09090a; }
.process-card > span { color: rgba(255,255,255,.08); font-family: Impact, sans-serif; font-size: 5rem; line-height: 1; }
.process-card small { margin-top: auto; color: var(--red); font-size: .52rem; font-weight: 900; letter-spacing: .18em; }
.process-card h3 { margin: .6rem 0 .9rem; font-size: 2.1rem; line-height: .93; }
.process-card p { margin: 0; color: #77777d; font-size: .75rem; line-height: 1.65; }
.process-card i { width: 0; height: 2px; background: var(--red); margin-top: 1.2rem; transition: width .45s var(--ease); box-shadow: 0 0 10px var(--red); }
.process-card:hover i { width: 100%; }

.services { max-width: calc(var(--max) + 11rem); margin: auto; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.media-frame { aspect-ratio: 1.15; border: 1px solid var(--line); background: #09090a; display: grid; place-items: center; overflow: hidden; }
.media-frame::before { opacity: .8; }
.media-frame img { width: 118%; max-width: none; filter: drop-shadow(0 20px 25px rgba(0,0,0,.8)); transition: transform .55s var(--ease), filter .4s; }
.media-frame:hover img { transform: scale(1.055) rotate(-1deg); filter: drop-shadow(0 25px 30px rgba(0,0,0,.9)) drop-shadow(0 0 20px rgba(238,21,31,.18)); }
.media-scan { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0 48%, rgba(238,21,31,.12) 49%, rgba(238,21,31,.55) 50%, transparent 52%); background-size: 100% 200%; animation: mediaScan 4s linear infinite; pointer-events: none; }
@keyframes mediaScan { to { background-position: 0 200%; } }
.media-tag { position: absolute; left: 1rem; bottom: 1rem; padding: .5rem .65rem; color: #fff; background: rgba(0,0,0,.76); border-left: 2px solid var(--red); font-size: .5rem; font-weight: 900; letter-spacing: .17em; }
.services-copy h2 { margin-bottom: 2rem; }
.service-accordion details { border-top: 1px solid var(--line); }
.service-accordion details:last-child { border-bottom: 1px solid var(--line); }
.service-accordion summary { list-style: none; display: grid; grid-template-columns: auto 1fr auto; gap: .9rem; align-items: center; padding: 1.15rem 0; cursor: pointer; color: #b9b9bd; font-size: .65rem; font-weight: 900; letter-spacing: .11em; }
.service-accordion summary::-webkit-details-marker { display: none; }
.service-accordion summary span { color: var(--red); }.service-accordion summary b { font-size: 1.2rem; transition: transform .3s; }
.service-accordion details[open] summary { color: #fff; }
.service-accordion details[open] summary b { transform: rotate(45deg); color: var(--red); }
.service-accordion details p { margin: 0; padding: 0 0 1.2rem 2rem; color: #77777d; font-size: .78rem; line-height: 1.7; }

.values { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #080809; }
.values-line { max-width: var(--max); margin: 0 auto 3rem; display: flex; justify-content: space-between; gap: 2rem; color: #545459; font-family: Impact, sans-serif; font-size: clamp(1.2rem, 2.5vw, 2.7rem); }
.values-line span:nth-child(2) { color: var(--red); }
.values-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.values-grid article { padding: 2.3rem; min-height: 300px; background: #0b0b0c; display: flex; flex-direction: column; }
.values-grid b { color: var(--red); font-size: .6rem; letter-spacing: .16em; }
.values-grid h3 { margin-top: auto; font-size: 2.2rem; line-height: .92; }
.values-grid p { color: #77777d; font-size: .78rem; line-height: 1.65; }

.faq { max-width: var(--max); margin: auto; display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 9vw, 9rem); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; display: flex; justify-content: space-between; gap: 2rem; padding: 1.5rem 0; cursor: pointer; color: #c3c3c7; font-size: .71rem; font-weight: 900; letter-spacing: .1em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary b { color: var(--red); font-size: 1.2rem; transition: transform .25s; }
.faq-list details[open] summary b { transform: rotate(45deg); }
.faq-list p { max-width: 45rem; margin: 0; padding: 0 3rem 1.5rem 0; color: #7f7f85; line-height: 1.75; }

.contact { position: relative; overflow: hidden; isolation: isolate; min-height: 720px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(480px, .78fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; background: linear-gradient(118deg, #100304, #080809 48%, #030303); border-top: 1px solid rgba(238,21,31,.3); }
.contact-copy, .contact-form { min-width: 0; }
.contact::before { content: ""; position: absolute; z-index: -2; inset: 0; background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px); background-size: 54px 54px; }
.contact-mark { position: absolute; z-index: -1; left: -6%; top: 4%; opacity: .06; width: 48%; transform: rotate(-6deg); filter: blur(.2px); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; padding: clamp(1.5rem, 3vw, 2.8rem); border: 1px solid var(--line); background: rgba(5,5,6,.74); backdrop-filter: blur(15px); }
.contact-form label { display: grid; gap: .6rem; }
.contact-form label > span { color: #75757b; font-size: .52rem; font-weight: 900; letter-spacing: .17em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); outline: none; color: #efeff0; background: #0b0b0d; padding: .9rem 1rem; transition: border .25s, box-shadow .25s; }
.contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #777 50%), linear-gradient(135deg, #777 50%, transparent 50%); background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(238,21,31,.06); }
.contact-form .full { grid-column: 1 / -1; }
.contact-form > small { color: #626267; font-size: .56rem; line-height: 1.6; }

.site-footer { padding: 4rem clamp(1.1rem, 5vw, 5.5rem) 1.4rem; border-top: 1px solid var(--line); background: #030303; }
.footer-main { max-width: var(--max); margin: auto; display: grid; grid-template-columns: .75fr 1.25fr; gap: 5rem; }
.footer-brand img { width: min(430px, 100%); }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.footer-links div { display: flex; flex-direction: column; gap: .72rem; }
.footer-links span { margin-bottom: .5rem; color: var(--red); font-size: .54rem; font-weight: 900; letter-spacing: .17em; }
.footer-links a { width: fit-content; color: #89898e; font-size: .75rem; transition: color .25s, transform .25s; }
.footer-links a:hover { color: #fff; transform: translateX(4px); }
.footer-bottom { max-width: var(--max); margin: 3.5rem auto 0; padding-top: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); color: #4f4f54; font-size: .5rem; font-weight: 800; letter-spacing: .14em; }
.footer-bottom a:hover { color: var(--red); }

.floating-whatsapp { position: fixed; z-index: 900; right: 1.2rem; bottom: 1.2rem; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: #fff; box-shadow: 0 12px 35px rgba(238,21,31,.3); transition: transform .25s var(--ease), box-shadow .25s; }
.floating-whatsapp:hover { transform: translateY(-5px) scale(1.04); box-shadow: 0 18px 44px rgba(238,21,31,.42); }
.floating-whatsapp svg { width: 24px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(38px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--delay,0ms); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1160px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .menu-toggle { display: flex; order: 3; }
  .header-cta { display: none; }
  .main-nav { position: fixed; inset: var(--header-h) 0 auto; height: calc(100dvh - var(--header-h)); padding: 3rem 1.5rem; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; gap: 1.5rem; background: rgba(5,5,5,.98); transform: translateX(100%); transition: transform .45s var(--ease); }
  .main-nav a { font-family: Impact, sans-serif; font-size: 2.4rem; letter-spacing: .04em; color: #ddd; }
  body.menu-open .main-nav { transform: translateX(0); }
  body.menu-open .menu-toggle span:first-child { transform: translateY(5px) rotate(45deg); }
  body.menu-open .menu-toggle span:last-child { transform: translateY(-5px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; padding-top: 6rem; }
  .hero-copy { max-width: 820px; }
  .hero-visual { margin-top: -3rem; }
  .weapon-stage { min-height: 530px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .featured-shell { grid-template-columns: 1fr; }
  .featured-info { border-right: 0; border-bottom: 1px solid var(--line); }
  .featured-product { min-height: 570px; }
  .lab-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  :root { --header-h: 72px; }
  .site-header { height: var(--header-h); padding: 0 1rem; }
  .site-header.scrolled { height: 64px; }
  .brand img { width: 37px; height: 42px; }.brand > span { font-size: 1rem; }
  .section-pad { padding: 5.5rem 1.1rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
  h1 { font-size: clamp(3.4rem, 17vw, 5.9rem); }
  h2 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .hero { min-height: auto; padding: 5rem 1.1rem 4rem; }
  .hero-proof { margin-top: 2.5rem; }.hero-proof div { padding-right: .7rem; }.hero-proof div + div { padding-left: .7rem; }
  .hero-proof strong { font-size: 1.1rem; }.hero-proof span { font-size: .48rem; }
  .weapon-stage { min-height: 390px; margin-left: -10%; margin-right: -10%; }
  .hero-rifle { width: 118%; }
  .stage-hud, .hotspot, .scroll-cue { display: none; }
  .hero-signature { display: none; }
  .manifesto { grid-template-columns: auto 1fr; gap: 1.5rem; }
  .manifesto-text { grid-column: 2; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 340px; }
  .category-icon { width: 60%; left: 35%; top: 8%; }
  .featured { padding-top: 0; }
  .featured-info { padding: 2rem 1.2rem; }
  .featured-product { min-height: 380px; }
  .featured-product img { width: 125%; }
  .feature-list { grid-template-columns: 1fr; }
  .choice-row { grid-template-columns: 1fr; }
  .choice-row label > span { min-height: 68px; }
  .process { grid-template-columns: auto 1fr; gap: 1rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 300px; }
  .services { grid-template-columns: 1fr; }
  .values-line { flex-direction: column; gap: .5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form { grid-template-columns: 1fr; padding: 1rem; }
  .contact-form .full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 3rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .notice-track span { padding: 0 1.1rem; }
  .brand small { display: none; }
  .hero-actions .btn { width: 100%; }
  .hero-lead { font-size: .94rem; }
  .hero-proof span { display: none; }
  .weapon-stage { min-height: 320px; }
  .finish-selector { display: grid; grid-template-columns: repeat(3,1fr); }
  .finish { padding: .65rem .35rem; }
  .featured-product { min-height: 310px; }
  .featured-product img { width: 138%; }
  .build-output { padding: 1.2rem; }
  .process { grid-template-columns: 1fr; }
  .section-index { display: none; }
  .process-grid, .process-intro { grid-column: 1; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-text { grid-column: 1; }
  .footer-links { grid-template-columns: 1fr; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none; }
  .spotlight-card::before { opacity: .22; }
}

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

/* =========================================================
   MOBILE PERFORMANCE & RESPONSIVE HARDENING
   Keeps the desktop art direction while preventing viewport
   overflow and restoring motion/feedback on touch devices.
   ========================================================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body { position: relative; }
main,
main > section,
.site-header,
.site-footer,
.section-pad,
.hero-copy,
.hero-visual,
.weapon-stage,
.featured-shell,
.featured-info,
.featured-product,
.lab-grid,
.build-panel,
.build-output,
.process,
.process-grid,
.services,
.values-grid,
.faq,
.contact,
.contact-form,
.footer-main,
.footer-links,
.category-grid,
.category-card {
  min-width: 0;
  max-width: 100%;
}

h1, h2, h3, p, a, span, small, strong, summary, label, dt, dd {
  overflow-wrap: break-word;
}

.btn {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.page-loader {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  padding: max(1.25rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right)) max(1.25rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
  transform: translateZ(0);
}
.page-loader img {
  display: block !important;
  width: clamp(96px, 24vw, 132px);
  height: auto;
  opacity: 1;
  visibility: visible;
  object-fit: contain;
  transform: translateZ(0);
}

.notice-bar {
  width: 100%;
  max-width: 100vw;
  flex: 0 0 auto;
  contain: paint;
  transform: translateZ(0);
}
.notice-track {
  display: flex;
  flex: 0 0 auto;
  width: max-content;
  min-width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  animation: kcMarquee 28s linear infinite;
}
.notice-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: max-content;
  min-width: max-content;
}
.notice-group span { flex: 0 0 auto; }
@keyframes kcMarquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

.spotlight-card.is-touch-lit::before,
.spotlight-card:focus-within::before { opacity: 1; }

@media (max-width: 1160px) {
  .main-nav {
    inset: var(--header-h) 0 0;
    width: 100%;
    max-width: 100vw;
    height: auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: max(3rem, env(safe-area-inset-bottom));
  }
  .hero,
  .contact { width: 100%; }
}

@media (max-width: 800px) {
  :root { --mobile-gutter: clamp(1rem, 4.6vw, 1.35rem); }

  .site-header {
    width: 100%;
    padding-left: max(var(--mobile-gutter), env(safe-area-inset-left));
    padding-right: max(var(--mobile-gutter), env(safe-area-inset-right));
  }
  .brand { min-width: 0; max-width: calc(100% - 58px); }
  .brand > span { min-width: 0; white-space: nowrap; }
  .menu-toggle { flex: 0 0 46px; }

  .notice-bar { height: 29px; font-size: .56rem; letter-spacing: .15em; }
  .notice-track { animation-duration: 22s; }
  .notice-group span { padding: 0 1.25rem; }

  .section-pad { width: 100%; padding-left: var(--mobile-gutter); padding-right: var(--mobile-gutter); }
  .section-heading { width: 100%; }

  h1 {
    font-size: clamp(3rem, 12.6vw, 4.65rem);
    line-height: .9;
    letter-spacing: 0;
    text-wrap: balance;
  }
  h2 {
    font-size: clamp(2.85rem, 12.3vw, 4.55rem);
    line-height: .9;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .hero {
    width: 100%;
    padding: clamp(3.5rem, 10vw, 5rem) var(--mobile-gutter) 3.8rem;
    gap: 1.2rem;
  }
  .hero-copy { width: 100%; }
  .hero-lead { max-width: 34rem; margin: 1.4rem 0 1.7rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { min-width: 0; }
  .hero-proof { width: 100%; max-width: 100%; }

  .hero-visual {
    width: 100%;
    margin-top: -1rem;
    overflow: hidden;
  }
  .weapon-stage {
    width: 100%;
    min-height: clamp(300px, 82vw, 410px);
    margin: 0;
    overflow: hidden;
  }
  .weapon-stage::before { inset: 8% 0 10%; }
  .hero-rifle {
    width: 112%;
    max-width: none;
    transform-origin: center;
  }
  .weapon-aura { width: 78%; }
  .reticle { width: clamp(118px, 38vw, 160px); }

  .manifesto,
  .process { width: 100%; }
  .manifesto-copy,
  .manifesto-text,
  .process-intro,
  .process-grid { min-width: 0; }

  .category-card { width: 100%; min-height: 330px; }
  .category-icon { max-width: 72%; }

  .featured-shell { width: 100%; min-height: 0; }
  .featured-info { width: 100%; }
  .featured-product {
    width: 100%;
    min-height: clamp(320px, 88vw, 430px);
  }
  .featured-product img { width: 116%; }
  .featured-product::before { font-size: clamp(14rem, 70vw, 24rem); }

  .lab-grid,
  .services,
  .values-grid,
  .faq,
  .contact,
  .footer-main { width: 100%; }

  .choice-row,
  .process-grid,
  .values-grid { min-width: 0; }

  .media-frame { width: 100%; }
  .media-frame img { width: 112%; }

  .contact {
    min-height: 0;
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
  .contact-copy h2 { font-size: clamp(2.65rem, 11.7vw, 4.25rem); }
  .contact-mark { width: 90%; left: -34%; top: 3%; }
  .contact-form { width: 100%; gap: 1rem; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { min-width: 0; font-size: 16px; }

  .footer-brand img { width: min(100%, 430px); height: auto; }
  .footer-links { min-width: 0; }

  .floating-whatsapp {
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .page-loader { gap: 1rem; }
  .page-loader img { width: clamp(104px, 31vw, 126px); }
  .loader-track { width: min(220px, 68vw); }
  .page-loader small { max-width: 82vw; text-align: center; line-height: 1.5; letter-spacing: .19em; }

  .brand img { width: 34px; height: 40px; }
  .brand > span { font-size: .93rem; }
  .main-nav a { font-size: clamp(2rem, 10vw, 2.55rem); }

  h1 { font-size: clamp(2.8rem, 12vw, 3.65rem); }
  h2 { font-size: clamp(2.65rem, 11.5vw, 3.55rem); }
  .eyebrow { font-size: .58rem; letter-spacing: .18em; }

  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-proof div { min-width: 0; padding: .95rem .45rem .95rem 0; }
  .hero-proof div + div { padding-left: .55rem; }
  .weapon-stage { min-height: clamp(280px, 78vw, 340px); }
  .hero-rifle { width: 108%; }

  .manifesto { gap: 1rem; }
  .product-meta { flex-wrap: wrap; }
  .featured-info { padding: 1.7rem 1rem; }
  .featured-product { min-height: clamp(285px, 79vw, 340px); }
  .featured-product img { width: 112%; }
  .finish-selector { width: 100%; }
  .finish { min-width: 0; }

  .build-panel,
  .build-output,
  .contact-form { padding: 1rem; }
  .build-output dl div { align-items: flex-start; }
  .build-output dt,
  .build-output dd { min-width: 0; }

  .process-card { min-height: 270px; }
  .values-grid article { min-height: 250px; padding: 1.5rem; }
  .service-accordion summary,
  .faq-list summary { gap: .7rem; letter-spacing: .07em; }
  .service-accordion details p { padding-left: 0; }
  .faq-list p { padding-right: 0; }

  .contact-copy h2 { font-size: clamp(2.45rem, 10.9vw, 3.35rem); }
  .contact-form .btn { padding: .9rem .8rem; gap: .7rem; }
  .footer-main { gap: 2.4rem; }
  .footer-bottom { overflow-wrap: anywhere; }
}

@media (hover: none), (pointer: coarse) {
  .spotlight-card::before { opacity: .16; }
  .spotlight-card.is-touch-lit::before { opacity: .92; }
  .category-card:active,
  .process-card:active,
  .values-grid article:active { transform: translateY(-2px); }
  .btn:active { transform: scale(.985); }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader { display: grid; }
  .page-loader img { animation: none !important; }
  .loader-track span { animation: none !important; width: 100%; }
  .notice-track {
    animation-name: kcMarquee !important;
    animation-duration: 46s !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
  }
}

@media (max-width: 1160px) {
  .main-nav {
    transform: translate3d(0, -12px, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  body.menu-open .main-nav {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

img { height: auto; }

/* =========================================================
   MOBILE MENU FIT + FULL MOBILE BRAND LOCKUP
   Final phone pass: every navigation option remains visible
   without an inner scroll, and AIRSOFT PERFORMANCE stays on.
   ========================================================= */
@media (max-width: 1160px) {
  .main-nav {
    /* The menu occupies exactly the space below the sticky header. */
    inset: var(--mobile-menu-offset, var(--header-h)) 0 auto;
    height: var(--mobile-menu-height, calc(100dvh - var(--header-h)));
    max-height: var(--mobile-menu-height, calc(100dvh - var(--header-h)));
    padding: clamp(.85rem, 2.4dvh, 1.6rem) max(1rem, env(safe-area-inset-right)) max(.85rem, calc(env(safe-area-inset-bottom) + .55rem)) max(1rem, env(safe-area-inset-left));
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    justify-items: stretch;
    gap: clamp(.35rem, 1.25dvh, .85rem);
    overflow: hidden;
    overscroll-behavior: none;
  }

  .main-nav a {
    width: 100%;
    min-width: 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .15rem .75rem;
    font-size: clamp(1.55rem, min(9vw, 5.7dvh), 2.55rem);
    line-height: .88;
    text-align: center;
  }

  .main-nav a::after {
    left: 18%;
    right: 82%;
    bottom: .12rem;
  }

  .main-nav a:hover::after,
  .main-nav a.active::after { right: 18%; }
}

@media (max-width: 800px) {
  .brand {
    gap: clamp(.48rem, 2.2vw, .68rem);
  }

  .brand > span {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: clamp(.22rem, 1.15vw, .34rem);
    align-items: baseline;
    line-height: 1;
  }

  .brand small {
    display: block;
    grid-column: 1 / -1;
    margin-top: .23rem;
    color: #b8b8bc;
    font-size: clamp(.34rem, 1.55vw, .41rem);
    line-height: 1;
    letter-spacing: clamp(.12em, .62vw, .22em);
    white-space: nowrap;
    text-shadow: 0 0 12px rgba(255,255,255,.08);
  }
}

@media (max-width: 480px) {
  /* Overrides the earlier mobile rule that intentionally hid the tagline. */
  .brand small { display: block; }
  .brand > span { font-size: clamp(.84rem, 4.15vw, .94rem); }
  .brand img { flex: 0 0 auto; }
}

/* Short phones and landscape mode use two columns, preserving every item. */
@media (max-width: 1160px) and (max-height: 520px) {
  .main-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: .45rem .8rem;
    padding-top: .7rem;
    padding-bottom: max(.7rem, env(safe-area-inset-bottom));
  }

  .main-nav a {
    font-size: clamp(1.25rem, min(6vw, 7dvh), 2rem);
    border: 1px solid rgba(255,255,255,.055);
    background: rgba(255,255,255,.018);
  }

  .main-nav a:last-child { grid-column: 1 / -1; }
}
