:root {
  --bg: #020402;
  --panel: #071008;
  --panel-2: #10160d;
  --acid: #98ff37;
  --acid-2: #d7ff66;
  --green: #2fd10e;
  --green-deep: #0c5e0d;
  --red: #ff453e;
  --bone: #fff1d6;
  --muted: #85937d;
  --line: rgba(152, 255, 55, 0.24);
  --psy: 0;
  --mx: 50vw;
  --my: 50vh;
  --smoke: rgba(201, 255, 157, 0.24);
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 1180px;
  margin: 0;
  color: var(--bone);
  background:
    radial-gradient(circle at 50% 18%, rgba(36, 145, 12, 0.24), transparent 25%),
    radial-gradient(circle at 50% 56%, rgba(255, 69, 62, 0.055), transparent 22%),
    linear-gradient(180deg, #020402 0%, #020402 28%, #061106 68%, #020302 100%);
  font-family: "Courier New", Consolas, monospace;
  letter-spacing: 0;
  overflow-x: hidden;
  cursor: crosshair;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(152, 255, 55, 0.05) 48% 52%, transparent 53% 100%),
    linear-gradient(0deg, transparent 0 47%, rgba(255, 69, 62, 0.03) 48% 52%, transparent 53% 100%);
  background-size: 84px 84px, 112px 112px;
  opacity: calc(0.14 + (var(--psy) * 0.34));
  transform: translate3d(calc(var(--psy) * -18px), calc(var(--psy) * 28px), 0);
}

a,
button {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

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

#cult-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  mix-blend-mode: screen;
}

.scanlines,
.grain {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.scanlines {
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035) 0,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px,
    transparent 5px
  );
  opacity: calc(0.08 + (var(--psy) * 0.2));
}

.grain {
  background:
    repeating-linear-gradient(45deg, rgba(152, 255, 55, 0.03) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(135deg, rgba(255, 69, 62, 0.025) 0 1px, transparent 1px 11px);
  opacity: calc(0.06 + (var(--psy) * 0.22));
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 270px;
  padding: 0 34px;
  border-bottom: 1px solid rgba(152, 255, 55, 0.22);
  background: rgba(2, 4, 2, 0.78);
  backdrop-filter: blur(12px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--acid-2);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  image-rendering: pixelated;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  position: relative;
  color: rgba(255, 241, 214, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--acid-2);
  outline: 0;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  box-shadow: 0 0 14px rgba(152, 255, 55, 0.7);
}

main {
  position: relative;
  z-index: 3;
  width: min(1400px, calc(100vw - 120px));
  margin: 0 auto;
}

.section-observe {
  opacity: 0.01;
  transform: translateY(34px);
  transition: opacity 800ms ease, transform 800ms ease, filter 800ms ease;
  filter: saturate(0.75);
}

.section-observe.is-visible,
.hero.section-observe {
  opacity: 1;
  transform: translateY(0);
  filter: saturate(1);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--acid);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-label::before,
.section-label::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  background: var(--line);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  max-height: 980px;
  padding-top: 96px;
  overflow: hidden;
  border-left: 1px solid rgba(152, 255, 55, 0.16);
  border-right: 1px solid rgba(152, 255, 55, 0.16);
  border-bottom: 1px solid rgba(152, 255, 55, 0.16);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 72px 0 0;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(152, 255, 55, 0.08) 8% 8.08%, transparent 8.12% 100%),
    linear-gradient(90deg, transparent 0 91.9%, rgba(255, 69, 62, 0.12) 92% 92.08%, transparent 92.12% 100%),
    repeating-linear-gradient(90deg, transparent 0 117px, rgba(152, 255, 55, 0.025) 118px 119px);
  opacity: calc(0.55 + (var(--psy) * 0.2));
}

.hero-title {
  position: absolute;
  z-index: 1;
  top: 148px;
  left: 50%;
  width: 1280px;
  margin: 0;
  transform: translateX(-50%);
  color: rgba(255, 241, 214, 0.92);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 116px;
  line-height: 0.78;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    5px 0 0 rgba(47, 209, 14, 0.55),
    -3px 3px 0 rgba(255, 69, 62, 0.28),
    0 0 32px rgba(152, 255, 55, 0.18);
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-oracle {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 250px;
  width: 560px;
  height: 560px;
  transform: translateX(-50%);
  animation: floatOracle 6.5s ease-in-out infinite;
  filter:
    drop-shadow(0 0 18px rgba(152, 255, 55, 0.72))
    drop-shadow(0 0 76px rgba(47, 209, 14, 0.26));
  will-change: transform;
}

.hero-character {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  transform-origin: 50% 72%;
}

.hero-character:hover {
  filter: saturate(1.25) contrast(1.1);
}

.hero-oracle.is-squashing .hero-character {
  animation: squash 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero.is-taking-drag .hero-character {
  animation: dragInhale 1050ms cubic-bezier(0.18, 0.8, 0.18, 1) forwards;
}

.hero.is-exhaling .hero-character {
  animation: dragRelease 860ms cubic-bezier(0.16, 0.9, 0.2, 1) forwards;
}

.drag-button {
  position: absolute;
  z-index: 9;
  left: calc(50% + 322px);
  top: 520px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 69, 62, 0.65);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 69, 62, 0.18), rgba(152, 255, 55, 0.12)),
    rgba(2, 4, 2, 0.82);
  color: var(--bone);
  box-shadow:
    0 0 22px rgba(255, 69, 62, 0.18),
    inset 0 0 0 2px rgba(152, 255, 55, 0.06);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 170ms ease, color 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.drag-button::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 50%;
  width: 26px;
  height: 1px;
  background: rgba(255, 69, 62, 0.72);
  box-shadow: 0 0 12px rgba(255, 69, 62, 0.5);
}

.drag-button:hover,
.drag-button:focus-visible {
  transform: translateY(-2px) rotate(-1deg);
  border-color: var(--acid);
  color: var(--acid-2);
  box-shadow:
    0 0 32px rgba(152, 255, 55, 0.32),
    0 0 18px rgba(255, 69, 62, 0.18);
  outline: 0;
}

.drag-button:disabled {
  color: rgba(255, 241, 214, 0.38);
  cursor: wait;
  transform: none;
}

.drag-cloud {
  position: absolute;
  z-index: 7;
  left: calc(50% + 70px);
  top: 560px;
  width: 820px;
  height: 430px;
  pointer-events: none;
  transform: translate(-8%, -50%);
  mix-blend-mode: screen;
}

.drag-cloud span {
  position: absolute;
  left: 0;
  top: 48%;
  width: 220px;
  height: 150px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 38% 42%, rgba(255, 255, 232, 0.48), transparent 48%),
    radial-gradient(ellipse at 62% 52%, rgba(201, 255, 157, 0.34), transparent 60%),
    radial-gradient(ellipse at 50% 75%, rgba(255, 69, 62, 0.09), transparent 44%);
  filter: blur(18px);
  opacity: 0;
  transform: translate(0, 0) scale(0.2);
}

.drag-cloud span:nth-child(2) {
  top: 34%;
  width: 300px;
  height: 220px;
}

.drag-cloud span:nth-child(3) {
  top: 58%;
  width: 360px;
  height: 260px;
}

.drag-cloud span:nth-child(4) {
  top: 24%;
  width: 420px;
  height: 310px;
}

.drag-cloud span:nth-child(5) {
  top: 48%;
  width: 500px;
  height: 360px;
}

.drag-cloud span:nth-child(6) {
  top: 42%;
  width: 620px;
  height: 390px;
}

.hero.is-exhaling .drag-cloud span {
  animation: exhaleCloud 1900ms cubic-bezier(0.12, 0.84, 0.16, 1) forwards;
}

.hero.is-exhaling .drag-cloud span:nth-child(2) {
  animation-delay: 80ms;
}

.hero.is-exhaling .drag-cloud span:nth-child(3) {
  animation-delay: 150ms;
}

.hero.is-exhaling .drag-cloud span:nth-child(4) {
  animation-delay: 220ms;
}

.hero.is-exhaling .drag-cloud span:nth-child(5) {
  animation-delay: 300ms;
}

.hero.is-exhaling .drag-cloud span:nth-child(6) {
  animation-delay: 380ms;
}

.hero-copy {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 42px;
  width: 620px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.ticker {
  margin: 0;
  color: var(--acid);
  font-size: 38px;
  font-weight: 900;
  text-shadow: 0 0 24px rgba(152, 255, 55, 0.55);
}

.slogan {
  margin: 0;
  color: var(--bone);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.ritual-button,
.mini-copy {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid rgba(152, 255, 55, 0.72);
  border-radius: 0;
  background: rgba(2, 4, 2, 0.82);
  color: var(--acid-2);
  box-shadow: inset 0 0 0 2px rgba(152, 255, 55, 0.08), 0 0 20px rgba(152, 255, 55, 0.12);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 170ms ease, background 170ms ease, color 170ms ease, box-shadow 170ms ease;
}

.ritual-button::before,
.mini-copy::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(152, 255, 55, 0.18);
  opacity: 0;
  transition: opacity 170ms ease;
}

.ritual-button:hover,
.ritual-button:focus-visible,
.mini-copy:hover,
.mini-copy:focus-visible {
  transform: translateY(-2px);
  background: var(--acid);
  color: #071008;
  box-shadow: 0 0 30px rgba(152, 255, 55, 0.45);
  outline: 0;
}

.ritual-button:hover::before,
.ritual-button:focus-visible::before,
.mini-copy:hover::before,
.mini-copy:focus-visible::before {
  opacity: 1;
}

.ritual-button.primary {
  border-color: var(--acid);
  background: var(--acid);
  color: #071008;
}

.ritual-button.primary:hover,
.ritual-button.primary:focus-visible {
  background: var(--bone);
  color: #071008;
}

.hero-side {
  position: absolute;
  z-index: 4;
  top: 322px;
  display: grid;
  gap: 14px;
  width: 210px;
  color: rgba(255, 241, 214, 0.64);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-side span {
  display: block;
  padding: 10px 0;
  border-top: 1px solid rgba(152, 255, 55, 0.22);
  border-bottom: 1px solid rgba(152, 255, 55, 0.1);
}

.left-side {
  left: 44px;
}

.right-side {
  right: 44px;
  text-align: right;
}

.smoke-field {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
  opacity: calc(0.86 + (var(--psy) * 0.14));
  mix-blend-mode: screen;
}

.smoke-field::before,
.smoke-field::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: 620px;
  height: 260px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 35% 60%, rgba(224, 255, 196, 0.2), transparent 48%),
    radial-gradient(ellipse at 70% 48%, rgba(152, 255, 55, 0.18), transparent 56%),
    radial-gradient(ellipse at 50% 88%, rgba(255, 69, 62, 0.08), transparent 44%);
  filter: blur(24px);
  transform: translateX(-50%);
  animation: groundSmoke 7s ease-in-out infinite;
}

.smoke-field::after {
  bottom: 210px;
  width: 420px;
  height: 520px;
  opacity: 0.62;
  filter: blur(34px);
  animation-delay: -3.2s;
  animation-duration: 9s;
}

.smoke-field span {
  position: absolute;
  left: 50%;
  bottom: 48px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 45%, var(--smoke), transparent 60%),
    radial-gradient(circle at 68% 35%, rgba(152, 255, 55, 0.2), transparent 46%),
    radial-gradient(circle at 52% 68%, rgba(255, 69, 62, 0.07), transparent 36%);
  filter: blur(20px);
  transform: translateX(-50%);
  animation: smokeRise 8s ease-in-out infinite;
}

.smoke-field span::before,
.smoke-field span::after {
  content: "";
  position: absolute;
  left: 38%;
  bottom: -42px;
  width: 92px;
  height: 430px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(246, 255, 232, 0.26), transparent 48%),
    radial-gradient(ellipse at 45% 52%, rgba(201, 255, 157, 0.18), transparent 52%),
    linear-gradient(180deg, transparent 0%, rgba(236, 255, 215, 0.16) 34%, transparent 78%);
  filter: blur(14px);
  opacity: 0.86;
  transform: rotate(-14deg);
  animation: smokeCurl 5.8s ease-in-out infinite;
}

.smoke-field span::after {
  left: 56%;
  width: 74px;
  height: 380px;
  opacity: 0.68;
  transform: rotate(18deg);
  animation-delay: -2.4s;
  background:
    radial-gradient(ellipse at 52% 18%, rgba(255, 255, 255, 0.2), transparent 46%),
    radial-gradient(ellipse at 46% 58%, rgba(152, 255, 55, 0.18), transparent 52%),
    linear-gradient(180deg, transparent 0%, rgba(152, 255, 55, 0.13) 42%, transparent 80%);
}

.smoke-field span:nth-child(2) {
  left: 42%;
  width: 390px;
  height: 390px;
  animation-delay: -2.1s;
  animation-duration: 10s;
}

.smoke-field span:nth-child(3) {
  left: 59%;
  width: 370px;
  height: 370px;
  animation-delay: -4.2s;
  animation-duration: 11s;
}

.smoke-field span:nth-child(4) {
  left: 38%;
  width: 250px;
  height: 250px;
  animation-delay: -5.6s;
}

.smoke-field span:nth-child(5) {
  left: 64%;
  width: 280px;
  height: 280px;
  animation-delay: -6.8s;
}

.about,
.token,
.commandments,
.smoke-sermon,
.gallery,
.finale {
  position: relative;
  min-height: 650px;
  padding: 92px 76px;
  border-left: 1px solid rgba(152, 255, 55, 0.12);
  border-right: 1px solid rgba(152, 255, 55, 0.12);
}

.about {
  display: grid;
  align-content: center;
  background:
    linear-gradient(180deg, rgba(2, 4, 2, 0.86), rgba(6, 17, 6, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 154px, rgba(152, 255, 55, 0.035) 155px 156px);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr 0.72fr;
  gap: 34px;
  align-items: end;
  margin-top: 54px;
}

.about h2,
.token h2,
.gallery h2,
.finale h2 {
  margin: 0;
  color: var(--bone);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 68px;
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
}

.about p,
.gallery-head p,
.finale p {
  margin: 0;
  color: rgba(255, 241, 214, 0.72);
  font-size: 18px;
  line-height: 1.62;
}

.token {
  background:
    linear-gradient(90deg, rgba(152, 255, 55, 0.04), transparent 26%, rgba(255, 69, 62, 0.035) 72%, transparent),
    #030503;
}

.token-shell {
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.token-title {
  display: grid;
  grid-template-columns: 1fr 168px;
  gap: 24px;
  align-items: center;
  padding: 42px 0;
}

.mini-copy {
  min-width: 148px;
  min-height: 46px;
  font-size: 13px;
}

.token-ledger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(152, 255, 55, 0.2);
}

.token-ledger div {
  min-height: 145px;
  padding: 28px;
  border-right: 1px solid rgba(152, 255, 55, 0.2);
  background:
    linear-gradient(180deg, rgba(152, 255, 55, 0.075), transparent),
    rgba(3, 7, 3, 0.72);
}

.token-ledger div:last-child {
  border-right: 0;
}

.token-ledger span {
  display: block;
  margin-bottom: 28px;
  color: rgba(152, 255, 55, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.token-ledger strong {
  display: block;
  color: var(--bone);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.commandments {
  min-height: 700px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 40%, rgba(255, 69, 62, 0.1), transparent 24%),
    linear-gradient(180deg, #020402, #071408 54%, #020402);
}

.commandments .section-label {
  margin-bottom: 54px;
}

.commandment-row {
  position: relative;
  margin: 16px 0;
  padding: 18px 0;
  border-top: 1px solid rgba(152, 255, 55, 0.24);
  color: var(--acid-2);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 58px;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow:
    calc(var(--psy) * 8px) 0 0 rgba(255, 69, 62, 0.25),
    0 0 calc(10px + (var(--psy) * 28px)) rgba(152, 255, 55, 0.2);
  transform: translateX(calc(var(--drift, 0) * var(--psy) * 42px));
}

.commandment-row::after {
  content: attr(data-drift);
  position: absolute;
  right: 0;
  bottom: 16px;
  color: rgba(255, 69, 62, 0.54);
  font-family: "Courier New", Consolas, monospace;
  font-size: 13px;
}

.commandment-row[data-drift="1"] {
  --drift: 1;
}

.commandment-row[data-drift="-1"] {
  --drift: -1;
}

.smoke-sermon {
  min-height: 720px;
  background:
    radial-gradient(circle at 38% 42%, rgba(152, 255, 55, 0.18), transparent 22%),
    radial-gradient(circle at 72% 34%, rgba(255, 69, 62, 0.08), transparent 22%),
    linear-gradient(180deg, #020402, #081408 58%, #020402);
  overflow: hidden;
}

.smoke-sermon::before,
.smoke-sermon::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.smoke-sermon::before {
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 70px, rgba(152, 255, 55, 0.04) 71px 72px),
    repeating-linear-gradient(0deg, transparent 0 54px, rgba(152, 255, 55, 0.025) 55px 56px);
  opacity: calc(0.45 + (var(--psy) * 0.35));
}

.smoke-sermon::after {
  left: 20%;
  right: 16%;
  bottom: -80px;
  height: 380px;
  background:
    radial-gradient(ellipse at 25% 70%, rgba(201, 255, 157, 0.14), transparent 55%),
    radial-gradient(ellipse at 70% 58%, rgba(152, 255, 55, 0.11), transparent 58%);
  filter: blur(26px);
  animation: sermonSmoke 9s ease-in-out infinite;
  mix-blend-mode: screen;
}

.sermon-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 58px;
  align-items: center;
  margin-top: 42px;
}

.sermon-oracle {
  position: relative;
  height: 470px;
}

.sermon-oracle img {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 430px;
  transform: translateX(-50%) rotate(-3deg);
  image-rendering: pixelated;
  filter:
    drop-shadow(0 0 28px rgba(152, 255, 55, 0.5))
    hue-rotate(calc(var(--psy) * 18deg));
}

.sermon-copy h2 {
  margin: 0 0 22px;
  color: var(--bone);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 66px;
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow: 4px 0 0 rgba(47, 209, 14, 0.45), -3px 0 0 rgba(255, 69, 62, 0.18);
}

.sermon-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 241, 214, 0.72);
  font-size: 18px;
  line-height: 1.62;
}

.smoke-quotes {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.smoke-quotes span {
  display: block;
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(152, 255, 55, 0.26);
  background: rgba(2, 4, 2, 0.72);
  color: var(--acid-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(152, 255, 55, 0.1);
}

.eye-zone {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 690px;
  margin-top: 42px;
  overflow: hidden;
  border-top: 1px solid rgba(152, 255, 55, 0.2);
  border-bottom: 1px solid rgba(152, 255, 55, 0.2);
  background:
    radial-gradient(circle at var(--zone-x, 50%) var(--zone-y, 50%), rgba(152, 255, 55, 0.18), transparent 18%),
    repeating-linear-gradient(90deg, transparent 0 62px, rgba(152, 255, 55, 0.03) 63px 64px);
}

.eye-zone::before,
.eye-zone::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.eye-zone::before {
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(152, 255, 55, 0.08) 39%, transparent 41%),
    linear-gradient(65deg, transparent 0 58%, rgba(255, 69, 62, 0.06) 59%, transparent 61%);
  transform: translate3d(calc(var(--watch-x) * -0.12), calc(var(--watch-y) * -0.12), 0) skewX(calc(var(--psy) * -2deg));
  opacity: calc(0.35 + (var(--psy) * 0.35));
}

.eye-zone::after {
  background: repeating-linear-gradient(
    180deg,
    rgba(152, 255, 55, 0.07) 0 1px,
    transparent 1px 22px
  );
  opacity: calc(0.08 + (var(--psy) * 0.2));
  transform: translateY(calc(var(--psy) * -32px));
}

.watch-eye {
  position: relative;
  z-index: 2;
  width: 860px;
  height: 340px;
  overflow: hidden;
  border: 18px solid #020402;
  border-radius: 78% 18% 78% 18% / 72% 26% 72% 26%;
  background:
    radial-gradient(circle at 50% 50%, #fff8e8 0 16%, #f3dfc2 17% 49%, #e6c7a5 50% 100%);
  box-shadow:
    0 0 0 3px rgba(152, 255, 55, 0.9),
    0 0 72px rgba(152, 255, 55, 0.42),
    inset 0 0 56px rgba(10, 60, 7, 0.34);
  transform: rotate(-2deg) scale(calc(1 + (var(--psy) * 0.035)));
}

.watch-eye::before {
  content: "";
  position: absolute;
  inset: -16px;
  background:
    linear-gradient(14deg, transparent 0 50%, rgba(255, 69, 62, 0.8) 51% 52%, transparent 53%),
    linear-gradient(-18deg, transparent 0 63%, rgba(255, 69, 62, 0.75) 64% 65%, transparent 66%),
    linear-gradient(32deg, transparent 0 32%, rgba(255, 69, 62, 0.55) 33% 34%, transparent 35%);
  opacity: 0.55;
}

.watch-eye::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(2, 4, 2, 0.22));
}

.watch-veins {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, transparent 0 44%, rgba(255, 69, 62, 0.55) 45% 46%, transparent 47%),
    linear-gradient(70deg, transparent 0 59%, rgba(255, 69, 62, 0.48) 60% 61%, transparent 62%),
    linear-gradient(145deg, transparent 0 35%, rgba(255, 69, 62, 0.42) 36% 37%, transparent 38%);
  opacity: 0.7;
}

.watch-pupil {
  position: absolute;
  left: calc(50% - 110px + var(--watch-x));
  top: calc(50% - 110px + var(--watch-y));
  width: 220px;
  height: 220px;
  border: 30px solid #041004;
  border-radius: 50%;
  background:
    radial-gradient(circle at 57% 42%, #ecffe1 0 10px, transparent 11px),
    radial-gradient(circle at 50% 50%, #0b2108 0 26%, #1b7f13 27% 46%, #98ff37 47% 49%, #093309 50% 100%);
  box-shadow: 0 0 44px rgba(47, 209, 14, 0.52), inset 0 0 18px rgba(2, 4, 2, 0.9);
  transition: left 110ms ease-out, top 110ms ease-out;
}

.watch-shine {
  position: absolute;
  left: calc(50% + 60px + var(--watch-x));
  top: calc(50% - 80px + var(--watch-y));
  width: 52px;
  height: 28px;
  background: rgba(255, 255, 255, 0.88);
  transform: skewX(12deg);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.eye-readout {
  position: absolute;
  z-index: 3;
  left: 44px;
  bottom: 36px;
  display: grid;
  gap: 8px;
  color: rgba(255, 241, 214, 0.78);
  text-transform: uppercase;
}

.eye-readout span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.eye-readout strong {
  color: var(--acid);
  font-size: 26px;
  text-shadow: 0 0 18px rgba(152, 255, 55, 0.5);
}

.wave {
  position: absolute;
  z-index: 1;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(152, 255, 55, 0.8);
  transform: translate(-50%, -50%);
  animation: waveOut 780ms ease-out forwards;
  pointer-events: none;
}

.eye-whisper {
  position: absolute;
  z-index: 5;
  color: var(--acid-2);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(152, 255, 55, 0.7);
  transform: translate(-50%, -50%);
  animation: whisper 1200ms ease-out forwards;
  pointer-events: none;
}

.gallery {
  min-height: 920px;
  background:
    linear-gradient(180deg, #020402, #081008 48%, #020402),
    repeating-linear-gradient(90deg, transparent 0 88px, rgba(152, 255, 55, 0.035) 89px 90px);
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin: 54px 0 34px;
}

.gallery-head h2 {
  width: 920px;
}

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

.gallery-item {
  position: relative;
  height: 480px;
  overflow: hidden;
  border: 1px solid rgba(152, 255, 55, 0.22);
  border-radius: 6px;
  background: #030603;
  cursor: pointer;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 0 58%, rgba(2, 4, 2, 0.78) 100%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 8px);
  opacity: 0.72;
  transition: opacity 220ms ease;
}

.gallery-item img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 430px;
  max-width: none;
  transform: translate(-50%, -46%) scale(0.92);
  image-rendering: pixelated;
  filter: saturate(1.02) contrast(1.08);
  transition: transform 300ms ease, filter 300ms ease;
}

.gallery-item span {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: var(--bone);
  font-size: 15px;
  font-weight: 900;
  text-align: left;
}

.gallery-item:hover,
.gallery-item:focus-visible,
.gallery-item.is-active {
  border-color: var(--acid);
  outline: 0;
  box-shadow: 0 0 30px rgba(152, 255, 55, 0.24);
}

.gallery-item:hover::before,
.gallery-item:focus-visible::before,
.gallery-item.is-active::before {
  opacity: 0.42;
}

.gallery-item:hover img,
.gallery-item:focus-visible img,
.gallery-item.is-active img {
  transform: translate(-50%, -49%) scale(1.03) rotate(-1deg);
}

.gallery-item[data-mode="red"] img {
  filter: hue-rotate(292deg) saturate(1.35) contrast(1.12);
}

.gallery-item[data-mode="acid"] img {
  filter: saturate(1.8) contrast(1.18) brightness(1.08);
}

.gallery-item[data-mode="void"] img {
  filter: grayscale(0.72) contrast(1.45) brightness(0.78);
}

.finale {
  display: grid;
  grid-template-columns: 720px 1fr;
  align-items: center;
  min-height: 1010px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(152, 255, 55, 0.06), transparent 36%),
    radial-gradient(ellipse at 70% 48%, rgba(255, 69, 62, 0.08), transparent 28%),
    #020402;
}

.finale-character {
  width: 710px;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 64px rgba(152, 255, 55, 0.38));
  animation: floatOracle 7.5s ease-in-out infinite reverse;
}

.finale-copy {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.finale-copy span {
  color: var(--acid);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.finale h2 {
  font-size: 118px;
  line-height: 0.88;
}

.finale p {
  color: rgba(255, 241, 214, 0.72);
  font-size: 28px;
  text-transform: lowercase;
}

.toast {
  position: fixed;
  z-index: 30;
  right: 34px;
  bottom: 34px;
  min-width: 164px;
  padding: 14px 18px;
  border: 1px solid var(--acid);
  background: #020402;
  color: var(--acid-2);
  box-shadow: 0 0 24px rgba(152, 255, 55, 0.32);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(22px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.glitching .hero-title,
.glitching .commandment-row,
.glitching .sermon-copy h2,
.glitching .finale h2 {
  animation: glitchText 260ms steps(2) 1;
}

.glitching .hero-character,
.glitching .sermon-oracle img,
.glitching .gallery-item img {
  animation: imageGlitch 260ms steps(2) 1;
}

@keyframes floatOracle {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateX(-50%) translateY(-18px) rotate(1deg);
  }
}

@keyframes squash {
  0%,
  100% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.07, 0.9) translateY(18px);
  }
  65% {
    transform: scale(0.94, 1.08) translateY(-10px);
  }
}

@keyframes dragInhale {
  0% {
    transform: scale(1);
    filter: saturate(1.05) contrast(1.06);
  }
  34% {
    transform: scale(0.96, 1.04) translateY(-4px);
    filter: saturate(1.25) contrast(1.12) brightness(1.06);
  }
  72% {
    transform: scale(0.88, 0.94) translateY(10px) rotate(-0.8deg);
    filter: saturate(1.48) contrast(1.22) brightness(0.92);
  }
  100% {
    transform: scale(0.84, 0.9) translateY(16px) rotate(0.7deg);
    filter: saturate(1.55) contrast(1.26) brightness(0.86);
  }
}

@keyframes dragRelease {
  0% {
    transform: scale(0.84, 0.9) translateY(16px);
    filter: saturate(1.55) contrast(1.24) brightness(0.88);
  }
  34% {
    transform: scale(1.08, 0.92) translateY(-8px);
    filter: saturate(1.7) contrast(1.32) brightness(1.1);
  }
  68% {
    transform: scale(0.97, 1.04) translateY(3px);
  }
  100% {
    transform: scale(1);
    filter: saturate(1.05) contrast(1.06);
  }
}

@keyframes exhaleCloud {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.15) rotate(-3deg);
  }
  12% {
    opacity: 0.96;
  }
  52% {
    opacity: 0.88;
    transform: translate(250px, -62px) scale(1.5) rotate(8deg);
  }
  100% {
    opacity: 0;
    transform: translate(520px, -142px) scale(2.55) rotate(18deg);
  }
}

@keyframes waveOut {
  0% {
    width: 18px;
    height: 18px;
    opacity: 0.9;
  }
  100% {
    width: 620px;
    height: 620px;
    opacity: 0;
  }
}

@keyframes whisper {
  0% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -70px);
  }
}

@keyframes smokeRise {
  0% {
    opacity: 0.2;
    transform: translate(-50%, 80px) scale(0.65) rotate(0deg);
  }
  18% {
    opacity: 0.95;
  }
  72% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + 70px), -500px) scale(1.9) rotate(22deg);
  }
}

@keyframes groundSmoke {
  0%,
  100% {
    opacity: 0.72;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(calc(-50% + 26px)) translateY(-18px) scale(1.12);
  }
}

@keyframes smokeCurl {
  0%,
  100% {
    opacity: 0.48;
    transform: translateX(-18px) translateY(18px) scale(0.9) rotate(-12deg);
  }
  45% {
    opacity: 0.96;
    transform: translateX(22px) translateY(-34px) scale(1.08) rotate(16deg);
  }
  72% {
    opacity: 0.62;
    transform: translateX(-8px) translateY(-72px) scale(1.18) rotate(-6deg);
  }
}

@keyframes sermonSmoke {
  0%,
  100% {
    transform: translateX(-28px) translateY(0) scale(1);
    opacity: 0.72;
  }
  50% {
    transform: translateX(34px) translateY(-28px) scale(1.08);
    opacity: 1;
  }
}

@keyframes glitchText {
  0% {
    transform: translate(0, 0);
    filter: none;
  }
  28% {
    transform: translate(7px, -2px);
    filter: hue-rotate(25deg);
  }
  54% {
    transform: translate(-5px, 2px);
    filter: contrast(1.5);
  }
  100% {
    transform: translate(0, 0);
    filter: none;
  }
}

@keyframes imageGlitch {
  0% {
    filter: saturate(1.1) contrast(1.05);
  }
  28% {
    filter: hue-rotate(38deg) saturate(1.6) contrast(1.3);
  }
  54% {
    filter: hue-rotate(-18deg) saturate(1.4) contrast(1.45);
  }
  100% {
    filter: saturate(1.1) contrast(1.05);
  }
}

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

@media (max-height: 840px) and (min-width: 1180px) {
  .hero-title {
    top: 108px;
    width: 1040px;
    font-size: 88px;
  }

  .hero-oracle {
    top: 205px;
    width: 490px;
    height: 490px;
  }

  .drag-button {
    left: calc(50% + 280px);
    top: 430px;
    width: 122px;
    min-height: 46px;
    font-size: 11px;
  }

  .drag-cloud {
    left: calc(50% + 48px);
    top: 480px;
    width: 700px;
    height: 350px;
  }

  .hero-copy {
    bottom: 24px;
    gap: 10px;
  }

  .ticker {
    font-size: 32px;
  }

  .slogan {
    font-size: 18px;
  }

  .ritual-button {
    min-height: 46px;
    min-width: 138px;
  }

  .hero-side {
    top: 300px;
  }
}
