:root {
  --black: #020202;
  --charcoal: #080707;
  --red: #c51623;
  --gold: #d7b15d;
  --green: #58f09a;
  --cyan: #7ce9ff;
  --bone: #f4ebdd;
  --muted: #9d9288;
  --line: rgba(244, 235, 221, 0.16);
  --header: 72px;
  --serif: "Cinzel", Georgia, serif;
  --sans: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --shadow: 0 30px 110px rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--black);
  color: var(--bone);
  letter-spacing: 0;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--sans);
  background: var(--black);
}

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

button,
a {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

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

.site {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(197, 22, 35, 0.22), transparent 34rem),
    radial-gradient(circle at 84% 56%, rgba(124, 233, 255, 0.1), transparent 30rem),
    linear-gradient(180deg, #020202, #080707 44%, #020202);
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 30px;
  border-bottom: 1px solid rgba(244, 235, 221, 0.055);
  background: linear-gradient(180deg, rgba(2, 2, 2, 0.38), rgba(2, 2, 2, 0.04));
  backdrop-filter: blur(9px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 700;
  letter-spacing: 0;
}

.brand__mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(215, 177, 93, 0.7);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--gold) 0 3px, transparent 4px),
    conic-gradient(from 45deg, transparent 0 19%, rgba(215, 177, 93, 0.9) 20% 21%, transparent 22% 49%, rgba(215, 177, 93, 0.9) 50% 51%, transparent 52% 100%);
  box-shadow: 0 0 24px rgba(215, 177, 93, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}

.nav a,
.footer a,
.footer button,
.terminal__top button {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 10px 12px;
  color: rgba(244, 235, 221, 0.64);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a:hover,
.footer a:hover,
.footer button:hover,
.terminal__top button:hover {
  border-color: rgba(215, 177, 93, 0.34);
  color: var(--gold);
}

.sound {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 0 0 auto;
  width: auto;
  min-height: 32px;
  border: 0;
  border-radius: 0;
  padding: 0 0 0 14px;
  color: rgba(244, 235, 221, 0.56);
  background: transparent;
}

.sound span {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sound-on .sound span {
  color: var(--green);
  animation: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.12) brightness(0.84);
  opacity: 1;
  transition: opacity 420ms ease, filter 420ms ease;
}

.hero.video-swapping .hero__video {
  opacity: 0.38;
  filter: saturate(0.75) contrast(1.18) brightness(0.58);
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 2, 2, 0.14), rgba(2, 2, 2, 0.02) 36%, rgba(2, 2, 2, 0.72)),
    linear-gradient(90deg, rgba(2, 2, 2, 0.6), rgba(2, 2, 2, 0.08) 42%, rgba(2, 2, 2, 0.44)),
    radial-gradient(circle at 62% 38%, transparent 0 18rem, rgba(2, 2, 2, 0.32) 36rem);
}

.hero__frame {
  position: absolute;
  inset: 88px 24px 28px;
  z-index: -2;
  pointer-events: none;
  border: 1px solid rgba(215, 177, 93, 0.11);
  border-image: linear-gradient(135deg, rgba(215, 177, 93, 0.34), transparent 28%, rgba(124, 233, 255, 0.14), transparent 72%, rgba(215, 177, 93, 0.22)) 1;
}

.hero__arcane {
  position: absolute;
  inset: 88px 24px 28px;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero__arcane span {
  position: absolute;
  left: -12%;
  width: 124%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 177, 93, 0.54), rgba(124, 233, 255, 0.24), transparent);
  box-shadow: 0 0 24px rgba(215, 177, 93, 0.22);
  opacity: 0.34;
  transform: rotate(-8deg);
  animation: arcaneSweep 8.5s ease-in-out infinite;
}

.hero__arcane span:nth-child(1) {
  top: 18%;
}

.hero__arcane span:nth-child(2) {
  top: 52%;
  animation-delay: 1.8s;
  transform: rotate(7deg);
}

.hero__arcane span:nth-child(3) {
  top: 82%;
  animation-delay: 3.2s;
}

.hero__arcane::before,
.hero__arcane::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -310px;
  width: 620px;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  transform: translateX(-50%);
}

.hero__arcane::before {
  border: 1px solid rgba(215, 177, 93, 0.18);
  background:
    radial-gradient(circle, transparent 0 42%, rgba(215, 177, 93, 0.06) 43% 44%, transparent 45%),
    conic-gradient(from 90deg, transparent 0 10%, rgba(215, 177, 93, 0.22) 11% 12%, transparent 13% 34%, rgba(124, 233, 255, 0.16) 35% 36%, transparent 37% 100%);
  box-shadow: 0 0 80px rgba(215, 177, 93, 0.08);
  opacity: 0.68;
  animation: omenRotate 22s linear infinite;
}

.hero__arcane::after {
  width: 420px;
  bottom: -210px;
  border: 1px solid rgba(124, 233, 255, 0.1);
  opacity: 0.48;
  animation: omenRotate 16s linear infinite reverse;
}

.hero__content {
  position: relative;
  width: min(360px, calc(100% - 48px));
  margin: 0 auto 44px 44px;
  padding-top: calc(var(--header) + 48px);
  padding-left: 18px;
}

.hero__content::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  max-height: 190px;
  background: linear-gradient(180deg, transparent, rgba(215, 177, 93, 0.82), transparent);
  box-shadow: 0 0 24px rgba(215, 177, 93, 0.26);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.chapter h2,
.raid h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 340px;
  font-size: 2.05rem;
  line-height: 1;
  text-shadow: 0 28px 80px rgba(0, 0, 0, 0.86);
}

.hero__content p:not(.eyebrow),
.chapter__copy p:not(.eyebrow),
.raid p:not(.eyebrow),
.terminal p,
.steps p,
.altar__grid p {
  color: rgba(244, 235, 221, 0.72);
  line-height: 1.6;
}

.hero__content p:not(.eyebrow) {
  max-width: 330px;
  margin: 12px 0 0;
  font-size: 0.94rem;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 156px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 18px;
  color: var(--bone);
  background: rgba(244, 235, 221, 0.08);
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--gold);
  border-color: rgba(215, 177, 93, 0.44);
  background:
    linear-gradient(135deg, rgba(215, 177, 93, 0.18), transparent 55%),
    rgba(2, 2, 2, 0.32);
  backdrop-filter: blur(12px);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(2, 2, 2, 0.42);
  backdrop-filter: blur(10px);
}

.button--full {
  width: 100%;
}

.sound-card {
  position: absolute;
  right: 42px;
  bottom: 42px;
  width: min(196px, calc(100% - 40px));
  padding: 0 0 0 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.sound-card::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(215, 177, 93, 0.44);
  box-shadow: 0 0 22px rgba(215, 177, 93, 0.18);
}

.sound-card span,
.stats span,
.altar__grid span,
.terminal__top span,
.swap-card span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sound-card strong {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 0.98rem;
  text-transform: uppercase;
}

.sound-card button {
  width: auto;
  min-height: auto;
  margin-top: 8px;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: rgba(215, 177, 93, 0.76);
  background: transparent;
  font-weight: 800;
  text-transform: uppercase;
}

.video-switcher {
  position: absolute;
  right: 36px;
  top: 50%;
  display: grid;
  gap: 18px;
  z-index: 5;
  padding: 10px 0 10px 18px;
  border-left: 1px solid rgba(244, 235, 221, 0.1);
  transform: translateY(-50%);
}

.video-pill {
  position: relative;
  width: 118px;
  min-height: 24px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: baseline;
  gap: 10px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--bone);
  text-align: left;
  background: transparent;
  box-shadow: none;
  opacity: 0.36;
  transition: transform 180ms ease, border-color 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.video-pill::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  width: 9px;
  height: 1px;
  background: rgba(244, 235, 221, 0.2);
  transform: translateY(-50%);
}

.video-pill:hover,
.video-pill.is-active {
  transform: translateX(-5px);
  opacity: 1;
  box-shadow: none;
}

.video-pill.is-active::before {
  background: var(--gold);
  box-shadow: 0 0 16px rgba(215, 177, 93, 0.44);
}

.video-pill span {
  position: static;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 800;
  text-shadow: 0 2px 12px #000;
}

.video-pill strong {
  color: rgba(244, 235, 221, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 1px;
  height: 54px;
  background: rgba(244, 235, 221, 0.18);
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 18px;
  background: var(--gold);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: -1px auto 0;
  border-block: 1px solid rgba(244, 235, 221, 0.1);
  background: rgba(2, 2, 2, 0.48);
  backdrop-filter: blur(12px);
}

.stats div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

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

.stats strong {
  font-family: var(--serif);
  font-size: 1.42rem;
  text-transform: uppercase;
}

.reel-section {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 18px;
  scroll-margin-top: 92px;
}

.reel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.reel-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
  text-transform: uppercase;
}

.reel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-block: 1px solid rgba(244, 235, 221, 0.1);
  background: transparent;
}

.reel-card {
  position: relative;
  min-height: 168px;
  display: grid;
  grid-template-columns: 180px 54px minmax(0, 1fr);
  align-items: center;
  column-gap: 24px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(244, 235, 221, 0.08);
  border-radius: 0;
  padding: 18px 0;
  color: var(--bone);
  text-align: left;
  background: transparent;
}

.reel-card:last-child {
  border-bottom: 0;
}

.reel-card img {
  position: relative;
  inset: auto;
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 180px;
  height: 102px;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.8) contrast(1.08) brightness(0.72);
  transition: transform 520ms ease, opacity 220ms ease, filter 220ms ease;
}

.reel-card::after {
  display: none;
}

.reel-card:hover img,
.reel-card.is-active img {
  transform: scale(1.045);
  opacity: 0.86;
  filter: saturate(1.02) contrast(1.08) brightness(0.86);
}

.reel-card.is-active {
  box-shadow: inset 1px 0 0 rgba(215, 177, 93, 0.68);
}

.reel-card span,
.reel-card strong,
.reel-card p {
  position: relative;
  z-index: 1;
}

.reel-card span {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 800;
}

.reel-card strong {
  grid-column: 3;
  grid-row: 1;
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.reel-card p {
  grid-column: 3;
  grid-row: 2;
  min-height: auto;
  margin: 0;
  color: rgba(244, 235, 221, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.chapter,
.buy {
  position: relative;
  z-index: 2;
  padding: 108px 0;
  scroll-margin-top: 92px;
}

.chapter--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 42px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.chapter__media {
  overflow: hidden;
  border: 1px solid rgba(215, 177, 93, 0.18);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.chapter__media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.chapter__copy {
  max-width: 560px;
}

.chapter__copy--center {
  width: min(860px, calc(100% - 40px));
  max-width: none;
  margin: 0 auto 38px;
  text-align: center;
}

.chapter h2,
.raid h2 {
  font-size: 4.7rem;
  line-height: 0.96;
}

.chapter__copy p:not(.eyebrow),
.raid p:not(.eyebrow) {
  margin: 20px 0 0;
  font-size: 1.05rem;
}

.altar {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(215, 177, 93, 0.06), transparent 36%),
    #050505;
}

.altar__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.altar__grid article {
  min-height: 250px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px;
  background: rgba(2, 2, 2, 0.82);
}

.altar__grid strong {
  font-family: var(--serif);
  font-size: 1.64rem;
  line-height: 1.08;
}

.altar__image {
  width: min(860px, calc(100% - 60px));
  margin: 42px auto 0;
  border: 1px solid rgba(215, 177, 93, 0.2);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.raid {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.raid img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04) brightness(0.82);
}

.raid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(2, 2, 2, 0.05), rgba(2, 2, 2, 0.84)),
    linear-gradient(90deg, rgba(2, 2, 2, 0.82), rgba(2, 2, 2, 0.12) 60%, rgba(2, 2, 2, 0.58));
}

.raid div {
  width: min(680px, calc(100% - 40px));
  margin: 0 auto 88px 8vw;
}

.buy__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 34px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.steps {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  list-style: none;
  background: var(--line);
}

.steps li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
  background: rgba(2, 2, 2, 0.78);
}

.steps span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.24rem;
}

.steps h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.terminal {
  align-self: start;
  padding: 18px;
  border: 1px solid rgba(215, 177, 93, 0.24);
  border-radius: 4px;
  background: rgba(2, 2, 2, 0.78);
  box-shadow: var(--shadow);
}

.terminal__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.terminal__top button {
  border-color: var(--line);
  background: rgba(244, 235, 221, 0.06);
}

.swap-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(244, 235, 221, 0.045);
}

.swap-card + .swap-card {
  margin-top: 10px;
}

.swap-card strong {
  font-family: var(--serif);
  font-size: 1.6rem;
}

.swap-card--green strong {
  color: var(--green);
}

.terminal .button {
  margin-top: 14px;
}

.terminal p {
  margin: 14px 0 0;
  font-size: 0.9rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 44px;
  border-top: 1px solid var(--line);
}

.footer > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.footer > div:first-child {
  display: grid;
  gap: 6px;
}

.footer strong {
  font-family: var(--serif);
  text-transform: uppercase;
}

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

.footer button {
  background: rgba(244, 235, 221, 0.06);
}

.copied {
  border-color: rgba(88, 240, 154, 0.74) !important;
  color: var(--green) !important;
}

.chant-strip,
.cut-archive,
.seal-section,
.launch-rite {
  position: relative;
  z-index: 2;
}

.chant-strip {
  display: flex;
  width: 100%;
  min-height: 96px;
  overflow: hidden;
  border-block: 1px solid rgba(244, 235, 221, 0.08);
  background: #020202;
}

.chant-strip span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  min-width: 38vw;
  padding: 0 42px;
  color: rgba(244, 235, 221, 0.82);
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  animation: chantDrift 22s linear infinite;
}

.chant-strip span:nth-child(even) {
  color: rgba(215, 177, 93, 0.84);
}

.cut-archive {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
  padding: 126px 0;
  scroll-margin-top: 92px;
}

.archive-head {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 44px;
}

.archive-head h2,
.seal-copy h2,
.launch-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 4.8rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.archive-list {
  display: grid;
  gap: 0;
  border-block: 1px solid rgba(244, 235, 221, 0.11);
}

.cut-row {
  position: relative;
  min-height: 188px;
  display: grid;
  grid-template-columns: 170px 70px minmax(0, 1fr) minmax(180px, 0.32fr);
  gap: 22px;
  align-items: center;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(244, 235, 221, 0.08);
  padding: 18px 0;
  color: var(--bone);
  text-align: left;
  background: transparent;
}

.cut-row:last-child {
  border-bottom: 0;
}

.cut-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(215, 177, 93, 0.12), transparent 38%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cut-row:hover::before,
.cut-row.is-active::before {
  opacity: 1;
}

.cut-row img {
  width: 170px;
  height: 112px;
  object-fit: cover;
  opacity: 0.5;
  filter: grayscale(0.1) saturate(0.8) contrast(1.12) brightness(0.72);
  transform: skewX(-4deg);
  transition: opacity 220ms ease, filter 220ms ease, transform 220ms ease;
}

.cut-row:hover img,
.cut-row.is-active img {
  opacity: 0.95;
  filter: saturate(1.08) contrast(1.1) brightness(0.86);
  transform: skewX(-4deg) translateX(8px);
}

.cut-index {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.9rem;
  font-weight: 800;
}

.cut-row strong {
  font-family: var(--serif);
  font-size: 3.3rem;
  line-height: 0.92;
  text-transform: uppercase;
}

.cut-file {
  color: rgba(244, 235, 221, 0.5);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lore-monolith {
  position: relative;
  min-height: 880px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.lore-monolith img,
.clip-wall img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.08) brightness(0.72);
}

.lore-monolith::after,
.clip-wall::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(2, 2, 2, 0.08), rgba(2, 2, 2, 0.86)),
    linear-gradient(90deg, rgba(2, 2, 2, 0.78), rgba(2, 2, 2, 0.12) 52%, rgba(2, 2, 2, 0.72));
}

.monolith-copy {
  width: min(940px, calc(100% - 44px));
  margin: 0 auto 86px;
}

.monolith-copy h2,
.clip-wall h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 6.8rem;
  line-height: 0.86;
  text-transform: uppercase;
}

.monolith-stamp {
  position: absolute;
  right: 5vw;
  top: 18%;
  width: min-content;
  color: rgba(215, 177, 93, 0.25);
  font-family: var(--serif);
  font-size: 5.4rem;
  font-weight: 800;
  line-height: 0.86;
  text-align: right;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.seal-section {
  min-height: 1040px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(215, 177, 93, 0.14), transparent 34rem),
    radial-gradient(circle at 72% 24%, rgba(124, 233, 255, 0.08), transparent 30rem),
    #020202;
  scroll-margin-top: 92px;
}

.seal-stage {
  position: relative;
  width: min(1220px, calc(100% - 44px));
  min-height: 820px;
  display: grid;
  place-items: center;
}

.seal-stage > img {
  position: absolute;
  right: -3%;
  bottom: 4%;
  z-index: 0;
  width: min(680px, 62vw);
  opacity: 0.7;
  filter: saturate(0.86) contrast(1.08) brightness(0.66);
}

.seal-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(760px, 78vw);
  aspect-ratio: 1;
  border: 1px solid rgba(215, 177, 93, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 42%, rgba(215, 177, 93, 0.07) 43% 44%, transparent 45%),
    conic-gradient(from 0deg, transparent 0 8%, rgba(215, 177, 93, 0.3) 9% 10%, transparent 11% 24%, rgba(124, 233, 255, 0.15) 25% 26%, transparent 27% 100%);
  box-shadow: 0 0 120px rgba(215, 177, 93, 0.12);
  transform: translate(-50%, -50%);
  animation: sealTurn 30s linear infinite;
}

.seal-ring::before,
.seal-ring::after {
  content: "";
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(244, 235, 221, 0.1);
  border-radius: 50%;
}

.seal-ring::after {
  inset: 31%;
  border-color: rgba(124, 233, 255, 0.1);
}

.seal-copy {
  position: absolute;
  left: 0;
  top: 10%;
  z-index: 3;
  width: min(620px, 58vw);
  padding-left: 18px;
  border-left: 1px solid rgba(215, 177, 93, 0.42);
  text-shadow: 0 24px 72px rgba(0, 0, 0, 0.9);
}

.seal-copy h2 {
  font-size: 5.8rem;
}

.seal-facts {
  position: absolute;
  left: 0;
  bottom: 12%;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(104px, 1fr));
  gap: 1px;
  width: min(760px, 72vw);
  margin: 0;
  border-block: 1px solid rgba(244, 235, 221, 0.12);
  background: linear-gradient(90deg, rgba(2, 2, 2, 0.72), rgba(2, 2, 2, 0.18));
  backdrop-filter: blur(10px);
}

.seal-facts div {
  display: grid;
  gap: 8px;
  min-height: 112px;
  align-content: center;
  padding: 18px 16px;
  border-right: 1px solid rgba(244, 235, 221, 0.08);
}

.seal-facts div:last-child {
  border-right: 0;
}

.seal-facts dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.seal-facts dd {
  margin: 0;
  color: var(--bone);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.clip-wall {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.clip-wall div {
  width: min(820px, calc(100% - 44px));
  margin: 0 auto 92px 6vw;
}

.launch-rite {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 44px;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 132px 0 150px;
  align-items: start;
}

.launch-copy h2 {
  font-size: 5.2rem;
}

.launch-manifest {
  display: grid;
  border-block: 1px solid rgba(244, 235, 221, 0.12);
}

.launch-manifest p {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid rgba(244, 235, 221, 0.08);
}

.launch-manifest p:last-child {
  border-bottom: 0;
}

.launch-manifest span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.launch-manifest strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes equalize {
  from {
    height: 7px;
  }
  to {
    height: 21px;
  }
}

@keyframes scrollPulse {
  0%, 100% {
    transform: translateY(0);
    opacity: 0;
  }
  35%, 70% {
    opacity: 1;
  }
  100% {
    transform: translateY(36px);
  }
}

@keyframes arcaneSweep {
  0%, 100% {
    opacity: 0.12;
    transform: translateX(-8%) rotate(-8deg);
  }
  45% {
    opacity: 0.38;
  }
  70% {
    transform: translateX(8%) rotate(-8deg);
  }
}

@keyframes omenRotate {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

@keyframes chantDrift {
  to {
    transform: translateX(-100%);
  }
}

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

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

  .chapter h2,
  .raid h2 {
    font-size: 3.8rem;
  }

  .chapter--split,
  .buy__layout {
    grid-template-columns: 1fr;
  }

  .chapter__copy {
    max-width: none;
  }

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

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

  .sound-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(260px, calc(100% - 40px));
    margin: -42px 20px 48px auto;
  }

  .archive-head,
  .launch-rite {
    grid-template-columns: 1fr;
  }

  .archive-head h2,
  .launch-copy h2 {
    font-size: 3.8rem;
  }

  .cut-row {
    grid-template-columns: 140px 54px minmax(0, 1fr);
  }

  .cut-row strong {
    font-size: 2.2rem;
  }

  .cut-file {
    grid-column: 3;
  }

  .monolith-copy h2,
  .clip-wall h2 {
    font-size: 4.8rem;
  }

  .monolith-stamp {
    font-size: 3.8rem;
  }

  .seal-stage {
    min-height: 880px;
  }

  .seal-copy {
    width: min(640px, 82vw);
  }

  .seal-copy h2 {
    font-size: 4.2rem;
  }

  .seal-facts {
    grid-template-columns: repeat(2, 1fr);
    width: min(680px, 82vw);
  }

  .seal-facts div:nth-child(2) {
    border-right: 0;
  }

  .seal-stage > img {
    width: min(620px, 86vw);
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 720px) {
  :root {
    --header: 112px;
  }

  .topbar {
    align-items: flex-start;
    padding: 12px 16px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .hero__frame {
    inset: 128px 14px 20px;
  }

  .hero__arcane {
    inset: 128px 14px 20px;
  }

  .video-switcher {
    top: 138px;
    right: 16px;
    gap: 7px;
    transform: none;
  }

  .video-pill {
    width: 64px;
    height: 42px;
  }

  .hero__content {
    width: min(100% - 28px, 360px);
    margin: 0 auto 68px 20px;
    padding-top: calc(var(--header) + 46px);
  }

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

  .chapter h2,
  .raid h2 {
    font-size: 2.9rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    width: min(100% - 28px, 1180px);
  }

  .stats div:nth-child(2) {
    border-right: 0;
  }

  .chapter,
  .buy {
    padding: 74px 0;
  }

  .chapter--split,
  .chapter__copy--center,
  .reel-section,
  .altar__grid,
  .buy__layout,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .reel-section {
    padding: 72px 0 0;
  }

  .reel-heading {
    display: grid;
    gap: 10px;
  }

  .reel-heading h2 {
    font-size: 2.15rem;
  }

  .chapter__media img {
    height: 430px;
  }

  .chant-strip span {
    min-width: 78vw;
    font-size: 1rem;
  }

  .cut-archive,
  .launch-rite {
    width: min(100% - 28px, 1180px);
    padding: 78px 0;
  }

  .archive-head h2,
  .launch-copy h2 {
    font-size: 2.8rem;
  }

  .cut-row {
    min-height: 148px;
    grid-template-columns: 92px 38px minmax(0, 1fr);
    gap: 12px;
  }

  .cut-row img {
    width: 92px;
    height: 62px;
  }

  .cut-index {
    font-size: 1.5rem;
  }

  .cut-row strong {
    font-size: 1.5rem;
  }

  .cut-file {
    font-size: 0.76rem;
  }

  .lore-monolith,
  .clip-wall {
    min-height: 700px;
  }

  .monolith-copy,
  .clip-wall div {
    width: min(100% - 28px, 940px);
    margin: 0 auto 58px;
  }

  .monolith-copy h2,
  .clip-wall h2 {
    font-size: 3.2rem;
  }

  .monolith-stamp {
    right: 18px;
    top: 18%;
    font-size: 2.6rem;
  }

  .seal-section {
    min-height: 860px;
  }

  .seal-stage {
    width: min(100% - 28px, 1220px);
    min-height: 760px;
  }

  .seal-copy {
    top: 8%;
    width: 100%;
  }

  .seal-copy h2 {
    font-size: 3rem;
  }

  .seal-facts {
    width: 100%;
    bottom: 8%;
  }

  .launch-manifest p {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .raid {
    min-height: 660px;
  }

  .raid div {
    width: min(100% - 28px, 680px);
    margin: 0 auto 58px;
  }

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

@media (max-width: 480px) {
  .brand {
    font-size: 0.9rem;
  }

  .nav a {
    padding: 8px 9px;
    font-size: 0.76rem;
  }

  .video-switcher {
    grid-template-columns: repeat(4, 1fr);
    left: 20px;
    right: 20px;
    top: 130px;
    padding: 0;
    border-left: 0;
    transform: none;
  }

  .video-pill {
    width: auto;
    height: 38px;
  }

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

  .chapter h2,
  .raid h2 {
    font-size: 2.25rem;
  }

  .hero__content p:not(.eyebrow) {
    font-size: 0.98rem;
  }

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

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

  .reel-card {
    min-height: 118px;
    grid-template-columns: 92px 34px minmax(0, 1fr);
    column-gap: 12px;
    padding: 14px 0;
  }

  .reel-card img {
    width: 92px;
    height: 56px;
  }

  .reel-card strong {
    font-size: 1rem;
  }

  .reel-card p {
    font-size: 0.8rem;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .steps li {
    grid-template-columns: 1fr;
  }

  .archive-head h2,
  .launch-copy h2 {
    font-size: 2.25rem;
  }

  .cut-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  .cut-row img {
    width: 100%;
    height: 168px;
    transform: none;
  }

  .cut-row:hover img,
  .cut-row.is-active img {
    transform: none;
  }

  .cut-file {
    grid-column: auto;
  }

  .monolith-copy h2,
  .clip-wall h2 {
    font-size: 2.5rem;
  }

  .seal-copy h2 {
    font-size: 2.35rem;
  }

  .seal-facts {
    grid-template-columns: 1fr;
  }

  .seal-facts div {
    min-height: 84px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 235, 221, 0.08);
  }

  .seal-facts div:last-child {
    border-bottom: 0;
  }

  .seal-stage > img {
    width: 118vw;
  }

  .launch-manifest p {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

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