/* ============================================================
   Portfolio — Emmanuel Nguyen
   Accueil only: the 4-panel horizontal stage, its tab rail,
   the HUD frame, the mission register and the audio logs.
   Loaded after site.css.
   ============================================================ */

/* ---------- 1. Stage ---------- */

/* 400vh of scroll drives 4 snapped panels inside a sticky viewport. */
.hscroll-wrap { position: relative; height: 400vh; }

.hstage {
  --rail-pad: 360px;
  position: sticky;
  top: 84px;
  height: calc(100vh - 84px);
  overflow: hidden;
}
.hstage.rail-collapsed { --rail-pad: 168px; }

.hviewport { position: absolute; inset: 0; overflow: hidden; }

.hscroll-track {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 400%;
  will-change: transform;
  transition: transform .7s cubic-bezier(.65, 0, .35, 1);
}

.panel {
  flex: 0 0 25%;
  min-width: 0;
  transition: padding .35s cubic-bezier(.65, 0, .35, 1);
}

@keyframes panelAppear {
  from { opacity: 0; transform: translateY(48px) scale(.98); filter: blur(3px); }
  60%  { opacity: 1; }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes panelLeave {
  from { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  60%  { opacity: 0; }
  to   { opacity: 0; transform: translateY(-56px) scale(.97); filter: blur(3px); }
}

.panel-appear { animation: panelAppear .6s cubic-bezier(.16, .8, .3, 1) .38s both; }
.panel-leave  { animation: panelLeave .38s cubic-bezier(.5, 0, .75, 0) both; }

/* ---------- 2. HUD frame ---------- */

.hud-frame { position: absolute; inset: 16px; pointer-events: none; transition: opacity .5s ease; }
.hud-frame span,
.hud-frame svg { position: absolute; }

/* Outer corner diagonals */
.hf-diag { width: 30px; height: 1px; background: rgba(255, 255, 255, .75); }
.hf-diag--tl { top: 10px; left: 4px; transform: rotate(45deg); transform-origin: left center; }
.hf-diag--tr { top: 10px; right: 4px; transform: rotate(-45deg); transform-origin: right center; }
.hf-diag--bl { bottom: 10px; left: 4px; transform: rotate(-45deg); transform-origin: left center; }
.hf-diag--br { bottom: 10px; right: 4px; transform: rotate(45deg); transform-origin: right center; }

/* Octagonal corners */
.hf-corner { width: 180px; height: 140px; }
.hf-corner--tl { top: 0; left: 0; }
.hf-corner--tr { top: 0; right: 0; transform: scaleX(-1); }
.hf-corner--bl { bottom: 0; left: 0; transform: scaleY(-1); }
.hf-corner--br { bottom: 0; right: 0; transform: scale(-1, -1); }

/* Connectors, with a gap left open at the centre */
.hf-link-h { height: 1px; background: rgba(255, 255, 255, .32); }
.hf-link-h--tl { top: 0; left: 180px; right: calc(50% + 130px); }
.hf-link-h--tr { top: 0; right: 180px; left: calc(50% + 130px); }
.hf-link-h--bl { bottom: 0; left: 180px; right: calc(50% + 130px); }
.hf-link-h--br { bottom: 0; right: 180px; left: calc(50% + 130px); }

.hf-link-v { width: 1px; top: 140px; bottom: 140px; background: rgba(255, 255, 255, .32); }
.hf-link-v--l { left: 0; }
.hf-link-v--r { right: 0; }

/* Centre tick rows */
.hf-ticks { left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.hf-ticks--t { top: -4px; align-items: flex-start; }
.hf-ticks--b { bottom: -4px; align-items: flex-end; }
.hf-ticks span { width: 1px; height: 8px; background: rgba(255, 255, 255, .5); }
.hf-ticks span:nth-child(even) { height: 5px; background: rgba(255, 255, 255, .4); }

/* Lateral graduations */
.hf-grad { display: flex; flex-direction: column; gap: 10px; }
.hf-grad--tl { left: 8px; top: 30%; }
.hf-grad--tr { right: 8px; top: 30%; align-items: flex-end; }
.hf-grad--bl { left: 8px; bottom: 30%; }
.hf-grad--br { right: 8px; bottom: 30%; align-items: flex-end; }
.hf-grad span { width: 6px; height: 1px; background: rgba(255, 255, 255, .35); }
.hf-grad--tl span:nth-child(1), .hf-grad--tl span:nth-child(4),
.hf-grad--tr span:nth-child(1), .hf-grad--tr span:nth-child(4),
.hf-grad--bl span:nth-child(2), .hf-grad--br span:nth-child(2) {
  width: 10px;
  background: rgba(255, 255, 255, .6);
}

/* Double segments on the top / bottom edges */
.hf-seg { width: 120px; height: 1px; background: rgba(255, 255, 255, .45); }
.hf-seg--tl { top: 6px; left: 220px; }
.hf-seg--tr { top: 6px; right: 220px; }
.hf-seg--bl { bottom: 6px; left: 220px; }
.hf-seg--br { bottom: 6px; right: 220px; }
.hf-seg--short { width: 8px; background: rgba(255, 255, 255, .8); }
.hf-seg--short.hf-seg--tl { left: 348px; }
.hf-seg--short.hf-seg--tr { right: 348px; }

/* Small square pairs */
.hf-sq { bottom: 24px; display: flex; gap: 6px; }
.hf-sq--l { left: 200px; }
.hf-sq--r { right: 200px; }
.hf-sq span { position: static; width: 5px; height: 5px; background: rgba(255, 255, 255, .6); }
.hf-sq--l span:first-child,
.hf-sq--r span:last-child { background: none; border: 1px solid rgba(255, 255, 255, .5); }

/* Inner wings — hidden away from the hero, back on the contact panel */
.hud-wing { width: 340px; height: 70px; transition: opacity .5s ease; }
.hud-wing--tl { top: 22%; left: 150px; }
.hud-wing--tr { top: 22%; right: 150px; transform: scaleX(-1); }
.hud-wing--bl { bottom: 22%; left: 150px; transform: scaleY(-1); }
.hud-wing--br { bottom: 22%; right: 150px; transform: scale(-1, -1); }

.hstage.past-hero .hud-wing { opacity: 0; }
.hstage.at-contact .hud-wing { opacity: 1; }

/* ---------- 3. Tab rail ---------- */

.tab-rail {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
}

.tab-list { display: flex; flex-direction: column; gap: 16px; }
.rail-collapsed .tab-list { display: none; }

.tab-btn {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 30px 16px 18px;
  border: 0;
  cursor: pointer;
  color: var(--txt-4);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 1px;
  line-height: 1.15;
  text-transform: uppercase;
  background: var(--tedge, rgba(255, 255, 255, .18));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%);
  transition: color .2s, background .2s;
}
.tab-btn::after {
  content: '';
  position: absolute;
  inset: 1px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  background: var(--tfill, rgba(9, 12, 13, .72));
  z-index: -1;
  transition: background .2s;
}

.tab-dia {
  position: relative;
  flex: none;
  width: 15px;
  height: 15px;
  border: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.tab-dia::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: currentColor;
  opacity: 0;
  transition: opacity .2s;
}

.tab-num {
  position: absolute;
  top: 6px;
  right: 9px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1px;
  opacity: .5;
}

.tab-btn:hover {
  color: var(--acc);
  --tedge: var(--acc);
  --tfill: color-mix(in srgb, var(--acc) 10%, rgba(9, 12, 13, .72));
}
.tab-btn.tab-active {
  color: var(--acc);
  --tedge: var(--acc);
  --tfill: color-mix(in srgb, var(--acc) 15%, rgba(9, 12, 13, .85));
}
.tab-btn.tab-active .tab-dia::after { opacity: 1; }
.tab-btn.tab-active::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 9px;
  bottom: 9px;
  width: 3px;
  background: var(--acc);
  box-shadow: 0 0 10px var(--acc);
}

.tab-mini { display: none; flex-direction: column; gap: 12px; }
.rail-collapsed .tab-mini { display: flex; }

.mini-bar {
  position: relative;
  width: 4px;
  height: 46px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .16);
  cursor: pointer;
  transition: background .3s ease, box-shadow .3s ease;
}
/* Widen the hit area without widening the bar. */
.mini-bar::after { content: ''; position: absolute; inset: -6px -14px; }
.mini-bar:hover { background: color-mix(in srgb, var(--acc) 55%, rgba(255, 255, 255, .16)); }
.mini-bar.mini-active { background: var(--acc); box-shadow: 0 0 10px var(--acc); }

.rail-toggle {
  position: relative;
  isolation: isolate;
  flex: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  cursor: pointer;
  color: var(--txt-4);
  background: var(--edge, rgba(255, 255, 255, .18));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
  transition: color .2s;
}
.rail-toggle::before {
  content: '';
  position: absolute;
  inset: 1px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%);
  background: rgba(9, 12, 13, .9);
  z-index: -1;
}
.rail-toggle:hover { color: var(--acc); --edge: var(--acc); }
.rail-toggle:hover::before { background: color-mix(in srgb, var(--acc) 12%, #050607); }
.rail-toggle svg { transition: transform .35s cubic-bezier(.65, 0, .35, 1); }
.rail-collapsed .tab-rail .rail-toggle svg { transform: scaleX(-1); }

/* ---------- 4. Panels ---------- */

.p-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  text-align: center;
  overflow: hidden;
}

.p-missions,
.p-logs,
.p-contact {
  overflow: hidden auto;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-missions { padding: 70px 80px 70px var(--rail-pad); }
.p-logs { padding: 0 80px 0 var(--rail-pad); gap: 40px; }
.p-contact { padding: 60px 80px; align-items: center; text-align: center; }

/* Hero panel */

.hero-meta {
  position: absolute;
  left: 80px;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.hero-meta__role {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--acc2);
  text-shadow: 0 0 12px color-mix(in srgb, var(--acc2) 55%, transparent);
}
.hero-meta__row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--txt-2);
}
.hero-meta__row span { width: 9px; height: 9px; border: 1px solid rgba(255, 255, 255, .55); }
.hero-meta__row--live span {
  border: 0;
  background: var(--acc2);
  box-shadow: 0 0 8px color-mix(in srgb, var(--acc2) 70%, transparent);
}

.hero-title {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 80px;
  line-height: .96;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.hero-sub {
  max-width: 620px;
  margin: 32px auto 0;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--txt-3);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 40px; }
.hero-ctas > * {
  padding: 15px 34px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 2px;
}
.hero-ctas .btn-linkedin { font-weight: 600; }
.hero-ctas .btn-out { font-weight: 500; }

/* Section heading shared by the mission + log panels */

.p-head { display: flex; align-items: baseline; justify-content: space-between; }
.p-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
}
.p-head h2 .slash { color: var(--acc2); animation: glowPulse2 var(--pulse, 3s) infinite; }
.p-head__meta { font-family: var(--font-mono); font-size: 13px; color: var(--txt-5); }

@keyframes glowPulse2 {
  0%, 100% { text-shadow: 0 0 8px color-mix(in srgb, var(--acc2) 80%, transparent), 0 0 24px color-mix(in srgb, var(--acc2) 35%, transparent); }
  50%      { text-shadow: 0 0 14px var(--acc2), 0 0 40px color-mix(in srgb, var(--acc2) 55%, transparent); }
}

/* ---------- 5. Mission register ---------- */

.reg { display: flex; flex-direction: column; margin-top: 36px; }

.reg-row {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr 260px 120px;
  gap: 24px;
  align-items: center;
  padding: 28px 8px;
  border-top: 1px solid var(--line);
  color: var(--txt);
  transition: transform .25s ease, background .25s ease;
}
.reg-row:last-child { border-bottom: 1px solid var(--line); }
.reg-row:hover {
  color: var(--txt);
  transform: scale(1.012);
  background: color-mix(in srgb, var(--acc) 5%, transparent);
}

.reg-row__num { font-family: var(--font-mono); font-size: 15px; color: var(--acc2); }
.reg-row__title { font-family: var(--font-display); font-weight: 600; font-size: 24px; }
.reg-row__cat { font-family: var(--font-mono); font-size: 14px; color: var(--txt-4); }
/* The status tag sits after the title, on its line when it fits. */
.reg-row__title .tag { display: inline-block; margin-left: 10px; vertical-align: middle; font-weight: 400; white-space: nowrap; }
.reg-row__open {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--acc);
  text-align: right;
}

/* Preview that snaps in beside the cursor. Positioned by accueil.js —
   `fixed` resolves against the hovered row because the row is transformed. */
.reg-thumb {
  position: fixed;
  left: -9999px;
  top: -9999px;
  z-index: 2;
  width: 440px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--acc);
  background: linear-gradient(160deg, #0e1416, #060809);
  box-shadow: 0 0 24px color-mix(in srgb, var(--acc) 25%, transparent);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--txt-dim);
  pointer-events: none;
  opacity: 0;
  transition: opacity .1s ease;
}
/* A real visual in place of the placeholder: it fills the preview. Not lazy —
   parked off screen, a lazy image would only start loading on hover. */
.reg-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.reg-row:nth-child(2) .reg-thumb { background: linear-gradient(200deg, #0e1416, #060809); }
.reg-row:hover .reg-thumb { opacity: 1; animation: thumbGlitch .28s steps(1, end) both; }

@keyframes thumbGlitch {
  0%   { clip-path: inset(0 100% 0 0); transform: translate(-8px, 0); filter: hue-rotate(30deg) brightness(1.6); }
  12%  { clip-path: inset(0 72% 0 0); transform: translate(4px, -3px); }
  25%  { clip-path: inset(24% 48% 32% 0); transform: translate(-3px, 3px); filter: hue-rotate(-20deg); }
  38%  { clip-path: inset(0 42% 0 0); transform: translate(5px, 0); }
  52%  { clip-path: inset(38% 18% 8% 0); transform: translate(-4px, -2px); filter: brightness(1.4); }
  66%  { clip-path: inset(6% 12% 0 0); transform: translate(3px, 2px); }
  80%  { clip-path: inset(0 4% 0 0); transform: translate(-2px, 0); filter: none; }
  100% { clip-path: inset(0 0 0 0); transform: none; filter: none; }
}

/* ---------- 6. Audio logs ---------- */

/* minmax(0, …) + min-width:0 stop the nowrap player name and the long card
   titles from forcing the tracks wider than the panel. */
.logs-grid { display: grid; grid-template-columns: 480px minmax(0, 1fr); gap: 40px; }
.logs-grid > * { min-width: 0; }

.logs-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.logs-pager .rail-toggle { width: 38px; height: 38px; }
.logs-pager__slot {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--txt-4);
}

.log-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .22s ease, opacity .22s ease;
}
.log-stack.cards-out { transform: translateX(-56px); opacity: 0; }
.log-stack.cards-in { transition: none; transform: translateX(56px); opacity: 0; }

/* Both the card edge and its inner face share this notched silhouette. */
.card-clip {
  clip-path: polygon(
    0 0, 56% 0, 58% 5px, calc(100% - 16px) 5px, 100% 21px,
    100% 100%, 16px 100%, 0 calc(100% - 16px), 0 62%, 5px 58%, 5px 36%, 0 32%
  );
}

.log-card {
  --card-edge: var(--line);
  --card-inner: #050607;
  --card-col: var(--txt-4);
  padding: 1px;
  border: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: var(--card-edge);
  transition: background .2s ease;
}
.log-card.is-selected {
  --card-edge: var(--acc);
  --card-inner: color-mix(in srgb, var(--acc) 8%, #050607);
  --card-col: var(--acc);
  box-shadow: 0 0 16px color-mix(in srgb, var(--acc) 18%, transparent);
}
.log-card:hover {
  --card-edge: var(--acc);
  --card-inner: color-mix(in srgb, var(--acc) 12%, #050607);
}

.log-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px 80px 20px 20px;
  background: var(--card-inner);
}

.log-card__hatch {
  position: absolute;
  top: 11px;
  right: 26px;
  width: 54px;
  height: 7px;
  opacity: .75;
  background: repeating-linear-gradient(-45deg, var(--card-col) 0 3px, transparent 3px 7px);
}
.log-card__dot {
  position: absolute;
  top: 11px;
  right: 88px;
  width: 5px;
  height: 5px;
  opacity: .6;
  background: var(--card-col);
}
.log-card__bar {
  position: absolute;
  left: 9px;
  top: 36%;
  width: 2px;
  height: 22px;
  opacity: .55;
  background: var(--card-col);
}

.log-card__id {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--card-col);
}
.log-card__role {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--txt);
}
.log-card__sub {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--txt-5);
}

.log-card__play {
  --edge: var(--card-col);
  --fill: var(--card-inner);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--card-col);
}

/* Player + transcription */

.player { display: flex; flex-direction: column; gap: 28px; }

.player__bar { padding: 1px; background: var(--line); }
.player__bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  padding: 14px 20px;
  background: #0a0d0e;
}

.player__name {
  flex: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--txt);
  white-space: nowrap;
}
.player__time { flex: none; font-family: var(--font-mono); font-size: 12px; color: var(--txt-5); }

.wave {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 3px;
  height: 52px;
  overflow: hidden;
}
.wave-bar {
  flex: 1;
  background: var(--acc2);
  animation: waveAnim .9s ease-in-out infinite alternate;
  animation-play-state: paused;
}
.wave-playing .wave-bar { animation-play-state: running; }
@keyframes waveAnim { from { transform: scaleY(1); } to { transform: scaleY(.15); } }

.transcript { flex: 1; }
.transcript__k {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--acc2);
}
.transcript__rule {
  width: 220px;
  height: 1px;
  margin: 16px 0 28px;
  background: color-mix(in srgb, var(--acc2) 50%, transparent);
}
.transcript__body {
  min-height: 96px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--txt-2);
}
.transcript__caret { color: #fff; animation: dotBlink 1s steps(1) infinite; }

/* ---------- 7. Contact panel ---------- */

.p-contact .cta__eyebrow {
  color: var(--acc2);
  text-shadow: 0 0 8px rgba(255, 154, 0, .6);
}

/* ---------- 8. Narrow screens ---------- */

/* Below this the sticky 4-panel carousel stops being usable: fall back to
   an ordinary vertical page with the panels stacked. */
@media (max-width: 1080px), (max-height: 600px) {
  .hscroll-wrap { height: auto; }
  .hstage { position: static; height: auto; overflow: visible; --rail-pad: 40px; }
  .hviewport { position: static; overflow: visible; }
  .hscroll-track {
    position: static;
    height: auto;
    transform: none !important;
    transition: none;
  }
  .panel {
    flex: none;
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
  .tab-rail, .hud-frame, .dots-canvas { display: none; }

  .p-hero { padding: 70px 40px; min-height: 70vh; }
  .hero-meta { position: static; margin-bottom: 32px; align-items: center; text-align: center; }
  .hero-title { font-size: 52px; }
  .p-missions { padding: 56px 40px; }
  .p-logs { padding: 56px 40px; }
  .p-contact { padding: 56px 40px; }
  .p-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .p-head h2 { font-size: 30px; }

  .reg-row { grid-template-columns: 70px minmax(0, 1fr); gap: 10px 18px; }
  .reg-row__cat { grid-column: 2; }
  .reg-row__open { grid-column: 2; text-align: left; }
  .reg-row__title { font-size: 20px; }
  .reg-row:hover { transform: none; }
  .reg-thumb { display: none; }

  .logs-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .log-card__inner { padding-right: 72px; }
}

@media (max-width: 720px) {
  .p-hero, .p-missions, .p-logs, .p-contact { padding: 48px 22px; }
  .hero-title { font-size: 38px; }
  .hero-sub { font-size: 17px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas > * { text-align: center; }
  .transcript__body { font-size: 17px; }
  .player__name { white-space: normal; }
  .player__bar-inner { gap: 12px 16px; }
  .wave { min-width: 100%; height: 40px; }
  .log-card__role { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .hscroll-track { transition: none; }
  .panel-appear, .panel-leave { animation: none; }
  .reg-row:hover .reg-thumb { animation: none; }
}
