/* Residencia — shared scroll-experience framework */
html { scroll-behavior: auto; }
body { background: var(--noturno-900); color: var(--paper-100); overflow-x: hidden; }

/* ---------- fixed chrome ---------- */
.xp-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px 22px;
  transition: color 300ms, background 300ms;
  background: linear-gradient(180deg, rgba(0,10,16,.55), rgba(0,10,16,.22) 60%, transparent);
  pointer-events: none;
}
.xp-header > * { pointer-events: auto; }
body.on-light .xp-header { background: linear-gradient(180deg, rgba(237,237,237,.85), rgba(237,237,237,.4) 60%, transparent); }
.brand-row { display: flex; align-items: center; gap: 12px; }
.unit-chip {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 10px; border: 1px solid currentColor; border-radius: 4px;
  color: var(--ch, var(--vulcanico-400)); white-space: nowrap;
}
body.on-light .unit-chip { filter: brightness(.75); }
.xp-header .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.xp-header .brand img { width: 34px; height: 34px; transition: filter 300ms; }
.xp-header .brand .name { color: #fff; font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; transition: color 300ms; }
.xp-header .brand .name em { font-style: normal; color: var(--vulcanico-400); }
.xp-header .menu { display: flex; gap: 4px; }
.xp-header .menu a {
  color: rgba(255,255,255,.75); text-decoration: none; font-size: 13px; font-weight: 600;
  padding: 8px 12px; border-radius: 6px; transition: color 300ms, background 200ms;
}
.xp-header .menu a:hover { color: #fff; background: rgba(255,255,255,.08); }
.xp-header .menu a.on { box-shadow: inset 0 -2px 0 var(--vulcanico-500); border-radius: 6px 6px 0 0; color: #fff; }
.xp-header .menu a.cta { background: var(--vulcanico-500); color: var(--noturno-900); }
.xp-header .menu a.cta:hover { background: var(--vulcanico-400); color: var(--noturno-900); }
.lang-toggle {
  display: inline-flex !important; align-items: center; justify-content: center;
  align-self: center; line-height: 1 !important;
  font-family: var(--font-mono) !important; font-size: 10px !important; letter-spacing: .08em;
  text-transform: uppercase; white-space: nowrap;
  border: 1px solid rgba(255,255,255,.4); border-radius: 99px; padding: 6px 10px !important;
  margin-left: 6px; cursor: pointer;
}
body.on-light .lang-toggle { border-color: rgba(0,10,16,.4); }


/* ---------- ticker bands (giant outlined marquee) ---------- */
.ticker { overflow: hidden; padding: clamp(14px, 2.4vh, 26px) 0; position: relative; z-index: 4; user-select: none; }
.ticker .tk {
  display: flex; gap: clamp(28px, 4vw, 60px); width: max-content;
  animation: mq 26s linear infinite;
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(1.7rem, 4.6vw, 3.4rem); line-height: 1.1; white-space: nowrap;
}
.ticker.fill { background: var(--ch, var(--vulcanico-500)); }
.ticker.fill .tk span { color: #0c0c10; }
.ticker .tk .dot { color: var(--ch, var(--vulcanico-500)); -webkit-text-stroke: 0 !important; }
.ticker.fill .tk .dot { color: rgba(0,0,0,.4); }

/* ---------- brand marquee (Whalar c-brandmarquee pattern) ---------- */
.marquee.big { border: 0; padding: 10px 0; }
.marquee.big .track { font-size: clamp(1.5rem, 3.6vw, 2.6rem); font-weight: 700; gap: clamp(34px, 5vw, 70px); color: rgba(255,255,255,.8); animation-duration: 34s; }
.marquee.big .track span:nth-child(4n) { color: var(--ch, var(--vulcanico-400)); }
.marquee.rev .track { animation-direction: reverse; }
.marquee.dim .track { color: rgba(255,255,255,.35); }
.marquee.on-light-band { border-color: rgba(0,0,0,.15); }
.marquee.on-light-band .track { color: rgba(0,10,16,.6); }
.marquee.on-light-band .track span:nth-child(4n) { color: var(--ch, #178E8E); }

.menu-toggle { display: none; background: none; border: 0; width: 44px; height: 40px; cursor: pointer; padding: 9px 10px; }
.menu-toggle i { display: block; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: transform 200ms, opacity 200ms; }
body.on-light .menu-toggle i { background: #0A0A0A; }
body.nav-open .menu-toggle i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-toggle i:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 760px) {
  .xp-header { padding: 10px 14px 14px; align-items: center; }
  .xp-header .brand img { display: none; }
  .xp-header .brand .name { display: block; font-size: 1.05rem; }
  .unit-chip { font-size: 9px; padding: 4px 7px; }
  .menu-toggle { display: inline-block; }
  .xp-header .menu {
    display: none; position: fixed; top: 62px; left: 12px; right: 12px;
    flex-direction: column; align-items: stretch; gap: 4px; max-width: none;
    background: rgba(6, 12, 18, 0.97); border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px; padding: 12px; box-shadow: 0 22px 60px rgba(0,0,0,.55);
  }
  body.nav-open .xp-header .menu { display: flex; }
  .xp-header .menu a { font-size: 15px; padding: 13px 15px; border-radius: 10px; color: rgba(255,255,255,.85); white-space: nowrap; }
  .xp-header .menu a.cta { text-align: center; margin-top: 6px; }
  body.on-light .xp-header .menu a { color: rgba(255,255,255,.85); }
  body.on-light .xp-header .menu a.cta { color: inherit; }
}
.vmodal .box.portrait { width: auto; height: min(88vh, 860px); aspect-ratio: 9/16; max-width: 94vw; }
@media (max-width: 760px) { .vmodal { padding: 3vh 3vw; } .vmodal .box.portrait { height: min(80vh, 720px); } }

/* header over light scenes */
body.on-light .xp-header .brand .name { color: var(--noturno-900); }
body.on-light .xp-header .brand img { filter: invert(1) brightness(0.1); }
body.on-light .xp-header .menu a { color: rgba(0,10,16,.65); }
body.on-light .xp-header .menu a:hover { color: var(--noturno-900); background: rgba(0,10,16,.07); }
body.on-light .xp-header .menu a.on { color: var(--noturno-900); }
body.on-light .xp-header .menu a.cta { color: var(--noturno-900); }

/* progress rail */
.rail { position: fixed; right: 22px; top: 50%; transform: translateY(-50%); z-index: 60; display: grid; gap: 12px; }
.rail a { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.28); display: block; transition: all 220ms; }
.rail a.on { background: var(--vulcanico-500); transform: scale(1.5); }
.rail a:hover { background: #fff; }
body.on-light .rail a { background: rgba(0,10,16,.25); }
body.on-light .rail a.on { background: var(--vulcanico-600); }
@media (max-width: 760px) { .rail { display: none; } }

/* ---------- scenes ---------- */
.scene { position: relative; }
.scene .pin {
  position: sticky; top: 0; height: 100svh; overflow: hidden; display: grid;
  border-radius: clamp(22px, 3.5vw, 44px) clamp(22px, 3.5vw, 44px) 0 0;
  /* curtain exit: the outgoing scene sinks and shrinks while the next slides over it */
  transform: translateY(calc(max(var(--p, 0) - 0.86, 0) * 42svh)) scale(calc(1 - max(var(--p, 0) - 0.86, 0) * 0.55));
  will-change: transform;
}
.scene .bgv, .scene .bgi {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(calc(1.12 - var(--p, 0) * 0.12));
  will-change: transform;
}
.scene .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,22,33,.55), rgba(0,22,33,.25) 45%, rgba(0,22,33,.75)); }
.scene[data-light] .veil { background: linear-gradient(180deg, rgba(237,237,237,.85), rgba(237,237,237,.55) 45%, rgba(237,237,237,.9)); }
.scene .fg { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(86px, 13vh, 140px) clamp(24px, 7vw, 110px) clamp(40px, 7vh, 70px); max-width: 1250px; }

/* staged reveals */
.st { opacity: 0; transform: translateY(34px); transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1); }
.st.on { opacity: 1; transform: none; }
.st.out { opacity: 0; transform: translateY(-30px); pointer-events: none; }

/* stacked phases inside one pinned scene: content swaps instead of accumulating */
.phases { display: grid; }
.phases > .phase { grid-area: 1 / 1; }

/* type */
.k { font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--vulcanico-300); display: block; margin-bottom: 22px; }
.k .w { color: rgba(255,255,255,.55); }
.scene[data-light] .k .w { color: rgba(0,10,16,.45); }
.xl { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.03em; line-height: 1.02; font-size: clamp(2.3rem, 6.5vw, 5.2rem); max-width: 16ch; text-wrap: balance; margin: 0; }
.xl em { font-style: normal; color: var(--vulcanico-500); }
.lg { font-size: clamp(1.05rem, 1.9vw, 1.4rem); color: rgba(255,255,255,.78); max-width: 46ch; line-height: 1.55; margin: 26px 0 0; }
.scene[data-light] .xl { color: #0A0A0A; }
.scene[data-light] .lg { color: rgba(0,10,16,.65); }

/* scroll cue */
.cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .3em; color: rgba(255,255,255,.6); text-transform: uppercase; }
.cue::after { content: ""; display: block; width: 1px; height: 42px; margin: 10px auto 0;
  background: linear-gradient(var(--vulcanico-500), transparent); animation: cuedrop 1.6s infinite; }
@keyframes cuedrop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* chapter furniture */
.chapter .num {
  position: absolute; right: clamp(20px, 6vw, 90px); bottom: 8vh; z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(6rem, 22vw, 17rem);
  line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.16); user-select: none;
}
.scene[data-light] .num { -webkit-text-stroke-color: rgba(0,0,0,.14); }
.go {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 36px; text-decoration: none;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: #fff; border: 1px solid rgba(255,255,255,.35); padding: 14px 24px; border-radius: 99px;
  transition: all 200ms; width: fit-content;
}
.go b { color: var(--ch, var(--vulcanico-500)); transition: transform 200ms; }
.go:hover { background: var(--ch, var(--vulcanico-500)); border-color: var(--ch, var(--vulcanico-500)); color: #0c0c10; }
.go:hover b { color: #0c0c10; transform: translateX(6px); }
.scene[data-light] .go { color: #0A0A0A; border-color: rgba(0,0,0,.4); }
.svc-line { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 26px; max-width: 70ch; line-height: 2.1; }
.scene[data-light] .svc-line { color: rgba(0,10,16,.5); }

/* glitch strip (GR8) */
.glitchbar { position: absolute; left: 0; right: 0; height: 8px; z-index: 3; background: url('img/ppt_media_image3.gif'); background-size: 420px; image-rendering: pixelated; }

/* ---------- sequence (pinned crossfade slides) ---------- */
.seq { position: relative; margin-top: 40px; min-height: clamp(300px, 46vh, 460px); }
.seq .sq {
  position: absolute; inset: 0; opacity: 0; transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  display: grid; grid-template-columns: minmax(280px, 46%) 1fr; gap: clamp(20px, 4vw, 54px); align-items: center;
  pointer-events: none;
}
.seq .sq.cur { opacity: 1; transform: none; pointer-events: auto; }
@media (max-width: 860px) { .seq .sq { grid-template-columns: 1fr; align-content: start; gap: 18px; } }
.seq .sq .shot { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); aspect-ratio: 16/10; position: relative; cursor: pointer; }
.seq .sq .shot img { width: 100%; height: 100%; object-fit: cover; }
.seq .sq .shot .play { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: var(--ch, var(--vulcanico-500)); color: #0c0c10; display: grid; place-items: center; font-size: 14px; }
.seq .sq h3 { font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 2rem); letter-spacing: -0.02em; margin: 0 0 12px; color: #fff; }
.seq .sq p { color: rgba(255,255,255,.7); margin: 0; max-width: 46ch; }
.seq .sq .tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ch, var(--vulcanico-400)); display: block; margin-bottom: 10px; }
.seq-idx { position: absolute; bottom: -10px; left: 0; z-index: 3; font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; color: rgba(255,255,255,.5); }
.scene[data-light] .seq .sq h3 { color: #0A0A0A; }
.scene[data-light] .seq .sq p { color: rgba(0,10,16,.65); }

/* ---------- pill cascade ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; max-width: 760px; }
.pills span {
  border: 1px solid rgba(255,255,255,.3); border-radius: 99px; padding: 10px 20px; font-size: .92rem;
  color: #fff; opacity: 0; transform: translateY(18px) scale(.96);
  transition: opacity 500ms cubic-bezier(.2,.7,.2,1), transform 500ms cubic-bezier(.2,.7,.2,1);
}
.st.on ~ .pills span, .pills.on span { opacity: 1; transform: none; }
.pills span:nth-child(2) { transition-delay: 60ms; } .pills span:nth-child(3) { transition-delay: 120ms; }
.pills span:nth-child(4) { transition-delay: 180ms; } .pills span:nth-child(5) { transition-delay: 240ms; }
.pills span:nth-child(6) { transition-delay: 300ms; } .pills span:nth-child(7) { transition-delay: 360ms; }
.pills span:nth-child(8) { transition-delay: 420ms; } .pills span:nth-child(9) { transition-delay: 480ms; }
.pills span:nth-child(10) { transition-delay: 540ms; } .pills span:nth-child(11) { transition-delay: 600ms; }
.scene[data-light] .pills span { color: #0A0A0A; border-color: rgba(0,0,0,.35); }

/* ---------- node chain (Agency model) ---------- */
.chain-xp { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 44px; }
.chain-xp .cnode {
  width: clamp(96px, 12vw, 150px); aspect-ratio: 1; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(.75rem, 1.2vw, 1rem); letter-spacing: .06em;
  margin-left: -22px; background: rgba(0,22,33,.5); backdrop-filter: blur(4px);
  opacity: 0; transform: scale(.6); transition: opacity 500ms, transform 500ms cubic-bezier(.2,.9,.3,1.3);
}
.chain-xp .cnode:first-child { margin-left: 0; }
.chain-xp .cnode.smile { background: var(--vulcanico-500); border-color: var(--vulcanico-500); color: var(--noturno-900); font-size: 2rem; }
.chain-xp .cnode.on { opacity: 1; transform: none; }
.chain-xp .arrow { color: var(--vulcanico-400); font-size: 1.6rem; opacity: 0; transition: opacity 400ms; }
.chain-xp .arrow.on { opacity: 1; }
.sat-pills { display: grid; gap: 12px; margin-top: 30px; }
.sat-pills .sat {
  border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: 12px 22px; width: fit-content;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.85);
  opacity: 0; transform: translateX(-24px); transition: all 500ms cubic-bezier(.2,.7,.2,1);
}
.sat-pills .sat.on { opacity: 1; transform: none; }
.sat-pills .sat b { color: var(--vulcanico-400); }

/* ---------- spectrum fill (Producción) ---------- */
.spec-xp { margin-top: 44px; display: grid; gap: 16px; max-width: 780px; }
.spec-xp .row { display: grid; grid-template-columns: 190px 1fr; gap: 16px; align-items: center; }
@media (max-width: 640px) { .spec-xp .row { grid-template-columns: 1fr; gap: 6px; } }
.spec-xp .lbl { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.spec-xp .bar { height: 6px; border-radius: 3px; background: rgba(255,255,255,.12); overflow: hidden; }
.spec-xp .bar i { display: block; height: 100%; width: 0; background: var(--ch, var(--vulcanico-500)); transition: width 900ms cubic-bezier(.2,.7,.2,1); }
.spec-xp.on .bar i { width: var(--w, 80%); }

/* ---------- big counter row ---------- */
.stats-xp { display: flex; flex-wrap: wrap; gap: clamp(28px, 6vw, 90px); margin-top: 46px; }
.stats-xp .s .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: -0.03em; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.stats-xp .s .n i { font-style: normal; color: var(--ch, var(--vulcanico-500)); }
.stats-xp .s .l { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 10px; }
.scene[data-light] .stats-xp .s .n { color: #0A0A0A; }
.scene[data-light] .stats-xp .s .l { color: rgba(0,10,16,.5); }

/* ---------- horizontal strip ---------- */
.work-scene .pin { display: block; }
.work-head { position: absolute; top: 10vh; left: clamp(24px, 7vw, 110px); z-index: 3; }
.strip {
  position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-38%);
  display: flex; gap: 22px; padding: 0 clamp(24px, 7vw, 110px);
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.strip::-webkit-scrollbar { display: none; }
.strip .work-card { flex: 0 0 clamp(300px, 38vw, 520px); aspect-ratio: 16/10; border: 1px solid rgba(255,255,255,.14); }
.strip .work-card .play { background: var(--ch, var(--vulcanico-500)); }

/* ---------- creator cards (horizontal strips) ---------- */
.strip .ccard {
  flex: 0 0 clamp(200px, 22vw, 260px); display: flex; flex-direction: column;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.16);
  border-bottom: 4px solid var(--ch, var(--vulcanico-500)); border-radius: 12px;
  overflow: hidden; text-decoration: none; color: #fff;
  transition: transform 250ms, border-color 250ms;
}
.strip .ccard:nth-child(2n) { border-bottom-color: #F4C63D; }
.strip .ccard:hover { transform: translateY(-8px); border-color: var(--ch, var(--vulcanico-500)); }
.ccard .face { aspect-ratio: 1; position: relative; background: linear-gradient(135deg, #3A2A50, #241631); }
.ccard .face img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ccard .face i {
  position: absolute; inset: 0; display: grid; place-items: center; font-style: normal;
  font-family: var(--font-display); font-weight: 700; font-size: 3.4rem; color: rgba(255,255,255,.35);
}
.ccard .face img ~ i { z-index: 0; } .ccard .face img { z-index: 1; }
.ccard .cbody { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; }
.ccard .cbody b { font-size: 1.02rem; font-weight: 700; }
.ccard .cbody .cstat { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .05em; color: #4ED6D6; line-height: 1.7; }
.ccard .cbody .ccat { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.ccard .cbody .cgo { margin-top: auto; padding-top: 8px; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ch, var(--vulcanico-400)); }

/* ---------- IP showcase cards (wide 16:9) ---------- */
.strip .ipcard {
  flex: 0 0 clamp(280px, 34vw, 460px); border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.16); background: #241631; position: relative;
  transition: transform 250ms, border-color 250ms;
}
.strip .ipcard:hover { transform: translateY(-8px); border-color: var(--ch, var(--vulcanico-500)); }
.ipcard img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.ipcard .ipmeta { padding: 12px 16px 14px; }
.ipcard .ipmeta b { font-size: 1rem; display: block; color: #fff; }
.ipcard .ipmeta span { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* ---------- full site footer (shared on every page) ---------- */
.footer-full { background: #0A1218; border-top: 1px solid rgba(255,255,255,.12); padding: 56px 0 34px; position: relative; z-index: 5; color: rgba(255,255,255,.75); }
.footer-full .wrapf { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.footer-full .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px 28px; }
@media (max-width: 900px) { .footer-full .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-full .cols { grid-template-columns: 1fr; } }
.footer-full .fbrand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.footer-full .fbrand img { width: 36px; height: 36px; }
.footer-full .fbrand .name { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; }
.footer-full .tag { margin-top: 14px; font-size: .88rem; color: rgba(255,255,255,.55); max-width: 34ch; line-height: 1.6; }
.footer-full h4 { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--vulcanico-400); margin: 0 0 14px; }
.footer-full ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-full ul a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .9rem; }
.footer-full ul a:hover { color: #fff; }
.footer-full .fmeta { margin-top: 44px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.footer-full .fmeta a { color: inherit; text-decoration: none; }
.footer-full .fmeta a:hover { color: #fff; }

/* ---------- marquee / footer / close ---------- */
.marquee { overflow: hidden; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); padding: 22px 0; }
.marquee .track { display: flex; gap: 48px; white-space: nowrap; width: max-content; animation: mq 40s linear infinite; font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: rgba(255,255,255,.55); }
.marquee .track span:nth-child(4n) { color: var(--vulcanico-400); }
@keyframes mq { to { transform: translateX(-50%); } }

.close-scene .fg { align-items: flex-start; }
.mailto {
  display: inline-block; margin-top: 34px; background: var(--ch, var(--vulcanico-500)); color: #0c0c10;
  font-weight: 700; font-family: var(--font-display); font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  text-decoration: none; padding: 18px 34px; border-radius: 99px;
}
.mailto:hover { filter: brightness(1.12); }
.xp-footer { position: relative; z-index: 2; padding: 26px clamp(24px, 7vw, 110px) 34px; display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.xp-footer a { color: inherit; text-decoration: none; }
.xp-footer a:hover { color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .st, .pills span, .chain-xp .cnode, .chain-xp .arrow, .sat-pills .sat { opacity: 1; transform: none; transition: none; }
  .seq .sq { position: relative; opacity: 1; transform: none; }
  .scene .bgv { transform: none; }
  .marquee .track { animation: none; }
  .cue::after { animation: none; }
}
