/* ============================================================
   MOCAP THEATRE — main.css
   Light theme. Warm paper #f2eee3, ink #14110c,
   accent: electric indigo (stage light + technology).
   ============================================================ */

:root {
  --paper: #f2eee3;
  --paper-2: #e9e3d2;
  --paper-3: #ddd5c1;
  --ink: #14110c;
  --ink-dim: rgba(20, 17, 12, 0.58);
  --accent: #3d34e8;
  --hairline: rgba(20, 17, 12, 0.16);
  --hairline-light: rgba(242, 238, 227, 0.18);
  --font-display: "Unbounded", sans-serif;
  --font-body: "Onest", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --pad: clamp(16px, 4vw, 48px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--paper); }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.wrap {
  max-width: 1560px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Grain ---------- */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 200;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1.5%); }
  50% { transform: translate(1.5%, -2%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

/* ---------- Cursor ---------- */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  html.js .cursor { display: block; }
  html.js body { cursor: none; }
  html.js a, html.js button { cursor: none; }
}
.cursor__dot, .cursor__ring {
  position: fixed;
  top: 0; left: 0;
  z-index: 400;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor__dot { width: 6px; height: 6px; background: var(--accent); }
.cursor__ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(20, 17, 12, 0.4);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}
.cursor.is-hover .cursor__ring {
  width: 64px; height: 64px;
  border-color: var(--accent);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(14px, 2vw, 22px) var(--pad);
  mix-blend-mode: difference;
  color: #fff;
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav__logo { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.nav__logo-mark {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.4; } }
.nav__links { display: flex; gap: clamp(14px, 2.6vw, 34px); }
.nav__links a { opacity: 0.75; transition: opacity 0.25s; }
.nav__links a:hover { opacity: 1; }
.nav__cta { border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.nav__cta-arrow { display: inline-block; transition: transform 0.3s var(--ease); }
.nav__cta:hover .nav__cta-arrow { transform: translateX(5px); }
@media (max-width: 860px) { .nav__links { display: none; } }

/* ---------- Serif italic (theatre voice) ---------- */
.serif-it {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}
.sec-title.serif-it { font-size: clamp(36px, 6vw, 88px); }
.show__title.serif-it { font-size: clamp(36px, 6.2vw, 92px); max-width: 26ch; }
.science__lead.serif-it { font-size: clamp(26px, 3.6vw, 46px); }

/* ---------- Section title ---------- */
.sec-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.01em;
  margin-bottom: clamp(36px, 5vw, 72px);
  text-wrap: balance;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--paper);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__fallback {
  position: absolute;
  inset: 0;
  background: url("../assets/studio.jpg") center / cover no-repeat;
  opacity: 0;
  filter: grayscale(0.6) contrast(1.02);
}
.hero.no-webgl .hero__fallback { opacity: 1; }
.hero.no-webgl #hero-canvas { display: none; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(242,238,227,0.55) 0%, rgba(242,238,227,0.08) 40%, rgba(242,238,227,0.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 3;
  padding: clamp(120px, 16vh, 200px) var(--pad) clamp(28px, 4vw, 48px);
  display: grid;
  gap: clamp(28px, 4.5vw, 56px);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 11.5vw, 176px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.hero__line { display: block; overflow: hidden; }
.hero__line > span { display: inline-block; will-change: transform; }
.hero__theatre-word {
  text-transform: none;
  font-size: 0.98em;
  padding-right: 0.08em;
}
.hero__accent { color: var(--accent); }
.hero__meta {
  display: grid;
  grid-template-columns: minmax(0, 46ch);
  gap: clamp(20px, 3vw, 48px);
  align-items: end;
  border-top: 1px solid var(--hairline);
  padding-top: clamp(18px, 2.5vw, 28px);
}
.hero__lead {
  font-size: clamp(15px, 1.9vw, 20px);
  line-height: 1.5;
  max-width: 46ch;
}
.hero__scroll {
  position: absolute;
  bottom: clamp(28px, 4vw, 48px);
  right: var(--pad);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(var(--accent), transparent);
  animation: scroll-hint 1.8s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scroll-hint { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 860px) {
  .hero__scroll { display: none; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(12px, 1.8vw, 20px) 0;
  background: var(--paper);
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(16px, 2.6vw, 30px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  will-change: transform;
}

/* ---------- Manifesto (dark band) ---------- */
.manifesto {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 13vw, 190px) 0;
}
.manifesto__text {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3.9vw, 56px);
  line-height: 1.22;
  letter-spacing: 0;
  max-width: 46ch;
  text-wrap: balance;
}
.manifesto__text .w { display: inline-block; overflow: hidden; vertical-align: top; }
.manifesto__text .w > span { display: inline-block; }

/* ---------- Essence ---------- */
.essence { padding: clamp(72px, 10vw, 150px) 0; }
.essence__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 56px);
}
.essence__card {
  border-top: 2px solid var(--accent);
  padding-top: clamp(18px, 2.4vw, 28px);
  display: grid;
  gap: 14px;
  align-content: start;
}
.essence__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.essence__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(21px, 2.6vw, 32px);
  line-height: 1.1;
}
.essence__text {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.55;
  color: var(--ink-dim);
}
@media (max-width: 900px) { .essence__grid { grid-template-columns: 1fr; } }

/* ---------- Show (horizontal acts) ---------- */
.show {
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
}
.show__pin {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(56px, 8vw, 96px) 0;
  overflow: hidden;
}
.show__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 22ch;
  text-wrap: balance;
  margin-bottom: clamp(18px, 2.4vw, 28px);
}
.show__format {
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 56ch;
}
.show__track {
  display: flex;
  gap: clamp(20px, 2.6vw, 40px);
  padding: 0 var(--pad);
  width: max-content;
  will-change: transform;
}
.act {
  width: min(64vw, 880px);
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(18px, 2.4vw, 36px);
  align-items: end;
  border-top: 1px solid var(--hairline);
  padding-top: clamp(18px, 2.4vw, 30px);
}
.act__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--paper-3);
}
.act__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
  transform: scale(1.06);
  transition: transform 1.2s var(--ease);
}
.act:hover .act__media img { transform: scale(1.0); }
.act__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}
.act__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.02;
  margin: 8px 0 12px;
}
.act__title.serif-it {
  font-size: clamp(30px, 3.6vw, 50px);
  padding-right: 0.1em;
}
.act__text {
  font-size: clamp(13px, 1.45vw, 16px);
  line-height: 1.5;
  color: var(--ink-dim);
}
@media (max-width: 900px) {
  .show__pin { min-height: 0; }
  .show__track { flex-direction: column; width: auto; }
  .act { width: auto; grid-template-columns: 1fr; align-items: start; }
}

/* ---------- Cast ---------- */
.cast {
  padding: clamp(72px, 10vw, 150px) 0;
  border-top: 1px solid var(--hairline);
}
.cast__lead {
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 58ch;
  margin-top: calc(clamp(36px, 5vw, 72px) * -0.55);
  margin-bottom: clamp(24px, 3.2vw, 40px);
}
.cast__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 36px);
  justify-items: center;
}
.cast__card { display: grid; gap: 12px; align-content: start; width: 100%; max-width: 330px; }
.cast__photo {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--paper-3);
  transform-style: preserve-3d;
  will-change: transform;
}
.cast__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  filter: grayscale(0.85) contrast(1.03);
  transform: scale(1.02);
  transition: filter 0.7s var(--ease), transform 0.9s var(--ease);
}
.cast__card:hover .cast__photo img {
  filter: grayscale(0) contrast(1);
  transform: scale(1);
}
.cast__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
}
.cast__bio {
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.5;
  color: var(--ink-dim);
}
@media (max-width: 900px) { .cast__grid { grid-template-columns: 1fr; } .cast__card { max-width: 380px; } }

/* ---------- Tech ---------- */
.tech { padding: clamp(72px, 10vw, 150px) 0; }
.tech__row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(14px, 2.4vw, 40px);
  align-items: baseline;
  padding: clamp(22px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--hairline);
  transition: padding-left 0.45s var(--ease), border-color 0.45s;
  position: relative;
}
.tech__row::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 0;
  background: var(--accent);
  transition: height 0.45s var(--ease);
}
.tech__row:hover { padding-left: clamp(10px, 1.6vw, 24px); border-bottom-color: rgba(61, 52, 232, 0.45); }
.tech__row:hover::before { height: 100%; }
.tech__idx {
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.4vw, 14px);
  color: var(--accent);
  letter-spacing: 0.1em;
}
.tech__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.9vw, 38px);
  line-height: 1.06;
}
.tech__desc {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.55;
  color: var(--ink-dim);
}
@media (max-width: 820px) {
  .tech__row { grid-template-columns: 40px 1fr; }
  .tech__desc { grid-column: 2; }
}

/* ---------- Science ---------- */
.science {
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(72px, 10vw, 150px) 0;
}
.science__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.science__lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(21px, 3vw, 36px);
  line-height: 1.15;
  margin-bottom: clamp(20px, 2.6vw, 32px);
  text-wrap: balance;
}
.science__text p:not(.science__lead) {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.6;
  color: var(--ink-dim);
  margin-bottom: 1em;
}
.science__text em { color: var(--ink); font-style: normal; border-bottom: 1px solid var(--accent); }
.science__ref {
  border: 1px solid var(--hairline);
  padding: clamp(22px, 3vw, 36px);
  display: grid;
  gap: 12px;
  position: relative;
  background: var(--paper);
}
.science__ref::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 34px; height: 34px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}
.science__ref-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}
.science__ref-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.25;
}
.science__ref-meta {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.3vw, 13px);
  color: var(--ink-dim);
  line-height: 1.5;
}
.science__ref-note {
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.55;
  color: var(--ink-dim);
  border-top: 1px solid var(--hairline);
  padding-top: 12px;
}
@media (max-width: 900px) { .science__grid { grid-template-columns: 1fr; } }

/* ---------- Impact ---------- */
.impact { padding: clamp(72px, 10vw, 150px) 0; }
.impact__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.01em;
  max-width: 20ch;
  margin-bottom: clamp(36px, 5vw, 72px);
  text-wrap: balance;
}
.impact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.impact__item {
  background: var(--paper);
  padding: clamp(22px, 3vw, 40px);
  display: grid;
  gap: 12px;
  align-content: start;
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}
.impact__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(61, 52, 232, 0.12), transparent 65%);
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}
.impact__item:hover::after { opacity: 1; }
.impact__item:hover { background: var(--paper-2); }
.impact__item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.9vw, 23px);
  line-height: 1.2;
}
.impact__item h3::before {
  content: "";
  display: block;
  width: 26px; height: 2px;
  background: var(--accent);
  margin-bottom: 14px;
}
.impact__item p {
  font-size: clamp(14px, 1.55vw, 16px);
  line-height: 1.55;
  color: var(--ink-dim);
}
@media (max-width: 1024px) { .impact__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .impact__grid { grid-template-columns: 1fr; } }

/* ---------- Roadmap ---------- */
.roadmap {
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
  padding: clamp(72px, 10vw, 150px) 0;
}
.roadmap__list { display: grid; }
.roadmap__stage {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(14px, 2.4vw, 40px);
  align-items: baseline;
  padding: clamp(24px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--hairline);
}
.roadmap__stage:first-child { border-top: 1px solid var(--hairline); }
.roadmap__num {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.3vw, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.roadmap__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.8vw, 36px);
  line-height: 1.08;
}
.roadmap__desc {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.55;
  color: var(--ink-dim);
}
@media (max-width: 820px) {
  .roadmap__stage { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- Team ---------- */
.team { padding: clamp(72px, 10vw, 150px) 0; }
.team__leaders { margin-bottom: clamp(28px, 4vw, 48px); }
.team__studios { margin-bottom: clamp(28px, 4vw, 48px); }
.team__person {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: clamp(16px, 2.2vw, 24px) 0;
  border-bottom: 1px solid var(--hairline);
}
.team__person:first-child { border-top: 1px solid var(--hairline); }
.team__role {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.2vw, 12px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.team__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(16px, 2vw, 24px);
  text-align: right;
}
.team__skills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 40px;
  border-top: 1px solid var(--hairline);
  padding-top: clamp(24px, 3vw, 36px);
  margin-bottom: clamp(40px, 5vw, 72px);
}
.team__skills li {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.45;
  color: var(--ink-dim);
  padding-left: 18px;
  position: relative;
}
.team__skills li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.team__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 40px);
  border-top: 1px solid var(--hairline);
  padding-top: clamp(28px, 3.5vw, 44px);
}
.stat { display: grid; gap: 6px; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 84px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: clamp(12px, 1.4vw, 15px);
  color: var(--ink-dim);
}
@media (max-width: 900px) {
  .team__skills { grid-template-columns: 1fr; }
  .team__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Partnership ---------- */
.partnership {
  background: var(--accent);
  color: var(--paper);
  padding: clamp(80px, 11vw, 160px) 0;
}
.partnership__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 22ch;
  text-wrap: balance;
  margin-bottom: clamp(36px, 5vw, 72px);
}
.partnership__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  margin-bottom: clamp(40px, 5vw, 72px);
}
.partnership__col-title {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.3vw, 13px);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--paper);
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.partnership__list li {
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.4;
  padding: 10px 0 10px 22px;
  position: relative;
  font-weight: 500;
}
.partnership__list li::before {
  content: "—";
  position: absolute;
  left: 0;
}
.partnership__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 2px solid var(--paper);
  padding-top: clamp(24px, 3vw, 36px);
}
.partnership__note {
  font-size: clamp(14px, 1.6vw, 17px);
  max-width: 40ch;
  font-weight: 500;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.5vw, 16px);
  letter-spacing: 0.08em;
  padding: clamp(16px, 2vw, 22px) clamp(22px, 2.8vw, 34px);
  border-radius: 100px;
  transition: transform 0.35s var(--ease), background 0.35s;
}
.btn:hover { transform: scale(1.04); background: #000; }
.btn__arrow { color: var(--paper); }
@media (max-width: 820px) { .partnership__cols { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer {
  padding: clamp(28px, 4vw, 48px) 0;
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.15vw, 12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: space-between;
}

/* ---------- Serif italic overrides (must win over section styles) ---------- */
.serif-it,
.sec-title.serif-it,
.show__title.serif-it,
.science__lead.serif-it,
.act__title.serif-it {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-weight: 500;
}

/* ---------- Reveal states ---------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(36px);
}
html.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

/* ---------- Marquee animation ---------- */
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain, .nav__logo-mark, .hero__scroll-line { animation: none; }
  html.js [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none !important; }
}
