:root {
  --bg: #050913;
  --bg-soft: #08111f;
  --panel: rgba(7, 16, 29, 0.78);
  --panel-solid: #0b1422;
  --text: #f3f7fb;
  --muted: #8da0b6;
  --line: rgba(160, 198, 224, 0.18);
  --line-strong: rgba(0, 217, 255, 0.38);
  --cyan: #00e5ff;
  --blue: #1479ff;
  --green: #00ffaa;
  --red: #ff334f;
  --orange: #ff9800;
  --silver: #d8e6ef;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 20% 0%, rgba(0, 229, 255, 0.14), transparent 28%),
    var(--bg);
  background-size: 54px 54px, 54px 54px, auto, auto;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--bg);
  background: var(--cyan);
  border-radius: 6px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  padding: 16px 24px;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 9, 19, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, 100%);
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 10, 19, 0.76);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  padding: 10px 14px;
}

.brand {
  width: 126px;
  min-width: 126px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: #02060c;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: 42px;
  object-fit: cover;
  object-position: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-menu a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  border-radius: 6px;
  padding: 0 13px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-menu .nav-cta {
  color: #001017;
  background: linear-gradient(135deg, var(--cyan), var(--green));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 190px 24px 0;
  border-bottom: 1px solid var(--line);
}

.hero-bg,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.08);
  opacity: 0.78;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 9, 19, 0.98) 0%, rgba(5, 9, 19, 0.9) 36%, rgba(5, 9, 19, 0.58) 72%, rgba(5, 9, 19, 0.86) 100%),
    linear-gradient(180deg, rgba(5, 9, 19, 0.52), rgba(5, 9, 19, 0.96) 92%);
}

.hero-grid {
  background:
    linear-gradient(90deg, rgba(0, 229, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 229, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, black 24%, black 82%, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto 100px;
}

.system-pill,
.kicker,
.module-strip,
.architecture span,
.flow span,
.terminal-top,
.readout-grid span,
.risk-matrix span,
.mode-grid span,
.hero-metrics span {
  font-family: "JetBrains Mono", Consolas, monospace;
  text-transform: uppercase;
  font-weight: 700;
}

.system-pill {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.08);
  padding: 8px 12px;
  font-size: 0.78rem;
}

.system-pill span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(0, 255, 170, 0.14);
}

.hero h1 {
  width: min(1180px, 100%);
  margin: 24px 0 0;
  font-size: 3.00rem;
  line-height: 0.98;
  font-weight: 900;
}

.accent-text {
  color: var(--cyan);
  text-shadow: 0 0 34px rgba(0, 229, 255, 0.26);
}

.hero p {
  width: min(690px, 100%);
  margin: 26px 0 0;
  color: var(--silver);
  font-size: 1.18rem;
}

.hero-actions,
.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 20px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #001017;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--green));
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--cyan);
}

.hero-metrics {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: rgba(4, 10, 19, 0.84);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.hero-metrics div {
  min-height: 110px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  color: var(--cyan);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 2rem;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.77rem;
}

.module-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: #030711;
  padding: 16px 24px;
  font-size: 0.74rem;
}

.module-strip span {
  flex: 0 0 auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
}

.section {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0;
  scroll-margin-top: 116px;
}

.reality-section {
  padding-bottom: 54px;
}

.intro-section {
  padding-top: 58px;
}

.risk-section {
  padding-top: 68px; /* Pulled up slightly as requested */
}

.intro-section::before,
.trap-section::before,
.evidence-section::before,
.risk-section::before,
.modes-section::before,
.risk-section::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, 0.34) 22%, rgba(160, 198, 224, 0.24) 50%, rgba(0, 229, 255, 0.18) 78%, transparent 100%);
  pointer-events: none;
}

.intro-section::before,
.trap-section::before,
.evidence-section::before,
.risk-section::before,
.modes-section::before {
  top: 0;
}

.risk-section::after {
  bottom: 0;
}

.intro-section::after,
.trap-section::after,
.evidence-section::after,
.modes-section::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  height: 86px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.055), transparent);
  pointer-events: none;
}

.intro-section::after,
.trap-section::after,
.evidence-section::after,
.modes-section::after {
  top: 0;
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 44px;
}

.section-heading.split {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.56fr);
  gap: 40px;
  align-items: end;
}

.kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
}

.section-heading h2,
.access-copy h2 {
  margin: 0;
  font-size: 3.05rem;
  line-height: 1.08;
}

.section-heading p:not(.kicker),
.access-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.liquidity-brief {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.07), transparent 38%),
    rgba(7, 16, 29, 0.72);
  overflow: hidden;
}

.brief-copy {
  padding: 34px;
}

.brief-copy h2 {
  width: min(650px, 100%);
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.08;
}

.brief-copy p:not(.kicker) {
  width: min(760px, 100%);
  margin: 18px 0 0;
  color: var(--silver);
  font-size: 1.04rem;
}

.brief-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border-left: 1px solid var(--line);
}

.brief-panel div {
  min-height: 142px;
  display: grid;
  align-content: center;
  background: rgba(4, 10, 19, 0.9);
  padding: 22px;
}

.brief-panel span,
.brief-panel strong {
  font-family: "JetBrains Mono", Consolas, monospace;
  text-transform: uppercase;
  font-weight: 800;
}

.brief-panel span {
  color: var(--orange);
  font-size: 0.74rem;
}

.brief-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--cyan);
  font-size: 1rem;
}

.brief-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.architecture {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel-solid);
}

.reality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.reality-grid article {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--panel-solid);
  padding: 28px;
}

.reality-grid span {
  color: var(--orange);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reality-grid h3 {
  margin: 38px 0 0;
  font-size: 1.34rem;
  line-height: 1.16;
}

.reality-grid p {
  margin: 16px 0 0;
  color: var(--muted);
}

.architecture article {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--panel-solid);
}

.architecture article:last-child {
  border-right: 0;
}

.architecture span {
  color: var(--blue);
  font-size: 0.82rem;
}

.architecture h3,
.risk-matrix h3,
.mode-grid h3 {
  margin: 42px 0 0;
  font-size: 1.36rem;
  line-height: 1.16;
}

.architecture p,
.risk-matrix p {
  color: var(--muted);
  margin: 16px 0 0;
}

.trap-section {
  padding-top: 96px;
  padding-bottom: 48px;
}

.evidence-section {
  padding-top: 72px;
}

.trap-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.trap-shot,
.trap-note,
.trap-sequence article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
  overflow: hidden;
}

.trap-shot {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  background: #0a0b0d;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.26);
}

.trap-icon-ledger {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.trap-icon-ledger div {
  min-height: 108px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-content: center;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.07), transparent 58%),
    #070b12;
  padding: 16px 18px;
}

.trap-icon-ledger b {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: span 2;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.08);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 1.18rem;
  line-height: 1;
}

.trap-icon-ledger span {
  color: var(--cyan);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trap-icon-ledger p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.trap-flow-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.trap-flow-rail span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: #05090f;
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  padding: 0 8px;
}

.trap-shot img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: initial;
  object-position: initial;
}

.trap-score-panel {
  margin: 0;
  border-top: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0 0 8px 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 229, 255, 0.1), transparent 34%),
    rgba(3, 7, 17, 0.96);
  padding: 16px 18px 18px;
}

.score-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
}

.score-head span,
.trap-note span,
.trap-sequence span {
  color: var(--orange);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.score-head strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  line-height: 1.18;
}

.score-head em {
  flex: 0 0 auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.08);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0 10px;
}

.score-factor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 14px;
}

.score-factor-grid article {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    #07101a;
  padding: 0 12px;
}

.score-factor-grid b,
.score-factor-grid strong {
  font-family: "JetBrains Mono", Consolas, monospace;
  text-transform: uppercase;
}

.score-factor-grid b {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
}

.score-factor-grid strong {
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
}

.trap-brief {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
}

.trap-note {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.07), transparent 48%),
    var(--panel-solid);
}

.trap-note p {
  margin: 14px 0 0;
  color: var(--silver);
}

.trap-sequence {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.trap-sequence article {
  min-height: 168px;
  border: 0;
  border-radius: 0;
  padding: 20px;
}

.trap-sequence h3 {
  margin: 26px 0 0;
  font-size: 1.2rem;
  line-height: 1.16;
}

.trap-sequence p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.dark-section {
  width: 100%;
  max-width: none;
  padding: 108px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 0%, rgba(0, 229, 255, 0.12), transparent 30%),
    #030711;
}

.invert p:not(.kicker) {
  color: var(--silver);
}

.signal-lab {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: 24px;
}

.flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.flow div {
  min-height: 92px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  background: rgba(8, 17, 31, 0.94);
  padding: 22px;
}

.flow span,
.readout-grid span,
.risk-matrix span,
.mode-grid span {
  color: var(--muted);
  font-size: 0.74rem;
}

.flow strong {
  font-size: 1.15rem;
}

.terminal-panel {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(0, 15, 24, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.terminal-top {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.74rem;
}

.terminal-top strong {
  color: var(--green);
}

.readout-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  margin: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.readout-grid div {
  padding: 16px;
  background: #06101c;
}

.readout-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--cyan);
}

pre {
  margin: 16px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #02050b;
  padding: 18px;
}

code {
  color: var(--silver);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.86rem;
}

figure {
  margin: 0;
}

.proof-slide,
.report-shot,
.mode-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.proof-carousel {
  position: relative;
  display: grid;
}

.proof-slide {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.proof-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line);
  background: #02050b;
}

.proof-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-slide figcaption {
  display: grid;
  gap: 14px;
  align-items: start;
  padding: 18px 20px 20px;
  background: linear-gradient(90deg, rgba(3, 7, 17, 0.96), rgba(7, 18, 31, 0.94));
}

.proof-slide span {
  color: var(--orange);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.proof-slide p {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.58;
}

.proof-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(3, 7, 17, 0.68);
  color: var(--silver);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  transform: translateY(-50%);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.proof-arrow:hover,
.proof-arrow:focus-visible {
  border-color: var(--cyan);
  background: rgba(0, 234, 255, 0.14);
  color: var(--text);
  transform: translateY(-50%) scale(1.04);
}

.proof-arrow-prev {
  left: 18px;
}

.proof-arrow-next {
  right: 18px;
}

.proof-counter {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  min-width: 82px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--silver);
  background: rgba(3, 7, 17, 0.72);
  backdrop-filter: blur(14px);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 700;
}

.risk-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.risk-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.risk-matrix article {
  min-height: 250px;
  background: var(--panel-solid);
  padding: 24px;
}

.risk-matrix h3 {
  margin-top: 28px;
}

.report-shot img {
  width: 100%;
  height: calc(100% - 54px);
  min-height: 420px;
  object-fit: cover;
}

.report-shot figcaption {
  min-height: 54px;
  display: flex;
  align-items: center;
  color: var(--silver);
  border-top: 1px solid var(--line);
  padding: 0 16px;
  font-weight: 800;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mode-grid article {
  display: flex;
  flex-direction: column;
}

.mode-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.mode-grid div {
  padding: 22px;
}

.mode-grid h3 {
  margin-top: 10px;
}

img.zoomable-shot {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(1, 5, 12, 0.92);
  backdrop-filter: blur(14px);
  padding: 28px;
  cursor: zoom-out;
}

.image-lightbox.is-open {
  display: flex;
}

.image-lightbox:not([data-gallery="proof"]) .lightbox-nav {
  display: none;
}

.lightbox-frame {
  width: min(1320px, 100%);
  max-height: calc(100vh - 56px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #030711;
  overflow: hidden;
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.62);
  cursor: zoom-out;
}

.lightbox-frame img {
  width: 100%;
  max-height: calc(100vh - 124px);
  object-fit: contain;
  background: #02050b;
  cursor: zoom-out;
}

.lightbox-frame figcaption {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0 16px;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(7, 16, 29, 0.92);
  font-size: 1.8rem;
  line-height: 1;
  cursor: zoom-out;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--text);
  background: rgba(7, 16, 29, 0.82);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font: inherit;
  transform: translateY(-50%);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  border-color: var(--cyan);
  background: rgba(0, 234, 255, 0.12);
  transform: translateY(-50%) scale(1.04);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.access-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 42px 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(0, 229, 255, 0.13), transparent 30%),
    #030711;
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.access-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: block;
}

.access-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 32px;
  row-gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(7, 16, 29, 0.82);
  padding: 24px 28px;
}

.access-copy h2 {
  width: min(720px, 100%);
  margin: 0;
  font-size: 2rem;
  line-height: 1.08;
}

.access-copy p:not(.kicker) {
  width: min(760px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.access-actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  justify-content: flex-start;
  margin-top: 0;
}

.footer {
  padding: 30px 24px;
  background: #030711;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer img {
  width: 126px;
  height: 42px;
  object-fit: cover;
  object-position: left center;
  border-radius: 8px;
}

.footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero-metrics,
  .architecture,
  .reality-grid,
  .mode-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-lab,
  .risk-layout,
  .trap-layout,
  .access-shell,
  .liquidity-brief,
  .proof-slide figcaption,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .brief-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-frame {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px;
  }

  .nav-shell {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand {
    width: 126px;
    min-width: 126px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding-top: 12px;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding: 118px 16px 0;
  }

  .hero-bg {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 9, 19, 0.9), rgba(5, 9, 19, 0.82) 52%, rgba(5, 9, 19, 0.98)),
      linear-gradient(90deg, rgba(5, 9, 19, 0.96), rgba(5, 9, 19, 0.74));
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero p {
    font-size: 1.02rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .hero-metrics div {
    min-height: 92px;
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .hero-metrics div:nth-child(2n) {
    border-right: 0;
  }

  .hero-metrics div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section {
    width: min(100% - 32px, 1180px);
    padding: 76px 0;
  }

  .reality-section {
    padding-bottom: 42px;
  }

  .intro-section {
    padding-top: 52px;
  }

  .section-heading h2,
  .access-copy h2,
  .brief-copy h2 {
    font-size: 2.2rem;
  }

  .brief-copy {
    padding: 24px;
  }

  .access-section {
    padding: 38px 16px;
  }

  .access-copy {
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding: 24px;
  }

  .access-copy h2 {
    font-size: 1.75rem;
  }

  .access-actions {
    grid-column: auto;
    grid-row: auto;
    margin-top: 10px;
  }

  .architecture,
  .reality-grid,
  .hero-metrics,
  .risk-matrix,
  .trap-sequence,
  .trap-icon-ledger,
  .trap-flow-rail,
  .mode-grid {
    grid-template-columns: 1fr;
  }

  .architecture article {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .architecture article:last-child {
    border-bottom: 0;
  }

  .flow div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .proof-frame {
    aspect-ratio: 4 / 3;
  }

  .proof-slide figcaption {
    padding: 16px;
  }

  .proof-arrow {
    width: 42px;
    height: 42px;
  }

  .proof-arrow-prev {
    left: 10px;
  }

  .proof-arrow-next {
    right: 10px;
  }

  .proof-counter {
    top: 10px;
    right: 10px;
    height: 34px;
    min-width: 72px;
    font-size: 0.68rem;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .report-shot img {
    min-height: 300px;
  }

  .trap-icon-ledger div {
    min-height: 106px;
  }

  .trap-flow-rail span {
    min-height: 38px;
  }

  .trap-score-panel {
    padding: 14px;
  }

  .score-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .score-factor-grid {
    grid-template-columns: 1fr;
  }

  .score-factor-grid article {
    min-height: 42px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: 2.15rem;
  }

  .system-pill {
    width: 100%;
    border-radius: 8px;
  }

  .hero-metrics div {
    border-right: 0;
  }
}
