:root {
  --bg: #080808;
  --panel: #111111;
  --panel-2: #151515;
  --ink: #f2f0e9;
  --muted: #a6a49e;
  --soft: #d4d0c7;
  --line: rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.18);
  --shadow: 0 28px 90px rgba(0,0,0,.48);
  --radius: 26px;
  --ember: #8b5847;
  --sage: #647267;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -4%, rgba(255,255,255,.035), transparent 34rem),
    linear-gradient(180deg, #080808 0%, #0b0b0b 45%, #080808 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: -12vh -12vw;
  z-index: -20;
  pointer-events: none;
  background:
    radial-gradient(circle at calc(22% + var(--cursor-x,0px)) calc(18% + var(--cursor-y,0px)), rgba(255,255,255,.025), transparent 26rem),
    radial-gradient(circle at calc(80% - var(--cursor-x,0px)) calc(70% - var(--cursor-y,0px)), rgba(255,255,255,.016), transparent 30rem);
  transform: translateY(var(--scroll-drift,0px));
}

a { color: inherit; text-decoration: none; }
button, a { touch-action: manipulation; }
button { font: inherit; }

.shell { width: min(1180px, calc(100% - 32px)); margin: auto; }
.project-shell { width: min(1100px, calc(100% - 28px)); margin: auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,8,8,.80);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.075);
}
.nav {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 9px;
  white-space: nowrap;
  font-size: .88rem;
  font-weight: 850;
  letter-spacing: .055em;
}
.brand-parent {
  color: #92908b;
  font-size: .70rem;
  letter-spacing: .14em;
}
.brand-slash { color: #5d5b57; font-weight: 400; }
.navlinks { display: flex; gap: 20px; color: #9d9b96; font-size: .9rem; }
.navlinks a { transition: color .2s ease; }
.navlinks a:hover { color: #fffdf7; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #bcb9b2;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .72rem;
  font-weight: 760;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: #686661; }

.hero {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 48px;
  padding: 76px 0;
}
.hero h1 {
  margin: .16em 0 .22em;
  font-size: clamp(4.2rem, 13vw, 9.5rem);
  line-height: .79;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.48);
}
.lede {
  max-width: 680px;
  color: #cbc8c1;
  font-size: clamp(1.06rem, 2vw, 1.32rem);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #151515;
  color: var(--ink);
  font-weight: 760;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); border-color: var(--line-strong); background: #1a1a1a; }
.btn.primary { background: #efede6; color: #0a0a0a; border-color: #efede6; }
.btn.primary:hover { background: #fffdf8; }

.hero-art, .card, .choice, .seq {
  --rx: 0deg;
  --ry: 0deg;
  --lift: 0px;
  transform: perspective(1050px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--lift));
  transform-style: preserve-3d;
  transition: transform .16s ease, border-color .2s ease, box-shadow .2s ease;
}
.hero-art {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: #111;
  box-shadow: var(--shadow);
}
.hero-art-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-art-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 24%, rgba(0,0,0,.20) 56%, rgba(0,0,0,.86) 100%);
}
.art-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transform: translateZ(22px);
}
.art-copy .tiny { color: #b5b1a9; text-transform: uppercase; letter-spacing: .2em; font-size: .69rem; }
.art-copy strong { margin-top: 8px; font-size: clamp(2rem,4.4vw,4rem); line-height: .92; letter-spacing: -.05em; }

.section { padding: 76px 0; scroll-margin-top: 76px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}
.section h2 { margin: 0; font-size: clamp(2.35rem,6vw,4.65rem); line-height: .94; letter-spacing: -.055em; }
.section-copy { max-width: 590px; color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; }
.card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.008));
  box-shadow: 0 16px 50px rgba(0,0,0,.20);
}
.card:hover { --lift: -3px; border-color: rgba(255,255,255,.16); box-shadow: 0 22px 64px rgba(0,0,0,.30); }
.feature { grid-column: span 8; min-height: 430px; display: flex; flex-direction: column; justify-content: flex-end; }
.side-card { grid-column: span 4; min-height: 430px; }
.kicker { color: #a8a59f; font-size: .70rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.card h3 { margin: 10px 0; font-size: clamp(1.8rem,4vw,3.25rem); line-height: .99; letter-spacing: -.043em; }
.card p { max-width: 60ch; color: #c4c1ba; }

.signal-seam {
  height: 40px;
  margin: 3px 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  opacity: .48;
}
.signal-seam span {
  width: 3px;
  height: 9px;
  border-radius: 99px;
  background: #a6a39d;
  animation: signal 1.65s ease-in-out infinite;
}
.signal-seam span:nth-child(3n) { background: #5f5d59; }
.signal-seam span:nth-child(4n) { animation-delay: -.4s; }
.signal-seam span:nth-child(5n) { animation-delay: -.8s; }
@keyframes signal { 0%,100% { height: 7px; opacity: .35; } 50% { height: 24px; opacity: .92; } }

.fabric { height: 84px; display: grid; grid-template-columns: 1fr 74px 1fr; gap: 8px; margin: 24px 0 10px; }
.fabric > div {
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #d7d3ca;
  font-size: .72rem;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fabric .up { background: rgba(100,114,103,.07); }
.fabric .mid { background: rgba(255,255,255,.035); color: #9d9a94; }
.fabric .down { background: rgba(139,88,71,.07); }

.link-list { display: grid; gap: 10px; margin-top: 24px; }
.link-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); transition: padding .2s ease, color .2s ease; }
.link-row:hover { padding-left: 7px; color: #fffdf7; }
.link-row:last-child { border-bottom: 0; }
.link-row small { color: var(--muted); }
.manifesto { grid-column: span 12; padding: 54px; text-align: center; }
.manifesto blockquote { max-width: 900px; margin: 0 auto; font-size: clamp(1.6rem,4.2vw,3.5rem); line-height: 1.07; letter-spacing: -.04em; }
.manifesto p { margin: 18px auto 0; color: var(--muted); }
.footer { padding: 36px 0 54px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* Cut From the Same Fabric */
.project-hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 108px 0 62px;
  background: #090909;
}
.project-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: contrast(1.03) saturate(.98) brightness(.86);
}
.project-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.06) 28%, rgba(8,8,8,.48) 62%, #080808 100%),
    linear-gradient(90deg, rgba(0,0,0,.30), transparent 60%);
}
.project-hero-copy { position: relative; z-index: 2; }
.project-hero h1 { max-width: 1000px; margin: 10px 0 18px; font-size: clamp(3.5rem,10vw,8.3rem); line-height: .84; letter-spacing: -.07em; text-shadow: 0 4px 30px rgba(0,0,0,.45); }
.project-hero .lede { max-width: 780px; color: #e0ddd5; text-shadow: 0 2px 18px rgba(0,0,0,.58); }
.back { display: inline-flex; margin-bottom: 22px; color: #b4b0a8; font-weight: 760; }
.status { margin-top: 13px; color: #aba79f; font-size: .74rem; letter-spacing: .075em; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0; }
.choice {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #101010;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.choice:hover { --lift: -3px; border-color: rgba(255,255,255,.17); }
.choice.good { background: linear-gradient(145deg, rgba(100,114,103,.06), transparent 42%), #101010; }
.choice.dark { background: linear-gradient(215deg, rgba(139,88,71,.06), transparent 42%), #101010; }
.choice.good.active { border-color: rgba(134,150,138,.42); }
.choice.dark.active { border-color: rgba(157,107,91,.42); }
.choice strong { display: block; margin: 4px 0 5px; font-size: 1.55rem; letter-spacing: -.02em; }
.choice span:not(.kicker) { color: var(--muted); }
.choice.good .kicker { color: #8b998e; }
.choice.dark .kicker { color: #a67869; }

.sequence { display: grid; grid-template-columns: 1fr 72px 1fr; gap: 10px; margin: 24px 0; }
.seq { padding: 21px; border: 1px solid var(--line); border-radius: 20px; background: #101010; }
.seq.center { display: grid; place-items: center; text-align: center; color: #85827d; font-size: .69rem; text-transform: uppercase; letter-spacing: .13em; }
.seq .num { color: #8d8a84; font-size: .68rem; letter-spacing: .13em; }
.seq strong { display: block; margin-top: 8px; }
.seq p { color: #aaa7a1; }
.bridge { margin-bottom: 20px; }

.player {
  position: sticky;
  bottom: 12px;
  z-index: 20;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(15,15,15,.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.now { display: flex; align-items: center; gap: 16px; }
.disc {
  position: relative;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: radial-gradient(circle at center,#080808 0 13%,transparent 14%), repeating-radial-gradient(circle,#252525 0 2px,#111 3px 5px);
}
.disc::after { content: ""; position: absolute; inset: 7px; border-radius: 50%; border: 1px solid rgba(255,255,255,.06); }
.trackmeta { min-width: 0; flex: 1; }
.trackmeta small { display: block; color: #8e8b85; }
.trackmeta strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.controls { display: flex; gap: 9px; }
.iconbtn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #171717; color: var(--ink); cursor: pointer; }
.timeline { height: 5px; margin-top: 17px; overflow: hidden; border-radius: 99px; background: #262626; }
.timeline > span { display: block; width: 0; height: 100%; background: #d7d3ca; }

.essay { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.essay .card { min-height: 260px; }

.echo-film-wrap { width: min(1240px, calc(100% - 20px)); margin: 18px auto 38px; }
.echo-film {
  position: relative;
  height: clamp(300px, 48vw, 560px);
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.08);
  background: #0b0b0b;
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
}
.echo-film video {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  opacity: .62;
  filter: saturate(.72) contrast(1.06) brightness(.76);
  transform: scale(1.025) translateY(var(--echo-drift,0px));
}
.echo-film-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,.08), rgba(8,8,8,.28) 55%, rgba(8,8,8,.78)), linear-gradient(90deg, rgba(8,8,8,.48), transparent 58%);
}
.echo-film-copy { position: absolute; left: clamp(24px,5vw,64px); bottom: clamp(24px,5vw,58px); z-index: 2; }
.echo-film-copy span { display: block; margin-bottom: 7px; color: #a09d97; text-transform: uppercase; letter-spacing: .18em; font-size: .68rem; }
.echo-film-copy strong { display: block; color: rgba(242,240,233,.92); font-size: clamp(2rem,6vw,5.4rem); line-height: .88; letter-spacing: -.055em; }
.echo-sound {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(8,8,8,.58);
  color: #d7d3cb;
  backdrop-filter: blur(10px);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 820px) {
  .topbar { overflow: hidden; }
  .nav {
    min-height: 68px;
    height: auto;
    padding: 10px 0 8px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 8px;
  }
  .navlinks {
    display: flex;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 2px;
    scroll-snap-type: x proximity;
  }
  .navlinks::-webkit-scrollbar { display: none; }
  .navlinks a {
    flex: 0 0 auto;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 999px;
    background: rgba(255,255,255,.025);
    color: #b8b4ad;
    font-size: .76rem;
    font-weight: 760;
    scroll-snap-align: start;
  }
  .navlinks a[aria-current="page"] {
    color: #080808;
    background: #efede6;
    border-color: #efede6;
  }
  .brand { gap: 6px; font-size: .74rem; letter-spacing: .035em; }
  .brand-parent { display: inline; font-size: .58rem; letter-spacing: .09em; }
  .brand-slash { display: inline; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 54px 0 64px; }
  .hero-art { aspect-ratio: 4 / 5; }
  .section { padding: 62px 0; }
  .section-head { align-items: start; flex-direction: column; }
  .feature, .side-card { grid-column: span 12; }
  .choice-grid, .essay { grid-template-columns: 1fr; }
  .sequence { grid-template-columns: 1fr; }
  .seq.center { min-height: 48px; }
  .manifesto { padding: 36px 22px; }
  .project-hero { min-height: 86svh; padding: 94px 0 48px; }
  .project-poster { object-position: 50% 42%; }
  .player { padding: 18px; border-radius: 22px; }
  .controls { gap: 6px; }
  .iconbtn { width: 42px; height: 42px; }
  .controls .iconbtn:first-child { display: none; }
  .echo-film-wrap { width: calc(100% - 12px); }
  .echo-film { border-radius: 24px; height: 58vh; min-height: 340px; }
  .echo-film-copy strong { font-size: clamp(2.4rem,12vw,4.5rem); }
}

@media (max-width: 430px) {
  .shell { width: min(100% - 24px, 1180px); }
  .project-shell { width: min(100% - 24px, 1100px); }
  .brand { font-size: .67rem; }
  .brand-parent { font-size: .53rem; }
  .navlinks a { min-height: 34px; padding: 0 11px; font-size: .72rem; }
  .hero h1 { font-size: clamp(3.7rem,20vw,6rem); }
  .project-hero h1 { font-size: clamp(3.25rem,16vw,5.5rem); }
  .choice { padding: 22px; }
  .now { gap: 11px; }
  .disc { width: 46px; height: 46px; }
  .trackmeta strong { max-width: 185px; }
}

.cmd-now-share { display: inline-flex; align-items: center; min-height: 30px; margin-top: 5px; padding: 0; border: 0; background: transparent; color: inherit; font: 800 .68rem/1 system-ui, sans-serif; letter-spacing: .04em; text-transform: uppercase; cursor: pointer; opacity: .82; }
.cmd-now-share:hover, .cmd-now-share:focus-visible { opacity: 1; text-decoration: underline; }
.song-share-action { font: 760 .88rem/1 system-ui, sans-serif; }

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