:root {
  --bg: #050505;
  --panel: #080808;
  --panel-2: #0d0d0d;
  --ink: #f5f5f5;
  --muted: #858585;
  --line: #222222;
  --line-strong: #444444;
  --red: #dc143c;
  --red-dark: #8b0000;
  --brass: #ffd700;
  --green: #ffd700;
  --blue: #6f95bd;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --sans: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --display: "Bebas Neue", Impact, sans-serif;
}

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

html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--bg);
}

.skip:focus {
  left: 8px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 800;
  text-transform: lowercase;
}

.brand-mark {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border: 2px solid var(--ink);
  background: var(--panel-2);
  transform: rotate(-7deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 6px;
  width: 5px;
  height: 17px;
  background: var(--red);
  box-shadow: 0 0 12px rgba(220, 20, 60, 0.7);
}

.brand-mark i {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--bg);
}

.brand-mark i:nth-child(1) {
  left: 6px;
  top: 6px;
}

.brand-mark i:nth-child(2) {
  right: 6px;
  top: 6px;
}

.brand-mark i:nth-child(3) {
  left: 11px;
  bottom: 5px;
  background: var(--brass);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}

.brand img {
  display: block;
  border: 1px solid var(--line-strong);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 9px 12px;
  border: 1px solid var(--red);
  color: var(--ink) !important;
  box-shadow: 5px 5px 0 var(--red-dark);
  transform: rotate(0.5deg);
}

main {
  width: 100%;
}

section {
  scroll-margin-top: 92px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(42px, 5vw, 82px);
  width: min(100% - 64px, 1320px);
  min-height: min(860px, calc(100vh - 120px));
  margin: 0 auto;
  padding: 54px 0 48px;
  align-items: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 1px;
  background: #1b1b1b;
}

.hero::before {
  left: 3vw;
  top: 18%;
  transform: rotate(-7deg);
}

.hero::after {
  right: 5vw;
  bottom: 12%;
  transform: rotate(5deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-index {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow {
  max-width: 470px;
  margin-bottom: 22px;
}

.eyebrow::before,
.section-index::before {
  content: "//";
  margin-right: 9px;
  color: var(--red);
}

.title {
  margin-bottom: 26px;
  font-family: var(--display);
  font-size: clamp(76px, 7vw, 112px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 #191919;
  transform: rotate(-0.8deg);
}

.title span {
  display: block;
}

.title span:nth-child(2) {
  margin-left: 9px;
}

.title span:nth-child(3) {
  margin-left: -4px;
}

.title-hit {
  color: var(--red);
  text-shadow: 5px 5px 0 #3b0812, 0 0 24px rgba(220, 20, 60, 0.28);
}

.lede {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 8px 0 20px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--red);
  border-radius: 0;
  background: var(--red);
  color: #fff8ea;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 var(--red-dark);
  clip-path: polygon(0 0, 96% 0, 100% 22%, 100% 100%, 4% 100%, 0 78%);
  transform: rotate(-0.4deg);
}

.btn:hover {
  background: #f15b3d;
  transform: translate(1px, 1px);
  box-shadow: 4px 4px 0 var(--red-dark);
}

.btn span {
  margin-left: 8px;
}

.btn-disabled,
.btn-disabled:hover {
  border-color: var(--line-strong);
  background: var(--panel-2);
  color: var(--muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: 4px 4px 0 #050605;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  max-width: 560px;
  color: #7f887f;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.trust span::before {
  content: "+";
  margin-right: 5px;
  color: var(--green);
}

.range-board {
  position: relative;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: rotate(0.35deg);
}

.range-board::before,
.range-board::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 32px;
  height: 4px;
  background: var(--red);
  box-shadow: 0 0 14px rgba(220, 20, 60, 0.65);
}

.range-board::before {
  left: -14px;
  top: 46px;
}

.range-board::after {
  right: -10px;
  bottom: 38px;
}

.range-head,
.range-foot {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  color: #555;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.range-head {
  border-bottom: 0;
}

.range-head span:first-child {
  color: var(--ink);
}

.range-head span:first-child i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px #35060f, 0 0 15px var(--red);
}

.range-stage {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(90px, 1fr) 220px;
  min-height: 390px;
  align-items: center;
  padding: 34px 18px;
  overflow: hidden;
}

.range-stage::after {
  content: "";
  position: absolute;
  z-index: 20;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
}

.chamber-unit {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 0;
  transform: rotate(-3deg) scale(1.16);
}

.unit-label,
.unit-state {
  position: absolute;
  left: 0;
  color: #3f3f3f;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.unit-label {
  top: 0;
}

.unit-state {
  bottom: 0;
  color: var(--brass);
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.45);
}

.cylinder-core {
  --chamber-radius: 42px;
  position: relative;
  width: 124px;
  height: 124px;
  border: 9px solid #282828;
  border-radius: 50%;
  background: #171717;
  box-shadow: 0 0 0 2px #050505, 0 0 0 4px #3a3a3a, 0 0 44px rgba(255, 255, 255, 0.04);
}

.cylinder-core::before,
.cylinder-core::after {
  display: none;
}

.chamber {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  border: 3px solid #393939;
  border-radius: 50%;
  background: #070908;
  box-shadow: inset 0 0 0 2px #111;
}

.chamber-1 { transform: translate(-50%, -50%) rotate(30deg) translateY(calc(-1 * var(--chamber-radius))); }
.chamber-2 { transform: translate(-50%, -50%) rotate(90deg) translateY(calc(-1 * var(--chamber-radius))); }
.chamber-3 { transform: translate(-50%, -50%) rotate(150deg) translateY(calc(-1 * var(--chamber-radius))); }
.chamber-4 { transform: translate(-50%, -50%) rotate(210deg) translateY(calc(-1 * var(--chamber-radius))); }
.chamber-5 { transform: translate(-50%, -50%) rotate(270deg) translateY(calc(-1 * var(--chamber-radius))); }
.chamber-6 { transform: translate(-50%, -50%) rotate(330deg) translateY(calc(-1 * var(--chamber-radius))); }

.chamber.loaded {
  border-color: #fff5a0;
  background: var(--brass);
  box-shadow: inset 0 0 0 4px #b8860b, 0 0 10px var(--brass), 0 0 22px rgba(255, 215, 0, 0.45);
}

.cylinder-core b {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 4px solid #606860;
  border-radius: 50%;
  background: #111512;
  transform: translate(-50%, -50%);
}

.shot-lane {
  position: relative;
  height: 92px;
}

.lane-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  border-top: 1px dashed #5a4e10;
}

.shot-lane::before {
  content: "";
  position: absolute;
  z-index: 5;
  left: -10px;
  top: 50%;
  width: 22px;
  height: 22px;
  background: #fff;
  box-shadow: 0 0 30px var(--brass), 0 0 70px var(--brass);
  opacity: 0;
  transform: translateY(-50%) rotate(45deg);
}

.projectile {
  position: absolute;
  z-index: 6;
  left: -42px;
  top: 50%;
  display: block;
  width: 48px;
  height: 17px;
  background: var(--brass);
  clip-path: polygon(0 0, 68% 0, 100% 50%, 68% 100%, 0 100%);
  box-shadow: 0 0 12px var(--brass), 0 0 30px rgba(255, 215, 0, 0.55);
  transform: translateY(-50%);
}

.projectile i,
.projectile b {
  position: absolute;
  top: 0;
  display: block;
  height: 17px;
}

.projectile i {
  left: 5px;
  width: 3px;
  background: #6d4b1d;
}

.projectile b {
  right: 12px;
  width: 2px;
  background: #f1cd77;
}

.impact {
  position: absolute;
  z-index: 8;
  right: -7px;
  top: 50%;
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: translateY(-50%);
}

.impact i {
  position: absolute;
  left: 8px;
  top: -7px;
  width: 2px;
  height: 31px;
  background: #fff;
  box-shadow: 0 0 10px var(--brass);
}

.impact i:nth-child(2) { transform: rotate(45deg); }
.impact i:nth-child(3) { transform: rotate(90deg); }
.impact i:nth-child(4) { transform: rotate(135deg); }

.browser-target {
  position: relative;
  min-height: 218px;
  border: 1px solid #333;
  background: #080808;
  box-shadow: 10px 11px 0 #000;
  clip-path: polygon(2% 0, 97% 3%, 100% 94%, 94% 100%, 3% 97%, 0 8%);
  transform: rotate(1.2deg);
  transform-origin: left center;
}

.browser-target::after {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid var(--brass);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.75);
  transform: translateY(-50%);
}

.target-bar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
  color: #646d65;
  font-family: var(--mono);
  font-size: 8px;
}

.target-bar span:last-child {
  text-align: center;
}

.shot-result {
  display: flex;
  min-height: 182px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.shot-result small {
  color: #555;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.shot-result strong {
  margin: 7px 0 0;
  color: var(--red);
  font-family: var(--display);
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 0 18px rgba(220, 20, 60, 0.85), 0 0 54px rgba(139, 0, 0, 0.65);
}

.shot-result > span {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 800;
}

.shot-result p {
  margin-top: 11px;
  color: #737c73;
  font-size: 10px;
}

.range-foot {
  grid-template-columns: auto 1fr auto;
  border-top: 0;
}

.fire-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.fire-trigger:hover {
  color: var(--brass);
}

.fire-trigger:disabled {
  color: #596159;
  cursor: wait;
}

.shot-status {
  color: var(--brass);
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.35);
}

.range-board.is-firing .cylinder-core {
  animation: chamber-index 2800ms cubic-bezier(0.05, 0.9, 0.15, 1) both;
}

.range-board.is-firing .range-stage {
  animation: heartbeat-stage 850ms 2850ms ease-in-out both, range-kick 560ms 3700ms cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.range-board.is-firing .range-stage::after {
  animation: stage-flash 180ms 3700ms ease-out forwards;
}

.range-board.is-firing .shot-lane::before {
  animation: muzzle-flash 420ms 3700ms ease-out both;
}

.range-board.is-firing .projectile {
  animation: bullet-flight 620ms 3740ms cubic-bezier(0.12, 0.8, 0.2, 1) both;
}

.range-board.is-firing .impact {
  animation: impact-flash 420ms 4260ms linear both;
}

.range-board.is-firing .browser-target {
  animation: target-hit 520ms 4260ms cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.range-board.is-firing .shot-result {
  animation: result-in 460ms 4300ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes chamber-index {
  0% { transform: rotate(0); filter: blur(0); }
  12% { filter: blur(2px); }
  82% { filter: blur(2px); }
  100% { transform: rotate(2520deg); filter: blur(0); }
}

@keyframes heartbeat-stage {
  0%, 100% { box-shadow: inset 0 0 0 rgba(220, 20, 60, 0); }
  50% { box-shadow: inset 0 0 70px rgba(220, 20, 60, 0.2); }
}

@keyframes stage-flash {
  0% { opacity: 0.86; }
  100% { opacity: 0; }
}

@keyframes range-kick {
  0% { transform: translateX(0); }
  12% { transform: translate(-12px, -5px) rotate(-0.5deg); }
  28% { transform: translate(9px, 4px) rotate(0.4deg); }
  45% { transform: translate(-6px, 2px); }
  68% { transform: translate(3px, -2px); }
  100% { transform: translateX(0); }
}

@keyframes muzzle-flash {
  0% { opacity: 0; transform: translateY(-50%) rotate(45deg) scale(0.2); }
  35% { opacity: 1; transform: translateY(-50%) rotate(45deg) scale(1); }
  100% { opacity: 0; transform: translateY(-50%) rotate(45deg) scale(1.5); }
}

@keyframes bullet-flight {
  0% { left: -42px; opacity: 1; }
  85% { opacity: 1; }
  100% { left: calc(100% - 10px); opacity: 0; }
}

@keyframes impact-flash {
  0% { opacity: 0; transform: translateY(-50%) scale(0.2); }
  35% { opacity: 1; transform: translateY(-50%) scale(1); }
  100% { opacity: 0; transform: translateY(-50%) scale(1.7); }
}

@keyframes target-hit {
  0% { transform: translateX(0) rotate(1.2deg); }
  18% { transform: translate(-10px, -4px) rotate(-1deg); }
  36% { transform: translate(8px, 4px) rotate(2deg); }
  58% { transform: translate(-5px, 1px) rotate(0.5deg); }
  100% { transform: translateX(0) rotate(1.2deg); }
}

@keyframes result-in {
  0% { opacity: 0; transform: scale(0.55) rotate(-3deg); }
  70% { opacity: 1; transform: scale(1.08) rotate(1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

.proof-rail {
  display: grid;
  grid-template-columns: 2fr repeat(2, minmax(0, 1fr));
  width: min(100% - 64px, 1160px);
  margin: 0 auto 112px;
  border-top: 2px solid #333;
  border-bottom: 1px dashed #333;
  list-style: none;
  transform: rotate(-0.2deg);
}

.proof-rail li {
  min-width: 0;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.proof-rail li:first-child {
  padding-left: 0;
}

.proof-rail li:last-child {
  border-right: 0;
}

.proof-rail strong {
  display: block;
  font-family: var(--display);
  font-size: 39px;
  font-weight: 400;
  line-height: 1;
}

.proof-rail span {
  display: block;
  margin-top: 6px;
  color: #777f77;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.proof-rail .proof-principle strong {
  max-width: 390px;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.15;
}

.proof-rail .proof-principle span {
  color: var(--red);
}

.moderation {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  column-gap: 58px;
  width: min(100% - 64px, 1160px);
  margin: 0 auto 72px;
  align-items: start;
}

.moderation > .section-index {
  grid-column: 1;
  margin-top: 12px;
}

.moderation-body {
  grid-column: 2;
}

.moderation-title {
  max-width: 820px;
  font-family: var(--display);
  font-size: clamp(64px, 7.2vw, 98px);
  font-weight: 400;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 #171717;
  transform: rotate(-0.45deg);
}

.moderation-title span {
  display: block;
}

.moderation-title span:last-child {
  margin-left: 28px;
  color: var(--red);
  text-shadow: 5px 5px 0 #3b0812, 0 0 24px rgba(220, 20, 60, 0.28);
}

.moderation-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  max-width: 820px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px dashed #333;
  color: var(--muted);
  font-size: 14px;
}

.moderation-copy strong {
  color: var(--brass);
}

.how,
#features,
#pricing,
.faq,
.install {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  column-gap: 58px;
  width: min(100% - 64px, 1160px);
  margin: 0 auto 112px;
  align-items: start;
}

.how > .section-index,
#features > .section-index,
#pricing > .section-index,
.faq > .section-index,
.install > .section-index {
  grid-column: 1;
  grid-row: 1 / span 3;
  margin-top: 12px;
}

.how > .section-title,
#features > .section-title,
#pricing > .section-title,
.faq > .section-title,
.install > .section-title,
#pricing > .section-lede,
#pricing > .trial-strip,
.install > .section-lede,
.how > .steps,
#features > .feature-grid,
#pricing > .pricing-grid,
.faq > .faq-list,
.install > .cta {
  grid-column: 2;
}

.section-title {
  max-width: 830px;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(52px, 5.8vw, 80px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 #171717;
  transform: rotate(-0.35deg);
}

.section-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 16px;
}

.rule {
  width: min(100% - 64px, 1160px);
  height: 0;
  margin: 0 auto 88px;
  border: 0;
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
  border-top: 2px solid #333;
  list-style: none;
}

.step {
  position: relative;
  min-height: 250px;
  padding: 30px 28px 28px 0;
  border-right: 1px dashed #333;
}

.step + .step {
  padding-left: 28px;
}

.step:last-child {
  border-right: 0;
}

.step-num {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 42px;
  border: 0;
  color: #333;
  font-family: var(--display);
  font-size: 46px;
  line-height: 1;
}

.step:nth-child(2) .step-num {
  background: transparent;
  color: var(--red);
  text-shadow: 0 0 18px rgba(220, 20, 60, 0.35);
}

.step:nth-child(1) { transform: rotate(-0.5deg) translateY(3px); }
.step:nth-child(2) { transform: rotate(0.45deg) translateY(-5px); }
.step:nth-child(3) { transform: rotate(-0.25deg) translateY(4px); }

.step-title {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.step p,
.feature p {
  color: var(--muted);
  font-size: 14px;
}

.feature-grid {
  margin-top: 34px;
  border-top: 2px solid #333;
  list-style: none;
}

.feature {
  display: grid;
  grid-template-columns: 42px minmax(190px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  min-height: 104px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px dashed #2d2d2d;
}

.feature:nth-child(odd) {
  transform: translateX(-8px) rotate(-0.2deg);
}

.feature:nth-child(even) {
  transform: translateX(12px) rotate(0.18deg);
}

.feature > span {
  color: #3a3a3a;
  font-family: var(--display);
  font-size: 34px;
}

.feature-title {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
  border: 1px solid #333;
  transform: rotate(0.2deg);
}

.trial-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 15px 18px;
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid #3c3321;
  background: #11100d;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  transform: rotate(-0.15deg);
}

.trial-strip span {
  color: var(--brass);
  font-weight: 700;
}

.trial-strip a {
  color: var(--paper);
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
}

.price-plan {
  min-height: 390px;
  padding: 34px;
  background: #080808;
}

.price-plan + .price-plan {
  border-left: 1px solid var(--line-strong);
}

.featured-plan {
  position: relative;
  background: #140308;
  clip-path: polygon(2% 0, 100% 2%, 98% 100%, 0 97%);
  transform: rotate(-0.5deg) scale(1.015);
}

.featured-plan::before {
  content: "FULL LOADOUT";
  position: absolute;
  right: 14px;
  top: -12px;
  padding: 4px 8px;
  background: var(--red);
  color: #fff;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
}

.temporary-plan {
  position: relative;
  background: #0d0d0b;
}

.temporary-plan::before {
  content: "TEMPORARY OPTION";
  position: absolute;
  right: 18px;
  top: 16px;
  padding: 5px 8px;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
}

.plan-label {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-price {
  margin: 12px 0 20px;
  font-family: var(--display);
  font-size: 66px;
  font-weight: 400;
  line-height: 1;
}

.plan-price small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.price-plan h3 {
  max-width: 360px;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.4;
}

.price-plan ul {
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.price-plan li + li {
  margin-top: 7px;
}

.story {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  column-gap: 58px;
  width: 100%;
  margin: 0 0 88px;
  padding: 96px max(32px, calc((100vw - 1160px) / 2));
  border-top: 1px solid #3b0712;
  border-bottom: 1px solid #3b0712;
  background: #0d0305;
}

.story > .section-index {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin-top: 12px;
}

.story > .section-title,
.story > .prose {
  grid-column: 2;
}

.prose {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
}

.prose p + p {
  margin-top: 18px;
}

.prose strong {
  color: var(--ink);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 52px 23px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 750;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:hover {
  color: var(--brass);
}

.faq-list summary .toggle {
  position: absolute;
  right: 4px;
  top: 18px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 21px;
}

.faq-list details[open] summary .toggle::before {
  content: "\2212";
  position: absolute;
  background: var(--bg);
}

.faq-list .a {
  max-width: 760px;
  padding: 0 52px 24px 0;
  color: var(--muted);
}

.faq-list .a a,
.legal-page a {
  color: var(--brass);
  text-decoration: underline;
}

.install {
  position: relative;
  padding: 54px;
  border: 1px solid #333;
  background: var(--panel);
  box-shadow: 12px 12px 0 #000;
  clip-path: polygon(0 3%, 97% 0, 100% 94%, 94% 100%, 2% 98%);
  transform: rotate(-0.25deg);
}

.install::after {
  content: "";
  position: absolute;
  right: 26px;
  top: -13px;
  width: 64px;
  height: 6px;
  background: var(--red);
}

.legal-page {
  width: min(100% - 48px, 780px);
  min-height: calc(100vh - 170px);
  margin: 0 auto;
  padding: 72px 0 100px;
}

.legal-page > h1 {
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1;
  text-transform: uppercase;
}

.legal-date {
  margin: 14px 0 50px;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.legal-page section {
  margin-bottom: 42px;
}

.legal-page h2 {
  margin-bottom: 10px;
  font-size: 21px;
  text-transform: uppercase;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page ul,
.legal-page ol {
  padding-left: 22px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 24px;
  width: min(100% - 64px, 1160px);
  margin: 0 auto;
  padding: 36px 0 52px;
  border-top: 1px solid var(--line);
  color: #747c74;
  font-size: 11px;
}

.footer-brand strong {
  color: var(--ink);
}

.footer-links,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--brass);
}

.footer-meta {
  grid-column: 1 / -1;
  color: var(--green);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.legal .footer {
  display: block;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(280px, 0.75fr) minmax(450px, 1.25fr);
    gap: 34px;
  }

  .title {
    font-size: clamp(54px, 7vw, 74px);
  }

  .range-stage {
    grid-template-columns: 130px minmax(65px, 1fr) 190px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .chamber-unit {
    transform: scale(0.84);
  }
}

@media (max-width: 760px) {
  .topbar {
    min-height: 60px;
    padding: 0 15px;
  }

  .brand {
    gap: 8px;
    font-size: 13px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .nav {
    gap: 9px;
    font-size: 9px;
  }

  .nav-cta {
    padding: 7px 8px;
    box-shadow: 3px 3px 0 var(--red-dark);
  }

  .legal .brand span:not(.brand-mark) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100% - 28px, 1320px);
    min-height: 0;
    padding: 42px 0 48px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 9px;
  }

  .title {
    margin-bottom: 20px;
    font-size: clamp(62px, 18vw, 78px);
  }

  .lede {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
  }

  .btn {
    width: 100%;
  }

  .trust {
    gap: 5px 13px;
  }

  .range-board {
    box-shadow: 7px 7px 0 #040504;
  }

  .range-head,
  .range-foot {
    padding: 0 10px;
  }

  .range-head {
    grid-template-columns: 1fr auto;
  }

  .range-head span:nth-child(2) {
    display: none;
  }

  .range-stage {
    grid-template-columns: 86px minmax(48px, 1fr) 126px;
    min-height: 232px;
    padding: 16px 10px;
  }

  .chamber-unit {
    min-height: 190px;
    transform: none;
  }

  .cylinder-core {
    --chamber-radius: 25px;
    width: 76px;
    height: 76px;
    border-width: 6px;
    box-shadow: 0 0 0 2px #090b0a, 0 0 0 3px var(--line-strong);
  }

  .chamber {
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    width: 14px;
    height: 14px;
    border-width: 2px;
  }

  .cylinder-core b {
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    border-width: 3px;
  }

  .unit-label,
  .unit-state {
    font-size: 6px;
  }

  .shot-lane {
    height: 70px;
  }

  .lane-line {
    top: 50%;
  }

  .shot-lane::before {
    top: 50%;
    width: 18px;
    height: 18px;
  }

  .projectile {
    left: -24px;
    top: 50%;
    width: 32px;
    height: 13px;
  }

  .projectile i,
  .projectile b {
    height: 13px;
  }

  .projectile b {
    right: 8px;
  }

  .impact {
    top: 50%;
  }

  .browser-target {
    min-height: 172px;
    box-shadow: 4px 4px 0 #050605;
  }

  .target-bar {
    grid-template-columns: 1fr;
    padding: 0 6px;
  }

  .target-bar span:first-child {
    display: none;
  }

  .shot-result {
    min-height: 137px;
  }

  .shot-result strong {
    font-size: 42px;
  }

  .shot-result > span {
    font-size: 16px;
  }

  .shot-result p {
    max-width: 100px;
    font-size: 8px;
  }

  .range-foot {
    grid-template-columns: auto 1fr;
    gap: 10px;
    min-height: 58px;
  }

  .range-foot > span {
    display: none;
  }

  .shot-status {
    text-align: right;
  }

  .range-board::after {
    bottom: -4px;
  }

  @keyframes bullet-flight {
    0% { left: -24px; opacity: 1; }
    85% { opacity: 1; }
    100% { left: calc(100% - 6px); opacity: 0; }
  }

  .proof-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 28px, 1160px);
    margin-bottom: 78px;
  }

  .proof-rail .proof-principle {
    grid-column: 1 / -1;
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-rail li:nth-child(3) {
    border-right: 0;
  }

  .proof-rail strong {
    font-size: 26px;
  }

  .moderation {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1160px);
    margin-bottom: 54px;
  }

  .moderation > .section-index,
  .moderation-body {
    grid-column: 1;
  }

  .moderation > .section-index {
    margin: 0 0 16px;
  }

  .moderation-title {
    font-size: clamp(58px, 18vw, 78px);
  }

  .moderation-title span:last-child {
    margin-left: 10px;
  }

  .moderation-copy {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
    padding-top: 20px;
  }

  .how,
  #features,
  #pricing,
  .faq,
  .install,
  .story {
    grid-template-columns: 1fr;
    column-gap: 0;
    width: min(100% - 28px, 1160px);
    margin-bottom: 78px;
  }

  .how > .section-index,
  #features > .section-index,
  #pricing > .section-index,
  .faq > .section-index,
  .install > .section-index,
  .story > .section-index,
  .how > .section-title,
  #features > .section-title,
  #pricing > .section-title,
  .faq > .section-title,
  .install > .section-title,
  .story > .section-title,
  #pricing > .section-lede,
  #pricing > .trial-strip,
  .install > .section-lede,
  .story > .prose,
  .how > .steps,
  #features > .feature-grid,
  #pricing > .pricing-grid,
  .faq > .faq-list,
  .install > .cta {
    grid-column: 1;
    grid-row: auto;
  }

  .how > .section-index,
  #features > .section-index,
  #pricing > .section-index,
  .faq > .section-index,
  .install > .section-index,
  .story > .section-index {
    margin: 0 0 16px;
  }

  .section-title {
    font-size: clamp(48px, 14vw, 62px);
  }

  .section-lede {
    font-size: 15px;
  }

  .rule {
    width: min(100% - 28px, 1160px);
    margin-bottom: 64px;
  }

  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .step,
  .step + .step {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-num {
    margin-bottom: 22px;
  }

  .feature {
    grid-template-columns: 32px 1fr;
    gap: 8px 10px;
    padding: 22px 0;
  }

  .feature p {
    grid-column: 2;
  }

  .price-plan {
    min-height: 0;
    padding: 30px 24px;
  }

  .price-plan + .price-plan {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .trial-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .story {
    width: 100%;
    padding: 64px 14px;
  }

  .install {
    width: min(100% - 28px, 1160px);
    padding: 38px 22px;
  }

  .faq-list summary {
    font-size: 14px;
  }

  .legal-page {
    width: min(100% - 28px, 780px);
    padding-top: 54px;
  }

  .footer {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1160px);
  }

  .footer-meta {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .range-board.is-firing .cylinder-core,
  .range-board.is-firing .range-stage,
  .range-board.is-firing .shot-lane::before,
  .range-board.is-firing .projectile,
  .range-board.is-firing .impact,
  .range-board.is-firing .browser-target,
  .range-board.is-firing .shot-result {
    animation: none;
  }
}
