:root {
  color-scheme: dark;
  --black: #050505;
  --black-soft: #090909;
  --graphite: #111111;
  --graphite-raised: #171717;
  --line: #292929;
  --line-strong: #3a3a3a;
  --white: #f1f3f2;
  --steel: #a2aaa8;
  --steel-dark: #626b69;
  --signal-red: #d42d2a;
  --signal-red-bright: #f03b36;
  --signal-red-dark: #681817;
  --success: #75c28c;
  --preorder: #d4a44e;
  --verified: #71a7ca;
  --danger: #e35f59;
  --display: "Avenir Next Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 45, 42, 0.08), transparent 30rem),
    var(--black);
  color: var(--white);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--signal-red-bright);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--black);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.concept-strip {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  height: 28px;
  border-bottom: 1px solid #381313;
  background: #100606;
  color: #a98382;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.concept-strip strong {
  color: #f16a65;
  font-weight: 600;
}

.sniper-shell {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  min-height: 100vh;
  padding-top: 28px;
}

.side-rail {
  position: sticky;
  top: 28px;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 28px);
  border-right: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #080808;
  background-size: 48px 48px;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 92px;
  padding: 20px 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.wordmark-sight {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--signal-red);
}

.wordmark-sight svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.wordmark-copy {
  display: grid;
}

.wordmark-copy small,
.pilot-identity small,
.rail-signal small,
.system-readout small {
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
}

.wordmark-copy strong {
  position: relative;
  color: var(--white);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.wordmark-copy strong::after {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 39%;
  width: 2px;
  background: var(--signal-red);
  content: "";
}

.desktop-navigation {
  display: grid;
  padding-top: 34px;
}

.navigation-item {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: var(--steel);
  text-align: left;
  cursor: pointer;
  transition: color 140ms ease, background 140ms ease;
}

.navigation-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  transform: scaleY(0);
  background: var(--signal-red-bright);
  content: "";
  transition: transform 170ms ease;
}

.navigation-item:hover,
.navigation-item.is-active {
  background: linear-gradient(90deg, rgba(212, 45, 42, 0.12), transparent 84%);
  color: var(--white);
}

.navigation-item.is-active::before {
  transform: scaleY(1);
}

.navigation-index {
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 9px;
}

.navigation-item.is-active .navigation-index {
  color: var(--signal-red-bright);
}

.rail-signal {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: auto 22px 16px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rail-signal div,
.pilot-identity > span:nth-child(2),
.system-readout > span:nth-child(2) {
  display: grid;
  gap: 3px;
}

.rail-signal strong,
.pilot-identity strong,
.system-readout strong {
  font-size: 12px;
  font-weight: 500;
}

.signal-light,
.readout-pulse {
  width: 7px;
  height: 7px;
  background: var(--preorder);
  box-shadow: 0 0 12px rgba(212, 164, 78, 0.5);
}

.pilot-identity {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 0 22px 24px;
}

.identity-avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  background: #131313;
  color: var(--white);
  font-family: var(--mono);
  font-size: 10px;
}

.identity-lock {
  color: var(--success);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.sniper-stage {
  min-width: 0;
}

.stage-header {
  position: sticky;
  z-index: 20;
  top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
  padding: 0 40px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
}

.system-readout,
.header-actions {
  display: flex;
  align-items: center;
}

.system-readout {
  gap: 10px;
}

.readout-pulse {
  background: var(--success);
  box-shadow: 0 0 14px rgba(117, 194, 140, 0.45);
}

.header-actions {
  gap: 8px;
}

.fixture-label {
  margin-right: 8px;
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.icon-action,
.account-action {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  border: 1px solid var(--line);
  background: var(--black-soft);
  cursor: pointer;
}

.icon-action {
  width: 36px;
}

.account-action {
  gap: 18px;
  padding: 0 11px 0 14px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.icon-action svg,
.account-action svg,
.primary-action svg,
.contract-action svg,
.device-icon svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.5;
}

.app-view {
  min-height: calc(100vh - 93px);
  animation: view-enter 320ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.app-view[hidden] {
  display: none;
}

.hero-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(420px, 1.12fr);
  min-height: 500px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 28px 54px 5.5vw;
}

.technical-kicker {
  margin: 0 0 20px;
  color: var(--signal-red-bright);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.hero-copy h1,
.section-heading h1 {
  display: flex;
  align-items: baseline;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(66px, 7.2vw, 116px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.76;
  text-transform: uppercase;
}

.hero-copy h1 span,
.section-heading h1 span {
  color: var(--white);
  font-weight: 500;
}

.hero-copy h1 strong,
.section-heading h1 strong {
  color: var(--signal-red);
  font-weight: 700;
}

.terminal-cursor {
  width: 0.11em;
  height: 0.72em;
  margin-left: 0.13em;
  background: var(--signal-red-bright);
  animation: cursor-blink 1.05s steps(1, end) infinite;
}

.hero-copy > p:not(.technical-kicker),
.section-heading > div > p:last-child {
  max-width: 600px;
  margin: 36px 0 0;
  color: var(--steel);
  font-size: 16px;
  line-height: 1.7;
}

.hero-readouts {
  display: flex;
  gap: 0;
  margin-top: 42px;
}

.hero-readouts span {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.hero-readouts span:first-child {
  padding-left: 0;
}

.hero-readouts span:last-child {
  border-right: 0;
}

.hero-readouts strong {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  background:
    linear-gradient(90deg, var(--black) 0, transparent 22%),
    radial-gradient(circle at 58% 49%, rgba(212, 45, 42, 0.09), transparent 50%);
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: rgba(212, 45, 42, 0.48);
  content: "";
}

.hero-art::before {
  top: 40px;
  right: 42px;
  border-top: 1px solid;
  border-right: 1px solid;
}

.hero-art::after {
  bottom: 40px;
  left: 26px;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.hero-art svg {
  width: min(96%, 620px);
  overflow: visible;
}

.hero-grid-line {
  fill: none;
  stroke: #ffffff;
  stroke-opacity: 0.035;
  stroke-width: 1;
}

.hero-figure-fill {
  fill: #151515;
  stroke: #5e1b1a;
  stroke-width: 1.4;
}

.hero-figure-line,
.hero-blade,
.hero-energy,
.hero-reticle,
.hero-accent-line {
  fill: none;
  stroke: url(#hero-edge);
  stroke-width: 1.2;
}

.hero-blade {
  fill: #171111;
}

.hero-energy {
  stroke-width: 2;
}

.hero-reticle {
  stroke: #d42d2a;
  stroke-opacity: 0.44;
}

.hero-accent-line {
  stroke: #d42d2a;
  stroke-opacity: 0.3;
}

.art-caption {
  position: absolute;
  right: 40px;
  bottom: 26px;
  color: #633231;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.15em;
}

.shot-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 5.5vw;
  border-bottom: 1px solid var(--line);
}

.filter-group {
  display: flex;
  gap: 4px;
}

.filter-control,
.evidence-selector button {
  border: 1px solid transparent;
  background: transparent;
  color: var(--steel-dark);
  cursor: pointer;
}

.filter-control {
  padding: 9px 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.filter-control span {
  margin-left: 8px;
  color: #525252;
}

.filter-control:hover,
.filter-control.is-active {
  border-color: var(--line);
  background: var(--graphite);
  color: var(--white);
}

.filter-control.is-active span {
  color: var(--signal-red-bright);
}

.shot-toolbar > p {
  margin: 0;
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.shot-list {
  padding: 0 5.5vw 100px;
}

.shot-entry {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(380px, 1fr) 190px;
  gap: 30px;
  align-items: center;
  min-height: 238px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.shot-entry::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5.5vw;
  width: 2px;
  transform: scaleY(0.3);
  background: var(--signal-red);
  opacity: 0;
  content: "";
  transition: transform 200ms ease, opacity 200ms ease;
}

.shot-entry:hover {
  background: linear-gradient(90deg, rgba(212, 45, 42, 0.045), transparent 62%);
}

.shot-entry:hover::before {
  transform: scaleY(1);
  opacity: 1;
}

.shot-entry[hidden] {
  display: none;
}

.product-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 132px;
  height: 174px;
  border: 1px solid var(--line-strong);
  background: #0d0d0d;
  box-shadow: 15px 15px 0 rgba(255, 255, 255, 0.018);
}

.product-art::before {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  content: "";
}

.product-art svg {
  width: 100%;
}

.product-art > span {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  padding-top: 6px;
  border-top: 1px solid currentColor;
  color: #96524f;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.16em;
}

.art-frame,
.art-orbit,
.art-mark {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.art-frame {
  opacity: 0.25;
}

.art-orbit {
  opacity: 0.38;
}

.art-mark {
  opacity: 0.55;
}

.art-shape {
  fill: currentColor;
  fill-opacity: 0.14;
  stroke: currentColor;
  stroke-opacity: 0.7;
}

.product-art-red {
  color: var(--signal-red-bright);
}

.product-art-amber {
  color: var(--preorder);
}

.product-art-blue {
  color: var(--verified);
}

.shot-status-line {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  align-items: center;
  margin-bottom: 16px;
}

.stock-state,
.verification-state,
.target-badge,
.evidence-label,
.scope-seal,
.profile-state {
  display: inline-flex;
  align-items: center;
  width: max-content;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.stock-state {
  gap: 7px;
  padding: 6px 8px;
  border: 1px solid currentColor;
}

.stock-state i {
  width: 5px;
  height: 5px;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.stock-state-live {
  color: var(--success);
}

.stock-state-preorder {
  color: var(--preorder);
}

.verification-state {
  color: var(--verified);
}

.shot-summary h2,
.target-identity h2,
.evidence-intro h2,
.empty-evidence-mark + .evidence-label + h2,
.settings-section h2 {
  margin: 0;
  color: var(--white);
  font-weight: 500;
}

.shot-summary h2 {
  max-width: 720px;
  font-size: clamp(21px, 2vw, 30px);
  letter-spacing: -0.03em;
}

.shot-summary > p {
  margin: 9px 0 22px;
  color: var(--steel-dark);
  font-size: 12px;
}

.shot-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(95px, 1fr));
  max-width: 740px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.shot-facts > span {
  display: grid;
  gap: 6px;
  min-height: 57px;
  padding: 11px 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shot-facts small,
.shot-action small,
.target-fact small,
.urgency-display small,
.settings-section-heading small {
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.shot-facts strong,
.target-fact strong {
  font-size: 11px;
  font-weight: 500;
}

.shot-action {
  display: grid;
  gap: 10px;
  justify-items: stretch;
}

.match-note {
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.contract-action,
.primary-action,
.secondary-action,
.danger-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
}

.contract-action,
.primary-action {
  background: var(--signal-red);
  color: #fff4f3;
}

.contract-action {
  padding: 0 15px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: background 140ms ease, transform 140ms ease;
}

.contract-action:hover,
.primary-action:hover {
  background: var(--signal-red-bright);
}

.contract-action:hover {
  transform: translateY(-2px);
}

.live-waiting {
  margin: 20px 0 28px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 50% 30%, rgba(223, 44, 48, 0.12), transparent 36rem), rgba(8, 8, 9, 0.82);
  text-align: center;
}

.live-waiting h2 {
  margin: 12px 0 8px;
  color: #fff;
  font-size: clamp(24px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.live-waiting > p:last-child {
  margin: 0 auto;
  max-width: 620px;
  color: #aaaab1;
  line-height: 1.6;
}

.quantity-panel {
  margin-top: 18px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(215, 34, 40, 0.045));
}

.quantity-heading,
.source-mode-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.quantity-heading > span {
  color: #929299;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.quantity-limit {
  position: relative;
  display: grid;
  min-width: 92px;
  place-items: center;
  padding: 9px 12px 8px;
  text-align: center;
  isolation: isolate;
  overflow: visible;
}

.quantity-limit strong,
.quantity-limit small {
  position: relative;
  z-index: 2;
}

.quantity-limit strong { color: #fff; font-size: 10px; letter-spacing: 0.08em; text-shadow: 0 1px 6px #050203; }
.quantity-limit small { margin-top: 2px; font-size: 7px; letter-spacing: 0.08em; text-shadow: 0 1px 5px #050203; }

.quantity-limit-stated {
  color: #ff443e;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.quantity-limit-open {
  color: #75d5ff;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.quantity-limit-open small { color: #bdeaff; font-style: italic; }

.quantity-flame-art {
  position: absolute;
  z-index: 0;
  bottom: -14px;
  left: 50%;
  width: 122px;
  height: 74px;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 7px currentColor);
  overflow: visible;
  pointer-events: none;
}

.quantity-flame-art path {
  transform-box: fill-box;
  transform-origin: 50% 100%;
}

.flame-outer {
  fill: currentColor;
  opacity: 0.3;
  animation: flame-outer-wave 3.8s ease-in-out infinite;
}

.flame-electric { display: none; }

.flame-middle {
  fill: currentColor;
  opacity: 0.48;
  animation: flame-middle-wave 3s ease-in-out -1.1s infinite;
}

.flame-core {
  fill: #fff0dc;
  opacity: 0.42;
  animation: flame-core-wave 2.4s ease-in-out -0.5s infinite;
}

.quantity-limit-open .flame-core {
  fill: #eefcff;
  opacity: 0.5;
}

.quantity-limit-open .quantity-flame-art {
  filter: drop-shadow(0 0 7px #45bfff) drop-shadow(0 0 15px rgba(111, 164, 255, 0.55));
}

.quantity-limit-open .flame-outer {
  fill: #3aa7ff;
  opacity: 0.42;
}

.quantity-limit-open .flame-middle {
  fill: #89e4ff;
  opacity: 0.58;
}

.quantity-limit-open .flame-electric {
  display: block;
  fill: none;
  stroke: #e9fbff;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 2 7;
  filter: drop-shadow(0 0 2px #72d9ff);
  opacity: 0.72;
  animation: electric-flame-flow 4.8s linear infinite;
}

.quantity-limit-stated .quantity-flame-art {
  filter: drop-shadow(0 0 7px #ff3a32) drop-shadow(0 0 13px rgba(255, 72, 40, 0.4));
}

.quantity-limit-stated .flame-outer { fill: #ff332e; opacity: 0.5; }
.quantity-limit-stated .flame-middle { fill: #ff7138; opacity: 0.68; }
.quantity-limit-stated .flame-core { fill: #ffd28a; opacity: 0.58; }

.flame-embers {
  fill: currentColor;
}

.flame-embers circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: flame-ember-rise 3.4s ease-out infinite;
}

.flame-embers circle:nth-child(2) { animation-delay: -1.2s; }
.flame-embers circle:nth-child(3) { animation-delay: -2.25s; }

@keyframes flame-outer-wave {
  0%, 100% { transform: skewX(-1deg) scale(0.97, 0.94); opacity: 0.26; }
  50% { transform: skewX(2deg) scale(1.02, 1.05); opacity: 0.4; }
}

@keyframes flame-middle-wave {
  0%, 100% { transform: skewX(2deg) scale(0.96, 0.92); opacity: 0.4; }
  50% { transform: skewX(-3deg) scale(1.04, 1.08); opacity: 0.58; }
}

@keyframes flame-core-wave {
  0%, 100% { transform: translateY(2px) scale(0.94, 0.9); opacity: 0.34; }
  50% { transform: translateY(-1px) scale(1.03, 1.08); opacity: 0.54; }
}

@keyframes flame-ember-rise {
  0% { transform: translateY(6px) scale(0.5); opacity: 0; }
  28% { opacity: 0.7; }
  100% { transform: translateY(-12px) scale(0.9); opacity: 0; }
}

@keyframes electric-flame-flow {
  from { stroke-dashoffset: 0; opacity: 0.46; }
  50% { opacity: 0.82; }
  to { stroke-dashoffset: -36; opacity: 0.46; }
}

.quantity-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quantity-metrics > span {
  display: grid;
  gap: 3px;
  padding: 10px;
  text-align: center;
}

.quantity-metrics > span + span { border-left: 1px solid rgba(255, 255, 255, 0.08); }
.quantity-metrics small { color: #77777f; font-size: 7px; letter-spacing: 0.13em; }
.quantity-metrics strong { color: #fff; font-size: 19px; }

.quantity-controls {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
}

.quantity-controls label,
.quantity-controls > div { display: flex; align-items: center; gap: 7px; }
.quantity-controls span { color: #8f8f96; font-size: 9px; }
.quantity-controls input {
  width: 52px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0d0d0f;
  color: #fff;
  text-align: center;
}

.quantity-controls button {
  min-width: 48px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.quantity-controls button:hover { border-color: #ef3036; background: rgba(239, 48, 54, 0.12); }

.source-mode-section { border-color: rgba(239, 48, 54, 0.36); }
.source-mode-control { margin-top: 18px; padding: 18px; background: rgba(255, 255, 255, 0.035); }
.source-mode-control strong { color: #fff; font-size: 18px; }
.source-mode-control p { margin: 4px 0 0; color: #9898a0; line-height: 1.45; }
.source-mode-honesty { margin: 12px 0 0; color: #707078; font-size: 10px; line-height: 1.55; }

.source-mode-switch { position: relative; flex: 0 0 auto; width: 64px; height: 34px; }
.source-mode-switch input { position: absolute; opacity: 0; pointer-events: none; }
.source-mode-switch i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #151518;
  cursor: pointer;
  transition: 180ms ease;
}
.source-mode-switch i::after {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 22px;
  height: 22px;
  background: #8d8d94;
  content: "";
  transition: 180ms ease;
}
.source-mode-switch input:checked + i { border-color: #ef3036; background: rgba(239, 48, 54, 0.18); box-shadow: 0 0 18px rgba(239, 48, 54, 0.18); }
.source-mode-switch input:checked + i::after { left: 35px; background: #ef3036; }
.source-mode-switch input:focus-visible + i { outline: 2px solid #fff; outline-offset: 3px; }
.source-mode-switch input:disabled + i { cursor: wait; opacity: 0.6; }

html[data-system-mode="approved_live"] .concept-strip strong,
html[data-system-mode="approved_live"] .fixture-label { color: #9ee8b2; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .quantity-controls { align-items: stretch; flex-direction: column; }
  .quantity-controls label,
  .quantity-controls > div { justify-content: space-between; }
  .source-mode-control { align-items: flex-start; }
}

.shot-action > small {
  text-align: right;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  min-height: 304px;
  padding: 64px 5.5vw 54px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 64px 64px;
}

.section-heading h1 {
  font-size: clamp(54px, 6vw, 90px);
}

.section-heading > div > p:last-child {
  margin-top: 28px;
}

.primary-action,
.secondary-action,
.danger-action {
  gap: 12px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.secondary-action {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--white);
}

.danger-action {
  background: var(--danger);
  color: #fff;
}

.honesty-note {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  margin: 34px 5.5vw 0;
  padding: 18px 0;
  border-top: 1px solid #543a20;
  border-bottom: 1px solid #543a20;
}

.honesty-note > span {
  color: var(--preorder);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.honesty-note p {
  max-width: 900px;
  margin: 0;
  color: #baaa8e;
  font-size: 12px;
  line-height: 1.6;
}

.target-register-heading,
.target-row {
  display: grid;
  grid-template-columns: minmax(300px, 1.8fr) minmax(110px, 0.65fr) minmax(100px, 0.55fr) minmax(150px, 0.8fr) minmax(190px, 0.9fr);
  gap: 20px;
}

.target-register-heading {
  margin: 34px 5.5vw 0;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.target-register {
  padding: 0 5.5vw 48px;
}

.target-row {
  position: relative;
  align-items: center;
  min-height: 148px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.target-row::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: -5.5vw;
  width: 2px;
  background: var(--verified);
  content: "";
}

.target-row[data-target-state="draft"]::before {
  background: var(--preorder);
}

.target-row[data-target-state="paused"]::before {
  background: var(--steel-dark);
}

.target-row.is-paused {
  opacity: 0.56;
}

.target-identity {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 15px;
  align-items: start;
}

.target-sequence {
  color: var(--signal-red-bright);
  font-family: var(--mono);
  font-size: 10px;
}

.target-badge {
  margin-bottom: 9px;
}

.target-badge-verified {
  color: var(--verified);
}

.target-badge-draft {
  color: var(--preorder);
}

.target-badge-paused {
  color: var(--steel-dark);
}

.target-identity h2 {
  font-size: 15px;
}

.target-identity p,
.urgency-display span {
  margin: 5px 0 0;
  color: var(--steel-dark);
  font-size: 10px;
}

.target-fact,
.urgency-display {
  display: grid;
  gap: 6px;
}

.target-fact > span {
  color: var(--steel-dark);
  font-size: 10px;
}

.urgency-display strong {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
}

.urgency-normal strong {
  color: var(--steel);
}

.urgency-important strong {
  color: var(--preorder);
}

.urgency-critical strong {
  color: var(--signal-red-bright);
}

.target-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.target-actions button,
.archive-heading {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--steel);
  font-size: 10px;
  cursor: pointer;
}

.target-actions button:hover {
  border-color: var(--line-strong);
  color: var(--white);
}

.target-actions .quiet-danger {
  color: #9a5a57;
}

.archive-zone {
  margin: 0 5.5vw 90px;
  border-top: 1px solid var(--line);
}

.archive-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

#archived-targets .target-row {
  grid-template-columns: minmax(300px, 1fr) auto;
  opacity: 0.5;
}

#archived-targets .target-fact,
#archived-targets .urgency-display {
  display: none;
}

.performance-heading {
  align-items: flex-end;
}

.evidence-selector {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  background: #090909;
}

.evidence-selector button {
  min-height: 38px;
  padding: 0 14px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.evidence-selector button.is-active {
  background: var(--white);
  color: var(--black);
}

.evidence-panel {
  position: relative;
  min-height: 460px;
  padding: 54px 5.5vw 100px;
}

.evidence-panel[hidden] {
  display: none;
}

.evidence-stamp {
  position: absolute;
  top: 58px;
  right: 5.5vw;
  display: grid;
  width: 130px;
  padding: 17px;
  transform: rotate(2deg);
  border: 1px solid #73302e;
  color: #a94d49;
  font-family: var(--mono);
  text-align: center;
}

.evidence-stamp span,
.evidence-stamp small {
  font-size: 7px;
  letter-spacing: 0.18em;
}

.evidence-stamp strong {
  margin: 5px 0;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.evidence-label {
  padding: 6px 8px;
  border: 1px solid currentColor;
}

.evidence-label-simulated {
  color: var(--preorder);
}

.evidence-label-real {
  color: var(--verified);
}

.evidence-intro {
  max-width: 720px;
}

.evidence-intro h2,
.empty-evidence-mark + .evidence-label + h2 {
  margin-top: 20px;
  font-size: clamp(27px, 3vw, 42px);
  letter-spacing: -0.04em;
}

.evidence-intro p,
.evidence-panel[data-evidence-panel="real"] > p {
  color: var(--steel);
  line-height: 1.7;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.evidence-grid article {
  min-height: 190px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

.evidence-grid article > span {
  display: block;
  margin-bottom: 32px;
  color: var(--signal-red-bright);
  font-family: var(--mono);
  font-size: 10px;
}

.evidence-grid small {
  display: block;
  margin-bottom: 9px;
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.evidence-grid strong {
  font-size: 15px;
  font-weight: 500;
}

.evidence-grid p {
  margin: 9px 0 0;
  color: var(--steel-dark);
  font-size: 11px;
  line-height: 1.55;
}

.evidence-trace {
  display: grid;
  grid-template-columns: max-content minmax(24px, 1fr) max-content minmax(24px, 1fr) max-content minmax(24px, 1fr) max-content;
  align-items: center;
  margin-top: 48px;
}

.trace-node {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--steel);
  font-family: var(--mono);
  font-size: 8px;
}

.trace-node i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--success);
  background: var(--success);
  box-shadow: 0 0 12px rgba(117, 194, 140, 0.4);
}

.trace-line {
  height: 1px;
  margin: 0 12px;
  background: var(--line-strong);
}

.evidence-panel[data-evidence-panel="real"] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 920px;
}

.empty-evidence-mark {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 26px;
  border: 1px solid var(--line-strong);
  transform: rotate(45deg);
}

.empty-evidence-mark span,
.empty-evidence-mark i {
  position: absolute;
  background: var(--line-strong);
}

.empty-evidence-mark span {
  top: 50%;
  right: 15px;
  left: 15px;
  height: 1px;
}

.empty-evidence-mark i {
  top: 15px;
  bottom: 15px;
  left: 50%;
  width: 1px;
}

.scope-seal {
  padding: 10px 12px;
  border: 1px solid var(--success);
  color: var(--success);
}

.settings-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px 5.5vw 100px;
  background: var(--line);
}

.settings-section {
  min-height: 310px;
  padding: 28px;
  background: var(--black-soft);
}

.settings-section-heading {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.settings-section-heading > span {
  color: var(--signal-red-bright);
  font-family: var(--mono);
  font-size: 9px;
}

.settings-section h2 {
  margin-top: 4px;
  font-size: 19px;
}

.account-profile {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
}

.profile-monogram {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background: var(--graphite-raised);
  font-family: var(--mono);
  font-size: 11px;
}

.account-profile strong {
  font-size: 15px;
}

.account-profile p {
  margin: 4px 0 0;
  color: var(--steel-dark);
  font-size: 10px;
}

.profile-state {
  color: var(--success);
}

.privacy-rule,
.future-account-note {
  margin-top: 14px;
  padding: 15px 0 0;
  border-top: 1px solid var(--line);
}

.privacy-rule span {
  color: var(--verified);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.privacy-rule p,
.future-account-note p,
.settings-honesty,
.credential-note {
  margin: 7px 0 0;
  color: var(--steel-dark);
  font-size: 10px;
  line-height: 1.55;
}

.future-account-note strong {
  font-size: 12px;
  font-weight: 500;
}

.setting-control {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  border-top: 1px solid var(--line);
  cursor: pointer;
}

.setting-control span {
  display: grid;
  gap: 4px;
}

.setting-control strong {
  font-size: 12px;
  font-weight: 500;
}

.setting-control small {
  color: var(--steel-dark);
  font-size: 9px;
}

.setting-control input {
  position: absolute;
  opacity: 0;
}

.setting-control i {
  position: relative;
  width: 38px;
  height: 20px;
  border: 1px solid var(--line-strong);
  background: var(--graphite);
}

.setting-control i::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  background: var(--steel-dark);
  content: "";
  transition: transform 150ms ease, background 150ms ease;
}

.setting-control input:checked + i {
  border-color: var(--signal-red-dark);
  background: #2a0e0d;
}

.setting-control input:checked + i::after {
  transform: translateX(18px);
  background: var(--signal-red-bright);
}

.setting-control-locked {
  cursor: default;
}

.settings-honesty {
  color: var(--preorder);
}

.device-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
}

.device-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--graphite-raised);
  color: var(--steel);
}

.device-row div {
  display: grid;
  gap: 4px;
}

.device-row strong {
  font-size: 12px;
}

.device-row small,
.device-row > span:last-child {
  color: var(--steel-dark);
  font-size: 9px;
}

.device-row > span:last-child {
  font-family: var(--mono);
  letter-spacing: 0.1em;
}

.mobile-navigation {
  display: none;
}

.sniper-dialog {
  width: min(620px, calc(100% - 28px));
  max-height: min(780px, calc(100vh - 40px));
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: #0b0b0b;
  color: var(--white);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.75);
}

.sniper-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.sniper-dialog form {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.sniper-dialog header,
.sniper-dialog footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.sniper-dialog header {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.sniper-dialog header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 38px;
  letter-spacing: -0.04em;
}

.dialog-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--steel);
  font-size: 24px;
  cursor: pointer;
}

.form-field {
  display: grid;
  gap: 9px;
  color: var(--steel);
  font-size: 11px;
}

.form-field input,
.form-field select {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--graphite);
  color: var(--white);
}

.form-field small,
.urgency-picker > p {
  margin: 0;
  color: var(--steel-dark);
  font-size: 9px;
}

.form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.price-input {
  position: relative;
}

.price-input i {
  position: absolute;
  top: 15px;
  left: 13px;
  color: var(--steel-dark);
  font-style: normal;
}

.price-input input {
  padding-left: 36px;
}

.form-choice,
.urgency-picker {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-choice legend,
.urgency-picker legend {
  margin-bottom: 10px;
  color: var(--steel);
  font-size: 11px;
}

.form-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-choice legend {
  flex: 0 0 100%;
}

.form-choice label,
.urgency-picker label {
  cursor: pointer;
}

.form-choice input,
.urgency-picker input {
  position: absolute;
  opacity: 0;
}

.form-choice span {
  display: grid;
  place-items: center;
  min-width: 108px;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  color: var(--steel);
  font-size: 11px;
}

.form-choice input:checked + span {
  border-color: var(--signal-red-bright);
  background: #27100f;
  color: var(--white);
}

.urgency-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.urgency-picker legend,
.urgency-picker > p {
  grid-column: 1 / -1;
}

.urgency-picker > p {
  margin: -5px 0 4px;
}

.urgency-picker label > span {
  display: grid;
  gap: 4px;
  min-height: 74px;
  padding: 13px;
  border: 1px solid var(--line-strong);
}

.urgency-picker strong {
  font-size: 11px;
  font-weight: 500;
}

.urgency-picker small {
  color: var(--steel-dark);
  font-size: 8px;
}

.urgency-picker input:checked + span {
  border-color: var(--signal-red-bright);
  background: #27100f;
}

.sniper-dialog footer {
  justify-content: flex-end;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.compact-dialog {
  width: min(470px, calc(100% - 28px));
}

.compact-dialog form > p {
  margin: 0;
  color: var(--steel);
  line-height: 1.6;
}

.toast {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 15px 18px;
  border: 1px solid #6a2a28;
  background: #160b0a;
  color: #edc8c6;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
}

.captcha-view {
  min-height: calc(100vh - 112px);
  padding-bottom: 88px;
}

.captcha-heading {
  align-items: end;
}

.captcha-run-status {
  display: grid;
  min-width: 180px;
  gap: 4px;
  padding: 15px 18px;
  border: 1px solid #4a1f1d;
  background: #130908;
  font-family: var(--mono);
}

.captcha-run-status small,
.captcha-run-status span {
  color: var(--steel-dark);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.captcha-run-status strong {
  color: var(--signal-red-bright);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.captcha-run-status b {
  color: var(--white);
  font-weight: 500;
}

.captcha-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.65fr);
  gap: 18px;
  padding: 0 42px 28px;
}

.captcha-console,
.captcha-telemetry,
.captcha-reveal {
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #0a0a0a;
  background-size: 32px 32px;
}

.captcha-console {
  min-height: 550px;
  padding: 28px;
}

.captcha-console-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.captcha-console-topline span:first-child {
  color: var(--signal-red-bright);
}

.captcha-stage {
  display: grid;
  gap: 23px;
  max-width: 670px;
  margin: 36px auto 28px;
  animation: view-enter 180ms ease both;
}

.captcha-stage[hidden] {
  display: none;
}

.captcha-stage-copy {
  display: grid;
  gap: 8px;
}

.captcha-stage-copy small {
  color: var(--signal-red-bright);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.captcha-stage-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.captcha-stage-copy p,
.captcha-feedback p {
  margin: 0;
  color: var(--steel);
  font-size: 12px;
  line-height: 1.65;
}

.captcha-checkbox {
  display: grid;
  grid-template-columns: 34px 1fr 46px;
  align-items: center;
  min-height: 82px;
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  background: #111;
  cursor: pointer;
}

.captcha-checkbox input {
  position: absolute;
  opacity: 0;
}

.captcha-checkbox > span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid #555;
}

.captcha-checkbox input:checked + span {
  border-color: var(--signal-red-bright);
  background: var(--signal-red);
}

.captcha-checkbox input:checked + span::after {
  width: 7px;
  height: 12px;
  transform: rotate(45deg) translate(-1px, -1px);
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  content: "";
}

.captcha-checkbox strong {
  font-size: 14px;
  font-weight: 550;
}

.mini-reticle {
  width: 36px;
  height: 36px;
  background:
    linear-gradient(90deg, transparent 47%, var(--signal-red) 48%, var(--signal-red) 52%, transparent 53%),
    linear-gradient(transparent 47%, var(--signal-red) 48%, var(--signal-red) 52%, transparent 53%),
    radial-gradient(circle, transparent 0 7px, var(--signal-red) 8px 9px, transparent 10px);
}

.captcha-submit {
  justify-self: start;
  min-width: 188px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--signal-red);
  background: var(--signal-red);
  color: white;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.captcha-submit:hover {
  border-color: var(--signal-red-bright);
  background: var(--signal-red-bright);
}

.captcha-slider-track {
  position: relative;
  height: 92px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.035) 50%, transparent 50.5%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #101010;
  background-size: auto, 100% 23px;
  overflow: hidden;
}

.captcha-target-zone {
  position: absolute;
  top: 14px;
  bottom: 14px;
  width: 13%;
  transform: translateX(-50%);
  border: 1px solid rgba(212, 45, 42, 0.78);
  background: rgba(212, 45, 42, 0.1);
  box-shadow: 0 0 24px rgba(212, 45, 42, 0.13) inset;
}

.captcha-slider-sight {
  position: absolute;
  top: 29px;
  width: 34px;
  height: 34px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, transparent 47%, #fff 48%, #fff 52%, transparent 53%),
    linear-gradient(transparent 47%, #fff 48%, #fff 52%, transparent 53%),
    radial-gradient(circle, transparent 0 9px, var(--white) 10px 11px, transparent 12px);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.22));
}

.captcha-range {
  width: 100%;
  accent-color: var(--signal-red);
}

.captcha-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  max-width: 490px;
}

.captcha-tile {
  position: relative;
  aspect-ratio: 1.28;
  overflow: hidden;
  border: 2px solid transparent;
  background-color: #181818;
  cursor: pointer;
}

.captcha-tile-pattern-1 { background-image: linear-gradient(145deg, #272727 0 38%, #111 39% 64%, #2d1615 65%); }
.captcha-tile-pattern-2 { background-image: repeating-linear-gradient(35deg, #121212 0 9px, #252525 10px 18px); }
.captcha-tile-pattern-3 { background-image: radial-gradient(circle at 70% 30%, #303030 0 8%, transparent 9%), linear-gradient(120deg, #101010, #2b1615); }
.captcha-tile-pattern-4 { background-image: linear-gradient(90deg, #1d1d1d 0 26%, #303030 27% 31%, #131313 32% 74%, #271211 75%); }

.captcha-tile.is-selected {
  border-color: var(--signal-red-bright);
  box-shadow: 0 0 0 2px #070707 inset;
}

.captcha-tile.is-selected::after {
  position: absolute;
  top: 6px;
  right: 6px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  background: var(--signal-red);
  color: white;
  content: "✓";
  font-size: 11px;
}

.tile-noise {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 44%, rgba(255, 255, 255, 0.05) 45%, transparent 46%);
}

.tile-reticle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(90deg, transparent 47%, var(--signal-red-bright) 48%, var(--signal-red-bright) 52%, transparent 53%),
    linear-gradient(transparent 47%, var(--signal-red-bright) 48%, var(--signal-red-bright) 52%, transparent 53%),
    radial-gradient(circle, transparent 0 24%, var(--signal-red-bright) 25% 28%, transparent 29%);
  filter: drop-shadow(0 0 4px rgba(240, 59, 54, 0.5));
}

.captcha-sequence {
  display: grid;
  grid-template-columns: repeat(5, minmax(44px, 74px));
  gap: 8px;
}

.captcha-sequence span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  background: #121212;
  font-family: var(--mono);
  font-size: 19px;
}

.captcha-sequence span:last-child {
  border-color: var(--signal-red);
  color: var(--signal-red-bright);
}

.captcha-answer {
  display: grid;
  max-width: 230px;
  gap: 8px;
  color: var(--steel);
  font-size: 10px;
}

.captcha-answer input {
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  background: #121212;
  color: var(--white);
  font-family: var(--mono);
  font-size: 18px;
}

.captcha-feedback {
  display: grid;
  grid-template-columns: 8px 1fr;
  align-items: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #0c0c0c;
}

.captcha-feedback .feedback-light {
  width: 7px;
  height: 7px;
  margin-top: 6px;
  background: var(--preorder);
  box-shadow: 0 0 12px rgba(212, 164, 78, 0.5);
}

.captcha-feedback[data-state="failure"] { border-color: #652825; }
.captcha-feedback[data-state="failure"] .feedback-light { background: var(--danger); }
.captcha-feedback[data-state="success"] { border-color: #285c38; }
.captcha-feedback[data-state="success"] .feedback-light { background: var(--success); }

.captcha-telemetry {
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 26px;
}

.captcha-progress {
  display: grid;
  grid-template-columns: 1fr;
}

.captcha-progress > span {
  display: grid;
  grid-template-columns: 14px 30px 1fr;
  align-items: center;
  gap: 8px;
  color: var(--steel-dark);
}

.captcha-progress > span i {
  width: 10px;
  height: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.captcha-progress > span b,
.captcha-progress > span small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.captcha-progress > span.is-current,
.captcha-progress > span.is-complete {
  color: var(--white);
}

.captcha-progress > span.is-current i {
  border-color: var(--signal-red-bright);
  background: var(--signal-red-bright);
  box-shadow: 0 0 12px rgba(240, 59, 54, 0.5);
}

.captcha-progress > span.is-complete i {
  border-color: var(--success);
  background: var(--success);
}

.captcha-progress > em {
  width: 1px;
  height: 22px;
  margin-left: 5px;
  background: var(--line-strong);
}

.captcha-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.captcha-metrics > div {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 12px 9px;
  border: 1px solid var(--line);
  background: #101010;
}

.captcha-metrics small {
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 7px;
}

.captcha-metrics strong {
  overflow: hidden;
  font-family: var(--mono);
  font-size: 15px;
  text-overflow: ellipsis;
}

.captcha-event-log {
  display: grid;
  gap: 0;
  max-height: 190px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.captcha-event-log p {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  font-size: 9px;
  line-height: 1.45;
}

.captcha-event-log time {
  color: var(--signal-red-bright);
  font-family: var(--mono);
  font-size: 8px;
}

.captcha-reset {
  width: 100%;
}

.captcha-reveal {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1.25fr);
  margin: 0 42px;
  overflow: hidden;
}

.captcha-reveal[hidden] {
  display: none;
}

.captcha-reveal > div {
  display: grid;
  align-content: center;
  gap: 13px;
  padding: 38px;
}

.captcha-reveal h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.captcha-reveal > div > p:not(.technical-kicker) {
  margin: 0;
  color: var(--steel);
  font-size: 12px;
  line-height: 1.65;
}

.captcha-reveal dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 8px 0 0;
  border-top: 1px solid var(--line);
}

.captcha-reveal dl div {
  display: grid;
  gap: 5px;
  padding: 14px 8px 0 0;
}

.captcha-reveal dt {
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
}

.captcha-reveal dd {
  margin: 0;
  color: var(--success);
  font-family: var(--mono);
  font-size: 10px;
}

.captcha-reveal figure {
  position: relative;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.captcha-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.captcha-reveal figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  background: rgba(5, 5, 5, 0.86);
  color: var(--signal-red-bright);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .mobile-navigation {
    grid-template-columns: repeat(5, 1fr);
  }

  .captcha-layout {
    grid-template-columns: 1fr;
    padding: 0 20px 22px;
  }

  .captcha-telemetry {
    grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1.2fr);
  }

  .captcha-progress,
  .captcha-reset {
    grid-column: 1;
  }

  .captcha-metrics,
  .captcha-event-log {
    grid-column: 2;
  }

  .captcha-metrics {
    grid-row: 1;
  }

  .captcha-event-log {
    grid-row: 2 / span 2;
  }

  .captcha-reveal {
    margin: 0 20px;
  }
}

@media (max-width: 680px) {
  .captcha-heading {
    align-items: stretch;
  }

  .captcha-run-status {
    width: 100%;
  }

  .captcha-layout {
    padding: 0 12px 16px;
  }

  .captcha-console,
  .captcha-telemetry {
    padding: 20px;
  }

  .captcha-console {
    min-height: 0;
  }

  .captcha-stage {
    margin: 26px auto 22px;
  }

  .captcha-telemetry {
    display: grid;
    grid-template-columns: 1fr;
  }

  .captcha-progress,
  .captcha-metrics,
  .captcha-event-log,
  .captcha-reset {
    grid-column: 1;
    grid-row: auto;
  }

  .captcha-reveal {
    grid-template-columns: 1fr;
    margin: 0 12px;
  }

  .captcha-reveal > div {
    padding: 28px 22px;
  }

  .captcha-reveal figure {
    min-height: 300px;
  }

  .captcha-sequence {
    grid-template-columns: repeat(5, 1fr);
  }
}

@keyframes cursor-blink {
  0%, 52% { opacity: 1; }
  53%, 100% { opacity: 0; }
}

@keyframes view-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
  .sniper-shell {
    grid-template-columns: 198px minmax(0, 1fr);
  }

  .wordmark {
    padding-right: 16px;
    padding-left: 16px;
  }

  .navigation-item {
    padding: 0 16px;
  }

  .rail-signal {
    margin-right: 16px;
    margin-left: 16px;
  }

  .pilot-identity {
    padding-right: 16px;
    padding-left: 16px;
  }

  .identity-lock {
    display: none;
  }

  .hero-heading {
    grid-template-columns: minmax(390px, 1fr) minmax(330px, 0.8fr);
  }

  .shot-entry {
    grid-template-columns: 122px minmax(330px, 1fr) 170px;
    gap: 22px;
  }

  .product-art {
    width: 116px;
    height: 154px;
  }

  .target-register-heading,
  .target-row {
    grid-template-columns: minmax(260px, 1.4fr) 100px 90px 130px 150px;
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .sniper-shell {
    display: block;
    padding-bottom: 70px;
  }

  .side-rail {
    display: none;
  }

  .stage-header {
    padding: 0 20px;
  }

  .hero-heading {
    grid-template-columns: 1fr;
    min-height: 660px;
  }

  .hero-copy {
    padding: 62px 24px 280px;
  }

  .hero-art {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 340px;
    opacity: 0.76;
  }

  .hero-art svg {
    width: min(90%, 560px);
  }

  .shot-entry {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 22px;
  }

  .shot-action {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 190px;
    align-items: center;
  }

  .shot-action > small {
    display: none;
  }

  .target-register-heading {
    display: none;
  }

  .target-register {
    padding-top: 26px;
  }

  .target-row {
    grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(95px, 0.6fr));
  }

  .target-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .evidence-trace {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .trace-line {
    width: 1px;
    height: 26px;
    margin: 0 0 0 3px;
  }

  .settings-layout {
    grid-template-columns: 1fr;
  }

  .mobile-navigation {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 64px;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--line-strong);
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(16px);
  }

  .mobile-navigation button {
    position: relative;
    display: grid;
    place-items: center;
    gap: 3px;
    min-width: 0;
    border: 0;
    border-right: 1px solid var(--line);
    background: transparent;
    color: var(--steel-dark);
    font-size: 9px;
    cursor: pointer;
  }

  .mobile-navigation button::before {
    position: absolute;
    top: 0;
    right: 28%;
    left: 28%;
    height: 2px;
    transform: scaleX(0);
    background: var(--signal-red-bright);
    content: "";
  }

  .mobile-navigation button span {
    font-family: var(--mono);
    font-size: 7px;
  }

  .mobile-navigation button.is-active {
    color: var(--white);
  }

  .mobile-navigation button.is-active::before {
    transform: scaleX(1);
  }

  .toast {
    bottom: 82px;
  }
}

@media (max-width: 680px) {
  .concept-strip {
    justify-content: space-between;
    gap: 6px;
    padding: 0 10px;
    font-size: 7px;
  }

  .concept-strip span:last-child {
    display: none;
  }

  .stage-header {
    height: 58px;
    padding: 0 14px;
  }

  .fixture-label,
  .system-readout small,
  .account-action span {
    display: none;
  }

  .system-readout strong {
    font-size: 10px;
  }

  .account-action {
    gap: 0;
    width: 36px;
    padding: 0;
  }

  .hero-heading {
    min-height: 590px;
  }

  .hero-copy {
    justify-content: flex-start;
    padding: 54px 18px 260px;
  }

  .technical-kicker {
    margin-bottom: 16px;
    font-size: 8px;
  }

  .hero-copy h1,
  .section-heading h1 {
    flex-wrap: wrap;
    font-size: clamp(50px, 15vw, 72px);
    line-height: 0.78;
  }

  .hero-copy > p:not(.technical-kicker),
  .section-heading > div > p:last-child {
    margin-top: 26px;
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-readouts {
    margin-top: 30px;
  }

  .hero-readouts span {
    display: grid;
    gap: 4px;
    padding: 0 11px;
    font-size: 7px;
  }

  .hero-readouts strong {
    font-size: 15px;
  }

  .hero-art {
    height: 290px;
  }

  .art-caption {
    right: 16px;
    bottom: 12px;
  }

  .shot-toolbar {
    display: grid;
    gap: 12px;
    padding: 15px 18px;
  }

  .filter-group {
    width: 100%;
  }

  .filter-control {
    flex: 1;
    padding-right: 6px;
    padding-left: 6px;
  }

  .shot-toolbar > p {
    font-size: 7px;
  }

  .shot-list {
    padding: 0 18px 70px;
  }

  .shot-entry {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    padding: 25px 0;
  }

  .shot-entry::before {
    left: -18px;
  }

  .product-art {
    align-self: start;
    width: 86px;
    height: 118px;
    box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.018);
  }

  .product-art > span {
    right: 8px;
    bottom: 7px;
    left: 8px;
    font-size: 5px;
  }

  .shot-status-line {
    gap: 7px;
    margin-bottom: 11px;
  }

  .stock-state,
  .verification-state {
    font-size: 6px;
  }

  .shot-summary h2 {
    font-size: 17px;
  }

  .shot-summary > p {
    display: none;
  }

  .shot-facts {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    margin-top: 18px;
  }

  .shot-facts > span {
    min-height: 52px;
    padding: 9px 10px;
  }

  .shot-action {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contract-action {
    width: 100%;
    min-height: 48px;
  }

  .section-heading {
    display: grid;
    min-height: 0;
    padding: 48px 18px 36px;
  }

  .section-heading .primary-action,
  .scope-seal {
    width: max-content;
  }

  .honesty-note {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px 18px 0;
  }

  .target-register {
    padding: 10px 18px 40px;
  }

  .target-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px 0;
  }

  .target-row::before {
    left: -18px;
  }

  .target-identity,
  .target-actions {
    grid-column: 1 / -1;
  }

  .target-identity h2 {
    font-size: 14px;
  }

  .target-actions button {
    min-height: 44px;
  }

  .archive-zone {
    margin-right: 18px;
    margin-left: 18px;
  }

  #archived-targets .target-row {
    grid-template-columns: 1fr;
  }

  .performance-heading {
    align-items: stretch;
  }

  .evidence-selector {
    width: 100%;
  }

  .evidence-selector button {
    flex: 1;
  }

  .evidence-panel {
    padding: 36px 18px 80px;
  }

  .evidence-stamp {
    position: static;
    width: 112px;
    margin: 0 0 30px auto;
  }

  .evidence-grid {
    margin-top: 32px;
  }

  .settings-layout {
    padding: 1px 18px 80px;
  }

  .settings-section {
    min-height: 0;
    padding: 22px 18px;
  }

  .account-profile {
    grid-template-columns: 44px 1fr;
  }

  .profile-state {
    grid-column: 2;
  }

  .device-row {
    grid-template-columns: 42px 1fr;
  }

  .device-row > span:last-child {
    grid-column: 2;
  }

  .mobile-navigation {
    min-height: 62px;
  }

  .mobile-navigation button {
    font-size: 8px;
  }

  .sniper-dialog form {
    padding: 20px;
  }

  .form-pair {
    grid-template-columns: 1fr;
  }

  .urgency-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .urgency-picker legend,
  .urgency-picker > p {
    grid-column: 1 / -1;
  }

  .urgency-picker label > span {
    min-height: 68px;
    padding: 10px 8px;
  }

  .sniper-dialog footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sniper-dialog footer button {
    width: 100%;
  }

  .toast {
    right: 12px;
    bottom: 76px;
    left: 12px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.contract-preview-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(212, 45, 42, 0.13), transparent 28rem),
    var(--black);
  background-size: 56px 56px, 56px 56px, auto, auto;
}

.contract-preview {
  position: relative;
  width: min(820px, 100%);
  padding: clamp(34px, 7vw, 80px);
  border: 1px solid var(--line-strong);
  background: rgba(7, 7, 7, 0.96);
}

.contract-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--signal-red);
}

.contract-corner-top {
  top: -1px;
  right: -1px;
  border-top: 2px solid;
  border-right: 2px solid;
}

.contract-corner-bottom {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.contract-fixture-state {
  display: inline-flex;
  padding: 7px 9px;
  border: 1px solid var(--preorder);
  color: var(--preorder);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.contract-preview h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin: 38px 0;
  font-family: var(--display);
  font-size: clamp(58px, 11vw, 112px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.75;
}

.contract-preview h1 strong {
  color: var(--signal-red);
}

.contract-preview-details {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.7fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contract-preview-details > span {
  display: grid;
  gap: 8px;
  min-height: 72px;
  padding: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contract-preview-details small {
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.contract-preview-details strong {
  font-size: 12px;
  font-weight: 500;
}

.contract-preview > p:not(.technical-kicker) {
  max-width: 690px;
  margin: 26px 0;
  color: var(--steel);
  line-height: 1.7;
}

.contract-preview > button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

@media (max-width: 620px) {
  .contract-preview-details {
    grid-template-columns: 1fr;
  }
}

/* Concept 02: verified product objects, centred masthead and original genre atmosphere */

.sniper-stage {
  position: relative;
  isolation: isolate;
}

#main-view {
  position: relative;
  z-index: 1;
}

.wordmark-compact {
  justify-content: center;
  gap: 9px;
  min-height: 94px;
  padding: 18px;
}

.rail-monogram {
  position: relative;
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.rail-monogram > span {
  position: absolute;
  top: 14px;
  right: 0;
  color: var(--signal-red-bright);
  font-size: 6px;
  letter-spacing: 0.1em;
}

.concept-two-header {
  height: 94px;
  padding-right: 34px;
  padding-left: 34px;
}

.main-masthead {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  min-width: 224px;
  padding: 0;
  transform: translate(-50%, -50%);
  border: 0;
  background: transparent;
  text-align: center;
  cursor: pointer;
}

.main-masthead::before {
  position: absolute;
  z-index: 0;
  top: -9px;
  bottom: -10px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(240, 59, 54, 0.72) 12%,
    rgba(240, 59, 54, 0.72) 88%,
    transparent
  );
  content: "";
  pointer-events: none;
}

.main-masthead > * {
  position: relative;
  z-index: 1;
}

.main-masthead small {
  margin-bottom: 1px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.48em;
  text-indent: 0.48em;
}

.main-masthead strong {
  position: relative;
  display: flex;
  justify-content: center;
  color: var(--white);
  font-family: var(--display);
  font-size: 34px;
  font-style: normal;
  font-weight: 750;
  align-items: flex-start;
  letter-spacing: 0.18em;
  line-height: 0.9;
  text-indent: 0.18em;
}

.masthead-letters {
  color: var(--white);
}

.masthead-bullet {
  flex: 0 0 auto;
  width: 0.39em;
  height: 0.96em;
  margin: -0.07em 0.17em 0 0.08em;
  overflow: visible;
  transform: rotate(30deg);
  transform-origin: 50% 56%;
}

.masthead-bullet-body {
  fill: var(--signal-red-bright);
}

.masthead-bullet-neck,
.masthead-bullet-collar,
.masthead-bullet-base {
  fill: var(--signal-red);
}

.masthead-bullet-seam {
  fill: none;
  stroke: #6f1716;
  stroke-width: 0.75;
}

.main-masthead strong > i {
  width: 3px;
  height: 24px;
  margin: 2px 0 0 5px;
  background: var(--signal-red-bright);
  animation: cursor-blink 1.05s steps(1, end) infinite;
}

.main-masthead > em {
  position: relative;
  display: block;
  width: 100%;
  height: 7px;
  margin-top: 6px;
  border-top: 1px solid #381515;
}

.main-masthead > em::before,
.main-masthead > em::after {
  position: absolute;
  top: -3px;
  width: 5px;
  height: 5px;
  background: var(--signal-red);
  content: "";
}

.main-masthead > em::before {
  left: 0;
}

.main-masthead > em::after {
  right: 0;
}

.masthead-reticle {
  position: absolute;
  top: -12px;
  left: 50%;
  width: 23px;
  height: 23px;
  transform: translateX(-50%);
  background: var(--black);
  overflow: visible;
}

.masthead-reticle-ring,
.masthead-reticle-marks {
  fill: none;
  stroke: var(--signal-red-bright);
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.masthead-reticle-centre {
  fill: var(--signal-red-bright);
}

.atmosphere-layer {
  position: fixed;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 236px;
  height: min(43vh, 510px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.38) 34%, rgba(5, 5, 5, 0.04) 100%),
    url("assets/project-sniper-parody-atmosphere-v1.png") center bottom / cover no-repeat;
  pointer-events: none;
  opacity: 0.76;
}

.atmosphere-layer::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, var(--black) 0, rgba(5, 5, 5, 0.72) 30%, rgba(5, 5, 5, 0.12) 100%);
  content: "";
}

.atmosphere-layer svg {
  display: none;
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100%;
}

.atmosphere-layer > span {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 15px;
  color: #6c3231;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.16em;
}

.atmosphere-horizon,
.atmosphere-cards path,
.genre-scene path,
.genre-scene circle {
  fill: none;
  stroke: #a43b38;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.atmosphere-horizon {
  stroke-opacity: 0.22;
}

.atmosphere-cards {
  opacity: 0.24;
}

.genre-scene {
  opacity: 0.46;
}

.genre-scene .genre-fill {
  fill: #491817;
  fill-opacity: 0.48;
  stroke: #9a3330;
}

.genre-martial {
  opacity: 0.39;
}

.genre-mechanical {
  opacity: 0.42;
}

.concept-two-hero {
  grid-template-columns: minmax(460px, 1fr) minmax(320px, 0.6fr);
  min-height: 310px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.84) 68%, rgba(5, 5, 5, 0.3) 100%),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.018) 80px);
}

.concept-two-hero::after {
  position: absolute;
  right: 5.5vw;
  bottom: 0;
  left: 5.5vw;
  height: 1px;
  background: linear-gradient(90deg, var(--signal-red), rgba(212, 45, 42, 0));
  content: "";
}

.concept-two-hero .hero-copy {
  padding-top: 52px;
  padding-bottom: 50px;
}

.concept-two-hero .hero-copy > p:not(.technical-kicker) {
  max-width: 530px;
  margin-top: 28px;
}

.concept-two-readouts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: end;
  margin: 0 5.5vw 51px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.78);
}

.concept-two-readouts span,
.concept-two-readouts span:first-child,
.concept-two-readouts span:last-child {
  display: grid;
  gap: 9px;
  min-height: 74px;
  padding: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.concept-two-readouts strong {
  font-family: var(--display);
  font-size: 25px;
}

.concept-two-shot-list {
  display: grid;
  gap: 1px;
  padding-top: 26px;
}

.concept-two-shot {
  grid-template-columns: minmax(270px, 330px) minmax(360px, 1fr) 190px;
  gap: 34px;
  min-height: 352px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.89);
  backdrop-filter: blur(8px);
}

.concept-two-shot::before {
  top: 18px;
  bottom: 18px;
  left: -1px;
}

.concept-two-shot:hover {
  transform: translateX(3px);
  background: rgba(11, 9, 9, 0.95);
}

.product-focus {
  position: relative;
  display: grid;
  align-self: stretch;
  min-height: 314px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid #2d2d2d;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #0c0c0c;
  background-size: 42px 42px;
  --product-reticle-size: 84%;
}

.product-focus::before {
  position: absolute;
  z-index: 1;
  inset: 12px;
  border: 1px solid rgba(212, 45, 42, 0.17);
  content: "";
  pointer-events: none;
}

.product-focus::after {
  content: none;
}

.product-reticle {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: var(--product-reticle-size);
  height: var(--product-reticle-size);
  transform: translate(-50%, -50%);
  overflow: visible;
  pointer-events: none;
}

.product-reticle-ring,
.product-reticle-marks {
  fill: none;
  stroke: var(--signal-red-bright);
  vector-effect: non-scaling-stroke;
}

.product-reticle-ring {
  stroke-width: 1.15;
  opacity: 0.42;
}

.product-reticle-marks {
  stroke-width: 1.25;
  opacity: 0.72;
}

.product-reticle-centre {
  fill: var(--signal-red-bright);
  opacity: 0.56;
}

.product-focus-light {
  background: #e8eae8;
}

.product-focus-light::before {
  border-color: rgba(30, 30, 30, 0.2);
}

.product-focus-light::after {
  border-color: rgba(160, 24, 21, 0.2);
}

.product-focus-light .product-reticle-ring,
.product-focus-light .product-reticle-marks {
  stroke: #a91f1d;
}

.product-focus-wide {
  --product-reticle-size: 92%;
}

.product-focus-wide .product-reticle {
  z-index: 2;
  opacity: 0.46;
}

.product-focus-pack {
  --product-reticle-size: 90%;
}

.product-focus img {
  position: relative;
  z-index: 1;
  display: block;
  width: calc(100% - 34px);
  height: 246px;
  object-fit: contain;
  filter: saturate(0.91) contrast(1.03);
  animation: object-resolve 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 260ms ease;
}

.concept-two-shot:hover .product-focus img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.04);
}

.product-focus-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-focus-pack img {
  width: 78%;
  height: 255px;
}

.product-index {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 22px;
  padding: 5px 7px;
  background: rgba(5, 5, 5, 0.78);
  color: var(--steel);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.14em;
}

.product-focus figcaption {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 9px;
  border-left: 2px solid var(--signal-red);
  background: rgba(5, 5, 5, 0.86);
  color: var(--steel);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.1em;
}

.product-focus figcaption strong {
  color: var(--white);
  font-weight: 500;
}

.target-corner {
  position: absolute;
  z-index: 4;
  width: 25px;
  height: 25px;
  border-color: var(--signal-red-bright);
  opacity: 0.68;
}

.corner-one {
  top: 11px;
  left: 11px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.corner-two {
  top: 11px;
  right: 11px;
  border-top: 1px solid;
  border-right: 1px solid;
}

.corner-three {
  right: 11px;
  bottom: 11px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.corner-four {
  bottom: 11px;
  left: 11px;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.concept-two-shot .shot-summary h2 {
  max-width: 680px;
  font-family: var(--display);
  font-size: clamp(24px, 2.25vw, 35px);
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.concept-two-shot .shot-summary > p {
  margin: 13px 0 26px;
  line-height: 1.55;
}

.concept-two-shot .shot-facts {
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  max-width: 590px;
}

.concept-two-shot .shot-facts strong {
  font-weight: 600;
}

.concept-two-shot .product-focus {
  align-self: start;
}

.market-comparison {
  max-width: 590px;
  margin-top: 18px;
  padding: 12px 0 10px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.market-comparison header,
.market-result {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.market-comparison header {
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.13em;
}

.market-comparison header strong {
  color: var(--steel);
  font-size: 7px;
  font-weight: 600;
}

.market-result {
  margin-top: 10px;
}

.market-result > strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.market-result > span {
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 7px;
}

.market-below .market-result > strong {
  color: var(--success);
}

.market-near .market-result > strong {
  color: var(--white);
}

.market-above .market-result > strong {
  color: var(--signal-red-bright);
}

.market-unavailable .market-result > strong {
  color: var(--steel);
}

.market-evidence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.market-evidence > span {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 0 9px;
  border-right: 1px solid var(--line);
}

.market-evidence > span:first-child {
  padding-left: 0;
}

.market-evidence > span:last-child {
  padding-right: 0;
  border-right: 0;
}

.market-evidence small {
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: 0.1em;
}

.market-evidence strong {
  color: var(--steel);
  font-size: 8px;
  font-weight: 600;
  line-height: 1.35;
}

.market-reference-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.market-reference-lines > span {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding-right: 12px;
}

.market-reference-lines > span + span {
  padding-right: 0;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.market-reference-lines small {
  color: var(--steel-dark);
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: 0.1em;
}

.market-reference-lines strong {
  color: #727a78;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.35;
}

.market-comparison > p {
  margin: 9px 0 0;
  color: #555d5b;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.035em;
  line-height: 1.45;
}

.market-history {
  display: block;
  margin-top: 5px;
  color: #474d4b;
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: 0.035em;
  line-height: 1.45;
}

.concept-two-shot .shot-action {
  align-self: end;
  padding-bottom: 5px;
}

.atmosphere-reveal {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 360px;
  margin: 0 5.5vw;
  padding-top: 58px;
  border-top: 1px solid #281312;
  background: linear-gradient(180deg, var(--black) 0, rgba(5, 5, 5, 0.7) 22%, rgba(5, 5, 5, 0) 70%);
}

.atmosphere-reveal span {
  display: block;
  margin-top: 10px;
  color: #9a4542;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.18em;
}

.atmosphere-reveal p {
  max-width: 580px;
  margin: 0;
  color: var(--steel);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.7;
}

.atmosphere-reveal em {
  font-weight: 400;
}

@keyframes object-resolve {
  from {
    transform: translateY(8px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .atmosphere-layer {
    left: 198px;
  }

  .concept-two-shot {
    grid-template-columns: minmax(220px, 270px) minmax(300px, 1fr) 170px;
    gap: 23px;
  }

  .product-focus {
    min-height: 290px;
  }

  .product-focus img {
    height: 225px;
  }

  .product-focus-wide img {
    height: 100%;
  }
}

@media (max-width: 900px) {
  .concept-two-header {
    height: 82px;
  }

  .main-masthead strong {
    font-size: 30px;
  }

  .atmosphere-layer {
    left: 0;
  }

  .concept-two-hero {
    grid-template-columns: minmax(0, 1fr) 330px;
    min-height: 310px;
  }

  .concept-two-hero .hero-copy {
    justify-content: center;
    padding: 46px 26px 46px;
  }

  .concept-two-readouts {
    margin-right: 26px;
  }

  .concept-two-shot {
    grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  }

  .concept-two-shot .shot-action {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 210px;
  }
}

@media (max-width: 680px) {
  .concept-two-header {
    height: 70px;
    padding-right: 13px;
    padding-left: 13px;
  }

  .concept-two-header .system-readout strong,
  .concept-two-header .fixture-label {
    display: none;
  }

  .concept-two-header .system-readout {
    width: 36px;
  }

  .main-masthead {
    min-width: 172px;
  }

  .main-masthead small {
    font-size: 6px;
  }

  .main-masthead strong {
    font-size: 25px;
  }

  .main-masthead strong i {
    height: 19px;
  }

  .main-masthead > em {
    margin-top: 4px;
  }

  .masthead-reticle {
    top: -10px;
    width: 19px;
    height: 19px;
  }

  .atmosphere-layer {
    height: 35vh;
    opacity: 0.68;
  }

  .atmosphere-layer > span {
    display: none;
  }

  .concept-two-hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 360px;
  }

  .concept-two-hero .hero-copy {
    justify-content: flex-start;
    padding: 46px 18px 18px;
  }

  .concept-two-hero .hero-copy > p:not(.technical-kicker) {
    margin-top: 24px;
  }

  .concept-two-readouts {
    align-self: end;
    margin: 0 18px 30px;
  }

  .concept-two-readouts span,
  .concept-two-readouts span:first-child,
  .concept-two-readouts span:last-child {
    min-height: 62px;
    padding: 10px;
  }

  .concept-two-shot-list {
    gap: 10px;
    padding-top: 18px;
  }

  .concept-two-shot {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 12px;
  }

  .concept-two-shot::before {
    left: -1px;
  }

  .product-focus {
    min-height: 282px;
  }

  .product-focus img {
    height: 230px;
  }

  .product-focus-wide img {
    width: 100%;
    height: 100%;
  }

  .product-focus-pack img {
    width: 70%;
  }

  .concept-two-shot .shot-summary > p {
    display: block;
    margin-bottom: 20px;
  }

  .concept-two-shot .shot-facts {
    margin-top: 0;
  }

  .market-comparison {
    margin-top: 16px;
  }

  .market-comparison header,
  .market-result {
    align-items: flex-start;
  }

  .market-result {
    display: grid;
    gap: 5px;
  }

  .market-evidence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 0;
  }

  .market-evidence > span:nth-child(2) {
    border-right: 0;
  }

  .market-evidence > span:nth-child(3) {
    padding-left: 0;
  }

  .market-reference-lines {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .market-reference-lines > span + span {
    padding-top: 10px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .concept-two-shot .shot-action {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .atmosphere-reveal {
    min-height: 290px;
    margin: 0 18px;
    padding-top: 42px;
  }
}
