:root {
  --black: #030303;
  --near: #080908;
  --smoke: #a6a19a;
  --warm: #f0e7d8;
  --silver: #c5c3bb;
  --gold: #a98d57;
  --green: #14241d;
  --line: rgba(240, 231, 216, 0.16);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--warm);
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--black);
  font-family: Inter, Arial, sans-serif;
  cursor: default;
}

a,
button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

::selection {
  background: rgba(169, 141, 87, 0.35);
  color: var(--warm);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background: #020202;
  transition: opacity 1.2s var(--ease), visibility 1.2s var(--ease);
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 8vw, 8rem);
  letter-spacing: 0.18em;
  transform: translateX(0.08em);
}

.preloader__line {
  position: absolute;
  bottom: 20vh;
  width: min(280px, 52vw);
  height: 1px;
  overflow: hidden;
  background: rgba(240, 231, 216, 0.12);
}

.preloader__line span {
  display: block;
  width: 45%;
  height: 100%;
  background: var(--gold);
  animation: loadLine 1.8s var(--ease) infinite;
}

.grain,
.vignette,
.noise-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise-field {
  z-index: 2;
  opacity: 0.35;
  mix-blend-mode: screen;
}

.grain {
  z-index: 3;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.5) 0 1px, transparent 1px),
    radial-gradient(circle at 78% 66%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  animation: grainShift 0.75s steps(2) infinite;
}

.vignette {
  z-index: 4;
  background:
    radial-gradient(circle at 50% 42%, transparent 0 36%, rgba(0, 0, 0, 0.62) 74%, #000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 28%, rgba(0, 0, 0, 0.74));
}

.cursor,
.cursor-dot {
  position: fixed;
  z-index: 50;
  pointer-events: none;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.cursor {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(240, 231, 216, 0.38);
  box-shadow: 0 0 28px rgba(169, 141, 87, 0.12);
  transition: width 0.45s var(--ease), height 0.45s var(--ease), border-color 0.45s var(--ease);
}

.cursor-dot {
  width: 4px;
  height: 4px;
  background: var(--warm);
}

.cursor.is-active {
  width: 68px;
  height: 68px;
  border-color: rgba(169, 141, 87, 0.8);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 220;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px clamp(18px, 4vw, 56px);
  color: rgba(240, 231, 216, 0.82);
  mix-blend-mode: screen;
}

.brand {
  width: fit-content;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.34em;
}

.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.audio-toggle {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(240, 231, 216, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(3, 3, 3, 0.26);
  backdrop-filter: blur(18px);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audio-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(240, 231, 216, 0.45);
  box-shadow: 0 0 0 transparent;
}

.audio-toggle[aria-pressed="true"] .audio-dot {
  background: var(--gold);
  box-shadow: 0 0 18px rgba(169, 141, 87, 0.8);
}

#smooth-wrapper {
  position: relative;
  inset: 0;
  width: 100%;
}

.scene {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.scene::before,
.scene::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.scene::before {
  background:
    radial-gradient(circle at 18% 72%, rgba(169, 141, 87, 0.14), transparent 30%),
    radial-gradient(circle at 82% 22%, rgba(20, 36, 29, 0.34), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.78));
}

.scene::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 45%, rgba(0, 0, 0, 0.88));
  opacity: 0.92;
  transition: opacity 1.1s var(--ease);
}

.scene.is-active::after {
  opacity: 0.72;
}

.scene .scene-content,
.scene .wealth-stack {
  transition: opacity 1s var(--ease);
}

.scene:not(.is-active) .scene-content,
.scene:not(.is-active) .wealth-stack {
  opacity: 0.68;
}

.scene.is-active .scene-content,
.scene.is-active .wealth-stack {
  opacity: 1;
}

.scene-video,
.scene-image {
  position: absolute;
  inset: -4%;
  z-index: -3;
  width: 108%;
  height: 108%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.12) brightness(0.54) blur(1px);
  transform: scale(1.04);
}

.scene-image {
  background-image: var(--image);
  background-position: center;
  background-size: cover;
}

.hero-fallback {
  --image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=85");
  z-index: -4;
}

.luxury-car-image {
  background-color: #030303;
  background-position: 70% center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(0.48) contrast(1.28) brightness(0.68) blur(0.1px);
}

.dubai-image {
  background-position: center;
  filter: saturate(0.68) contrast(1.2) brightness(0.72) blur(0.12px);
}

.silence-image {
  background-position: center;
  filter: saturate(0.5) contrast(1.32) brightness(0.52) blur(0.2px);
}

.future-image {
  background-position: center;
  filter: saturate(0.62) contrast(1.2) brightness(0.58) blur(0.12px);
}

.value-line {
  width: fit-content;
  margin: -6px 0 2px;
  padding-left: 18px;
  border-left: 1px solid rgba(169, 141, 87, 0.54);
  color: rgba(216, 185, 118, 0.82);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.18rem, 2vw, 1.9rem);
  line-height: 1.2;
}

.scene-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  align-items: end;
  min-height: 112vh;
  padding: 18vh 0 16vh;
}

.hero__chrome span {
  position: absolute;
  border: 1px solid rgba(240, 231, 216, 0.1);
  transform: rotate(-8deg);
}

.hero__chrome span:nth-child(1) {
  right: 8vw;
  top: 22vh;
  width: 22vw;
  height: 34vh;
}

.hero__chrome span:nth-child(2) {
  left: 7vw;
  bottom: 14vh;
  width: 18vw;
  height: 1px;
}

.hero__chrome span:nth-child(3) {
  right: 24vw;
  bottom: 20vh;
  width: 1px;
  height: 22vh;
}

.hero-content {
  display: grid;
  gap: 22px;
}

.eyebrow {
  margin: 0;
  color: rgba(197, 195, 187, 0.74);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-title,
.chapter-title,
.future-title,
.final-title,
.quote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 0.9;
}

.hero-title {
  max-width: 980px;
  font-size: clamp(5rem, 15vw, 16rem);
  letter-spacing: 0;
}

.hero-title span {
  display: block;
}

.hero-copy,
.chapter-copy,
.final-copy {
  max-width: 590px;
  margin: 0;
  color: rgba(240, 231, 216, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.24rem);
  font-weight: 300;
  line-height: 1.8;
}

.hero-laws {
  display: grid;
  max-width: 680px;
  gap: 10px;
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(240, 231, 216, 0.16);
  border-bottom: 1px solid rgba(240, 231, 216, 0.12);
}

.hero-laws p {
  margin: 0;
  color: rgba(240, 231, 216, 0.72);
  font-size: clamp(0.92rem, 1.16vw, 1.08rem);
  font-weight: 300;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
}

.primary-cta,
.access-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 231, 216, 0.28);
  border-radius: 999px;
  padding: 0 24px;
  background: rgba(240, 231, 216, 0.08);
  color: var(--warm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  transition: background 0.6s var(--ease), border-color 0.6s var(--ease), transform 0.6s var(--ease);
}

.primary-cta:hover,
.access-form button:hover {
  border-color: rgba(169, 141, 87, 0.8);
  background: rgba(169, 141, 87, 0.14);
}

.whisper {
  color: rgba(197, 195, 187, 0.56);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.12rem;
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  bottom: 42px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: rgba(240, 231, 216, 0.56);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 1px;
  height: 72px;
  overflow: hidden;
  background: rgba(240, 231, 216, 0.18);
}

.scroll-cue span::after {
  display: block;
  width: 100%;
  height: 24px;
  background: var(--warm);
  content: "";
  animation: scrollPulse 2.8s var(--ease) infinite;
}

.split-scene {
  align-items: center;
}

.chapter {
  display: grid;
  max-width: 680px;
  margin-left: clamp(18px, 9vw, 130px);
  gap: 24px;
}

.chapter-title {
  max-width: 720px;
  font-size: clamp(3.4rem, 8vw, 8.8rem);
}

.chapter-grid {
  display: grid;
  width: min(100%, 650px);
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.chapter-grid span {
  min-height: 92px;
  display: grid;
  align-items: center;
  border-right: 1px solid var(--line);
  color: rgba(240, 231, 216, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chapter-grid span:last-child {
  border-right: 0;
  padding-left: 24px;
}

.chapter-grid span:not(:first-child) {
  padding-left: 24px;
}

.editorial-scene {
  align-items: center;
}

.editorial-panel {
  display: grid;
  max-width: 900px;
  gap: 30px;
  text-align: center;
}

.quote {
  font-size: clamp(4rem, 11vw, 13rem);
}

.wealth-scene {
  align-items: center;
}

.wealth-stack {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, calc(100% - 36px));
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.wealth-card {
  min-height: 380px;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(3, 3, 3, 0.62);
  backdrop-filter: blur(18px);
}

.wealth-card span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
}

.wealth-card h3 {
  margin: 72px 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  font-weight: 500;
  line-height: 0.95;
}

.wealth-card p {
  margin: 0;
  color: rgba(240, 231, 216, 0.62);
  line-height: 1.7;
}

.text-signal {
  color: rgba(216, 185, 118, 0.94);
  text-shadow: 0 0 22px rgba(169, 141, 87, 0.22);
}

.network-scene {
  align-items: center;
}

.network-copy {
  display: grid;
  gap: 26px;
}

.signal-map {
  position: relative;
  width: min(920px, 100%);
  height: clamp(240px, 42vw, 420px);
  margin: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(240, 231, 216, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 231, 216, 0.05) 1px, transparent 1px);
  background-size: 9% 18%;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.signal-map::before,
.signal-map::after {
  position: absolute;
  inset: 10% 6%;
  border: 1px solid rgba(169, 141, 87, 0.2);
  content: "";
}

.signal-map::after {
  inset: 24% 17%;
  border-color: rgba(240, 231, 216, 0.11);
  transform: skewX(-8deg);
}

.signal-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 26px rgba(169, 141, 87, 0.75);
  animation: breathe 4s var(--ease) infinite;
}

.future-scene {
  align-items: end;
  padding-bottom: 14vh;
}

.future-copy {
  display: grid;
  justify-items: end;
  gap: 26px;
  text-align: right;
}

.future-title {
  width: min(980px, 100%);
  font-size: clamp(3.4rem, 8.8vw, 10rem);
}

.future-copy .chapter-copy {
  margin-left: auto;
}

.threshold-scene {
  align-items: center;
}

.threshold-image {
  background-position: center;
  filter: saturate(0.52) contrast(1.25) brightness(0.44) blur(0.12px);
}

.threshold-content {
  display: grid;
  max-width: 980px;
  gap: 20px;
  justify-items: center;
  text-align: center;
  transform: translateY(-7vh);
}

#section-nav {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 70;
  display: grid;
  gap: 12px;
  align-items: center;
  transform: translateY(-50%);
}

.nav-btn {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(240, 231, 216, 0.12);
  border-radius: 10px;
  background: rgba(3, 3, 3, 0.36);
  color: var(--warm);
  cursor: pointer;
  font-weight: 600;
}

.nav-btn:active {
  transform: translateY(1px);
}

.nav-dots {
  display: grid;
  gap: 6px;
  justify-items: center;
}

.nav-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(240, 231, 216, 0.18);
  cursor: pointer;
}

.nav-dots button.active {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(169, 141, 87, 0.5);
}

.threshold-title {
  max-width: 900px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 10vw, 12rem);
  font-weight: 500;
  line-height: 0.9;
}

.threshold-copy {
  display: grid;
  max-width: 620px;
  gap: 9px;
  padding: 18px 0;
  border-top: 1px solid rgba(240, 231, 216, 0.14);
  border-bottom: 1px solid rgba(240, 231, 216, 0.1);
}

.threshold-copy p {
  margin: 0;
  color: rgba(240, 231, 216, 0.72);
  font-size: clamp(0.98rem, 1.2vw, 1.14rem);
  font-weight: 300;
  line-height: 1.6;
}

.threshold-link {
  position: relative;
  z-index: 8;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 185, 118, 0.74);
  border-radius: 999px;
  margin-top: 0;
  padding: 0 42px;
  background: rgba(216, 185, 118, 0.22);
  color: rgba(240, 231, 216, 0.98);
  box-shadow: 0 0 38px rgba(169, 141, 87, 0.2);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  cursor: pointer;
  transform: translateY(-4px);
  transition: border-color 0.6s var(--ease), background 0.6s var(--ease), box-shadow 0.6s var(--ease), transform 0.6s var(--ease);
}

.threshold-link:hover {
  border-color: rgba(240, 231, 216, 0.78);
  background: rgba(216, 185, 118, 0.32);
  box-shadow: 0 0 48px rgba(169, 141, 87, 0.28);
  transform: translateY(-7px);
}

.final-scene {
  min-height: 112vh;
  align-items: center;
  text-align: center;
}

.final-scene .scene-image {
  filter: saturate(0.54) contrast(1.24) brightness(0.5) blur(0.14px);
}

.final-scene.is-locked {
  display: none;
}

body.access-mode #smooth-wrapper .scene:not(.final-scene) {
  display: none;
}

.secret-scene {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.82);
}

.secret-scene[aria-hidden="false"] {
  display: grid;
}

.secret-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.85));
  pointer-events: none;
}

.secret-content {
  position: relative;
  z-index: 110;
  width: min(640px, calc(100% - 48px));
  padding: 36px;
  border: 1px solid rgba(240, 231, 216, 0.08);
  border-radius: 14px;
  background: rgba(3, 3, 3, 0.6);
  color: var(--warm);
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 80px rgba(169, 141, 87, 0.03) inset;
}

.secret-title {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
}

.secret-sub {
  margin: 0 0 18px;
  color: rgba(240, 231, 216, 0.72);
}

.secret-form label {
  display: block;
  margin-bottom: 8px;
  color: rgba(240, 231, 216, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.secret-input-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.secret-input-row input {
  min-width: 220px;
  border: 1px solid rgba(240, 231, 216, 0.08);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--warm);
}

.secret-input-row input:focus {
  outline: none;
}

.secret-input-row .primary-cta {
  border: 1px solid rgba(240, 231, 216, 0.28);
  border-radius: 999px;
  padding: 12px 20px;
  background: rgba(240, 231, 216, 0.08);
}

.secret-note {
  margin-top: 12px;
  color: rgba(169, 141, 87, 0.9);
}

.secret-discord {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  text-align: center;
}

.secret-discord p {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(240, 231, 216, 0.78);
  font-size: 0.9rem;
  line-height: 1.6;
}

.secret-discord .discord-link {
  width: fit-content;
  margin: 0 auto;
  padding: 12px 24px;
  letter-spacing: 0.18em;
}

.crash body,
.crash .scene-content,
.crash header,
.crash .topbar,
.crash .nav-links {
  animation: glitch-translate 0.7s steps(1, end) both;
  filter: contrast(1.1) saturate(1.05) brightness(0.88) hue-rotate(-4deg) blur(0.35px);
}

.crash::before,
.crash::after {
  position: fixed;
  inset: 0;
  z-index: 95;
  content: "";
  pointer-events: none;
}

.crash::before {
  background: linear-gradient(90deg, rgba(0, 255, 90, 0.03), transparent 12%);
  mix-blend-mode: screen;
  animation: glitch-rgb 0.8s steps(3, end) infinite;
}

.crash::after {
  opacity: 0.65;
  background:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.12) 0 1px, rgba(0, 0, 0, 0.02) 1px 2px),
    linear-gradient(180deg, rgba(0, 255, 90, 0.015), transparent 30%);
  mix-blend-mode: multiply;
  animation: glitch-rgb 0.8s steps(4, end) infinite;
}

.final-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(76vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 231, 216, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbit 18s linear infinite;
}

.final-orbit::before,
.final-orbit::after {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(169, 141, 87, 0.13);
  border-radius: 50%;
  content: "";
}

.final-orbit::after {
  inset: 31%;
}

.final-content {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.final-title {
  max-width: 1000px;
  font-size: clamp(4rem, 10vw, 12rem);
}

.final-copy {
  margin-bottom: 16px;
}

.access-form {
  display: grid;
  width: min(590px, 100%);
  gap: 12px;
}

.access-form label {
  color: rgba(197, 195, 187, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-align: left;
  text-transform: uppercase;
}

.access-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(240, 231, 216, 0.16);
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.5);
  backdrop-filter: blur(22px);
}

.access-form input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 18px;
  background: transparent;
  color: var(--warm);
}

.access-form input::placeholder {
  color: rgba(240, 231, 216, 0.38);
}

.access-form button {
  border-radius: 999px;
  border-color: rgba(169, 141, 87, 0.34);
  background: rgba(169, 141, 87, 0.18);
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: rgba(169, 141, 87, 0.76);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-align: left;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.magnetic {
  will-change: transform;
}

@keyframes loadLine {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(230%);
  }
}

@keyframes grainShift {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-1%, 1%);
  }
  100% {
    transform: translate(1%, -1%);
  }
}

@keyframes scrollPulse {
  from {
    transform: translateY(-28px);
  }
  to {
    transform: translateY(82px);
  }
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.75);
  }
  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

@keyframes orbit {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes glitch-translate {
  0% {
    transform: translate3d(0, 0, 0);
  }
  10% {
    transform: translate3d(-12px, -4px, 0) rotate(-0.6deg);
  }
  20% {
    transform: translate3d(10px, 6px, 0) rotate(0.8deg);
  }
  40% {
    transform: translate3d(6px, 4px, 0) rotate(0.3deg);
  }
  70% {
    transform: translate3d(-10px, -5px, 0) rotate(-0.6deg);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes glitch-rgb {
  0% {
    clip-path: inset(0 0 0 0);
  }
  20% {
    clip-path: inset(10% 0 70% 0);
  }
  40% {
    clip-path: inset(70% 0 10% 0);
  }
  60% {
    clip-path: inset(30% 0 40% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@media (max-width: 860px) {
  body {
    cursor: auto;
  }

  .cursor,
  .cursor-dot {
    display: none;
  }

  #smooth-wrapper {
    position: relative;
  }

  .topbar {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 18px;
    mix-blend-mode: normal;
  }

  .nav-links {
    display: none;
  }

  #section-nav {
    display: none;
  }

  .audio-toggle {
    padding: 8px 10px;
  }

  .hero {
    min-height: 100svh;
    padding: 18vh 0 12vh;
  }

  .scene {
    min-height: 100svh;
  }

  .hero-title {
    font-size: clamp(4.5rem, 24vw, 8rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .scroll-cue {
    display: none;
  }

  .chapter {
    margin: 0 auto;
  }

  .chapter-title,
  .future-title,
  .final-title,
  .quote {
    font-size: clamp(3.3rem, 17vw, 6.7rem);
  }

  .chapter-grid,
  .wealth-stack {
    grid-template-columns: 1fr;
  }

  .chapter-grid span {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-left: 0;
  }

  .chapter-grid span:not(:first-child),
  .chapter-grid span:last-child {
    padding-left: 0;
  }

  .chapter-grid span:last-child {
    border-bottom: 0;
  }

  .wealth-stack {
    margin: 90px auto;
  }

  .wealth-card {
    min-height: 250px;
  }

  .wealth-card h3 {
    margin-top: 42px;
  }

  .future-scene {
    align-items: center;
    padding-bottom: 0;
  }

  .future-copy {
    justify-items: start;
    text-align: left;
  }

  .future-copy .chapter-copy {
    margin-left: 0;
  }

  .threshold-title {
    font-size: clamp(3.3rem, 17vw, 6.7rem);
  }

  .threshold-content {
    transform: translateY(-3vh);
  }

  .access-form div {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .access-form input {
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  #smooth-wrapper {
    position: relative;
    transform: none !important;
  }
}

/* Final layout polish */
body {
  cursor: auto;
}

.cursor,
.cursor-dot,
.noise-field {
  display: none !important;
}

#smooth-wrapper {
  position: relative !important;
  transform: none !important;
  will-change: auto;
}

.scene-video,
.scene-image {
  transform: scale(1.04) !important;
  will-change: auto;
}

.topbar {
  color: rgba(240, 231, 216, 0.92);
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.58), rgba(3, 3, 3, 0));
  mix-blend-mode: normal;
}

.nav-links {
  display: flex;
}

.nav-links a {
  opacity: 0.86;
  transition: opacity 0.45s var(--ease), color 0.45s var(--ease);
}

.nav-links a:hover {
  color: rgba(216, 185, 118, 0.94);
  opacity: 1;
}

.chapter,
.network-copy,
.future-copy {
  margin-right: auto;
  margin-left: auto;
  justify-items: center;
  text-align: center;
}

.chapter {
  margin-left: auto;
}

.value-line {
  margin-right: auto;
  margin-left: auto;
  padding-right: 18px;
  border-left: 0;
}

.network-copy .chapter-copy,
.future-copy .chapter-copy {
  margin-right: auto;
  margin-left: auto;
}

.future-copy {
  max-width: 980px;
}

.threshold-link {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(-4px);
}

@media (max-width: 860px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .future-copy {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }
}
