:root {
  --bg: #070809;
  --panel: #0d0f11;
  --panel-2: #111418;
  --text: #f3f5f7;
  --muted: #939ba5;
  --line: rgba(255, 255, 255, 0.11);
  --red: #ff2e38;
  --blue: #2f8fff;
  --max: 1260px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .055;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  height: 88px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 1.1rem; font-weight: 750; letter-spacing: -.03em; width: max-content; }
.brand-mark { width: 36px; height: 36px; display: grid; place-items: center; font-size: .78rem; border: 1px solid rgba(255,255,255,.3); background: rgba(6,7,8,.5); clip-path: polygon(0 0, 78% 0, 100% 22%, 100% 100%, 22% 100%, 0 78%); }
.brand-x { color: var(--red); }
nav { display: flex; gap: 35px; font-size: .82rem; color: #c2c7cd; }
nav a, .header-cta, .text-link { transition: color .2s ease; }
nav a:hover, .header-cta:hover, .text-link:hover { color: var(--red); }
.header-cta { justify-self: end; font-size: .84rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.header-cta span, .text-link span { color: var(--red); margin-left: 7px; }
.menu-toggle { display: none; }

.hero {
  min-height: 810px;
  height: 100svh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: 130px max(28px, calc((100vw - var(--max)) / 2)) 96px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(7,8,9,1) 0%, rgba(7,8,9,.96) 31%, rgba(7,8,9,.23) 62%, rgba(7,8,9,.1) 100%), linear-gradient(0deg, rgba(7,8,9,.9), transparent 34%); }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.015); animation: heroIn 1.8s cubic-bezier(.2,.7,.2,1) both; }
@keyframes heroIn { from { opacity: .3; transform: scale(1.08); } to { opacity: 1; transform: scale(1.015); } }
.hero-copy { width: min(650px, 52vw); position: relative; z-index: 1; }
.eyebrow, .kicker, .section-index { margin: 0 0 24px; color: #c8cdd2; text-transform: uppercase; font-size: .7rem; font-weight: 700; letter-spacing: .22em; }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 34px; height: 2px; background: var(--red); box-shadow: 0 0 14px var(--red); }
h1, h2, h3, p { text-wrap: balance; }
h1 { font-size: clamp(4.6rem, 8.8vw, 8.4rem); line-height: .82; letter-spacing: -.075em; margin: 0; font-weight: 850; text-transform: uppercase; }
h1 em, h2 em { display: inline-block; font-style: normal; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.62); }
.hero-lead { max-width: 590px; margin: 36px 0 30px; font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: #c0c6cc; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.button { min-height: 53px; display: inline-flex; align-items: center; justify-content: center; gap: 24px; padding: 0 24px; text-transform: uppercase; font-size: .73rem; font-weight: 800; letter-spacing: .12em; border: 1px solid transparent; transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: #fff; box-shadow: 0 14px 45px rgba(255,46,56,.2); }
.button-primary:hover { background: #ff4650; }
.button-ghost { border-color: rgba(255,255,255,.24); background: rgba(4,5,6,.25); backdrop-filter: blur(8px); }
.button-ghost:hover { border-color: rgba(255,255,255,.5); }
.trust-line { margin: 23px 0 0; font-size: .74rem; color: #818991; }
.hero-specs { position: absolute; right: max(28px, calc((100vw - var(--max)) / 2)); bottom: 58px; display: flex; background: rgba(7,8,9,.68); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(14px); }
.hero-specs div { display: flex; gap: 12px; align-items: center; padding: 17px 21px; border-right: 1px solid var(--line); }
.hero-specs div:last-child { border-right: 0; }
.hero-specs strong { font-size: 1.35rem; color: var(--red); letter-spacing: -.05em; }
.hero-specs span { font-size: .66rem; line-height: 1.25; color: #a8afb6; text-transform: uppercase; letter-spacing: .08em; }
.scroll-cue { position: absolute; left: 50%; bottom: 34px; width: 22px; height: 36px; border: 1px solid rgba(255,255,255,.3); border-radius: 20px; }
.scroll-cue span { position: absolute; width: 3px; height: 7px; border-radius: 2px; background: var(--red); top: 7px; left: 8px; animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(14px); opacity: 0; } }

.statement { max-width: var(--max); margin: 0 auto; padding: 150px 28px 110px; display: grid; grid-template-columns: 1fr 3fr; column-gap: 6vw; }
.section-index { color: #69717a; padding-top: 12px; }
.statement h2, .product-showcase h2, .setup h2, .included h2, .games h2, .buy-panel h2 { font-size: clamp(2.8rem, 5.2vw, 5.4rem); line-height: .98; letter-spacing: -.055em; margin: 0; }
h2 span { color: #5d6369; }
.statement > p:last-child { grid-column: 2; max-width: 640px; margin: 38px 0 0; font-size: 1.22rem; color: var(--muted); }

.feature-grid { max-width: var(--max); margin: 0 auto 150px; padding: 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.feature { min-height: 470px; position: relative; overflow: hidden; padding: 34px; background: var(--panel); display: flex; align-items: flex-end; }
.feature-wide { grid-column: 1 / -1; min-height: 525px; }
.feature-number { position: absolute; top: 30px; left: 34px; color: #666d74; font-size: .67rem; letter-spacing: .14em; }
.feature-copy { position: relative; z-index: 2; max-width: 510px; }
.feature h3 { margin: 0 0 16px; font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1; letter-spacing: -.045em; }
.feature p:not(.kicker) { margin: 0; color: var(--muted); max-width: 520px; }
.feature .kicker { color: var(--red); margin-bottom: 14px; }
.feature-blue .kicker { color: var(--blue); }
.signal-visual { position: absolute; right: 7%; top: 50%; width: 390px; height: 390px; transform: translateY(-50%); }
.signal-visual i { position: absolute; inset: 50%; border: 1px solid rgba(255,46,56,.24); border-radius: 50%; transform: translate(-50%,-50%); }
.signal-visual i:nth-child(1) { width: 140px; height: 140px; }
.signal-visual i:nth-child(2) { width: 255px; height: 255px; }
.signal-visual i:nth-child(3) { width: 380px; height: 380px; }
.signal-visual b { position: absolute; left: 50%; top: 50%; width: 14px; height: 14px; background: var(--red); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 40px 14px rgba(255,46,56,.55); }
.crosshair { position: absolute; width: 270px; height: 270px; border: 1px solid rgba(255,46,56,.25); border-radius: 50%; right: -35px; top: 40px; }
.crosshair::before, .crosshair::after, .crosshair span::before, .crosshair span::after { content: ""; position: absolute; background: rgba(255,46,56,.48); }
.crosshair::before { width: 1px; height: 310px; left: 50%; top: -20px; }
.crosshair::after { height: 1px; width: 310px; top: 50%; left: -20px; }
.crosshair span { position: absolute; inset: 47%; border-radius: 50%; background: var(--red); box-shadow: 0 0 25px 5px rgba(255,46,56,.35); }
.power-symbol { position: absolute; right: 55px; top: 65px; width: 170px; height: 170px; border: 2px solid rgba(47,143,255,.5); border-top-color: transparent; border-radius: 50%; filter: drop-shadow(0 0 18px rgba(47,143,255,.18)); }
.power-symbol::after { content: ""; position: absolute; width: 2px; height: 83px; left: calc(50% - 1px); top: -24px; background: var(--blue); box-shadow: 0 0 14px rgba(47,143,255,.8); }

.product-showcase { padding: 150px max(28px, calc((100vw - var(--max)) / 2)); background: linear-gradient(180deg, #0b0d0f, #070809); border-block: 1px solid var(--line); }
.product-heading { display: grid; grid-template-columns: 1fr 3fr; column-gap: 6vw; margin-bottom: 70px; }
.product-heading > div > p:last-child { max-width: 720px; color: var(--muted); font-size: 1.12rem; margin: 28px 0 0; }
.product-overline { color: var(--red); margin: 0 0 16px; text-transform: uppercase; font-size: .68rem; font-weight: 800; letter-spacing: .18em; }
.product-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 1px; background: var(--line); }
.gun-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.gun-gallery figure { margin: 0; background: #ececed; position: relative; min-height: 470px; overflow: hidden; }
.gun-gallery img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; mix-blend-mode: multiply; }
.gun-gallery figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; min-height: 58px; padding: 11px 14px; display: flex; align-items: center; justify-content: space-between; color: #101214; background: rgba(255,255,255,.88); backdrop-filter: blur(8px); }
.gun-gallery figcaption b { color: var(--red); font-size: 1.2rem; }
.gun-gallery figcaption span { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.tech-card { background: var(--panel-2); padding: 34px; display: flex; flex-direction: column; }
.tech-title { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 27px; border-bottom: 1px solid var(--line); }
.tech-title span { font-size: 1.55rem; font-weight: 800; letter-spacing: -.03em; }
.tech-title small { color: var(--red); text-transform: uppercase; letter-spacing: .12em; }
.tech-card dl { margin: 0; }
.tech-card dl div { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.tech-card dt { color: #727b83; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.tech-card dd { margin: 0; text-align: right; font-weight: 650; }
.tech-card > p { color: var(--muted); margin: auto 0 0; padding-top: 30px; font-size: .9rem; }

.setup { max-width: var(--max); margin: 0 auto; padding: 0 28px 160px; }
.setup-heading { display: grid; grid-template-columns: 1fr 3fr; column-gap: 6vw; margin-bottom: 70px; }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; min-height: 104px; border-bottom: 1px solid var(--line); color: #bec4ca; transition: color .25s ease, padding .25s ease; }
.steps li:hover { color: #fff; padding-left: 10px; }
.steps li::after { content: "+"; font-size: 1.4rem; color: #555d65; }
.steps b { color: var(--red); font-size: .74rem; letter-spacing: .1em; }
.steps span { font-size: clamp(1.12rem, 2vw, 1.55rem); letter-spacing: -.02em; }

.included { background: var(--panel-2); border-block: 1px solid var(--line); padding: 140px max(28px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; }
.included-copy > p:not(.section-index) { color: var(--muted); max-width: 500px; margin: 30px 0; }
.text-link { font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.kit-list { border-top: 1px solid var(--line); }
.kit-list > div { min-height: 116px; display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); }
.kit-list b { font-size: 1.45rem; color: var(--red); letter-spacing: -.04em; }
.kit-list span { font-size: 1.05rem; font-weight: 650; }
.kit-list small { color: #737c84; text-align: right; }

.games { max-width: var(--max); margin: 0 auto; padding: 150px 28px; display: grid; grid-template-columns: 1.4fr .6fr; gap: 7vw; align-items: end; }
.games > p { color: var(--muted); font-size: 1.12rem; margin: 0 0 12px; }
.game-gallery { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 36px; background: var(--line); }
.game-card { position: relative; min-height: 340px; overflow: hidden; background: var(--panel); }
.game-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,6,7,.96), transparent 62%); }
.game-card img { width: 100%; height: 100%; object-fit: cover; image-rendering: auto; transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .4s ease; filter: saturate(.82) contrast(1.08); }
.game-card:hover img { transform: scale(1.035); filter: saturate(1) contrast(1.08); }
.game-card div { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 22px; }
.game-card span { color: var(--red); text-transform: uppercase; font-size: .65rem; font-weight: 800; letter-spacing: .14em; }
.game-card h3 { margin: 5px 0 0; font-size: 1.35rem; letter-spacing: -.03em; }
.game-tags { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 9px; margin-top: 35px; }
.game-tags span { border: 1px solid var(--line); padding: 12px 16px; color: #8d959d; text-transform: uppercase; font-size: .66rem; font-weight: 700; letter-spacing: .14em; }
.catalog-note { grid-column: 1 / -1; max-width: 820px; font-size: .75rem !important; color: #626a72 !important; margin-top: -30px !important; }

.buy-panel { max-width: var(--max); margin: 0 auto 90px; padding: 82px; min-height: 520px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; background: radial-gradient(circle at 70% 30%, rgba(255,46,56,.17), transparent 38%), linear-gradient(135deg, #151719, #0b0c0e); border: 1px solid rgba(255,255,255,.12); position: relative; overflow: hidden; }
.buy-panel::before { content: "X"; position: absolute; right: 4%; top: -48%; font-size: 36rem; line-height: 1; font-weight: 900; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.055); transform: rotate(-10deg); }
.buy-panel > div { position: relative; z-index: 1; }
.buy-copy > p:last-child { max-width: 570px; margin: 28px 0 0; color: var(--muted); font-size: 1.08rem; }
.price-card { padding: 32px; background: rgba(7,8,9,.78); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(12px); }
.price-card > span { color: #7e8790; text-transform: uppercase; font-size: .67rem; font-weight: 800; letter-spacing: .15em; }
.price { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 10px 0 20px; border-bottom: 1px solid var(--line); }
.price strong { font-size: clamp(3.7rem, 6vw, 5.5rem); line-height: 1; letter-spacing: -.07em; }
.price small { color: var(--red); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.price-card ul { margin: 22px 0 26px; padding: 0; list-style: none; color: #b4bac0; }
.price-card li { padding: 8px 0 8px 21px; position: relative; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .86rem; }
.price-card li::before { content: "•"; position: absolute; left: 0; color: var(--red); }
.price-card .button { width: 100%; }
.shipping-note { display: block; margin-top: 16px; color: #68717a; font-size: .67rem; line-height: 1.45; }

footer { max-width: var(--max); margin: 0 auto; padding: 38px 28px 52px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 34px; border-top: 1px solid var(--line); color: #707981; }
.footer-brand { color: var(--text); }
footer p, footer small { margin: 0; font-size: .72rem; }
.byline { font-size: .72rem; }
.byline strong { color: #b8bec4; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; height: 76px; }
  nav { position: absolute; top: 76px; left: 0; width: 100%; padding: 24px 28px; background: rgba(7,8,9,.97); border-bottom: 1px solid var(--line); display: none; flex-direction: column; gap: 20px; }
  nav.open { display: flex; }
  .header-cta { display: none; }
  .menu-toggle { display: grid; gap: 7px; border: 0; padding: 10px 0 10px 10px; background: transparent; }
  .menu-toggle span { display: block; width: 26px; height: 1px; background: #fff; }
  .hero { min-height: 820px; height: auto; align-items: flex-start; padding-top: 160px; }
  .hero::after { background: linear-gradient(90deg, rgba(7,8,9,.98) 0%, rgba(7,8,9,.83) 54%, rgba(7,8,9,.2) 100%), linear-gradient(0deg, rgba(7,8,9,.95), transparent 48%); }
  .hero-copy { width: min(680px, 85vw); }
  .hero-specs { left: 28px; right: auto; bottom: 40px; }
  .scroll-cue { display: none; }
  .statement, .product-heading, .setup-heading { grid-template-columns: 1fr; }
  .statement > p:last-child { grid-column: 1; }
  .product-layout { grid-template-columns: 1fr; }
  .tech-card { min-height: 430px; }
  .included { grid-template-columns: 1fr; gap: 70px; }
  .buy-panel { margin-inline: 28px; padding: 58px; grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 680px) {
  h1 { font-size: clamp(3.65rem, 18vw, 5rem); }
  .hero { min-height: 780px; padding-inline: 20px; padding-top: 128px; }
  .hero-media img { object-position: 61% center; opacity: .68; }
  .hero::after { background: linear-gradient(0deg, rgba(7,8,9,.99) 0%, rgba(7,8,9,.52) 72%, rgba(7,8,9,.68) 100%), linear-gradient(90deg, rgba(7,8,9,.8), transparent); }
  .hero-copy { width: 100%; }
  .hero-lead { margin-top: 28px; font-size: 1rem; }
  .button { width: 100%; }
  .trust-line { text-align: center; }
  .hero-specs { display: none; }
  .statement { padding: 105px 20px 75px; }
  .statement h2, .product-showcase h2, .setup h2, .included h2, .games h2, .buy-panel h2 { font-size: 2.65rem; }
  .product-showcase { padding: 100px 20px; }
  .product-heading { margin-bottom: 45px; }
  .gun-gallery { grid-template-columns: 1fr; }
  .gun-gallery figure { min-height: 400px; }
  .tech-card { padding: 26px; min-height: 450px; }
  .feature-grid { padding: 0 20px; grid-template-columns: 1fr; margin-bottom: 110px; }
  .feature-wide { grid-column: auto; }
  .feature { min-height: 430px; padding: 26px; }
  .signal-visual { width: 280px; height: 280px; right: -80px; top: 38%; }
  .signal-visual i:nth-child(3) { width: 275px; height: 275px; }
  .signal-visual i:nth-child(2) { width: 190px; height: 190px; }
  .signal-visual i:nth-child(1) { width: 105px; height: 105px; }
  .setup { padding: 0 20px 110px; }
  .setup-heading { margin-bottom: 45px; }
  .steps li { grid-template-columns: 54px 1fr auto; }
  .steps span { font-size: 1rem; }
  .included { padding: 100px 20px; }
  .kit-list > div { grid-template-columns: 54px 1fr; min-height: 105px; }
  .kit-list small { grid-column: 2; text-align: left; margin-top: -24px; }
  .games { padding: 105px 20px; grid-template-columns: 1fr; }
  .game-gallery { grid-column: 1; grid-template-columns: 1fr; }
  .game-card { min-height: 310px; }
  .game-tags { grid-column: 1; margin-top: 5px; }
  .catalog-note { grid-column: 1; margin-top: -35px !important; }
  .buy-panel { min-height: 620px; margin: 0 20px 65px; padding: 38px 28px; }
  .price-card { padding: 25px; width: 100%; }
  footer { margin-inline: 20px; padding-inline: 0; grid-template-columns: 1fr; gap: 14px; }
  footer > small { margin-top: 15px; }
}

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