/* =========================================================================
   A Coruña NSC 2026 — Media Team application hub
   Light editorial. Vanilla, mobile-first, no build.
   Type: Instrument Serif (display) + Hanken Grotesk (text).
   ========================================================================= */

:root {
  --paper:     #f3efe6;   /* warm paper background */
  --paper-2:   #ece6d8;   /* recessed band         */
  --card:      #ffffff;   /* elevated surfaces      */
  --ink:       #17140e;   /* near-black, warm       */
  --ink-soft:  #46412f;
  --muted:     #837b6b;
  --muted-dim: #aaa191;
  --line:      rgba(23, 20, 14, 0.14);
  --line-2:    rgba(23, 20, 14, 0.26);

  --clay:      #bb5836;   /* terracotta — Q1 / primary    */
  --pine:      #2f6b5b;   /* deep green — Q2 / interactive */
  --slate:     #3a4654;   /* slate      — essays          */

  --accent:    var(--clay);

  --maxw:      1180px;
  --gutter:    clamp(20px, 5vw, 64px);

  --serif: "Instrument Serif", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow: 0 1px 2px rgba(23,20,14,0.04), 0 12px 40px -16px rgba(23,20,14,0.22);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

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

::selection { background: var(--clay); color: #fff; }

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

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

strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.86em;
  color: var(--pine);
}

/* =========================================================================
   PAPER GRAIN  (dark speckle on light)
   ========================================================================= */
.grain {
  position: fixed;
  inset: -120%;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.7s steps(5) infinite;
  will-change: transform;
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2%, 1%); }
  50%  { transform: translate(1%, -2%); }
  75%  { transform: translate(-1%, 2%); }
  100% { transform: translate(2%, -1%); }
}

/* =========================================================================
   CURTAIN  (load reveal)
   ========================================================================= */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 8800;
  background: var(--paper);
  display: grid;
  place-items: center;
  transition: opacity 0.7s ease 0.55s, visibility 0s linear 1.3s;
}
.curtain__mark {
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--clay);
  animation: spinmark 1.1s var(--ease) both;
}
@keyframes spinmark {
  0%   { opacity: 0; transform: rotate(-120deg) scale(0.6); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: rotate(0) scale(1); }
}
.ready .curtain { opacity: 0; visibility: hidden; }

/* =========================================================================
   SCROLL-PROGRESS THREAD
   ========================================================================= */
.thread {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 8000;
  background: transparent;
  pointer-events: none;
}
.thread__fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--pine), var(--clay));
}

/* =========================================================================
   CUSTOM CURSOR
   ========================================================================= */
.cursor { display: none; }
@media (pointer: fine) {
  .has-cursor .cursor {
    display: block;
    position: fixed;
    top: 0; left: 0;
    z-index: 9500;
    pointer-events: none;
  }
  .has-cursor * { cursor: none; }
  .cursor__dot, .cursor__ring {
    position: absolute;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cursor__dot  { width: 5px; height: 5px; background: var(--clay); }
  .cursor__ring {
    width: 30px; height: 30px;
    border: 1px solid var(--line-2);
    transition: width 0.28s var(--ease), height 0.28s var(--ease),
                border-color 0.28s, background 0.28s;
  }
  .cursor.is-hot .cursor__ring {
    width: 54px; height: 54px;
    border-color: var(--clay);
    background: rgba(187, 88, 54, 0.06);
  }
}

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 7000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
}
.nav.is-stuck {
  background: rgba(243, 239, 230, 0.78);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line);
  padding-top: 12px; padding-bottom: 12px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__mark {
  color: var(--clay);
  font-size: 1.05rem; line-height: 1;
  transition: transform 0.6s var(--ease);
}
.nav__brand:hover .nav__mark { transform: rotate(180deg); }
.nav__name {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}
.nav__links { display: flex; gap: clamp(10px, 1.8vw, 24px); }
.nav__links a {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--clay);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after { width: 100%; }
@media (max-width: 620px) {
  .nav__links a:not(:first-child):not(:last-child) { display: none; }
  .nav__name { font-size: 0.82rem; }
}

/* =========================================================================
   LAYOUT PRIMITIVES
   ========================================================================= */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 13vh, 168px) var(--gutter);
  position: relative;
}
.section__index {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 30px;
  font-weight: 500;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow__rule {
  width: 34px; height: 1px;
  background: var(--clay);
  transform-origin: left;
  animation: ruleGrow 1s var(--ease) 0.4s both;
}
@keyframes ruleGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.dot-sep { color: var(--muted-dim); margin: 0 2px; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15vh var(--gutter) 16vh;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 6%; right: -8%;
  width: 54vw; max-width: 680px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(187,88,54,0.10), transparent 64%);
  pointer-events: none;
  z-index: -1;
}
.hero__inner { max-width: 960px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.4rem, 12vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin: 26px 0 32px;
}
.hero__title .line { display: block; }
.hero__title .accent { font-style: italic; color: var(--clay); }
.hero__sub {
  font-size: clamp(1.02rem, 2.1vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 38ch;
  line-height: 1.5;
}
.hero__meta {
  margin-top: 30px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.scrollcue {
  position: absolute;
  left: var(--gutter); bottom: 5vh;
  display: flex; align-items: center; gap: 14px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.scrollcue__line {
  width: 56px; height: 1px;
  background: var(--line-2);
  position: relative; overflow: hidden;
}
.scrollcue__line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--clay);
  transform: translateX(-100%);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}
@media (max-height: 720px) { .scrollcue { display: none; } }

/* =========================================================================
   MARQUEE
   ========================================================================= */
.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  border-block: 1px solid var(--ink);
  padding: 14px 0;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 2rem);
  will-change: transform;
  animation: marquee 26s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__dot { color: var(--clay); font-size: 0.8em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================================
   INTRO
   ========================================================================= */
.intro__grid { max-width: 820px; }
.intro__lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}
.intro__body { font-size: 1.06rem; color: var(--ink-soft); max-width: 56ch; }

/* =========================================================================
   QUESTION SECTIONS
   ========================================================================= */
.question { border-top: 1px solid var(--line); }
.question[data-accent="video"]       { --accent: var(--clay); }
.question[data-accent="interactive"] { --accent: var(--pine); }
.question[data-accent="essay"]       { --accent: var(--slate); }

.question__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
  margin-bottom: clamp(36px, 6vw, 64px);
}
.question__num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.8;
  color: var(--accent);
}
.badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 13px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  color: var(--accent);
  margin-bottom: 20px;
}
.question__prompt {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 4.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 24ch;
}
.meta-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
}
.meta-chips li { font-size: 0.82rem; color: var(--ink-soft); }
.meta-chips__k {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  margin-right: 6px;
  font-weight: 600;
}

/* ---- Answer containers ---- */
.answer { margin-left: clamp(0px, 6vw, 112px); }
@media (max-width: 720px) { .answer { margin-left: 0; } }
.answer__note { margin-top: 14px; font-size: 0.82rem; color: var(--muted); }

/* ---- Video frame ---- */
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(187,88,54,0.10), transparent 60%),
    repeating-linear-gradient(45deg, #efe9db 0 16px, #e8e1d0 16px 32px);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-frame__bars { position: absolute; inset: 0; pointer-events: none; }
.video-frame__bars i { position: absolute; left: 0; right: 0; height: 8%; background: rgba(23,20,14,0.82); }
.video-frame__bars i:first-child { top: 0; }
.video-frame__bars i:last-child  { bottom: 0; }
.video-frame__play {
  width: 74px; height: 74px;
  border-radius: 50%;
  border: 1px solid var(--clay);
  background: rgba(255,255,255,0.7);
  color: var(--clay);
  display: grid; place-items: center;
  backdrop-filter: blur(2px);
  transition: background 0.3s ease, color 0.3s ease;
}
.video-frame__play svg { margin-left: 4px; }
.video-frame__play:hover { background: var(--clay); color: #fff; }
.video-frame__tag {
  position: absolute; bottom: 16px; left: 0; right: 0;
  text-align: center;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

/* ---- The Thread card ---- */
.thread-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
}
.thread-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 2px rgba(23,20,14,0.05), 0 28px 60px -22px rgba(47,107,91,0.4);
}
.thread-card__body { padding: clamp(24px, 4vw, 42px); }
.thread-card__title {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 14px;
}
.thread-card__desc { display: block; color: var(--ink-soft); max-width: 52ch; font-size: 1rem; }
.thread-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 26px;
  color: var(--pine);
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
}
.thread-card__cta svg { transition: transform 0.3s var(--ease); }
.thread-card:hover .thread-card__cta svg { transform: translateX(6px); }
.thread-card__frames { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); }
.thread-card__frames i {
  aspect-ratio: 3 / 2;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(47,107,91,0.12), transparent 65%),
    repeating-linear-gradient(45deg, #eef0ea 0 11px, #e6e9e1 11px 22px);
  position: relative;
}
.thread-card__frames i:last-child { border-right: none; }
.thread-card__frames i::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 7px; height: 7px; border-radius: 50%; background: var(--pine); opacity: 0.55;
}

/* ---- Prose answers ---- */
.answer--prose { max-width: 64ch; }
.prose { border-left: 2px solid var(--accent); padding: 4px 0 4px 28px; }
.prose p { font-size: 1.12rem; line-height: 1.7; margin-bottom: 16px; color: var(--ink-soft); }
.prose p:last-child { margin-bottom: 0; }
.placeholder { color: var(--muted); font-style: italic; }
.placeholder.dim { color: var(--muted-dim); font-size: 0.95rem; }

.wordmeter { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-left: 30px; }
.wordmeter__bar { flex: 1; max-width: 240px; height: 3px; background: var(--line); border-radius: 3px; overflow: hidden; }
.wordmeter__bar i { display: block; height: 100%; width: 0; background: var(--accent); transition: width 1s var(--ease); }
.wordmeter__count { font-size: 0.76rem; color: var(--muted); letter-spacing: 0.04em; }
.wordmeter__count b { color: var(--ink); font-weight: 600; }

/* ---- Note ---- */
.dirnote {
  margin: 34px 0 0 clamp(0px, 6vw, 112px);
  max-width: 56ch;
  padding: 22px 26px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}
@media (max-width: 720px) { .dirnote { margin-left: 0; } }
.dirnote__label { display: block; font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; font-weight: 600; }
.dirnote p { font-size: 0.98rem; color: var(--ink-soft); }

/* =========================================================================
   PORTFOLIO — Canva
   ========================================================================= */
.portfolio { border-top: 1px solid var(--line); }
.portfolio__head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 56px); }
.portfolio__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.portfolio__sub { font-size: 1.05rem; color: var(--ink-soft); max-width: 52ch; }

.canva { position: relative; }
.canva__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--card);
}
.canva__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.canva__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 24px;
  background:
    radial-gradient(circle at 50% 40%, rgba(187,88,54,0.08), transparent 60%),
    repeating-linear-gradient(45deg, #f1ebdd 0 18px, #eae3d3 18px 36px);
}
.canva__frame[data-canva="loaded"] .canva__placeholder { display: none; }
.canva__mark { font-size: 2.2rem; color: var(--clay); }
.canva__ph-title { font-family: var(--serif); font-size: 1.5rem; }
.canva__ph-note { font-size: 0.9rem; color: var(--muted); max-width: 42ch; }

/* =========================================================================
   BUTTON
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 28px;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 100px;
  font-size: 0.84rem; letter-spacing: 0.04em; font-weight: 600;
  transition: transform 0.3s var(--ease), background 0.3s ease;
  will-change: transform;
}
.btn:hover { background: var(--clay); }
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translate(2px, -2px); }

/* =========================================================================
   THANKS  (credits)
   ========================================================================= */
.thanks { border-top: 1px solid var(--line); }
.thanks__lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.thanks__sub { font-size: clamp(1rem, 2.4vw, 1.3rem); color: var(--ink-soft); margin-bottom: 50px; }
.credits { list-style: none; max-width: 820px; }
.credits li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.credits li:last-child { border-bottom: 1px solid var(--line); }
.credits__role { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.credits__line { height: 1px; background: var(--line); transform: scaleX(0); transform-origin: left; transition: transform 0.9s var(--ease-io); align-self: center; }
.credits li.is-in .credits__line { transform: scaleX(1); }
.credits__name { font-family: var(--serif); font-size: clamp(1.3rem, 3.4vw, 1.9rem); text-align: right; }
.credits__name.placeholder { font-size: 1rem; }
.thanks__sign { margin-top: 50px; font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--clay); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  border-top: 1px solid var(--line);
  background: var(--paper-2);
  padding: clamp(40px, 8vh, 80px) var(--gutter);
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.footer__inner { max-width: var(--maxw); margin: 0 auto; }
.footer__k { display: block; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.footer__deadline { font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--ink); }
.footer__deadline.is-past { color: var(--clay); }
.footer__meta { font-size: 0.78rem; letter-spacing: 0.04em; color: var(--muted); text-align: right; }

/* =========================================================================
   ANIMATION PRIMITIVES
   ========================================================================= */

/* word-split reveal (applied to .split) */
.split .word { display: inline-block; overflow: hidden; vertical-align: top; }
.split .word > span {
  display: inline-block;
  transform: translateY(110%) rotate(3deg);
  transition: transform 0.9s var(--ease-io);
}
.split.is-in .word > span { transform: none; }

/* fade-up reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease-io), transform 0.9s var(--ease-io); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* clip-wipe reveal (heavier blocks) */
[data-reveal-wipe] {
  opacity: 0;
  transform: translateY(30px);
  clip-path: inset(0 0 14% 0);
  transition: opacity 1s var(--ease-io), transform 1s var(--ease-io), clip-path 1s var(--ease-io);
}
[data-reveal-wipe].is-in { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }

/* stagger word delays — set via --i in JS */
.split .word { transition-delay: calc(var(--i, 0) * 45ms); }
.split .word > span { transition-delay: calc(var(--i, 0) * 45ms); }

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain, .eyebrow__rule, .scrollcue__line::after, .curtain__mark, .marquee__track { animation: none; }
  .curtain { display: none; }
  [data-reveal], [data-reveal-wipe] { opacity: 1; transform: none; clip-path: none; transition: none; }
  .split .word > span { transform: none; transition: none; }
  .credits__line { transform: scaleX(1); }
  * { scroll-behavior: auto !important; }
}
