:root {
  --bg: #121111;
  --bg-strong: #0b0b0a;
  --panel: #191817;
  --panel-soft: #24201c;
  --text: #f4efe5;
  --muted: #a8a099;
  --faint: #706a63;
  --line: rgba(244, 239, 229, 0.13);
  --gold: #d7b56d;
  --cyan: #3cf4e0;
  --coral: #ff6b4a;
  --acid: #cbff5a;
  --ink: #111111;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --rail: clamp(16rem, 22vw, 22rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(215, 181, 109, 0.2), transparent 28rem),
    radial-gradient(circle at 82% 14%, rgba(60, 244, 224, 0.12), transparent 26rem),
    linear-gradient(140deg, #15110f 0%, #111111 48%, #171615 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.skip-link {
  background: var(--gold);
  color: #19130d;
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-140%);
  z-index: 20;
}
.skip-link:focus { transform: translateY(0); }

.site-shell { display: flex; flex-direction: column; min-height: 100vh; }
.site-rail {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 40%), #10100f;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1.25rem;
  padding: 1rem;
  position: relative;
  z-index: 5;
}
.brand-mark {
  align-items: baseline;
  display: inline-flex;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.65rem, 8vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  width: max-content;
}
.brand-mark span:first-child { color: #efeee8; text-shadow: 0 0 24px rgba(255, 255, 255, 0.16); }
.brand-mark span:last-child { color: var(--gold); margin-left: 0.08em; text-shadow: 0 0 30px rgba(215, 181, 109, 0.36); }
.rail-nav { display: flex; gap: 0.45rem; overflow-x: auto; padding-bottom: 0.25rem; scrollbar-width: none; }
.rail-nav::-webkit-scrollbar { display: none; }
.rail-nav a {
  border: 1px solid transparent;
  color: var(--muted);
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  padding: 0.65rem 0.8rem;
  text-transform: uppercase;
}
.rail-nav a:hover, .rail-nav a[aria-current="page"] { border-color: rgba(215, 181, 109, 0.42); color: var(--text); }
.rail-search, .rail-note, .rail-social { display: none; }

.page-main { isolation: isolate; overflow: hidden; position: relative; }
.page-main::before, .page-main::after { content: ""; pointer-events: none; position: absolute; z-index: -1; }
.page-main::before {
  background: linear-gradient(90deg, transparent, rgba(215, 181, 109, 0.24), transparent), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 4.2rem);
  height: 1px;
  left: 0;
  opacity: 0.72;
  top: 5.2rem;
  width: 100%;
}
.page-main::after {
  background: radial-gradient(circle, rgba(255, 107, 74, 0.14), transparent 32%), radial-gradient(circle, rgba(203, 255, 90, 0.12), transparent 40%);
  filter: blur(16px);
  height: 28rem;
  right: -12rem;
  top: 18rem;
  width: 28rem;
}

.hero-section, .page-hero { display: grid; gap: 2.5rem; padding: clamp(2.5rem, 10vw, 6rem) 1rem 3rem; }
.hero-section { min-height: calc(100svh - 7rem); }
.page-hero { min-height: 58svh; align-content: center; }
.page-hero.compact { min-height: 44svh; }
.hero-copy { align-self: start; max-width: 51rem; }
.eyebrow, .post-kicker, .stat-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 1rem;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, .page-title {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(3rem, 11vw, 7.4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.88;
  margin-bottom: 1.35rem;
  max-width: 10ch;
  text-wrap: balance;
}
.hero-lede { color: var(--muted); font-size: clamp(1rem, 3.4vw, 1.3rem); line-height: 1.6; max-width: 39rem; }
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.button-link, .text-link, .form-button {
  align-items: center;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0;
  min-height: 2.75rem;
  text-transform: uppercase;
}
.button-link, .form-button { background: var(--gold); border: 1px solid var(--gold); border-radius: 6px; color: #15110d; padding: 0.85rem 1rem; }
.text-link { border-bottom: 1px solid rgba(244, 239, 229, 0.35); color: var(--text); padding: 0.85rem 0; }

.hero-reel, .collection-timeline { position: relative; }
.timeline-line {
  background: linear-gradient(180deg, transparent, var(--gold), var(--cyan), transparent);
  bottom: 1rem;
  left: 1rem;
  opacity: 0.8;
  position: absolute;
  top: 1rem;
  width: 1px;
}
.timeline-post {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-left: 1.9rem;
  min-height: 22rem;
  padding: 1.25rem 0;
  position: relative;
}
.timeline-post::before, .collection-card::before {
  background: var(--bg);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(215, 181, 109, 0.08);
  content: "";
  height: 0.7rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.7rem;
}
.timeline-post::before { left: -1.25rem; }
.post-copy { max-width: 18rem; }
.post-copy h2, .post-copy h3, .collection-copy h2, .process-list h2, .contact-panel h2 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.2rem, 6vw, 2rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0.7rem;
  text-wrap: balance;
}
.post-copy p:not(.post-kicker), .collection-copy p:not(.post-kicker), .process-list p, .contact-panel p, .about-copy p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.video-poster {
  aspect-ratio: 6 / 19;
  background: var(--c);
  border: 1px solid rgba(244, 239, 229, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
  width: clamp(6.7rem, 31vw, 9.4rem);
}
.poster-art {
  background: radial-gradient(circle at 50% 16%, color-mix(in srgb, var(--a), white 18%), transparent 12%), radial-gradient(circle at 40% 43%, color-mix(in srgb, var(--b), white 10%), transparent 18%), linear-gradient(164deg, transparent 0 21%, rgba(255, 255, 255, 0.12) 21% 22%, transparent 22% 45%, rgba(0, 0, 0, 0.28) 45% 46%, transparent 46%), repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 16px), linear-gradient(180deg, var(--a), var(--c) 50%, var(--b));
  inset: 0;
  position: absolute;
}
.poster-art::before, .poster-art::after { content: ""; position: absolute; }
.poster-art::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent), linear-gradient(var(--b), var(--a));
  height: 48%;
  left: 50%;
  top: 24%;
  transform: translateX(-50%) skewY(-12deg);
  width: 28%;
}
.poster-art::after { border: 1px solid rgba(244, 239, 229, 0.48); height: 76%; inset: 10% 12%; mix-blend-mode: screen; }
.play-badge, .poster-meta {
  border: 1px solid rgba(244, 239, 229, 0.35);
  color: var(--text);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0;
  position: absolute;
  text-transform: uppercase;
}
.play-badge { background: rgba(0, 0, 0, 0.42); left: 0.65rem; padding: 0.32rem 0.48rem; top: 0.65rem; }
.poster-meta { background: rgba(0, 0, 0, 0.5); bottom: 0.65rem; padding: 0.28rem 0.42rem; right: 0.65rem; }

.intro-band { align-items: end; border-top: 1px solid var(--line); display: grid; gap: 1.5rem; padding: 3rem 1rem; }
.intro-band h2, .section-title, .large-statement p {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 8vw, 4.4rem);
  line-height: 0.98;
  margin-bottom: 0;
  max-width: 11ch;
  text-wrap: balance;
}
.intro-band p:last-child { color: var(--muted); font-size: 1rem; line-height: 1.75; margin-bottom: 0; max-width: 44rem; }
.feature-strip, .process-list { border-top: 1px solid var(--line); display: grid; }
.feature-strip article, .process-list article { border-bottom: 1px solid var(--line); padding: 1.6rem 1rem; }
.feature-strip span, .process-list span { color: var(--coral); display: block; font-size: 0.75rem; font-weight: 900; margin-bottom: 1.5rem; }
.feature-strip h3 { font-family: "Space Grotesk", Inter, sans-serif; font-size: 1.35rem; letter-spacing: 0; margin-bottom: 0.75rem; }
.feature-strip p { color: var(--muted); line-height: 1.6; margin-bottom: 0; }

.collection-tools { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; gap: 1rem; padding: 1rem; }
.collection-tools input, .contact-form input, .contact-form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 239, 229, 0.16);
  border-radius: 6px;
  color: var(--text);
  min-height: 3rem;
  padding: 0.8rem 0.9rem;
  width: 100%;
}
.filter-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-row button {
  background: transparent;
  border: 1px solid rgba(244, 239, 229, 0.18);
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  min-height: 2.4rem;
  padding: 0.55rem 0.8rem;
  text-transform: uppercase;
}
.filter-row button[aria-pressed="true"] { border-color: var(--gold); color: var(--text); }
.collection-timeline { padding: 2rem 1rem 4rem; }
.collection-card {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(3.8rem, 0.38fr) auto minmax(0, 1fr);
  margin-left: 1.9rem;
  min-height: 23rem;
  padding: 1rem 0;
  position: relative;
}
.collection-card::before { left: -1.25rem; }
.collection-date { color: var(--gold); display: grid; gap: 0.35rem; justify-items: start; }
.collection-date span { font-family: "Space Grotesk", Inter, sans-serif; font-size: 1.3rem; font-weight: 700; }
.collection-date small { color: var(--faint); font-size: 0.68rem; font-weight: 900; text-transform: uppercase; }
.collection-copy { max-width: 23rem; }
.collection-card[hidden] { display: none; }

.about-grid, .contact-layout { border-top: 1px solid var(--line); display: grid; gap: 2rem; padding: 3rem 1rem; }
.large-statement p { max-width: 12ch; }
.about-copy { display: grid; gap: 1.2rem; max-width: 42rem; }
.contact-panel { align-content: start; display: grid; gap: 1rem; }
.contact-panel h2 { color: var(--gold); overflow-wrap: anywhere; }
.contact-form { display: grid; gap: 1rem; max-width: 44rem; }
.contact-form label { color: var(--muted); display: grid; gap: 0.5rem; font-size: 0.78rem; font-weight: 900; text-transform: uppercase; }
.contact-form textarea { min-height: 11rem; resize: vertical; }
.form-button { cursor: pointer; width: max-content; }
.form-status { color: var(--acid); min-height: 1.4rem; }

.site-footer {
  background: #0d0d0c;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 1rem;
  padding: 1.3rem 1rem 1.6rem;
}
.site-footer p { color: var(--text); font-family: "Space Grotesk", Inter, sans-serif; font-weight: 700; margin-bottom: 0; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.site-footer a { color: var(--muted); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; }
.site-footer small { color: var(--faint); }

@media (max-width: 430px) {
  .timeline-post { grid-template-columns: minmax(0, 1fr) auto; }
  .post-copy h2, .collection-copy h2 { font-size: 1.1rem; }
  .post-copy p:not(.post-kicker), .collection-copy p:not(.post-kicker) { font-size: 0.82rem; }
  .collection-card { grid-template-columns: auto minmax(0, 1fr); }
  .collection-date { grid-column: 1 / -1; }
}

@media (min-width: 720px) {
  .hero-section { grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.72fr); padding-inline: clamp(2rem, 5vw, 5rem); }
  .page-hero, .intro-band, .about-grid, .contact-layout, .collection-tools, .collection-timeline { padding-inline: clamp(2rem, 5vw, 5rem); }
  .intro-band, .about-grid, .contact-layout { grid-template-columns: minmax(16rem, 0.72fr) minmax(18rem, 1fr); }
  .feature-strip, .process-list { grid-template-columns: repeat(3, 1fr); }
  .feature-strip article, .process-list article { border-bottom: 0; border-right: 1px solid var(--line); min-height: 18rem; padding: 2rem; }
  .feature-strip article:last-child, .process-list article:last-child { border-right: 0; }
  .collection-tools { grid-template-columns: minmax(16rem, 0.4fr) 1fr; align-items: center; }
  .site-footer { align-items: center; grid-template-columns: auto 1fr auto; padding-left: calc(var(--rail) + clamp(2rem, 5vw, 5rem)); padding-right: clamp(2rem, 5vw, 5rem); }
}

@media (min-width: 980px) {
  .hero-copy { padding-top: clamp(2rem, 8vh, 5rem); }
  .site-shell { align-items: stretch; flex-direction: row; }
  .site-rail {
    align-content: start;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    flex: 0 0 var(--rail);
    gap: 2rem;
    min-height: 100svh;
    padding: clamp(2rem, 4vw, 4rem);
    position: sticky;
    top: 0;
  }
  .rail-nav { display: grid; gap: 0.6rem; margin-top: 1.6rem; overflow: visible; }
  .rail-nav a { padding: 0.75rem 1rem; }
  .rail-search, .rail-note, .rail-social { display: block; }
  .rail-search { margin-top: auto; }
  .rail-search label { color: var(--faint); display: block; font-size: 0.68rem; font-weight: 900; margin-bottom: 0.5rem; text-transform: uppercase; }
  .rail-search input { background: transparent; border: 1px solid rgba(244, 239, 229, 0.18); border-radius: 6px; color: var(--text); min-height: 2.8rem; padding: 0 0.8rem; width: 100%; }
  .rail-note { color: var(--muted); font-size: 0.86rem; line-height: 1.6; margin-bottom: 0; }
  .rail-social { display: flex; gap: 0.5rem; }
  .rail-social a { align-items: center; border: 1px solid rgba(244, 239, 229, 0.16); border-radius: 50%; color: var(--muted); display: inline-flex; font-size: 0.68rem; font-weight: 900; height: 2.1rem; justify-content: center; width: 2.1rem; }
  .page-main { flex: 1 1 auto; min-width: 0; }
  .hero-section { min-height: 100svh; }
  .timeline-line { left: 50%; }
  .timeline-post { grid-template-columns: minmax(0, 1fr) auto; margin-left: 0; padding-left: 0; }
  .timeline-post::before { left: calc(50% - 0.35rem); }
  .post-copy { justify-self: end; padding-right: 2rem; text-align: right; }
  .video-poster { width: clamp(8.6rem, 11vw, 11.5rem); }
  .collection-card { grid-template-columns: minmax(5rem, 0.34fr) auto minmax(14rem, 0.66fr); margin-left: 0; }
  .collection-card::before { left: calc(34% - 0.35rem); }
  .collection-timeline .timeline-line { left: 34%; }
}

@media (min-width: 1300px) {
  .hero-section { grid-template-columns: minmax(0, 0.92fr) minmax(27rem, 0.7fr); }
  .hero-reel { padding-right: 2vw; }
}

@media (prefers-reduced-motion: no-preference) {
  .video-poster { transition: transform 220ms ease, border-color 220ms ease; }
  .video-poster:hover { border-color: rgba(215, 181, 109, 0.7); transform: translateY(-0.35rem); }
}

/* ODDVX portrait grid redesign */
.home-title-section {
  align-content: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  min-height: min(68rem, calc(100svh - 5rem));
  padding: clamp(3rem, 10vw, 7rem) 1rem;
  position: relative;
}

.home-title-section::after {
  background:
    linear-gradient(90deg, rgba(215, 181, 109, 0.08), transparent 46%),
    repeating-linear-gradient(90deg, rgba(244, 239, 229, 0.045) 0 1px, transparent 1px 4.5rem);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.home-title-section .hero-copy {
  padding-top: 0;
}

.home-video-section {
  border-bottom: 1px solid var(--line);
  padding: clamp(2.5rem, 7vw, 5.5rem) 1rem;
}

.home-section-head {
  align-items: end;
  display: grid;
  gap: 1.3rem;
  margin-bottom: clamp(1.8rem, 5vw, 3.5rem);
}

.home-section-head h2 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.1rem, 8vw, 5.4rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 0;
  max-width: 11ch;
  text-wrap: balance;
}

.home-section-head p:last-child {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 42rem;
}

.home-video-grid,
.collection-grid {
  display: grid;
  gap: clamp(1rem, 2.8vw, 1.5rem);
  grid-template-columns: minmax(0, 1fr);
}

.home-video-card,
.collection-grid-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(244, 239, 229, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 0.95rem;
  min-width: 0;
  padding: 0.7rem;
}

.home-video-card .video-poster,
.collection-grid-card .video-poster {
  max-width: none;
  width: 100%;
}

.video-poster {
  aspect-ratio: 9 / 16;
}

.home-video-copy,
.collection-grid-card .collection-copy {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.2rem 0.2rem 0.35rem;
}

.home-video-copy h3,
.collection-grid-card .collection-copy h2 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.05rem, 4.5vw, 1.35rem);
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.home-video-copy p:not(.post-kicker),
.collection-grid-card .collection-copy p:not(.post-kicker) {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.home-video-copy .post-kicker,
.collection-grid-card .post-kicker {
  margin-bottom: 0;
}

[data-video-card][hidden] {
  display: none !important;
}

.collection-grid {
  padding: clamp(2rem, 5vw, 4rem) 1rem clamp(3rem, 7vw, 6rem);
}

.footer-social {
  display: flex;
  gap: 0.55rem;
}

.footer-social a {
  align-items: center;
  border: 1px solid rgba(244, 239, 229, 0.18);
  border-radius: 50%;
  color: var(--muted);
  display: inline-flex;
  height: 2.35rem;
  justify-content: center;
  width: 2.35rem;
}

.footer-social a:hover {
  border-color: rgba(215, 181, 109, 0.62);
  color: var(--text);
}

.footer-social svg {
  fill: none;
  height: 1.12rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 1.12rem;
}

.footer-social a[aria-label="YouTube"] svg path:last-child {
  fill: currentColor;
  stroke: none;
}

@media (min-width: 640px) {
  .home-video-grid,
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 720px) {
  .home-title-section,
  .home-video-section,
  .collection-grid {
    padding-left: clamp(2rem, 5vw, 5rem);
    padding-right: clamp(2rem, 5vw, 5rem);
  }

  .home-section-head {
    grid-template-columns: minmax(16rem, 0.8fr) minmax(18rem, 1fr);
  }

  .site-footer {
    grid-template-columns: auto 1fr auto;
  }

  .site-footer small {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .home-title-section {
    min-height: 72svh;
  }

  .home-video-grid,
  .collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1220px) {
  .home-video-grid,
  .collection-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: auto 1fr auto auto;
  }

  .site-footer small {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .home-title-section h1,
  .page-title {
    font-size: clamp(2.55rem, 15vw, 3.4rem);
  }

  .home-video-card,
  .collection-grid-card {
    padding: 0.55rem;
  }
}

/* ODDVX parallax hero */
.home-title-section {
  --parallax-y-slow: 0px;
  --parallax-y-mid: 0px;
  --parallax-y-fast: 0px;
  --parallax-x-slow: 0px;
  --parallax-x-mid: 0px;
  --parallax-tilt: 0deg;
  --pointer-x: 0px;
  --pointer-y: 0px;
  --hero-fade: 1;
  background:
    linear-gradient(90deg, rgba(25, 18, 12, 0.82), rgba(14, 13, 13, 0.62) 38%, rgba(10, 13, 12, 0.9)),
    radial-gradient(ellipse at 72% 58%, rgba(56, 88, 79, 0.36), transparent 33rem),
    linear-gradient(140deg, #16110e 0%, #10100f 48%, #0c1210 100%);
  isolation: isolate;
  overflow: hidden;
  perspective: 1200px;
}

.home-title-section::after {
  background:
    linear-gradient(90deg, rgba(13, 11, 10, 0.08), transparent 36%, rgba(12, 14, 13, 0.34)),
    repeating-linear-gradient(90deg, rgba(244, 239, 229, 0.035) 0 1px, transparent 1px 5.6rem),
    repeating-linear-gradient(0deg, rgba(215, 181, 109, 0.025) 0 1px, transparent 1px 7rem);
  opacity: calc(0.5 * var(--hero-fade));
  transform: translate3d(var(--parallax-x-slow), var(--parallax-y-slow), 0);
  z-index: 1;
}

.home-title-section .hero-copy {
  opacity: var(--hero-fade);
  position: relative;
  text-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.48);
  transform: translate3d(0, calc(var(--parallax-y-slow) * -0.12), 7rem);
  z-index: 5;
}

.parallax-scene {
  bottom: -20%;
  left: -10%;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: -10%;
  top: -20%;
  transform-style: preserve-3d;
  z-index: 0;
}

.parallax-layer {
  display: block;
  position: absolute;
  will-change: transform, opacity;
}

.dream-ink {
  filter: blur(22px) saturate(1.08);
  mix-blend-mode: screen;
  opacity: 0.32;
}

.dream-ink-one {
  background:
    linear-gradient(135deg, rgba(215, 181, 109, 0.34), transparent 34%),
    conic-gradient(from 138deg, transparent 0 18%, rgba(215, 181, 109, 0.24), transparent 42%, rgba(60, 244, 224, 0.16), transparent 72%);
  border-radius: 42% 58% 48% 52%;
  height: clamp(26rem, 46vw, 48rem);
  left: 48%;
  top: 13%;
  transform: translate3d(calc(var(--pointer-x) * -0.35 + var(--parallax-x-slow)), calc(var(--pointer-y) * -0.2 + var(--parallax-y-mid)), -9rem) rotate(var(--parallax-tilt));
  width: clamp(26rem, 46vw, 48rem);
}

.dream-ink-two {
  background:
    linear-gradient(45deg, rgba(60, 244, 224, 0.22), transparent 42%),
    conic-gradient(from 292deg, rgba(255, 107, 74, 0.12), transparent 28%, rgba(215, 181, 109, 0.2), transparent 76%);
  border-radius: 62% 38% 55% 45%;
  bottom: 6%;
  height: clamp(20rem, 35vw, 40rem);
  right: 8%;
  transform: translate3d(calc(var(--pointer-x) * 0.22 + var(--parallax-x-mid)), calc(var(--pointer-y) * 0.2 + var(--parallax-y-fast)), -5rem) rotate(calc(var(--parallax-tilt) * -1.2));
  width: clamp(18rem, 34vw, 38rem);
}

.memory-river {
  background:
    linear-gradient(90deg, transparent, rgba(244, 239, 229, 0.15), transparent),
    repeating-linear-gradient(90deg, rgba(215, 181, 109, 0.15) 0 2px, transparent 2px 3.8rem),
    linear-gradient(180deg, rgba(60, 244, 224, 0.18), transparent 64%);
  border-bottom: 1px solid rgba(244, 239, 229, 0.12);
  border-top: 1px solid rgba(244, 239, 229, 0.08);
  height: clamp(7rem, 12vw, 11rem);
  left: 38%;
  opacity: 0.32;
  top: 57%;
  transform: translate3d(calc(var(--pointer-x) * -0.18 + var(--parallax-x-slow)), calc(var(--pointer-y) * 0.1 + var(--parallax-y-mid)), -2rem) rotate(-8deg) skewX(-12deg);
  width: 78%;
}

.latent-face {
  background:
    linear-gradient(90deg, rgba(244, 239, 229, 0.03), rgba(244, 239, 229, 0.13) 38%, rgba(60, 244, 224, 0.08) 62%, transparent),
    radial-gradient(ellipse at 48% 20%, rgba(244, 239, 229, 0.24), transparent 11%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.48));
  border: 1px solid rgba(244, 239, 229, 0.08);
  border-radius: 48% 52% 44% 56% / 36% 42% 58% 64%;
  box-shadow: inset 2rem 0 3rem rgba(215, 181, 109, 0.06), inset -2rem 0 3rem rgba(60, 244, 224, 0.06);
  height: clamp(28rem, 46vw, 50rem);
  opacity: 0.3;
  right: 11%;
  top: 17%;
  transform: translate3d(calc(var(--pointer-x) * 0.28 + var(--parallax-x-mid)), calc(var(--pointer-y) * 0.22 + var(--parallax-y-slow)), 2rem) rotate(2deg);
  width: clamp(18rem, 30vw, 33rem);
}

.latent-face::before,
.latent-face::after {
  content: "";
  position: absolute;
}

.latent-face::before {
  background: linear-gradient(180deg, rgba(244, 239, 229, 0.28), transparent 58%);
  border-radius: 50%;
  height: 16%;
  left: 39%;
  top: 28%;
  width: 12%;
}

.latent-face::after {
  background: linear-gradient(90deg, transparent, rgba(215, 181, 109, 0.28), transparent);
  height: 1px;
  left: 22%;
  top: 54%;
  width: 58%;
}

.video-echo-stack {
  background:
    linear-gradient(180deg, rgba(244, 239, 229, 0.12), transparent 12% 88%, rgba(244, 239, 229, 0.1)),
    repeating-linear-gradient(180deg, rgba(244, 239, 229, 0.06) 0 1px, transparent 1px 2.4rem),
    linear-gradient(140deg, rgba(215, 181, 109, 0.15), rgba(60, 244, 224, 0.08));
  border: 1px solid rgba(244, 239, 229, 0.16);
  border-radius: 8px;
  box-shadow: 1.4rem 1rem 0 rgba(244, 239, 229, 0.035), -1.2rem -1rem 0 rgba(60, 244, 224, 0.035);
  height: clamp(23rem, 34vw, 39rem);
  opacity: 0.22;
  right: 5%;
  top: 18%;
  transform: translate3d(calc(var(--pointer-x) * -0.12 + var(--parallax-x-slow)), calc(var(--pointer-y) * -0.18 + var(--parallax-y-fast)), 4rem) rotate(5deg);
  width: clamp(8rem, 13vw, 15rem);
}

.ritual-glyphs {
  color: rgba(244, 239, 229, 0.22);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(0.7rem, 1vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 2.4;
  max-width: 34rem;
  opacity: 0.44;
  right: 2%;
  text-transform: uppercase;
  top: 8%;
  transform: translate3d(calc(var(--pointer-x) * 0.08 + var(--parallax-x-mid)), calc(var(--pointer-y) * 0.12 + var(--parallax-y-slow)), 6rem);
}

.ritual-glyphs::before {
  content: attr(data-glyphs) " / " attr(data-glyphs) " / " attr(data-glyphs);
}

.light-leak {
  background:
    linear-gradient(90deg, transparent, rgba(215, 181, 109, 0.42), rgba(255, 107, 74, 0.16), transparent),
    linear-gradient(180deg, transparent, rgba(244, 239, 229, 0.18), transparent);
  filter: blur(18px);
  height: 64%;
  left: 64%;
  opacity: 0.26;
  top: 8%;
  transform: translate3d(calc(var(--pointer-x) * 0.18 + var(--parallax-x-mid)), calc(var(--pointer-y) * -0.16 + var(--parallax-y-fast)), 8rem) rotate(18deg);
  width: 10rem;
}

.soft-grain {
  background:
    repeating-linear-gradient(0deg, rgba(244, 239, 229, 0.022) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(244, 239, 229, 0.018) 0 1px, transparent 1px 11px);
  inset: 0;
  opacity: 0.44;
  transform: translate3d(0, var(--parallax-y-fast), 9rem);
}

.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 2.5rem, 0) scale(0.985);
  transition: opacity 760ms ease, transform 900ms cubic-bezier(0.2, 0.7, 0.1, 1);
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.home-video-card,
.collection-grid-card,
.feature-strip article,
.process-list article {
  transform: translateZ(0);
  transform-style: preserve-3d;
  transition: border-color 240ms ease, box-shadow 260ms ease, transform 260ms ease, opacity 760ms ease;
}

.home-video-card:hover,
.collection-grid-card:hover,
.feature-strip article:hover,
.process-list article:hover {
  border-color: rgba(215, 181, 109, 0.36);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.26);
  transform: translate3d(0, -0.45rem, 2rem) rotateX(var(--card-tilt-y, 0deg)) rotateY(var(--card-tilt-x, 0deg));
}

.home-video-card:hover .video-poster,
.collection-grid-card:hover .video-poster {
  transform: translateZ(2.2rem) scale(1.012);
}

.motion-reveal.is-visible .poster-art {
  animation: poster-dream-drift 1300ms ease-out 1 both;
}

@keyframes poster-dream-drift {
  from { transform: translate3d(0, 0, 0) scale(1); filter: saturate(1); }
  to { transform: translate3d(0, -1.2%, 0) scale(1.025); filter: saturate(1.14); }
}

@media (max-width: 720px) {
  .parallax-scene {
    left: -32%;
    right: -46%;
  }

  .latent-face {
    opacity: 0.2;
    right: -18%;
    top: 28%;
  }

  .video-echo-stack,
  .ritual-glyphs,
  .light-leak {
    opacity: 0.18;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-title-section,
  .home-title-section::after,
  .home-title-section .hero-copy,
  .parallax-layer,
  .motion-reveal,
  .home-video-card,
  .collection-grid-card,
  .feature-strip article,
  .process-list article,
  .poster-art {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ODDVX interaction refinements */
.rail-nav a {
  border-radius: 4px;
}

@media (min-width: 980px) {
  .rail-nav a {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}


/* ODDVX locked sidebar */
@media (min-width: 980px) {
  .site-shell {
    display: block;
  }

  .site-rail {
    bottom: 0;
    height: 100svh;
    left: 0;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    position: fixed;
    top: 0;
    width: var(--rail);
    z-index: 20;
  }

  .page-main {
    margin-left: var(--rail);
    width: calc(100% - var(--rail));
  }
}


/* ODDVX CMS-powered media */
.poster-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.video-poster.has-upload::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 34%, rgba(0, 0, 0, 0.58));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.video-poster.has-upload .play-badge,
.video-poster.has-upload .poster-meta {
  z-index: 3;
}

.video-poster.has-upload .poster-art {
  display: none;
}
