@font-face {
  font-family: "Anybody";
  src: url("/fonts/anybody-normal-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

@font-face {
  font-family: "Anybody";
  src: url("/fonts/anybody-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 700 900;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("/fonts/sora-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/jetbrains-mono-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --font-display: "Anybody";
  --font-body: "Sora";
  --font-mono: "JetBrains Mono";
  --sewer: #070809;
  --sewer-soft: #0d0c11;
  --steel: #211f28;
  --steel-light: #302b38;
  --bruise: #702cff;
  --orchid: #b04fff;
  --fog: #91f65b;
  --fog-soft: #c2ff9d;
  --bone: #ded6c7;
  --white: #fffdf8;
  --muted: #a69da9;
  --rule: rgba(222, 214, 199, 0.16);
  --purple-rule: rgba(176, 79, 255, 0.34);
  --green-rule: rgba(145, 246, 91, 0.38);
  --max: 1500px;
  --cut: polygon(0 0, calc(100% - 17px) 0, 100% 17px, 100% 100%, 17px 100%, 0 calc(100% - 17px));
}

* {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

html {
  background: var(--sewer);
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--sewer);
  color: var(--bone);
  font-family: var(--font-body), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  z-index: 999;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 12% 28%, rgba(255, 255, 255, 0.85) 0 0.35px, transparent 0.7px 4px),
    repeating-radial-gradient(circle at 78% 63%, rgba(255, 255, 255, 0.4) 0 0.4px, transparent 0.75px 5px);
  background-size: 7px 7px, 11px 11px;
  mix-blend-mode: overlay;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
}

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

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
}

::selection {
  background: var(--fog);
  color: var(--sewer);
}

:focus-visible {
  outline: 3px solid var(--fog);
  outline-offset: 5px;
}

.neon-site {
  min-height: 100vh;
  isolation: isolate;
  overflow: clip;
  background:
    radial-gradient(circle at 82% 18%, rgba(112, 44, 255, 0.08), transparent 30rem),
    var(--sewer);
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 12px;
  left: 12px;
  padding: 0.8rem 1rem;
  background: var(--fog);
  color: var(--sewer);
  font-family: var(--font-mono), monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 500;
  inset: 0 0 auto;
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3vw;
  border-bottom: 1px solid rgba(176, 79, 255, 0.22);
  background: linear-gradient(180deg, rgba(7, 8, 9, 0.94), rgba(7, 8, 9, 0.7));
  backdrop-filter: blur(14px) saturate(1.4);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bruise), var(--fog), transparent);
  opacity: 0.52;
}

.wordmark,
.footer-wordmark {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
  transform: skewX(-5deg);
}

.wordmark b {
  color: var(--orchid);
  text-shadow: 2px 2px 0 rgba(145, 246, 91, 0.24), 0 0 18px rgba(176, 79, 255, 0.45);
}

.wordmark-dot {
  width: 8px;
  height: 8px;
  margin-right: 0.3rem;
  border-radius: 50%;
  background: var(--fog);
  box-shadow: 0 0 10px var(--fog), 0 0 24px rgba(145, 246, 91, 0.7);
  animation: signal-blink 1.7s steps(2, end) infinite;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 2.4vw, 2.8rem);
}

.desktop-nav a,
.nav-x,
.site-footer nav a {
  position: relative;
  font-family: var(--font-mono), monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(222, 214, 199, 0.72);
}

.desktop-nav a::after,
.site-footer nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.6rem;
  height: 2px;
  background: var(--fog);
  box-shadow: 0 0 8px rgba(145, 246, 91, 0.75);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
}

.nav-x {
  justify-self: end;
  color: var(--fog-soft);
}

.nav-x span {
  margin-left: 0.5rem;
  color: var(--orchid);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: max(760px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--purple-rule);
  background: #060709;
}

.hero-picture {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.025);
  animation: hero-arrive 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-vignette {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.78) 28%, rgba(5, 6, 8, 0.18) 58%, rgba(5, 6, 8, 0.25) 100%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.9) 0%, transparent 36%, rgba(5, 6, 8, 0.25) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0, 0, 0, 0.12) 3px 4px);
  mix-blend-mode: multiply;
}

.hero-fog {
  position: absolute;
  z-index: 2;
  width: 66vw;
  height: 20vw;
  bottom: -7vw;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(101, 208, 68, 0.6), rgba(72, 150, 48, 0.24) 38%, transparent 72%);
  filter: blur(26px);
  mix-blend-mode: screen;
  animation: fog-drift 9s ease-in-out infinite alternate;
}

.hero-fog-one {
  left: -14vw;
}

.hero-fog-two {
  right: -18vw;
  bottom: 2vw;
  animation-delay: -4s;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(780px, 54vw);
  margin-left: 5vw;
  padding: 8rem 0 7rem;
}

.warning-line,
.section-label {
  margin: 0 0 1.4rem;
  color: var(--fog-soft);
  font-family: var(--font-mono), monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.5;
  text-transform: uppercase;
}

.warning-line span {
  display: inline-block;
  margin-right: 0.65rem;
  color: var(--fog);
  animation: signal-blink 1.4s steps(2, end) infinite;
}

.hero h1 {
  position: relative;
  width: min-content;
  margin: 0;
  font-family: var(--font-display), Impact, sans-serif;
  font-style: italic;
  font-weight: 900;
  line-height: 0.68;
  text-transform: uppercase;
  transform: rotate(-2deg) skewX(-4deg);
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.55));
}

.hero h1::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -5%;
  right: -7%;
  bottom: -12%;
  height: 24%;
  opacity: 0.55;
  background: linear-gradient(90deg, transparent, rgba(145, 246, 91, 0.58), transparent);
  clip-path: polygon(0 42%, 68% 15%, 100% 56%, 76% 62%, 27% 96%);
  filter: blur(4px);
}

.hero-master,
.hero-xsire {
  display: block;
}

.hero-master {
  padding-left: 0.52em;
  color: var(--bone);
  font-size: clamp(4.5rem, 9vw, 10.5rem);
  letter-spacing: -0.05em;
  -webkit-text-stroke: 1px rgba(145, 246, 91, 0.38);
  text-shadow: -5px 5px 0 rgba(24, 60, 20, 0.5);
}

.hero-xsire {
  margin-top: 0.16em;
  color: var(--orchid);
  font-size: clamp(7.5rem, 15vw, 17rem);
  letter-spacing: -0.085em;
  -webkit-text-stroke: 2px rgba(235, 205, 255, 0.44);
  text-shadow:
    -7px 7px 0 rgba(50, 13, 86, 0.82),
    5px 12px 0 rgba(56, 116, 34, 0.48),
    0 0 34px rgba(112, 44, 255, 0.35);
}

.hero-tagline {
  margin: 2.4rem 0 0;
  color: var(--white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-note {
  margin: 0.7rem 0 0;
  color: rgba(222, 214, 199, 0.72);
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.slash-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.8rem;
  padding: 0.95rem 1.2rem 0.92rem 1.45rem;
  border: 0;
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  clip-path: var(--cut);
  transition: transform 170ms ease, background 170ms ease, color 170ms ease, box-shadow 170ms ease;
}

.slash-button:hover {
  transform: translateY(-3px) rotate(-0.5deg);
}

.slash-button-lime {
  background: var(--fog);
  color: #071006;
  box-shadow: 0 12px 34px rgba(90, 193, 58, 0.24);
}

.slash-button-lime:hover {
  background: var(--white);
}

.slash-button-dark {
  border: 1px solid rgba(176, 79, 255, 0.6);
  background: rgba(10, 8, 13, 0.78);
  color: var(--white);
}

.slash-button-dark:hover {
  background: var(--orchid);
  color: var(--sewer);
}

.slash-button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
  transform: none;
}

.hero-corner {
  position: absolute;
  z-index: 4;
  right: 3vw;
  bottom: 2.2rem;
  display: grid;
  justify-items: end;
  gap: 0.45rem;
  color: rgba(222, 214, 199, 0.64);
  font-family: var(--font-mono), monospace;
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-corner span:first-child {
  color: var(--orchid);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 2rem;
  left: 5vw;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue span {
  color: var(--fog);
}

.marquee-stack {
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--purple-rule);
  background: #0b080e;
  transform: rotate(-0.7deg) scale(1.012);
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee + .marquee {
  margin-top: 0.3rem;
  border-top: 1px solid rgba(145, 246, 91, 0.13);
  padding-top: 0.35rem;
}

.marquee > div {
  width: max-content;
  display: flex;
  animation: crawl-left 30s linear infinite;
}

.marquee-reverse > div {
  animation-name: crawl-right;
  animation-duration: 37s;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding-right: 1.4rem;
  color: var(--bone);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.marquee-forward span:nth-child(3n + 1),
.marquee-reverse span:nth-child(2n) {
  color: transparent;
  -webkit-text-stroke: 1px var(--orchid);
}

.marquee i {
  color: var(--fog);
  font-size: 0.72em;
  font-style: normal;
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 4vw;
}

.section-heading h2,
.persona-copy h2,
.wheel-copy h2,
.tribute-copy h2,
.request-heading h2,
.afterhours h2 {
  margin: 0;
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(4rem, 7.8vw, 9rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.82;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading > p:last-child,
.request-heading > p:last-child {
  max-width: 580px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.section-label {
  color: var(--orchid);
}

.damage-section {
  padding: clamp(7rem, 10vw, 11rem) 0;
  background:
    linear-gradient(rgba(145, 246, 91, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 246, 91, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 10% 70%, rgba(78, 145, 47, 0.1), transparent 25rem),
    var(--sewer);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.section-heading-wide {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 1rem 4rem;
  align-items: end;
}

.section-heading-wide .section-label {
  margin: 0 0 0.6rem;
}

.section-heading-wide > p:last-child {
  grid-column: 2;
}

.poster-grid {
  max-width: var(--max);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin: 4rem auto 0;
  padding: 0 4vw;
}

.action-poster {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--purple-rule);
  background: #101014;
  clip-path: var(--cut);
  transform: translateZ(0);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms ease;
}

.action-poster:nth-child(even) {
  margin-top: 2rem;
}

.action-poster:hover {
  z-index: 2;
  border-color: var(--fog);
  transform: translateY(-10px) rotate(-0.8deg);
}

.action-poster:nth-child(even):hover {
  transform: translateY(-10px) rotate(0.8deg);
}

.action-poster > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1), filter 400ms ease;
}

.action-poster:hover > img {
  transform: scale(1.055);
  filter: saturate(1.18) contrast(1.05);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 9, 0.42), transparent 32%),
    linear-gradient(0deg, rgba(7, 8, 9, 0.97), rgba(7, 8, 9, 0.05) 67%);
}

.poster-top {
  position: absolute;
  inset: 1.2rem 1.2rem auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.live-dot {
  color: var(--fog);
}

.live-dot::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.poster-copy {
  position: absolute;
  inset: auto 1.35rem 1.35rem;
}

.poster-copy h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(2.6rem, 3.5vw, 4rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-transform: uppercase;
}

.poster-copy p {
  min-height: 4.5rem;
  margin: 1rem 0 1.2rem;
  color: rgba(222, 214, 199, 0.72);
  font-size: 0.78rem;
  line-height: 1.55;
}

.poster-copy b {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--green-rule);
  color: var(--fog-soft);
  font-family: var(--font-mono), monospace;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-section {
  padding: clamp(7rem, 10vw, 11rem) 0;
  background: #0b0910;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 0.5fr 1.25fr 0.55fr;
  gap: 3rem;
  align-items: end;
}

.gallery-heading .section-label,
.gallery-heading > p:last-child {
  margin-bottom: 0.4rem;
}

.gallery-heading > p:last-child {
  color: rgba(222, 214, 199, 0.66);
}

.gallery-grid {
  max-width: var(--max);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(14, 72px);
  gap: 0.8rem;
  margin: 4rem auto 0;
  padding: 0 4vw;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  border: 1px solid rgba(176, 79, 255, 0.22);
  background: var(--steel);
  cursor: zoom-in;
  text-align: left;
  clip-path: var(--cut);
}

.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 8; }
.gallery-item:nth-child(2) { grid-column: 5 / 13; grid-row: 1 / 6; }
.gallery-item:nth-child(3) { grid-column: 5 / 9; grid-row: 6 / 13; }
.gallery-item:nth-child(4) { grid-column: 9 / 13; grid-row: 6 / 10; }
.gallery-item:nth-child(5) { grid-column: 1 / 5; grid-row: 8 / 13; }
.gallery-item:nth-child(6) { grid-column: 9 / 13; grid-row: 10 / 15; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1), filter 350ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 8, 9, 0.88), transparent 42%);
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.18);
}

.gallery-index,
.gallery-caption {
  position: absolute;
  z-index: 2;
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-index {
  top: 1rem;
  left: 1rem;
  color: var(--fog);
  text-shadow: 0 2px 8px #000;
}

.gallery-caption {
  inset: auto 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-caption b {
  color: var(--fog);
  font-size: 1rem;
}

.persona-section {
  min-height: 900px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  background: var(--fog);
  color: #071006;
}

.persona-photo {
  position: relative;
  overflow: hidden;
  background: #0b0a0d;
}

.persona-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: contrast(1.05) saturate(0.9);
}

.persona-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 8, 9, 0.8), transparent 45%);
}

.persona-photo > span {
  position: absolute;
  z-index: 2;
  inset: auto 1.4rem 1.2rem;
  color: var(--fog-soft);
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
}

.persona-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 9rem);
  background:
    repeating-linear-gradient(-11deg, transparent 0 19px, rgba(7, 16, 6, 0.035) 19px 20px),
    var(--fog);
}

.persona-copy .section-label {
  color: rgba(7, 16, 6, 0.62);
}

.persona-copy h2 {
  font-size: clamp(4.7rem, 8vw, 9.2rem);
  text-shadow: 4px 5px 0 rgba(255, 255, 255, 0.25);
}

.persona-lead {
  max-width: 640px;
  margin: 2rem 0 0;
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.persona-copy > p:not(.section-label):not(.persona-lead) {
  max-width: 580px;
  margin: 1.5rem 0 0;
  color: rgba(7, 16, 6, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
}

.ink-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.2rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid currentColor;
  font-family: var(--font-mono), monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ink-link:hover {
  color: var(--bruise);
}

.offers-section {
  padding: clamp(7rem, 11vw, 12rem) 0;
  background:
    radial-gradient(circle at 84% 10%, rgba(112, 44, 255, 0.18), transparent 32rem),
    #0b0910;
}

.offers-heading {
  display: grid;
  grid-template-columns: 0.45fr 1.15fr 0.6fr;
  gap: 3rem;
  align-items: end;
}

.offer-grid {
  max-width: var(--max);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 4rem auto 0;
  padding: 0 4vw;
}

.offer-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--purple-rule);
  background: var(--steel);
  clip-path: var(--cut);
}

.offer-card:nth-child(2) {
  transform: translateY(2.3rem);
}

.offer-image {
  height: 380px;
  position: relative;
  overflow: hidden;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 500ms ease, filter 300ms ease;
}

.offer-card:hover .offer-image img {
  transform: scale(1.045);
  filter: saturate(1.12);
}

.offer-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--steel), transparent 44%);
}

.offer-image > span {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  color: var(--fog);
  font-family: var(--font-mono), monospace;
  font-size: 0.62rem;
}

.offer-copy {
  padding: 0 1.5rem 1.5rem;
}

.offer-copy > p,
.offer-copy small {
  color: var(--orchid);
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.offer-copy > p {
  margin: 0 0 0.65rem;
}

.offer-copy h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(3.5rem, 5vw, 6rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.85;
  text-transform: uppercase;
}

.offer-copy > span {
  min-height: 6.8rem;
  display: block;
  margin-top: 1.3rem;
  color: rgba(222, 214, 199, 0.67);
  font-size: 0.82rem;
  line-height: 1.62;
}

.offer-copy small {
  display: block;
  padding: 1rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
}

.offer-copy a {
  display: flex;
  justify-content: space-between;
  margin-top: 1.25rem;
  color: var(--fog-soft);
  font-family: var(--font-mono), monospace;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-copy a:hover {
  color: var(--white);
}

.wheel-section {
  min-height: 930px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
  border-top: 1px solid var(--purple-rule);
  border-bottom: 1px solid var(--purple-rule);
  background: #08070b;
}

.wheel-art {
  position: relative;
  overflow: hidden;
  min-height: 800px;
}

.wheel-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, #08070b 100%), linear-gradient(0deg, #08070b, transparent 28%);
}

.wheel-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1) contrast(1.04);
}

.wheel-ring {
  position: absolute;
  z-index: 2;
  right: 7%;
  bottom: 8%;
  width: clamp(130px, 16vw, 250px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px dashed var(--fog);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(145, 246, 91, 0.18), inset 0 0 45px rgba(112, 44, 255, 0.24);
  animation: ring-turn 18s linear infinite;
}

.wheel-ring::before,
.wheel-ring::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid var(--orchid);
  border-radius: 50%;
}

.wheel-ring::after {
  inset: 27%;
  background: rgba(7, 8, 9, 0.8);
}

.wheel-ring span {
  position: relative;
  z-index: 2;
  color: var(--fog);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-style: italic;
  font-weight: 900;
  animation: ring-counter 18s linear infinite;
}

.wheel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(4rem, 7vw, 8rem) 6vw;
}

.wheel-copy h2 {
  color: var(--white);
}

.wheel-copy > p:not(.section-label) {
  max-width: 560px;
  margin: 2rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.mode-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 2.2rem 0;
}

.mode-chips span {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--purple-rule);
  background: rgba(112, 44, 255, 0.08);
  color: var(--bone);
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
}

.wheel-copy > small {
  max-width: 430px;
  margin-top: 1rem;
  color: rgba(222, 214, 199, 0.46);
  font-size: 0.68rem;
  line-height: 1.5;
}

.tribute-section {
  min-height: 900px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--bruise);
}

.tribute-terminal {
  min-height: 820px;
  position: relative;
  overflow: hidden;
  background: #0a080d;
}

.tribute-terminal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tribute-terminal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 66%, var(--bruise)), linear-gradient(0deg, rgba(112, 44, 255, 0.62), transparent 38%);
}

.tribute-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(4rem, 8vw, 9rem);
  background:
    repeating-linear-gradient(-7deg, transparent 0 26px, rgba(255, 255, 255, 0.025) 26px 27px),
    var(--bruise);
}

.tribute-copy .section-label {
  color: var(--fog-soft);
}

.tribute-copy h2 {
  color: var(--white);
  text-shadow: 5px 6px 0 rgba(43, 9, 74, 0.48);
}

.tribute-copy > p:not(.section-label) {
  max-width: 600px;
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
}

.tribute-rules {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.16);
}

.tribute-rules span {
  padding: 1rem 0.8rem;
  background: rgba(44, 11, 74, 0.52);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-mono), monospace;
  font-size: 0.55rem;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.request-section {
  padding: clamp(7rem, 11vw, 12rem) 4vw;
  background:
    radial-gradient(circle at 15% 10%, rgba(80, 149, 51, 0.12), transparent 28rem),
    #0b0910;
}

.request-heading,
.request-machine {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.request-heading {
  display: grid;
  grid-template-columns: 0.45fr 1.2fr 0.6fr;
  gap: 3rem;
  align-items: end;
}

.request-machine {
  margin-top: 4rem;
  border: 1px solid var(--purple-rule);
  background: rgba(20, 16, 24, 0.9);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.32);
  clip-path: var(--cut);
}

.request-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--purple-rule);
}

.request-progress span {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border-right: 1px solid var(--purple-rule);
  color: rgba(222, 214, 199, 0.36);
  font-family: var(--font-mono), monospace;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.request-progress span:last-child {
  border-right: 0;
}

.request-progress span.is-active {
  color: var(--fog-soft);
  background: rgba(145, 246, 91, 0.06);
}

.request-progress b {
  color: var(--orchid);
}

.request-body {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
}

.request-form {
  min-height: 590px;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 5vw, 5rem);
}

.request-panel {
  border: 0;
  padding: 0;
  animation: panel-enter 300ms ease both;
}

.request-panel > label,
.request-panel > legend {
  margin: 0;
  padding: 0;
  color: var(--white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
}

.request-panel > p {
  margin: 0.8rem 0 2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.request-panel > input,
.request-panel > textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(176, 79, 255, 0.46);
  border-radius: 0;
  padding: 1rem 0;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  outline: none;
  resize: vertical;
}

.request-panel > input:focus,
.request-panel > textarea:focus {
  border-color: var(--fog);
}

.request-panel > input::placeholder,
.request-panel > textarea::placeholder {
  color: rgba(222, 214, 199, 0.32);
}

.request-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.request-options label {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--purple-rule);
  cursor: pointer;
  color: rgba(222, 214, 199, 0.72);
  font-family: var(--font-mono), monospace;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.request-options label:hover,
.request-options label.is-selected {
  border-color: var(--fog);
  background: rgba(145, 246, 91, 0.08);
  color: var(--fog-soft);
}

.request-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.request-options b {
  color: var(--fog);
  font-size: 1rem;
}

.request-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 2rem;
}

.request-navigation button {
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0.4rem 0;
  background: transparent;
  color: var(--fog-soft);
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.request-navigation button:disabled {
  cursor: not-allowed;
  opacity: 0.22;
}

.draft-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.draft-actions .ink-link {
  margin-top: 0;
}

.draft-slip {
  min-width: 0;
  padding: 2rem;
  border-left: 1px solid var(--purple-rule);
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 24px),
    #100d14;
}

.draft-slip-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--purple-rule);
  color: var(--orchid);
  font-family: var(--font-mono), monospace;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.draft-slip-top span:last-child {
  color: var(--fog);
}

.draft-slip dl {
  margin: 1.5rem 0;
}

.draft-slip dl > div {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--rule);
}

.draft-slip dt {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-family: var(--font-mono), monospace;
  font-size: 0.54rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.draft-slip dd {
  max-height: 6.8rem;
  overflow: auto;
  margin: 0;
  color: var(--bone);
  font-size: 0.75rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.draft-slip > p {
  color: rgba(222, 214, 199, 0.42);
  font-size: 0.65rem;
  line-height: 1.55;
}

.afterhours {
  min-height: 620px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.afterhours > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.afterhours::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(6, 6, 8, 0.52) linear-gradient(0deg, rgba(7, 8, 9, 0.95), transparent 45%, rgba(7, 8, 9, 0.48));
}

.afterhours > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 4vw;
}

.afterhours p {
  margin: 0 0 1rem;
  color: var(--fog-soft);
  font-family: var(--font-mono), monospace;
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.afterhours h2 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(4rem, 9vw, 10rem);
  text-shadow: 5px 7px 0 rgba(44, 10, 75, 0.72);
}

.afterhours .slash-button {
  margin-top: 2.4rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 4rem;
  align-items: center;
  padding: 4rem 4vw 5rem;
  border-top: 1px solid var(--purple-rule);
  background: #060708;
}

.footer-wordmark {
  font-size: clamp(2.8rem, 5vw, 5rem);
  color: var(--orchid);
}

.footer-wordmark span {
  color: var(--bone);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.8rem;
}

.site-footer > p,
.site-footer > small {
  color: rgba(222, 214, 199, 0.44);
  font-size: 0.67rem;
  line-height: 1.55;
}

.site-footer > p {
  max-width: 760px;
}

.site-footer > small {
  justify-self: end;
  font-family: var(--font-mono), monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-dock {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  padding: 4.5rem 2vw 2rem;
  background: rgba(5, 5, 7, 0.96);
  backdrop-filter: blur(18px);
  animation: lightbox-in 180ms ease both;
}

.lightbox figure {
  max-width: min(1100px, 80vw);
  max-height: calc(100vh - 7rem);
  margin: 0 auto;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100vh - 10rem);
  width: auto;
  margin: auto;
  object-fit: contain;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.62);
}

.lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 0.9rem;
  color: var(--bone);
  font-family: var(--font-mono), monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox figcaption span {
  color: var(--fog);
}

.lightbox-close,
.lightbox-arrow {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--fog-soft);
}

.lightbox-arrow {
  min-height: 80px;
  color: var(--orchid);
  font-size: 1.4rem;
}

@keyframes signal-blink {
  0%, 64% { opacity: 1; }
  65%, 100% { opacity: 0.24; }
}

@keyframes hero-arrive {
  from { opacity: 0; transform: scale(1.09); }
  to { opacity: 1; transform: scale(1.025); }
}

@keyframes fog-drift {
  from { transform: translate3d(-3%, 0, 0) scale(0.95); opacity: 0.55; }
  to { transform: translate3d(7%, -8%, 0) scale(1.12); opacity: 0.92; }
}

@keyframes crawl-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes crawl-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes ring-turn {
  to { transform: rotate(360deg); }
}

@keyframes ring-counter {
  to { transform: rotate(-360deg); }
}

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

@keyframes lightbox-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 1.1rem;
  }

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

  .action-poster {
    min-height: 560px;
  }

  .action-poster:nth-child(even) {
    margin-top: 0;
  }

  .action-poster:nth-child(2),
  .action-poster:nth-child(4) {
    transform: translateY(1.5rem);
  }

  .action-poster:nth-child(2):hover,
  .action-poster:nth-child(4):hover {
    transform: translateY(0.8rem) rotate(0.5deg);
  }

  .gallery-heading,
  .offers-heading,
  .request-heading {
    grid-template-columns: 0.42fr 1.1fr;
  }

  .gallery-heading > p:last-child,
  .offers-heading > p:last-child,
  .request-heading > p:last-child {
    grid-column: 2;
  }

  .persona-section,
  .tribute-section {
    grid-template-columns: 1fr 1fr;
  }

  .wheel-section {
    grid-template-columns: 1fr 1fr;
  }

  .request-body {
    grid-template-columns: 1fr 0.52fr;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 66px;
  }

  body {
    padding-bottom: 58px;
  }

  .site-header {
    min-height: 66px;
    grid-template-columns: 1fr auto;
    padding: 0 1rem;
  }

  .wordmark {
    font-size: 1.28rem;
  }

  .desktop-nav,
  .nav-x {
    display: none;
  }

  .menu-button {
    display: block;
    border: 1px solid var(--purple-rule);
    padding: 0.6rem 0.8rem;
    background: rgba(112, 44, 255, 0.12);
    color: var(--fog-soft);
    font-family: var(--font-mono), monospace;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .mobile-menu {
    position: fixed;
    z-index: 490;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 7vw 5rem;
    background:
      radial-gradient(circle at 85% 15%, rgba(112, 44, 255, 0.4), transparent 22rem),
      rgba(7, 8, 9, 0.985);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--purple-rule);
  }

  .mobile-menu nav small {
    color: var(--fog);
    font-family: var(--font-mono), monospace;
    font-size: 0.57rem;
  }

  .mobile-menu nav span {
    color: var(--white);
    font-family: var(--font-display), Impact, sans-serif;
    font-size: clamp(3.3rem, 14vw, 6rem);
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.9;
    text-transform: uppercase;
  }

  .mobile-x {
    margin-top: 2rem;
    color: var(--orchid);
    font-family: var(--font-mono), monospace;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero-picture img {
    object-position: center 20%;
  }

  .hero-vignette {
    background:
      linear-gradient(0deg, rgba(5, 6, 8, 0.98) 0%, rgba(5, 6, 8, 0.79) 38%, rgba(5, 6, 8, 0.05) 73%),
      linear-gradient(90deg, rgba(5, 6, 8, 0.34), transparent 50%, rgba(5, 6, 8, 0.15));
  }

  .hero-copy {
    width: 100%;
    margin: 0;
    padding: 23rem 1.2rem 7rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-master {
    padding-left: 0.28em;
    font-size: clamp(3.2rem, 17vw, 6.5rem);
  }

  .hero-xsire {
    font-size: clamp(6rem, 30vw, 11rem);
  }

  .hero-tagline {
    margin-top: 1.7rem;
  }

  .hero-note {
    font-size: 0.86rem;
  }

  .hero-actions {
    gap: 0.55rem;
  }

  .hero-actions .slash-button {
    flex: 1 1 12rem;
  }

  .hero-corner,
  .scroll-cue {
    display: none;
  }

  .section-heading-wide,
  .gallery-heading,
  .offers-heading,
  .request-heading {
    display: block;
  }

  .section-heading h2,
  .persona-copy h2,
  .wheel-copy h2,
  .tribute-copy h2,
  .request-heading h2,
  .afterhours h2 {
    font-size: clamp(3.7rem, 16vw, 7rem);
  }

  .section-heading-wide > p:last-child,
  .gallery-heading > p:last-child,
  .offers-heading > p:last-child,
  .request-heading > p:last-child {
    margin-top: 1rem;
  }

  .poster-grid {
    display: flex;
    overflow-x: auto;
    gap: 0.8rem;
    margin-top: 2.5rem;
    padding: 0 7vw 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .poster-grid::-webkit-scrollbar,
  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .action-poster,
  .action-poster:nth-child(2),
  .action-poster:nth-child(4) {
    min-width: 82vw;
    min-height: 570px;
    margin: 0;
    transform: none;
    scroll-snap-align: center;
  }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 0.8rem;
    grid-template-columns: none;
    grid-template-rows: none;
    margin-top: 2.5rem;
    padding: 0 7vw 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gallery-item,
  .gallery-item:nth-child(n) {
    min-width: 84vw;
    height: 560px;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: center;
  }

  .persona-section,
  .tribute-section,
  .wheel-section {
    grid-template-columns: 1fr;
  }

  .persona-photo,
  .tribute-terminal,
  .wheel-art {
    min-height: 620px;
  }

  .persona-copy,
  .tribute-copy,
  .wheel-copy {
    padding: 5.5rem 7vw;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 0 7vw;
  }

  .offer-card:nth-child(2) {
    transform: none;
  }

  .offer-image {
    height: 470px;
  }

  .offer-copy > span {
    min-height: auto;
  }

  .wheel-art {
    order: 2;
  }

  .wheel-copy {
    order: 1;
  }

  .tribute-terminal::after {
    background: linear-gradient(0deg, var(--bruise), transparent 35%);
  }

  .request-section {
    padding-right: 0;
    padding-left: 0;
  }

  .request-heading {
    padding: 0 7vw;
  }

  .request-machine {
    margin-top: 2.5rem;
    border-right: 0;
    border-left: 0;
    clip-path: none;
  }

  .request-progress span {
    min-height: 52px;
    justify-content: center;
    padding: 0.5rem;
    font-size: 0;
  }

  .request-progress span b {
    font-size: 0.58rem;
  }

  .request-body {
    grid-template-columns: 1fr;
  }

  .request-form {
    min-height: 550px;
    padding: 3rem 7vw;
  }

  .draft-slip {
    border-top: 1px solid var(--purple-rule);
    border-left: 0;
    padding: 2rem 7vw;
  }

  .afterhours {
    min-height: 600px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 4rem 7vw 6rem;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer > small {
    justify-self: start;
  }

  .mobile-dock {
    position: fixed;
    z-index: 480;
    inset: auto 0 0;
    height: 58px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--purple-rule);
    background: rgba(7, 8, 9, 0.94);
    backdrop-filter: blur(14px);
  }

  .mobile-dock a {
    display: grid;
    place-items: center;
    font-family: var(--font-mono), monospace;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-dock a:first-child {
    background: var(--fog);
    color: var(--sewer);
  }

  .mobile-dock a:last-child {
    color: var(--orchid);
  }

  .lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    padding-right: 0.3rem;
    padding-left: 0.3rem;
  }
}

@media (max-width: 520px) {
  .hero-copy {
    padding-top: 19rem;
  }

  .warning-line {
    font-size: 0.58rem;
  }

  .slash-button {
    gap: 1.4rem;
    padding-right: 1rem;
    padding-left: 1.1rem;
    font-size: 0.62rem;
  }

  .damage-section,
  .gallery-section,
  .offers-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .section-heading {
    padding-right: 7vw;
    padding-left: 7vw;
  }

  .action-poster {
    min-width: 86vw;
    min-height: 520px;
  }

  .gallery-item,
  .gallery-item:nth-child(n) {
    min-width: 87vw;
    height: 500px;
  }

  .persona-photo,
  .tribute-terminal,
  .wheel-art {
    min-height: 520px;
  }

  .persona-copy,
  .tribute-copy,
  .wheel-copy {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }

  .offer-image {
    height: 390px;
  }

  .tribute-rules {
    grid-template-columns: 1fr;
  }

  .request-options {
    grid-template-columns: 1fr;
  }

  .request-form {
    min-height: 620px;
  }

  .lightbox {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
  }

  .lightbox figure {
    max-width: 78vw;
  }

  .lightbox figcaption {
    display: grid;
    gap: 0.4rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-fog {
    display: none;
  }
}

@keyframes hero-breathe {
  from { transform: scale(1.025) translate3d(0, 0, 0); filter: saturate(1.04) brightness(1.06); }
  to { transform: scale(1.07) translate3d(-0.7%, -0.4%, 0); filter: saturate(1.13) brightness(1.11); }
}

@keyframes cinematic-breathe {
  from { transform: scale(1.01) translate3d(0, 0, 0); filter: saturate(1) brightness(1.02); }
  to { transform: scale(1.07) translate3d(-0.8%, -0.5%, 0); filter: saturate(1.12) brightness(1.08); }
}

@keyframes reveal-from-dark {
  from { opacity: 0.82; transform: translateY(24px) scale(0.992); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-wordmark-art {
  width: min(930px, 64vw);
  height: auto;
  margin: -1rem 0 -0.2rem -1.6rem;
  object-fit: contain;
  mix-blend-mode: screen;
  -webkit-mask-image: url("/images/effects/xsire-wordmark.webp");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: url("/images/effects/xsire-wordmark.webp");
  mask-mode: luminance;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.62)) drop-shadow(0 0 22px rgba(136, 57, 242, 0.2));
  transform-origin: left center;
  animation: wordmark-strike 1.15s cubic-bezier(0.16, 1, 0.3, 1) both, wordmark-charge 5s ease-in-out 1.15s infinite alternate;
}

@media (min-width: 821px) {
  .hero h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

@media (max-width: 820px) {
  .hero-wordmark-art {
    display: none;
  }
}

@keyframes wordmark-strike {
  from { opacity: 0; transform: translate3d(-7%, 0, 0) skewX(-9deg) scaleX(0.82); filter: blur(8px) brightness(1.5); }
  to { opacity: 1; transform: translate3d(0, 0, 0) skewX(0) scaleX(1); filter: saturate(1.24) brightness(1.22) drop-shadow(0 16px 28px rgba(0, 0, 0, 0.62)) drop-shadow(0 0 28px rgba(136, 57, 242, 0.29)); }
}

@keyframes wordmark-charge {
  0%, 88%, 100% { filter: saturate(1.22) drop-shadow(0 16px 28px rgba(0, 0, 0, 0.62)) drop-shadow(0 0 22px rgba(136, 57, 242, 0.26)) brightness(1.2); }
  92% { filter: saturate(1.38) drop-shadow(0 16px 28px rgba(0, 0, 0, 0.62)) drop-shadow(0 0 40px rgba(145, 246, 91, 0.44)) brightness(1.38); }
  95% { filter: saturate(1.3) drop-shadow(0 16px 28px rgba(0, 0, 0, 0.62)) drop-shadow(0 0 31px rgba(176, 79, 255, 0.42)) brightness(1.27); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wordmark-art {
    animation: none !important;
  }
}

.generated-atmosphere {
  position: fixed;
  z-index: 3;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.generated-atmosphere img {
  position: absolute;
  max-width: none;
  height: auto;
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

.generated-light {
  display: none;
  top: -12vh;
  left: -12vw;
  width: max(128vw, 1680px);
  opacity: 0.22;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 42%, transparent 72%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 42%, transparent 72%);
  filter: saturate(1.38) contrast(1.08);
}

.generated-light-one {
  animation: generated-light-sweep 14s cubic-bezier(0.45, 0.04, 0.55, 0.96) infinite alternate;
}

.generated-light-two {
  display: none;
}

.generated-fog {
  left: -31vw;
  bottom: -7vh;
  width: max(150vw, 1800px);
  opacity: 0.34;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 70%, transparent 100%);
  filter: saturate(1.55) brightness(1.45) contrast(1.1);
}

.generated-fog-one {
  animation: generated-fog-roll 13s cubic-bezier(0.37, 0, 0.63, 1) infinite alternate;
}

.generated-fog-two {
  display: none;
}

.wheel-ring {
  width: clamp(150px, 18vw, 285px);
  overflow: hidden;
  border: 0;
  box-shadow: 0 0 75px rgba(145, 246, 91, 0.17), 0 0 48px rgba(112, 44, 255, 0.28);
}

.wheel-ring::before,
.wheel-ring::after {
  display: none;
}

.wheel-ring > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  -webkit-mask-image: url("/images/effects/xs-emblem.webp");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: url("/images/effects/xs-emblem.webp");
  mask-mode: luminance;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  filter: saturate(1.22) brightness(1.12) drop-shadow(0 0 18px rgba(134, 55, 255, 0.46));
}

@keyframes generated-light-sweep {
  0% { opacity: 0.1; transform: translate3d(-7%, -3%, 0) rotate(-2deg) scale(1.04); }
  38% { opacity: 0.24; }
  41% { opacity: 0.34; }
  44% { opacity: 0.19; }
  100% { opacity: 0.16; transform: translate3d(7%, 9%, 0) rotate(3deg) scale(1.12); }
}

@keyframes generated-light-sweep-two {
  0% { opacity: 0.05; transform: translate3d(8%, 2%, 0) scaleX(-1) rotate(4deg) scale(1.02); }
  55% { opacity: 0.14; }
  100% { opacity: 0.08; transform: translate3d(-7%, -8%, 0) scaleX(-1) rotate(-2deg) scale(1.1); }
}

@keyframes generated-fog-roll {
  0% { opacity: 0.23; transform: translate3d(-6%, 4%, 0) scale(1.04); }
  45% { opacity: 0.43; transform: translate3d(1%, -6%, 0) scale(1.13); }
  100% { opacity: 0.31; transform: translate3d(9%, 1%, 0) scale(1.05); }
}

@keyframes generated-fog-roll-two {
  0% { opacity: 0.07; transform: translate3d(7%, 3%, 0) scaleX(-1) scale(1.08, 0.9); }
  52% { opacity: 0.14; transform: translate3d(-1%, -5%, 0) scaleX(-1) scale(1.16, 1.04); }
  100% { opacity: 0.09; transform: translate3d(-9%, 0, 0) scaleX(-1) scale(1.04, 0.96); }
}

.section-heading,
.persona-copy,
.wheel-copy,
.tribute-copy,
.request-heading,
.request-machine,
.action-poster,
.gallery-item,
.offer-card,
.afterhours > div,
.site-footer {
  position: relative;
  z-index: 5;
}

.offer-copy {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
}

.request-panel > input:focus-visible,
.request-panel > textarea:focus-visible,
.request-options label:focus-within {
  outline: 2px solid var(--fog);
  outline-offset: 4px;
  border-color: var(--fog);
  box-shadow: 0 0 0 5px rgba(145, 246, 91, 0.1), 0 0 28px rgba(145, 246, 91, 0.15);
}

@media (max-width: 1120px) and (min-width: 821px) {
  .action-poster:nth-child(n),
  .action-poster:nth-child(n):hover {
    margin-top: 0;
    transform: none;
  }

  .action-poster:nth-child(n):hover {
    transform: translateY(-7px) scale(1.012);
  }
}

@media (max-width: 820px) {
  .generated-light {
    top: -2vh;
    width: max(245vw, 1380px);
    opacity: 0.14;
  }

  .generated-light-two {
    top: 42vh;
  }

  .generated-fog {
    left: -88vw;
    bottom: -4vh;
    width: max(280vw, 1540px);
    opacity: 0.24;
  }

  .generated-fog-two {
    left: -64vw;
    bottom: -16vh;
    opacity: 0.09;
  }
}

@media (prefers-reduced-motion: reduce) {
  .generated-atmosphere img {
    animation: none !important;
  }

  .generated-light {
    opacity: 0.08;
  }

  .generated-fog {
    opacity: 0.1;
  }
}

.ambient-fx {
  position: fixed;
  z-index: 430;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.94;
  mix-blend-mode: screen;
}

.neon-site {
  background:
    radial-gradient(circle at 18% 12%, rgba(97, 34, 172, 0.28), transparent 30rem),
    radial-gradient(circle at 82% 84%, rgba(62, 133, 42, 0.18), transparent 34rem),
    linear-gradient(135deg, #050507, #0b0710 48%, #050708);
}

.neon-site::after,
.damage-section::after,
.gallery-section::after,
.persona-section::after,
.offers-section::after,
.wheel-section::after,
.tribute-section::after,
.request-section::after {
  display: none;
}

.damage-section,
.gallery-section,
.offers-section,
.request-section {
  background-attachment: scroll;
  background-size: 180% 180%;
  animation: ambient-shift 18s ease-in-out infinite alternate;
}

.damage-section {
  background-image:
    radial-gradient(circle at 18% 22%, rgba(125, 54, 230, 0.29), transparent 32rem),
    radial-gradient(circle at 78% 76%, rgba(90, 200, 58, 0.14), transparent 30rem),
    linear-gradient(132deg, rgba(4, 5, 7, 0.98), rgba(14, 7, 21, 0.96) 52%, rgba(4, 8, 7, 0.98));
}

.gallery-section {
  background-image:
    radial-gradient(ellipse at 75% 18%, rgba(165, 76, 255, 0.24), transparent 34rem),
    radial-gradient(ellipse at 22% 86%, rgba(91, 204, 58, 0.13), transparent 30rem),
    linear-gradient(160deg, rgba(5, 5, 8, 0.98), rgba(12, 7, 18, 0.96), rgba(4, 7, 7, 0.98));
}

.offers-section {
  background-image:
    radial-gradient(circle at 50% -5%, rgba(112, 44, 255, 0.31), transparent 37rem),
    radial-gradient(circle at 8% 90%, rgba(92, 205, 60, 0.13), transparent 28rem),
    linear-gradient(125deg, rgba(4, 5, 7, 0.98), rgba(12, 7, 17, 0.96), rgba(5, 7, 7, 0.98));
}

.request-section {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(151, 72, 255, 0.23), transparent 34rem),
    radial-gradient(circle at 84% 80%, rgba(83, 189, 54, 0.13), transparent 30rem),
    linear-gradient(148deg, rgba(5, 5, 8, 0.98), rgba(13, 8, 18, 0.95), rgba(4, 7, 7, 0.98));
}

.poster-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
}

.action-poster,
.action-poster:nth-child(even) {
  min-height: 580px;
  margin-top: 0;
}

.action-poster:hover,
.action-poster:nth-child(even):hover {
  transform: translateY(-7px) scale(1.012);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 1rem;
}

.gallery-item,
.gallery-item:nth-child(n) {
  grid-column: auto;
  grid-row: auto;
  height: 520px;
  min-width: 0;
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
}

.offer-card,
.offer-card:nth-child(2) {
  min-height: 660px;
  margin: 0;
}

@keyframes ambient-shift {
  from { background-position: 12% 18%, 88% 82%, 0% 50%; }
  to { background-position: 22% 26%, 72% 68%, 100% 50%; }
}

@media (max-width: 1120px) and (min-width: 821px) {
  .poster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .poster-grid,
  .gallery-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0.9rem;
    overflow-x: auto;
    padding-right: 7vw;
    padding-left: 7vw;
    scroll-snap-type: x mandatory;
  }

  .action-poster,
  .action-poster:nth-child(even),
  .gallery-item,
  .gallery-item:nth-child(n) {
    min-width: 86vw;
    height: 560px;
    min-height: 560px;
    margin: 0;
    scroll-snap-align: center;
  }

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

  .ambient-fx {
    opacity: 0.76;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-fx {
    opacity: 0.4;
  }

  .damage-section,
  .gallery-section,
  .offers-section,
  .request-section {
    animation: none !important;
  }
}

.persona-section,
.wheel-section,
.tribute-section {
  min-height: 100svh;
  display: block;
}

.persona-photo,
.wheel-art,
.tribute-terminal {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  min-height: 100%;
}

.persona-photo img,
.wheel-art > img,
.tribute-terminal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: cinematic-breathe 16s ease-in-out infinite alternate;
}

.persona-photo img {
  object-position: 28% 28%;
}

.persona-photo::after,
.wheel-art::after,
.tribute-terminal::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.12) 0%, rgba(5, 5, 8, 0.46) 45%, rgba(5, 5, 8, 0.96) 78%),
    linear-gradient(0deg, rgba(4, 5, 7, 0.82), transparent 42%, rgba(5, 4, 8, 0.3));
}

.persona-copy,
.wheel-copy,
.tribute-copy {
  position: relative;
  z-index: 3;
  width: min(760px, 53vw);
  min-height: 100svh;
  margin-left: auto;
  padding: clamp(6rem, 10vw, 11rem) 7vw;
  background: linear-gradient(90deg, transparent, rgba(6, 5, 9, 0.62) 28%, rgba(6, 5, 9, 0.88));
  backdrop-filter: none;
}

.persona-photo > span {
  left: 3vw;
  right: auto;
  bottom: 2.2rem;
}

.wheel-ring {
  right: auto;
  left: 6%;
  bottom: 8%;
}

.offer-grid {
  gap: 1rem;
}

.offer-card,
.offer-card:nth-child(2) {
  min-height: min(720px, 76svh);
  overflow: hidden;
  background: transparent;
  transform: none;
}

.offer-image {
  position: absolute;
  inset: 0;
  height: 100%;
}

.offer-image::after {
  background:
    linear-gradient(0deg, rgba(5, 5, 8, 0.98) 0%, rgba(5, 5, 8, 0.76) 32%, transparent 72%),
    linear-gradient(180deg, rgba(5, 5, 8, 0.42), transparent 26%);
}

.offer-copy {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  padding: 2rem;
  background: transparent;
}

.offer-copy > span {
  min-height: 0;
  margin: 0.8rem 0 1.15rem;
}

.offer-copy small {
  padding: 0.75rem 0;
}

.damage-section,
.gallery-section,
.offers-section,
.request-section {
  min-height: 100svh;
}

.damage-section,
.gallery-section,
.offers-section {
  padding-top: clamp(8rem, 12vw, 13rem);
  padding-bottom: clamp(8rem, 12vw, 13rem);
}

.request-machine {
  background: rgba(7, 6, 10, 0.5);
  backdrop-filter: blur(18px) saturate(1.24);
}

.request-progress span,
.request-progress span.is-active,
.draft-slip {
  background-color: rgba(7, 6, 10, 0.3);
}

.gallery-item,
.action-poster,
.offer-card {
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.afterhours > img {
  animation: cinematic-breathe 18s ease-in-out infinite alternate;
}

@supports (animation-timeline: view()) {
  .section-heading,
  .persona-copy,
  .wheel-copy,
  .tribute-copy,
  .request-heading,
  .action-poster,
  .gallery-item,
  .offer-card {
    animation: reveal-from-dark linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 32%;
  }

  .action-poster:nth-child(2),
  .gallery-item:nth-child(2),
  .offer-card:nth-child(2) {
    animation-range: entry 9% cover 36%;
  }

  .action-poster:nth-child(3),
  .gallery-item:nth-child(3),
  .offer-card:nth-child(3) {
    animation-range: entry 13% cover 40%;
  }
}

@keyframes cinematic-breathe {
  from { transform: scale(1.01) translate3d(0, 0, 0); filter: saturate(0.93) brightness(0.9); }
  to { transform: scale(1.075) translate3d(-0.8%, -0.5%, 0); filter: saturate(1.12) brightness(1.03); }
}

@keyframes reveal-from-dark {
  from { opacity: 0; transform: translateY(54px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 820px) {
  .mobile-menu {
    background:
      linear-gradient(180deg, rgba(20, 6, 34, 0.84), rgba(4, 5, 7, 0.96)),
      url("/images/campaign/mobile-alley-portrait-xsire-v2.webp") center / cover;
  }

  .persona-copy,
  .wheel-copy,
  .tribute-copy {
    width: 100%;
    min-height: 100svh;
    margin: 0;
    padding: 48svh 7vw 7rem;
    justify-content: flex-end;
    background: linear-gradient(0deg, rgba(5, 5, 8, 0.97) 0%, rgba(5, 5, 8, 0.75) 48%, transparent 80%);
  }

  .persona-photo::after,
  .wheel-art::after,
  .tribute-terminal::after {
    background: linear-gradient(0deg, rgba(5, 5, 8, 0.96) 0%, rgba(5, 5, 8, 0.16) 72%);
  }

  .offer-card,
  .offer-card:nth-child(2) {
    min-height: 660px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .persona-photo img,
  .wheel-art > img,
  .tribute-terminal img,
  .afterhours > img,
  .section-heading,
  .persona-copy,
  .wheel-copy,
  .tribute-copy,
  .request-heading,
  .action-poster,
  .gallery-item,
  .offer-card {
    animation: none !important;
  }
}

.neon-site {
  position: relative;
  background:
    linear-gradient(rgba(4, 4, 7, 0.7), rgba(4, 4, 7, 0.7)),
    url("/images/campaign/afterhours-divider.webp") center / cover fixed;
}

.neon-site::before,
.neon-site::after {
  content: "";
  position: fixed;
  z-index: 420;
  inset: -20%;
  pointer-events: none;
}

.neon-site::before {
  display: none;
}

.neon-site::after {
  z-index: 419;
  opacity: 0.34;
  background:
    radial-gradient(ellipse at 18% 92%, rgba(104, 224, 67, 0.56), transparent 27%),
    radial-gradient(ellipse at 78% 98%, rgba(71, 155, 47, 0.45), transparent 30%);
  filter: blur(46px);
  mix-blend-mode: screen;
  animation: global-smoke 13s ease-in-out infinite alternate;
}

.damage-section,
.gallery-section,
.persona-section,
.offers-section,
.wheel-section,
.tribute-section,
.request-section,
.afterhours,
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: scene-pan 20s ease-in-out infinite alternate;
}

.damage-section {
  background-image:
    linear-gradient(112deg, rgba(5, 5, 8, 0.97) 0%, rgba(5, 5, 8, 0.65) 47%, rgba(8, 4, 13, 0.82) 100%),
    url("/images/campaign/hero-alley-wide-xsire-v2.webp");
}

.gallery-section {
  background-image:
    linear-gradient(180deg, rgba(5, 4, 8, 0.9), rgba(8, 4, 13, 0.6) 46%, rgba(5, 6, 8, 0.92)),
    url("/images/campaign/afterhours-divider.webp");
}

.persona-section {
  background-image:
    linear-gradient(90deg, rgba(5, 5, 8, 0.32), rgba(7, 4, 11, 0.88) 54%, rgba(5, 5, 8, 0.96)),
    url("/images/campaign/master-portrait-xsire-v2.webp");
  color: var(--bone);
}

.offers-section {
  background-image:
    linear-gradient(100deg, rgba(5, 5, 8, 0.96), rgba(11, 5, 17, 0.65) 58%, rgba(5, 7, 7, 0.91)),
    url("/images/campaign/vault-lockers-xsire-v2.webp");
}

.wheel-section {
  background-image:
    linear-gradient(90deg, rgba(5, 5, 8, 0.22), rgba(5, 5, 8, 0.8) 55%, rgba(6, 4, 10, 0.96)),
    url("/images/campaign/arcade-wheel.webp");
}

.tribute-section {
  background-image:
    linear-gradient(90deg, rgba(5, 4, 8, 0.2), rgba(12, 5, 18, 0.8) 53%, rgba(6, 4, 10, 0.97)),
    url("/images/campaign/tribute-terminal-xsire-v2.webp");
}

.request-section {
  background-image:
    linear-gradient(112deg, rgba(5, 5, 8, 0.95), rgba(9, 5, 14, 0.66) 55%, rgba(5, 7, 7, 0.9)),
    url("/images/campaign/playbook-table-xsire-v2.webp");
}

.afterhours,
.site-footer {
  background-image:
    linear-gradient(90deg, rgba(5, 5, 8, 0.91), rgba(5, 5, 8, 0.36), rgba(5, 5, 8, 0.92)),
    url("/images/campaign/afterhours-divider.webp");
}

.damage-section::before,
.gallery-section::before,
.persona-section::before,
.offers-section::before,
.wheel-section::before,
.tribute-section::before,
.request-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -35% -55%;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    transparent 34%,
    rgba(157, 79, 255, 0.04) 43%,
    rgba(187, 112, 255, 0.2) 49%,
    rgba(145, 246, 91, 0.08) 53%,
    transparent 61%
  );
  transform: translateX(-32%);
  mix-blend-mode: screen;
  animation: light-sweep 11s ease-in-out infinite;
}

.damage-section::after,
.gallery-section::after,
.persona-section::after,
.offers-section::after,
.wheel-section::after,
.tribute-section::after,
.request-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -18%;
  right: -18%;
  bottom: -10rem;
  height: 22rem;
  pointer-events: none;
  opacity: 0.72;
  background:
    radial-gradient(ellipse at 25% 70%, rgba(102, 216, 66, 0.5), transparent 37%),
    radial-gradient(ellipse at 78% 72%, rgba(75, 161, 48, 0.38), transparent 39%);
  filter: blur(34px);
  mix-blend-mode: screen;
  animation: section-smoke 10s ease-in-out infinite alternate;
}

.section-heading,
.persona-copy,
.wheel-copy,
.tribute-copy,
.request-heading,
.request-machine,
.site-footer > * {
  position: relative;
  z-index: 2;
}

.persona-copy,
.wheel-copy,
.tribute-copy {
  background: linear-gradient(90deg, rgba(7, 6, 10, 0.45), rgba(7, 6, 10, 0.82));
  backdrop-filter: blur(4px) saturate(1.15);
}

.persona-copy .section-label,
.persona-copy > p:not(.section-label):not(.persona-lead) {
  color: var(--fog-soft);
}

.persona-copy h2,
.persona-lead {
  color: var(--white);
  text-shadow: 0 0 36px rgba(176, 79, 255, 0.28);
}

.persona-copy .ink-link {
  color: var(--fog);
}

.action-poster,
.gallery-item,
.offer-card,
.request-machine,
.draft-slip {
  background: rgba(8, 7, 12, 0.56);
  backdrop-filter: blur(13px) saturate(1.2);
}

.offer-image::after {
  background: linear-gradient(0deg, rgba(8, 7, 12, 0.96), transparent 52%);
}

.offer-copy {
  position: relative;
  background: linear-gradient(180deg, rgba(8, 7, 12, 0.2), rgba(8, 7, 12, 0.66));
}

.request-machine {
  border-color: rgba(176, 79, 255, 0.46);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.62), 0 0 70px rgba(112, 44, 255, 0.12);
}

.draft-slip {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 24px),
    rgba(8, 7, 12, 0.58);
}

.site-footer {
  border-top-color: rgba(176, 79, 255, 0.38);
}

.hero-picture img {
  animation:
    hero-arrive 1.4s cubic-bezier(0.16, 1, 0.3, 1) both,
    hero-breathe 15s ease-in-out 1.4s infinite alternate;
}

.hero-vignette {
  animation: vignette-pulse 7s ease-in-out infinite alternate;
}

.section-heading h2,
.persona-copy h2,
.wheel-copy h2,
.tribute-copy h2,
.request-heading h2,
.afterhours h2 {
  text-shadow: 0 7px 0 rgba(20, 5, 32, 0.72), 0 0 38px rgba(176, 79, 255, 0.18);
  animation: neon-title 6s ease-in-out infinite alternate;
}

.slash-button-lime {
  position: relative;
  z-index: 3;
  color: #051004;
  text-shadow: none;
}

.action-poster::after,
.gallery-item::before,
.offer-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(183, 103, 255, 0.28) 49%, transparent 62%);
  transform: translateX(-70%);
  transition: opacity 220ms ease;
}

.action-poster:hover::after,
.gallery-item:hover::before,
.offer-card:hover::after {
  opacity: 1;
  animation: card-flash 900ms ease both;
}

@keyframes rain-fall {
  from { transform: translate3d(-3%, -10%, 0); }
  to { transform: translate3d(5%, 10%, 0); }
}

@keyframes global-smoke {
  from { transform: translate3d(-4%, 2%, 0) scale(0.95); opacity: 0.22; }
  to { transform: translate3d(6%, -2%, 0) scale(1.08); opacity: 0.42; }
}

@keyframes section-smoke {
  from { transform: translate3d(-4%, 1rem, 0) scale(0.92); opacity: 0.46; }
  to { transform: translate3d(5%, -2rem, 0) scale(1.09); opacity: 0.8; }
}

@keyframes light-sweep {
  0%, 20% { transform: translateX(-34%); opacity: 0; }
  38%, 62% { opacity: 1; }
  80%, 100% { transform: translateX(34%); opacity: 0; }
}

@keyframes scene-pan {
  from { background-position: 47% 50%; }
  to { background-position: 53% 50%; }
}

@keyframes hero-breathe {
  from { transform: scale(1.025) translate3d(0, 0, 0); filter: saturate(0.96) brightness(0.96); }
  to { transform: scale(1.075) translate3d(-0.7%, -0.4%, 0); filter: saturate(1.12) brightness(1.04); }
}

@keyframes vignette-pulse {
  from { opacity: 0.9; }
  to { opacity: 1; }
}

@keyframes neon-title {
  0%, 84%, 100% { filter: brightness(1); }
  88% { filter: brightness(1.22); }
  91% { filter: brightness(0.92); }
  94% { filter: brightness(1.12); }
}

@keyframes card-flash {
  from { transform: translateX(-75%); }
  to { transform: translateX(75%); }
}

@media (max-width: 820px) {
  .damage-section,
  .gallery-section,
  .persona-section,
  .offers-section,
  .wheel-section,
  .tribute-section,
  .request-section,
  .afterhours,
  .site-footer {
    background-attachment: scroll;
  }

  .persona-copy,
  .wheel-copy,
  .tribute-copy {
    background: linear-gradient(180deg, rgba(7, 6, 10, 0.46), rgba(7, 6, 10, 0.9));
  }

  .neon-site::before {
    opacity: 0.075;
  }

  .neon-site::after {
    opacity: 0.24;
  }
}

@media (prefers-reduced-motion: reduce) {
  .neon-site::before,
  .neon-site::after,
  .damage-section,
  .gallery-section,
  .persona-section,
  .offers-section,
  .wheel-section,
  .tribute-section,
  .request-section,
  .hero-picture img,
  .hero-vignette,
  .section-heading h2,
  .persona-copy h2,
  .wheel-copy h2,
  .tribute-copy h2,
  .request-heading h2,
  .afterhours h2 {
    animation: none !important;
  }
}

.ambient-fx {
  position: fixed;
  z-index: 430;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.94;
  mix-blend-mode: screen;
}

.neon-site {
  background:
    radial-gradient(circle at 18% 12%, rgba(97, 34, 172, 0.28), transparent 30rem),
    radial-gradient(circle at 82% 84%, rgba(62, 133, 42, 0.18), transparent 34rem),
    linear-gradient(135deg, #050507, #0b0710 48%, #050708);
}

.neon-site::before,
.neon-site::after,
.damage-section::after,
.gallery-section::after,
.persona-section::after,
.offers-section::after,
.wheel-section::after,
.tribute-section::after,
.request-section::after {
  display: none;
}

.damage-section,
.gallery-section,
.offers-section,
.request-section {
  background-attachment: scroll;
  background-size: 180% 180%;
  animation: ambient-shift 18s ease-in-out infinite alternate;
}

.damage-section {
  background-image:
    radial-gradient(circle at 18% 22%, rgba(125, 54, 230, 0.29), transparent 32rem),
    radial-gradient(circle at 78% 76%, rgba(90, 200, 58, 0.14), transparent 30rem),
    linear-gradient(132deg, rgba(4, 5, 7, 0.98), rgba(14, 7, 21, 0.96) 52%, rgba(4, 8, 7, 0.98));
}

.gallery-section {
  background-image:
    radial-gradient(ellipse at 75% 18%, rgba(165, 76, 255, 0.24), transparent 34rem),
    radial-gradient(ellipse at 22% 86%, rgba(91, 204, 58, 0.13), transparent 30rem),
    linear-gradient(160deg, rgba(5, 5, 8, 0.98), rgba(12, 7, 18, 0.96), rgba(4, 7, 7, 0.98));
}

.offers-section {
  background-image:
    radial-gradient(circle at 50% -5%, rgba(112, 44, 255, 0.31), transparent 37rem),
    radial-gradient(circle at 8% 90%, rgba(92, 205, 60, 0.13), transparent 28rem),
    linear-gradient(125deg, rgba(4, 5, 7, 0.98), rgba(12, 7, 17, 0.96), rgba(5, 7, 7, 0.98));
}

.request-section {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(151, 72, 255, 0.23), transparent 34rem),
    radial-gradient(circle at 84% 80%, rgba(83, 189, 54, 0.13), transparent 30rem),
    linear-gradient(148deg, rgba(5, 5, 8, 0.98), rgba(13, 8, 18, 0.95), rgba(4, 7, 7, 0.98));
}

.poster-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
}

.action-poster,
.action-poster:nth-child(even) {
  min-height: 580px;
  margin-top: 0;
}

.action-poster:hover,
.action-poster:nth-child(even):hover {
  transform: translateY(-7px) scale(1.012);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 1rem;
}

.gallery-item,
.gallery-item:nth-child(n) {
  grid-column: auto;
  grid-row: auto;
  min-width: 0;
  height: 520px;
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
}

.offer-card,
.offer-card:nth-child(2) {
  min-height: 660px;
  margin: 0;
  transform: none;
}

@media (max-width: 1120px) and (min-width: 821px) {
  .poster-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .poster-grid,
  .gallery-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0.9rem;
    overflow-x: auto;
    padding-right: 7vw;
    padding-left: 7vw;
    scroll-snap-type: x mandatory;
  }

  .action-poster,
  .action-poster:nth-child(even),
  .gallery-item,
  .gallery-item:nth-child(n) {
    min-width: 80vw;
    width: 80vw;
    height: 560px;
    min-height: 560px;
    margin: 0;
    scroll-snap-align: center;
  }

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

  .ambient-fx {
    opacity: 0.76;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-fx {
    opacity: 0.38;
  }

  .damage-section,
  .gallery-section,
  .offers-section,
  .request-section {
    animation: none !important;
  }
}

.generated-atmosphere,
.hero-fog {
  display: none !important;
}

.section-fog {
  position: absolute;
  z-index: 3;
  left: -18%;
  bottom: -17%;
  width: 142%;
  max-width: none;
  height: auto;
  pointer-events: none;
  opacity: 0.36;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 17%, #000 68%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 17%, #000 68%, transparent 100%);
  filter: saturate(1.45) brightness(1.35) contrast(1.08);
  transform-origin: 50% 80%;
  animation: section-fog-breathe 12s cubic-bezier(0.37, 0, 0.63, 1) infinite alternate;
}

.section-fog-hero {
  z-index: 2;
  left: -12%;
  bottom: -19%;
  width: 128%;
  opacity: 0.32;
}

.section-fog-gallery {
  left: -24%;
  bottom: -12%;
  width: 150%;
  opacity: 0.28;
  animation-duration: 15s;
}

.section-fog-wheel {
  left: -28%;
  bottom: -16%;
  width: 154%;
  opacity: 0.38;
  animation-duration: 11s;
}

.section-fog-tribute {
  left: -14%;
  bottom: -20%;
  width: 135%;
  opacity: 0.3;
  animation-duration: 14s;
}

@keyframes section-fog-breathe {
  0% { transform: translate3d(-3%, 4%, 0) scale(1.02, 0.96); }
  48% { transform: translate3d(2%, -3%, 0) scale(1.08, 1.04); }
  100% { transform: translate3d(5%, 1%, 0) scale(1.04, 0.99); }
}

.hero-vignette {
  background:
    linear-gradient(90deg, rgba(4, 4, 7, 0.72) 0%, rgba(4, 4, 7, 0.22) 48%, rgba(4, 4, 7, 0.12) 74%, rgba(4, 4, 7, 0.42) 100%),
    linear-gradient(0deg, rgba(4, 5, 7, 0.66), transparent 42%, rgba(5, 4, 8, 0.18));
}

.hero::after {
  opacity: 0.12;
  mix-blend-mode: soft-light;
}

.hero-picture img {
  filter: saturate(1.08) brightness(1.08) contrast(1.02);
}

.gallery-item img,
.offer-image img,
.tribute-terminal img,
.afterhours > img {
  filter: saturate(1.08) brightness(1.1) contrast(1.02);
}

.damage-section {
  background-image:
    radial-gradient(circle at 12% 22%, rgba(155, 75, 255, 0.34), transparent 30rem),
    radial-gradient(circle at 84% 78%, rgba(102, 230, 66, 0.2), transparent 29rem),
    linear-gradient(135deg, #11071c 0%, #120b1d 47%, #08140e 100%);
}

.action-poster,
.action-poster:nth-child(even) {
  min-height: 520px;
  background-color: transparent;
  background-size: 150% 150%;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  animation: access-tile-drift 11s ease-in-out infinite alternate;
}

.action-poster:nth-child(1) {
  background-image: radial-gradient(circle at 18% 26%, rgba(145, 246, 91, 0.28), transparent 30%), radial-gradient(circle at 82% 82%, rgba(112, 44, 255, 0.5), transparent 48%), linear-gradient(145deg, #101516, #160b22);
}

.action-poster:nth-child(2) {
  background-image: radial-gradient(circle at 78% 22%, rgba(176, 79, 255, 0.46), transparent 38%), radial-gradient(circle at 18% 84%, rgba(145, 246, 91, 0.22), transparent 40%), linear-gradient(145deg, #160a22, #0a1210);
  animation-delay: -3s;
}

.action-poster:nth-child(3) {
  background-image: radial-gradient(circle at 28% 18%, rgba(111, 53, 216, 0.52), transparent 38%), radial-gradient(circle at 76% 82%, rgba(116, 236, 79, 0.2), transparent 38%), linear-gradient(145deg, #10091a, #0b1611);
  animation-delay: -6s;
}

.action-poster:nth-child(4) {
  background-image: radial-gradient(circle at 72% 20%, rgba(145, 246, 91, 0.25), transparent 34%), radial-gradient(circle at 26% 82%, rgba(145, 60, 245, 0.5), transparent 44%), linear-gradient(145deg, #0b1510, #170b22);
  animation-delay: -9s;
}

.poster-symbol {
  position: absolute;
  z-index: 0;
  top: 45%;
  left: 50%;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(10rem, 16vw, 17rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.7;
  text-shadow: 0 0 48px rgba(176, 79, 255, 0.26), 0 0 82px rgba(145, 246, 91, 0.13);
  transform: translate(-50%, -50%) rotate(-8deg);
  transition: color 300ms ease, transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.action-poster:hover .poster-symbol {
  color: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -53%) rotate(-3deg) scale(1.08);
}

.poster-shade {
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 7, 10, 0.08), transparent 36%, rgba(7, 7, 10, 0.64));
}

.poster-top,
.poster-copy {
  z-index: 2;
}

.poster-copy p {
  color: rgba(248, 242, 250, 0.78);
}

@keyframes access-tile-drift {
  from { background-position: 0% 30%; }
  to { background-position: 100% 70%; }
}

.gallery-section {
  background-image:
    radial-gradient(ellipse at 76% 16%, rgba(165, 76, 255, 0.34), transparent 34rem),
    radial-gradient(ellipse at 18% 88%, rgba(91, 204, 58, 0.2), transparent 31rem),
    linear-gradient(155deg, #10081a 0%, #0b0913 54%, #08110d 100%);
}

.gallery-item::after {
  background: linear-gradient(0deg, rgba(6, 6, 9, 0.62), transparent 45%);
}

.persona-section {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  color: var(--bone);
  background-image:
    radial-gradient(circle at 18% 45%, rgba(145, 246, 91, 0.2), transparent 28rem),
    radial-gradient(circle at 72% 20%, rgba(153, 68, 255, 0.34), transparent 36rem),
    linear-gradient(135deg, #0b1510, #13091d 55%, #0a0b11);
  animation: ambient-shift 16s ease-in-out infinite alternate;
}

.persona-graphic {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(176, 79, 255, 0.2), transparent 38%),
    radial-gradient(circle at 50% 60%, rgba(145, 246, 91, 0.13), transparent 44%);
}

.persona-graphic::before {
  content: "";
  position: absolute;
  width: min(74vw, 800px);
  aspect-ratio: 1;
  top: 50%;
  left: 46%;
  border: 1px solid rgba(176, 79, 255, 0.28);
  border-radius: 50%;
  background: repeating-conic-gradient(from 18deg, rgba(145, 246, 91, 0.12) 0 1deg, transparent 1deg 12deg);
  box-shadow: inset 0 0 100px rgba(112, 44, 255, 0.18), 0 0 120px rgba(145, 246, 91, 0.08);
  transform: translate(-50%, -50%);
  animation: identity-orbit 28s linear infinite;
}

.persona-graphic::after {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 0 34%, rgba(176, 79, 255, 0.17) 34.3% 34.7%, transparent 35% 52%, rgba(145, 246, 91, 0.13) 52.3% 52.7%, transparent 53%);
  animation: identity-pulse 7s ease-in-out infinite alternate;
}

.persona-sigil {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 48%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) rotate(-7deg);
}

.persona-sigil span {
  color: var(--white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(10rem, 24vw, 24rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.72;
  text-shadow: 0 0 34px rgba(176, 79, 255, 0.5), 13px 16px 0 rgba(145, 246, 91, 0.12);
}

.persona-sigil i {
  margin-top: 2rem;
  color: var(--fog);
  font-family: var(--font-mono), monospace;
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.5em;
}

.persona-copy {
  width: auto;
  min-height: 100svh;
  margin: 0;
  color: var(--bone);
  background: linear-gradient(90deg, rgba(9, 7, 13, 0.08), rgba(12, 8, 17, 0.46));
}

.persona-copy .section-label {
  color: var(--fog);
}

.persona-copy h2,
.persona-lead {
  color: var(--white);
}

.persona-copy h2 {
  text-shadow: 7px 8px 0 rgba(112, 44, 255, 0.3);
}

.persona-copy .ink-link:hover {
  color: var(--fog);
}

@keyframes identity-orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes identity-pulse {
  from { opacity: 0.45; transform: scale(0.94); }
  to { opacity: 0.9; transform: scale(1.04); }
}

.offers-section {
  background-image:
    radial-gradient(circle at 52% 0%, rgba(126, 52, 245, 0.38), transparent 36rem),
    radial-gradient(circle at 8% 92%, rgba(102, 218, 69, 0.18), transparent 27rem),
    linear-gradient(130deg, #0f0818, #0a0a12 52%, #09120e);
}

.offer-image::after {
  background: linear-gradient(0deg, rgba(7, 6, 10, 0.92) 0%, rgba(7, 6, 10, 0.58) 42%, transparent 76%);
}

.offer-copy {
  background: linear-gradient(0deg, rgba(7, 6, 10, 0.92), rgba(7, 6, 10, 0.04));
}

.wheel-section {
  position: relative;
  display: grid;
  min-height: 100svh;
  background-image:
    radial-gradient(circle at 22% 50%, rgba(145, 246, 91, 0.17), transparent 28rem),
    radial-gradient(circle at 74% 18%, rgba(153, 64, 255, 0.32), transparent 34rem),
    linear-gradient(135deg, #0a1510, #12091c 54%, #090a10);
  animation: ambient-shift 17s ease-in-out infinite alternate;
}

.wheel-art {
  position: relative;
  inset: auto;
  width: auto;
  height: auto;
  min-height: 100svh;
  background: radial-gradient(circle at 46% 50%, rgba(176, 79, 255, 0.14), transparent 43%);
}

.wheel-art > img {
  display: none;
}

.wheel-art::before {
  content: "";
  position: absolute;
  width: min(72vw, 790px);
  aspect-ratio: 1;
  top: 50%;
  left: 46%;
  border: 1px solid rgba(176, 79, 255, 0.36);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 18%, rgba(145, 246, 91, 0.13) 18.3% 18.8%, transparent 19% 46%, rgba(176, 79, 255, 0.2) 46.3% 46.8%, transparent 47%),
    repeating-conic-gradient(from 0deg, rgba(176, 79, 255, 0.34) 0 1.5deg, transparent 1.5deg 15deg);
  box-shadow: inset 0 0 120px rgba(112, 44, 255, 0.17), 0 0 120px rgba(145, 246, 91, 0.08);
  transform: translate(-50%, -50%);
  animation: graphic-wheel-turn 36s linear infinite;
}

.wheel-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 45% 50%, transparent 0 24%, rgba(5, 6, 8, 0.16) 45%, transparent 66%);
}

.wheel-ring {
  z-index: 4;
  top: 50%;
  left: 46%;
  right: auto;
  bottom: auto;
  width: clamp(230px, 27vw, 380px);
  translate: -50% -50%;
}

.wheel-copy {
  width: auto;
  min-height: 100svh;
  margin: 0;
  background: linear-gradient(90deg, rgba(7, 6, 10, 0.02), rgba(11, 7, 16, 0.48));
}

@keyframes graphic-wheel-turn {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.tribute-section {
  background-image: none;
  background-color: #0a0910;
}

.tribute-terminal::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.06) 0%, rgba(5, 5, 8, 0.24) 50%, rgba(5, 5, 8, 0.74) 82%),
    linear-gradient(0deg, rgba(4, 5, 7, 0.52), transparent 46%, rgba(5, 4, 8, 0.15));
}

.tribute-copy {
  background: linear-gradient(90deg, transparent, rgba(7, 6, 10, 0.3) 26%, rgba(7, 6, 10, 0.66));
}

.request-section {
  background-image:
    radial-gradient(circle at 18% 18%, rgba(157, 77, 255, 0.35), transparent 34rem),
    radial-gradient(circle at 86% 82%, rgba(99, 217, 66, 0.2), transparent 29rem),
    linear-gradient(145deg, #10081a, #0c0a14 54%, #08130e);
}

.request-machine {
  border-color: rgba(176, 79, 255, 0.42);
  background: rgba(12, 8, 17, 0.7);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.3), 0 0 70px rgba(112, 44, 255, 0.08);
}

.afterhours::after {
  background: rgba(6, 6, 8, 0.32) linear-gradient(0deg, rgba(7, 8, 9, 0.76), transparent 48%, rgba(7, 8, 9, 0.22));
}

@media (max-width: 820px) {
  .section-fog {
    left: -80%;
    bottom: -10%;
    width: 260%;
    opacity: 0.25;
  }

  .section-fog-hero,
  .section-fog-tribute {
    bottom: -5%;
  }

  .persona-section,
  .wheel-section {
    grid-template-columns: 1fr;
  }

  .persona-graphic,
  .wheel-art {
    min-height: 62svh;
  }

  .wheel-art {
    order: 1;
  }

  .wheel-copy {
    order: 2;
  }

  .persona-copy,
  .wheel-copy {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 4rem 7vw 6rem;
    justify-content: center;
    background: linear-gradient(180deg, rgba(11, 7, 16, 0.12), rgba(11, 7, 16, 0.62));
  }

  .persona-graphic::before {
    width: 125vw;
  }

  .persona-sigil span {
    font-size: clamp(9rem, 48vw, 14rem);
  }

  .wheel-art::before {
    width: 122vw;
  }

  .wheel-ring {
    width: min(72vw, 310px);
  }

  .action-poster,
  .action-poster:nth-child(even) {
    min-height: 520px;
    height: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-fog,
  .action-poster,
  .persona-graphic::before,
  .persona-graphic::after,
  .wheel-art::before {
    animation: none !important;
  }
}

@keyframes hero-breathe {
  from { transform: scale(1.025) translate3d(0, 0, 0); filter: saturate(1.04) brightness(1.06); }
  to { transform: scale(1.07) translate3d(-0.7%, -0.4%, 0); filter: saturate(1.13) brightness(1.11); }
}

@keyframes cinematic-breathe {
  from { transform: scale(1.01) translate3d(0, 0, 0); filter: saturate(1) brightness(1.02); }
  to { transform: scale(1.07) translate3d(-0.8%, -0.5%, 0); filter: saturate(1.12) brightness(1.08); }
}

@keyframes reveal-from-dark {
  from { opacity: 0.82; transform: translateY(24px) scale(0.992); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.vault-site {
  --master-xsire-core-ready: v8;
}
