:root {
  --bg: #080808;
  --surface: #111111;
  --surface-2: #171717;
  --text: #f4f0e8;
  --muted: #b9b0a4;
  --dim: #766f66;
  --line: rgba(244, 240, 232, 0.14);
  --line-strong: rgba(244, 240, 232, 0.28);
  --signal: #e7b35a;
  --red: #cf3f33;
  --cyan: #70a8c8;
  --moss: #7d8b5d;
  --paper: #e8dfd1;
  --ink: #141414;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Archivo", "Helvetica Neue", sans-serif;
  background: var(--bg);
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.brand-wordmark {
  font-family: "Space Grotesk", "Archivo", sans-serif;
  font-weight: 700;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 4.5rem;
  padding: 0 4rem;
  color: var(--text);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0));
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  object-fit: cover;
}

.brand-wordmark {
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  border-color: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 7rem 4rem 0;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 22%, rgba(207, 63, 51, 0.42), transparent 20rem),
    radial-gradient(circle at 18% 18%, rgba(112, 168, 200, 0.24), transparent 24rem),
    linear-gradient(115deg, rgba(8, 8, 8, 0.2), rgba(8, 8, 8, 0.86) 62%),
    repeating-linear-gradient(90deg, rgba(244, 240, 232, 0.08) 0 1px, transparent 1px 9.5rem),
    linear-gradient(135deg, #111 0%, #080808 46%, #1a100d 100%);
}

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

.hero-media::before {
  inset: 5rem 3rem 11rem auto;
  width: min(42vw, 36rem);
  border: 1px solid rgba(244, 240, 232, 0.16);
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.1), transparent 22%),
    repeating-linear-gradient(180deg, rgba(244, 240, 232, 0.18) 0 1px, transparent 1px 4.6rem);
  transform: skewX(-10deg);
  opacity: 0.52;
}

.hero-media::after {
  left: 0;
  right: 0;
  bottom: 6.5rem;
  height: 5rem;
  background:
    repeating-linear-gradient(90deg, rgba(244, 240, 232, 0.22) 0 2.2rem, transparent 2.2rem 3.4rem);
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 70%, transparent);
  opacity: 0.24;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.76) 42%, rgba(8, 8, 8, 0.24) 70%, rgba(8, 8, 8, 0.72) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.18) 0%, rgba(8, 8, 8, 0.82) 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 30rem);
  gap: 3rem;
  align-items: end;
  width: 100%;
  max-width: 92rem;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  margin: 0 0 1rem;
  padding: 0 0.55rem;
  border-left: 2px solid currentColor;
  color: var(--signal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 52rem;
  margin-bottom: 1.25rem;
  color: var(--text);
  font-size: clamp(4rem, 9vw, 7.7rem);
  line-height: 0.86;
}

.hero-description {
  max-width: 43rem;
  margin-bottom: 0;
  color: rgba(244, 240, 232, 0.82);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.25rem;
  border-radius: 0.25rem;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.primary-action {
  border: 1px solid var(--text);
  color: var(--ink);
  background: var(--text);
}

.secondary-action {
  border: 1px solid rgba(244, 240, 232, 0.5);
  color: var(--text);
  background: transparent;
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-1px);
}

.secondary-action:hover {
  border-color: var(--text);
  background: rgba(244, 240, 232, 0.08);
}

.now-playing {
  border-left: 1px solid var(--line-strong);
  padding-left: 1.25rem;
}

.player-topline,
.player-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.player-topline {
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.18);
  background:
    radial-gradient(circle at 70% 30%, rgba(231, 179, 90, 0.34), transparent 30%),
    linear-gradient(135deg, #090909, #18120e 52%, #080808);
}

.player-screen {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: space-between;
  padding: 1rem;
}

.player-screen::before {
  content: "";
  position: absolute;
  inset: 18% 12% 28%;
  border: 1px solid rgba(244, 240, 232, 0.18);
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(244, 240, 232, 0.08) 44% 56%, transparent 56%),
    repeating-linear-gradient(0deg, rgba(244, 240, 232, 0.12) 0 1px, transparent 1px 1rem);
  transform: perspective(32rem) rotateX(58deg);
}

.player-screen::after {
  content: "";
  position: absolute;
  inset: auto 1rem 4rem;
  height: 0.5rem;
  background: linear-gradient(90deg, var(--red) 0 42%, rgba(244, 240, 232, 0.22) 42% 100%);
}

.screen-status,
.screen-title {
  position: relative;
  z-index: 1;
}

.screen-status {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.screen-title {
  display: grid;
  gap: 0.35rem;
  max-width: 16rem;
}

.screen-title span {
  color: var(--signal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.screen-title strong {
  color: var(--text);
  font-family: "Space Grotesk", "Archivo", sans-serif;
  font-size: 1.65rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.screen-lines {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  gap: 0.35rem;
  width: 5rem;
}

.screen-lines span {
  height: 1px;
  background: rgba(244, 240, 232, 0.42);
}

.screen-lines span:nth-child(2) {
  width: 74%;
  background: rgba(231, 179, 90, 0.78);
}

.screen-lines span:nth-child(3) {
  width: 48%;
}

.play-button {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(244, 240, 232, 0.75);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.76);
  cursor: pointer;
}

.play-button span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 1.18rem;
  border-top: 0.52rem solid transparent;
  border-bottom: 0.52rem solid transparent;
  border-left: 0.82rem solid var(--text);
}

.player-meta {
  padding-top: 0.85rem;
}

.player-meta strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.player-meta p,
.runtime-pill {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: calc(100% + 8rem);
  margin-left: -4rem;
  border-top: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.76);
}

.hero-strip article {
  min-height: 7.5rem;
  padding: 1.25rem 4rem;
  border-right: 1px solid var(--line);
}

.hero-strip article:last-child {
  border-right: 0;
}

.hero-strip span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 800;
}

.hero-strip p {
  max-width: 24rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.58;
}

.featured-rail,
.section {
  padding: 5rem 4rem;
}

.featured-rail {
  background: var(--bg);
}

.release-timeline {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  max-width: 92rem;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline-item {
  min-height: 20rem;
  display: grid;
  align-content: end;
  gap: 1rem;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent 0 46%, rgba(244, 240, 232, 0.05) 46% 46.5%, transparent 46.5%),
    repeating-linear-gradient(90deg, rgba(244, 240, 232, 0.06) 0 1px, transparent 1px 3.25rem);
}

.timeline-item:last-child {
  border-right: 0;
}

.timeline-item.wide {
  min-height: 26rem;
  background:
    radial-gradient(circle at 22% 24%, rgba(207, 63, 51, 0.25), transparent 16rem),
    repeating-linear-gradient(90deg, rgba(244, 240, 232, 0.08) 0 1px, transparent 1px 3rem);
}

.timeline-item.accent {
  background:
    linear-gradient(160deg, rgba(231, 179, 90, 0.18), transparent 46%),
    repeating-linear-gradient(0deg, rgba(244, 240, 232, 0.06) 0 1px, transparent 1px 3rem);
}

.timeline-item span {
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 800;
}

.timeline-item strong {
  display: block;
  max-width: 18rem;
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1.05;
}

.timeline-item p {
  max-width: 22rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 92rem;
  margin: 0 auto 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.section-heading h2,
.enter-panel h2 {
  max-width: 76rem;
  margin-bottom: 0;
  font-size: 4rem;
  line-height: 0.98;
}

.section-subcopy {
  max-width: 46rem;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.experience {
  color: var(--ink);
  background: var(--paper);
}

.experience .section-heading,
.workflow .section-heading,
.enter .section-heading {
  border-color: rgba(20, 20, 20, 0.18);
}

.experience .section-kicker {
  color: var(--red);
}

.app-statement {
  max-width: 92rem;
  margin: 0 auto 2rem;
  padding: 1.25rem 0;
  border-top: 2px solid rgba(20, 20, 20, 0.9);
  border-bottom: 1px solid rgba(20, 20, 20, 0.18);
}

.app-statement p {
  max-width: 62rem;
  margin-bottom: 0;
  color: #3f3931;
  font-size: 1.08rem;
  line-height: 1.75;
}

.experience-list {
  max-width: 92rem;
  margin: 0 auto;
  border-top: 1px solid rgba(20, 20, 20, 0.18);
}

.experience-row {
  display: grid;
  grid-template-columns: 4rem minmax(14rem, 0.34fr) minmax(0, 0.66fr);
  gap: 2rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.18);
}

.experience-row span,
.release-column span {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
}

.experience-row h3,
.release-column h3,
.genre-copy h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.22;
}

.experience-row p,
.release-column p,
.genre-copy span,
.enter-note,
.footer-copy p,
.footer-rights {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.experience-row p {
  color: #4f4a43;
}

.directors {
  background: var(--surface);
}

.release-board {
  max-width: 92rem;
  margin: 0 auto;
}

.release-board {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.release-column {
  min-height: 19rem;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
}

.release-column:last-child {
  border-right: 0;
}

.release-column.main {
  background:
    radial-gradient(circle at 22% 20%, rgba(207, 63, 51, 0.22), transparent 14rem),
    linear-gradient(120deg, rgba(231, 179, 90, 0.12), transparent 52%),
    repeating-linear-gradient(90deg, rgba(244, 240, 232, 0.07) 0 1px, transparent 1px 4rem),
    #0d0d0d;
  position: relative;
  isolation: isolate;
}

.release-column.main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(8, 8, 8, 0.72);
}

.panel-label {
  margin: 0 0 1rem;
  color: var(--signal);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.release-column.main h3 {
  max-width: 32rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.06;
}

.release-column.main p {
  max-width: 34rem;
}

.release-column span {
  display: block;
  margin-bottom: 4.25rem;
  color: var(--signal);
}

.release-column h3 {
  margin-bottom: 0.8rem;
  color: var(--text);
}

.workflow {
  color: var(--ink);
  background: var(--paper);
}

.workflow .section-kicker {
  color: var(--red);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 92rem;
  margin: 0 auto;
  border-top: 2px solid var(--ink);
  border-left: 1px solid rgba(20, 20, 20, 0.18);
}

.workflow-step {
  min-height: 22rem;
  display: grid;
  align-content: space-between;
  gap: 2rem;
  padding: 1.25rem;
  border-right: 1px solid rgba(20, 20, 20, 0.18);
  border-bottom: 1px solid rgba(20, 20, 20, 0.18);
  background:
    linear-gradient(180deg, rgba(207, 63, 51, 0.05), transparent 42%),
    repeating-linear-gradient(90deg, rgba(20, 20, 20, 0.04) 0 1px, transparent 1px 4rem);
}

.workflow-step span {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
}

.workflow-step h3 {
  margin: auto 0 0;
  font-size: 1.65rem;
  line-height: 1.08;
}

.workflow-step p {
  margin-bottom: 0;
  color: #4f4a43;
  line-height: 1.68;
}

.faq {
  background: var(--bg);
}

.faq-list {
  display: grid;
  max-width: 92rem;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--signal);
  font-size: 1.4rem;
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 56rem;
  margin-bottom: 1.25rem;
  color: var(--muted);
  line-height: 1.72;
}

.genres {
  background: var(--bg);
}

.genre-showcase {
  display: grid;
  max-width: 92rem;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.genre-lane {
  display: grid;
  grid-template-columns: minmax(10rem, 18rem) minmax(0, 1fr);
  min-height: 12rem;
  border-bottom: 1px solid var(--line);
}

.genre-lane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) brightness(0.82);
}

.genre-copy {
  display: grid;
  grid-template-columns: minmax(8rem, 0.2fr) minmax(12rem, 0.36fr) minmax(0, 0.44fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
}

.genre-copy p {
  margin: 0;
  color: var(--signal);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.enter {
  color: var(--ink);
  background: var(--paper);
}

.enter .section-kicker {
  color: var(--red);
}

.enter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  max-width: 92rem;
  margin: 0 auto;
  padding-top: 2rem;
}

.enter-note {
  max-width: 48rem;
  color: #4f4a43;
}

.entry-identity-note {
  max-width: 48rem;
  margin: 1rem 0 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(20, 20, 20, 0.18);
  border-bottom: 1px solid rgba(20, 20, 20, 0.18);
  color: #3f3931;
  font-weight: 800;
  line-height: 1.65;
}

.agreement-note {
  max-width: 48rem;
  margin-top: 1rem;
  margin-bottom: 0;
  color: #4f4a43;
  font-size: 0.95rem;
  font-weight: 700;
}

.agreement-note a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.enter-panel .primary-action {
  border-color: var(--ink);
  color: var(--text);
  background: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 4rem;
  border-top: 1px solid rgba(20, 20, 20, 0.18);
  color: var(--ink);
  background: var(--paper);
}

.site-footer .brand-logo {
  border-color: rgba(20, 20, 20, 0.2);
}

.footer-copy {
  display: grid;
  gap: 0.5rem;
}

.footer-copy p,
.footer-rights {
  font-size: 0.92rem;
}

.footer-copy a:not(.brand),
.footer-links a {
  color: var(--red);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 1080px) {
  .site-header,
  .hero,
  .featured-rail,
  .section,
  .site-footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-layout,
  .enter-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    width: calc(100% + 4rem);
    margin-left: -2rem;
  }

  .hero-strip article {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .release-timeline,
  .release-board {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-item:nth-child(2n) {
    border-right: 0;
  }

  .release-column:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    min-height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 1.25rem;
    padding-bottom: 0.25rem;
  }

  .hero {
    padding-top: 8rem;
  }

  .hero-copy h1 {
    font-size: 4.4rem;
  }

  .hero-layout {
    gap: 2rem;
  }

  .now-playing {
    border-left: 0;
    padding-left: 0;
  }

  .hero-strip,
  .experience-row,
  .genre-copy,
  .genre-lane,
  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .hero-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-strip article:last-child {
    border-bottom: 0;
  }

  .release-timeline,
  .release-board {
    grid-template-columns: 1fr;
  }

  .timeline-item,
  .timeline-item.wide {
    min-height: 18rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline-item:last-child {
    border-bottom: 0;
  }

  .release-column,
  .release-column:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .release-column:last-child {
    border-bottom: 0;
  }

  .genre-lane img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .featured-rail,
  .section,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 8.5rem;
  }

  .hero-copy h1 {
    font-size: 3.2rem;
  }

  .section-heading h2,
  .enter-panel h2 {
    font-size: 2.55rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-strip {
    width: calc(100% + 2rem);
    margin-left: -1rem;
  }

  .hero-strip article {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .timeline-item,
  .timeline-item.wide {
    min-height: 16rem;
  }

  .release-column.main h3 {
    font-size: 1.65rem;
  }
}

/* Homepage cinematic reel redesign. Layout-only; existing navigation and dashboard entry stay unchanged. */
body {
  background:
    radial-gradient(circle at 70% 8%, rgba(207, 63, 51, 0.14), transparent 24rem),
    radial-gradient(circle at 14% 22%, rgba(112, 168, 200, 0.12), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #080808 46%, #0d0a08 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(circle at center, #000 48%, transparent 82%);
}

.site-header {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.24));
}

.hero {
  min-height: 100svh;
  align-content: center;
  padding-bottom: 2rem;
}

.hero-media {
  background:
    radial-gradient(circle at 74% 26%, rgba(231, 179, 90, 0.18), transparent 22rem),
    radial-gradient(circle at 20% 72%, rgba(112, 168, 200, 0.18), transparent 24rem),
    linear-gradient(115deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.86) 58%),
    #050505;
}

.hero-media::before {
  inset: 0;
  width: auto;
  border: 0;
  background:
    linear-gradient(90deg, rgba(244, 240, 232, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(244, 240, 232, 0.05) 1px, transparent 1px);
  background-size: 8rem 100%, 100% 7rem;
  transform: none;
  opacity: 0.42;
}

.hero-media::after {
  bottom: 4.5rem;
  opacity: 0.28;
  animation: filmPulse 4.8s ease-in-out infinite alternate;
}

.hero-layout {
  grid-template-columns: minmax(22rem, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}

.hero-copy {
  max-width: 42rem;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(4.2rem, 9vw, 9.8rem);
  line-height: 0.8;
  letter-spacing: -0.085em;
}

.hero-description {
  max-width: 34rem;
  font-size: clamp(1.02rem, 1.4vw, 1.25rem);
}

.hero-actions {
  margin-top: 2rem;
}

.primary-action,
.secondary-action {
  border-radius: 0;
}

.film-reel {
  position: relative;
  min-width: 0;
  padding: 2.4rem 0;
  overflow: hidden;
}

.film-reel::before,
.film-reel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.6rem;
  z-index: 2;
  background:
    repeating-linear-gradient(90deg, #050505 0 1.15rem, transparent 1.15rem 1.9rem),
    linear-gradient(90deg, rgba(231, 179, 90, 0.7), rgba(244, 240, 232, 0.34), rgba(231, 179, 90, 0.7));
  border: 1px solid rgba(244, 240, 232, 0.18);
}

.film-reel::before {
  top: 0;
}

.film-reel::after {
  bottom: 0;
}

.reel-label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  color: rgba(244, 240, 232, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.reel-window {
  position: relative;
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(244, 240, 232, 0.18);
  border-bottom: 1px solid rgba(244, 240, 232, 0.18);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), transparent 10%, transparent 90%, rgba(5, 5, 5, 0.92)),
    #050505;
}

.reel-window::before,
.reel-window::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5rem;
  z-index: 3;
  pointer-events: none;
}

.reel-window::before {
  left: 0;
  background: linear-gradient(90deg, #050505, transparent);
}

.reel-window::after {
  right: 0;
  background: linear-gradient(270deg, #050505, transparent);
}

.reel-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: reelMove 30s linear infinite;
}

.film-reel:hover .reel-track {
  animation-play-state: paused;
}

.reel-frame {
  position: relative;
  flex: 0 0 clamp(18rem, 43vw, 39rem);
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(244, 240, 232, 0.22);
  background: #0b0b0b;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.42);
}

.reel-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.64)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.08));
}

.reel-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: reelFrameDrift 12s ease-in-out infinite alternate;
}

.reel-frame figcaption {
  position: absolute;
  left: 1rem;
  bottom: 0.85rem;
  z-index: 2;
  color: var(--text);
  font-family: "Space Grotesk", "Archivo", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero-strip {
  width: min(92rem, 100%);
  margin: clamp(2rem, 5vw, 4rem) auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(231, 179, 90, 0.08), transparent 42%, rgba(207, 63, 51, 0.06));
}

.hero-strip article {
  background: transparent;
}

.featured-rail,
.section {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  max-width: 82rem;
  margin-left: auto;
  margin-right: auto;
}

.section-heading .section-kicker {
  margin-bottom: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  justify-self: start;
}

.section-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 6.8rem);
  line-height: 0.86;
}

.section-subcopy {
  grid-column: 2;
  max-width: 34rem;
}

.release-timeline,
.release-board,
.workflow-steps,
.experience-list,
.faq-list,
.genre-showcase {
  max-width: 82rem;
  margin-left: auto;
  margin-right: auto;
}

.release-timeline {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border: 1px solid var(--line);
}

.timeline-item,
.timeline-item.wide {
  flex: 0 0 min(28rem, 86vw);
  min-height: 23rem;
  scroll-snap-align: start;
}

.experience-list,
.workflow-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.experience-row,
.workflow-step {
  display: grid;
  grid-template-columns: 4rem minmax(10rem, 0.42fr) minmax(0, 0.58fr);
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.app-statement,
.enter-panel {
  max-width: 82rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(231, 179, 90, 0.11), transparent 42%),
    rgba(244, 240, 232, 0.04);
}

.release-board {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(12rem, 0.7fr);
  border: 1px solid var(--line);
}

.release-column {
  min-height: 18rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.release-column.main {
  grid-row: span 3;
  min-height: 32rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(231, 179, 90, 0.16), transparent 24rem),
    rgba(244, 240, 232, 0.035);
}

.release-column:nth-child(2),
.release-column:nth-child(3),
.release-column:nth-child(4) {
  border-right: 0;
}

.release-column:nth-child(4) {
  border-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  background: transparent;
}

.genre-showcase {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.genre-lane {
  flex: 0 0 min(34rem, 84vw);
  scroll-snap-align: start;
  border-radius: 0;
}

.genre-lane img {
  aspect-ratio: 16 / 9;
}

.site-footer {
  border-top: 1px solid var(--line);
}

@keyframes reelMove {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 0.5rem), 0, 0);
  }
}

@keyframes reelFrameDrift {
  from {
    transform: scale(1.04) translate3d(-0.6%, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(0.6%, 0, 0);
  }
}

@keyframes filmPulse {
  from {
    transform: translateX(-1rem);
  }
  to {
    transform: translateX(1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reel-track,
  .reel-frame img,
  .hero-media::after {
    animation: none;
  }
}

@media (max-width: 980px) {
  .hero-layout,
  .section-heading,
  .release-board {
    grid-template-columns: 1fr;
  }

  .section-heading .section-kicker {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .section-subcopy {
    grid-column: auto;
  }

  .release-column.main {
    grid-row: auto;
    min-height: 22rem;
  }

  .experience-row,
  .workflow-step {
    grid-template-columns: 3rem 1fr;
  }

  .experience-row p,
  .workflow-step p {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 7rem;
  }

  .hero-copy h1 {
    font-size: 3.7rem;
  }

  .film-reel {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .reel-label {
    padding: 0 1rem;
  }

  .section-heading h2 {
    font-size: 3rem;
  }
}

/* Studio control-room pass: make the homepage feel like a film release surface, not a template site. */
.hero {
  min-height: 100svh;
  align-content: stretch;
  padding: 6rem 2rem 1.25rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 5.3rem 1.25rem 1.25rem;
  z-index: -1;
  border: 1px solid rgba(244, 240, 232, 0.18);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  top: 5.3rem;
  height: 2.25rem;
  z-index: -1;
  border-bottom: 1px solid rgba(244, 240, 232, 0.14);
  background:
    repeating-linear-gradient(90deg, rgba(244, 240, 232, 0.12) 0 1px, transparent 1px 4.5rem),
    rgba(244, 240, 232, 0.025);
  pointer-events: none;
}

.stage-console {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.55rem 0.85rem;
  color: rgba(244, 240, 232, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stage-console span:nth-child(2) {
  text-align: center;
}

.stage-console span:last-child {
  color: var(--red);
}

.hero-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 0;
  min-height: calc(100svh - 11rem);
  width: min(100%, 118rem);
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
  gap: 2rem;
  align-items: end;
  max-width: none;
  padding: clamp(1.5rem, 3vw, 3rem) clamp(1rem, 3vw, 2rem) 0;
}

.hero-copy .section-kicker {
  grid-column: 1 / -1;
  margin: 0;
}

.split-title {
  display: grid;
  gap: 0.05em;
  max-width: none;
  margin: 0;
  text-transform: uppercase;
}

.split-title span {
  display: block;
}

.split-title span:nth-child(1) {
  font-size: clamp(3.7rem, 10vw, 12rem);
  line-height: 0.75;
  letter-spacing: -0.1em;
}

.split-title span:nth-child(2) {
  color: transparent;
  font-size: clamp(3.2rem, 8vw, 9.5rem);
  line-height: 0.74;
  letter-spacing: -0.09em;
  -webkit-text-stroke: 1px rgba(244, 240, 232, 0.78);
  text-stroke: 1px rgba(244, 240, 232, 0.78);
}

.split-title span:nth-child(3) {
  color: var(--signal);
  font-size: clamp(4.2rem, 11vw, 13rem);
  line-height: 0.74;
  letter-spacing: -0.11em;
}

.hero-description {
  align-self: end;
  max-width: 27rem;
  margin: 0 0 0.45rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(231, 179, 90, 0.62);
}

.hero-actions {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0;
}

.hero-actions .primary-action,
.hero-actions .secondary-action {
  justify-content: space-between;
  min-height: 3.6rem;
}

.hero-actions .primary-action::after,
.hero-actions .secondary-action::after {
  content: "→";
  margin-left: 1rem;
}

.film-reel {
  align-self: end;
  margin-top: -1rem;
  padding: 3.4rem 0 2.8rem;
}

.reel-label {
  position: relative;
  z-index: 4;
  width: min(100%, 116rem);
  margin: 0 auto 0.8rem;
  padding: 0 1rem;
}

.reel-window {
  margin-left: -2rem;
  margin-right: -2rem;
  padding: 1rem 0;
  border-color: rgba(231, 179, 90, 0.26);
}

.reel-track {
  gap: 0.75rem;
  animation-duration: 34s;
}

.reel-frame {
  flex-basis: clamp(20rem, 48vw, 48rem);
  border-color: rgba(231, 179, 90, 0.28);
}

.reel-frame figcaption {
  left: 1.15rem;
  bottom: 1rem;
  padding: 0.25rem 0.45rem;
  background: rgba(5, 5, 5, 0.72);
}

.control-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 118rem);
  margin: 0 auto;
  border: 1px solid rgba(244, 240, 232, 0.16);
  background: rgba(5, 5, 5, 0.72);
}

.control-strip article {
  min-height: 5.75rem;
  padding: 1rem;
  border-right: 1px solid rgba(244, 240, 232, 0.14);
}

.control-strip article:last-child {
  border-right: 0;
}

.control-strip span {
  display: block;
  color: var(--signal);
  font-family: "Space Grotesk", "Archivo", sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.control-strip p {
  max-width: 25rem;
  margin: 0.35rem 0 0;
  color: rgba(244, 240, 232, 0.62);
  font-size: 0.88rem;
  line-height: 1.45;
}

.featured-rail {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(207, 63, 51, 0.1), transparent 28%),
    #0a0a0a;
}

.featured-rail::before {
  content: "RELEASE CONTROL";
  position: absolute;
  right: -0.18em;
  top: 0.18em;
  color: rgba(244, 240, 232, 0.035);
  font-family: "Space Grotesk", "Archivo", sans-serif;
  font-size: clamp(5rem, 15vw, 18rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.8;
  pointer-events: none;
}

.release-timeline {
  margin-top: 3rem;
  transform: rotate(-1.5deg);
  background: rgba(5, 5, 5, 0.56);
}

.timeline-item {
  transform: rotate(1.5deg);
}

.app-section {
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.02), transparent),
    #080808;
}

.app-statement {
  margin-top: 3rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(231, 179, 90, 0.26);
  font-size: clamp(1.25rem, 2.6vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.app-statement p {
  max-width: 34ch;
}

.directors {
  background:
    radial-gradient(circle at 16% 20%, rgba(112, 168, 200, 0.12), transparent 22rem),
    #050505;
}

.workflow {
  background:
    linear-gradient(90deg, rgba(231, 179, 90, 0.08), transparent 32%),
    #0b0907;
}

.workflow-steps {
  margin-top: 3rem;
}

.workflow-step {
  min-height: 8rem;
}

.genres {
  overflow: hidden;
}

.genre-showcase {
  margin-top: 3rem;
  transform: translateX(4vw);
}

.enter {
  min-height: 70svh;
  display: grid;
  align-content: center;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.86)),
    radial-gradient(circle at 18% 50%, rgba(207, 63, 51, 0.14), transparent 26rem),
    #050505;
}

.enter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 2rem;
  align-items: center;
  margin-top: 3rem;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid rgba(231, 179, 90, 0.26);
}

.enter-panel .primary-action {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: stretch;
}

@media (max-width: 980px) {
  .hero-copy {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .control-strip {
    grid-template-columns: 1fr;
  }

  .control-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 240, 232, 0.14);
  }

  .control-strip article:last-child {
    border-bottom: 0;
  }

  .enter-panel {
    grid-template-columns: 1fr;
  }

  .enter-panel .primary-action {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero::before {
    left: 0.75rem;
    right: 0.75rem;
  }

  .stage-console {
    grid-template-columns: 1fr;
  }

  .stage-console span:nth-child(2) {
    text-align: left;
  }

  .split-title span:nth-child(1),
  .split-title span:nth-child(2),
  .split-title span:nth-child(3) {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .reel-window {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .app-statement {
    font-size: 1.55rem;
  }
}

/* Readability and first-screen spacing fixes. */
.hero {
  align-content: start;
  padding-top: 5.35rem;
}

.hero-layout {
  min-height: auto;
}

.hero-copy {
  align-items: start;
  padding-top: clamp(0.75rem, 1.6vw, 1.5rem);
}

.hero-description {
  align-self: start;
  margin-top: 0.45rem;
}

.hero-actions {
  align-self: start;
  margin-top: 0.75rem;
}

.film-reel {
  margin-top: clamp(0.25rem, 1.5vw, 1rem);
}

.app-section,
.workflow {
  color: var(--text);
}

.app-section .section-heading,
.workflow .section-heading {
  border-color: rgba(244, 240, 232, 0.2);
}

.app-section .section-kicker,
.workflow .section-kicker,
.app-section .experience-row span,
.workflow .workflow-step span {
  color: var(--signal);
}

.app-section .section-heading h2,
.workflow .section-heading h2,
.app-section .experience-row h3,
.workflow .workflow-step h3 {
  color: #fff8ec;
}

.app-statement {
  border-color: rgba(231, 179, 90, 0.34);
  background:
    linear-gradient(90deg, rgba(231, 179, 90, 0.16), rgba(244, 240, 232, 0.035)),
    rgba(5, 5, 5, 0.42);
}

.app-statement p,
.app-section .experience-row p,
.workflow .workflow-step p {
  color: rgba(244, 240, 232, 0.86);
}

.app-section .experience-list,
.workflow .workflow-steps {
  border-color: rgba(244, 240, 232, 0.22);
}

.app-section .experience-row,
.workflow .workflow-step {
  border-color: rgba(244, 240, 232, 0.18);
}

.workflow .workflow-step {
  background:
    linear-gradient(180deg, rgba(231, 179, 90, 0.1), transparent 46%),
    rgba(244, 240, 232, 0.035);
}

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

  .hero-actions {
    margin-top: 0.25rem;
  }
}

/* Final homepage structure: five focused sections, high contrast, no empty grid cells. */
.section-anchor {
  position: relative;
  top: -5rem;
  display: block;
}

.hero {
  padding-bottom: 1rem;
}

.hero-copy {
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.36fr);
}

.hero-actions .primary-action {
  background: var(--signal);
  color: var(--ink);
  border-color: var(--signal);
}

.hero-actions .secondary-action {
  background: rgba(244, 240, 232, 0.06);
  color: #fff8ec;
  border-color: rgba(244, 240, 232, 0.34);
}

.app-section {
  min-height: auto;
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
  background:
    radial-gradient(circle at 84% 20%, rgba(112, 168, 200, 0.14), transparent 22rem),
    linear-gradient(180deg, #090909, #070707);
}

.app-command {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.42fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  max-width: 82rem;
  margin: 3rem auto 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(231, 179, 90, 0.34);
  background:
    linear-gradient(90deg, rgba(231, 179, 90, 0.14), transparent 44%),
    rgba(244, 240, 232, 0.045);
}

.app-command p {
  max-width: 38ch;
  margin: 0;
  color: #fff8ec;
  font-family: "Space Grotesk", "Archivo", sans-serif;
  font-size: clamp(1.55rem, 3.5vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.app-command-meta {
  display: grid;
  align-content: stretch;
  border-top: 1px solid rgba(244, 240, 232, 0.18);
}

.app-command-meta span {
  display: flex;
  align-items: center;
  min-height: 4.25rem;
  border-bottom: 1px solid rgba(244, 240, 232, 0.18);
  color: rgba(244, 240, 232, 0.86);
  font-weight: 800;
}

.director-path {
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
  background:
    linear-gradient(90deg, rgba(231, 179, 90, 0.1), transparent 34%),
    #0b0907;
}

.director-path-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.16fr) minmax(0, 0.92fr);
  gap: 0;
  max-width: 82rem;
  margin: 3rem auto 0;
  border: 1px solid rgba(244, 240, 232, 0.18);
  background: rgba(5, 5, 5, 0.34);
}

.path-step {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 1rem;
  min-height: 19rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-right: 1px solid rgba(244, 240, 232, 0.16);
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.045), transparent),
    rgba(5, 5, 5, 0.32);
}

.path-step:last-child {
  border-right: 0;
}

.path-step span {
  color: var(--signal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.path-step h3 {
  margin: 0;
  color: #fff8ec;
  font-family: "Space Grotesk", "Archivo", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.45rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.path-step p {
  margin: 0;
  color: rgba(244, 240, 232, 0.82);
  line-height: 1.65;
}

.path-step-feature {
  background:
    radial-gradient(circle at 20% 0%, rgba(231, 179, 90, 0.2), transparent 18rem),
    rgba(244, 240, 232, 0.065);
}

.path-step-feature .primary-action {
  align-self: end;
  justify-self: start;
  margin-top: 1rem;
}

.genres {
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
  background:
    radial-gradient(circle at 76% 16%, rgba(207, 63, 51, 0.16), transparent 22rem),
    #050505;
}

.genre-showcase {
  max-width: none;
  margin-top: 3rem;
  padding-left: max(1rem, calc((100vw - 82rem) / 2));
  padding-right: 1rem;
  transform: none;
}

.genre-lane {
  min-height: auto;
  background: #0b0b0b;
}

.genre-copy {
  color: #fff8ec;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.9));
}

.genre-copy p {
  color: var(--signal);
}

.genre-copy span {
  color: rgba(244, 240, 232, 0.82);
}

.enter {
  min-height: auto;
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.entry-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 82rem;
  margin: 3rem auto 0;
}

.entry-faq-grid .enter-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
  min-height: 100%;
  color: #fff8ec;
  background:
    linear-gradient(135deg, rgba(231, 179, 90, 0.14), transparent 52%),
    rgba(244, 240, 232, 0.045);
}

.entry-faq-grid .enter-panel .primary-action {
  grid-column: auto;
  grid-row: auto;
  align-self: end;
  justify-self: start;
  margin-top: 1rem;
}

.entry-faq-grid .enter-note,
.entry-faq-grid .entry-identity-note,
.entry-faq-grid .agreement-note {
  color: rgba(244, 240, 232, 0.84);
}

.entry-faq-grid .agreement-note a {
  color: var(--signal);
  font-weight: 900;
}

.entry-faq-grid .faq-list {
  margin: 0;
  border: 1px solid rgba(244, 240, 232, 0.18);
  background: rgba(5, 5, 5, 0.28);
}

.entry-faq-grid .faq-item {
  color: #fff8ec;
  border-color: rgba(244, 240, 232, 0.16);
}

.entry-faq-grid .faq-item summary {
  color: #fff8ec;
}

.entry-faq-grid .faq-item p {
  color: rgba(244, 240, 232, 0.82);
}

@media (max-width: 980px) {
  .hero-copy,
  .app-command,
  .director-path-grid,
  .entry-faq-grid {
    grid-template-columns: 1fr;
  }

  .director-path-grid {
    border-bottom: 0;
  }

  .path-step {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 240, 232, 0.16);
  }

  .path-step:last-child {
    border-bottom: 1px solid rgba(244, 240, 232, 0.16);
  }
}

@media (max-width: 560px) {
  .app-command,
  .path-step,
  .entry-faq-grid .enter-panel {
    padding: 1rem;
  }

  .app-command p {
    font-size: 1.7rem;
    line-height: 1.05;
  }

  .path-step h3 {
    font-size: 1.55rem;
  }
}

/* Fix genre lane overflow and move hero CTAs upward. */
.hero-actions {
  transform: translateY(-1.15rem);
}

.genre-showcase {
  gap: 1.25rem;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
}

.genre-lane {
  position: relative;
  flex: 0 0 min(52rem, calc(100vw - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(17rem, 42%);
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.16);
}

.genre-lane img {
  width: 100%;
  height: 100%;
  min-height: 19rem;
  object-fit: cover;
}

.genre-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-content: end;
  gap: 0.75rem;
  min-width: 0;
  padding: clamp(1rem, 2.4vw, 1.75rem);
  background:
    linear-gradient(180deg, rgba(231, 179, 90, 0.1), transparent 34%),
    #0a0a0a;
}

.genre-copy h3 {
  color: #fff8ec;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 0.98;
}

.genre-copy span {
  display: block;
  max-width: 26rem;
  overflow-wrap: break-word;
}

@media (max-width: 760px) {
  .hero-actions {
    transform: none;
  }

  .genre-lane {
    flex-basis: min(28rem, calc(100vw - 2rem));
    grid-template-columns: 1fr;
  }

  .genre-lane img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

/* Unify final entry section with the studio/control-room theme. */
.enter {
  color: #fff8ec;
  background:
    radial-gradient(circle at 16% 24%, rgba(231, 179, 90, 0.14), transparent 22rem),
    radial-gradient(circle at 84% 40%, rgba(112, 168, 200, 0.1), transparent 24rem),
    linear-gradient(180deg, #080808, #050505);
}

.enter .section-heading {
  border-color: rgba(244, 240, 232, 0.2);
}

.enter .section-kicker {
  color: var(--signal);
}

.enter .section-heading h2 {
  color: #fff8ec;
}

.entry-faq-grid .enter-panel {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid rgba(231, 179, 90, 0.3);
  background:
    linear-gradient(135deg, rgba(231, 179, 90, 0.16), transparent 54%),
    rgba(244, 240, 232, 0.055);
}

.entry-faq-grid .enter-note,
.entry-faq-grid .entry-identity-note,
.entry-faq-grid .agreement-note {
  color: rgba(255, 248, 236, 0.9);
}

.entry-faq-grid .entry-identity-note {
  border-color: rgba(244, 240, 232, 0.2);
}

.entry-faq-grid .agreement-note a {
  color: var(--signal);
}

.entry-faq-grid .faq-list {
  border-color: rgba(231, 179, 90, 0.24);
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.045), transparent),
    rgba(5, 5, 5, 0.44);
}

.entry-faq-grid .faq-item {
  border-color: rgba(244, 240, 232, 0.18);
  background: transparent;
}

.entry-faq-grid .faq-item summary {
  color: #fff8ec;
}

.entry-faq-grid .faq-item p {
  color: rgba(255, 248, 236, 0.86);
}

.entry-faq-grid .enter-panel .primary-action {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--ink);
}

/* Full-width left-aligned section titles. */
.section .section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: start;
  width: calc(100% - 2rem);
  max-width: none;
  margin: 0 1rem 3rem;
  padding-left: max(0rem, calc((100vw - 82rem) / 2));
  padding-right: max(0rem, calc((100vw - 82rem) / 2));
  text-align: left;
}

.section .section-heading .section-kicker {
  justify-self: start;
  writing-mode: horizontal-tb;
  transform: none;
}

.section .section-heading h2 {
  max-width: none;
  width: 100%;
  color: #fff8ec;
  text-align: left;
  white-space: nowrap;
  font-size: clamp(2.4rem, 5.2vw, 5.8rem);
  line-height: 0.95;
}

@media (max-width: 900px) {
  .section .section-heading h2 {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .section .section-heading {
    width: calc(100% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
}
