@import url("fonts.css?v=3");
@import url("cursor.css?v=1");

* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #050505;
  --ink: #fff;
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.15);
  --red: #e50914;
  --floor-h: clamp(150px, 18svh, 210px);
  --floor-overlap: 18px;
  --reflection-drop: clamp(16px, 2.2svh, 26px);
  --side-pad: clamp(18px, 3vw, 64px);
  --reel-gap: clamp(10px, 0.95vw, 16px);
  --reel-height: min(82svh, calc(100svh - var(--floor-h) - 14px), 900px);
  --closed-width: clamp(90px, 7.2vw, 132px);
  --open-width: min(35vw, calc(var(--reel-height) * 0.5625));
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  overflow-x: hidden;
}

h1,
h2,
h3,
.statement-panel p,
.solution-scroll__question,
.service-card__toggle,
.client-showcase__backdrop,
.site-footer__logo {
  font-family: var(--font-display);
}

body::before {
  content: "";
  position: fixed;
  top: -34px;
  left: 0;
  z-index: 24;
  width: 100%;
  height: clamp(300px, 38svh, 430px);
  pointer-events: none;
  background: radial-gradient(ellipse 58vw 360px at 50% -18px, rgba(229, 9, 20, 0.7), rgba(229, 9, 20, 0.36) 24%, rgba(229, 9, 20, 0.16) 50%, rgba(229, 9, 20, 0.05) 74%, rgba(229, 9, 20, 0) 100%);
  filter: blur(11px);
  opacity: 0;
  transform: translateY(-22px);
  transition:
    opacity 720ms cubic-bezier(0.16, 0.84, 0.24, 1),
    transform 900ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

body.is-hero-condensed::before {
  opacity: 1;
  transform: translateY(0);
}

body::after {
  content: "";
  position: fixed;
  left: 50%;
  bottom: -44px;
  z-index: 24;
  width: min(100%, 980px);
  height: clamp(220px, 30svh, 360px);
  pointer-events: none;
  background: radial-gradient(
    ellipse 58% 240px at 50% 100%,
    rgba(229, 9, 20, 0.62),
    rgba(229, 9, 20, 0.32) 26%,
    rgba(229, 9, 20, 0.13) 54%,
    rgba(229, 9, 20, 0.04) 76%,
    rgba(229, 9, 20, 0) 100%
  );
  filter: blur(10px);
  opacity: 0;
  transform: translateX(-50%) translateY(30px);
  transition:
    opacity 780ms cubic-bezier(0.16, 0.84, 0.24, 1),
    transform 900ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

body.is-page-bottom::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

button,
video {
  font: inherit;
}

.top-return-logo {
  position: fixed;
  top: max(6px, env(safe-area-inset-top));
  left: 50%;
  z-index: 30;
  width: clamp(176px, 20vw, 280px);
  display: block;
  padding: 10px 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-26px) scale(0.92);
  transition:
    opacity 1100ms ease,
    transform 1100ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.top-return-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 8px 22px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 16px rgba(229, 9, 20, 0.38));
}

.top-return-logo:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.82);
  outline-offset: 4px;
}

body.is-hero-return-visible .top-return-logo {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 82%, rgba(0, 0, 0, 0.82)),
    linear-gradient(180deg, #080808 0%, #050505 58%, #030303 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0) 22%);
  opacity: 0.32;
  z-index: 2;
}

.hero__shade {
  position: absolute;
  inset: auto 0 var(--floor-h);
  height: 16svh;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.28));
  z-index: 4;
  transition:
    opacity 760ms ease,
    transform 920ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.reel-wall {
  position: absolute;
  inset: 0;
  z-index: 5;
  transition:
    opacity 820ms cubic-bezier(0.16, 0.84, 0.24, 1),
    transform 980ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.reel-track {
  position: absolute;
  left: 50%;
  bottom: var(--floor-h);
  flex: 0 0 auto;
  width: max-content;
  min-width: max-content;
  max-width: none;
  height: var(--reel-height);
  display: flex;
  align-items: flex-end;
  gap: var(--reel-gap);
  padding: 0;
  overflow-x: visible;
  overflow-y: visible;
  overflow-anchor: none;
  transform: translateX(-50%);
  scroll-snap-type: none;
  scroll-padding-inline: var(--side-pad);
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
}

.reel-wall.is-measured:not(.is-scrollable) .reel-track {
  left: var(--reel-track-left);
  width: var(--reel-track-width);
  min-width: var(--reel-track-width);
  transform: none;
}

.reel-wall.is-scrollable .reel-track {
  left: 0;
  right: 0;
  width: 100%;
  min-width: 0;
  padding-inline: max(var(--side-pad), 24px);
  overflow-x: auto;
  transform: none;
  scroll-padding-inline: max(var(--side-pad), 24px);
}

.reel-track::-webkit-scrollbar {
  display: none;
}

.reel-card {
  position: relative;
  appearance: none;
  flex: 0 0 var(--closed-width);
  height: var(--reel-height);
  min-height: 360px;
  max-height: calc(100svh - var(--floor-h) - 14px);
  display: block;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  color: inherit;
  text-align: left;
  background: #111;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.56);
  backface-visibility: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transform-origin: center bottom;
  transition:
    flex-basis 460ms cubic-bezier(0.16, 0.84, 0.24, 1),
    opacity 280ms ease,
    transform 460ms cubic-bezier(0.16, 0.84, 0.24, 1),
    border-color 260ms ease;
  overflow-anchor: none;
  will-change: flex-basis, opacity, transform;
}

.reel-card::before,
.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.reel-card::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0) 28%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0) 24%);
}

.reel-card::after {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(0, 0, 0, 0);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.38);
  transition:
    background-color 280ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.reel-track.has-active .reel-card:not(.is-active) {
  opacity: 0.74;
  transform: scale(0.994);
}

.reel-track.has-active .reel-card:not(.is-active)::after {
  background-color: rgba(0, 0, 0, 0.48);
}

@media (hover: hover) and (pointer: fine) {
  .reel-track:has(.reel-card:hover) .reel-card:not(:hover):not(.is-active) {
    opacity: 0.74;
    transform: scale(0.994);
  }

  .reel-track:has(.reel-card:hover) .reel-card:not(:hover):not(.is-active)::after {
    background-color: rgba(0, 0, 0, 0.48);
  }
}

.reel-card:hover,
.reel-card:focus-visible,
.reel-card.is-active {
  flex-basis: var(--open-width);
  z-index: 5;
  opacity: 1;
  transform: scale(1.004);
  border-color: rgba(255, 255, 255, 0.28);
  outline: none;
}

.reel-wall.is-scrollable .reel-card {
  scroll-snap-align: center;
}

.reel-card:focus-visible {
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.86),
    0 0 0 5px rgba(229, 9, 20, 0.7),
    0 24px 56px rgba(0, 0, 0, 0.64);
}

.reel-card video,
.reel-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-card video {
  z-index: 1;
  opacity: 0;
  transition: opacity 220ms ease;
}

.reel-card.is-playing video {
  opacity: 1;
}

.reel-poster {
  z-index: 0;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.02);
}

.reel-title {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  min-height: 42px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.16;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.86);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.reel-card:hover .reel-title,
.reel-card:focus-visible .reel-title,
.reel-card.is-active .reel-title {
  opacity: 1;
  transform: translateY(0);
}

.sound-toggle {
  position: absolute;
  right: var(--side-pad);
  top: clamp(18px, 3svh, 34px);
  z-index: 10;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
  cursor: pointer;
}

.sound-toggle[hidden] {
  display: none;
}

.sound-toggle::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: rotate(-42deg);
  transition: opacity 180ms ease;
}

.sound-toggle.is-muted {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.42);
}

.sound-toggle.is-muted::after {
  opacity: 1;
}

.sound-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sound-toggle:hover,
.sound-toggle:focus-visible {
  background: var(--red);
  border-color: rgba(255, 255, 255, 0.54);
  outline: none;
}

.reel-nav {
  position: absolute;
  top: calc((100svh - var(--floor-h)) / 2);
  z-index: 11;
  width: 46px;
  height: 66px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.46);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition:
    opacity 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.reel-nav--prev {
  left: max(10px, calc(var(--side-pad) * 0.42));
}

.reel-nav--next {
  right: max(10px, calc(var(--side-pad) * 0.42));
}

.hero.has-reel-overflow .reel-nav {
  opacity: 0.72;
  pointer-events: auto;
}

.hero.has-reel-overflow .reel-nav:hover,
.hero.has-reel-overflow .reel-nav:focus-visible {
  opacity: 1;
  background: rgba(229, 9, 20, 0.88);
  border-color: rgba(255, 255, 255, 0.48);
  outline: none;
  transform: translateY(-50%) scale(1.03);
}

.hero.has-reel-overflow .reel-nav:disabled {
  opacity: 0.18;
  pointer-events: none;
}

.reel-nav svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-logo {
  position: absolute;
  left: 50%;
  bottom: clamp(64px, calc(var(--floor-h) * 0.41), 100px);
  z-index: 12;
  width: min(54vw, 680px);
  min-width: 280px;
  pointer-events: none;
  transform: translateX(-50%) translateY(-4px);
  filter:
    drop-shadow(0 24px 38px rgba(0, 0, 0, 0.88))
    drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
  transition:
    opacity 1500ms ease,
    transform 1500ms cubic-bezier(0.16, 0.84, 0.24, 1),
    filter 1200ms ease;
}

.floating-logo__mark,
.floating-logo__reflection {
  display: block;
  width: 100%;
  height: auto;
}

.floating-logo__reflection {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  opacity: 0.26;
  transform: scaleY(-1);
  transform-origin: center center;
  filter: blur(0.8px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.16) 66%, rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.16) 66%, rgba(0, 0, 0, 0));
}

.mirror-strip {
  position: absolute;
  inset: auto 0 0;
  z-index: 4;
  height: calc(var(--floor-h) + var(--floor-overlap));
  min-width: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(10, 10, 10, 0.66) 18%, rgba(2, 2, 2, 0.94) 100%),
    radial-gradient(ellipse at 50% 24%, rgba(42, 42, 42, 0.14), rgba(16, 16, 16, 0.12) 36%, rgba(0, 0, 0, 0) 72%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(18, 18, 18, 0.1) 35%, rgba(0, 0, 0, 0.18) 68%, rgba(0, 0, 0, 0.22)),
    rgba(3, 3, 3, 0.9);
  box-shadow:
    inset 0 28px 50px rgba(48, 48, 48, 0.12),
    inset 0 -72px 100px rgba(0, 0, 0, 0.62),
    0 -30px 88px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px) saturate(1.16);
  transition:
    opacity 820ms cubic-bezier(0.16, 0.84, 0.24, 1),
    transform 980ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.mirror-strip::before,
.mirror-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mirror-strip::before {
  z-index: 4;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(18, 18, 18, 0.2) 28%, rgba(0, 0, 0, 0.74) 100%);
  opacity: 0.72;
}

.mirror-strip::after {
  z-index: 5;
  background:
    radial-gradient(ellipse at 50% 12%, rgba(52, 52, 52, 0.12), rgba(0, 0, 0, 0) 46%),
    linear-gradient(178deg, rgba(0, 0, 0, 0) 0%, rgba(34, 34, 34, 0.18) 16%, rgba(0, 0, 0, 0.04) 40%, rgba(0, 0, 0, 0) 62%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0) 78%, rgba(0, 0, 0, 0.86));
}

.mirror-track {
  position: absolute;
  left: 50%;
  top: calc(var(--floor-overlap) + var(--reflection-drop));
  width: max-content;
  height: calc(var(--floor-h) - var(--reflection-drop));
  display: flex;
  align-items: flex-start;
  gap: var(--reel-gap);
  padding: 0;
  overflow: visible;
  opacity: 0.54;
  transform: translateX(-50%);
  filter: blur(0.5px) grayscale(0.24) saturate(0.62) contrast(1.04) brightness(0.86);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.5) 28%, rgba(0, 0, 0, 0.18) 70%, rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.5) 28%, rgba(0, 0, 0, 0.18) 70%, rgba(0, 0, 0, 0));
}

.reel-wall.is-measured:not(.is-scrollable) + .floating-logo + .mirror-strip .mirror-track,
.reel-wall.is-measured:not(.is-scrollable) ~ .mirror-strip .mirror-track {
  left: var(--reel-track-left);
  width: var(--reel-track-width);
  transform: none;
}

.reel-wall.is-scrollable + .floating-logo + .mirror-strip .mirror-track,
.reel-wall.is-scrollable ~ .mirror-strip .mirror-track {
  left: 0;
  width: 100%;
  min-width: 0;
  padding-inline: max(var(--side-pad), 24px);
  overflow: hidden;
  transform: none;
}

.mirror-reel {
  position: relative;
  flex: 0 0 var(--closed-width);
  height: var(--reel-height);
  overflow: hidden;
  border-radius: 5px;
  opacity: 0.86;
  transition:
    flex-basis 460ms cubic-bezier(0.16, 0.84, 0.24, 1),
    opacity 280ms ease,
    filter 260ms ease;
}

.mirror-reel.is-active {
  flex-basis: var(--open-width);
  opacity: 1;
  filter: brightness(1.06);
}

.mirror-reel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scaleY(-1) scale(1.05);
  transform-origin: center center;
}

body.is-hero-condensed .reel-wall,
body.is-hero-condensed .mirror-strip,
body.is-hero-condensed .hero__shade {
  opacity: 0;
  transform: translateY(-22px);
  pointer-events: none;
}

body.is-hero-condensed .floating-logo {
  opacity: 0;
  transform: translateX(-50%) translateY(-30px) scale(0.9);
  filter:
    drop-shadow(0 16px 24px rgba(0, 0, 0, 0.56))
    brightness(0);
}

body.is-hero-condensed .sound-toggle,
body.is-hero-condensed .reel-nav {
  opacity: 0;
  pointer-events: none;
  transition-duration: 520ms;
}

.after-hero {
  position: relative;
  min-height: 100svh;
  background: #050505;
}

.statement-scroll {
  position: relative;
  min-height: 430svh;
  isolation: isolate;
  background: #050505;
}

.statement-scroll::before,
.statement-scroll::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 34svh;
  pointer-events: none;
}

.statement-scroll::before {
  top: 0;
  background: linear-gradient(180deg, #050505, rgba(5, 5, 5, 0));
}

.statement-scroll::after {
  bottom: 0;
  background: linear-gradient(0deg, #050505, rgba(5, 5, 5, 0));
}

.statement-scroll__pin {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(96px, 14svh, 150px) var(--side-pad) clamp(76px, 11svh, 124px);
  overflow: hidden;
}

.statement-scroll__stage {
  position: relative;
  width: min(100%, 1460px);
  min-height: clamp(260px, 38svh, 430px);
  display: grid;
  place-items: center;
}

.statement-panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: clamp(24px, 3.4svh, 38px);
  pointer-events: none;
  opacity: var(--statement-opacity, 0);
  transform:
    translateY(calc(var(--statement-y, 30) * 1px))
    scale(var(--statement-scale, 0.98));
  transition:
    opacity 280ms ease,
    transform 360ms cubic-bezier(0.16, 0.84, 0.24, 1);
  will-change: opacity, transform;
}

.statement-panel.is-active {
  pointer-events: auto;
}

.statement-panel.statement-panel--creative p {
  width: min(1120px, 100%);
  max-width: none;
}

.statement-break--desktop {
  display: block;
}

.statement-panel p,
.statement-panel h1 {
  max-width: 15ch;
  margin: 0;
  text-align: center;
  font-size: clamp(44px, 6.25vw, 104px);
  font-weight: 520;
  line-height: 1.06;
  letter-spacing: 0;
  color: #fff;
  text-wrap: balance;
  text-shadow: none;
}

.glow-word {
  color: #fff;
  text-shadow: none;
}

.graffiti-accent {
  font-family: var(--font-accent);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.statement-panel .graffiti-accent--statement {
  font-size: 1.04em;
  line-height: 0.94;
}

.statement-brand {
  display: inline-block;
  white-space: nowrap;
}

.graffiti-accent--keep {
  font-size: 1.12em;
  line-height: 0.9;
  white-space: nowrap;
}

.graffiti-accent--services {
  display: inline-block;
  margin-left: 0.08em;
  font-size: 1.16em;
  line-height: 0.9;
}

.graffiti-accent--client {
  font-size: 1.08em;
  line-height: 0.9;
}

.highlight-glow {
  color: #fff;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.98),
    0 0 26px rgba(255, 255, 255, 0.58),
    0 0 48px rgba(229, 9, 20, 0.38),
    0 0 88px rgba(229, 9, 20, 0.24),
    0 18px 52px rgba(0, 0, 0, 0.78);
}

.orbit-button {
  position: relative;
  isolation: isolate;
  min-width: 178px;
  min-height: 50px;
  display: inline-grid;
  place-items: center;
  padding: 0 23px;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 30px rgba(229, 9, 20, 0.14),
    0 18px 42px rgba(0, 0, 0, 0.58);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
}

.orbit-button::before,
.orbit-button::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.orbit-button::before {
  inset: -62%;
  z-index: -2;
  background: conic-gradient(
    from 0deg,
    rgba(229, 9, 20, 0),
    rgba(229, 9, 20, 0) 64%,
    rgba(229, 9, 20, 0.26) 71%,
    rgba(255, 24, 38, 0.92) 78%,
    rgba(255, 158, 162, 1) 83%,
    rgba(255, 45, 56, 0.82) 90%,
    rgba(229, 9, 20, 0.18) 96%,
    rgba(229, 9, 20, 0)
  );
  filter: blur(0.14px) drop-shadow(0 0 9px rgba(229, 9, 20, 0.74));
  animation: orbit-border-spin 4.4s linear infinite;
}

.orbit-button::after {
  inset: 1px;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    rgba(3, 3, 3, 0.94);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.orbit-button:hover,
.orbit-button:focus-visible {
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 28px rgba(229, 9, 20, 0.16);
}

.orbit-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.86);
  outline-offset: 4px;
}

@keyframes orbit-border-spin {
  to {
    transform: rotate(1turn);
  }
}

.client-showcase {
  position: relative;
  min-height: 112svh;
  display: grid;
  align-items: center;
  padding: clamp(108px, 16svh, 176px) var(--side-pad);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, #050505 0%, #070707 42%, #040404 100%);
}

.client-showcase::before,
.client-showcase::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.client-showcase::before {
  left: 50%;
  top: 7svh;
  z-index: -2;
  width: min(980px, 76vw);
  height: min(420px, 36svh);
  background: radial-gradient(ellipse at center, rgba(229, 9, 20, 0.24), rgba(229, 9, 20, 0.08) 38%, rgba(229, 9, 20, 0) 74%);
  filter: blur(14px);
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  transition:
    opacity 1300ms ease,
    transform 1500ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.client-showcase::after {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(ellipse 80% 62% at 50% 48%, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0));
  -webkit-mask-image: radial-gradient(ellipse 80% 62% at 50% 48%, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0));
  opacity: 0.22;
}

.client-showcase.is-visible::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.client-showcase__inner {
  position: relative;
  width: min(100%, 1500px);
  margin: 0 auto;
}

.client-showcase__intro {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 900ms ease,
    transform 1100ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.client-showcase.is-visible .client-showcase__intro {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.client-fade-line,
[data-top-fade] {
  opacity: var(--top-edge-opacity, var(--client-line-visibility, 1));
  transition: opacity 420ms ease;
}

.client-showcase__eyebrow {
  display: inline-block;
  margin-bottom: clamp(12px, 1.6svh, 18px);
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.client-showcase h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5.8vw, 96px);
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
  text-shadow:
    0 0 22px rgba(255, 255, 255, 0.12),
    0 24px 64px rgba(0, 0, 0, 0.86);
}

.client-showcase h2 .client-fade-line {
  display: inline-block;
  margin-inline: 0.055em;
}

.client-showcase__stage {
  position: relative;
  min-height: clamp(540px, 62svh, 730px);
  display: grid;
  place-items: center;
  margin-top: clamp(23px, 3.84svh, 45px);
}

.client-showcase__backdrop {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 0;
  color: rgba(255, 255, 255, 0.026);
  font-size: clamp(112px, 17vw, 258px);
  font-weight: 850;
  line-height: 0.8;
  letter-spacing: 0;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 48px rgba(229, 9, 20, 0.08);
  user-select: none;
}

.client-grid {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  grid-auto-flow: dense;
  gap: clamp(12px, 1.25vw, 18px);
}

.client-card {
  position: relative;
  min-height: clamp(154px, 15vw, 214px);
  display: grid;
  place-items: center;
  padding: clamp(24px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018) 58%, rgba(229, 9, 20, 0.04)),
    rgba(10, 10, 10, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    0 26px 74px rgba(0, 0, 0, 0.48);
  opacity: 0;
  transform: translateY(38px) scale(0.98);
  transition:
    opacity 900ms ease,
    transform 1000ms cubic-bezier(0.16, 0.84, 0.24, 1),
    border-color 360ms ease,
    box-shadow 360ms ease;
  transition-delay: calc(var(--i) * 90ms);
  will-change: transform, opacity;
}

.client-card__content,
.client-card__replacement {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: inherit;
}

.client-card__content {
  z-index: 2;
  pointer-events: auto;
  overflow: hidden;
  border-radius: inherit;
  isolation: isolate;
}

.client-card__content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018) 58%, rgba(229, 9, 20, 0.04)),
    rgba(10, 10, 10, 0.72);
}

.client-card--simulated .client-card__content::before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.016) 58%, rgba(229, 9, 20, 0.035)),
    rgba(10, 10, 10, 0.72);
}

.client-card.is-erasing .client-card__content::before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018) 58%, rgba(229, 9, 20, 0.035)),
    #0a0a0a;
}

.client-card--simulated.is-erasing .client-card__content::before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.015) 58%, rgba(229, 9, 20, 0.032)),
    #0a0a0a;
}

.client-card__content > img,
.client-card__content > .client-card__text-logo,
.client-card__content > .client-card__name {
  z-index: 1;
}

.client-card__replacement {
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  filter: blur(3px);
  transform: scale(1.018);
  transition:
    opacity 520ms ease,
    filter 620ms ease,
    transform 720ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.client-card.is-erasing .client-card__replacement {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.client-showcase.is-visible .client-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.client-showcase.is-visible .client-card[data-top-fade] {
  opacity: var(--top-edge-opacity, 1);
}

.client-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18), rgba(229, 9, 20, 0.2), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: translateX(-58%);
  transition: opacity 360ms ease;
}

.client-card__orbit {
  --client-orbit-thickness: 2px;
  position: absolute;
  inset: -1px;
  z-index: 5;
  padding: var(--client-orbit-thickness);
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.client-card__orbit::before {
  content: "";
  position: absolute;
  inset: -62%;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    rgba(229, 9, 20, 0),
    rgba(229, 9, 20, 0) 64%,
    rgba(229, 9, 20, 0.26) 71%,
    rgba(255, 24, 38, 0.92) 78%,
    rgba(255, 158, 162, 1) 83%,
    rgba(255, 45, 56, 0.82) 90%,
    rgba(229, 9, 20, 0.18) 96%,
    rgba(229, 9, 20, 0)
  );
  filter: blur(0.14px) drop-shadow(0 0 9px rgba(229, 9, 20, 0.74));
  transform-origin: center;
}

.client-card.is-queued-swap .client-card__orbit {
  opacity: 1;
}

.client-card.is-queued-swap .client-card__orbit::before {
  animation: orbit-border-spin 2200ms linear 1;
}

.client-card.is-erasing .client-card__content {
  animation: client-card-erase 2200ms linear forwards;
}

.client-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -46px;
  width: 72%;
  height: 70px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(229, 9, 20, 0.18), rgba(229, 9, 20, 0));
  opacity: 0.42;
  transform: translateX(-50%);
}

.client-card:hover,
.client-card:focus-within {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 30px 86px rgba(0, 0, 0, 0.56),
    0 0 36px rgba(229, 9, 20, 0.1);
}

.client-card.is-queued-swap {
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 30px 86px rgba(0, 0, 0, 0.56),
    0 0 44px rgba(229, 9, 20, 0.28),
    0 0 92px rgba(229, 9, 20, 0.13);
}

.client-card.is-swap-prelighting {
  animation: client-card-swap-glow-prime 880ms ease-out forwards;
}

.client-card.is-swap-prelighting::after {
  animation: client-card-floor-glow-prime 880ms ease-out forwards;
}

.client-card.is-swap-settling {
  animation: client-card-swap-glow-settle 1200ms ease-out forwards;
}

.client-card.is-swap-settling::after {
  animation: client-card-floor-glow-settle 1200ms ease-out forwards;
}

.client-card:hover img,
.client-card:focus-within img,
.client-card:hover .client-card__text-logo,
.client-card:focus-within .client-card__text-logo {
  opacity: 0.58;
  filter:
    grayscale(0.28)
    contrast(1.02)
    brightness(0.82)
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.46));
}

.client-card:hover::before,
.client-card:focus-within::before {
  opacity: 1;
  animation: client-sheen 1400ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.client-card img {
  display: block;
  max-width: min(78%, 330px);
  max-height: clamp(58px, 7.6vw, 96px);
  object-fit: contain;
  opacity: 0.92;
  filter:
    grayscale(0.18)
    contrast(1.04)
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.46));
  transition:
    opacity 360ms ease,
    filter 360ms ease;
}

.client-card__text-logo {
  max-width: min(82%, 360px);
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(28px, 3.1vw, 50px);
  font-weight: 820;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.13),
    0 0 34px rgba(229, 9, 20, 0.16),
    0 14px 28px rgba(0, 0, 0, 0.5);
  transition:
    opacity 360ms ease,
    filter 360ms ease;
}

.client-card__name {
  position: absolute;
  left: clamp(16px, 1.5vw, 22px);
  bottom: clamp(14px, 1.4vw, 20px);
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.client-socials {
  position: absolute;
  top: clamp(14px, 1.5vw, 20px);
  right: clamp(14px, 1.5vw, 20px);
  z-index: 4;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  transition:
    opacity 280ms ease,
    transform 360ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.client-card:hover .client-socials,
.client-card:focus-within .client-socials {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.client-social {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  transform: translateY(6px);
  transition:
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 260ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.client-card:hover .client-social,
.client-card:focus-within .client-social {
  transform: translateY(0);
}

.client-card:hover .client-social:nth-child(2),
.client-card:focus-within .client-social:nth-child(2) {
  transition-delay: 35ms;
}

.client-card:hover .client-social:nth-child(3),
.client-card:focus-within .client-social:nth-child(3) {
  transition-delay: 70ms;
}

.client-social:hover,
.client-social:focus-visible {
  color: #fff;
  border-color: rgba(255, 82, 90, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 22px rgba(229, 9, 20, 0.3),
    0 14px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.client-social:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.78);
  outline-offset: 3px;
}

.client-social svg {
  width: 18px;
  height: 18px;
  display: block;
}

.client-card--nova img,
.client-card--barbecue img {
  max-height: clamp(74px, 9vw, 118px);
}

.client-card--nova img {
  max-height: clamp(92px, 10vw, 128px);
}

.client-card--barbecue img {
  border-radius: 50%;
}

.client-card--logaer img {
  filter:
    invert(1)
    grayscale(1)
    brightness(2.1)
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.46));
}

.client-card--logaer:hover img,
.client-card--logaer:focus-within img {
  filter:
    invert(1)
    grayscale(1)
    brightness(1.5)
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.46));
}

.client-card--asdesign img {
  max-width: min(86%, 380px);
}

.client-card--beerepoot img {
  max-width: min(86%, 370px);
  padding: 10px 12px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.9);
  filter:
    saturate(1.12)
    contrast(1.04)
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.42));
}

.client-card--beerepoot:hover img,
.client-card--beerepoot:focus-within img {
  filter:
    saturate(0.88)
    contrast(0.98)
    brightness(0.74)
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.42));
}

.client-card--simulated {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.016) 58%, rgba(229, 9, 20, 0.035)),
    rgba(10, 10, 10, 0.72);
}

.process-scroll {
  position: relative;
  min-height: 285svh;
  isolation: isolate;
  background:
    radial-gradient(ellipse 72% 42% at 50% 16%, rgba(229, 9, 20, 0.1), rgba(229, 9, 20, 0) 62%),
    linear-gradient(180deg, #040404 0%, #050505 48%, #030303 100%);
}

.process-scroll::before,
.process-scroll::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 34svh;
  pointer-events: none;
}

.process-scroll::before {
  top: 0;
  background: linear-gradient(180deg, #040404, rgba(4, 4, 4, 0));
}

.process-scroll::after {
  bottom: 0;
  background: linear-gradient(0deg, #030303, rgba(3, 3, 3, 0));
}

.process-scroll__pin {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(106px, 15svh, 156px) var(--side-pad) clamp(72px, 10svh, 116px);
  overflow: hidden;
}

.process-scroll__inner {
  width: 100%;
  max-width: 1500px;
  min-width: 0;
  margin: 0 auto;
}

.process-scroll__heading {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}

.process-scroll__eyebrow {
  display: block;
  margin-bottom: clamp(12px, 1.6svh, 18px);
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.process-scroll h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 4.9vw, 80px);
  font-weight: 560;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.26),
    0 0 38px rgba(229, 9, 20, 0.24),
    0 22px 58px rgba(0, 0, 0, 0.84);
}

.process-scroll__viewport {
  position: relative;
  width: 100%;
  max-width: 1420px;
  min-width: 0;
  margin: clamp(54px, 8svh, 92px) auto 0;
  overflow: hidden;
  padding-bottom: 80px;
  contain: paint;
}

.process-rail {
  width: max-content;
  display: flex;
  gap: 0;
  transform: translate3d(var(--process-x, 42vw), 0, 0);
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.process-step {
  position: relative;
  flex: 0 0 clamp(304px, 27vw, 390px);
  min-height: clamp(360px, 40svh, 460px);
  contain: paint;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:
    clamp(30px, 3.2vw, 48px)
    clamp(24px, 2.4vw, 38px)
    86px
    clamp(40px, 4vw, 62px);
  border: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.004)),
    rgba(2, 2, 2, 0.38);
  color: rgba(255, 255, 255, 0.42);
  opacity: var(--top-edge-opacity, 1);
  transition:
    opacity 420ms ease,
    color 520ms ease,
    background 520ms ease,
    box-shadow 520ms ease;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%, rgba(229, 9, 20, 0.08), rgba(229, 9, 20, 0) 58%);
  opacity: 0;
  transition: opacity 520ms ease;
}

.process-step::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(229, 9, 20, 0.02),
    rgba(229, 9, 20, 0.2) 18%,
    rgba(255, 25, 38, 0.56) 54%,
    rgba(229, 9, 20, 0.3) 84%,
    rgba(229, 9, 20, 0.04)
  );
  box-shadow:
    0 0 12px rgba(229, 9, 20, 0.14),
    1px 0 0 rgba(255, 255, 255, 0.018),
    -1px 0 0 rgba(255, 255, 255, 0.01);
  opacity: 0.46;
  transition:
    opacity 520ms ease,
    box-shadow 520ms ease;
}

.process-step.is-current {
  color: rgba(255, 255, 255, 0.94);
  opacity: var(--top-edge-opacity, 1);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)),
    rgba(4, 4, 4, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 0 54px rgba(229, 9, 20, 0.08),
    0 24px 78px rgba(0, 0, 0, 0.48);
}

.process-step.is-current::before {
  opacity: 1;
}

.process-step.is-current::after {
  opacity: 0.94;
  box-shadow:
    0 0 18px rgba(229, 9, 20, 0.28),
    1px 0 0 rgba(255, 255, 255, 0.032),
    -1px 0 0 rgba(255, 255, 255, 0.016);
}

.process-step h3 {
  position: relative;
  max-width: 100%;
  margin: 0 0 18px;
  color: currentColor;
  font-size: clamp(23px, 2vw, 33px);
  font-weight: 760;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

.process-step p {
  position: relative;
  max-width: 28ch;
  margin: 0;
  color: currentColor;
  font-size: clamp(15px, 1.13vw, 18px);
  font-weight: 540;
  line-height: 1.38;
  letter-spacing: 0;
}

.process-step__number {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  min-width: 92px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.034), rgba(255, 255, 255, 0.006)),
    rgba(2, 2, 2, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 16px 34px rgba(0, 0, 0, 0.4);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transform: translateX(-50%);
  transition:
    color 420ms ease,
    border-color 420ms ease,
    box-shadow 420ms ease;
}

.process-step.is-current .process-step__number {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(229, 9, 20, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 28px rgba(229, 9, 20, 0.18),
    0 16px 34px rgba(0, 0, 0, 0.44);
}

.process-timeline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 32px;
  height: 24px;
  pointer-events: none;
}

.process-timeline__ticks,
.process-timeline__fill {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 18px;
  transform: translateY(-50%);
}

.process-timeline__ticks {
  opacity: 0.26;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.34) 0,
    rgba(255, 255, 255, 0.34) 1px,
    transparent 1px,
    transparent 5px
  );
}

.process-timeline__fill {
  background: linear-gradient(90deg, rgba(229, 9, 20, 0), rgba(229, 9, 20, 0.42), rgba(229, 9, 20, 0));
  filter: blur(2px) drop-shadow(0 0 18px rgba(229, 9, 20, 0.34));
  opacity: 0.82;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.solution-scroll {
  --solution-question-opacity: 0;
  --solution-question-y: 28px;
  --solution-question-glow: 0;
  --solution-bang-opacity: 0;
  --solution-bang-scale: 1.72;
  --solution-bang-y: 18px;
  --solution-cta-opacity: 0;
  --solution-cta-y: 64px;
  --solution-fill: 0;
  position: relative;
  min-height: 218svh;
  isolation: isolate;
  background:
    radial-gradient(ellipse 68% 32% at 50% 22%, rgba(229, 9, 20, 0.06), rgba(229, 9, 20, 0) 68%),
    linear-gradient(180deg, #030303 0%, #050505 45%, #030303 100%);
}

.solution-scroll::before,
.solution-scroll::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 34svh;
  pointer-events: none;
}

.solution-scroll::before {
  top: 0;
  background: linear-gradient(180deg, #030303, rgba(3, 3, 3, 0));
}

.solution-scroll::after {
  bottom: 0;
  background: linear-gradient(0deg, #030303, rgba(3, 3, 3, 0));
}

.solution-scroll__pin {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(104px, 15svh, 160px) var(--side-pad) clamp(78px, 11svh, 124px);
  overflow: hidden;
}

.solution-scroll__stage {
  position: relative;
  width: min(100%, 1510px);
  min-height: clamp(300px, 44svh, 490px);
  display: grid;
  place-items: center;
}

.solution-scroll__question-shell,
.solution-cta-shell {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.solution-scroll__question {
  --solution-question-size: clamp(50px, 7vw, 118px);
  margin: 0;
  color: #fff;
  font-size: 0;
  font-weight: 560;
  line-height: 1.16;
  letter-spacing: 0;
  text-align: center;
  opacity: var(--solution-question-opacity);
  transform: translateY(calc(var(--solution-question-y) * 1px));
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.12),
    0 0 calc(24px * var(--solution-question-glow)) rgba(255, 255, 255, 0.52),
    0 0 calc(72px * var(--solution-question-glow)) rgba(229, 9, 20, 0.38),
    0 24px 68px rgba(0, 0, 0, 0.85);
  transition:
    opacity 240ms ease,
    transform 360ms cubic-bezier(0.16, 0.84, 0.24, 1);
  will-change: opacity, transform;
}

.solution-question__text {
  display: inline-flex;
  align-items: baseline;
  font-size: var(--solution-question-size);
}

.solution-question__accent {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.02em;
  line-height: 0.9;
}

.solution-question__char {
  display: inline-block;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(0.18em) scale(0.96);
  transition:
    opacity 120ms ease,
    filter 150ms ease,
    transform 180ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.solution-question__char.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.solution-question__char--glow {
  color: #fff;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.96),
    0 0 26px rgba(255, 255, 255, 0.56),
    0 0 48px rgba(229, 9, 20, 0.42),
    0 0 86px rgba(229, 9, 20, 0.24),
    0 18px 52px rgba(0, 0, 0, 0.78);
}

.solution-question__char--space {
  width: 0.28em;
}

.solution-question__bang {
  display: inline-block;
  margin-left: -0.01em;
  color: #fff;
  font-size: var(--solution-question-size);
  font-weight: 820;
  opacity: var(--solution-bang-opacity);
  filter: blur(calc(3px * (1 - var(--solution-bang-opacity))));
  transform:
    translateY(calc(var(--solution-bang-y) * 1px))
    scale(var(--solution-bang-scale));
  transform-origin: 50% 78%;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.62),
    0 0 34px rgba(229, 9, 20, 0.42),
    0 18px 46px rgba(0, 0, 0, 0.75);
  transition:
    opacity 90ms ease,
    filter 130ms ease,
    transform 190ms cubic-bezier(0.14, 1.18, 0.28, 1);
}

.solution-cta-shell {
  opacity: var(--solution-cta-opacity);
  transform: translateY(calc(var(--solution-cta-y) * 1px));
  pointer-events: none;
  transition:
    opacity 320ms ease,
    transform 520ms cubic-bezier(0.16, 0.84, 0.24, 1);
  will-change: opacity, transform;
}

.solution-scroll.is-cta-visible .solution-cta-shell {
  pointer-events: auto;
}

.solution-cta {
  position: relative;
  width: min(100%, 1430px);
  min-height: clamp(118px, 12vw, 168px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0) 32%),
    #020202;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 -1px 0 rgba(229, 9, 20, 0.08),
    0 36px 92px rgba(0, 0, 0, 0.58);
}

.solution-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.12) 1px, transparent 1.4px),
    linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.64) 86%);
  background-size: 7px 7px, 100% 100%;
  opacity: 0.34;
  mix-blend-mode: screen;
}

.solution-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 28% 16% at 53% 50%, rgba(255, 44, 58, 0.16), rgba(229, 9, 20, 0.07) 46%, rgba(229, 9, 20, 0) 74%),
    linear-gradient(90deg, rgba(0, 0, 0, 0) 0 48%, rgba(0, 0, 0, 0.34) 78%, rgba(0, 0, 0, 0.9) 100%),
    radial-gradient(ellipse 44% 92% at 34% 50%, rgba(255, 70, 82, 0.24), rgba(229, 9, 20, 0) 74%);
}

.solution-cta__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 78%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 66% 132% at 18% 50%, rgba(255, 92, 104, 0.78), rgba(229, 9, 20, 0.34) 54%, rgba(229, 9, 20, 0) 100%),
    linear-gradient(90deg, rgba(229, 9, 20, 0.88), rgba(229, 9, 20, 0.62) 39%, rgba(229, 9, 20, 0.11) 52%, rgba(229, 9, 20, 0) 62%);
  filter: saturate(1.08) drop-shadow(0 0 24px rgba(229, 9, 20, 0.24));
  opacity: 0.9;
  overflow: visible;
  transform: scaleX(var(--solution-fill));
  transform-origin: left center;
  transition: transform 80ms linear;
  will-change: transform;
}

.solution-cta__fill::after {
  content: "";
  position: absolute;
  left: 43%;
  top: -36%;
  width: 44%;
  height: 172%;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 100% 36% at 0% 50%,
      rgba(255, 44, 58, 0.38) 0%,
      rgba(229, 9, 20, 0.24) 36%,
      rgba(229, 9, 20, 0.1) 58%,
      rgba(229, 9, 20, 0) 82%
    );
  filter: blur(1.8px) saturate(1.1);
}

.solution-cta__content {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 72px);
  padding: clamp(30px, 3.4vw, 48px) clamp(34px, 5.2vw, 76px);
}

.solution-cta h2 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 58px);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    0 0 16px rgba(255, 255, 255, 0.2),
    0 0 34px rgba(229, 9, 20, 0.22),
    0 18px 48px rgba(0, 0, 0, 0.75);
}

.solution-cta__button {
  flex: 0 0 auto;
  min-width: clamp(220px, 17vw, 264px);
}

.services-scroll {
  --services-progress: 0;
  --services-detail-opacity: 0;
  position: relative;
  z-index: 2;
  min-height: clamp(1320px, 190svh, 1980px);
  margin-top: clamp(-620px, -58svh, -430px);
  padding: clamp(28px, 5svh, 68px) var(--side-pad) clamp(112px, 16svh, 190px);
  overflow: visible;
  isolation: isolate;
  background:
    radial-gradient(ellipse 46% 28% at 50% 20%, rgba(229, 9, 20, 0.045), rgba(229, 9, 20, 0) 72%),
    linear-gradient(180deg, rgba(3, 3, 3, 0) 0%, rgba(5, 5, 5, 0.18) 16%, #050505 34%, #020202 100%);
}

.services-scroll::before,
.services-scroll::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 32svh;
  pointer-events: none;
}

.services-scroll::before {
  top: 0;
  background: linear-gradient(180deg, rgba(3, 3, 3, 0), rgba(3, 3, 3, 0));
}

.services-scroll::after {
  bottom: 0;
  background: linear-gradient(0deg, #020202, rgba(2, 2, 2, 0));
}

.services-scroll__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1510px);
  min-height: calc(100svh + 720px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(520px, 0.58fr);
  gap: clamp(58px, 8vw, 124px);
  align-items: start;
}

.services-scroll__copy {
  position: sticky;
  top: clamp(220px, 26svh, 300px);
  align-self: start;
  margin-top: clamp(92px, 12svh, 132px);
  padding-top: clamp(8px, 1.5svh, 18px);
}

.services-scroll__eyebrow {
  display: block;
  margin-bottom: clamp(16px, 2svh, 24px);
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: min(var(--top-edge-opacity, 1), var(--services-eyebrow-opacity, 0));
  transform: translateY(calc((1 - var(--services-eyebrow-opacity, 0)) * 12px));
  transition:
    opacity 280ms ease,
    transform 420ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.services-scroll__headline {
  min-height: 3.18em;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.1vw, 88px);
  font-weight: 620;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
  opacity: var(--top-edge-opacity, 1);
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.18),
    0 0 34px rgba(229, 9, 20, 0.18),
    0 24px 64px rgba(0, 0, 0, 0.82);
}

.services-scroll__char {
  display: inline-block;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(0.22em) scale(0.98);
  transition:
    opacity 140ms ease,
    filter 180ms ease,
    transform 220ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.services-scroll__char.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.services-scroll__word {
  display: inline-block;
  white-space: nowrap;
}

@media (min-width: 701px) and (max-width: 1180px) {
  .services-scroll__headline {
    font-size: clamp(38px, 4.6vw, 46px);
  }
}

.services-scroll__word.graffiti-accent {
  font-size: 1.04em;
  line-height: 0.9;
}

.services-scroll__space {
  display: inline;
  white-space: normal;
  transform: none;
}

.services-scroll__intro {
  max-width: 34ch;
  margin: clamp(26px, 3.2svh, 40px) 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 510;
  line-height: 1.34;
  letter-spacing: 0;
  opacity: min(var(--top-edge-opacity, 1), var(--services-detail-opacity));
  transform: translateY(calc((1 - var(--services-detail-opacity)) * 18px));
  transition:
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.services-scroll__button {
  margin-top: clamp(32px, 4svh, 52px);
  opacity: min(var(--top-edge-opacity, 1), var(--services-detail-opacity));
  transform: translateY(calc((1 - var(--services-detail-opacity)) * 14px));
  transition:
    opacity 300ms ease,
    transform 460ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.services-list {
  position: sticky;
  top: clamp(210px, 24svh, 280px);
  align-self: start;
  height: clamp(620px, 68svh, 760px);
  margin-top: clamp(92px, 12svh, 132px);
  display: grid;
  align-content: start;
  grid-auto-rows: max-content;
  gap: clamp(18px, 2.1svh, 28px);
  overflow: visible;
}

.service-card {
  --service-reveal-opacity: 1;
  --service-reveal-y: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0) 42%),
    rgba(2, 2, 2, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 26px 70px rgba(0, 0, 0, 0.34);
  opacity: var(--service-reveal-opacity);
  transform: translateY(calc(var(--service-reveal-y) * 1px));
  will-change: opacity, transform;
  transition:
    border-color 340ms ease,
    box-shadow 340ms ease,
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.service-card.is-top-clipping {
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0,
    transparent var(--service-mask-cut, 0px),
    #000 var(--service-mask-solid, 96px),
    #000 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0,
    transparent var(--service-mask-cut, 0px),
    #000 var(--service-mask-solid, 96px),
    #000 100%
  );
}

.services-scroll.is-card-reveal-ready .service-card {
  --service-reveal-opacity: 0;
  --service-reveal-y: 42;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(229, 9, 20, 0.02),
    rgba(229, 9, 20, 0.22) 18%,
    rgba(255, 28, 42, 0.64) 54%,
    rgba(229, 9, 20, 0.28) 84%,
    rgba(229, 9, 20, 0.04)
  );
  box-shadow: 0 0 16px rgba(229, 9, 20, 0.2);
  opacity: 0.36;
  transition: opacity 340ms ease;
}

.service-card:hover,
.service-card:focus-within,
.service-card.is-open {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 30px 82px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(229, 9, 20, 0.08);
}

.service-card:hover::before,
.service-card:focus-within::before,
.service-card.is-open::before {
  opacity: 0.82;
}

.service-card__toggle {
  width: 100%;
  min-height: clamp(88px, 8svh, 112px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  align-items: center;
  gap: 26px;
  padding: clamp(24px, 2.5vw, 36px) clamp(22px, 3vw, 42px);
  border: 0;
  color: rgba(255, 255, 255, 0.94);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: clamp(20px, 1.65vw, 28px);
  font-weight: 720;
  line-height: 1.16;
  letter-spacing: 0;
}

.service-card__toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.84);
  outline-offset: -6px;
}

.service-card__title {
  display: inline-block;
  font-size: 1.1em;
  line-height: 0.92;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  justify-self: end;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    rgba(7, 9, 10, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 0 24px rgba(229, 9, 20, 0.08);
  font-size: 28px;
  font-weight: 340;
  line-height: 1;
  transition:
    color 260ms ease,
    transform 300ms cubic-bezier(0.16, 0.84, 0.24, 1),
    box-shadow 300ms ease;
}

.service-card.is-open .service-card__icon {
  color: #fff;
  transform: rotate(90deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 30px rgba(229, 9, 20, 0.16);
}

.service-card__body {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 clamp(22px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.64);
  transition:
    grid-template-rows 420ms cubic-bezier(0.16, 0.84, 0.24, 1),
    padding 420ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.service-card.is-open .service-card__body {
  grid-template-rows: 1fr;
  padding-bottom: clamp(28px, 3.2vw, 42px);
}

.service-card__body p {
  max-width: 62ch;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: inherit;
  font-size: clamp(16px, 1.28vw, 21px);
  font-weight: 520;
  line-height: 1.45;
  letter-spacing: 0;
}

.final-prompt {
  position: relative;
  min-height: clamp(420px, 68svh, 760px);
  display: grid;
  place-items: center;
  padding: clamp(92px, 14svh, 170px) var(--side-pad);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  background: linear-gradient(180deg, #020202 0%, #030303 58%, #020202 100%);
}

.final-prompt::before {
  content: "";
  position: absolute;
  inset: 14% 7%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(229, 9, 20, 0.17), transparent 68%);
  filter: blur(20px);
}

.final-prompt__inner {
  width: min(100%, 1160px);
  display: grid;
  justify-items: center;
  gap: clamp(68px, 9svh, 112px);
}

.final-prompt h2 {
  max-width: 15ch;
  margin: 0 auto;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 620;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.16),
    0 0 38px rgba(229, 9, 20, 0.18),
    0 24px 64px rgba(0, 0, 0, 0.82);
}

.graffiti-accent--final {
  display: inline-block;
  font-size: 1.04em;
  line-height: 0.9;
}

.final-prompt__button {
  min-width: clamp(270px, 23vw, 360px);
  min-height: clamp(66px, 7svh, 82px);
  padding-inline: clamp(34px, 4vw, 54px);
  background: rgba(34, 2, 5, 0.72);
  box-shadow:
    0 0 0 1px rgba(255, 78, 88, 0.18),
    0 0 34px 8px rgba(229, 9, 20, 0.24),
    0 0 82px 18px rgba(229, 9, 20, 0.13),
    0 24px 52px rgba(0, 0, 0, 0.62);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 720;
  animation: final-cta-backlight 2.35s ease-in-out infinite;
}

.final-prompt__button::before {
  filter: blur(0.2px) drop-shadow(0 0 15px rgba(255, 28, 42, 0.94));
}

.final-prompt__button::after {
  background:
    radial-gradient(ellipse at 50% 115%, rgba(229, 9, 20, 0.28), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    rgba(16, 3, 4, 0.94);
}

.final-prompt__button:hover,
.final-prompt__button:focus-visible {
  box-shadow:
    0 0 0 1px rgba(255, 112, 120, 0.32),
    0 0 46px 12px rgba(229, 9, 20, 0.4),
    0 0 104px 26px rgba(229, 9, 20, 0.2),
    0 24px 52px rgba(0, 0, 0, 0.62);
}

@keyframes final-cta-backlight {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 78, 88, 0.16),
      0 0 30px 7px rgba(229, 9, 20, 0.2),
      0 0 72px 16px rgba(229, 9, 20, 0.11),
      0 24px 52px rgba(0, 0, 0, 0.62);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(255, 112, 120, 0.3),
      0 0 48px 13px rgba(229, 9, 20, 0.4),
      0 0 112px 30px rgba(229, 9, 20, 0.2),
      0 24px 52px rgba(0, 0, 0, 0.62);
  }
}

.site-footer {
  position: relative;
  margin-top: 0;
  min-height: clamp(300px, 42svh, 460px);
  display: grid;
  align-items: end;
  padding: clamp(88px, 14svh, 150px) var(--side-pad) clamp(46px, 7svh, 82px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, #020202 0%, #030303 48%, #050505 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -54px;
  z-index: 0;
  width: min(100%, 1040px);
  height: clamp(210px, 28svh, 340px);
  pointer-events: none;
  background: radial-gradient(
    ellipse 62% 230px at 50% 100%,
    rgba(229, 9, 20, 0.52),
    rgba(229, 9, 20, 0.28) 28%,
    rgba(229, 9, 20, 0.11) 56%,
    rgba(229, 9, 20, 0) 100%
  );
  filter: blur(12px);
  opacity: 0;
  transform: translateX(-50%) translateY(36px);
  transition:
    opacity 780ms cubic-bezier(0.16, 0.84, 0.24, 1),
    transform 900ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

body.is-page-bottom .site-footer::before {
  opacity: 0.8;
  transform: translateX(-50%) translateY(0);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1510px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: end;
}

.site-footer__headline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 6vw, 96px);
}

.site-footer__logo {
  width: max-content;
  color: #fff;
  text-decoration: none;
  font-size: clamp(38px, 5.2vw, 80px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.14),
    0 0 34px rgba(229, 9, 20, 0.18);
  opacity: var(--top-edge-opacity, 1);
}

.site-footer p {
  grid-column: 1;
  max-width: 46ch;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0;
  opacity: var(--top-edge-opacity, 1);
}

.site-footer__button {
  flex: 0 0 auto;
  margin: 0;
}

@keyframes client-sheen {
  from {
    transform: translateX(-58%);
  }

  to {
    transform: translateX(58%);
  }
}

@keyframes client-card-swap-glow-prime {
  0% {
    border-color: rgba(255, 255, 255, 0.095);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.075),
      0 26px 74px rgba(0, 0, 0, 0.48);
  }

  100% {
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.11),
      0 30px 86px rgba(0, 0, 0, 0.56),
      0 0 44px rgba(229, 9, 20, 0.24),
      0 0 92px rgba(229, 9, 20, 0.12);
  }
}

@keyframes client-card-floor-glow-prime {
  0% {
    opacity: 0.42;
  }

  100% {
    opacity: 0.62;
  }
}

@keyframes client-card-swap-glow-settle {
  0% {
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.11),
      0 30px 86px rgba(0, 0, 0, 0.56),
      0 0 44px rgba(229, 9, 20, 0.24),
      0 0 92px rgba(229, 9, 20, 0.12);
  }

  100% {
    border-color: rgba(255, 255, 255, 0.095);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.075),
      0 26px 74px rgba(0, 0, 0, 0.48);
  }
}

@keyframes client-card-floor-glow-settle {
  0% {
    opacity: 0.62;
  }

  100% {
    opacity: 0.42;
  }
}

@keyframes client-card-erase {
  0% {
    opacity: 1;
    filter: blur(0);
    clip-path: inset(0 0 0 0);
  }

  24% {
    opacity: 0.96;
    filter: blur(0.2px);
    clip-path: polygon(0 18%, 100% 18%, 100% 100%, 0 100%);
  }

  49% {
    opacity: 0.78;
    filter: blur(0.7px);
    clip-path: polygon(0 18%, 82% 18%, 82% 100%, 0 100%);
  }

  74% {
    opacity: 0.58;
    filter: blur(1.1px);
    clip-path: polygon(0 18%, 82% 18%, 82% 82%, 0 82%);
  }

  86% {
    opacity: 0.3;
    filter: blur(2px);
    clip-path: polygon(0 18%, 82% 18%, 82% 82%, 0 82%);
  }

  100% {
    opacity: 0;
    filter: blur(5px);
    clip-path: polygon(0 18%, 82% 18%, 82% 82%, 0 82%);
  }
}

@media (max-width: 900px) {
  :root {
    --floor-h: clamp(138px, 18svh, 190px);
    --floor-overlap: 14px;
    --reflection-drop: clamp(14px, 2svh, 22px);
    --side-pad: 14px;
    --closed-width: clamp(72px, 8.8vw, 104px);
    --open-width: min(82vw, calc(var(--reel-height) * 0.5625));
    --reel-height: min(80svh, calc(100svh - var(--floor-h) - 18px), 780px);
  }

  .reel-wall {
    padding-bottom: 0;
  }

  .reel-card {
    min-height: 320px;
  }

  .statement-panel p,
  .statement-panel h1 {
    max-width: 14ch;
    font-size: clamp(40px, 8vw, 76px);
  }

  .client-showcase {
    min-height: auto;
    padding-block: clamp(92px, 14svh, 136px);
  }

  .client-showcase h2 {
    font-size: clamp(40px, 7.7vw, 72px);
  }

  .client-showcase__stage {
    min-height: auto;
  }

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

  .client-card {
    min-height: clamp(148px, 24vw, 196px);
  }

  .process-scroll {
    min-height: 300svh;
  }

  .process-scroll__pin {
    padding-block: clamp(92px, 13svh, 132px) clamp(68px, 9svh, 104px);
  }

  .process-scroll h2 {
    font-size: clamp(38px, 7.8vw, 68px);
  }

  .process-scroll__viewport {
    width: min(100%, 920px);
    margin-top: clamp(42px, 7svh, 70px);
  }

  .process-step {
    flex-basis: clamp(260px, 36vw, 330px);
    min-height: clamp(330px, 42svh, 420px);
  }

  .solution-scroll {
    min-height: 226svh;
  }

  .solution-scroll__pin {
    padding-block: clamp(92px, 13svh, 132px) clamp(68px, 9svh, 104px);
  }

  .solution-scroll__stage {
    min-height: clamp(330px, 46svh, 470px);
  }

  .solution-cta {
    min-height: clamp(154px, 20vw, 212px);
  }

  .solution-cta__content {
    padding: clamp(28px, 4vw, 46px);
  }

  .solution-cta h2 {
    font-size: clamp(32px, 5.4vw, 48px);
  }

  .services-scroll {
    min-height: auto;
    margin-top: clamp(-340px, -34svh, -220px);
    padding-block: clamp(72px, 10svh, 112px) clamp(108px, 15svh, 150px);
  }

  .services-scroll__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: clamp(46px, 7svh, 72px);
  }

  .services-scroll__copy {
    position: relative;
    top: auto;
    max-width: 760px;
    margin-top: 0;
    padding-top: 0;
  }

  .services-scroll__headline {
    min-height: auto;
    max-width: 12ch;
    font-size: clamp(42px, 8.2vw, 74px);
  }

  .services-list {
    position: relative;
    top: auto;
    height: auto;
    margin-top: 0;
    gap: 16px;
  }

  .service-card__toggle {
    min-height: 82px;
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .service-card__icon {
    width: 44px;
    height: 44px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer__button {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .reel-card:hover,
  .reel-card:focus-visible,
  .reel-card.is-active {
    transform: scale(1.004);
  }
}

@media (max-width: 700px) {
  :root {
    --floor-h: calc(clamp(124px, 16dvh, 158px) + env(safe-area-inset-bottom));
    --floor-overlap: 10px;
    --reflection-drop: 14px;
    --closed-width: clamp(42px, 11vw, 52px);
    --reel-gap: 9px;
    --reel-height: min(80dvh, calc(100dvh - var(--floor-h) - 22px), 720px);
    --open-width: min(90vw, calc(var(--reel-height) * 0.5625));
  }

  .hero {
    min-height: 100dvh;
  }

  .hero::before {
    opacity: 0.26;
  }

  .hero__shade {
    height: 32svh;
  }

  .reel-wall {
    padding: 0;
  }

  .reel-wall.is-measured .reel-track {
    left: auto;
    width: 100%;
    min-width: 0;
    transform: none;
  }

  .reel-track {
    position: static;
    left: auto;
    bottom: auto;
    flex: 0 1 auto;
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 100dvh;
    align-items: flex-end;
    padding-inline: max(14px, calc((100vw - var(--open-width)) / 2));
    padding-bottom: var(--floor-h);
    overflow-x: auto;
    transform: none;
    scroll-padding-inline: max(14px, calc((100vw - var(--open-width)) / 2));
    scroll-snap-type: x mandatory;
  }

  .reel-card {
    flex-basis: var(--open-width);
    min-height: 430px;
    max-height: calc(100dvh - var(--floor-h) - 22px);
    border-radius: 7px;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.66);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    touch-action: pan-x;
  }

  .reel-card:hover,
  .reel-card:focus-visible,
  .reel-card.is-active {
    flex-basis: var(--open-width);
    opacity: 1;
  }

  .reel-track.is-swiping .reel-card {
    transition-duration: 180ms;
  }

  .reel-track.has-active .reel-card:not(.is-active) {
    opacity: 0.68;
  }

  .reel-track.has-active .reel-card:not(.is-active)::after {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .reel-card:hover,
  .reel-card:focus-visible,
  .reel-card.is-active {
    transform: scale(1);
  }

  .sound-toggle {
    top: max(12px, env(safe-area-inset-top));
    width: 44px;
    height: 44px;
  }

  .top-return-logo {
    top: max(12px, env(safe-area-inset-top));
    width: min(62vw, 240px);
  }

  .reel-nav {
    display: none;
  }

  .floating-logo {
    bottom: calc(var(--floor-h) * 0.42);
    width: min(76vw, 340px);
    min-width: 230px;
  }

  .floating-logo__reflection {
    top: calc(100% + 6px);
    opacity: 0.2;
  }

  .mirror-track {
    left: 0;
    top: calc(var(--floor-overlap) + var(--reflection-drop));
    width: 100%;
    padding-inline: max(14px, calc((100vw - var(--open-width)) / 2));
    height: calc(var(--floor-h) - var(--reflection-drop));
    overflow: hidden;
    transform: none;
  }

  .reel-wall.is-measured + .floating-logo + .mirror-strip .mirror-track,
  .reel-wall.is-measured ~ .mirror-strip .mirror-track {
    left: 0;
    width: 100%;
    transform: none;
  }

  .mirror-reel,
  .mirror-reel.is-active {
    flex-basis: var(--open-width);
  }

  .reel-title {
    left: 11px;
    right: 11px;
    bottom: 11px;
    font-size: 12px;
  }

  .statement-scroll {
    min-height: 410svh;
  }

  .statement-scroll__pin {
    padding: clamp(86px, 12svh, 118px) max(18px, var(--side-pad)) clamp(58px, 9svh, 92px);
  }

  .statement-scroll__stage {
    min-height: clamp(340px, 54svh, 480px);
  }

  .statement-panel p,
  .statement-panel h1 {
    max-width: 10.6ch;
    font-size: clamp(37px, 11.8vw, 58px);
    line-height: 1.03;
  }

  .statement-panel.statement-panel--creative p {
    width: auto;
    max-width: 10.6ch;
  }

  .statement-break--desktop {
    display: none;
  }

  .statement-brand {
    font-size: 0.72em;
  }

  .orbit-button {
    min-width: 166px;
    min-height: 48px;
    font-size: 13px;
  }

  .client-showcase {
    padding: clamp(82px, 12svh, 118px) max(18px, var(--side-pad));
  }

  .client-showcase__eyebrow {
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .client-showcase h2 {
    max-width: 9.5ch;
    margin-inline: auto;
    font-size: clamp(38px, 11vw, 54px);
  }

  .client-showcase__stage {
    margin-top: clamp(18px, 3.36svh, 28px);
  }

  .client-showcase__backdrop {
    top: 47%;
    font-size: clamp(80px, 24vw, 126px);
  }

  .client-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .client-card {
    min-height: 128px;
    padding: 24px 22px 34px;
  }

  .client-card img {
    max-height: 64px;
  }

  .client-card__text-logo {
    max-width: 74%;
    font-size: clamp(23px, 7.4vw, 36px);
  }

  .client-card--nova img,
  .client-card--barbecue img {
    max-height: 76px;
  }

  .client-card__name {
    left: 14px;
    bottom: 12px;
    font-size: 9px;
  }

  .client-socials {
    top: 12px;
    right: 12px;
    gap: 7px;
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .client-social {
    width: 34px;
    height: 34px;
    transform: none;
  }

  .client-social svg {
    width: 16px;
    height: 16px;
  }

  .process-scroll {
    min-height: 340svh;
  }

  .process-scroll__pin {
    align-items: center;
    padding: clamp(84px, 12svh, 112px) max(18px, var(--side-pad)) clamp(58px, 9svh, 88px);
  }

  .process-scroll__eyebrow {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .process-scroll h2 {
    max-width: 10.6ch;
    margin-inline: auto;
    font-size: clamp(36px, 10.6vw, 52px);
    line-height: 1.04;
  }

  .process-scroll__viewport {
    width: 100%;
    margin-top: clamp(34px, 6svh, 52px);
    padding-bottom: 70px;
  }

  .process-rail {
    gap: 0;
  }

  .process-step {
    flex-basis: min(82vw, 330px);
    min-height: min(54svh, 390px);
    padding: 28px 24px 78px 34px;
  }

  .process-step h3 {
    margin-bottom: 14px;
    font-size: clamp(22px, 6.4vw, 28px);
  }

  .process-step p {
    font-size: clamp(14px, 4vw, 17px);
    line-height: 1.38;
  }

  .process-step__number {
    bottom: 15px;
    min-width: 84px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .process-timeline {
    bottom: 27px;
  }

  .solution-scroll {
    min-height: 232svh;
  }

  .solution-scroll__pin {
    padding: clamp(84px, 12svh, 112px) max(18px, var(--side-pad)) clamp(58px, 9svh, 88px);
  }

  .solution-scroll__stage {
    min-height: min(58svh, 430px);
  }

  .solution-scroll__question {
    --solution-question-size: clamp(32px, 8.9vw, 46px);
  }

  .solution-cta {
    min-height: 264px;
  }

  .solution-cta__content {
    min-height: inherit;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 30px 26px;
  }

  .solution-cta h2 {
    max-width: 10ch;
    font-size: clamp(32px, 9.2vw, 48px);
    line-height: 1;
    white-space: normal;
  }

  .solution-cta__button {
    min-width: min(100%, 224px);
  }

  .services-scroll {
    margin-top: clamp(-260px, -28svh, -160px);
    padding: clamp(140px, 20svh, 188px) max(18px, var(--side-pad)) clamp(96px, 14svh, 132px);
  }

  .services-scroll__eyebrow {
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .services-scroll__headline {
    max-width: 10.8ch;
    font-size: clamp(36px, 11vw, 56px);
    line-height: 1.03;
  }

  .services-scroll__intro {
    max-width: 28ch;
    margin-top: 22px;
    font-size: clamp(17px, 5vw, 21px);
  }

  .services-scroll__button {
    margin-top: 28px;
  }

  .service-card {
    border-color: rgba(255, 255, 255, 0.13);
  }

  .service-card__toggle {
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 16px;
    padding: 22px 18px;
    font-size: clamp(18px, 5.4vw, 23px);
  }

  .service-card__icon {
    width: 40px;
    height: 40px;
    font-size: 25px;
  }

  .service-card__body {
    padding-inline: 18px;
  }

  .service-card.is-open .service-card__body {
    padding-bottom: 24px;
  }

  .service-card__body p {
    font-size: clamp(15px, 4.3vw, 18px);
    line-height: 1.42;
  }

  .site-footer {
    min-height: 360px;
    padding: 94px max(18px, var(--side-pad)) calc(46px + env(safe-area-inset-bottom));
  }

  .site-footer__logo {
    width: auto;
    max-width: 100%;
    font-size: clamp(24px, 7.6vw, 34px);
    line-height: 1.02;
    white-space: nowrap;
  }

  .site-footer p {
    font-size: 15px;
  }
}

.is-contact-cta-suppressed {
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  .reel-card,
  .reel-card video,
  .reel-title,
  .mirror-reel,
  .reel-nav,
  .top-return-logo,
  .hero__shade,
  .reel-wall,
  .mirror-strip,
  .floating-logo,
  .solution-scroll__question,
  .solution-cta-shell,
  .solution-cta__fill,
  .services-scroll__eyebrow,
  .services-scroll__char,
  .services-scroll__intro,
  .service-card,
  .service-card__body,
  .service-card__icon,
  .site-footer::before {
    transition-duration: 1ms;
  }

  body::before,
  body::after {
    transition-duration: 1ms;
  }

  .statement-panel {
    transition-duration: 1ms;
  }

  .orbit-button::before {
    animation: none;
  }

  .final-prompt__button {
    animation: none;
  }

  .client-card {
    animation: none;
    transition-duration: 1ms;
  }

  .client-card__orbit {
    display: none;
  }

  .client-card:hover::before,
  .client-card:focus-within::before {
    animation: none;
  }
}

/* 2026-08-14 · Homepage Entwurf 1: gestapelte Leistungen + gesteuerte Referenzbühne. */
.site-utility {
  position: fixed;
  top: max(6px, env(safe-area-inset-top));
  right: 0;
  left: 0;
  z-index: 30;
  height: 54px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-24px);
  transition:
    opacity 760ms ease,
    transform 900ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

body.is-hero-return-visible .site-utility {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-utility .top-return-logo {
  top: 0;
  width: clamp(176px, 20vw, 280px);
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
  transition: filter 240ms ease;
}

.site-utility .top-return-logo:is(:hover, :focus-visible) {
  filter: brightness(1.16);
}

.site-utility .top-return-logo:focus-visible {
  outline-color: rgba(255, 255, 255, 0.9);
}

.site-utility__controls {
  position: absolute;
  top: 5px;
  right: var(--side-pad);
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-utility .sound-toggle,
body.is-hero-condensed .site-utility .sound-toggle {
  position: relative;
  top: auto;
  right: auto;
  z-index: auto;
  width: 38px;
  height: 38px;
  opacity: 1;
  pointer-events: auto;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.theme-toggle {
  min-width: 58px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.theme-toggle:disabled {
  cursor: not-allowed;
  opacity: 0.76;
}

.services-scroll--showcase-rows {
  min-height: 0;
  margin-top: 0;
  padding: clamp(108px, 12svh, 164px) var(--side-pad) clamp(144px, 17svh, 220px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(229, 9, 20, 0.045), transparent 22%),
    linear-gradient(180deg, #020202 0%, #050505 30%, #020202 100%);
}

.services-scroll--showcase-rows::before,
.services-scroll--showcase-rows::after {
  display: none;
}

.services-scroll--showcase-rows .services-scroll__inner {
  width: min(100%, 1420px);
  min-height: 0;
  display: block;
}

.services-scroll--showcase-rows .services-scroll__copy {
  position: relative;
  top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(36px, 6vw, 92px);
  margin: 0;
  padding: 0;
}

.services-scroll--showcase-rows .services-scroll__eyebrow {
  margin-bottom: clamp(18px, 2.2svh, 28px);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.28em;
}

.services-scroll--showcase-rows .services-scroll__headline {
  min-height: 0;
  max-width: none;
  color: #f5f5f2;
  font-size: clamp(58px, 7.4vw, 112px);
  font-weight: 790;
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-shadow: none;
}

.services-scroll--showcase-rows .services-scroll__line {
  display: block;
  white-space: nowrap;
}

.services-scroll--showcase-rows .services-scroll__space {
  white-space: pre;
}

.services-scroll--showcase-rows .services-scroll__word.graffiti-accent {
  color: #f5f5f2;
  font-size: 1.02em;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.services-scroll__side-note {
  max-width: 19ch;
  margin: 0 0 0.7em;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.35vw, 20px);
  font-weight: 620;
  line-height: 1.25;
  text-transform: uppercase;
}

.services-scroll__side-note .graffiti-accent {
  color: #fff;
  font-size: 1.14em;
}

.services-scroll--showcase-rows .services-list {
  position: relative;
  top: auto;
  height: auto;
  margin: clamp(54px, 7svh, 90px) 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: auto;
  gap: 9px;
  overflow: visible;
}

.services-scroll--showcase-rows .service-card {
  min-height: clamp(340px, 31vw, 470px);
  height: auto;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 0;
  background: #050505;
  box-shadow: none;
  opacity: var(--service-reveal-opacity, 1);
  transform: translateY(calc(var(--service-reveal-y, 0) * 1px));
  isolation: isolate;
}

.services-scroll--showcase-rows .service-card.is-top-clipping {
  -webkit-mask-image: none;
  mask-image: none;
}

.services-scroll--showcase-rows .service-card::before,
.services-scroll--showcase-rows .service-card::after {
  display: none;
}

.services-scroll--showcase-rows .service-card__preview,
.services-scroll--showcase-rows .service-card__paper {
  position: absolute;
  inset: 0;
}

.services-scroll--showcase-rows .service-card__preview {
  z-index: 0;
  display: block;
  overflow: hidden;
  background: #070707;
}

.services-scroll--showcase-rows .service-card__preview--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-scroll--showcase-rows .service-card__preview::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(1, 1, 1, 0.94) 0%, rgba(1, 1, 1, 0.72) 30%, rgba(1, 1, 1, 0.06) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.48));
  transition: opacity 420ms ease;
}

.services-scroll--showcase-rows .service-card[data-service-layout="right"] .service-card__preview::after {
  background:
    linear-gradient(270deg, rgba(1, 1, 1, 0.94) 0%, rgba(1, 1, 1, 0.72) 30%, rgba(1, 1, 1, 0.06) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.48));
}

.services-scroll--showcase-rows .service-card__preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  filter: grayscale(0.86) brightness(0.72) contrast(1.06);
  transition:
    transform 760ms cubic-bezier(0.16, 0.84, 0.24, 1),
    filter 520ms ease;
}

.services-scroll--showcase-rows .service-card--photo .service-card__preview img {
  object-position: 58% 50%;
}

.services-scroll--showcase-rows .service-card--websites .service-card__preview img {
  object-position: 50% 48%;
}

.services-scroll--showcase-rows .service-card--corporate .service-card__preview img {
  object-position: 52% 48%;
}

.services-scroll--showcase-rows .service-card__paper,
.services-scroll--showcase-rows .service-card.is-exposed .service-card__paper,
.services-scroll--showcase-rows .service-card.is-exposure-returning .service-card__paper {
  z-index: 2;
  right: auto;
  width: min(48%, 560px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(15px, 1.8vw, 25px);
  padding: clamp(34px, 4vw, 62px);
  clip-path: none;
  filter: none;
  opacity: 1;
  background: none;
  transform: none;
}

.services-scroll--showcase-rows .service-card[data-service-layout="right"] .service-card__paper {
  right: 0;
  left: auto;
  align-items: flex-end;
  text-align: right;
}

.services-scroll--showcase-rows .service-card__paper > *,
.services-scroll--showcase-rows .service-card.is-exposed .service-card__paper > *,
.services-scroll--showcase-rows .service-card.is-exposure-returning .service-card__paper > * {
  opacity: 1;
  filter: none;
  transform: none;
}

.services-scroll--showcase-rows .service-card__number {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.services-scroll--showcase-rows .service-card__title {
  display: block;
  max-width: 10ch;
  color: #f7f7f4;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 790;
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.services-scroll--showcase-rows .service-card__body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  color: rgba(255, 255, 255, 0.66);
}

.services-scroll--showcase-rows .service-card[data-service-layout="right"] .service-card__body {
  align-items: flex-end;
}

.services-scroll--showcase-rows .service-card__body > strong {
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(15px, 1.28vw, 20px);
  font-weight: 720;
  line-height: 1.12;
}

.services-scroll--showcase-rows .service-card__description {
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(13px, 1.02vw, 16px);
  font-weight: 500;
  line-height: 1.42;
}

.services-scroll--showcase-rows .service-card__route {
  margin-top: 4px;
  color: #fff;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.services-scroll--showcase-rows .service-card:is(:hover, :focus-visible) {
  border-color: rgba(255, 42, 54, 0.78);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.46);
}

.services-scroll--showcase-rows .service-card:is(:hover, :focus-visible) .service-card__preview img {
  transform: scale(1.035);
  filter: grayscale(0.18) brightness(0.86) contrast(1.04);
}

.services-scroll--showcase-rows .service-card:is(:hover, :focus-visible) .service-card__preview::after {
  opacity: 0.84;
}

.services-scroll--showcase-rows .service-card:is(:hover, :focus-visible) .service-card__route > span {
  transform: translateX(5px);
}

.services-scroll--showcase-rows + .client-showcase--contact-sheet {
  margin-top: clamp(170px, 23svh, 300px);
}

.client-reference__list {
  transition:
    opacity 280ms ease,
    transform 560ms cubic-bezier(0.16, 0.84, 0.24, 1),
    filter 280ms ease;
}

.client-reference[data-switch-direction="next"].is-switching .client-reference__list {
  opacity: 0;
  filter: blur(5px) brightness(0.64);
  transform: translateX(-5vw) scale(0.975);
}

.client-reference[data-switch-direction="previous"].is-switching .client-reference__list {
  opacity: 0;
  filter: blur(5px) brightness(0.64);
  transform: translateX(5vw) scale(0.975);
}

.client-reference[data-switch-direction="next"].is-entering .client-reference__list {
  opacity: 0;
  transform: translateX(5vw) scale(0.975);
}

.client-reference[data-switch-direction="previous"].is-entering .client-reference__list {
  opacity: 0;
  transform: translateX(-5vw) scale(0.975);
}

.client-showcase--contact-sheet .client-reference__timeline {
  grid-template-columns: 58px minmax(120px, 1fr) auto 58px;
}

.client-showcase--contact-sheet .client-reference__timeline > .client-reference__arrow {
  width: 54px;
  min-width: 54px;
  height: 54px;
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 240ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.client-reference__arrow img {
  width: 24px;
  height: 24px;
  display: block;
}

.client-reference__arrow--next img {
  transform: rotate(180deg);
}

.client-showcase--contact-sheet .client-reference__timeline > .client-reference__arrow:is(:hover, :focus-visible) {
  border-color: rgba(255, 255, 255, 0.72);
  background: var(--red);
  transform: scale(1.06);
}

.client-reference__viewport.is-swiping {
  cursor: grabbing;
}

@media (max-width: 1024px) {
  .client-reference__viewport {
    touch-action: pan-y;
    cursor: grab;
  }

  .services-scroll--showcase-rows .services-scroll__headline {
    font-size: clamp(52px, 9.4vw, 84px);
  }

  .services-scroll--showcase-rows .service-card {
    min-height: clamp(360px, 44vw, 450px);
  }

  .services-scroll--showcase-rows .service-card__paper,
  .services-scroll--showcase-rows .service-card.is-exposed .service-card__paper,
  .services-scroll--showcase-rows .service-card.is-exposure-returning .service-card__paper {
    width: 58%;
  }
}

@media (max-width: 700px) {
  .site-utility .top-return-logo {
    width: clamp(150px, 43vw, 190px);
  }

  .site-utility__controls {
    right: max(12px, env(safe-area-inset-right));
  }

  .theme-toggle {
    min-width: 48px;
    padding-inline: 10px;
    font-size: 8px;
  }

  .services-scroll--showcase-rows {
    padding: 92px max(18px, env(safe-area-inset-left)) 142px;
  }

  .services-scroll--showcase-rows .services-scroll__copy {
    display: block;
  }

  .services-scroll--showcase-rows .services-scroll__headline {
    max-width: none;
    font-size: clamp(46px, 14vw, 68px);
  }

  .services-scroll--showcase-rows .services-scroll__line {
    white-space: normal;
  }

  .services-scroll--showcase-rows .services-scroll__space {
    white-space: normal;
  }

  .services-scroll__side-note {
    margin: 28px 0 0;
  }

  .services-scroll--showcase-rows .services-list {
    margin-top: 44px;
    gap: 10px;
  }

  .services-scroll--showcase-rows .service-card {
    min-height: clamp(430px, 124vw, 520px);
  }

  .services-scroll--showcase-rows .service-card__preview::after,
  .services-scroll--showcase-rows .service-card[data-service-layout="right"] .service-card__preview::after {
    background:
      linear-gradient(0deg, rgba(1, 1, 1, 0.97) 0%, rgba(1, 1, 1, 0.78) 38%, rgba(1, 1, 1, 0.08) 78%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.38));
  }

  .services-scroll--showcase-rows .service-card__paper,
  .services-scroll--showcase-rows .service-card.is-exposed .service-card__paper,
  .services-scroll--showcase-rows .service-card.is-exposure-returning .service-card__paper,
  .services-scroll--showcase-rows .service-card[data-service-layout="right"] .service-card__paper {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 62%;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 28px 24px;
    text-align: left;
  }

  .services-scroll--showcase-rows .service-card[data-service-layout="right"] .service-card__body {
    align-items: flex-start;
  }

  .services-scroll--showcase-rows .service-card__title {
    font-size: clamp(36px, 11vw, 50px);
  }

  .services-scroll--showcase-rows + .client-showcase--contact-sheet {
    margin-top: 130px;
  }

  .client-showcase--contact-sheet .client-reference__timeline {
    grid-template-columns: 52px minmax(72px, 1fr) auto 52px;
  }

  .client-showcase--contact-sheet .client-reference__timeline > .client-reference__arrow {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-utility,
  .client-reference__list,
  .services-scroll--showcase-rows .service-card__preview img {
    transition-duration: 1ms !important;
  }
}

/* Reference stage: seven curated clients, one cinematic project at a time. */
.client-showcase {
  min-height: 118svh;
  align-items: start;
  padding-block: clamp(190px, 17svh, 260px) clamp(132px, 15svh, 190px);
  background: #050505;
}

.client-showcase::after {
  opacity: 0;
}

.client-showcase::before {
  top: 4svh;
  width: min(920px, 72vw);
  height: min(390px, 34svh);
  opacity: 0;
}

.client-showcase.is-visible::before {
  opacity: 0.64;
}

.client-showcase__inner {
  width: min(100%, 1380px);
}

.client-showcase__intro {
  max-width: 1080px;
  opacity: 1;
  transform: none;
  transition: none;
}

.client-showcase .client-fade-line {
  opacity: 1;
}

.client-showcase h2 {
  font-size: clamp(48px, 6vw, 98px);
  font-weight: 790;
  line-height: 0.92;
  text-shadow: 0 22px 52px rgba(0, 0, 0, 0.78);
}

.client-showcase h2 .graffiti-accent--client {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: -0.02em auto 0;
  color: #fff;
  font-size: 1.08em;
  font-weight: 400;
  line-height: 0.9;
}

.client-showcase__stage {
  min-height: 0;
  display: block;
  margin-top: clamp(56px, 7svh, 84px);
}

.client-reference {
  position: relative;
  z-index: 2;
  width: min(100%, 1240px);
  min-height: clamp(690px, 62vw, 810px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: clamp(178px, 17vw, 224px) minmax(0, 1fr);
  grid-template-rows: minmax(620px, 1fr) auto;
  column-gap: clamp(24px, 3vw, 46px);
  row-gap: 22px;
}

.client-reference__rail {
  grid-column: 1;
  grid-row: 1;
  z-index: 3;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: stretch;
  min-width: 0;
}

.client-reference__list {
  height: 100%;
  width: 100%;
  display: grid;
  grid-auto-rows: minmax(0, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-reference__list li {
  height: 100%;
  min-width: 0;
}

.client-reference__choice {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 0 0 1px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.34);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    color 260ms ease,
    opacity 260ms ease;
}

.client-reference__choice::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 420ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.client-reference__choice-number {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 260ms ease;
}

.client-reference__choice strong {
  min-width: 0;
  font-family: var(--font-display);
  font-size: clamp(13px, 1.08vw, 17px);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  white-space: normal;
}

.client-reference__choice:is(:hover, :focus-visible) {
  color: rgba(255, 255, 255, 0.76);
}

.client-reference__choice:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: -2px;
}

.client-reference__choice[aria-current="true"] {
  color: #fff;
}

.client-reference__choice[aria-current="true"]::after {
  width: 34px;
}

.client-reference__choice[aria-current="true"] .client-reference__choice-number {
  color: var(--red);
}

.client-reference__feature {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 2px;
  background: #0a0a0a;
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.62),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  isolation: isolate;
  transition:
    opacity 220ms ease,
    transform 440ms cubic-bezier(0.16, 0.84, 0.24, 1),
    filter 220ms ease;
}

.client-reference__feature::before,
.client-reference__feature::after {
  content: "";
  position: absolute;
  z-index: 5;
  width: 27px;
  height: 27px;
  pointer-events: none;
}

.client-reference__feature::before {
  top: 18px;
  left: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.88);
  border-left: 1px solid rgba(255, 255, 255, 0.88);
}

.client-reference__feature::after {
  right: 18px;
  bottom: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.88);
}

.client-reference__feature.is-switching {
  opacity: 0.56;
  filter: brightness(0.72);
  transform: translateX(8px);
}

.client-reference__media,
.client-reference__media::after {
  position: absolute;
  inset: 0;
}

.client-reference__media {
  z-index: 0;
  overflow: hidden;
  background: #101010;
}

.client-reference__media::after {
  content: "";
  pointer-events: none;
  box-shadow:
    inset 0 0 96px rgba(0, 0, 0, 0.32),
    inset 0 -90px 110px rgba(0, 0, 0, 0.2);
}

.client-reference__video,
.client-reference__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 58% 50%;
  filter: brightness(0.82) saturate(0.82) contrast(1.05);
}

.client-reference__feature[data-client-slug="cafe-nova"] .client-reference__video {
  object-position: 60% 52%;
}

.client-reference__feature[data-client-slug="beerepoot"] .client-reference__video {
  object-position: 62% 50%;
}

.client-reference__feature[data-client-slug="as-design"] .client-reference__video {
  object-position: 56% 50%;
}

.client-reference__copy {
  position: relative;
  z-index: 2;
  width: min(44%, 410px);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(58px, 7vw, 92px) clamp(34px, 4.8vw, 68px);
  background: rgba(5, 5, 5, 0.56);
  box-shadow: 36px 0 52px rgba(5, 5, 5, 0.38);
}

.client-reference__feature.is-logo-only .client-reference__copy {
  width: 100%;
  align-items: center;
  padding-inline: clamp(34px, 8vw, 110px);
  background: rgba(8, 8, 8, 0.94);
  box-shadow: none;
  text-align: center;
}

.client-reference__feature.is-logo-only .client-reference__media::before {
  content: "KINDSKOPF.STUDIO / REFERENZ";
  position: absolute;
  top: 50%;
  right: 6%;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-display);
  font-size: clamp(58px, 8vw, 122px);
  font-weight: 800;
  line-height: 0.8;
  text-align: right;
  transform: translateY(-50%);
}

.client-reference__logo {
  width: min(100%, 282px);
  min-height: 96px;
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.client-reference__feature.is-logo-only .client-reference__logo {
  width: min(100%, 480px);
  justify-content: center;
}

.client-reference__brandmark {
  max-width: 100%;
  max-height: 136px;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1) brightness(2.15) contrast(1.05);
}

.client-reference__feature.is-logo-only .client-reference__brandmark {
  max-height: 190px;
  object-position: center;
}

.client-reference__feature[data-client-slug="cafe-nova"] .client-reference__brandmark {
  width: 204px;
  filter: grayscale(1) brightness(2.35) contrast(1.06);
}

.client-reference__feature[data-client-slug="beerepoot"] .client-reference__brandmark {
  padding: 14px 16px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  filter: grayscale(1) contrast(1.15);
}

.client-reference__feature[data-client-slug="logaer"] .client-reference__brandmark {
  filter: grayscale(1) brightness(3.1) contrast(1.08);
}

.client-reference__feature[data-client-slug="as-design"] .client-reference__brandmark {
  width: 260px;
}

.client-reference__logo .client-card__text-logo {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 780;
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-shadow: none;
}

.client-reference__label {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 17px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.client-reference__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  background: var(--red);
}

.client-reference__feature.is-logo-only .client-reference__label::after {
  left: 50%;
  transform: translateX(-50%);
}

.client-reference__cta {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 680;
  letter-spacing: 0.015em;
  text-decoration: none;
  text-transform: uppercase;
}

.client-reference__cta::after {
  content: "→";
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  transition: transform 260ms ease;
}

.client-reference__cta:is(:hover, :focus-visible)::after {
  transform: translateX(6px);
}

.client-reference__cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 7px;
}

.client-reference__timeline {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(44px, 1fr);
  grid-template-areas:
    "position progress"
    "buttons buttons";
  align-items: center;
  gap: 9px 12px;
}

.client-reference__position {
  grid-area: position;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.client-reference__progress {
  grid-area: progress;
  width: 100%;
  height: 2px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  appearance: none;
  background: rgba(255, 255, 255, 0.24);
}

.client-reference__progress::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.24);
}

.client-reference__progress::-webkit-progress-value {
  background: var(--red);
  transition: width 420ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.client-reference__progress::-moz-progress-bar {
  background: var(--red);
}

.client-reference__buttons {
  grid-area: buttons;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.client-reference__buttons button {
  min-height: 44px;
  min-width: 0;
  padding: 5px 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.52);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.client-reference__profiles {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  min-height: 52px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px clamp(18px, 2.2vw, 32px);
  padding: 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.client-reference__profiles[hidden] {
  display: none;
}

.client-reference__profiles-label {
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.client-reference__profiles a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.67);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.client-reference__profiles a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.client-reference__profiles a:is(:hover, :focus-visible) {
  color: #fff;
}

.client-reference__profiles a:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
}

.client-reference__profiles a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.client-reference__buttons button:is(:hover, :focus-visible) {
  color: #fff;
}

.client-reference__buttons button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .client-showcase {
    min-height: auto;
    padding-block: 104px 126px;
  }

  .client-showcase h2 {
    font-size: clamp(43px, 11vw, 72px);
  }

  .client-showcase__stage {
    margin-top: 50px;
  }

  .client-reference {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 20px;
  }

  .client-reference__feature {
    grid-column: 1;
    grid-row: 1;
    min-height: clamp(500px, 112vw, 680px);
  }

  .client-reference__rail {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    height: auto;
    gap: 12px;
    overflow: visible;
  }

  .client-reference__list {
    height: auto;
    display: flex;
    grid-auto-rows: auto;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .client-reference__list::-webkit-scrollbar {
    display: none;
  }

  .client-reference__list li {
    height: auto;
    flex: 0 0 clamp(154px, 41vw, 205px);
    scroll-snap-align: start;
  }

  .client-reference__choice {
    height: auto;
    min-height: 64px;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 8px;
    padding-right: 18px;
  }

  .client-reference__choice strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .client-reference__timeline {
    grid-column: 1;
    grid-row: auto;
  }

  .client-reference__profiles {
    grid-column: 1;
    grid-row: 2;
  }

  .client-reference__copy {
    width: min(72%, 420px);
    justify-content: flex-end;
    padding: 64px clamp(28px, 7vw, 52px) clamp(52px, 9vw, 72px);
    background: rgba(5, 5, 5, 0.54);
    box-shadow: 26px 0 42px rgba(5, 5, 5, 0.3);
  }
}

@media (max-width: 600px) {
  .client-showcase {
    padding-inline: max(18px, env(safe-area-inset-left));
  }

  .client-showcase__eyebrow {
    font-size: 9px;
    letter-spacing: 0.22em;
  }

  .client-showcase h2 {
    line-height: 0.96;
  }

  .client-reference__feature {
    min-height: 510px;
  }

  .client-reference__copy {
    width: 84%;
    padding: 54px 26px 48px;
  }

  .client-reference__logo {
    width: min(100%, 230px);
    min-height: 82px;
    margin-bottom: 22px;
  }

  .client-reference__brandmark {
    max-height: 112px;
  }

  .client-reference__timeline {
    grid-template-columns: auto minmax(72px, 1fr);
    gap: 11px;
  }

  .client-reference__profiles {
    gap: 2px 18px;
  }

  .client-reference__buttons {
    gap: 9px;
  }

  .client-reference__buttons button {
    min-height: 44px;
    padding-inline: 5px;
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-reference__feature,
  .client-reference__choice,
  .client-reference__choice::after,
  .client-reference__progress::-webkit-progress-value,
  .client-reference__cta::after {
    transition-duration: 1ms !important;
  }
}

/* 2026 Hauptseiten-Erweiterung */

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 4px;
  color: #050505;
  background: #fff;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.reel-card--without-poster,
.mirror-reel--without-poster {
  background:
    radial-gradient(circle at 50% 22%, rgba(229, 9, 20, 0.24), transparent 48%),
    #111;
}

.client-card__feedback,
.client-card__feedback-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  background: #020202;
  transition: opacity 260ms ease;
}

.client-card__feedback {
  object-fit: cover;
}

.client-card__feedback-placeholder {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  padding: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 24%, rgba(229, 9, 20, 0.25), transparent 52%),
    linear-gradient(145deg, #111, #030303 72%);
}

.client-card__feedback-placeholder span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.client-card__feedback-placeholder strong {
  color: #fff;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.05;
  text-wrap: balance;
}

.client-card__feedback-placeholder small {
  max-width: 22ch;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.35;
}

.client-feedback-trigger {
  position: absolute;
  inset: 0;
  z-index: 4;
  appearance: none;
  border: 0;
  border-radius: inherit;
  cursor: pointer;
  background: transparent;
}

.client-feedback-trigger:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: -5px;
}

.client-feedback-close {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 9;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(3, 3, 3, 0.72);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.client-card.has-feedback > .client-socials {
  z-index: 8;
}

.client-card.is-feedback-playing .client-card__feedback,
.client-card.is-feedback-playing .client-card__feedback-placeholder {
  opacity: 1;
}

.client-card.is-feedback-playing .client-card__content::before {
  opacity: 0;
}

.client-card.is-feedback-playing .client-card__content > img,
.client-card.is-feedback-playing .client-card__content > .client-card__text-logo,
.client-card.is-feedback-playing .client-card__content > .client-card__name {
  opacity: 0;
  transform: scale(0.98);
}

.client-card.is-feedback-playing .client-feedback-close {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.client-card.is-feedback-playing .client-socials {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.client-card--cafe-nova img,
.client-card--the-barbecue-park img {
  max-height: 92px;
}

.client-card--cafe-nova img {
  max-width: 74%;
}

.client-card--the-barbecue-park img {
  max-width: 72%;
}

.client-card--as-design img {
  max-width: 70%;
}

.client-card__orbit::before,
.client-card.is-erasing .client-card__content {
  animation-duration: 2200ms;
}

.client-card.is-queued-swap .client-card__orbit::before {
  animation-duration: 2200ms;
}

.process-scroll {
  min-height: 270svh;
}

.process-step {
  flex-basis: clamp(320px, 29vw, 420px);
  min-height: clamp(430px, 51svh, 570px);
  justify-content: flex-start;
  padding: clamp(28px, 2.8vw, 42px);
}

.process-step h3 {
  min-height: 3.35em;
  margin: 0 0 clamp(20px, 2.6svh, 30px);
  font-size: clamp(22px, 1.75vw, 30px);
}

.process-step p {
  max-width: 31ch;
  font-size: clamp(14px, 1.02vw, 17px);
}

.process-step__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-top: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 3px;
  background:
    radial-gradient(circle at 50% 22%, rgba(229, 9, 20, 0.15), transparent 60%),
    #080808;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 46px rgba(0, 0, 0, 0.4);
}

.process-step__video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.3));
  transition: opacity 260ms ease;
}

.process-step__video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04) brightness(0.8);
  transition: filter 360ms ease, transform 620ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.process-step__video-hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(4, 4, 4, 0.68);
  box-shadow: 0 0 24px rgba(229, 9, 20, 0.14);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  transform: translateX(-50%);
  transition: opacity 220ms ease, transform 280ms ease;
  backdrop-filter: blur(10px);
}

.process-step:hover .process-step__video-frame video,
.process-step:focus-within .process-step__video-frame video,
.process-step.is-preview-playing .process-step__video-frame video {
  filter: saturate(1) contrast(1.02) brightness(1);
  transform: scale(1.018);
}

.process-step:hover .process-step__video-frame::after,
.process-step:focus-within .process-step__video-frame::after,
.process-step.is-preview-playing .process-step__video-frame::after {
  opacity: 0;
}

.process-step:hover .process-step__video-hint,
.process-step:focus-within .process-step__video-hint,
.process-step.is-preview-playing .process-step__video-hint {
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
}

.solution-answer-shell {
  align-items: center;
}

.solution-answer {
  width: min(100%, 1160px);
  display: grid;
  justify-items: center;
  gap: clamp(18px, 2.6svh, 30px);
  padding: clamp(36px, 5vw, 74px);
  text-align: center;
}

.solution-answer__eyebrow {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.solution-answer h2 {
  max-width: 13ch;
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 6.5vw, 104px);
  font-weight: 620;
  line-height: 1;
  text-wrap: balance;
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.18),
    0 0 42px rgba(229, 9, 20, 0.22),
    0 26px 68px rgba(0, 0, 0, 0.82);
}

.solution-answer p {
  max-width: 31ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(20px, 2.1vw, 32px);
  font-weight: 520;
  line-height: 1.28;
  text-wrap: balance;
}

.solution-answer__button {
  margin-top: clamp(8px, 1.5svh, 18px);
}

.services-scroll {
  min-height: 0;
  margin-top: clamp(-440px, -42svh, -300px);
  padding-bottom: clamp(44px, 5svh, 72px);
}

.services-scroll__inner {
  min-height: 0;
}

.services-list {
  position: relative;
  top: auto;
  height: auto;
  margin-top: calc(100svh + clamp(72px, 8svh, 120px));
  padding-bottom: clamp(28px, 3svh, 44px);
  gap: clamp(28px, 4svh, 54px);
}

.services-scroll + .client-showcase {
  margin-top: clamp(170px, 24svh, 330px);
}

@media (min-width: 901px) {
  .service-card__toggle {
    min-height: clamp(124px, 13svh, 168px);
  }
}

.service-card__body-inner {
  min-height: 0;
  overflow: hidden;
}

.service-card__body-inner > strong {
  display: block;
  max-width: 34ch;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.25;
}

.service-card__body p {
  max-width: 66ch;
}

.service-card__link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 740;
  text-decoration: none;
}

.service-card__link span {
  color: var(--red);
  transition: transform 220ms ease;
}

.service-card__link:hover span,
.service-card__link:focus-visible span {
  transform: translateX(4px);
}

.service-card__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 5px;
}

.service-card__examples {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.service-card__examples[hidden] {
  display: none;
}

.service-example {
  appearance: none;
  min-width: 0;
  display: grid;
  grid-template-rows: clamp(132px, 11vw, 168px) auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #fff;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition:
    border-color 220ms ease,
    transform 260ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.service-example:hover,
.service-example:focus-visible {
  border-color: rgba(229, 9, 20, 0.5);
  transform: translateY(-3px);
  outline: none;
}

.service-example--placeholder {
  cursor: default;
  border-style: dashed;
}

.service-example--placeholder:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: none;
}

.service-example__visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(229, 9, 20, 0.2), transparent 58%),
    #0a0a0a;
}

.service-example__play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 5, 5, 0.68);
  box-shadow: 0 0 24px rgba(229, 9, 20, 0.34);
  font-size: 13px;
  line-height: 1;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
}

.service-example__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04) brightness(0.98);
  transform: scale(1.012);
  transition:
    filter 320ms ease,
    transform 520ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.service-example:hover .service-example__visual img,
.service-example:focus-visible .service-example__visual img {
  filter: saturate(1.12) contrast(1.03) brightness(1.03);
  transform: scale(1.055);
}

.service-example__placeholder {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.service-example__copy {
  display: grid;
  gap: 5px;
  padding: 12px;
}

.service-example__copy strong {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-example__copy > span {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.site-footer__socials,
.site-footer__legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  opacity: var(--top-edge-opacity, 1);
}

.site-footer__socials {
  margin-top: 28px;
}

.site-footer__legal {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.site-footer__socials a,
.site-footer__legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible,
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: #fff;
}

.site-footer__legal > .site-footer__copyright {
  margin-left: auto;
}

.media-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: clamp(18px, 3vw, 48px);
  border: 0;
  color: #fff;
  background: rgba(2, 2, 2, 0.94);
  backdrop-filter: blur(18px);
}

.media-dialog::backdrop {
  background: rgba(0, 0, 0, 0.88);
}

.media-dialog__panel {
  position: relative;
  width: min(100%, 1320px);
  min-height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 22px;
  margin: 0 auto;
}

.media-dialog__close {
  position: fixed;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 5, 5, 0.82);
  cursor: pointer;
  font-size: 30px;
}

.media-dialog__stage {
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: #050505;
}

.media-dialog__stage img,
.media-dialog__stage video {
  max-width: 100%;
  max-height: calc(100svh - 180px);
  object-fit: contain;
}

.media-dialog__copy {
  max-width: 760px;
}

.media-dialog__copy h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 44px);
}

.media-dialog__copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .process-scroll {
    min-height: 300svh;
  }

  .services-scroll {
    min-height: auto;
    margin-top: clamp(-300px, -31svh, -190px);
  }

  .services-scroll__inner {
    min-height: 0;
  }

  .services-list {
    margin-top: clamp(180px, 28svh, 320px);
    padding-bottom: 0;
  }

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

@media (max-width: 700px) {
  .client-feedback-close {
    top: 10px;
    left: 10px;
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .client-card--cafe-nova img,
  .client-card--the-barbecue-park img {
    max-height: 76px;
  }

  .process-scroll {
    min-height: 330svh;
  }

  .process-step {
    flex-basis: min(86vw, 350px);
    min-height: min(62svh, 470px);
    padding: 26px 22px;
  }

  .process-step h3 {
    min-height: auto;
    margin-bottom: 22px;
  }

  .process-step__video-hint {
    display: none;
  }

  .services-scroll + .client-showcase {
    margin-top: clamp(110px, 16svh, 180px);
  }

  .solution-answer {
    gap: 18px;
    padding: 26px 8px;
  }

  .solution-answer h2 {
    max-width: 10ch;
    font-size: clamp(40px, 12vw, 58px);
  }

  .solution-answer p {
    max-width: 24ch;
    font-size: clamp(19px, 5.8vw, 25px);
  }

  .service-card__examples {
    grid-template-columns: 1fr;
  }

  .service-example {
    grid-template-columns: 116px minmax(0, 1fr);
    grid-template-rows: 96px;
  }

  .site-footer__legal > .site-footer__copyright {
    width: 100%;
    margin-left: 0;
  }

  .media-dialog {
    padding: 72px 14px 18px;
  }

  .media-dialog__panel {
    min-height: calc(100dvh - 90px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-card__feedback,
  .client-feedback-close,
  .service-example,
  .service-card__link span,
  .skip-link {
    transition-duration: 1ms;
  }
}

/* The five-card story follows the real card geometry and releases the page sooner. */
.process-scroll {
  min-height: 215svh;
}

@media (max-width: 900px) {
  .process-scroll {
    min-height: 230svh;
  }
}

@media (max-width: 700px) {
  .process-scroll {
    min-height: 240svh;
  }
}

/* Produktiver Studio-Tally-Sucher */

.cursor-system {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

body.is-cursor-visible .cursor-system {
  opacity: 1;
}

.cursor-core,
.cursor-tally,
.cursor-pulse {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  will-change: transform;
}

.cursor-core {
  z-index: 4;
  width: 5px;
  height: 5px;
  margin: 1px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.76);
  transition:
    width 150ms ease,
    height 150ms ease,
    margin 150ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.cursor-tally {
  z-index: 3;
  width: 46px;
  height: 46px;
  transition:
    width 200ms cubic-bezier(0.16, 0.84, 0.24, 1),
    height 200ms cubic-bezier(0.16, 0.84, 0.24, 1),
    margin 200ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.cursor-tally__corner {
  position: absolute;
  width: 11px;
  height: 11px;
  border-color: rgba(255, 244, 223, 0.86);
  border-style: solid;
  filter: drop-shadow(0 0 6px rgba(255, 244, 223, 0.22));
  transition:
    border-color 180ms ease,
    transform 200ms ease;
}

.cursor-tally__corner--tl {
  top: 0;
  left: 0;
  border-width: 1.5px 0 0 1.5px;
}

.cursor-tally__corner--tr {
  top: 0;
  right: 0;
  border-width: 1.5px 1.5px 0 0;
}

.cursor-tally__corner--br {
  right: 0;
  bottom: 0;
  border-width: 0 1.5px 1.5px 0;
}

.cursor-tally__corner--bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 1.5px 1.5px;
}

.cursor-tally__cross {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 244, 223, 0.4);
}

.cursor-tally__cross--x {
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.cursor-tally__cross--y {
  width: 1px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.cursor-tally__status {
  position: absolute;
  top: -19px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 244, 223, 0.68);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  letter-spacing: 0.15em;
  opacity: 0;
  transform: translateY(3px);
  transition:
    opacity 160ms ease,
    transform 180ms ease;
}

.cursor-tally__status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px rgba(229, 9, 20, 0.9);
}

.cursor-tally__status b {
  font: inherit;
}

body:not([data-cursor-state="default"]) .cursor-tally {
  width: 66px;
  height: 66px;
  margin: -10px;
}

body:not([data-cursor-state="default"]) .cursor-tally__corner {
  border-color: rgba(229, 9, 20, 0.92);
}

body:not([data-cursor-state="default"]) .cursor-tally__status {
  opacity: 1;
  transform: translateY(0);
}

body[data-cursor-state="play"] .cursor-tally {
  width: 82px;
  height: 82px;
  margin: -18px;
}

.cursor-pulse {
  z-index: 1;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(229, 9, 20, 0.8);
  border-radius: 50%;
  animation: cursor-pulse 520ms cubic-bezier(0.16, 0.84, 0.24, 1) forwards;
}

.cursor-system.is-clicking .cursor-tally__corner--tl {
  transform: translate(4px, 4px);
}

.cursor-system.is-clicking .cursor-tally__corner--tr {
  transform: translate(-4px, 4px);
}

.cursor-system.is-clicking .cursor-tally__corner--br {
  transform: translate(-4px, -4px);
}

.cursor-system.is-clicking .cursor-tally__corner--bl {
  transform: translate(4px, -4px);
}

@keyframes cursor-pulse {
  from {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0.5);
  }

  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.45);
  }
}

@media (hover: hover) and (pointer: fine) {
  body.is-cursor-ready,
  body.is-cursor-ready a,
  body.is-cursor-ready button,
  body.is-cursor-ready [tabindex] {
    cursor: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-system {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-system {
    display: none;
  }
}

/* Productive heading weight; casing is finalized in the silver pass below. */
.after-hero :is(h1, h2, h3, h4, h5, h6),
.statement-panel p,
.solution-scroll__question,
.service-card__body-inner > strong {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: none;
}

.service-card__title {
  text-transform: none;
}

.process-scroll__heading .graffiti-accent--process {
  display: inline-block;
  font-size: 1.06em;
  line-height: 0.9;
}

/* Canonical KINDSKOPF.STUDIO wordmark: Bold name, Book suffix. */
.brand-wordmark {
  font-family: var(--font-display);
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-wordmark__kindskopf {
  font-weight: 700;
}

.brand-wordmark__studio {
  font-weight: 400;
}

/* Primary CTAs share one size; the current light colour is finalized below. */
.orbit-button:not(.final-prompt__button) {
  min-width: 184px;
  min-height: 52px;
  box-shadow:
    0 0 0 1px rgba(255, 78, 88, 0.2),
    0 0 34px 9px rgba(229, 9, 20, 0.28),
    0 0 86px 22px rgba(229, 9, 20, 0.13),
    0 18px 42px rgba(0, 0, 0, 0.58);
  filter:
    drop-shadow(0 0 12px rgba(229, 9, 20, 0.34))
    drop-shadow(0 0 28px rgba(229, 9, 20, 0.17));
}

.orbit-button:not(.final-prompt__button)::after {
  background:
    radial-gradient(ellipse at 50% 118%, rgba(229, 9, 20, 0.15), transparent 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    rgba(5, 3, 3, 0.94);
}

.orbit-button:not(.final-prompt__button):hover,
.orbit-button:not(.final-prompt__button):focus-visible {
  box-shadow:
    0 0 0 1px rgba(255, 104, 112, 0.3),
    0 0 42px 11px rgba(229, 9, 20, 0.38),
    0 0 96px 25px rgba(229, 9, 20, 0.18),
    0 18px 42px rgba(0, 0, 0, 0.58);
}

/* Portrait source posters keep their proportions instead of being cropped into small landscape strips. */
.service-example {
  grid-template-rows: auto auto;
}

.service-example__visual {
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.service-card__examples[data-service-key="websites"] {
  grid-template-columns: minmax(0, 1fr);
}

.service-card__examples[data-service-key="websites"] .service-example__visual {
  aspect-ratio: 16 / 9;
}

@media (max-width: 900px) {
  .site-footer__headline-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__button {
    width: min(100%, 360px);
  }
}

@media (max-width: 700px) {
  .service-example {
    grid-template-columns: minmax(132px, 42%) minmax(0, 1fr);
    grid-template-rows: minmax(168px, 46vw);
  }

  .service-example__visual {
    height: 100%;
    aspect-ratio: auto;
  }

  .service-card__examples[data-service-key="websites"] .service-example {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .service-card__examples[data-service-key="websites"] .service-example__visual {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

/* Full-colour problem previews with a clear hover zoom and no native controls. */
.process-step__video-frame {
  appearance: none;
  padding: 0;
  color: inherit;
  cursor: zoom-in;
  text-align: inherit;
  transition:
    border-color 260ms ease,
    box-shadow 320ms ease,
    transform 420ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.process-step__video-frame::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
}

.process-step__video-frame video {
  pointer-events: none;
  filter: saturate(1.04) contrast(1.02) brightness(0.98);
  transform: scale(1.01);
}

.process-step:hover .process-step__video-frame,
.process-step:focus-within .process-step__video-frame,
.process-step.is-preview-playing .process-step__video-frame {
  border-color: rgba(255, 255, 255, 0.23);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 34px rgba(229, 9, 20, 0.13),
    0 22px 52px rgba(0, 0, 0, 0.46);
}

.process-step:hover .process-step__video-frame video,
.process-step:focus-within .process-step__video-frame video,
.process-step.is-preview-playing .process-step__video-frame video {
  filter: saturate(1.1) contrast(1.01) brightness(1.03);
  transform: scale(1.055);
}

.process-step__video-frame:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.88);
  outline-offset: 5px;
}

.process-step__video-hint {
  font-size: 9px;
  letter-spacing: 0.08em;
}

@media (prefers-reduced-motion: reduce) {
  .process-step__video-frame,
  .process-step__video-frame video,
  .service-example__visual img {
    transition-duration: 1ms;
  }

  .process-step:hover .process-step__video-frame video,
  .process-step:focus-within .process-step__video-frame video,
  .process-step.is-preview-playing .process-step__video-frame video,
  .service-example:hover .service-example__visual img,
  .service-example:focus-visible .service-example__visual img {
    transform: none;
  }
}

/* 2026-08 Silver lighting pass
   Red remains the flat brand accent. Light, glow, active rails and CTA halos use
   a deliberately quieter white/silver spectrum across the productive page. */
:root {
  --silver-light: rgba(235, 238, 242, 0.78);
  --silver-soft: rgba(226, 231, 236, 0.2);
  --silver-faint: rgba(216, 222, 228, 0.08);
}

body::before {
  background: radial-gradient(
    ellipse 58vw 360px at 50% -18px,
    rgba(242, 244, 247, 0.24),
    rgba(232, 236, 240, 0.12) 28%,
    rgba(216, 222, 228, 0.05) 54%,
    transparent 80%
  );
  filter: blur(14px);
}

body::after {
  background: radial-gradient(
    ellipse 58% 240px at 50% 100%,
    rgba(240, 243, 246, 0.2),
    rgba(226, 231, 236, 0.1) 30%,
    rgba(210, 217, 224, 0.04) 58%,
    transparent 100%
  );
  filter: blur(14px);
}

.top-return-logo img {
  filter:
    drop-shadow(0 8px 22px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 14px rgba(235, 238, 242, 0.18));
}

.reel-card:focus-visible {
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.86),
    0 0 0 5px rgba(226, 231, 236, 0.34),
    0 24px 56px rgba(0, 0, 0, 0.64);
}

/* Display copy is deliberately set in capitals; the wordmark keeps its own rule. */
:is(h1, h2, h3, h4, h5, h6),
.after-hero :is(h1, h2, h3, h4, h5, h6),
.statement-panel p,
.solution-scroll__question,
.service-card__toggle,
.service-card__title,
.client-showcase__backdrop {
  text-transform: uppercase;
}

/* Sedgwick has a smaller visual body than Clan OT and needs optical compensation. */
.graffiti-accent {
  font-size: 1.08em;
}

.statement-panel .graffiti-accent--statement {
  font-size: 1.12em;
}

.graffiti-accent--keep {
  font-size: 1.19em;
}

.graffiti-accent--services {
  font-size: 1.22em;
}

.graffiti-accent--client,
.graffiti-accent--final {
  font-size: 1.15em;
}

.process-scroll__heading .graffiti-accent--process,
.services-scroll__word.graffiti-accent {
  font-size: 1.12em;
}

.solution-question__accent.graffiti-accent {
  font-size: 1.12em;
}

.service-card__title.graffiti-accent {
  font-size: 1.18em;
}

.glow-word,
.highlight-glow,
.solution-question__char--glow {
  text-shadow:
    0 0 7px rgba(255, 255, 255, 0.86),
    0 0 18px rgba(244, 246, 248, 0.34),
    0 0 38px rgba(226, 231, 236, 0.18),
    0 0 68px rgba(210, 217, 224, 0.1),
    0 18px 52px rgba(0, 0, 0, 0.78);
}

/* Contact and project CTAs: KKS-red orbit, quieter white static backlight. */
.orbit-button::before {
  background: conic-gradient(
    from 0deg,
    rgba(229, 9, 20, 0),
    rgba(229, 9, 20, 0) 64%,
    rgba(229, 9, 20, 0.26) 71%,
    rgba(255, 24, 38, 0.92) 78%,
    rgba(255, 158, 162, 1) 83%,
    rgba(255, 45, 56, 0.82) 90%,
    rgba(229, 9, 20, 0.18) 96%,
    rgba(229, 9, 20, 0)
  );
  filter: blur(0.14px) drop-shadow(0 0 9px rgba(229, 9, 20, 0.74));
}

.orbit-button:not(.final-prompt__button) {
  box-shadow:
    0 0 0 1px rgba(236, 240, 244, 0.13),
    0 0 26px 7px rgba(226, 231, 236, 0.12),
    0 0 64px 16px rgba(210, 217, 224, 0.055),
    0 18px 42px rgba(0, 0, 0, 0.58);
  filter:
    drop-shadow(0 0 9px rgba(235, 238, 242, 0.16))
    drop-shadow(0 0 22px rgba(216, 222, 228, 0.07));
}

.orbit-button:not(.final-prompt__button)::after {
  background:
    radial-gradient(ellipse at 50% 118%, rgba(235, 238, 242, 0.075), transparent 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    rgba(5, 5, 5, 0.94);
}

.orbit-button:not(.final-prompt__button):hover,
.orbit-button:not(.final-prompt__button):focus-visible {
  box-shadow:
    0 0 0 1px rgba(245, 247, 249, 0.22),
    0 0 32px 9px rgba(232, 236, 240, 0.18),
    0 0 76px 20px rgba(216, 222, 228, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.58);
}

/* Customer wall lighting and the active replacement orbit. */
.client-showcase::before {
  background: radial-gradient(
    ellipse at center,
    rgba(239, 242, 245, 0.12),
    rgba(226, 231, 236, 0.045) 42%,
    transparent 76%
  );
}

.client-showcase__backdrop,
.client-card__text-logo {
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.12),
    0 0 32px rgba(226, 231, 236, 0.09),
    0 14px 28px rgba(0, 0, 0, 0.5);
}

.client-card,
.client-card__content::before,
.client-card--simulated,
.client-card--simulated .client-card__content::before,
.client-card.is-erasing .client-card__content::before,
.client-card--simulated.is-erasing .client-card__content::before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018) 58%, rgba(226, 231, 236, 0.025)),
    rgba(10, 10, 10, 0.72);
}

.client-card::before {
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), rgba(224, 229, 234, 0.14), transparent);
}

.client-card__orbit::before {
  background: conic-gradient(
    from 0deg,
    transparent,
    transparent 64%,
    rgba(224, 229, 234, 0.18) 71%,
    rgba(244, 246, 248, 0.74) 78%,
    #fff 83%,
    rgba(226, 231, 236, 0.66) 90%,
    rgba(216, 222, 228, 0.14) 96%,
    transparent
  );
  filter: blur(0.14px) drop-shadow(0 0 7px rgba(235, 238, 242, 0.3));
}

.client-card::after {
  background: radial-gradient(ellipse at center, rgba(226, 231, 236, 0.09), transparent 72%);
}

.client-card:hover,
.client-card:focus-within,
.client-card.is-queued-swap {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 30px 86px rgba(0, 0, 0, 0.56),
    0 0 34px rgba(226, 231, 236, 0.1);
}

.client-social:hover,
.client-social:focus-visible {
  border-color: rgba(235, 238, 242, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 18px rgba(226, 231, 236, 0.16),
    0 14px 30px rgba(0, 0, 0, 0.5);
}

.client-card__feedback-placeholder,
.reel-card--without-poster,
.mirror-reel--without-poster {
  background:
    radial-gradient(circle at 50% 24%, rgba(226, 231, 236, 0.11), transparent 56%),
    linear-gradient(145deg, #111, #030303 72%);
}

/* Problem rail: silver active edge, timeline and restrained ambient light. */
.process-scroll {
  background:
    radial-gradient(ellipse 72% 42% at 50% 16%, rgba(226, 231, 236, 0.045), transparent 64%),
    linear-gradient(180deg, #040404 0%, #050505 48%, #030303 100%);
}

.process-scroll h2,
.solution-answer h2,
.services-scroll__headline,
.final-prompt h2 {
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.2),
    0 0 34px rgba(226, 231, 236, 0.12),
    0 22px 58px rgba(0, 0, 0, 0.84);
}

.process-step::before {
  background: radial-gradient(ellipse at 50% 100%, rgba(226, 231, 236, 0.045), transparent 60%);
}

.process-step::after,
.service-card::before {
  background: linear-gradient(
    180deg,
    rgba(220, 226, 232, 0.02),
    rgba(226, 231, 236, 0.14) 18%,
    rgba(247, 248, 250, 0.5) 54%,
    rgba(226, 231, 236, 0.2) 84%,
    rgba(216, 222, 228, 0.03)
  );
  box-shadow:
    0 0 12px rgba(235, 238, 242, 0.1),
    1px 0 0 rgba(255, 255, 255, 0.018),
    -1px 0 0 rgba(255, 255, 255, 0.01);
}

.process-step.is-current {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 0 46px rgba(226, 231, 236, 0.045),
    0 24px 78px rgba(0, 0, 0, 0.48);
}

.process-step.is-current::after {
  box-shadow:
    0 0 15px rgba(242, 244, 247, 0.16),
    1px 0 0 rgba(255, 255, 255, 0.032),
    -1px 0 0 rgba(255, 255, 255, 0.016);
}

.process-step.is-current .process-step__number {
  border-color: rgba(235, 238, 242, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 24px rgba(226, 231, 236, 0.12),
    0 16px 34px rgba(0, 0, 0, 0.44);
}

.process-timeline__fill {
  background: linear-gradient(90deg, transparent, rgba(242, 244, 247, 0.36), transparent);
  filter: blur(2px) drop-shadow(0 0 14px rgba(226, 231, 236, 0.22));
}

.process-step__video-frame,
.service-example__visual {
  background:
    radial-gradient(circle at 50% 22%, rgba(226, 231, 236, 0.08), transparent 60%),
    #080808;
}

.process-step__video-hint,
.service-example__play {
  box-shadow: 0 0 20px rgba(226, 231, 236, 0.12);
}

.process-step:hover .process-step__video-frame,
.process-step:focus-within .process-step__video-frame,
.process-step.is-preview-playing .process-step__video-frame {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 28px rgba(226, 231, 236, 0.08),
    0 22px 52px rgba(0, 0, 0, 0.46);
}

/* Solution and services retain red brand fills, but their emitted light is silver. */
.solution-scroll {
  background:
    radial-gradient(ellipse 68% 32% at 50% 22%, rgba(226, 231, 236, 0.03), transparent 68%),
    linear-gradient(180deg, #030303 0%, #050505 45%, #030303 100%);
}

.solution-scroll__question {
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.12),
    0 0 calc(24px * var(--solution-question-glow)) rgba(255, 255, 255, 0.5),
    0 0 calc(64px * var(--solution-question-glow)) rgba(226, 231, 236, 0.18),
    0 24px 68px rgba(0, 0, 0, 0.85);
}

.solution-question__bang {
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.56),
    0 0 30px rgba(226, 231, 236, 0.17),
    0 18px 46px rgba(0, 0, 0, 0.75);
}

.solution-cta {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 -1px 0 rgba(235, 238, 242, 0.055),
    0 36px 92px rgba(0, 0, 0, 0.58);
}

.solution-cta__fill {
  filter: saturate(1.08) drop-shadow(0 0 20px rgba(226, 231, 236, 0.11));
}

.solution-cta h2 {
  text-shadow:
    0 0 16px rgba(255, 255, 255, 0.18),
    0 0 30px rgba(226, 231, 236, 0.12),
    0 18px 48px rgba(0, 0, 0, 0.75);
}

.services-scroll {
  background:
    radial-gradient(ellipse 46% 28% at 50% 20%, rgba(226, 231, 236, 0.025), transparent 72%),
    linear-gradient(180deg, rgba(3, 3, 3, 0) 0%, rgba(5, 5, 5, 0.18) 16%, #050505 34%, #020202 100%);
}

.service-card:hover,
.service-card:focus-within,
.service-card.is-open {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 30px 82px rgba(0, 0, 0, 0.42),
    0 0 36px rgba(226, 231, 236, 0.055);
}

.service-card__icon,
.service-card.is-open .service-card__icon {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 22px rgba(226, 231, 236, 0.075);
}

.service-example:hover,
.service-example:focus-visible {
  border-color: rgba(235, 238, 242, 0.38);
}

/* Closing section and footer use the quietest light level of the system. */
.final-prompt::before {
  background: radial-gradient(ellipse at center, rgba(235, 238, 242, 0.075), transparent 68%);
}

.final-prompt__button {
  background: rgba(10, 10, 10, 0.78);
  box-shadow:
    0 0 0 1px rgba(242, 244, 247, 0.15),
    0 0 28px 7px rgba(226, 231, 236, 0.13),
    0 0 70px 16px rgba(210, 217, 224, 0.06),
    0 24px 52px rgba(0, 0, 0, 0.62);
}

.final-prompt__button::before {
  filter: blur(0.2px) drop-shadow(0 0 11px rgba(229, 9, 20, 0.78));
}

.final-prompt__button::after {
  background:
    radial-gradient(ellipse at 50% 115%, rgba(235, 238, 242, 0.11), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    rgba(8, 8, 8, 0.94);
}

.final-prompt__button:hover,
.final-prompt__button:focus-visible {
  box-shadow:
    0 0 0 1px rgba(250, 251, 252, 0.24),
    0 0 38px 10px rgba(235, 238, 242, 0.2),
    0 0 86px 22px rgba(216, 222, 228, 0.09),
    0 24px 52px rgba(0, 0, 0, 0.62);
}

@keyframes final-cta-backlight {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(242, 244, 247, 0.13),
      0 0 25px 6px rgba(226, 231, 236, 0.1),
      0 0 62px 14px rgba(210, 217, 224, 0.045),
      0 24px 52px rgba(0, 0, 0, 0.62);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(250, 251, 252, 0.2),
      0 0 35px 9px rgba(235, 238, 242, 0.17),
      0 0 78px 19px rgba(216, 222, 228, 0.075),
      0 24px 52px rgba(0, 0, 0, 0.62);
  }
}

.site-footer::before {
  background: radial-gradient(
    ellipse 62% 230px at 50% 100%,
    rgba(242, 244, 247, 0.16),
    rgba(226, 231, 236, 0.075) 30%,
    rgba(210, 217, 224, 0.025) 60%,
    transparent 100%
  );
  filter: blur(15px);
}

body.is-page-bottom .site-footer::before {
  opacity: 0.5;
}

.site-footer__logo {
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.13),
    0 0 30px rgba(226, 231, 236, 0.09);
}

@keyframes client-card-swap-glow-prime {
  0% {
    border-color: rgba(255, 255, 255, 0.095);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.075),
      0 26px 74px rgba(0, 0, 0, 0.48);
  }

  100% {
    border-color: rgba(235, 238, 242, 0.14);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 30px 86px rgba(0, 0, 0, 0.56),
      0 0 38px rgba(226, 231, 236, 0.12),
      0 0 78px rgba(210, 217, 224, 0.055);
  }
}

@keyframes client-card-swap-glow-settle {
  0% {
    border-color: rgba(235, 238, 242, 0.14);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 30px 86px rgba(0, 0, 0, 0.56),
      0 0 38px rgba(226, 231, 236, 0.12),
      0 0 78px rgba(210, 217, 224, 0.055);
  }

  100% {
    border-color: rgba(255, 255, 255, 0.095);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.075),
      0 26px 74px rgba(0, 0, 0, 0.48);
  }
}

/* Typography pass: lettering stays crisp and no longer emits light. */
body :is(h1, h2, h3, h4, h5, h6),
.statement-panel p,
.graffiti-accent,
.glow-word,
.highlight-glow,
.solution-scroll__question,
.solution-question__char,
.solution-question__bang,
.service-card__toggle,
.client-showcase__backdrop,
.client-card__text-logo,
.site-footer__logo {
  text-shadow: none !important;
}

body :is(h1, h2, h3, h4, h5, h6),
.statement-panel p,
.solution-scroll__question,
.service-card__toggle {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.statement-panel p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

body :is(h1, h2, h3, h4, h5, h6) .graffiti-accent,
.statement-panel .graffiti-accent,
.solution-scroll__question .graffiti-accent,
.service-card__toggle .graffiti-accent {
  line-height: 1;
}

html:has(.media-dialog[open]) {
  overflow: hidden;
}

@media (max-width: 700px) {
  .graffiti-accent--keep {
    white-space: normal;
  }
}

/* Homepage-only attention cue. This is decorative and never controls the real pointer. */
.cta-tally-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2147483646;
  width: 46px;
  height: 46px;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
}

.cta-tally-cursor .cursor-tally,
body:not([data-cursor-state="default"]) .cta-tally-cursor .cursor-tally {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 46px;
  margin: 0;
  transform: none !important;
}

.cta-tally-cursor .cursor-tally__corner {
  border-color: rgba(229, 9, 20, 0.92);
}

.cta-tally-cursor .cursor-tally__status {
  opacity: 1;
  transform: translateY(0);
}

.cta-tally-cursor.is-holding .cursor-tally__corner--tl {
  transform: translate(4px, 4px);
}

.cta-tally-cursor.is-holding .cursor-tally__corner--tr {
  transform: translate(-4px, 4px);
}

.cta-tally-cursor.is-holding .cursor-tally__corner--br {
  transform: translate(-4px, -4px);
}

.cta-tally-cursor.is-holding .cursor-tally__corner--bl {
  transform: translate(4px, -4px);
}

.final-prompt__button.is-cta-cue-highlight {
  animation: none;
  box-shadow:
    0 0 0 1px rgba(250, 251, 252, 0.34),
    0 0 46px 13px rgba(235, 238, 242, 0.28),
    0 0 104px 28px rgba(216, 222, 228, 0.13),
    0 24px 52px rgba(0, 0, 0, 0.62);
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cta-tally-cursor {
    display: none;
  }

  .final-prompt__button.is-cta-cue-highlight {
    transition: none;
  }
}

/* Homepage pain rail: the supplied 9:16 reels remain fully visible. */
.process-scroll__pin {
  padding-top: clamp(72px, 8svh, 108px);
  padding-bottom: clamp(36px, 5svh, 72px);
}

.process-scroll__viewport {
  margin-top: clamp(34px, 4svh, 58px);
  padding-bottom: 56px;
}

.process-step {
  flex-basis: clamp(270px, min(24vw, 34svh), 350px);
  min-height: clamp(620px, 70svh, 760px);
  padding: clamp(24px, 2.2vw, 34px);
}

.process-step h3 {
  min-height: 3.3em;
  margin-bottom: clamp(16px, 2svh, 22px);
  font-size: clamp(20px, 1.55vw, 26px);
}

.process-step__video-frame {
  aspect-ratio: 9 / 16;
}

.process-step__video-frame video,
.process-step:hover .process-step__video-frame video,
.process-step:focus-within .process-step__video-frame video,
.process-step.is-preview-playing .process-step__video-frame video {
  object-fit: contain;
  object-position: center;
  transform: none;
}

@media (min-width: 701px) and (max-height: 1000px) {
  .process-scroll__pin {
    padding-top: 46px;
    padding-bottom: 24px;
  }

  .process-scroll__eyebrow {
    margin-bottom: 8px;
  }

  .process-scroll h2 {
    font-size: clamp(38px, 4vw, 58px);
  }

  .process-scroll__viewport {
    margin-top: 20px;
    padding-bottom: 30px;
  }

  .process-step {
    flex-basis: clamp(250px, min(22vw, 30svh), 300px);
    min-height: clamp(510px, 66svh, 590px);
    padding: 20px;
  }

  .process-step h3 {
    min-height: 3.2em;
    margin-bottom: 14px;
    font-size: clamp(19px, 1.65vw, 24px);
  }
}

@media (max-width: 700px) {
  .process-scroll__pin {
    padding: 36px 20px;
  }

  .process-scroll__viewport {
    margin-top: 28px;
    padding-bottom: 44px;
  }

  .process-step {
    flex-basis: min(78vw, 300px);
    min-height: clamp(540px, 66svh, 600px);
    padding: 22px 20px;
  }

  .process-step h3 {
    min-height: auto;
    margin-bottom: 16px;
    font-size: clamp(19px, 5.5vw, 23px);
  }
}

/* Pain rail: complete reels, cleaner separation and one clear active preview. */
.process-rail {
  gap: clamp(18px, 1.8vw, 30px);
}

.process-step {
  border: 1px solid rgba(239, 242, 245, 0.15);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 48%),
    rgba(5, 5, 5, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 26px 64px rgba(0, 0, 0, 0.46);
}

.process-step__video-frame {
  border: 1px solid rgba(239, 242, 245, 0.13);
  background: #030303;
}

.process-step__video-frame video {
  opacity: 0.76;
  filter: brightness(0.72) saturate(0.86);
  transition:
    opacity 360ms ease,
    filter 360ms ease;
}

.process-step:is(.is-current, :hover, :focus-within, .is-preview-playing) .process-step__video-frame video {
  opacity: 1;
  filter: brightness(1) saturate(1);
}

.process-rail:has(.process-step.is-preview-playing) .process-step:not(.is-preview-playing) .process-step__video-frame video {
  opacity: 0.68;
  filter: brightness(0.64) saturate(0.8);
}

.process-step__video-hint {
  display: none !important;
}

/* Fixed service links with a direction-aware KKS exposure reveal. */
.services-list {
  gap: clamp(32px, 4svh, 56px);
}

.service-card {
  min-height: clamp(390px, 40vw, 520px);
  display: block;
  isolation: isolate;
  border-color: rgba(239, 242, 245, 0.19);
  border-radius: 5px;
  background: #030303;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 30px 78px rgba(0, 0, 0, 0.48);
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(239, 242, 245, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 38px 92px rgba(0, 0, 0, 0.58),
    0 0 34px rgba(229, 9, 20, 0.07);
}

.service-card:focus-visible {
  outline: 2px solid rgba(249, 250, 251, 0.9);
  outline-offset: 6px;
}

.service-card__preview,
.service-card__paper {
  position: absolute;
  inset: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
  width: 2px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0,
    rgba(229, 9, 20, 0.24) 16%,
    rgba(250, 252, 255, 0.96) var(--exposure-pointer-y, 50%),
    rgba(229, 9, 20, 0.52) 84%,
    transparent 100%
  );
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.38),
    0 0 22px rgba(229, 9, 20, 0.42),
    0 0 54px rgba(229, 9, 20, 0.2);
  opacity: 0;
  transform: translateX(-1px);
  will-change: left, opacity;
  transition:
    left 740ms cubic-bezier(0.2, 0.82, 0.18, 1),
    opacity 140ms ease;
}

.service-card[data-exposure-from="right"]::after {
  left: calc(100% - 2px);
}

.service-card:is(.is-exposed, .is-exposure-returning)::after {
  opacity: 0.92;
}

.service-card[data-exposure-from="left"].is-exposed::after {
  left: calc(100% - 2px);
}

.service-card[data-exposure-from="right"].is-exposed::after {
  left: 0;
}

.service-card__preview {
  z-index: 0;
  overflow: hidden;
  background: #050505;
}

.service-card__preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 42%, rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 54%);
  opacity: 0.94;
  transition: opacity 620ms ease;
}

.service-card__preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.045);
  filter: blur(3px) brightness(0.68) saturate(0.82) contrast(0.96);
  transition:
    transform 920ms cubic-bezier(0.16, 0.84, 0.24, 1),
    filter 720ms ease;
}

.service-card__paper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 3vw, 42px);
  padding: clamp(34px, 4.2vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.042), transparent 28%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.99), rgba(2, 2, 2, 0.99));
}

.service-card__paper {
  z-index: 2;
  clip-path: inset(0 0 0 0 round 1px);
  filter: none;
  opacity: 1;
  transition:
    clip-path 740ms cubic-bezier(0.2, 0.82, 0.18, 1),
    filter 460ms ease,
    opacity 260ms ease;
}

.service-card__paper > * {
  transition:
    transform 520ms cubic-bezier(0.2, 0.82, 0.18, 1),
    filter 380ms ease,
    opacity 320ms ease;
}

.service-card__title {
  display: block;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(28px, 3vw, 45px);
  line-height: 0.94;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 0;
  color: rgba(255, 255, 255, 0.67);
}

.service-card__body > strong {
  max-width: 35ch;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.22;
}

.service-card__description {
  display: block;
  max-width: 66ch;
  font-size: clamp(16px, 1.22vw, 20px);
  font-weight: 520;
  line-height: 1.45;
}

.service-card__route {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 760;
}

.service-card__route > span {
  color: var(--red);
  transition: transform 260ms ease;
}

.service-card[data-exposure-from="left"].is-exposed .service-card__paper {
  clip-path: inset(0 0 0 100% round 1px);
  filter: brightness(0.74);
}

.service-card[data-exposure-from="right"].is-exposed .service-card__paper {
  clip-path: inset(0 100% 0 0 round 1px);
  filter: brightness(0.74);
}

.service-card[data-exposure-from="left"].is-exposed .service-card__paper > * {
  opacity: 0.16;
  filter: blur(1.5px);
  transform: translateX(18px);
}

.service-card[data-exposure-from="right"].is-exposed .service-card__paper > * {
  opacity: 0.16;
  filter: blur(1.5px);
  transform: translateX(-18px);
}

.service-card__preview-label {
  position: absolute;
  right: clamp(20px, 2.5vw, 34px);
  bottom: clamp(20px, 2.5vw, 32px);
  left: clamp(20px, 2.5vw, 34px);
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 340ms ease 340ms,
    transform 460ms cubic-bezier(0.16, 0.84, 0.24, 1) 300ms;
}

.service-card__preview-label span:first-child {
  font-family: "Clan OT", Arial, sans-serif;
  font-size: clamp(21px, 2.2vw, 34px);
  font-weight: 760;
}

.service-card__preview-label span:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:is(.is-exposed, .is-exposure-returning) .service-card__preview img {
    transform: scale(1);
    filter: blur(0) brightness(0.94) saturate(1) contrast(1.02);
  }

  .service-card:is(.is-exposed, .is-exposure-returning) .service-card__preview::after {
    opacity: 0.48;
  }

  .service-card.is-exposed .service-card__preview-label {
    opacity: 1;
    transform: translateY(0);
  }

  .service-card.is-exposed .service-card__route > span {
    transform: translateX(5px);
  }
}

@media (max-width: 900px), (hover: none), (pointer: coarse) {
  .service-card {
    min-height: clamp(350px, 76vw, 470px);
  }

  .service-card__paper {
    gap: 24px;
    padding: clamp(26px, 7vw, 42px);
    background:
      linear-gradient(90deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.7)),
      rgba(3, 3, 3, 0.84);
    clip-path: none;
  }

  .service-card__preview img {
    filter: brightness(0.58) saturate(0.78);
  }

  .service-card::after,
  .service-card__preview-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card__paper,
  .service-card__preview,
  .service-card__preview img,
  .service-card__preview-label {
    transition-duration: 1ms !important;
  }

  .service-card::after {
    display: none;
  }

  .service-card.is-exposed .service-card__paper {
    clip-path: inset(0);
    filter: none;
    opacity: 0.12;
  }

  .service-card.is-exposed .service-card__paper > * {
    opacity: 0;
    filter: none;
    transform: none;
  }
}

/* 2026-08-14 · Startseite Option 2: Editorial services + horizontal reference sheet. */
.services-scroll--editorial {
  min-height: 0;
  margin-top: 0;
  padding: clamp(92px, 7svh, 112px) var(--side-pad) clamp(112px, 13svh, 178px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 9%, rgba(229, 9, 20, 0.055), transparent 20%),
    linear-gradient(180deg, #020202 0%, #050505 32%, #030303 100%);
}

.services-scroll--editorial::before,
.services-scroll--editorial::after {
  display: none;
}

.services-scroll--editorial .services-scroll__inner {
  width: min(100%, 1320px);
  min-height: 0;
  display: block;
}

.services-scroll--editorial .services-scroll__copy {
  position: relative;
  top: auto;
  max-width: 1050px;
  margin: 0;
  padding: 0;
}

.services-scroll--editorial .services-scroll__eyebrow {
  margin-bottom: clamp(18px, 2.2svh, 28px);
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  letter-spacing: 0.28em;
}

.services-scroll--editorial .services-scroll__headline {
  min-height: 0;
  max-width: none;
  color: #f5f5f2;
  font-size: clamp(58px, 7.1vw, 112px);
  font-weight: 790;
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-shadow: none;
}

.services-scroll--editorial .services-scroll__line {
  display: block;
  white-space: nowrap;
}

.services-scroll--editorial .services-scroll__word.graffiti-accent {
  margin-left: 0.05em;
  color: #f5f5f2;
  font-size: 1.02em;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.services-scroll--editorial .services-list {
  position: relative;
  top: auto;
  height: auto;
  margin: clamp(54px, 6svh, 82px) 0 0;
  padding: 1px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(500px, 41vw) minmax(330px, 27vw);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.services-scroll--editorial .service-card {
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #070707;
  box-shadow: none;
  opacity: var(--service-reveal-opacity, 1);
  transform: translateY(calc(var(--service-reveal-y, 0) * 1px));
}

.services-scroll--editorial .service-card[data-service-layout="hero"] {
  grid-column: span 8;
}

.services-scroll--editorial .service-card[data-service-layout="portrait"] {
  grid-column: span 4;
}

.services-scroll--editorial .service-card[data-service-layout="landscape"] {
  grid-column: span 5;
}

.services-scroll--editorial .service-card[data-service-layout="wide"] {
  grid-column: span 7;
}

.services-scroll--editorial .service-card::before,
.services-scroll--editorial .service-card::after {
  display: none;
}

.services-scroll--editorial .service-card__preview,
.services-scroll--editorial .service-card__paper {
  position: absolute;
  inset: 0;
}

.services-scroll--editorial .service-card__preview {
  z-index: 0;
  background: #070707;
}

.services-scroll--editorial .service-card__preview::after {
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(1, 1, 1, 0.94) 0%, rgba(1, 1, 1, 0.72) 29%, rgba(1, 1, 1, 0.06) 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
  transition: opacity 420ms ease;
}

.services-scroll--editorial .service-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  filter: grayscale(1) brightness(0.7) contrast(1.08);
  transition:
    transform 720ms cubic-bezier(0.16, 0.84, 0.24, 1),
    filter 520ms ease;
}

.services-scroll--editorial .service-card--social .service-card__preview img {
  object-position: 74% 50%;
}

.services-scroll--editorial .service-card--websites .service-card__preview img {
  object-position: 19% 50%;
}

.services-scroll--editorial .service-card--photo .service-card__preview img {
  object-position: 60% 50%;
}

.services-scroll--editorial .service-card--corporate .service-card__preview img {
  object-position: 58% 50%;
}

.services-scroll--editorial .service-card__paper,
.services-scroll--editorial .service-card.is-exposed .service-card__paper,
.services-scroll--editorial .service-card.is-exposure-returning .service-card__paper {
  z-index: 2;
  width: min(51%, 440px);
  padding: clamp(28px, 3.3vw, 50px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: clamp(18px, 2.1vw, 30px);
  clip-path: none;
  filter: none;
  opacity: 1;
  background: linear-gradient(90deg, rgba(2, 2, 2, 0.94), rgba(2, 2, 2, 0.72) 68%, transparent);
  transition: background 420ms ease;
}

.services-scroll--editorial .service-card--websites .service-card__paper {
  width: 88%;
}

.services-scroll--editorial .service-card--photo .service-card__paper {
  width: 66%;
}

.services-scroll--editorial .service-card__paper > *,
.services-scroll--editorial .service-card.is-exposed .service-card__paper > *,
.services-scroll--editorial .service-card.is-exposure-returning .service-card__paper > * {
  opacity: 1;
  filter: none;
  transform: none;
}

.services-scroll--editorial .service-card__number {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 720;
  letter-spacing: 0.08em;
}

.services-scroll--editorial .service-card__title {
  display: block;
  max-width: 9ch;
  color: #f7f7f4;
  font-family: var(--font-display);
  font-size: clamp(31px, 3.15vw, 52px);
  font-weight: 790;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.services-scroll--editorial .service-card__body {
  display: flex;
  gap: 13px;
  color: rgba(255, 255, 255, 0.66);
}

.services-scroll--editorial .service-card__body > strong {
  max-width: 24ch;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(17px, 1.42vw, 22px);
  font-weight: 720;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.services-scroll--editorial .service-card__description {
  max-width: 35ch;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 500;
  line-height: 1.42;
}

.services-scroll--editorial .service-card__route {
  margin-top: 5px;
  color: #fff;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.services-scroll--editorial .service-card:hover,
.services-scroll--editorial .service-card:focus-visible {
  z-index: 4;
  border-color: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.services-scroll--editorial .service-card:hover .service-card__preview img,
.services-scroll--editorial .service-card:focus-visible .service-card__preview img {
  transform: scale(1.045);
  filter: grayscale(0.22) brightness(0.9) contrast(1.04);
}

.services-scroll--editorial .service-card:hover .service-card__preview::after,
.services-scroll--editorial .service-card:focus-visible .service-card__preview::after {
  opacity: 0.82;
}

.services-scroll--editorial .service-card:hover .service-card__route > span,
.services-scroll--editorial .service-card:focus-visible .service-card__route > span {
  transform: translateX(5px);
}

.services-scroll--editorial + .client-showcase--contact-sheet {
  margin-top: 0;
}

.client-showcase--contact-sheet {
  min-height: 0;
  display: block;
  padding: clamp(128px, 14svh, 198px) var(--side-pad) clamp(126px, 14svh, 196px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.035), transparent 34%),
    #030303;
}

.client-showcase--contact-sheet::before,
.client-showcase--contact-sheet::after {
  display: none;
}

.client-showcase--contact-sheet .client-showcase__inner {
  width: min(100%, 1480px);
}

.client-showcase--contact-sheet .client-showcase__intro {
  max-width: 1080px;
  margin-inline: auto;
  text-align: center;
}

.client-showcase--contact-sheet h2 {
  margin-inline: auto;
  color: #f5f5f2;
  font-size: clamp(54px, 6.6vw, 102px);
  font-weight: 790;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-shadow: none;
}

.client-showcase--contact-sheet h2 .graffiti-accent--client {
  margin-top: -0.02em;
  font-size: 1.05em;
  letter-spacing: -0.015em;
}

.client-showcase--contact-sheet .client-showcase__stage {
  margin-top: clamp(54px, 7svh, 88px);
}

.client-showcase--contact-sheet .client-reference {
  width: 100vw;
  min-height: 0;
  margin-left: 50%;
  display: block;
  transform: translateX(-50%);
}

.client-reference__viewport {
  width: 100%;
  min-height: 630px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.client-reference__viewport::-webkit-scrollbar {
  display: none;
}

.client-showcase--contact-sheet .client-reference__list {
  --reference-card-width: clamp(330px, 29vw, 390px);
  width: max-content;
  height: 630px;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 12px max(24px, calc(50vw - (var(--reference-card-width) / 2) + 40px));
  list-style: none;
}

.client-showcase--contact-sheet .client-reference__list > li {
  position: relative;
  z-index: 1;
  width: var(--reference-card-width);
  height: 574px;
  flex: 0 0 var(--reference-card-width);
  margin-inline: clamp(-42px, -3vw, -24px);
  scroll-snap-align: center;
  transition: z-index 1ms linear;
}

.client-showcase--contact-sheet .client-reference__list > li:has(.client-reference__card[aria-current="true"]) {
  z-index: 6;
}

.client-reference__card {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: #070707;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.52);
  opacity: 0.43;
  transform: scale(0.84);
  filter: brightness(0.64) saturate(0.62);
  transform-origin: center;
  transition:
    opacity 420ms ease,
    transform 560ms cubic-bezier(0.16, 0.84, 0.24, 1),
    filter 420ms ease,
    border-color 320ms ease;
}

.client-reference__card[aria-current="true"] {
  border-color: rgba(255, 255, 255, 0.48);
  opacity: 1;
  transform: scale(1);
  filter: none;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.74);
}

.client-showcase--contact-sheet .client-reference__choice {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: #090909;
  text-align: left;
}

.client-showcase--contact-sheet .client-reference__choice::after {
  display: none;
}

.client-showcase--contact-sheet .client-reference__choice:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -8px;
}

.client-reference__card-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 4;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 3, 3, 0.54);
  backdrop-filter: blur(8px);
}

.client-reference__card-header .client-reference__choice-number {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.client-reference__card-header strong {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.client-showcase--contact-sheet .client-reference__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0b0b0b;
}

.client-showcase--contact-sheet .client-reference__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 30%, rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.15), transparent 40%);
  box-shadow: inset 0 0 72px rgba(0, 0, 0, 0.24);
  pointer-events: none;
}

.client-showcase--contact-sheet .client-reference__video,
.client-showcase--contact-sheet .client-reference__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.28) brightness(0.82) contrast(1.06);
}

.client-reference__card[data-client-slug="cafe-nova"] .client-reference__video,
.client-reference__card[data-client-slug="cafe-nova"] .client-reference__image {
  object-position: 48% 50%;
}

.client-reference__card[data-client-slug="beerepoot"] .client-reference__video,
.client-reference__card[data-client-slug="beerepoot"] .client-reference__image {
  object-position: 51% 46%;
}

.client-reference__card[data-client-slug="as-design"] .client-reference__video,
.client-reference__card[data-client-slug="as-design"] .client-reference__image {
  object-position: 50% 50%;
}

.client-reference__card[data-client-slug="buefa"] .client-reference__video,
.client-reference__card[data-client-slug="buefa"] .client-reference__image {
  object-position: 58% 50%;
}

.client-showcase--contact-sheet .client-reference__logo {
  position: absolute;
  right: 22px;
  bottom: 80px;
  left: 22px;
  z-index: 3;
  width: auto;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  margin: 0;
}

.client-showcase--contact-sheet .client-reference__brandmark {
  width: auto;
  max-width: min(74%, 220px);
  max-height: 104px;
  object-fit: contain;
  object-position: left bottom;
  filter: grayscale(1) brightness(2.2) contrast(1.08);
}

.client-reference__card.is-logo-only .client-reference__logo {
  inset: 72px 30px 90px;
  align-items: center;
  justify-content: center;
}

.client-reference__card.is-logo-only .client-reference__brandmark {
  max-width: min(86%, 290px);
  max-height: 180px;
  object-position: center;
}

.client-reference__card.is-logo-only .client-card__text-logo {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.6vw, 72px);
  font-weight: 790;
  line-height: 0.86;
  letter-spacing: -0.05em;
  text-align: center;
  text-transform: uppercase;
}

.client-reference__card[data-client-slug="beerepoot"] .client-reference__brandmark {
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.9);
  filter: grayscale(1) contrast(1.16);
}

.client-reference__card[data-client-slug="the-barbecue-park"] .client-reference__brandmark {
  max-width: 126px;
  max-height: 126px;
}

.client-reference__card[data-client-slug="logaer"] .client-reference__brandmark {
  filter: grayscale(1) brightness(3) contrast(1.06);
}

.client-showcase--contact-sheet .client-reference__label {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 3;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.client-showcase--contact-sheet .client-reference__label::after {
  display: none;
}

.client-reference__card-actions {
  position: relative;
  z-index: 5;
  min-width: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #070707;
}

.client-reference__card-actions a,
.client-reference__card-actions button {
  min-width: 0;
  min-height: 56px;
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.client-reference__card-actions a:last-child,
.client-reference__card-actions button:last-child {
  border-right: 0;
}

.client-reference__card-actions a::after,
.client-reference__card-actions button::after {
  content: "→";
  margin-left: 7px;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 13px;
  transition: transform 220ms ease;
}

.client-reference__card-actions a:is(:hover, :focus-visible),
.client-reference__card-actions button:is(:hover, :focus-visible) {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.client-reference__card-actions a:is(:hover, :focus-visible)::after,
.client-reference__card-actions button:is(:hover, :focus-visible)::after {
  transform: translateX(3px);
}

.client-reference__card-actions a:focus-visible,
.client-reference__card-actions button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}

.client-reference.is-switching .client-reference__list {
  opacity: 0.82;
}

.client-showcase--contact-sheet .client-reference__timeline {
  width: min(calc(100% - (2 * var(--side-pad))), 1080px);
  min-width: 0;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto auto;
  grid-template-areas: none;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.client-showcase--contact-sheet .client-reference__timeline > button {
  min-width: 58px;
  min-height: 44px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.54);
  background: transparent;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.client-showcase--contact-sheet .client-reference__timeline > button:is(:hover, :focus-visible) {
  color: #fff;
}

.client-showcase--contact-sheet .client-reference__timeline > button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.client-showcase--contact-sheet .client-reference__progress {
  grid-area: auto;
  height: 2px;
}

.client-showcase--contact-sheet .client-reference__position {
  grid-area: auto;
  min-width: 54px;
  color: rgba(255, 255, 255, 0.52);
  text-align: right;
}

.client-reference__pagination {
  width: min(calc(100% - (2 * var(--side-pad))), 1080px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 12px auto 0;
  padding: 0;
  overflow-x: auto;
  list-style: none;
  scrollbar-width: none;
}

.client-reference__pagination::-webkit-scrollbar {
  display: none;
}

.client-reference__pagination button {
  min-width: 34px;
  min-height: 44px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.38);
  background: transparent;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
}

.client-reference__pagination button[aria-current="true"] {
  color: var(--red);
}

.client-reference__pagination button:is(:hover, :focus-visible) {
  color: #fff;
}

.client-reference__pagination button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -5px;
}

@media (max-width: 980px) {
  .services-scroll--editorial {
    padding-block: 92px 128px;
  }

  .services-scroll--editorial .services-scroll__headline {
    font-size: clamp(52px, 10vw, 82px);
  }

  .services-scroll--editorial .services-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(440px, 56vw));
  }

  .services-scroll--editorial .service-card[data-service-layout] {
    grid-column: span 1;
  }

  .services-scroll--editorial .service-card__paper,
  .services-scroll--editorial .service-card--websites .service-card__paper,
  .services-scroll--editorial .service-card--photo .service-card__paper {
    width: 84%;
  }

  .client-showcase--contact-sheet {
    padding-block: 116px 138px;
  }

  .client-showcase--contact-sheet .client-reference__list {
    --reference-card-width: clamp(310px, 45vw, 360px);
  }
}

@media (max-width: 650px) {
  .services-scroll--editorial {
    padding: 88px max(18px, env(safe-area-inset-left)) 112px;
  }

  .services-scroll--editorial .services-scroll__headline {
    max-width: none;
    font-size: clamp(46px, 14.4vw, 68px);
    line-height: 0.89;
  }

  .services-scroll--editorial .services-scroll__line {
    white-space: normal;
  }

  .services-scroll--editorial .services-list {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    grid-auto-rows: minmax(420px, 116vw);
    margin-top: 44px;
  }

  .services-scroll--editorial .service-card[data-service-layout] {
    grid-column: 1;
  }

  .services-scroll--editorial .service-card__paper,
  .services-scroll--editorial .service-card--websites .service-card__paper,
  .services-scroll--editorial .service-card--photo .service-card__paper {
    width: 92%;
    padding: 28px 24px;
    background: linear-gradient(90deg, rgba(2, 2, 2, 0.94), rgba(2, 2, 2, 0.5) 78%, transparent);
  }

  .services-scroll--editorial .service-card__title {
    font-size: clamp(34px, 10vw, 48px);
  }

  .services-scroll--editorial .service-card__body > strong {
    font-size: 17px;
  }

  .services-scroll--editorial .service-card__description {
    font-size: 14px;
  }

  .client-showcase--contact-sheet {
    padding: 102px 0 118px;
  }

  .client-showcase--contact-sheet .client-showcase__intro {
    padding-inline: 18px;
  }

  .client-showcase--contact-sheet h2 {
    font-size: clamp(45px, 13.2vw, 64px);
  }

  .client-reference__viewport {
    min-height: 556px;
  }

  .client-showcase--contact-sheet .client-reference__list {
    --reference-card-width: min(82vw, 344px);
    height: 556px;
    padding-inline: calc(50vw - (var(--reference-card-width) / 2) + 16px);
  }

  .client-showcase--contact-sheet .client-reference__list > li {
    height: 516px;
    margin-inline: -16px;
  }

  .client-reference__card {
    grid-template-rows: minmax(0, 1fr) 58px;
    transform: scale(0.9);
  }

  .client-reference__card[aria-current="true"] {
    transform: scale(1);
  }

  .client-reference__card-actions a,
  .client-reference__card-actions button {
    padding-inline: 7px;
    font-size: 8px;
  }

  .client-showcase--contact-sheet .client-reference__timeline,
  .client-reference__pagination {
    width: calc(100% - 36px);
  }

  .client-showcase--contact-sheet .client-reference__timeline {
    grid-template-columns: auto minmax(72px, 1fr) auto auto;
    gap: 10px;
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-reference__card,
  .client-reference__list,
  .services-scroll--editorial .service-card__preview img,
  .services-scroll--editorial .service-card__preview::after {
    transition-duration: 1ms !important;
  }
}

/* Cascade lock: these selected homepage rules must remain after legacy blocks. */
.services-scroll--showcase-rows {
  min-height: 0;
  margin-top: 0;
  padding: clamp(108px, 12svh, 164px) var(--side-pad) clamp(144px, 17svh, 220px);
  background:
    radial-gradient(circle at 88% 8%, rgba(229, 9, 20, 0.045), transparent 22%),
    linear-gradient(180deg, #020202 0%, #050505 30%, #020202 100%);
}

.services-scroll--showcase-rows .services-list {
  margin-top: clamp(54px, 7svh, 90px);
  padding-bottom: 0;
  gap: 9px;
}

.services-scroll--showcase-rows + .client-showcase--contact-sheet {
  margin-top: clamp(170px, 23svh, 300px);
}

.client-showcase--contact-sheet .client-reference__timeline {
  grid-template-columns: 58px minmax(120px, 1fr) auto 58px;
}

@media (max-width: 900px) {
  .services-scroll--showcase-rows .services-scroll__copy {
    display: block;
  }

  .services-scroll--showcase-rows .services-scroll__headline {
    font-size: clamp(52px, 9.4vw, 72px);
  }

  .services-scroll__side-note {
    max-width: 30ch;
    margin: 30px 0 0;
  }
}

@media (max-width: 700px) {
  .services-scroll--showcase-rows {
    padding: 92px max(18px, env(safe-area-inset-left)) 142px;
  }

  .services-scroll--showcase-rows .services-list {
    margin-top: 44px;
    gap: 10px;
  }

  .services-scroll--showcase-rows + .client-showcase--contact-sheet {
    margin-top: 130px;
  }

  .client-showcase--contact-sheet .client-reference__timeline {
    grid-template-columns: 52px minmax(72px, 1fr) auto 52px;
  }
}

/* Final reference stage: spatial glass carousel with logo-first playback. */
.client-showcase--contact-sheet .client-reference {
  perspective: 1900px;
  perspective-origin: 50% 43%;
}

.client-showcase--contact-sheet .client-reference__viewport {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  scroll-snap-type: none;
  touch-action: pan-y;
  cursor: grab;
}

.client-showcase--contact-sheet .client-reference__viewport.is-swiping {
  cursor: grabbing;
}

.client-showcase--contact-sheet .client-reference__list {
  position: relative;
  width: 100%;
  height: 650px;
  display: block;
  margin: 0;
  padding: 0;
  opacity: 1;
  filter: none;
  transform: none;
  transform-style: preserve-3d;
  perspective: inherit;
  transition: none;
}

.client-showcase--contact-sheet .client-reference__list > li {
  --reference-x: 0px;
  --reference-z: -320px;
  --reference-yaw: 0deg;
  --reference-scale: 0.7;
  --reference-opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: clamp(350px, 31vw, 430px);
  height: 594px;
  margin: 0;
  opacity: var(--reference-opacity);
  pointer-events: none;
  transform:
    translate(-50%, -50%)
    translate3d(var(--reference-x), 0, var(--reference-z))
    rotateY(var(--reference-yaw))
    scale(var(--reference-scale));
  transform-origin: center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transition:
    transform 980ms cubic-bezier(0.16, 0.88, 0.2, 1),
    opacity 620ms ease,
    z-index 1ms linear 480ms;
}

.client-showcase--contact-sheet .client-reference__list > li[data-reference-offset="0"] {
  --reference-x: 0px;
  --reference-z: 150px;
  --reference-yaw: 0deg;
  --reference-scale: 1;
  --reference-opacity: 1;
  z-index: 8;
  pointer-events: auto;
}

.client-showcase--contact-sheet .client-reference__list > li[data-reference-offset="1"] {
  --reference-x: clamp(250px, 29vw, 470px);
  --reference-z: 0px;
  --reference-yaw: -25deg;
  --reference-scale: 0.88;
  --reference-opacity: 0.86;
  z-index: 6;
  pointer-events: auto;
}

.client-showcase--contact-sheet .client-reference__list > li[data-reference-offset="-1"] {
  --reference-x: clamp(-470px, -29vw, -250px);
  --reference-z: 0px;
  --reference-yaw: 25deg;
  --reference-scale: 0.88;
  --reference-opacity: 0.86;
  z-index: 6;
  pointer-events: auto;
}

.client-showcase--contact-sheet .client-reference__list > li[data-reference-offset="2"] {
  --reference-x: clamp(430px, 49vw, 790px);
  --reference-z: -170px;
  --reference-yaw: -38deg;
  --reference-scale: 0.78;
  --reference-opacity: 0.62;
  z-index: 4;
  pointer-events: auto;
}

.client-showcase--contact-sheet .client-reference__list > li[data-reference-offset="-2"] {
  --reference-x: clamp(-790px, -49vw, -430px);
  --reference-z: -170px;
  --reference-yaw: 38deg;
  --reference-scale: 0.78;
  --reference-opacity: 0.62;
  z-index: 4;
  pointer-events: auto;
}

.client-showcase--contact-sheet .client-reference__list > li[data-reference-offset="3"] {
  --reference-x: clamp(585px, 65vw, 1040px);
  --reference-z: -320px;
  --reference-yaw: -46deg;
  --reference-scale: 0.7;
  --reference-opacity: 0.4;
  z-index: 2;
}

.client-showcase--contact-sheet .client-reference__list > li[data-reference-offset="-3"] {
  --reference-x: clamp(-1040px, -65vw, -585px);
  --reference-z: -320px;
  --reference-yaw: 46deg;
  --reference-scale: 0.7;
  --reference-opacity: 0.4;
  z-index: 2;
}

.client-showcase--contact-sheet .client-reference__list > li[data-reference-outside="true"] {
  --reference-opacity: 0;
  pointer-events: none;
}

.client-showcase--contact-sheet .client-reference__card {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.02) 38%, rgba(5, 5, 7, 0.7) 82%),
    rgba(12, 13, 15, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.07),
    inset 22px 0 52px rgba(255, 255, 255, 0.025),
    0 38px 100px rgba(0, 0, 0, 0.64);
  opacity: 1;
  filter: none;
  transform: none;
  transform-style: preserve-3d;
  backdrop-filter: blur(24px) saturate(1.22);
  -webkit-backdrop-filter: blur(24px) saturate(1.22);
  transition:
    grid-template-rows 640ms cubic-bezier(0.16, 0.84, 0.24, 1),
    border-color 420ms ease,
    box-shadow 560ms ease,
    background 560ms ease;
}

.client-showcase--contact-sheet .client-reference__card::before,
.client-showcase--contact-sheet .client-reference__card::after {
  content: "";
  position: absolute;
  z-index: 8;
  pointer-events: none;
}

.client-showcase--contact-sheet .client-reference__card::before {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(122deg, rgba(255, 255, 255, 0.2), transparent 17%, transparent 72%, rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.13), transparent 27%);
  mix-blend-mode: screen;
  opacity: 0.56;
}

.client-showcase--contact-sheet .client-reference__card::after {
  top: -34%;
  left: -52%;
  width: 42%;
  height: 168%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  filter: blur(3px);
  opacity: 0;
  transform: rotate(14deg) translateX(-140%);
}

.client-showcase--contact-sheet .client-reference.is-orbiting .client-reference__card::after {
  opacity: 0.28;
  animation: reference-glass-sweep 980ms cubic-bezier(0.16, 0.84, 0.24, 1) both;
}

@keyframes reference-glass-sweep {
  from { transform: rotate(14deg) translateX(-135%); }
  to { transform: rotate(14deg) translateX(360%); }
}

.client-showcase--contact-sheet .client-reference__card[aria-current="true"] {
  grid-template-rows: minmax(0, 1fr) 58px;
  border-color: rgba(255, 42, 54, 0.82);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.025) 34%, rgba(5, 5, 7, 0.78) 82%),
    rgba(11, 12, 14, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 48px 130px rgba(0, 0, 0, 0.76),
    0 0 0 1px rgba(229, 9, 20, 0.12);
  opacity: 1;
  filter: none;
  transform: none;
}

.client-showcase--contact-sheet .client-reference__choice {
  position: relative;
  border-radius: 21px 21px 0 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(7, 8, 10, 0.46);
  isolation: isolate;
}

.client-showcase--contact-sheet .client-reference__choice::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  z-index: 7;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%, transparent 78%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.client-showcase--contact-sheet .client-reference__media {
  opacity: 0;
  transform: scale(1.045);
  transition:
    opacity 680ms cubic-bezier(0.16, 0.84, 0.24, 1),
    transform 1200ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.client-showcase--contact-sheet .client-reference__media::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 34%, rgba(0, 0, 0, 0.64)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.06), transparent 42%);
  box-shadow: inset 0 0 58px rgba(0, 0, 0, 0.16);
}

.client-showcase--contact-sheet .client-reference__video {
  filter: none;
}

.client-showcase--contact-sheet .client-reference__card.is-media-playing .client-reference__media {
  opacity: 1;
  transform: scale(1);
}

.client-showcase--contact-sheet .client-reference__logo {
  inset: 70px 28px 76px;
  z-index: 5;
  align-items: center;
  justify-content: center;
  transition:
    inset 720ms cubic-bezier(0.16, 0.84, 0.24, 1),
    opacity 480ms ease,
    transform 720ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.client-showcase--contact-sheet .client-reference__brandmark {
  max-width: min(78%, 270px);
  max-height: 180px;
  object-position: center;
  opacity: 0.94;
  filter: grayscale(1) brightness(2.35) contrast(1.08);
  transition:
    max-width 720ms cubic-bezier(0.16, 0.84, 0.24, 1),
    max-height 720ms cubic-bezier(0.16, 0.84, 0.24, 1),
    opacity 420ms ease,
    transform 720ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.client-showcase--contact-sheet .client-reference__card[aria-current="false"] .client-reference__card-header,
.client-showcase--contact-sheet .client-reference__card[aria-current="false"] .client-reference__label,
.client-showcase--contact-sheet .client-reference__card[aria-current="false"] .client-reference__card-actions {
  opacity: 0;
  pointer-events: none;
}

.client-showcase--contact-sheet .client-reference__card[aria-current="false"] .client-reference__card-actions {
  min-height: 0;
  max-height: 0;
  border: 0;
}

.client-showcase--contact-sheet .client-reference__card[aria-current="false"] .client-reference__brandmark {
  opacity: 0.88;
  transform: translateZ(34px);
}

.client-showcase--contact-sheet .client-reference__card.is-logo-intro .client-reference__card-header,
.client-showcase--contact-sheet .client-reference__card.is-logo-intro .client-reference__label {
  opacity: 0;
}

.client-showcase--contact-sheet .client-reference__card.is-media-playing .client-reference__logo {
  top: calc(100% - 184px);
  right: 42%;
  bottom: 78px;
  left: 22px;
  align-items: center;
  justify-content: center;
  transform: translateZ(48px);
}

.client-showcase--contact-sheet .client-reference__card.is-media-playing .client-reference__brandmark {
  max-width: min(54%, 205px);
  max-height: 88px;
  object-position: left bottom;
  opacity: 0.97;
}

.client-showcase--contact-sheet .client-reference__card-header,
.client-showcase--contact-sheet .client-reference__label,
.client-showcase--contact-sheet .client-reference__card-actions {
  transition: opacity 420ms ease, background-color 320ms ease;
}

.client-showcase--contact-sheet .client-reference__card-actions {
  border-top-color: rgba(255, 255, 255, 0.16);
  border-radius: 0 0 21px 21px;
  background: rgba(8, 9, 11, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.client-showcase--contact-sheet .client-reference.is-orbiting .client-reference__list {
  opacity: 1;
  filter: none;
  transform: none;
}

@media (max-width: 900px) {
  .client-showcase--contact-sheet .client-reference__viewport,
  .client-showcase--contact-sheet .client-reference__list {
    min-height: 610px;
    height: 610px;
  }

  .client-showcase--contact-sheet .client-reference__list > li {
    width: clamp(326px, 48vw, 380px);
    height: 554px;
  }

  .client-showcase--contact-sheet .client-reference__list > li[data-reference-offset="1"] {
    --reference-x: clamp(250px, 42vw, 390px);
  }

  .client-showcase--contact-sheet .client-reference__list > li[data-reference-offset="-1"] {
    --reference-x: clamp(-390px, -42vw, -250px);
  }
}

@media (max-width: 650px) {
  .client-showcase--contact-sheet .client-reference__viewport,
  .client-showcase--contact-sheet .client-reference__list {
    min-height: 570px;
    height: 570px;
  }

  .client-showcase--contact-sheet .client-reference__list > li {
    width: min(84vw, 344px);
    height: 516px;
  }

  .client-showcase--contact-sheet .client-reference__list > li[data-reference-offset="1"] {
    --reference-x: min(78vw, 304px);
    --reference-z: -34px;
    --reference-yaw: -29deg;
    --reference-scale: 0.84;
    --reference-opacity: 0.8;
  }

  .client-showcase--contact-sheet .client-reference__list > li[data-reference-offset="-1"] {
    --reference-x: max(-78vw, -304px);
    --reference-z: -34px;
    --reference-yaw: 29deg;
    --reference-scale: 0.84;
    --reference-opacity: 0.8;
  }

  .client-showcase--contact-sheet .client-reference__list > li[data-reference-offset="2"],
  .client-showcase--contact-sheet .client-reference__list > li[data-reference-offset="-2"],
  .client-showcase--contact-sheet .client-reference__list > li[data-reference-offset="3"],
  .client-showcase--contact-sheet .client-reference__list > li[data-reference-offset="-3"] {
    --reference-opacity: 0;
    pointer-events: none;
  }

  .client-showcase--contact-sheet .client-reference__card {
    border-radius: 18px;
  }

  .client-showcase--contact-sheet .client-reference__choice {
    border-radius: 17px 17px 0 0;
  }

  .client-showcase--contact-sheet .client-reference__card-actions {
    border-radius: 0 0 17px 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-showcase--contact-sheet .client-reference__list > li,
  .client-showcase--contact-sheet .client-reference__card,
  .client-showcase--contact-sheet .client-reference__media,
  .client-showcase--contact-sheet .client-reference__logo,
  .client-showcase--contact-sheet .client-reference__brandmark {
    transition-duration: 1ms !important;
  }

  .client-showcase--contact-sheet .client-reference__card::after {
    animation: none !important;
  }
}

/* 2026-08-14 · Reference reel iris + three-act spotlight finale. */
.client-showcase--contact-sheet .client-reference__media {
  clip-path: circle(0% at 50% 46%);
  transform: scale(1.065);
  transition:
    clip-path 940ms cubic-bezier(0.2, 0.78, 0.18, 1),
    opacity 620ms cubic-bezier(0.16, 0.84, 0.24, 1),
    transform 1180ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.client-showcase--contact-sheet .client-reference__card.is-media-playing .client-reference__media {
  clip-path: circle(145% at 50% 46%);
  opacity: 1;
  transform: scale(1);
}

.client-showcase--contact-sheet .client-reference__choice::before {
  content: "";
  position: absolute;
  top: 46%;
  left: 50%;
  z-index: 6;
  width: clamp(120px, 38%, 172px);
  aspect-ratio: 1;
  border: 1px solid rgba(244, 248, 252, 0);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0),
    0 0 0 0 rgba(220, 232, 244, 0);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.58);
  pointer-events: none;
}

.client-showcase--contact-sheet .client-reference__card.is-media-playing .client-reference__choice::before {
  animation: client-reference-iris-glint 980ms cubic-bezier(0.16, 0.84, 0.24, 1) both;
}

.client-showcase--contact-sheet .client-reference__logo {
  top: 70px;
  right: 28px;
  bottom: 76px;
  left: 28px;
  align-items: center;
  justify-content: center;
  transition:
    top 880ms cubic-bezier(0.16, 0.84, 0.24, 1) 150ms,
    right 880ms cubic-bezier(0.16, 0.84, 0.24, 1) 150ms,
    bottom 880ms cubic-bezier(0.16, 0.84, 0.24, 1) 150ms,
    left 880ms cubic-bezier(0.16, 0.84, 0.24, 1) 150ms,
    opacity 480ms ease,
    transform 880ms cubic-bezier(0.16, 0.84, 0.24, 1) 150ms;
}

.client-showcase--contact-sheet .client-reference__card.is-media-playing .client-reference__logo {
  top: calc(100% - 184px);
  right: 42%;
  bottom: 78px;
  left: 22px;
  align-items: center;
  justify-content: center;
  transform: translateZ(48px);
}

.client-showcase--contact-sheet .client-reference__card.is-media-playing .client-reference__brandmark {
  max-width: min(92%, 205px);
  max-height: 88px;
  object-position: center;
  opacity: 0.97;
}

@keyframes client-reference-iris-glint {
  0% {
    border-color: rgba(244, 248, 252, 0);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0),
      0 0 0 0 rgba(220, 232, 244, 0);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.58);
  }

  26% {
    border-color: rgba(244, 248, 252, 0.56);
    box-shadow:
      inset 0 0 22px rgba(237, 244, 250, 0.14),
      0 0 24px 4px rgba(220, 232, 244, 0.15);
    opacity: 0.9;
  }

  100% {
    border-color: rgba(244, 248, 252, 0);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0),
      0 0 60px 18px rgba(220, 232, 244, 0);
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.65);
  }
}

.final-prompt--spotlight-stage {
  --ramp-progress: 0;
  min-height: 100svh;
  display: block;
  padding: 0;
  overflow: visible;
  background: #010203;
}

.final-prompt--spotlight-stage::before {
  display: none;
}

.final-prompt__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 76% 32% at 50% 100%, rgba(112, 130, 148, 0.055), transparent 72%),
    linear-gradient(180deg, #010203 0%, #020406 66%, #05080b 100%);
}

.final-prompt__sticky::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -9%;
  left: -8%;
  z-index: 0;
  height: 39%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 54% 44% at 50% 38%, rgba(164, 184, 204, 0.07), transparent 69%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(0, 0, 0, 0.52));
  border-top: 1px solid rgba(214, 226, 238, 0.055);
  box-shadow: 0 -38px 90px rgba(0, 0, 0, 0.86);
  transform: perspective(700px) rotateX(58deg);
  transform-origin: bottom;
}

.final-prompt__sticky::after {
  content: "";
  position: absolute;
  top: 11%;
  right: 8%;
  left: 8%;
  z-index: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(216, 228, 240, 0.08), transparent);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.82);
}

.final-prompt__spotlights,
.final-prompt__spotlight,
.final-prompt__beam {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.final-prompt__spotlights {
  z-index: 1;
}

.final-prompt__spotlight {
  opacity: 0;
}

.final-prompt__fixture {
  position: absolute;
  top: clamp(58px, 8svh, 96px);
  width: clamp(72px, 6.4vw, 106px);
  height: clamp(44px, 4.2vw, 68px);
  border: 1px solid rgba(218, 229, 240, 0.2);
  border-radius: 52% 42% 44% 52%;
  background:
    radial-gradient(circle at 72% 50%, rgba(230, 240, 249, 0.25), transparent 26%),
    linear-gradient(155deg, #202831, #080b0f 62%, #020304);
  box-shadow:
    inset -10px 0 18px rgba(0, 0, 0, 0.74),
    inset 2px 1px 1px rgba(255, 255, 255, 0.12),
    0 16px 32px rgba(0, 0, 0, 0.72);
}

.final-prompt__fixture::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  aspect-ratio: 1;
  border: 1px solid rgba(225, 235, 245, 0.42);
  border-radius: 50%;
  background: radial-gradient(circle, #f7fbff 0 12%, #9fb6ca 26%, #273441 60%, #05080b 76%);
  box-shadow:
    0 0 10px rgba(225, 239, 252, 0.74),
    0 0 30px rgba(181, 211, 239, 0.34);
  transform: translateY(-50%);
}

.final-prompt__fixture::after {
  content: "";
  position: absolute;
  top: -24%;
  left: 34%;
  width: 32%;
  height: 28%;
  border: 1px solid rgba(211, 222, 233, 0.16);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.final-prompt__fixture i {
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e50914;
  box-shadow: 0 0 8px rgba(229, 9, 20, 0.9);
  transform: translateY(-50%);
}

.final-prompt__spotlight--left .final-prompt__fixture {
  left: clamp(18px, 6vw, 112px);
  transform: rotate(-14deg);
}

.final-prompt__spotlight--left .final-prompt__fixture::before {
  right: -10%;
}

.final-prompt__spotlight--left .final-prompt__fixture i {
  left: 16%;
}

.final-prompt__spotlight--right .final-prompt__fixture {
  right: clamp(18px, 6vw, 112px);
  transform: scaleX(-1) rotate(-14deg);
}

.final-prompt__spotlight--right .final-prompt__fixture::before {
  right: -10%;
}

.final-prompt__spotlight--right .final-prompt__fixture i {
  left: 16%;
}

.final-prompt__beam {
  top: clamp(92px, 12svh, 142px);
  bottom: 7%;
  width: 66%;
  height: auto;
  opacity: 0.78;
  filter: blur(4px);
  transform: scaleY(0.92);
  transform-origin: 50% 0;
}

.final-prompt__spotlight--left .final-prompt__beam {
  left: 2%;
  right: auto;
  clip-path: polygon(4% 0, 18% 0, 98% 100%, 39% 100%);
  background:
    linear-gradient(112deg, rgba(229, 241, 252, 0.22), rgba(170, 205, 235, 0.085) 46%, transparent 75%),
    repeating-linear-gradient(103deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 18px);
}

.final-prompt__spotlight--right .final-prompt__beam {
  right: 2%;
  left: auto;
  clip-path: polygon(82% 0, 96% 0, 61% 100%, 2% 100%);
  background:
    linear-gradient(248deg, rgba(229, 241, 252, 0.22), rgba(170, 205, 235, 0.085) 46%, transparent 75%),
    repeating-linear-gradient(257deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 18px);
}

.final-prompt__pool {
  position: absolute;
  bottom: 7%;
  width: 56%;
  height: 24%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(219, 235, 248, 0.2), rgba(155, 191, 222, 0.07) 42%, transparent 72%);
  filter: blur(12px);
  opacity: 0.82;
  transform: scaleX(0.8);
}

.final-prompt__spotlight--left .final-prompt__pool {
  left: 10%;
}

.final-prompt__spotlight--right .final-prompt__pool {
  right: 10%;
}

.final-prompt__stage-shadow {
  position: absolute;
  right: 12%;
  bottom: 5%;
  left: 12%;
  z-index: 2;
  height: 27%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse, rgba(0, 0, 0, 0.86) 0 18%, rgba(0, 0, 0, 0.52) 38%, transparent 70%);
  filter: blur(18px);
  opacity: 0;
  transform: scaleX(0.72) translateY(18%);
  transition:
    opacity 900ms ease,
    transform 1200ms cubic-bezier(0.16, 0.84, 0.24, 1);
  pointer-events: none;
}

.final-prompt--spotlight-stage[data-ramp-phase="1"] .final-prompt__spotlight--left,
.final-prompt--spotlight-stage[data-ramp-phase="2"] .final-prompt__spotlight--left,
.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__spotlight--left,
.final-prompt--spotlight-stage[data-ramp-phase="2"] .final-prompt__spotlight--right,
.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__spotlight--right {
  animation: final-spotlight-click-on 720ms linear both;
}

.final-prompt--spotlight-stage[data-ramp-phase="1"] .final-prompt__stage-shadow,
.final-prompt--spotlight-stage[data-ramp-phase="2"] .final-prompt__stage-shadow,
.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__stage-shadow {
  opacity: 0.76;
  transform: scaleX(1) translateY(0);
}

.final-prompt--spotlight-stage .final-prompt__inner {
  position: relative;
  z-index: 4;
  width: min(calc(100% - (2 * var(--side-pad))), 1160px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(38px) scale(0.965);
  clip-path: inset(0 0 100% 0);
  transition:
    opacity 700ms cubic-bezier(0.16, 0.84, 0.24, 1),
    transform 980ms cubic-bezier(0.16, 0.84, 0.24, 1),
    clip-path 980ms cubic-bezier(0.16, 0.84, 0.24, 1),
    visibility 0s linear 980ms;
}

.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__inner {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  clip-path: inset(0);
  transition-delay: 130ms, 130ms, 130ms, 0s;
}

.final-prompt--spotlight-stage h2 {
  color: #fff;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.08),
    -22px 34px 42px rgba(0, 0, 0, 0.74),
    22px 34px 42px rgba(0, 0, 0, 0.74);
}

@keyframes final-spotlight-click-on {
  0%, 9% {
    opacity: 0;
  }

  12% {
    opacity: 0.98;
  }

  17% {
    opacity: 0.14;
  }

  24% {
    opacity: 0.92;
  }

  31% {
    opacity: 0.48;
  }

  42%, 100% {
    opacity: 1;
  }
}

@media (max-width: 700px) {
  .final-prompt--spotlight-stage {
    min-height: 260svh;
  }

  .final-prompt__fixture {
    top: max(54px, env(safe-area-inset-top));
    width: 66px;
    height: 42px;
  }

  .final-prompt__spotlight--left .final-prompt__fixture {
    left: 10px;
  }

  .final-prompt__spotlight--right .final-prompt__fixture {
    right: 10px;
  }

  .final-prompt__beam {
    top: 88px;
    bottom: 4%;
    width: 82%;
  }

  .final-prompt__spotlight--left .final-prompt__beam {
    left: -12%;
  }

  .final-prompt__spotlight--right .final-prompt__beam {
    right: -12%;
  }

  .final-prompt__pool {
    bottom: 9%;
    width: 78%;
  }

  .final-prompt__spotlight--left .final-prompt__pool {
    left: -4%;
  }

  .final-prompt__spotlight--right .final-prompt__pool {
    right: -4%;
  }

  .final-prompt--spotlight-stage .final-prompt__inner {
    width: calc(100% - 36px);
  }

  .final-prompt--spotlight-stage h2 {
    font-size: clamp(46px, 14vw, 68px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-showcase--contact-sheet .client-reference__choice::before {
    display: none;
  }

  .final-prompt--spotlight-stage {
    min-height: 110svh;
  }

  .final-prompt__spotlight,
  .final-prompt__stage-shadow,
  .final-prompt--spotlight-stage .final-prompt__inner {
    animation: none !important;
    transition-duration: 1ms !important;
  }
}

/* Director correction: real stage fixtures and text revealed by the light. */
.final-prompt__sticky::before,
.final-prompt__sticky::after {
  opacity: 0;
  transition: opacity 820ms ease;
}

.final-prompt--spotlight-stage[data-ramp-phase="2"] .final-prompt__sticky::before,
.final-prompt--spotlight-stage[data-ramp-phase="2"] .final-prompt__sticky::after,
.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__sticky::before,
.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__sticky::after {
  opacity: 1;
}

.final-prompt__fixture {
  width: clamp(118px, 10vw, 164px);
  height: clamp(76px, 6.6vw, 108px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.final-prompt__fixture::before {
  content: "";
  position: absolute;
  top: -26%;
  right: 18%;
  left: 16%;
  width: auto;
  height: 54%;
  border: 5px solid rgba(118, 132, 145, 0.72);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 7px 15px rgba(0, 0, 0, 0.58);
  transform: none;
}

.final-prompt__fixture::after {
  content: "";
  position: absolute;
  top: -43%;
  left: 47%;
  width: 9px;
  height: 24%;
  border: 0;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, #151a1f, #58636c 48%, #11161a);
  box-shadow: 0 -5px 0 #151a1f;
}

.final-prompt__fixture-body {
  position: absolute;
  top: 16%;
  bottom: 16%;
  left: 5%;
  width: 76%;
  clip-path: polygon(0 15%, 68% 4%, 100% 22%, 100% 78%, 68% 96%, 0 85%);
  border: 1px solid rgba(181, 194, 206, 0.28);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.14), transparent 28%),
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(255, 255, 255, 0.035) 14px 16px),
    linear-gradient(145deg, #343e47 0%, #11171c 48%, #05080a 100%);
  box-shadow:
    inset 0 0 24px rgba(0, 0, 0, 0.68),
    0 18px 28px rgba(0, 0, 0, 0.68);
}

.final-prompt__fixture-body::before,
.final-prompt__fixture-body::after {
  content: "";
  position: absolute;
  top: 24%;
  bottom: 24%;
  width: 5px;
  border-radius: 3px;
  background: rgba(186, 199, 211, 0.25);
}

.final-prompt__fixture-body::before {
  left: 22%;
}

.final-prompt__fixture-body::after {
  left: 42%;
}

.final-prompt__fixture-lens {
  position: absolute;
  top: 23%;
  right: 1%;
  z-index: 3;
  width: 36%;
  height: 54%;
  border: 2px solid rgba(199, 214, 227, 0.48);
  border-radius: 42% 50% 50% 42%;
  background:
    radial-gradient(circle at 58% 50%, #f9fcff 0 9%, #c7dff2 18%, #526d82 36%, #101820 59%, #030506 72%);
  box-shadow:
    inset -6px 0 13px rgba(0, 0, 0, 0.64),
    0 0 13px rgba(225, 241, 255, 0.74),
    0 0 34px rgba(174, 210, 241, 0.34);
}

.final-prompt__fixture-door {
  position: absolute;
  right: -13%;
  z-index: 2;
  width: 37%;
  height: 24%;
  border: 1px solid rgba(151, 165, 178, 0.26);
  background: linear-gradient(145deg, #252d34, #070a0d 72%);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.62);
  transform-origin: left center;
}

.final-prompt__fixture-door--top {
  top: 10%;
  clip-path: polygon(0 18%, 100% 0, 78% 100%, 0 82%);
  transform: rotate(-16deg);
}

.final-prompt__fixture-door--bottom {
  bottom: 10%;
  clip-path: polygon(0 18%, 78% 0, 100% 100%, 0 82%);
  transform: rotate(16deg);
}

.final-prompt__fixture i {
  top: 71%;
  left: 19%;
  z-index: 4;
  width: 6px;
  height: 6px;
}

.final-prompt__spotlight--left .final-prompt__fixture {
  left: clamp(22px, 6vw, 116px);
  transform: rotate(8deg);
}

.final-prompt__spotlight--right .final-prompt__fixture {
  right: clamp(22px, 6vw, 116px);
  transform: scaleX(-1) rotate(8deg);
}

.final-prompt__beam {
  opacity: 0.92;
  filter: blur(2.4px);
}

.final-prompt__spotlight--left .final-prompt__beam {
  clip-path: polygon(6% 0, 24% 0, 98% 100%, 34% 100%);
  background:
    linear-gradient(112deg, rgba(236, 247, 255, 0.29), rgba(173, 207, 235, 0.1) 49%, transparent 76%),
    repeating-linear-gradient(103deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 16px);
}

.final-prompt__spotlight--right .final-prompt__beam {
  clip-path: polygon(76% 0, 94% 0, 66% 100%, 2% 100%);
  background:
    linear-gradient(248deg, rgba(236, 247, 255, 0.29), rgba(173, 207, 235, 0.1) 49%, transparent 76%),
    repeating-linear-gradient(257deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 16px);
}

.final-prompt--spotlight-stage[data-ramp-phase="1"] .final-prompt__spotlight--left {
  animation: none;
  opacity: 0;
}

.final-prompt--spotlight-stage[data-ramp-phase="2"] .final-prompt__spotlight--left,
.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__spotlight--right {
  animation: final-spotlight-click-on 720ms linear both;
}

.final-prompt--spotlight-stage[data-ramp-phase="1"] .final-prompt__stage-shadow {
  opacity: 0;
  transform: scaleX(0.72) translateY(18%);
}

.final-prompt--spotlight-stage .final-prompt__inner {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  clip-path: none;
  transition:
    opacity 560ms cubic-bezier(0.16, 0.84, 0.24, 1),
    transform 760ms cubic-bezier(0.16, 0.84, 0.24, 1),
    visibility 0s linear 760ms;
}

.final-prompt--spotlight-stage[data-ramp-phase="1"] .final-prompt__inner,
.final-prompt--spotlight-stage[data-ramp-phase="2"] .final-prompt__inner,
.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__inner {
  opacity: 1;
  visibility: visible;
  clip-path: none;
  transform: translateY(-4svh);
  transition-delay: 80ms, 80ms, 0s;
}

.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__inner {
  transform: translateY(-13svh);
}

.final-prompt--spotlight-stage h2 {
  max-width: 17ch;
  display: grid;
  justify-items: center;
  gap: 0.05em;
}

.final-prompt__lead {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 820ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.final-prompt--spotlight-stage[data-ramp-phase="1"] .final-prompt__lead,
.final-prompt--spotlight-stage[data-ramp-phase="2"] .final-prompt__lead,
.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__lead {
  opacity: 1;
  transform: translateY(0);
}

.final-prompt__reveal-copy {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  column-gap: 0.17em;
  width: 100%;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition:
    opacity 360ms ease,
    clip-path 980ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.final-prompt__reveal-copy > span:last-child {
  flex-basis: 100%;
}

.final-prompt__reveal-copy::after {
  content: "";
  position: absolute;
  top: -8%;
  bottom: -8%;
  left: 49%;
  width: 16%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.84) 70%, transparent);
  filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.final-prompt--spotlight-stage[data-ramp-phase="2"] .final-prompt__reveal-copy {
  opacity: 1;
  clip-path: polygon(0 0, 59% 0, 51% 100%, 0 100%);
}

.final-prompt--spotlight-stage[data-ramp-phase="2"] .final-prompt__reveal-copy::after {
  opacity: 1;
}

.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__reveal-copy {
  opacity: 1;
  clip-path: inset(0);
}

.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__reveal-copy::after {
  opacity: 0;
}

.site-footer--ramp {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 8;
  min-height: clamp(320px, 36svh, 390px);
  max-height: 46svh;
  padding: clamp(38px, 5svh, 64px) var(--side-pad) clamp(26px, 3.6svh, 48px);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(105%);
  background:
    linear-gradient(180deg, transparent 0%, rgba(2, 3, 4, 0.72) 17%, #030405 42%, #050607 100%);
  box-shadow: 0 -42px 96px rgba(0, 0, 0, 0.48);
  transition:
    opacity 720ms ease,
    transform 980ms cubic-bezier(0.16, 0.84, 0.24, 1),
    visibility 0s linear 980ms;
}

body.is-ramp-footer-visible .site-footer--ramp {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 240ms, 120ms, 0s;
}

.site-footer--ramp::before,
body.is-page-bottom .site-footer--ramp::before {
  background: radial-gradient(
    ellipse 62% 230px at 50% 100%,
    rgba(210, 228, 244, 0.22),
    rgba(161, 194, 223, 0.1) 34%,
    transparent 76%
  );
}

body.is-ramp-footer-visible .site-footer--ramp::before {
  opacity: 0.46;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 700px) {
  .final-prompt__fixture {
    width: 92px;
    height: 62px;
  }

  .final-prompt__spotlight--left .final-prompt__fixture {
    left: 8px;
  }

  .final-prompt__spotlight--right .final-prompt__fixture {
    right: 8px;
  }

  .final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__inner {
    transform: translateY(-17svh);
  }

  .site-footer--ramp {
    min-height: 360px;
    max-height: 46svh;
    padding: 28px max(18px, env(safe-area-inset-right)) max(22px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-prompt__lead,
  .final-prompt__reveal-copy,
  .site-footer--ramp {
    transition-duration: 1ms !important;
  }
}

/* 2026-08-14 · Final direction: invisible overhead light and footer stage edge. */
.final-prompt--spotlight-stage {
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.final-prompt__sticky {
  position: relative;
  top: auto;
  height: 100svh;
  min-height: 100svh;
  background: #000;
}

.final-prompt__sticky::before,
.final-prompt__sticky::after {
  display: none;
}

.final-prompt__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.final-prompt__overhead-beam {
  position: absolute;
  top: -4%;
  left: 50%;
  width: 118vw;
  height: 104%;
  opacity: 0;
  background: conic-gradient(
    from 0deg at 50% -14%,
    transparent 0deg 136deg,
    rgba(187, 214, 238, 0.012) 145deg,
    rgba(191, 217, 239, 0.075) 155deg,
    rgba(228, 240, 250, 0.17) 170deg,
    rgba(246, 250, 254, 0.23) 180deg,
    rgba(228, 240, 250, 0.17) 190deg,
    rgba(191, 217, 239, 0.075) 205deg,
    rgba(187, 214, 238, 0.012) 215deg,
    transparent 224deg 360deg
  );
  filter: blur(14px);
  transform: translateX(-50%) scaleX(0.72) scaleY(0.92);
  transform-origin: 50% 0;
  transition:
    opacity 1100ms cubic-bezier(0.16, 0.84, 0.24, 1),
    transform 1400ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.final-prompt__overhead-beam::before,
.final-prompt__overhead-beam::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.final-prompt__overhead-beam::before {
  top: 7%;
  right: 21%;
  bottom: 4%;
  left: 21%;
  background: radial-gradient(ellipse at 50% 38%, rgba(248, 251, 255, 0.13), rgba(185, 211, 234, 0.045) 58%, transparent 79%);
  filter: blur(22px);
}

.final-prompt__overhead-beam::after {
  right: 4%;
  bottom: 22%;
  left: 4%;
  height: 20%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(226, 240, 251, 0.22), rgba(154, 188, 217, 0.075) 48%, transparent 76%);
  filter: blur(18px);
}

.final-prompt__light-dust {
  position: absolute;
  inset: 5% 10% 25%;
  opacity: 0;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.44) 0 0.6px, transparent 1.2px),
    radial-gradient(circle at 73% 19%, rgba(255, 255, 255, 0.38) 0 0.7px, transparent 1.3px),
    radial-gradient(circle at 41% 62%, rgba(255, 255, 255, 0.28) 0 0.6px, transparent 1.2px),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.26) 0 0.7px, transparent 1.3px);
  background-size: 181px 163px, 227px 197px, 149px 211px, 263px 173px;
  filter: blur(0.25px);
  transform: translateY(-10px);
  transition:
    opacity 1200ms ease 160ms,
    transform 1800ms cubic-bezier(0.16, 0.84, 0.24, 1);
  will-change: background-position;
}

.final-prompt__stage-floor {
  position: absolute;
  right: -14%;
  bottom: -17%;
  left: -14%;
  height: 57%;
  opacity: 0;
  border-top: 1px solid rgba(218, 230, 241, 0.06);
  background:
    radial-gradient(ellipse 43% 42% at 50% 14%, rgba(222, 237, 250, 0.14), rgba(150, 180, 207, 0.045) 49%, transparent 76%),
    repeating-linear-gradient(90deg, transparent 0 13vw, rgba(255, 255, 255, 0.014) 13vw calc(13vw + 1px)),
    linear-gradient(180deg, rgba(25, 31, 37, 0.42), rgba(4, 6, 8, 0.86));
  box-shadow: 0 -54px 120px rgba(0, 0, 0, 0.82);
  transform: perspective(860px) rotateX(63deg) translateY(16%);
  transform-origin: 50% 100%;
  transition:
    opacity 1200ms cubic-bezier(0.16, 0.84, 0.24, 1),
    transform 1500ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.final-prompt--spotlight-stage .final-prompt__inner {
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 720ms cubic-bezier(0.16, 0.84, 0.24, 1),
    color 920ms ease,
    transform 980ms cubic-bezier(0.16, 0.84, 0.24, 1),
    visibility 0s linear 980ms;
}

.final-prompt--spotlight-stage .final-prompt__inner h2 {
  max-width: 16ch;
  gap: 0.02em;
  color: rgba(255, 255, 255, 0.68);
  text-shadow: none;
  transition:
    color 1000ms ease,
    text-shadow 1000ms ease;
}

.final-prompt--spotlight-stage .final-prompt__lead,
.final-prompt--spotlight-stage .final-prompt__reveal-copy {
  opacity: 1;
  transform: none;
  transition: none;
}

.final-prompt--spotlight-stage .final-prompt__reveal-copy::after {
  display: none !important;
}

.final-prompt--spotlight-stage[data-ramp-phase="1"] .final-prompt__reveal-copy,
.final-prompt--spotlight-stage[data-ramp-phase="2"] .final-prompt__reveal-copy,
.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__reveal-copy {
  opacity: 1 !important;
  clip-path: none !important;
}

.final-prompt--spotlight-stage .highlight-glow {
  color: inherit;
  text-shadow: inherit;
}

.final-prompt--spotlight-stage[data-ramp-phase="1"] .final-prompt__inner,
.final-prompt--spotlight-stage[data-ramp-phase="2"] .final-prompt__inner,
.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__inner {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5svh) scale(1);
  transition-delay: 80ms, 0s, 80ms, 0s;
}

.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__inner h2 {
  color: #fff;
}

.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__inner h2,
.final-prompt--spotlight-stage[data-ramp-phase="3"] .highlight-glow {
  text-shadow:
    0 -9px 24px rgba(225, 240, 252, 0.24),
    0 -3px 10px rgba(244, 249, 253, 0.16),
    0 -1px 1px rgba(255, 255, 255, 0.12) !important;
}

.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__overhead-beam {
  opacity: 0.74;
  transform: translateX(-50%) scaleX(1) scaleY(1);
}

.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__light-dust {
  opacity: 0.32;
  transform: translateY(0);
  animation: final-light-dust-drift 18s linear infinite alternate;
}

.final-prompt--spotlight-stage[data-ramp-phase="2"] .final-prompt__stage-floor {
  opacity: 0.18;
  transform: perspective(860px) rotateX(63deg) translateY(6%);
}

.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__stage-floor {
  opacity: 1;
  transform: perspective(860px) rotateX(63deg) translateY(0);
}

.final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__inner {
  transform: translateY(-8svh) scale(1);
}

@keyframes final-light-dust-drift {
  0% {
    background-position: 0 0, 42px -28px, -18px 14px, 68px 38px;
  }

  50% {
    background-position: 18px 24px, 19px -4px, -43px 37px, 44px 11px;
  }

  100% {
    background-position: 40px 57px, -7px 23px, -71px 60px, 18px -25px;
  }
}

.site-footer--ramp {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 8;
  min-height: 0;
  max-height: none;
  padding: clamp(22px, 2.6svh, 36px) var(--side-pad) clamp(18px, 2svh, 28px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(102%);
  border-top: 1px solid rgba(222, 233, 243, 0.26);
  background:
    linear-gradient(180deg, rgba(27, 33, 39, 0.98) 0, rgba(9, 12, 15, 0.995) 18px, #030405 92px, #050607 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 -12px 32px rgba(177, 204, 228, 0.055),
    0 -48px 110px rgba(0, 0, 0, 0.64);
  transition:
    opacity 760ms ease,
    transform 1050ms cubic-bezier(0.16, 0.84, 0.24, 1),
    visibility 0s linear 1050ms;
}

.site-footer--ramp .site-footer__inner {
  gap: clamp(12px, 1.4svh, 20px);
}

.site-footer--ramp .site-footer__headline-row {
  gap: clamp(14px, 2.4vw, 34px);
}

.site-footer--ramp .site-footer__logo {
  font-size: clamp(32px, 4vw, 58px);
}

.site-footer--ramp .final-prompt__button {
  min-width: clamp(230px, 19vw, 300px);
  min-height: clamp(52px, 5.4svh, 62px);
  padding-inline: clamp(24px, 3vw, 40px);
}

.site-footer--ramp .site-footer__descriptor,
.site-footer--ramp .site-footer__socials {
  margin-top: 0;
}

.site-footer--ramp .site-footer__legal {
  padding-top: 10px;
}

.site-footer--ramp::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 12px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(217, 231, 244, 0.18), rgba(83, 99, 114, 0.08) 42%, rgba(0, 0, 0, 0.58));
  box-shadow:
    0 -1px 0 rgba(240, 247, 253, 0.24),
    0 -12px 38px rgba(181, 210, 235, 0.08),
    0 14px 30px rgba(0, 0, 0, 0.68);
}

body.is-ramp-footer-visible .site-footer--ramp {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 180ms, 80ms, 0s;
}

.site-footer--ramp::before,
body.is-page-bottom .site-footer--ramp::before {
  background: radial-gradient(
    ellipse 64% 220px at 50% 100%,
    rgba(199, 220, 239, 0.16),
    rgba(139, 170, 199, 0.065) 38%,
    transparent 76%
  );
}

body.is-ramp-footer-visible .site-footer--ramp::before {
  opacity: 0.38;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 700px) {
  .final-prompt--spotlight-stage {
    height: 100svh;
    min-height: 100svh;
  }

  .final-prompt__overhead-beam {
    top: -8%;
    width: 132vw;
    height: 94%;
  }

  .final-prompt__stage-floor {
    right: -38%;
    bottom: -13%;
    left: -38%;
    height: 52%;
  }

  .final-prompt--spotlight-stage .final-prompt__inner h2 {
    max-width: 10.5ch;
    font-size: clamp(44px, 13.4vw, 66px);
  }

  .final-prompt--spotlight-stage[data-ramp-phase="1"] .final-prompt__inner,
  .final-prompt--spotlight-stage[data-ramp-phase="2"] .final-prompt__inner {
    transform: translateY(-11svh);
  }

  .final-prompt--spotlight-stage[data-ramp-phase="3"] .final-prompt__inner {
    transform: translateY(-18svh);
  }

  .site-footer--ramp {
    min-height: 0;
    max-height: none;
    padding: 18px max(18px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  }

  .site-footer--ramp .site-footer__headline-row {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-prompt__overhead-beam,
  .final-prompt__light-dust,
  .final-prompt__stage-floor,
  .final-prompt--spotlight-stage .final-prompt__inner,
  .site-footer--ramp {
    animation: none !important;
    transition-duration: 1ms !important;
  }
}
