/* ------------------------------------------------------------------
   Michael Bailey, Content Specialist. Portfolio.
   Tokens are documented in DESIGN.md.
------------------------------------------------------------------ */

:root {
  /* hex fallbacks first; OKLCH overrides below for browsers that support it */
  --bg: #111214;
  --bg-raised: #1b1c1f;
  --fg: #f4f4f6;
  --fg-muted: #bdbec4;
  --fg-subtle: #85868e;
  --fg-faint: #45464c;
  --line: #34353a;
  --line-strong: #5a5b62;
  --accent: #35d96b;

  --wash-1: rgb(255 255 255 / 0.05);
  --wash-2: rgb(255 255 255 / 0.08);
  --wash-3: rgb(255 255 255 / 0.13);
  --edge: rgb(255 255 255 / 0.09);

  --font: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 20px;
  --s-6: 24px; --s-8: 32px; --s-10: 40px; --s-12: 48px; --s-16: 64px; --s-24: 96px;

  --radius-tile: 12px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 1, 0.5, 1);   /* quart: gentler start than quint, for entrances */
  --dur-fast: 150ms;
  --dur-base: 300ms;
  --dur-slow: 600ms;

  --panel-w: clamp(380px, 45vw, 700px);
  --gutter: 12px;

  color-scheme: dark;
}

@supports (color: oklch(0.5 0.1 200)) {
  :root {
    --bg: oklch(0.13 0.006 260);
    --bg-raised: oklch(0.17 0.006 260);
    --fg: oklch(0.97 0.004 260);
    --fg-muted: oklch(0.78 0.006 260);
    --fg-subtle: oklch(0.58 0.008 260);
    --fg-faint: oklch(0.36 0.008 260);
    --line: oklch(0.30 0.006 260);
    --line-strong: oklch(0.45 0.006 260);
    --accent: oklch(0.80 0.22 145);
  }
}

/* ---------- Reset ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: grid;
  grid-template-columns: var(--panel-w) minmax(0, 1fr);
  align-items: start;
}

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

h1, h2, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }

a { color: inherit; }

button { font: inherit; color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: var(--s-4); top: -100px;
  padding: var(--s-2) var(--s-4); background: var(--fg); color: var(--bg);
  border-radius: var(--radius-pill); z-index: 100; text-decoration: none;
}
.skip:focus { top: var(--s-4); }

:focus-visible { outline: 2px solid var(--fg); outline-offset: 3px; }

/* ---------- Left panel ---------- */

.panel {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: var(--s-10) var(--s-12);
  scrollbar-width: none;
}
.panel::-webkit-scrollbar { display: none; }

.panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  min-height: 40px;
}

.logo {
  display: inline-block;
  width: max-content;
  height: 26px;
  border-radius: 4px;
}
.logo img { height: 100%; width: auto; }

.socials { display: flex; gap: var(--s-2); }
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--fg-muted);
  background: transparent;
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}
.social svg { width: 16px; height: 16px; }
.social:hover { color: var(--fg); background: var(--wash-2); }
.social.is-placeholder { cursor: default; color: var(--fg-subtle); }
.social.is-placeholder:hover { color: var(--fg-subtle); background: transparent; }

/* Hero: vertically centred in whatever space is left */
.hero {
  margin: auto 0;
  padding: var(--s-12) 0;
}


.identity {
  display: flex;
  align-items: center;
  gap: 14px;
}
.identity__avatar-wrap {
  position: relative;
  flex: none;
  width: 44px; height: 44px;
}
.identity__avatar {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
/* Presence dot on the avatar, the way messaging apps show "online" */
.identity__presence {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2.5px var(--bg);
}
.identity__presence::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: pulse 2200ms var(--ease-out) infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.35); opacity: 0.5; }
  70%  { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1.2); opacity: 0; }
}
.identity__text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.identity__name {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
/* Role line under the name: "Lead Video Editor · Content Producer" */
.services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--fg-subtle);
}
.services__item + .services__item::before {
  content: "\00B7";
  margin: 0 7px;
  opacity: 0.8;
}

/* Skill tags: solid filled pills with proper text weight. No outline, no glow.
   The hairline-outlined chip is the AI-template tell; a filled tag reads as a designed label. */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--s-5);
}
.tags[hidden] { display: none; }
.tag {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--fg);
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  background: var(--wash-2);
  white-space: nowrap;
}

.headline {
  margin-top: var(--s-10);
  font-size: clamp(2.125rem, 1rem + 2.7vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-left: -0.04em;
  text-wrap: balance;
}
.headline__line {
  display: block;
  overflow: hidden;
  /* room for descenders (g, y) inside the clip; the negative margin keeps line spacing unchanged */
  padding-bottom: 0.25em;
  margin-bottom: -0.25em;
}
.headline__text {
  display: block;
  opacity: 0;
  transform: translateY(70%);
  animation: line-in 1300ms var(--ease-soft) forwards;
  animation-delay: 200ms;
}
.headline__line:nth-child(2) .headline__text { animation-delay: 340ms; }

.bio {
  opacity: 0;
  animation: rise-soft 1300ms var(--ease-soft) forwards;
  animation-delay: 600ms;
  margin-top: var(--s-6);
  max-width: 31rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--fg-muted);
}

.cta-line {
  margin-top: var(--s-10);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fg);
}
.cta-line__part + .cta-line__part::before { content: " "; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-4);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background-color var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}
.btn--primary {
  background: var(--fg);
  color: var(--bg);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 28px -10px rgb(255 255 255 / 0.4); }
.btn--primary:active { transform: translateY(0); box-shadow: none; }
.btn--soft {
  background: var(--wash-2);
  color: var(--fg);
}
.btn--soft:hover { background: var(--wash-3); }
.btn--soft:active { background: var(--wash-1); }

/* Trusted by: label + looping logo marquee, same measure as the headline and bio */
.trusted {
  --trusted-gap: var(--s-8);
  margin-top: var(--s-12);
  max-width: 31rem;
}
.trusted__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg-subtle);
  margin-bottom: var(--trusted-gap);
}
.marquee {
  --marquee-gap: 56px;
  --marquee-fade: 96px;
  --logo-h: 18px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 var(--marquee-fade), #000 calc(100% - var(--marquee-fade)), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 var(--marquee-fade), #000 calc(100% - var(--marquee-fade)), transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: var(--marquee-gap);
  width: max-content;
  padding-right: var(--marquee-gap);
  will-change: transform;
}
/* Motion is driven by script (see script.js) so hover can ease the speed down rather than stop dead. */
.marquee__item { flex: none; display: flex; align-items: center; }
.marquee__item img {
  display: block;
  height: calc(var(--logo-h) * var(--logo-scale, 1));
  width: auto;
  opacity: 0.9;
}


/* ---------- Work column ---------- */

.work {
  padding: 0 var(--s-8) var(--s-10) var(--s-6);
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.tabs-wrap {
  position: sticky;
  top: 0;
  z-index: 5;
  padding-top: var(--s-10);
  margin-bottom: var(--s-12);
  background: var(--bg);
}
/* videos fade out as they slide under the bar */
.tabs-wrap::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 88px;
  /* every stop derives from --bg so the fade is invisible against the page ground */
  background: linear-gradient(to bottom,
    var(--bg) 0%,
    color-mix(in srgb, var(--bg) 85%, transparent) 30%,
    color-mix(in srgb, var(--bg) 45%, transparent) 60%,
    transparent 100%);
  pointer-events: none;
}
.tabs {
  display: flex;
  gap: var(--s-8);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: 0 0 auto;
  background: none;
  border: 0;
  padding: 12px 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--fg-subtle);
  cursor: pointer;
  transition: color var(--dur-base) var(--ease-out);
}
.tab:hover { color: var(--fg-muted); }
.tab[aria-selected="true"] { color: var(--fg); }
.tab:focus-visible { outline-offset: 6px; border-radius: 2px; }
.tabs__indicator {
  position: absolute;
  left: 0; bottom: 0;
  width: 100px; height: 2px;
  background: var(--fg);
  transform-origin: 0 50%;
  transform: translateX(0) scaleX(0);
  transition: transform 450ms var(--ease-out);
  pointer-events: none;
}

/* Grid ------------------------------------------------------------- */

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gutter);
  transition: opacity var(--dur-fast) var(--ease-in);
}
.grid.is-leaving { opacity: 0; }


.grid__item {
  min-width: 0;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 900ms var(--ease-soft), transform 1000ms var(--ease-soft);
}
.grid__item.is-in { opacity: 1; transform: none; }

.grid__more {
  display: flex;
  width: max-content;
  margin: var(--s-8) auto 0;
  border: 0;
  cursor: pointer;
}
.grid__more[hidden] { display: none; }

.grid__empty {
  color: var(--fg-subtle);
  padding: var(--s-16) 0;
}

.colophon {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.colophon--panel { flex: none; }
.colophon--work { display: none; }

/* Tile --------------------------------------------------------------- */

.tile {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: var(--radius-tile);
  overflow: hidden;
  background: var(--bg-raised);
  cursor: pointer;
  isolation: isolate;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
  transform: translateZ(0);
}

/* hairline bezel so tiles read as objects against the black */
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.06);
  pointer-events: none;
  z-index: 2;
}

.tile__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg-raised) center / cover no-repeat;
  transform: scale(1);
  transition: transform var(--dur-slow) var(--ease-out);
}

/* YouTube tab: designed thumbnail at rest, preview fades in over it on hover */
.tile__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform var(--dur-slow) var(--ease-out);
}
.tile--hover-play .tile__media {
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: opacity 450ms var(--ease-out) 120ms, transform var(--dur-slow) var(--ease-out);
}
.tile--hover-play .tile__scrim,
.tile--hover-play .tile__meta,
.tile--hover-play .tile__caption { z-index: 2; }
@media (hover: hover) {
  .tile--hover-play:hover .tile__thumb,
  .tile--hover-play:focus-visible .tile__thumb { transform: scale(1.04); }
  .tile--hover-play:hover .tile__media,
  .tile--hover-play:focus-visible .tile__media { opacity: 1; }
}

.tile__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(10 11 13 / 0.85), rgb(10 11 13 / 0) 58%);
  opacity: 0;
  transition: opacity 500ms var(--ease-out) 200ms;
}

.tile__caption {
  position: absolute;
  left: var(--s-5);
  right: var(--s-5);
  bottom: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--fg);
}
.tile__title, .tile__client { display: block; overflow: hidden; line-height: 1.15; padding-bottom: 0.08em; }
.tile__title { font-size: 1.0625rem; font-weight: 800; letter-spacing: -0.015em; }
.tile__client { font-size: 0.875rem; font-weight: 500; color: var(--fg-muted); }
.tile__title > span, .tile__client > span {
  display: block;
  transform: translateY(110%);
  transition: transform 500ms var(--ease-out);
}
.tile__title > span { transition-delay: 100ms; }
.tile__client > span { transition-delay: 0ms; }

.tile__meta {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-2);
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
}
.tile__pill {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgb(255 255 255 / 0.7);
  background: rgb(10 11 13 / 0.35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* Hover / focus: mirrors the reveal on michaelbailey.tv */
@media (hover: hover) {
  .tile:hover .tile__media,
  .tile:focus-visible .tile__media { transform: scale(1.04); }

  .tile:hover .tile__scrim,
  .tile:focus-visible .tile__scrim { opacity: 1; transition-delay: 0ms; }

  .tile:hover .tile__title > span,
  .tile:focus-visible .tile__title > span { transform: translateY(0); transition-delay: 100ms; }

  .tile:hover .tile__client > span,
  .tile:focus-visible .tile__client > span { transform: translateY(0); transition-delay: 200ms; }

  .tile:hover .tile__meta,
  .tile:focus-visible .tile__meta { opacity: 1; transition-delay: 150ms; }
}

/* Touch: labels are always present, quietly */
@media (hover: none) {
  .tile__scrim { opacity: 1; }
  .tile__title > span, .tile__client > span { transform: none; }
  .tile__meta { opacity: 1; }
}

.tile:focus-visible { outline-offset: 4px; }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--fg);
}
.lightbox::backdrop {
  background: rgb(16 17 19 / 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.lightbox[open] { animation: fade-in 300ms var(--ease-out); }
.lightbox[open]::backdrop { animation: fade-in 300ms var(--ease-out); }

.lightbox__inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: var(--s-16) var(--s-6);
}
.lightbox__close {
  position: absolute;
  top: max(var(--s-4), env(safe-area-inset-top));
  right: var(--s-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  z-index: 1;
  transition: border-color var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}
.lightbox__close:hover { border-color: var(--fg); background: var(--wash-2); }

.lightbox__player {
  align-self: center;
  justify-self: center;
  width: min(100%, 1400px, calc((100dvh - 128px) * 16 / 9));
  aspect-ratio: 16 / 9;
  background: var(--bg-raised);
  border-radius: var(--radius-tile);
  overflow: hidden;
  box-shadow: 0 40px 120px -40px rgb(0 0 0 / 0.9);
}
.lightbox__player.is-portrait {
  width: min(100%, calc((100dvh - 128px) * 9 / 16));
  aspect-ratio: 9 / 16;
}
.lightbox__player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--bg-raised);
  opacity: 1;
  transition: opacity 350ms var(--ease-out);
}
.lightbox__player iframe.is-loading { opacity: 0; }

/* ---------- Entrance motion ---------- */

.reveal {
  animation: rise 700ms var(--ease-out) both;
  animation-delay: calc(var(--i, 0) * 70ms);
}

@keyframes line-in {
  from { opacity: 0; transform: translateY(70%); }
  40%  { opacity: 1; }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rise-soft {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---------- Short viewports (desktop) ---------- */

@media (min-width: 1024px) and (max-height: 800px) {
  .panel { padding-top: var(--s-8); padding-bottom: var(--s-8); }
  .hero { padding: var(--s-6) 0; }
  .headline { margin-top: var(--s-8); font-size: clamp(2rem, 0.9rem + 2.4vw, 3rem); }
  .bio { margin-top: var(--s-5); }
  .cta-line { margin-top: var(--s-8); }
}

/* ---------- Tablet & phone ---------- */

@media (max-width: 1023px) {
  body { grid-template-columns: minmax(0, 1fr); }

  .panel {
    position: static;
    height: auto;
    overflow: visible;
    padding: var(--s-6) var(--s-6) var(--s-12);
  }
  .logo { height: 22px; }
  .hero { margin: 0; padding: var(--s-8) 0 var(--s-2); }
  .headline { margin-top: var(--s-8); }
  .bio { max-width: 52ch; }

  .work { padding: 0 var(--s-6) var(--s-10); }

  .tabs-wrap {
    margin: 0 calc(-1 * var(--s-6)) var(--s-5);
    padding: var(--s-4) var(--s-6) 0;
  }
  .tabs { gap: var(--s-6); }
  .tabs-wrap::after { height: 56px; }
  .tabs__indicator { left: var(--s-6); z-index: 1; }
  .tabs {
    mask-image: linear-gradient(to right, #000 calc(100% - 40px), transparent);
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 40px), transparent);
  }

  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .colophon--panel { display: none; }
  .colophon--work { display: block; margin-top: var(--s-10); }
}

@media (max-width: 639px) {
  .grid { grid-template-columns: minmax(0, 1fr); }

  /* Phone: the panel becomes a centred profile card above the work */
  .hero { text-align: center; padding-top: var(--s-12); }
  .identity {
    flex-direction: column;
    align-items: center;
    gap: var(--s-4);
  }
  .identity__avatar-wrap { width: 48px; height: 48px; }
  .identity__text { align-items: center; }
  .services { justify-content: center; }
  .tags { justify-content: center; }
  .headline {
    margin-left: 0;
    margin-inline: auto;
    /* each line is its own clip, so the size must let "I make your content" fit on one line */
    font-size: clamp(1.9rem, 9.2vw, 2.4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }
  .cta-line__part { display: block; line-height: 1.4; }
  .cta-line__part + .cta-line__part::before { content: none; }
  .tabs {
    justify-content: safe center;
    mask-image: none;
    -webkit-mask-image: none;
  }
  /* Phone: tiles run almost edge to edge, keeping their rounded corners and a slim gutter */
  .grid { margin-inline: calc(var(--s-2) - var(--s-6)); }
  .tile { border-radius: 10px; }
  .bio { margin-inline: auto; }
  .actions { justify-content: center; }
  .trusted { margin-inline: auto; }
  .trusted__label { text-align: center; }
}

@media (max-width: 479px) {
  .panel { padding-inline: var(--s-5); }
  .work { padding-inline: var(--s-5); }
  .tabs-wrap { margin-inline: calc(-1 * var(--s-5)); padding-inline: var(--s-5); }
  .tabs__indicator { left: var(--s-5); }
  .grid { margin-inline: calc(var(--s-2) - var(--s-5)); }
  .actions .btn { flex: 0 1 auto; min-width: 9rem; }
  .tile__caption { left: var(--s-4); right: var(--s-4); bottom: var(--s-3); }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }
  .identity__presence::after { display: none; }
  .marquee__track { transform: none !important; }
  .tile:hover .tile__media,
  .tile:focus-visible .tile__media { transform: none; }
}
