:root {
  --ink: #080b0f;
  --paper: #e5d7c4;
  --paper-bright: #f4ebdf;
  --muted: #9e9a95;
  --red: #cf1f2c;
  --red-hot: #f13541;
  --blue: #123873;
  --line: rgba(230, 223, 211, .18);
  --mono: "Courier New", Courier, monospace;
  --display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  min-width: 1160px;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  -webkit-font-smoothing: antialiased;
}
body::selection { color: var(--ink); background: var(--red-hot); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.grain {
  position: fixed;
  z-index: 30;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  mix-blend-mode: screen;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.48'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 30rem;
  height: 30rem;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: .17;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 85, 170, .45), rgba(38, 85, 170, 0) 67%);
  filter: blur(8px);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 89px;
  padding: 0 4.6vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(230, 223, 211, .12);
  background: linear-gradient(180deg, rgba(8,11,15,.93), rgba(8,11,15,.62));
  backdrop-filter: blur(10px);
}
.brand { display: inline-flex; align-items: center; gap: 14px; width: max-content; }
.brand__mark {
  display: grid;
  width: 34px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(229,215,196,.35);
  transform: rotate(-4deg);
  background: #160d09;
}
.brand__mark img { width: 48px; max-width: none; }
.brand__text {
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: 3.4rem; }
.nav__link {
  position: relative;
  padding: 10px 0;
  color: rgba(229,215,196,.7);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .19em;
  transition: color .25s ease;
}
.nav__link::after {
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--red-hot);
  box-shadow: 0 0 13px rgba(241,53,65,.65);
  transition: width .25s ease;
}
.nav__link:hover, .nav__link.is-active { color: var(--paper-bright); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.header-status {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(229,215,196,.64);
  font-size: .65rem;
  letter-spacing: .15em;
}
.header-status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-hot);
  box-shadow: 0 0 0 0 rgba(241,53,65,.6);
  animation: ping 2.1s infinite;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: max(900px, 100vh);
  padding: 152px 8.4vw 105px;
  overflow: hidden;
  align-items: center;
}
.hero__scene {
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,10,14,.99) 0%, rgba(7,10,14,.94) 36%, rgba(7,10,14,.59) 67%, rgba(7,10,14,.22) 100%),
    linear-gradient(180deg, rgba(7,10,14,.5), rgba(7,10,14,.16) 47%, rgba(7,10,14,.82)),
    url("../assets/images/dossier-environment.png") 68% 41% / 115% auto no-repeat;
  transform: scale(1.04) translate3d(calc(var(--mx, 0) * -5px), calc(var(--my, 0) * -4px), 0);
  transition: transform .2s linear;
}
.hero__grid {
  position: absolute;
  z-index: -3;
  inset: 89px 0 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(201,219,240,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,219,240,.15) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to right, black 4%, black 55%, transparent 94%);
}
.hero__copy { position: relative; z-index: 3; width: 46vw; max-width: 750px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 21px;
  color: rgba(239,229,215,.72);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
}
.eyebrow span { width: 27px; height: 2px; background: var(--red-hot); box-shadow: 0 0 8px var(--red); }
.display-title {
  max-width: 690px;
  margin: 0;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: clamp(5.5rem, 8.8vw, 10.7rem);
  font-weight: 900;
  line-height: .72;
  letter-spacing: -.09em;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(8,11,15,.8), 0 14px 20px rgba(0,0,0,.28);
}
.display-title::after {
  display: block;
  width: 105px;
  height: 3px;
  margin-top: 25px;
  content: "";
  background: var(--red-hot);
  box-shadow: 0 0 16px rgba(241,53,65,.7);
}
.ticker-lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  padding: 13px 19px 11px;
  color: var(--red-hot);
  border: 1px solid rgba(229,215,196,.44);
  box-shadow: inset 0 0 0 1px rgba(213,40,49,.1);
  font-size: clamp(1.5rem, 2vw, 2.3rem);
  letter-spacing: .17em;
  text-transform: uppercase;
}
.ticker-lockup span { font-size: .75em; }
.hero__line {
  margin: 20px 0 28px;
  color: rgba(240,231,218,.72);
  font-size: .81rem;
  line-height: 1.78;
  letter-spacing: .25em;
}
.hero__line b { color: var(--paper-bright); font-weight: 700; }

.ca-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229,215,196,.33);
  background: rgba(6,9,13,.72);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.ca-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 112px;
  height: 2px;
  content: "";
  background: var(--red-hot);
}
.ca-panel--hero { width: min(720px, 46vw); }
.ca-panel__meta {
  display: flex;
  justify-content: space-between;
  padding: 12px 17px 8px;
  color: rgba(229,215,196,.55);
  border-bottom: 1px solid rgba(229,215,196,.14);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .17em;
}
.ca-panel__state { color: #a1bde8; }
.ca-panel__value {
  display: flex;
  align-items: center;
  min-height: 55px;
  padding-left: 17px;
  gap: 14px;
}
.ca-panel code {
  flex: 1;
  overflow: hidden;
  color: var(--paper-bright);
  font-family: var(--mono);
  font-size: .81rem;
  letter-spacing: .06em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.copy-button {
  align-self: stretch;
  padding: 0 17px;
  color: var(--paper-bright);
  border: 0;
  border-left: 1px solid rgba(229,215,196,.18);
  background: rgba(207,31,44,.86);
  cursor: pointer;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.copy-button:hover { background: var(--red-hot); box-shadow: inset 0 0 0 1px rgba(255,255,255,.26); }
.copy-button:active { transform: translateY(1px); }
.hero__actions, .contact__actions { display: flex; gap: 12px; margin-top: 19px; }
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 21px;
  overflow: hidden;
  border: 1px solid rgba(229,215,196,.32);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}
.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 18%, rgba(255,255,255,.22) 46%, transparent 62%);
  transform: translateX(-130%);
  transition: transform .55s ease;
}
.button:hover::before { transform: translateX(130%); }
.button:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.72); }
.button:active { transform: translateY(0); }
.button--red { color: #fff4e8; background: linear-gradient(135deg, #981923, #d12a34 58%, #b51622); box-shadow: 0 9px 18px rgba(152,25,35,.26); }
.button--ghost { color: var(--paper-bright); background: rgba(10,13,18,.4); }
.button__icon { margin-right: 11px; font-size: 1rem; line-height: 0; }

.hero__portrait-wrap {
  position: absolute;
  z-index: 2;
  right: 1.3vw;
  bottom: -3px;
  width: min(48.5vw, 900px);
  height: min(94vh, 1020px);
  pointer-events: none;
  transform: translate3d(calc(var(--mx, 0) * 12px), calc(var(--my, 0) * 7px), 0);
  transition: transform .23s cubic-bezier(.21,.89,.4,1);
}
.hero__portrait {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(-22px 24px 32px rgba(0,0,0,.55));
  user-select: none;
}
.portrait-halo {
  position: absolute;
  z-index: 0;
  right: 4%;
  top: 18%;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(203,31,44,.41);
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(207,31,44,.09), 0 0 45px rgba(22,56,115,.27);
  transform: rotate(11deg);
}
.portrait-halo::before, .portrait-halo::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(73,114,179,.22);
  border-radius: 50%;
}
.portrait-halo::before { inset: 11%; }
.portrait-halo::after { inset: 21%; border-style: dashed; }
.hero__redline {
  position: absolute;
  z-index: 1;
  top: 12%;
  right: 10%;
  width: 73%;
  height: 65%;
  border-right: 2px solid var(--red);
  border-top: 1px solid rgba(207,31,44,.5);
  transform: rotate(-6deg);
  opacity: .86;
}
.portrait-tag {
  position: absolute;
  z-index: 4;
  padding: 8px 10px;
  color: rgba(244,235,223,.8);
  border: 1px solid rgba(229,215,196,.23);
  background: rgba(6,9,13,.74);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  white-space: nowrap;
}
.portrait-tag--one { top: 40%; right: 75%; transform: rotate(-5deg); }
.portrait-tag--two { top: 64%; right: 1%; transform: rotate(4deg); }
.portrait-easter {
  position: absolute;
  z-index: 5;
  top: 37%;
  left: 34%;
  width: 38%;
  height: 26%;
  border: 0;
  cursor: pointer;
  pointer-events: auto;
  background: transparent;
}
.hero__footer {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  padding: 0 8.4vw;
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(229,215,196,.2);
  background: rgba(8,11,15,.72);
}
.scroll-cue, .hero__footer-copy { color: rgba(244,235,223,.73); font-size: .62rem; font-weight: 700; letter-spacing: .17em; }
.scroll-cue { display: inline-flex; align-items: center; gap: 10px; }
.scroll-cue i { width: 18px; height: 29px; border: 1px solid rgba(244,235,223,.53); border-radius: 30px; }
.scroll-cue i::after { display: block; width: 2px; height: 7px; margin: 5px auto 0; content: ""; background: var(--red-hot); animation: scrollDot 1.6s infinite; }
.hero__footer-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--red), rgba(229,215,196,.09)); }
.hero__footer-copy { color: var(--paper); }
.hero__stamp {
  position: absolute;
  z-index: 1;
  color: rgba(241,53,65,.68);
  border: 1px solid rgba(241,53,65,.56);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .18em;
}
.hero__stamp--top { right: 6vw; top: 136px; padding: 10px 13px; transform: rotate(3deg); }
.hero__stamp--side { right: 1vw; top: 51%; padding: 8px 10px; transform: rotate(90deg); transform-origin: right center; }

.marquee {
  position: relative;
  z-index: 3;
  display: flex;
  overflow: hidden;
  align-items: center;
  height: 74px;
  color: var(--ink);
  background: var(--paper);
  white-space: nowrap;
}
.marquee__track { display: flex; align-items: center; gap: 25px; min-width: max-content; animation: crawl 32s linear infinite; }
.marquee span { font-family: var(--display); font-size: 1.1rem; font-weight: 800; letter-spacing: .14em; }
.marquee i { color: var(--red); font-style: normal; }

.section { position: relative; isolation: isolate; overflow: hidden; }
.section__number {
  position: absolute;
  z-index: 3;
  top: 9%;
  right: 8.4vw;
  color: rgba(229,215,196,.24);
  font-family: var(--display);
  font-size: 10rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.1em;
}
.dossier {
  display: grid;
  min-height: 950px;
  padding: 146px 11vw 112px 9vw;
  grid-template-columns: minmax(350px, 42%) minmax(440px, 1fr);
  align-items: center;
  column-gap: 10vw;
  background:
    radial-gradient(circle at 25% 30%, rgba(148,25,35,.16), transparent 35%),
    linear-gradient(115deg, #101217 0%, #0b1019 62%, #09182d 100%);
}
.dossier::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .15;
  background: url("../assets/images/dossier-environment.png") 65% 45% / 115% auto no-repeat;
  mix-blend-mode: screen;
}
.dossier__image-wrap {
  position: relative;
  width: min(34vw, 580px);
  height: min(66vh, 690px);
  overflow: hidden;
  border: 1px solid rgba(229,215,196,.47);
  background: #251919;
  box-shadow: 28px 35px 0 rgba(0,0,0,.17), -2px 0 0 var(--red);
  transform: rotate(-3deg);
}
.dossier__image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 51%; filter: contrast(.96) saturate(.83); }
.dossier__image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(11,9,9,.64));
}
.image-label {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 17px;
  color: #fff1e0;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
}
.photo-corner { position: absolute; z-index: 2; width: 56px; height: 56px; border-color: var(--red-hot); }
.photo-corner--a { top: 13px; left: 13px; border-top: 2px solid; border-left: 2px solid; }
.photo-corner--b { right: 13px; bottom: 13px; border-right: 2px solid; border-bottom: 2px solid; }
.redacted { position: absolute; z-index: 2; left: -13px; height: 8px; background: rgba(8,9,12,.93); }
.redacted--one { top: 28%; width: 29%; }
.redacted--two { top: 31.4%; width: 45%; }
.dossier__copy { max-width: 590px; }
.dossier h2, .rules h2, .contact h2 {
  margin: 0 0 28px;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: clamp(3.7rem, 5.3vw, 6.8rem);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.065em;
}
.body-copy {
  max-width: 540px;
  margin: 0 0 16px;
  color: rgba(229,215,196,.79);
  font-family: Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.65;
}
.body-copy em { color: var(--paper-bright); }
.body-copy--thin { max-width: 460px; color: rgba(229,215,196,.56); font-size: 1rem; }
.dossier__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 27px;
  margin-top: 33px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: #b6c5dc;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.rules {
  min-height: 1000px;
  padding: 125px 8.4vw 80px;
  background: #120f0f;
}
.rules::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: .22;
  background: linear-gradient(90deg, rgba(9,10,13,.94), rgba(9,10,13,.6)), url("../assets/images/dossier-environment.png") 73% 45% / 115% auto no-repeat;
}
.rules__ambient {
  position: absolute;
  z-index: -1;
  right: -15vw;
  top: 0;
  width: 80vw;
  height: 80vw;
  border: 1px solid rgba(27,77,144,.34);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(27,77,144,.19);
}
.rules__ambient::before {
  position: absolute;
  inset: 8%;
  content: "";
  border: 1px dashed rgba(229,215,196,.15);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.rules__top { position: relative; z-index: 2; max-width: 700px; }
.rules__top h2 { margin-bottom: 18px; }
.rules__top > p:last-child { max-width: 440px; color: rgba(229,215,196,.67); font-family: Georgia, serif; font-size: 1.05rem; line-height: 1.5; }
.rules__list {
  position: relative;
  z-index: 3;
  display: flex;
  width: 75%;
  max-width: 1110px;
  margin-top: 65px;
  border-top: 1px solid rgba(229,215,196,.27);
}
.rule {
  position: relative;
  flex: 1;
  min-height: 232px;
  padding: 21px 30px 20px 0;
  border-right: 1px solid rgba(229,215,196,.22);
}
.rule + .rule { padding-left: 30px; }
.rule:last-child { border-right: 0; }
.rule::after {
  position: absolute;
  top: -4px;
  left: 0;
  width: 60px;
  height: 6px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s ease;
}
.rule:hover::after { transform: scaleX(1); }
.rule__index { display: block; margin-bottom: 32px; color: var(--red-hot); font-size: .75rem; letter-spacing: .14em; }
.rule h3 { margin: 0; color: var(--paper-bright); font-family: var(--display); font-size: clamp(1.55rem, 2.2vw, 2.7rem); line-height: .93; letter-spacing: -.045em; }
.rule p { max-width: 215px; margin: 19px 0 0; color: rgba(229,215,196,.59); font-family: Georgia, serif; font-size: .93rem; line-height: 1.45; }
.rules__portrait {
  position: absolute;
  z-index: 1;
  right: -1vw;
  bottom: -1px;
  width: min(45vw, 810px);
  height: 86%;
  pointer-events: none;
}
.rules__portrait::before {
  position: absolute;
  top: 14%;
  left: 8%;
  width: 80%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(207,31,44,.5);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(24,64,135,.47);
}
.rules__portrait img { position: absolute; right: 0; bottom: 0; width: 100%; height: 100%; object-fit: contain; object-position: right bottom; opacity: .74; filter: grayscale(.16) contrast(1.06) drop-shadow(0 14px 24px rgba(0,0,0,.74)); }
.rules__seal {
  position: absolute;
  z-index: 2;
  top: 27%;
  left: 2%;
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  color: rgba(255,230,230,.82);
  border: 2px solid var(--red-hot);
  border-radius: 50%;
  background: rgba(145,18,26,.2);
  box-shadow: inset 0 0 0 4px rgba(255,236,221,.13);
  font-size: .58rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .14em;
  text-align: center;
  transform: rotate(-13deg);
}

.interlude {
  position: relative;
  display: grid;
  min-height: 830px;
  overflow: hidden;
  place-items: center;
  background: #0a0f16;
}
.interlude__image {
  position: absolute;
  inset: 0;
  opacity: .79;
  background: url("../assets/images/dossier-environment.png") 58% 43% / 115% auto no-repeat;
  filter: grayscale(.42) contrast(1.25) brightness(.47);
  transform: scale(1.06);
}
.interlude__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,6,8,.94), rgba(4,6,8,.36) 47%, rgba(4,6,8,.84)),
    radial-gradient(circle at 52% 52%, transparent 0, rgba(5,7,10,.23) 47%, rgba(5,7,10,.85) 100%);
}
.interlude__content { position: relative; z-index: 2; width: min(73vw, 1250px); margin-top: 30px; }
.interlude blockquote {
  max-width: 920px;
  margin: 0;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: clamp(4rem, 7.2vw, 9.7rem);
  font-weight: 800;
  line-height: .84;
  letter-spacing: -.075em;
}
.interlude__content > p:last-child { margin: 24px 0 0 8px; color: var(--red-hot); font-size: .72rem; font-weight: 700; letter-spacing: .14em; }
.interlude__classified {
  position: absolute;
  z-index: 2;
  right: 8vw;
  bottom: 10%;
  color: rgba(241,53,65,.6);
  border: 4px solid rgba(241,53,65,.56);
  padding: 8px 14px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 3.4rem);
  font-weight: 800;
  letter-spacing: .05em;
  transform: rotate(-11deg);
}

.contact {
  display: grid;
  min-height: 930px;
  padding: 157px 10vw 100px 9vw;
  grid-template-columns: minmax(340px, .85fr) minmax(510px, 1.15fr);
  align-items: center;
  gap: 4vw;
  background:
    radial-gradient(circle at 78% 65%, rgba(173,24,35,.27), transparent 27%),
    linear-gradient(125deg, #0a0d11, #100f10 68%, #15100e);
}
.contact::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .22;
  background-image: linear-gradient(rgba(224,217,207,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(224,217,207,.07) 1px, transparent 1px);
  background-size: 64px 64px;
}
.contact__copy { position: relative; z-index: 3; }
.contact__copy h2 { margin-bottom: 23px; }
.contact__card {
  position: relative;
  z-index: 3;
  width: min(100%, 690px);
  padding: 23px;
  border: 1px solid rgba(229,215,196,.39);
  background: rgba(9,12,16,.84);
  box-shadow: 27px 29px 0 rgba(97,14,20,.27), 0 26px 70px rgba(0,0,0,.35);
}
.contact__card::after {
  position: absolute;
  right: -8px;
  top: -8px;
  width: 120px;
  height: 80px;
  content: "";
  border-top: 2px solid var(--red-hot);
  border-right: 2px solid var(--red-hot);
  pointer-events: none;
}
.contact__card-top { display: flex; justify-content: space-between; padding-bottom: 18px; color: rgba(229,215,196,.58); border-bottom: 1px solid rgba(229,215,196,.18); font-size: .63rem; font-weight: 700; letter-spacing: .16em; }
.ca-panel--final { margin-top: 25px; }
.contact__actions { margin-top: 13px; }
.contact__actions .button { flex: 1; }
.contact__note { margin: 20px 0 0; color: rgba(229,215,196,.48); font-size: .61rem; letter-spacing: .1em; }
.contact__note code { color: rgba(229,215,196,.76); }
.contact__mask {
  position: absolute;
  z-index: 2;
  right: -7vw;
  bottom: -2px;
  width: min(31vw, 570px);
  height: 72%;
  opacity: .4;
  pointer-events: none;
}
.contact__mask img { width: 100%; height: 100%; object-fit: contain; object-position: right bottom; filter: grayscale(.35); }

.site-footer {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 22px 8.4vw;
  color: rgba(229,215,196,.54);
  border-top: 1px solid rgba(229,215,196,.17);
  background: #080a0d;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.toast {
  position: fixed;
  z-index: 50;
  top: 104px;
  left: 50%;
  padding: 13px 18px;
  color: #fff3e5;
  border: 1px solid rgba(255,243,229,.41);
  background: rgba(173,22,32,.96);
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -22px);
  transition: opacity .22s ease, transform .22s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .75s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.bag-blinked .hero__portrait { animation: bagBlink .68s ease both; }
.bag-blinked .hero__redline { border-color: var(--paper-bright); box-shadow: 0 0 22px rgba(241,53,65,.72); }

@keyframes crawl { to { transform: translateX(-50%); } }
@keyframes scrollDot { 0%,100% { opacity: 0; transform: translateY(0); } 30%,70% { opacity: 1; } 80% { opacity: 0; transform: translateY(10px); } }
@keyframes ping { 70% { box-shadow: 0 0 0 8px rgba(241,53,65,0); } 100% { box-shadow: 0 0 0 0 rgba(241,53,65,0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bagBlink { 0%, 100% { filter: drop-shadow(-22px 24px 32px rgba(0,0,0,.55)); } 37% { filter: brightness(1.34) contrast(1.18) drop-shadow(-22px 24px 45px rgba(207,31,44,.58)); } }
@media (max-width: 1420px) {
  .hero { padding-left: 7vw; }
  .hero__footer { padding: 0 7vw; }
  .display-title { font-size: 7.8vw; }
  .nav { gap: 2rem; }
  .dossier { column-gap: 7vw; }
  .rules__list { width: 80%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
