:root {
  --bg: #070708;
  --panel: #0e0e10;
  --panel2: #151518;
  --text: #f4f4f1;
  --muted: #9b9ba2;
  --line: #26262b;
  --red: #ff3131;
  --red2: #a90000;
  --green: #63e66c;
  --display: "Barlow Condensed", sans-serif;
  --body: "Inter", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.section-pad {
  padding: 110px 0;
}
.site-header {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: rgba(7, 7, 8, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.brand-mark {
  font-size: 13px;
  border: 1px solid var(--red);
  color: var(--red);
  padding: 6px 7px;
  transform: rotate(-3deg);
}
.nav {
  display: flex;
  gap: 30px;
  color: #b8b8bd;
  font-size: 13px;
}
.nav a:hover {
  color: white;
}
.status-dot {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
}
.status-dot i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(255, 49, 49, 0.11);
  margin-right: 9px;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 11px rgba(255, 49, 49, 0);
  }
}
.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 0 70px;
  position: relative;
}
.hero:before {
  content: "CASE 001";
  position: absolute;
  right: -20px;
  top: 70px;
  font: 800 180px/1 var(--display);
  color: #0b0b0d;
  z-index: -1;
  letter-spacing: -0.04em;
}
.hero-kicker,
.section-heading p {
  color: var(--red);
  font: 700 12px/1 var(--body);
  letter-spacing: 0.18em;
  margin: 0 0 18px;
}
.hero h1 {
  font: 800 clamp(70px, 10vw, 145px)/0.77 var(--display);
  letter-spacing: -0.045em;
  margin: 0;
  max-width: 1000px;
  text-transform: uppercase;
}
.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px #6c6c72;
}
.hero-copy {
  max-width: 720px;
  color: #b6b6bb;
  font-size: 18px;
  line-height: 1.65;
  margin: 36px 0 28px;
}
.hero-actions {
  display: flex;
  gap: 12px;
}
.btn {
  padding: 14px 20px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.btn.primary {
  background: var(--red);
  border-color: var(--red);
  color: white;
}
.btn.ghost:hover {
  border-color: #5a5a60;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  margin-top: 70px;
}
.stat {
  padding: 22px;
  border-right: 1px solid var(--line);
  background: rgba(14, 14, 16, 0.65);
}
.stat:last-child {
  border-right: 0;
}
.stat-label {
  display: block;
  font-size: 10px;
  color: #717178;
  letter-spacing: 0.13em;
  margin-bottom: 8px;
}
.stat strong {
  font: 700 29px/1 var(--display);
}
.wallahi strong {
  color: var(--red);
}
.section-heading {
  text-align: center;
  margin-bottom: 45px;
}
.section-heading.left {
  text-align: left;
}
.section-heading h2 {
  font: 800 clamp(46px, 7vw, 82px)/0.9 var(--display);
  letter-spacing: -0.03em;
  margin: 0;
}
.subjects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.subject-card {
  display: grid;
  grid-template-columns: 47% 53%;
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 540px;
  overflow: hidden;
}
.subject-img-wrap {
  min-height: 100%;
  overflow: hidden;
}
.subject-img-wrap img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(12%) contrast(1.05);
}
.subject-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.tag {
  font: 700 11px/1 var(--body);
  color: var(--red);
  letter-spacing: 0.16em;
}
.subject-info h3 {
  font: 800 76px/0.8 var(--display);
  margin: 13px 0 18px;
}
.subject-info a {
  font-weight: 700;
  margin-bottom: 24px;
}
.subject-info p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.timeline {
  border-top: 1px solid var(--line);
}
.timeline article {
  display: grid;
  grid-template-columns: 140px 280px 1fr;
  gap: 30px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.timeline span {
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.16em;
  font-weight: 700;
}
.timeline h3 {
  font: 700 28px/1 var(--display);
  margin: 0;
}
.timeline p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  max-width: 650px;
}
.hunt-section {
  background: linear-gradient(180deg, #0b0808, #070708);
  border-top: 1px solid #231414;
  border-bottom: 1px solid #231414;
}
.hunt-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.lead {
  font-size: 18px;
  line-height: 1.7;
  color: #bbb;
}
.targets {
  margin-top: 28px;
  border-top: 1px solid #332020;
}
.target {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #332020;
  font: 700 19px/1 var(--display);
}
.target b {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--red);
}
.target.acquired b {
  color: var(--green);
}
.mission-note {
  margin-top: 28px;
  padding: 18px;
  border: 1px dashed #7b2828;
  color: #ff8585;
  font: 800 17px/1 var(--display);
  letter-spacing: 0.1em;
  text-align: center;
  transform: rotate(-1deg);
}
.poster-card {
  margin: 0;
  border: 1px solid #3a2020;
  background: #0d0909;
  padding: 12px;
  transform: rotate(1deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.poster-card img {
  aspect-ratio: 0.88;
  object-fit: cover;
}
.poster-card figcaption {
  font-size: 10px;
  color: #777;
  padding: 10px 4px 2px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.evidence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.evidence-card {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}
.evidence-card img {
  height: 520px;
  object-fit: cover;
  object-position: center top;
}
.evidence-card > div {
  padding: 28px;
}
.evidence-card span {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.evidence-card h3 {
  font: 700 32px/1 var(--display);
  margin: 11px 0 12px;
}
.evidence-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.quote-box {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 60px 0;
  text-align: center;
}
.quote-small {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.quote-box blockquote {
  font: 700 clamp(34px, 6vw, 70px)/1 var(--display);
  max-width: 900px;
  margin: 24px auto 0;
}
footer {
  border-top: 1px solid var(--line);
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 40px;
  color: #69696f;
  font-size: 11px;
  line-height: 1.6;
}
.footer strong,
footer strong {
  display: block;
  color: #cfcfd3;
  font: 700 18px/1 var(--display);
  margin-bottom: 6px;
}
footer p {
  max-width: 620px;
  margin: 0;
  text-align: right;
}
@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat:nth-child(2) {
    border-right: 0;
  }
  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .subjects-grid,
  .hunt-grid,
  .evidence-grid {
    grid-template-columns: 1fr;
  }
  .subject-card {
    min-height: 480px;
  }
  .timeline article {
    grid-template-columns: 90px 1fr;
  }
  .timeline p {
    grid-column: 2;
  }
  .hunt-grid {
    gap: 35px;
  }
  .poster-card {
    max-width: 650px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .section-shell {
    width: min(100% - 26px, 1180px);
  }
  .site-header {
    padding: 0 13px;
    height: 66px;
  }
  .brand {
    font-size: 20px;
  }
  .status-dot {
    font-size: 11px;
  }
  .hero {
    min-height: auto;
    padding-top: 75px;
  }
  .hero h1 {
    font-size: clamp(59px, 20vw, 90px);
  }
  .hero-copy {
    font-size: 15px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn {
    text-align: center;
  }
  .hero-grid {
    margin-top: 46px;
  }
  .stat {
    padding: 16px;
  }
  .stat strong {
    font-size: 24px;
  }
  .section-pad {
    padding: 78px 0;
  }
  .subjects-grid {
    gap: 14px;
  }
  .subject-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .subject-img-wrap {
    height: 420px;
  }
  .subject-info {
    padding: 28px;
  }
  .subject-info h3 {
    font-size: 62px;
  }
  .timeline article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .timeline p {
    grid-column: 1;
  }
  .timeline h3 {
    font-size: 25px;
  }
  .evidence-card img {
    height: 430px;
  }
  .hunt-grid {
    grid-template-columns: 1fr;
  }
  .section-heading h2 {
    font-size: 50px;
  }
  footer {
    flex-direction: column;
  }
  footer p {
    text-align: left;
  }
  .hero:before {
    font-size: 100px;
    right: -10px;
    top: 20px;
  }
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.pxrity-credit {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #69696f;
  transition: color 0.2s ease;
}
.pxrity-credit strong {
  display: inline;
  margin: 0;
  color: #8b5cff;
  font: 800 11px/1 var(--body);
  letter-spacing: 0.16em;
}
.pxrity-credit:hover {
  color: #cfcfd3;
}
.pxrity-credit:hover strong {
  color: #a784ff;
}
@media (max-width: 600px) {
  .footer-right {
    align-items: flex-start;
  }
}

.catchphrase {
  display: inline-block;
  width: max-content;
  margin: 0 0 24px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 49, 49, 0.38);
  background: rgba(255, 49, 49, 0.07);
  color: #f2f2f4;
  font: 800 16px/1 var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-1deg);
}
