/* ============================================================
   THEORY LABS — faithful clone of microdot.vision design system
   Extracted values: bg #0d0d0d, fg #fff, single 14px/400 uppercase
   type, 12-col grid (16px col-gap, 16px page padding).
   ============================================================ */

@font-face {
  font-family: "TL Grotesk";
  src: url("../assets/fonts/microdot-grotesk.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* hero headline display face (Louize — the serif launchvideo.com uses) */
@font-face {
  font-family: "Louize";
  src: url("../assets/fonts/Louize.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

/* ===================== PAGE TRANSITIONS (cross-document view transitions) =====================
   Default: quick crossfade. Info: the page rises up from the bottom on open and
   drops back down on close — instead of a hard redirect. */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: 0.35s; }

/* INFO opening — new page slides up over the current one */
:root:active-view-transition-type(to-info)::view-transition-old(root) {
  animation: vt-hold 0.6s both;
}
:root:active-view-transition-type(to-info)::view-transition-new(root) {
  animation: vt-rise-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  z-index: 2;
}
/* INFO closing — info drops back down, revealing the page beneath */
:root:active-view-transition-type(from-info)::view-transition-new(root) {
  animation: vt-hold 0.6s both;
}
:root:active-view-transition-type(from-info)::view-transition-old(root) {
  animation: vt-fall-out 0.6s cubic-bezier(0.7, 0, 0.84, 0) both;
  z-index: 2;
}
@keyframes vt-rise-in { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes vt-fall-out { from { transform: translateY(0); } to { transform: translateY(100%); } }
@keyframes vt-hold { from { opacity: 1; } to { opacity: 1; } }

:root {
  --bg: #0d0d0d;
  --fg: #ffffff;
  --muted: rgba(255, 255, 255, 0.5);
  --line: rgba(255, 255, 255, 0.16);
  --tile: #1d1d1d;
  --pad: 16px;
  --col-gap: 16px;
  --row-gap: 160px;
  --font: "TL Grotesk", Arial, Helvetica, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* Microdot type system — base 16px, small label 14px */
.t {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}
/* small label tier (14px) — nav, codes, marquee, meta labels */
.header__nav a,
.brand__name,
.marquee .t,
.feed-item__code,
.feed-item__dur,
.work-row__client,
.work-row__title,
.work-row__code,
.footer__label,
.feed-clock .t,
.hero-meta__code,
.showreel__time,
.info__bar .t,
.info__contact .il-label,
.tm {
  font-size: 14px;
  line-height: 16px;
}

/* 12-column grid used by header, feed, work list, footer */
.grid12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--col-gap);
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: var(--pad);
  pointer-events: none;
}
.header a, .header button { pointer-events: auto; }

.header__nav { display: flex; align-items: center; gap: 16px; }
.header__nav a { opacity: 1; transition: opacity 0.25s; }
.header__nav a:hover { opacity: 0.6; }

/* logo at the start of the nav */
.nav2__logo { display: inline-flex; align-items: center; text-decoration: none; margin-right: 10px; }
.nav2__logo img { height: 34px; width: auto; display: block; }
html.light .nav2__logo img { filter: invert(1); }

/* right side: theme toggle + white pill CTA (launchvideo.com) */
.header__cta-wrap { display: flex; align-items: center; gap: 14px; }
.lv-cta {
  display: inline-block;
  background: #ffffff;
  color: #0c0c0d;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.lv-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.header__right {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: min(459px, 34vw);
  margin-right: 76px;
}
.brand__name { letter-spacing: 0; }
.brand__sub {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 320px;
}
.brand__bar { width: 1px; height: 12px; background: var(--fg); flex: 0 0 auto; opacity: 0.6; }

/* marquee */
.marquee { overflow: hidden; white-space: nowrap; width: 100%; }
.marquee__track { display: inline-flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee__track > span { padding-right: 28px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* dot logo + tm */
.header__logo { display: flex; align-items: flex-start; gap: 4px; }
.dotlogo { width: 26px; height: auto; fill: var(--fg); display: block; }
.tm { font-size: 8px; line-height: 1; }

/* ===================== SHOWREEL HERO (centered video box) ===================== */
.showreel {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  /* image removed — solid dark hero band (stays dark in both themes so the headline reads) */
  background: radial-gradient(130% 105% at 50% 22%, #17191e 0%, #0b0b0d 64%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* launchvideo.com: content sits centered in the viewport, ticker floats at the bottom */
  padding: clamp(80px, 12vh, 150px) var(--pad);
}
/* full-bleed looping background video (rAF crossfade at loop point — starts invisible, JS fades in) */
.showreel__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 0;
  opacity: 0;
}
/* faint bottom vignette for depth + ticker legibility */
.showreel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.28) 100%);
}
/* centered hero stage — sits above the video */
.showreel__stage {
  position: relative;
  z-index: 2;
  width: min(960px, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
/* ticker logos stay white over the video regardless of theme */
.showreel .atom-tick img,
html.light .showreel .atom-tick img { filter: brightness(0) invert(1); opacity: 0.6; }
.showreel .atom-tick:hover img { opacity: 1; }

/* headline — centered Louize 60/400 white (launchvideo.com) */
.hero-headline {
  font-family: "Louize", Georgia, serif;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
  max-width: 896px;
  margin: 0 auto;
  color: #ffffff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.32);
}
.hero-headline__em {
  font-family: "Louize", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}
/* hero description — clean sans, centered, white */
.hero-sub {
  margin: 24px auto 0;
  max-width: none;
  white-space: nowrap;
  text-align: center;
  font-family: var(--font);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.85);
}
/* allow wrap on small screens so it doesn't overflow */
@media (max-width: 640px) {
  .hero-sub { white-space: normal; max-width: 90vw; }
}
/* hero CTA — liquid-glass pill (cinematic hero treatment) */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  margin-top: 32px;
  padding: 13px 24px;
  border-radius: 9999px;
  color: #ffffff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.hero-cta svg { width: 18px; height: 18px; }
.hero-cta:hover { transform: translateY(-1px); }

/* ===================== LIQUID GLASS (frosted chrome) ===================== */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.liquid-glass-strong {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border: none;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.liquid-glass-strong::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.2) 80%,
    rgba(255, 255, 255, 0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* headline blur-in, word by word (Framer-style entrance) */
.blur-word {
  display: inline-block;
  filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  transition: filter 0.7s ease, opacity 0.7s ease, transform 0.7s ease;
  will-change: filter, opacity, transform;
}
.blur-text.is-in .blur-word { filter: blur(0); opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .blur-word { transition: none; filter: none; opacity: 1; transform: none; }
}

/* trusted-by block pinned to the bottom of the hero */
.showreel__trust {
  position: absolute;
  z-index: 2;
  left: 0; right: 0;
  bottom: 40px;
  text-align: center;
}
.showreel__trust-eyebrow {
  margin: 0 0 24px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
/* notched CTA button (sharp rectangle with corner ticks) */
.notch {
  position: relative;
  display: inline-block;
  align-self: center;
  margin-top: clamp(24px, 3vh, 36px);
  padding: 14px 30px;
  border: 1px solid color-mix(in srgb, var(--fg) 20%, transparent);
  color: var(--fg);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.notch:hover { background: var(--fg); color: var(--bg); }
.notch__c { position: absolute; width: 10px; height: 10px; pointer-events: none; }
.notch__c--tl { top: 4px;    left: 4px;  border-top: 1px solid currentColor; border-left: 1px solid currentColor; }
.notch__c--tr { top: 4px;    right: 4px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; }
.notch__c--bl { bottom: 4px; left: 4px;  border-bottom: 1px solid currentColor; border-left: 1px solid currentColor; }
.notch__c--br { bottom: 4px; right: 4px; border-bottom: 1px solid currentColor; border-right: 1px solid currentColor; }

/* push the video down a bit below the hero copy */
.showreel__media {
  position: relative;
  margin-top: clamp(30px, 5vh, 64px);
  width: min(900px, 100%);
}
.showreel__media video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* clean rounded "video player" frame (replaces the old mac-window chrome) */
.vidframe {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* relocated client ticker — launchvideo.com: centered marquee, max-w-3xl, sparse logos */
.showreel__ticker {
  width: min(768px, 92vw);
  margin: 0 auto;
}
/* launchvideo spacing: 28px logos, ~72px apart (mx-9 each side) */
.showreel__ticker.atom-ticker { margin-top: 0; }
.showreel__ticker .atom-ticker__track { gap: 72px; }

/* intro: hero video starts covering the viewport, then shrinks to its box */
.showreel__media { transform-origin: center center; }
.showreel__stage.is-intro .showreel__media { z-index: 50; will-change: transform; }
.showreel__stage.is-intro .hero-headline,
.showreel__stage.is-intro .hero-meta,
.showreel__stage.is-intro .showreel__controls { opacity: 0; }
.showreel__stage.is-settling .hero-headline,
.showreel__stage.is-settling .hero-meta,
.showreel__stage.is-settling .showreel__controls {
  opacity: 1;
  transition: opacity 0.7s ease 0.35s;
}

/* caption row beneath the video box (room for copy later) */
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.hero-meta__title { text-align: center; }
.hero-meta__code { text-align: right; color: var(--muted); }

/* video controls under the box */
.showreel__controls {
  display: flex;
  align-items: center;
  gap: 14px;
}
.playbtn {
  width: 16px; height: 16px;
  display: grid; place-items: center;
}
.playbtn .ico-play {
  width: 0; height: 0;
  border-left: 11px solid var(--fg);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.playbtn .ico-pause { display: none; gap: 3px; }
.playbtn .ico-pause i { width: 3px; height: 14px; background: var(--fg); display: block; }
.playbtn.is-playing .ico-play { display: none; }
.playbtn.is-playing .ico-pause { display: inline-flex; }
.showreel__time { color: var(--muted); }

/* ===================== MEDIA PLACEHOLDER ===================== */
.media {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--tile);
  outline: 1px solid rgba(255, 255, 255, 0.09);
  outline-offset: -1px;
  overflow: hidden;
}
.media__ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  color: var(--muted);
}
.media.is-ready .media__ph { display: none; }
.loader { width: 9px; height: 9px; position: relative; display: inline-block; }
.loader i {
  position: absolute; inset: 0;
  border: 1px solid var(--muted);
  border-radius: 50%;
}

/* ===================== FEED ===================== */
.feed {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--col-gap);
  row-gap: var(--row-gap);
  padding: var(--row-gap) var(--pad) var(--row-gap);
  align-items: start;
}

.feed-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.feed-item.in { opacity: 1; transform: none; }

.feed-item__labels {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.feed-item__lead { display: flex; gap: 10px; align-items: baseline; min-width: 0; }
.feed-item__lead .sep { opacity: 0.5; }
.feed-item__lead span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feed-item__code { color: var(--fg); white-space: nowrap; flex: 0 0 auto; }

.feed-item__media { width: 100%; }
.feed-item__media .media { position: relative; height: auto; aspect-ratio: 16 / 9; }

/* audio duration badge */
.feed-item__dur {
  position: absolute;
  right: 10px; bottom: 10px;
  z-index: 2;
  color: var(--fg);
  mix-blend-mode: difference;
}

/* clock text tile (no media) */
.feed-clock { display: flex; flex-direction: column; gap: 6px; color: var(--fg); }
.feed-clock span { color: var(--fg); }

/* ===================== FOOTER ===================== */
.footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--col-gap);
  padding: var(--pad);
  min-height: 60vh;
  align-content: end;
  row-gap: 28px;
}
.footer__copy { grid-column: 1 / 4; align-self: start; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col--email { grid-column: 1 / 4; }
.footer__col--ig { grid-column: 4 / 7; }
.footer__label { color: var(--muted); }

/* ===================== WORK PAGE ===================== */
.work {
  padding: calc(50svh - 52px) 0 16px;
}
.work__list { display: flex; flex-direction: column; }
.work-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 40px 0;
}
.work-row__labels { }
.work-row__client { grid-column: 1 / 5; }
.work-row__title  { grid-column: 5 / 9; }
.work-row__code   { grid-column: 9 / 13; color: var(--muted); }
/* filmstrip — dense sequence of frame slivers, like microdot */
.work-row__strip {
  display: flex;
  margin: 0 var(--pad);
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
}
.work-row__strip .wf {
  flex: 1 1 0;
  min-width: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.work-row:hover .work-row__code { color: var(--fg); }

/* work page sits above the ambient bg */
.work { position: relative; z-index: 1; }

/* translucent video background on hover */
.ambient {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  filter: blur(64px) brightness(0.65);
  transform: scale(1.2);
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.ambient.on { opacity: 1; }

/* scrub preview — sits ON the hovered film strip (microdot-style) */
.scrub {
  position: fixed;
  top: 0; left: 0;
  width: 228px;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease;
  will-change: transform;
}
.scrub.on { opacity: 1; }
.scrub img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  background: #000;
}
.scrub__time {
  position: absolute;
  left: 0; right: 0; bottom: 12px;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

/* ===================== INFO PAGE =====================
   Light page with the ASCII-art image as the background; warm tan text on top. */
.info {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #fbfbf9 center / cover no-repeat url("../assets/brand/info-bg.png");
}
.info__wrap {
  position: relative;
  z-index: 1;
  height: 100%;
  color: #8f7156;
  display: flex;
  flex-direction: column;
  padding: var(--pad);
}

/* top bar — microdot SecondaryHeader 12-col grid:
   INFO 1-4 · weather 5-8 · clock 9-11 · close at col 12 (absolute) */
.info__bar {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 16px;
  align-items: center;
}
.info__bar > span:first-child { grid-column: 1 / 5; }
.info__weather { grid-column: 5 / 9; }
.info__clock { grid-column: 9 / 12; }
.info__weather { display: flex; align-items: center; gap: 8px; }
.info__weather svg { width: 17px; height: 17px; display: block; }
.info__pill {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 1px 8px;
}
/* close button sits OUTSIDE the screen-blend so it stays a solid tan chip */
.info__close {
  position: absolute;
  top: var(--pad); right: var(--pad);
  z-index: 3;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: #9a7a5c;
  color: #fff;
  border-radius: 8px;
}
.info__close:hover { background: #876a4f; }
.info__close svg { width: 14px; height: 14px; display: block; }

/* centered block */
.info__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 30px);
  text-align: center;
  width: 100%;
  max-width: clamp(30rem, 60vw, 43rem);
  margin: 0 auto;
}
.info__logo { height: clamp(40px, 4.2vw, 58px); width: auto; display: block; }
.info__text { display: flex; flex-direction: column; gap: 1.5em; }
.info__text p {
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  line-height: 1.3;
  text-transform: uppercase;
}
.info__contact {
  width: 100%;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info__row { display: flex; justify-content: space-between; gap: 16px; }
.info__row span, .info__row a { font-size: clamp(0.875rem, 1.3vw, 1.1rem); }

/* clock dial, bottom-left */
.info__orbit {
  position: absolute;
  left: 8px; bottom: 8px;
  width: clamp(8rem, 18vw, 13rem);
  height: clamp(8rem, 18vw, 13rem);
}
.orbit-ring {
  position: absolute; inset: 0;
  border: 1px solid #8f7156;
  border-radius: 50%;
}
.orbit-dot { position: absolute; width: 7px; height: 7px; border-radius: 50%; }
.orbit-dot--a { top: -3px; left: 30%; background: #8f7156; }
.orbit-dot--b { left: -3px; top: 52%; background: #8f7156; }
.orbit-dot--c { bottom: 4px; right: 18%; background: #e0552b; }
.orbit-spin { position: absolute; inset: 0; animation: orbit 9s linear infinite; }
.orbit-spin .orbit-dot { top: -3px; left: 50%; margin-left: -3.5px; background: #8f7156; }
@keyframes orbit { to { transform: rotate(360deg); } }

/* ===================== PARTNER CTA (footer card + mouse-trail) ===================== */
.partner { padding: 0; position: relative; z-index: 1; }
.partner__card {
  width: 100%;
  margin: 0;
  padding: 6rem clamp(2rem, 7vw, 7rem);
  background: transparent;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.partner__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.partner__title {
  font-family: "Louize", Georgia, serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  color: #f2f2f2;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-transform: none;
  margin-bottom: 1rem;
  opacity: 0;
}
.partner__sub {
  max-width: 36ch;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.4;
  color: rgba(255,255,255,0.6);
  text-transform: none;
  margin-bottom: 2rem;
  opacity: 0;
}
.partner__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: #051A24;
  padding: 0.85rem 1.5rem;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  box-shadow: 0 8px 26px rgba(0,0,0,0.35);
}
.partner__cta:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(0,0,0,0.34); }
.partner__cta-logo { height: 20px; width: auto; display: block; flex: 0 0 auto; }
/* trail thumbnails */
.partner__trail { position: absolute; width: 6rem; pointer-events: none; z-index: 2; will-change: transform, opacity; }
.partner__trail img {
  width: 100%;
  display: block;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}
@keyframes partnerFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.partner.is-in .partner__title { animation: partnerFadeUp 0.8s ease-out 0.1s forwards; }
.partner.is-in .partner__sub { animation: partnerFadeUp 0.8s ease-out 0.2s forwards; }
.partner.is-in .partner__cta { animation: partnerFadeUp 0.8s ease-out 0.3s forwards; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  :root { --row-gap: 64px; }
  .header__right { gap: 18px; }
  .brand__sub, .marquee { display: none; }
  .feed-item { grid-column: 1 / 13 !important; }
  .hero-meta__client { grid-column: 1 / 7; }
  .hero-meta__title  { grid-column: 7 / 13; }
  .hero-meta__code   { display: none; }
  .work-row__client { grid-column: 1 / 7; }
  .work-row__title  { grid-column: 7 / 13; }
  .work-row__code   { grid-column: 1 / 13; }
  .footer__col--email, .footer__col--ig, .footer__copy { grid-column: 1 / 13; }
}

/* ===================== CLONED SECTIONS (atomikgrowth-style) ===================== */
.atom {
  background: var(--bg);
  color: #e5e5e0;
  font-family: "DM Sans", system-ui, sans-serif;
  position: relative;
  z-index: 1;
}
.atom-sec { max-width: 1180px; margin: 0 auto; padding: clamp(56px, 9vh, 110px) clamp(20px, 5vw, 48px); }
.atom-eyebrow {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(229,229,224,0.45); font-weight: 500;
}
.atom-h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500; font-size: clamp(40px, 5.6vw, 64px); line-height: 1.04;
  letter-spacing: 0.01em; color: #f3f1ea;
}
.atom-h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500; font-size: clamp(32px, 3.6vw, 48px); line-height: 1.05; color: #f3f1ea;
}
.atom-body { font-size: 15px; line-height: 1.6; color: rgba(229,229,224,0.55); max-width: 52ch; }
.atom-center { text-align: center; margin-left: auto; margin-right: auto; }

/* gold accents */
.atom-stat__num, .atom-quote { color: #d4b06a; }

/* buttons / links */
.atom-btn {
  display: inline-block;
  background: linear-gradient(180deg, #e6cd8f, #cda85f);
  color: #161208; font-weight: 500; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 30px; border-radius: 999px; text-decoration: none;
  transition: transform 0.18s ease, filter 0.18s ease;
}
.atom-btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
.atom-explore {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: #d4b06a; text-decoration: none; margin-top: 22px;
}
.atom-explore span { transition: transform 0.2s ease; }
.atom-explore:hover span { transform: translateX(4px); }

/* media placeholder */
.atom-ph {
  position: relative; background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.07); border-radius: 4px;
  aspect-ratio: 16 / 9; overflow: hidden;
}
.atom-ph::after {
  content: attr(data-ph); position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.16);
}

/* 1. TRUSTED — single-row Framer-style logo ticker */
.atom-trusted { text-align: center; max-width: 1320px; }
.atom-ticker {
  margin-top: clamp(28px, 4vh, 46px);
  overflow: hidden;
}
.atom-ticker__track {
  display: flex; align-items: center;
  gap: 36px;
  width: max-content;
  animation: atom-scroll 50s linear infinite;
}
.atom-ticker:hover .atom-ticker__track { animation-play-state: paused; }
.atom-tick {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
}
/* logos are pre-normalized to uniform internal proportions (icon + text heights baked into the assets), so one height fits all */
.atom-ticker { --logo-base: 40px; }
.atom-tick img {
  height: var(--logo-base);
  width: auto;
  object-fit: contain;
  /* normalize every logo to one uniform light silhouette (aeline look) */
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.25s ease;
}
.atom-tick:hover img { opacity: 1; }
@keyframes atom-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .atom-ticker__track { animation: none; } }

/* 3. SERVICES */
.atom-services .atom-h2 { margin-top: 6px; }
.atom-svc-list { margin-top: clamp(34px, 5vh, 60px); }
.atom-svc {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(40px, 6vh, 70px) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.atom-svc__copy { position: relative; padding-left: 20px; }
.atom-svc__copy::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 2px; height: 18px; background: #d4b06a;
}
.atom-svc__num { font-size: 12px; letter-spacing: 2px; color: rgba(229,229,224,0.4); }
.atom-svc__copy .atom-h3 { margin: 14px 0 16px; }
.atom-svc__media { aspect-ratio: 16 / 10; }

/* 4. STATS */
.atom-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.atom-stat { display: flex; flex-direction: column; gap: 8px; }
.atom-stat__num {
  font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500;
  font-size: clamp(40px, 5vw, 64px); line-height: 1;
  background: linear-gradient(180deg, #ecd9a6, #c9a35a);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.atom-stat__lbl { font-size: 13px; letter-spacing: 1px; color: rgba(229,229,224,0.5); }

/* 5. TESTIMONIALS */
.atom-test { text-align: center; }
.atom-test .atom-h2 { margin-top: 6px; }
.atom-test__feature { margin: clamp(34px, 5vh, 56px) auto 0; max-width: 920px; text-align: left; }
.atom-test__media { aspect-ratio: 16 / 9; border-radius: 6px; }
.atom-test__meta { margin-top: 16px; font-size: 14px; }
.atom-test__meta b { display: block; font-weight: 500; }
.atom-test__meta span { color: rgba(229,229,224,0.45); font-size: 13px; }
.atom-test__grid {
  margin: clamp(20px, 3vh, 32px) auto 0; max-width: 920px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; text-align: left;
  align-items: start;
}
.atom-qcard {
  background: #0d0d0d; border: 1px solid rgba(255,255,255,0.07); border-radius: 8px;
  padding: 26px 24px;
}
.atom-qcard--tall { grid-row: span 2; }
.atom-quote { font-family: "Cormorant Garamond", serif; font-size: 44px; line-height: 0.5; display: block; height: 26px; }
.atom-qcard blockquote { font-size: 14px; line-height: 1.55; color: rgba(229,229,224,0.78); margin-top: 8px; }
.atom-qcard figcaption { margin-top: 18px; font-size: 13px; }
.atom-qcard figcaption b { display: block; font-weight: 500; }
.atom-qcard figcaption span { color: rgba(229,229,224,0.45); }

/* 6. WORK WITH US */
.atom-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.atom-cta .atom-body { margin: 0 auto; }
.atom-cta .atom-btn { margin-top: 10px; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .atom-svc { grid-template-columns: 1fr; }
  .atom-stats { grid-template-columns: 1fr; gap: 36px; }
  .atom-test__grid { grid-template-columns: 1fr; }
  .atom-qcard--tall { grid-row: auto; }
}

/* ===================== THEME TOGGLE + LIGHT MODE ===================== */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 16px; padding: 0; color: var(--fg);
  opacity: 1; transition: opacity 0.25s ease;
}
.theme-toggle:hover { opacity: 0.6; }
.theme-toggle svg { width: 14px; height: 14px; display: block; }
.theme-toggle__sun { display: none; }
html.light .theme-toggle__moon { display: none; }
html.light .theme-toggle__sun { display: block; }

/* base variable swap — flips the whole Theory Labs design system */
html.light {
  --bg: #fafaf7;
  --fg: #1c1917;
  --muted: rgba(28, 25, 23, 0.55);
  --line: rgba(28, 25, 23, 0.14);
  --tile: #e9e7e1;
}

/* home — partner footer (hardcoded colors) */
html.light .partner__title { color: #1c1917; }
html.light .partner__sub { color: rgba(28, 25, 23, 0.6); }
html.light .partner__cta { background: #1c1917; color: #fafaf7; }
html.light .macframe, html.light .macframe__bar { background: #e9e7e1; }
html.light .macframe__dot { background: #bdb9b0; }

/* atomik-style cloned block in light mode */
html.light .atom { background: #fafaf7; color: #1c1917; }
html.light .atom-eyebrow { color: rgba(28, 25, 23, 0.5); }
html.light .atom-h2, html.light .atom-h3 { color: #1c1917; }
html.light .atom-body { color: rgba(28, 25, 23, 0.6); }
/* logos invert to dark silhouettes in light mode */
html.light .atom-tick img { filter: brightness(0); opacity: 0.5; }
html.light .atom-tick:hover img { opacity: 0.85; }
html.light .atom-ph { background: #efece5; border-color: rgba(0, 0, 0, 0.08); }
html.light .atom-ph::after { color: rgba(0, 0, 0, 0.28); }
html.light .atom-svc { border-top-color: rgba(0, 0, 0, 0.1); }
html.light .atom-svc__num { color: rgba(28, 25, 23, 0.45); }
html.light .atom-qcard { background: #fff; border-color: rgba(0, 0, 0, 0.08); }
html.light .atom-qcard blockquote { color: rgba(28, 25, 23, 0.8); }
html.light .atom-qcard figcaption span,
html.light .atom-test__meta span { color: rgba(28, 25, 23, 0.45); }

/* light-mode accent shift — gold becomes periwinkle / dark, matching atomik's light palette */
html.light .atom-stat__num {
  background: none;
  -webkit-text-fill-color: #7078d9;
  color: #7078d9;
}
html.light .atom-quote { color: #7078d9; }
html.light .atom-svc__copy::before { background: #7078d9; }
html.light .atom-explore { color: #1c1917; }
html.light .atom-svc__num { color: rgba(28, 25, 23, 0.45); }
html.light .atom-btn {
  background: #1c1917;
  color: #fafaf7;
}
html.light .atom-btn:hover { background: #2a2622; filter: none; }

/* ===================== PRODUCTION SHOWCASE (video cards) ===================== */
.prod {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(64px, 11vh, 130px) clamp(20px, 5vw, 48px);
}
/* stacked prod sections share one gap instead of doubling top+bottom padding */
.prod + .prod { padding-top: 0; }

/* split variant: text on the left, a single video placeholder on the right */
.prod--split {
  display: flex;
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
}
.prod--split .prod__head { flex: 1 1 auto; max-width: 560px; }
.prod--split .prod__solo { flex: 0 0 auto; width: clamp(280px, 28vw, 372px); margin-left: auto; }
/* premium depth on the light section bg */
.prod--split .prod__card { box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.45); }
/* heading styled like the launches section — Louize serif, no orange */
.prod--split .prod__title {
  font-family: "Louize", Georgia, serif;
  font-weight: 400;
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.prod--split .prod__title-2 { color: inherit; }
.prod--split .prod__body { font-family: "Outfit", var(--font), sans-serif; font-size: 17px; }
@media (max-width: 760px) {
  .prod--split { flex-direction: column; align-items: stretch; }
  .prod--split .prod__solo { width: min(320px, 82%); margin-left: 0; margin-top: clamp(28px, 4vh, 40px); }
}
/* clippingvideos.com-style social proof card (used in the short-form grid) */
.clipcard {
  background: #fff;
  border: 1px solid #e7e7ea;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #000;
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.6);
}
.clipcard__top { display: flex; align-items: center; justify-content: space-between; padding: 16px 16px 0; }
.clipcard__plat {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: #fff; border: 1px solid #e7e7ea;
  font-family: var(--font); font-size: 12px; font-weight: 500; color: #000;
}
.clipcard__plat svg { width: 13px; height: 13px; }
.clipcard__ext { color: #71717a; display: inline-flex; }
.clipcard__ext svg { width: 14px; height: 14px; }
.clipcard__media {
  position: relative; margin: 12px 16px 16px;
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 9 / 16; background: #000; border: 1px solid #e7e7ea;
  display: flex; align-items: center; justify-content: center;
}
.clipcard__vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.clipcard__ph { color: rgba(255, 255, 255, 0.26); }
.clipcard__ph svg { width: 46px; height: 46px; }
.clipcard__stats { display: flex; align-items: center; justify-content: space-between; padding: 16px; }
.clipcard__stat { display: inline-flex; align-items: center; gap: 6px; color: #52525b; font-family: var(--font); font-size: 14px; }
.clipcard__stat svg { width: 14px; height: 14px; color: #71717a; }
.clipcard__stat b { font-weight: 500; }

.prod__head { max-width: 760px; }
.prod__title {
  font-family: "Louize", Georgia, serif;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0;
}
.prod__title-2 { color: inherit; }
.prod__body {
  margin-top: clamp(16px, 2.2vh, 24px);
  max-width: 560px;
  font-family: "Outfit", var(--font), sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted);
}
.prod__cards {
  margin-top: clamp(30px, 4.6vh, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.8vw, 48px);
}

/* ---- metromedia-style video-player cards ---- */
.prod__card {
  border-radius: 16px;
  padding: 8px;
  background: #0c0c0d;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.prod__media {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
  /* dark "paused player" placeholder — subtle depth so it doesn't read as flat black */
  background:
    radial-gradient(120% 80% at 50% 0%, #1b1b20 0%, #121214 45%, #0a0a0b 100%);
}
/* real video filling the player (muted autoplay loop) — sits under the scrim + chrome */
.prod__vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* bottom scrim so the chrome stays legible over any clip dropped in later */
.prod__media::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 42%;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  pointer-events: none;
}
/* "Enable sound" pill — top-left of the first card */
.prod__sound {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 6px 8px;
  border-radius: 9px;
  background: rgba(28, 28, 32, 0.82);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.01em;
}
.prod__sound svg { width: 14px; height: 14px; opacity: 0.9; }
/* auto-caption pill — centered, just above the control bar */
.prod__cap {
  position: absolute;
  left: 8px; right: 8px;
  bottom: 44px;
  z-index: 2;
  margin: 0 auto;
  width: max-content;
  max-width: calc(100% - 24px);
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-family: var(--font);
  font-size: 12.5px;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* the player chrome */
.prod__player {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 0 8px 8px;
}
.prod__bar {
  position: relative;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.32);
  margin-bottom: 8px;
}
.prod__bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  border-radius: 3px;
  background: #5b6ee8;
}
.prod__bar-dot {
  position: absolute;
  top: 50%;
  width: 9px; height: 9px;
  margin-left: -4.5px;
  border-radius: 50%;
  background: #aeb6f5;
  transform: translateY(-50%);
}
.prod__ctrls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.92);
}
.prod__cg { display: flex; align-items: center; gap: 7px; }
.prod__cg svg { width: 15px; height: 15px; display: block; }
/* real, clickable controls on the functional solo player */
.prod__btn {
  appearance: none;
  border: 0;
  margin: 0;
  padding: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  line-height: 0;
  opacity: 0.92;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.prod__btn:hover { opacity: 1; transform: scale(1.08); }
.prod__card--player .prod__vid { cursor: pointer; z-index: 2; }
.prod__card--player .prod__bar { cursor: pointer; }
.prod__card--player .prod__player { z-index: 3; }
/* the functional sound pill is a button — strip native chrome */
.prod__card--player .prod__sound {
  border: 0;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.15s ease;
}
.prod__card--player .prod__sound:hover { background: rgba(40, 40, 46, 0.92); }
.prod__time {
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 0.02em;
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
  .prod__cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 460px) {
  .prod__cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .prod__cg { gap: 5px; }
  .prod__cg svg { width: 13px; height: 13px; }
  .prod__cap { font-size: 11px; }
}

/* ===================== LAUNCHES GRID (launchvideo.com clone — white band, exact) ===================== */
.lc {
  background: #fcfcfc;
  color: #0f0f0f;
  font-family: "Outfit", var(--font), sans-serif;
  padding: clamp(64px, 10vh, 110px) clamp(20px, 5vw, 48px);
}
.lc__inner { max-width: 1280px; margin: 0 auto; }
.lc__title {
  margin: 0;
  font-family: "Louize", Georgia, serif;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.0;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-align: center;
  color: #000;
}
.lc__sub {
  margin: 16px auto 0;
  text-align: center;
  font-size: 19px;
  color: #666;
}
.lc__toggles {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px;
  margin-top: clamp(24px, 3.4vh, 36px);
}
.lc__seg {
  display: inline-flex; gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
}
.lc__seg-btn {
  border: 0; cursor: pointer;
  padding: 8px 18px;
  border-radius: 999px;
  background: transparent;
  color: #000;
  font-family: inherit;
  font-size: 13px; font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}
.lc__seg-btn.is-active { background: #000; color: #fff; }

.lc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: clamp(34px, 5vh, 56px);
}
.lc-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.043);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #0f0f0f;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
a.lc-card:hover { background: rgba(0, 0, 0, 0.065); transform: translateY(-2px); }
/* header: avatar + inline name/handle that wrap together + X logo pinned right */
.lc-card__head { display: flex; align-items: flex-start; gap: 12px; }
.lc-card__avatar {
  flex: 0 0 auto;
  width: 44px; height: 44px; border-radius: 50%;
  background: #e6e6e6;
  overflow: hidden;
}
.lc-card__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-card__id {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0 5px;
  flex: 1 1 auto; min-width: 0; line-height: 21px;
}
.lc-card__name {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 15px; font-weight: 700; color: #0f1419;
}
.lc-card__name svg { width: 18px; height: 18px; flex: 0 0 auto; }
.lc-card__handle { font-size: 15px; font-weight: 400; color: #71767b; }
.lc-card__x { flex: 0 0 auto; color: #0f1419; }
.lc-card__x svg { width: 19px; height: 19px; display: block; }
.lc-card__text {
  margin: 12px 0 0;
  font-size: 15px; line-height: 22px;
  color: #0f1419;
  /* fixed 2-line height so every card is the same size regardless of text length */
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 44px;
}
.lc-card__media {
  position: relative; margin-top: 12px;
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 16 / 9; background: #000;
}
.lc-card__media img,
.lc-card__media video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  pointer-events: none; /* can't pause/scrub — click falls through to the X link */
}
.lc-card__cap {
  position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%);
  font-size: 15px; font-weight: 600; color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6); white-space: nowrap;
}
/* stats: 5 metrics spread full width, like launchvideo */
.lc-card__stats { display: flex; justify-content: space-between; align-items: center; gap: 4px; margin-top: 16px; }
.lc-stat {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 400; color: #536471;
}
.lc-stat svg { width: 16px; height: 16px; }
.lc-pending {
  margin-top: 16px;
  font-size: 13px; font-weight: 500; color: #536471;
}

/* "Maybe you next?" CTA card */
.lc-card--cta {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 12px;
  align-self: stretch; /* fill the row height so it matches the other cards */
  min-height: 320px;
  background: rgba(0, 0, 0, 0.043);
  border: 1px dashed rgba(0, 0, 0, 0.2);
}
.lc-cta__plus {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(0, 0, 0, 0.06); color: #0f1419;
  font-size: 28px; font-weight: 300; line-height: 1;
}
.lc-cta__title { margin: 0; font-family: "Louize", Georgia, serif; font-weight: 400; font-size: 26px; color: #000; }
.lc-cta__sub { margin: 0; max-width: 240px; font-size: 14px; line-height: 1.5; color: #666; }
.lc-cta__btn {
  margin-top: 4px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: #000; text-decoration: none;
}
.lc-cta__btn:hover { opacity: 0.7; }

@media (max-width: 900px) { .lc__grid { column-count: 2; } }
@media (max-width: 600px) { .lc__grid { column-count: 1; } }

/* ===================== FUTURE-OF-CREATIVE SPLIT (superside-style) ===================== */
.future {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(56px, 9vh, 120px) clamp(20px, 5vw, 48px);
}
.future__text { max-width: 820px; }
.future__eyebrow {
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.future__title {
  margin: 0;
  font-family: "Bricolage Grotesque", var(--font), sans-serif;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.future__title em {
  font-family: "Louize", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}
.future__q {
  margin: clamp(22px, 3vh, 34px) 0 0;
  max-width: 30ch;
  font-family: "Bricolage Grotesque", var(--font), sans-serif;
  font-size: clamp(19px, 1.9vw, 26px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.future__body {
  margin: clamp(16px, 2.2vh, 24px) 0 0;
  max-width: 46ch;
  font-family: var(--font);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--muted);
}
.future__cta {
  display: inline-block;
  margin-top: clamp(24px, 3.2vh, 38px);
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.future__cta:hover { transform: translateY(-1px); opacity: 0.9; }

/* ===================== TESTIMONIALS SCROLL REEL ===================== */
.testi {
  position: relative;
  overflow: hidden;
}
.testi__inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(48px, 7vh, 96px) clamp(20px, 5vw, 48px);
}
.testi__title {
  margin: 0;
  font-family: "Louize", Georgia, serif;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--fg);
}
.testi__sub {
  margin: clamp(14px, 2vh, 22px) auto 0;
  max-width: 480px;
  font-family: var(--font);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.5;
  color: var(--muted);
}

.reel {
  --featured-shadow: 0 1.008px 0.705px -0.563px rgba(0,0,0,0.18), 0 2.389px 1.672px -1.125px rgba(0,0,0,0.17), 0 4.357px 3.05px -1.688px rgba(0,0,0,0.17), 0 7.244px 5.07px -2.25px rgba(0,0,0,0.16), 0 11.698px 8.188px -2.813px rgba(0,0,0,0.15), 0 19.148px 13.404px -3.375px rgba(0,0,0,0.13), 0 32.972px 23.08px -3.938px rgba(0,0,0,0.09), 0 60px 42px -4.5px rgba(0,0,0,0.02), inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -1px 0 rgba(0,0,0,0.6);
  display: flex;
  max-width: 1060px;
  min-height: 320px;
  margin: clamp(28px, 4.5vh, 52px) auto 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}
.reel__stage {
  position: relative;
  flex: 0 0 380px;
  width: 380px;
  min-height: 320px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 16%, black 84%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0%, black 16%, black 84%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-composite: intersect;
}
.reel__columns {
  position: absolute;
  inset: 0 auto 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 380px;
  height: 100%;
  transform: translateX(-50%);
}
.reel__col {
  flex: 0 0 121.33px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  will-change: transform;
}
.reel.is-mounted .reel__col {
  transition: transform 800ms cubic-bezier(0.65,0,0.35,1);
}
.reel__cell {
  position: relative;
  flex: 0 0 121.33px;
  width: 121.33px;
  height: 121.33px;
  overflow: hidden;
  border-radius: 12px;
}
.reel__cell--placeholder {
  border: 1px solid rgba(255,255,255,0.035);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  filter: blur(1px);
}
.reel__tile--featured {
  box-shadow: var(--featured-shadow);
}
.reel__tile--featured::after {
  content: "";
  position: absolute;
  inset: -18px;
  background: linear-gradient(220.99deg, rgba(108,92,255,0) 32%, rgb(108,92,255) 41%, rgb(173,177,255) 47%, rgba(130,189,237,0.57) 54%, rgba(130,189,237,0) 65%);
  filter: blur(6px);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.reel__tile--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.reel__tile--mark {
  display: grid;
  place-items: center;
  background: var(--accent);
}
.reel__tile--mark img {
  position: relative;
  z-index: 1;
  width: 55%;
  max-height: 55%;
  object-fit: contain;
}
.reel__content {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 40px 20px;
}
.reel__quote-mark {
  width: 24px;
  height: 24px;
  color: var(--muted);
  opacity: 0.4;
}
.reel__text-stage {
  position: relative;
  width: 100%;
  max-width: 390px;
  min-width: 0;
  font-family: var(--font);
}
.reel__ghost {
  min-height: 140px;
  visibility: hidden;
}
.reel__text {
  position: absolute;
  inset-inline: 0;
  top: 0;
}
.reel__quote {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.reel__author {
  margin: 18px 0 0;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}
.reel__word,
.reel__char {
  display: inline-block;
}
.reel__word {
  white-space: nowrap;
}
.reel__char {
  opacity: 0;
  transform: translateY(0.7em);
  animation: reel-char-rise 700ms cubic-bezier(0.22,1,0.36,1) forwards;
}
.reel__exit {
  animation: reel-exit 240ms cubic-bezier(0.65,0,0.35,1) forwards;
}
.reel__exit .reel__char {
  animation: none;
}
.reel__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reel__btn {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  color: var(--fg);
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.reel__btn:hover:not(:disabled) {
  transform: scale(1.08);
}
.reel__btn:active:not(:disabled) {
  transform: scale(0.94);
}
.reel__btn:disabled {
  cursor: default;
  opacity: 0.4;
}
.reel__btn svg {
  width: 12px;
  height: 12px;
}

html.light .reel {
  --featured-shadow: 0 1.008px 0.705px -0.563px rgba(0,0,0,0.18), 0 2.389px 1.672px -1.125px rgba(0,0,0,0.17), 0 4.357px 3.05px -1.688px rgba(0,0,0,0.17), 0 7.244px 5.07px -2.25px rgba(0,0,0,0.16), 0 11.698px 8.188px -2.813px rgba(0,0,0,0.15), 0 19.148px 13.404px -3.375px rgba(0,0,0,0.13), 0 32.972px 23.08px -3.938px rgba(0,0,0,0.09), 0 60px 42px -4.5px rgba(0,0,0,0.02), inset 0 1px 0 rgba(255,255,255,0.7), inset 0 -1px 0 rgba(0,0,0,0.6);
  border: 0;
  background: transparent;
  box-shadow: none;
}
html.light .reel__cell--placeholder {
  border-color: rgba(0,0,0,0.035);
  background: linear-gradient(180deg, rgba(0,0,0,0.035), rgba(0,0,0,0.015));
  box-shadow: none;
}
html.light .reel__btn {
  border-color: rgba(0,0,0,0.15);
}

@keyframes reel-char-rise { to { opacity: 1; transform: translateY(0); } }
@keyframes reel-exit { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(-12px); } }

@media (max-width: 767px) {
  .reel {
    flex-direction: column;
    min-height: 0;
  }
  .reel__stage {
    flex: 0 0 auto;
    width: 100%;
    height: 224px;
    min-height: 0;
  }
  .reel__content {
    padding: 28px 20px;
  }
  .reel__quote {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reel.is-mounted .reel__col {
    transition: none;
  }
  .reel__char {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .reel__exit {
    animation: none;
  }
  .reel__btn {
    transition: none;
  }
}

/* ===================== WATCH PLAYER (microdot /work/gstar#watch clone) =====================
   Fullscreen black overlay that rises up from the bottom when a work row is clicked.
   All sizing/positions matched 1:1 to microdot.vision: 12-col header grid, 14px
   uppercase labels, 11px bordered tag pills, 24px white squircle buttons, a 66vw
   16:9 video with a 48px white play button, and a full-width filmstrip scrubber that
   (like microdot) only appears once playback has started. */
.watch {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  background: #000;
  color: #fff;
  transform: translateY(100%);
  visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0s linear 0.6s;
}
.watch.is-open {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.watch.is-light { background: #f3f1ea; color: #111; }

/* ---- top bar: 12-column grid, exactly like microdot's SecondaryHeader ---- */
.watch__bar {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 16px;
  align-items: center;
  padding: 16px;
}
.watch__bar .t { font-size: 14px; letter-spacing: 0; }
.watch__client { grid-column: 1 / 5; }
.watch__title  { grid-column: 5 / 9; text-align: left; white-space: nowrap; }
.watch__tagwrap { grid-column: 9 / 12; display: flex; align-items: center; gap: 6px; }
.watch__tag {
  border: 1px solid currentColor;
  border-radius: 6px;
  padding: 2px 4px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.watch__buttons {
  grid-column: 12 / 13;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.watch__icon {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.watch__icon svg { width: 16px; height: 16px; display: block; }
.watch__icon--solid { background: #fff; color: #0d0d0d; }
.watch.is-light .watch__icon--solid { background: #111; color: #fff; }
.watch__icon:hover { opacity: 0.8; }
.watch__icon--solid:hover { opacity: 1; transform: scale(1.06); }

/* ---- video stage: 66vw 16:9, capped by available height ---- */
.watch__stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.watch__video {
  width: min(65vw, calc((100svh - 216px) * 16 / 9));
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
  background: #000;
}
.watch__playbig {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px; height: 48px;
  border: none;
  border-radius: 16px;
  background: #fff;
  color: #0d0d0d;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.watch__playbig svg { width: 20px; height: 20px; margin-left: 2px; }
.watch.is-playing .watch__playbig { opacity: 0; transform: scale(0.8); pointer-events: none; }

/* ---- bottom control row + filmstrip: hidden until playback starts ---- */
.watch__controls {
  position: absolute;
  left: 0; right: 0;
  bottom: 96px;                 /* sits directly above the 80px strip (16px bottom inset) */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 8px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.watch__ctl-left, .watch__ctl-right { display: flex; align-items: center; gap: 8px; }
.watch__controls .watch__icon { width: 32px; height: 32px; border-radius: 8px; }
.watch__controls .watch__icon svg { width: 18px; height: 18px; }

/* filmstrip: 80px tall, 16px side + bottom margins, no border (the rounded frame
   strip lives on the inner frames wrapper so the mini-player can pop past the edges) */
.watch__strip {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  display: flex;
  height: 80px;
  cursor: pointer;
  user-select: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.watch.is-started .watch__controls { opacity: 1; }
.watch.is-started .watch__strip { opacity: 1; transform: translateY(0); }

/* inner frames wrapper carries the 8px radius + clips the frames (set in JS too) */
.watch__frames {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
.watch__strip .wf {
  flex: 1 1 0;
  min-width: 0;
  background-size: cover;
  background-position: center;
}
/* the small video player that pops onto the filmstrip on hover — 156×88, 8px radius,
   clean 1px outline, no shadow; shows the hovered frame + timestamp (microdot 1:1) */
.watch__handle {
  position: absolute;
  top: -4px; bottom: -4px;
  width: 156px;
  margin-left: -78px;
  border: 1px solid #fff;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  pointer-events: none;
  visibility: hidden;
  will-change: left;            /* tracks the cursor 1:1 — no position transition (that lagged) */
}
.watch.is-scrub .watch__handle { visibility: visible; }
.watch.is-light .watch__handle { border-color: #111; }
.watch__handle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.watch__handle span {
  position: absolute; left: 0; right: 0; bottom: 8px;
  text-align: center; font-size: 12px; color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

@media (max-width: 760px) {
  .watch__client { grid-column: 1 / 5; }
  .watch__title { grid-column: 5 / 9; font-size: 13px; }
  .watch__tagwrap { display: none; }
  .watch__buttons { grid-column: 9 / 13; }
  .watch__video { width: min(94vw, calc((100svh - 168px) * 16 / 9)); }
  .watch__strip { height: 64px; left: 12px; right: 12px; bottom: 12px; }
  .watch__controls { bottom: 84px; }
  .watch__handle { width: 124px; margin-left: -62px; }
}

/* ===== XL HOMEPAGE ===== */
.xl-hero,
.xl-trust,
.xl-svc,
.xl-bene,
.xl-cta,
.xl-footer,
.xl-service-page,
.xl-sp-hero,
.xl-sp-brands,
.xl-sp-work,
.xl-sp-deliver,
.xl-sp-process,
.xl-sp-faq {
  background: #0d0d0d;
  color: #ffffff;
}

.xl-wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.xl-section-head {
  text-align: center;
  margin: 0 auto clamp(28px, 5vh, 48px);
}

.xl-eyebrow {
  margin: 0 0 10px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--muted);
}

.xl-section-head h2,
.xl-cta__content h2 {
  margin: 0;
  font-family: "Louize", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--fg);
}

.xl-sub,
.xl-cta__content > p:not(.xl-eyebrow) {
  max-width: 520px;
  margin: 12px auto 0;
  font-family: var(--font);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.5;
  color: var(--muted);
}

.xl-hero {
  position: relative;
  min-height: min(88vh, 860px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 112px clamp(20px, 5vw, 48px) 72px;
  isolation: isolate;
}

.xl-hero__glow,
.xl-cta__glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 48%;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 24% at 50% 102%, rgba(255,255,255,0.75), rgba(255,255,255,0.2) 45%, transparent 70%),
    radial-gradient(ellipse 120% 70% at 50% 108%, rgba(255,255,255,0.38), rgba(255,255,255,0.12) 40%, transparent 68%);
  filter: blur(12px);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.xl-hero__glow::after,
.xl-cta__glow::after {
  content: none;
}

.xl-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.xl-hero h1 {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(40px, 6.2vw, 82px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.xl-hero__content p {
  max-width: 460px;
  margin: 20px auto 0;
  font-family: var(--font);
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.5;
  color: var(--muted);
}

.xl-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.xl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: transform 200ms ease, opacity 200ms ease;
}

.xl-btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.xl-btn--primary {
  background: #ffffff;
  color: #000000;
}

.xl-btn--ghost {
  background: #111113;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.24);
}

.xl-trust {
  width: 100%;
  padding: clamp(24px, 4vh, 40px) 0 clamp(72px, 11vh, 140px);
  overflow: hidden;
}

.xl-trust__caption {
  margin: 0 0 22px;
  text-align: center;
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.2;
  color: var(--muted);
}

.xl-trust .atom-ticker {
  margin-top: 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.xl-trust .atom-ticker__track {
  align-items: center;
  gap: 56px;
  animation-duration: 64s;
}

.xl-trust .atom-tick img {
  height: 26px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1) brightness(10);
  opacity: 0.8;
}

.xl-svc,
.xl-bene,
.xl-cta {
  padding: clamp(72px, 11vh, 140px) 0;
}

.testi__inner {
  padding: clamp(72px, 11vh, 140px) clamp(20px, 5vw, 48px);
}

.xl-service-page {
  min-height: 100vh;
}

.xl-sp-hero {
  min-height: min(92vh, 880px);
  padding: clamp(120px, 14vh, 150px) 0 clamp(72px, 11vh, 140px);
  text-align: center;
}

.xl-sp-hero .xl-tag {
  margin: 0 auto 18px;
}

.xl-sp-hero h1 {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--font);
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.xl-sp-sub {
  max-width: 560px;
  margin: 18px auto 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}

.xl-sp-media,
.xl-sp-work-media {
  position: relative;
  width: min(760px, 100%);
  aspect-ratio: 16 / 9;
  margin: clamp(34px, 6vh, 62px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: #101013;
}

.xl-sp-work-media {
  width: min(900px, 100%);
  margin-top: 0;
}

.xl-sp-media img,
.xl-sp-media video,
.xl-sp-work-media img,
.xl-sp-work-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xl-sp-media--portrait video {
  object-position: center 30%;
}

.xl-sp-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(760px, 100%);
  margin: 14px auto 0;
}

.xl-sp-chip {
  padding: 14px 18px;
  text-align: left;
  background: #101013;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
}

.xl-sp-chip h2 {
  margin: 0;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
}

.xl-sp-chip p {
  margin: 5px 0 0;
  font-family: var(--font);
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted);
}

.xl-sp-brands,
.xl-sp-work,
.xl-sp-deliver,
.xl-sp-process,
.xl-sp-faq {
  padding: clamp(72px, 11vh, 140px) 0;
}

.xl-sp-brands .xl-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.xl-sp-brands p {
  margin: 0;
  font-family: var(--font);
  font-size: 12px;
  line-height: 1.2;
  color: var(--muted);
}

.xl-sp-brand-logos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.xl-sp-brand-logos img {
  height: 22px;
  width: auto;
  max-width: 138px;
  object-fit: contain;
  filter: grayscale(1) brightness(10);
  opacity: 0.8;
}

.xl-sp-mini-grid,
.xl-sp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.xl-sp-mini-grid {
  width: min(900px, 100%);
  margin: 18px auto 0;
}

.xl-sp-mini,
.xl-sp-card {
  background: #101013;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}

.xl-sp-mini {
  padding: 20px;
}

.xl-sp-mini h3 {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
}

.xl-sp-mini p {
  margin: 8px 0 0;
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.xl-sp-card-grid {
  max-width: 1060px;
  margin: 0 auto;
}

.xl-sp-card {
  padding: 28px;
}

.xl-sp-card span {
  display: block;
  margin: 0 0 18px;
  font-family: var(--font);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.xl-sp-card h3 {
  margin: 0 0 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
}

.xl-sp-card p {
  margin: 0;
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.xl-sp-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 18px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: start;
}

.xl-sp-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.xl-sp-step {
  overflow: hidden;
  background: #101013;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}

.xl-sp-step button {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  width: 100%;
  padding: 18px 20px;
  text-align: left;
}

.xl-sp-step button span,
.xl-sp-check {
  font-family: var(--font);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.xl-sp-step button strong,
.xl-sp-step--check strong {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
}

.xl-sp-step__body {
  margin: -4px 20px 18px 74px;
  font-family: var(--font);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}

.xl-sp-step__body[hidden] {
  display: none;
}

.xl-sp-step--check {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 18px 20px;
}

.xl-sp-check {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: #ffffff;
}

.xl-sp-check svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.xl-sp-step--check p {
  margin: 6px 0 0;
  font-family: var(--font);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}

.xl-sp-process-card {
  position: sticky;
  top: 96px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background:
    radial-gradient(ellipse 100% 70% at 50% 105%, rgba(255,255,255,0.12), transparent 64%),
    #101013;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}

.xl-sp-process-card span {
  display: block;
  margin: 0 0 18px;
  font-family: var(--font);
  font-size: 72px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.xl-sp-process-card h3 {
  max-width: 320px;
  margin: 0;
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
}

.xl-sp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}

.xl-sp-faq-list details {
  background: #101013;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}

.xl-sp-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  list-style: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: #ffffff;
}

.xl-sp-faq-list summary::-webkit-details-marker {
  display: none;
}

.xl-sp-faq-list summary span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.65;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.xl-sp-faq-list details[open] summary span {
  transform: rotate(225deg) translateY(-2px);
}

.xl-sp-faq-list details > p {
  margin: -4px 20px 16px;
  max-width: 660px;
  font-family: var(--font);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}

.xl-svc__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.xl-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #101013;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: #ffffff;
  transition:
    transform 300ms cubic-bezier(0.22,1,0.36,1),
    border-color 300ms cubic-bezier(0.22,1,0.36,1),
    box-shadow 300ms cubic-bezier(0.22,1,0.36,1);
}

.xl-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.22);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10),
    0 24px 60px rgba(0,0,0,0.5),
    0 0 48px rgba(255,255,255,0.05);
}

.xl-card__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  margin: 10px;
  background: #0b0b0d;
}

.xl-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.22,1,0.36,1);
}

.xl-card__img--faceless {
  object-position: center center;
}

.xl-card:hover .xl-card__thumb img {
  transform: scale(1.05);
}

.xl-card__body {
  display: block;
  padding: 8px 18px 20px;
}

.xl-card__top {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 23px;
}

.xl-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-family: var(--font);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.xl-card__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  opacity: 0.5;
  transform: translateY(-50%);
  transition: transform 300ms cubic-bezier(0.22,1,0.36,1), opacity 300ms cubic-bezier(0.22,1,0.36,1);
}

.xl-card:hover .xl-card__arrow {
  transform: translate(2px, calc(-50% - 2px));
  opacity: 1;
}

.xl-card h3 {
  margin: 12px 0 6px;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
}

.xl-card p {
  margin: 0;
  font-family: var(--font);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}

.xl-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.xl-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
}

.xl-card li::before {
  content: "";
  width: 3px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

.xl-bene__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1060px;
  margin: 0 auto;
}

.xl-bene__card {
  padding: 36px 28px;
  text-align: center;
  background: #101013;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}

.xl-bene__icon {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--fg);
}

.xl-bene__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.xl-bene__card h3 {
  margin: 14px 0 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
}

.xl-bene__card p {
  max-width: 380px;
  margin: 0 auto;
  font-family: var(--font);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}

.xl-cta__panel {
  position: relative;
  overflow: hidden;
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(56px, 9vh, 96px) 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: #0f0f11;
  text-align: center;
  isolation: isolate;
}

.xl-cta__glow {
  height: 55%;
}

.xl-cta__content {
  position: relative;
  z-index: 1;
}

.xl-cta .xl-actions {
  margin-top: 28px;
}

.xl-footer {
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.xl-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.7fr) repeat(3, minmax(140px, 1fr));
  gap: clamp(28px, 5vw, 64px);
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.xl-footer__mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.xl-footer__mark img {
  width: auto;
  height: 28px;
}

.xl-footer__mark span {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
}

.xl-footer__brand p {
  max-width: 260px;
  margin: 16px 0 26px;
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.xl-footer__label,
.xl-footer__col h3 {
  display: block;
  margin: 0 0 14px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.xl-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.xl-footer__social a {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--muted);
  transition: color 200ms ease, transform 200ms ease;
}

.xl-footer__social a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.xl-footer__social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.xl-footer__col,
.xl-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.xl-footer__col a,
.xl-footer__contact a {
  display: inline-flex;
  margin: 0 0 10px;
  font-family: var(--font);
  font-size: 13.5px;
  line-height: 1.35;
  color: rgba(255,255,255,0.72);
  transition: color 200ms ease;
}

.xl-footer__col a:hover,
.xl-footer__contact a:hover {
  color: #ffffff;
}

.xl-footer__contact h3 {
  margin: 0 0 12px;
  font-family: "Louize", Georgia, serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.05;
  color: #ffffff;
}

.xl-footer__bottom {
  max-width: 1160px;
  margin: 52px auto 0;
  padding: 22px clamp(20px, 5vw, 48px) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.xl-footer__bottom p {
  margin: 0;
  font-family: var(--font);
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}

.xl-motion .xl-trust,
.xl-motion .xl-svc,
.xl-motion .xl-bene,
.xl-motion .testi,
.xl-motion .xl-sp-reveal,
.xl-motion .xl-cta,
.xl-motion .xl-footer {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.xl-motion .xl-trust.is-in,
.xl-motion .xl-svc.is-in,
.xl-motion .xl-bene.is-in,
.xl-motion .testi.is-in,
.xl-motion .xl-sp-reveal.is-in,
.xl-motion .xl-cta.is-in,
.xl-motion .xl-footer.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .xl-svc__grid,
  .xl-sp-process-grid {
    grid-template-columns: 1fr;
  }

  .xl-sp-process-card {
    position: relative;
    top: auto;
    min-height: 240px;
  }
}

@media (max-width: 720px) {
  .xl-hero {
    min-height: min(88vh, 720px);
    padding-top: 112px;
  }

  .xl-hero h1 br {
    display: none;
  }

  .xl-sp-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .xl-sp-chips,
  .xl-sp-mini-grid,
  .xl-sp-card-grid,
  .xl-bene__grid,
  .xl-footer__grid {
    grid-template-columns: 1fr;
  }

  .xl-sp-brands .xl-wrap {
    flex-direction: column;
    gap: 18px;
  }

  .xl-sp-brand-logos {
    flex-wrap: wrap;
    gap: 24px;
  }

  .xl-sp-step button,
  .xl-sp-step--check {
    grid-template-columns: 32px 1fr;
    padding: 16px;
  }

  .xl-sp-step__body {
    margin: -2px 16px 16px 60px;
  }

  .xl-footer__bottom {
    margin-top: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .xl-btn,
  .xl-card,
  .xl-card__thumb img,
  .xl-card__arrow,
  .xl-footer__social a {
    transition: none;
  }

  .xl-motion .xl-trust,
  .xl-motion .xl-svc,
  .xl-motion .xl-bene,
  .xl-motion .testi,
  .xl-motion .xl-sp-reveal,
  .xl-motion .xl-cta,
  .xl-motion .xl-footer {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== PASS 10 ADDITIONS ===== */
.xl-trust__band {
  min-height: 96px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
}

.xl-trust__band .atom-ticker {
  width: 100%;
}

.xl-trust__band .atom-ticker__track {
  gap: 0;
}

.xl-trust__band .atom-tick {
  min-height: 96px;
  padding-inline: 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.xl-clients {
  padding: clamp(72px, 11vh, 140px) 0;
  overflow: hidden;
  background: #0d0d0d;
  color: #ffffff;
}

.xl-clients__stage-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 760px) 24px;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.xl-clients__stage {
  position: relative;
  width: min(760px, 100%);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: #101013;
}

.xl-clients__play {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
}

.xl-clients__play:disabled {
  cursor: default;
  opacity: 1;
}

.xl-clients__play span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}

.xl-clients__attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.xl-clients__attribution img {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center 30%;
}

.xl-clients__attribution strong,
.xl-clients__attribution span {
  display: block;
}

.xl-clients__attribution strong {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  color: #ffffff;
}

.xl-clients__attribution span {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.25;
  color: var(--muted);
}

.xl-clients__marquee {
  margin-top: 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.xl-clients__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: atom-scroll 50s linear infinite;
}

.xl-clients__marquee:hover .xl-clients__track {
  animation-play-state: paused;
}

.xl-clients__quote {
  flex: 0 0 230px;
  width: 230px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: #101013;
}

.xl-clients__quote p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.9);
}

.xl-clients__meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
}

.xl-clients__mark,
.xl-clients__photo {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  overflow: hidden;
}

.xl-clients__mark {
  display: grid;
  place-items: center;
  background: var(--accent);
}

.xl-clients__mark img {
  width: 62%;
  max-height: 62%;
  object-fit: contain;
}

.xl-clients__photo {
  border-radius: 999px;
  object-fit: cover;
  object-position: center 30%;
}

.xl-clients__meta strong,
.xl-clients__meta span {
  display: block;
}

.xl-clients__meta strong {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
}

.xl-clients__meta span {
  margin-top: 2px;
  font-size: 11.5px;
  line-height: 1.2;
  color: var(--muted);
}

.xl-sp-process-faces {
  position: absolute;
  inset: 28px;
  pointer-events: none;
}

.xl-sp-process-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 16px;
  opacity: 0;
  transition: opacity 300ms ease;
}

.xl-sp-process-face.is-active {
  opacity: 1;
}

.xl-sp-process-face img {
  width: min(170px, 58%);
  height: auto;
  margin: 0 auto 16px;
  object-fit: contain;
}

.xl-sp-process-face > .xl-sp-check {
  margin: 0 0 18px;
  font-style: normal;
}

.xl-sp-process-dashes {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.xl-sp-process-dashes i {
  width: 10px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  transition: width 300ms ease, background-color 300ms ease;
}

.xl-sp-process-dashes i.is-active {
  width: 22px;
  background: #ffffff;
}

.xl-motion .xl-clients {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.xl-motion .xl-clients.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .xl-clients__stage-row {
    grid-template-columns: 1fr;
  }

  .xl-clients__arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .xl-clients__marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .xl-clients__track {
    animation: none;
  }

  .xl-sp-process-face,
  .xl-sp-process-dashes i,
  .xl-motion .xl-clients {
    transition: none;
  }

  .xl-motion .xl-clients {
    opacity: 1;
    transform: none;
  }
}
