/* ═══════════════════════════════════════════════════════════
   SCOUTING PRODUCTION — Cinematic Production Metaphor
   Editorial · Bold typography · Slate/timecode identity
   Liquid Glass for all interactive controls
   ═══════════════════════════════════════════════════════════ */

:root {
  --pr-bg:           #060606;
  --pr-text:         #f0f0f5;
  --pr-muted:        rgba(240, 240, 245, 0.6);
  --pr-dim:          rgba(240, 240, 245, 0.38);
  --pr-accent:       #a855f7;
  --pr-accent-2:     #38bdf8;
  --pr-gradient:     linear-gradient(135deg, #a855f7 0%, #38bdf8 100%);
  --pr-rec:          #ff3b3b;
  --pr-amber:        #fbbf24;
  --pr-letterbox-h:  44px;
  --pr-mono:         'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
  --pr-ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --pr-ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════════════════════════════════════════════════════════
   COLD OPEN — Hero
   ═══════════════════════════════════════════════════════════ */

.pr-cold-open {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #000;
  padding: 54px 40px calc(var(--pr-letterbox-h) + 36px);
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

/* Cinematic background video */
.pr-cold-open__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  filter: saturate(0.82) contrast(1.08) brightness(0.76);
  animation: pr-video-fade-in 1.6s var(--pr-ease-out) 0.3s forwards;
}
@keyframes pr-video-fade-in {
  to { opacity: 1; }
}

/* Cinematic dramatic overlay — vignette + darkening + brand tint */
.pr-cold-open__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 115% 85% at 50% 45%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.12) 38%, rgba(0,0,0,0.55) 74%, rgba(0,0,0,0.92) 100%),
    linear-gradient(180deg,
      rgba(6,6,8,0.78) 0%,
      rgba(6,6,8,0.38) 18%,
      rgba(6,6,8,0.22) 45%,
      rgba(6,6,8,0.55) 78%,
      rgba(6,6,8,0.92) 100%
    ),
    radial-gradient(ellipse 800px 600px at 78% 18%, rgba(168,85,247,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 700px 500px at 20% 85%, rgba(56,189,248,0.07) 0%, transparent 55%);
}

/* Letterbox bars (cinemascope 2.39:1 feel) */
.pr-letterbox {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 4;
  pointer-events: none;
  animation: pr-letterbox-in 1.1s var(--pr-ease-out) both;
}
.pr-letterbox--top {
  top: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 55%, transparent 100%);
  transform-origin: top;
}
.pr-letterbox--bottom {
  bottom: 0;
  height: var(--pr-letterbox-h);
  background: #000;
  box-shadow: 0 0 40px rgba(0,0,0,0.7);
  transform-origin: bottom;
}

@keyframes pr-letterbox-in {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

/* Corner frame marks (like a director's viewfinder) */
.pr-frame-marks {
  position: absolute;
  inset: 16px 20px calc(var(--pr-letterbox-h) + 16px) 20px;
  pointer-events: none;
  z-index: 3;
}
.pr-mark {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: rgba(255, 255, 255, 0.35);
  border-style: solid;
  border-width: 0;
  opacity: 0;
  animation: pr-mark-in 0.6s var(--pr-ease-out) 0.8s forwards;
}
.pr-mark--tl { top: 0; left: 0; border-top-width: 1.5px; border-left-width: 1.5px; }
.pr-mark--tr { top: 0; right: 0; border-top-width: 1.5px; border-right-width: 1.5px; }
.pr-mark--bl { bottom: 0; left: 0; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.pr-mark--br { bottom: 0; right: 0; border-bottom-width: 1.5px; border-right-width: 1.5px; }

@keyframes pr-mark-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Top meta strip */
.pr-meta-strip {
  position: absolute;
  top: 18px;
  left: 28px;
  right: 28px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--pr-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  opacity: 0;
  animation: pr-fade-in 0.7s var(--pr-ease-out) 0.9s forwards;
}
.pr-meta-strip__col { display: flex; align-items: center; gap: 10px; }
.pr-meta-strip__col--center { flex: 1; justify-content: center; }

.pr-rec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pr-rec);
  font-weight: 600;
}
.pr-rec__dot {
  width: 7px; height: 7px;
  background: var(--pr-rec);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--pr-rec);
  animation: pr-rec-blink 1.2s ease-in-out infinite;
}
@keyframes pr-rec-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.pr-tc { color: rgba(255,255,255,0.85); font-variant-numeric: tabular-nums; }
.pr-meta-sep { opacity: 0.3; }
.pr-meta-val { color: rgba(255,255,255,0.7); }

/* Slate card (clapperboard) */
.pr-slate {
  position: absolute;
  top: 56px;
  right: 40px;
  z-index: 6;
  min-width: 210px;
  padding: 14px 16px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%),
    rgba(14, 14, 18, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 4px;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.15),
    inset 0 0 0 0.5px rgba(255,255,255,0.08),
    0 8px 28px -4px rgba(0,0,0,0.55);
  opacity: 0;
  transform: translateX(20px);
  animation: pr-slate-in 0.8s var(--pr-ease-out) 1.1s forwards;
}
@keyframes pr-slate-in {
  to { opacity: 1; transform: translateX(0); }
}

.pr-slate__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  font-family: var(--pr-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.pr-slate__top:last-of-type { border-bottom: none; padding-bottom: 10px; }

.pr-slate__label {
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  text-transform: uppercase;
}
.pr-slate__value {
  color: var(--pr-text);
  font-weight: 600;
  font-size: 13px;
}
.pr-slate__value--big {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  background: var(--pr-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pr-slate__stripes {
  display: flex;
  gap: 2px;
  margin: 0 -16px;
  padding: 10px 16px 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.25);
  border-radius: 0 0 4px 4px;
}
.pr-slate__stripes span {
  flex: 1;
  height: 14px;
  background: repeating-linear-gradient(
    -35deg,
    rgba(255,255,255,0.8) 0 6px,
    #111 6px 12px
  );
}
.pr-slate__stripes span:nth-child(odd) {
  background: repeating-linear-gradient(
    -35deg,
    #111 0 6px,
    rgba(255,255,255,0.8) 6px 12px
  );
}

/* Hero stage content */
.pr-cold-open__stage {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: 20px;
}

.pr-cold-open__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--pr-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(10px);
  animation: pr-slide-up 0.7s var(--pr-ease-out) 1.2s forwards;
}

.pr-scene-mark {
  padding: 3px 8px;
  background: rgba(255, 59, 59, 0.12);
  color: var(--pr-rec);
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* HERO TITLE — editorial, oversized, asymmetric */
.pr-hero-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--pr-text);
  margin: 0 0 48px;
  max-width: 1100px;
}

.pr-hero-title__row {
  display: block;
  overflow: hidden;
}
.pr-hero-title__row--shifted { padding-left: 8vw; }

.pr-hero-title__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  animation: pr-word-up 0.9s var(--pr-ease-out) forwards;
}
.pr-hero-title__word--1 { animation-delay: 1.2s; }
.pr-hero-title__word--2 { animation-delay: 1.32s; }
.pr-hero-title__word--3 { animation-delay: 1.44s; }
.pr-hero-title__word--4 { animation-delay: 1.56s; }

@keyframes pr-word-up {
  to { opacity: 1; transform: translateY(0); }
}

.pr-hero-title__word em {
  font-style: normal;
  font-weight: 500;
  background: var(--pr-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Lower third */
.pr-lower-third {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px 60px;
  align-items: end;
  opacity: 0;
  transform: translateY(12px);
  animation: pr-slide-up 0.7s var(--pr-ease-out) 2.1s forwards;
}

@keyframes pr-slide-up {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pr-fade-in {
  to { opacity: 1; }
}

.pr-lower-third__text p {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin: 0;
}

.pr-lower-third__ctas {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* Bottom infinite ticker */
.pr-bottom-ticker {
  position: absolute;
  bottom: calc(var(--pr-letterbox-h) + 14px);
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 5;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  opacity: 0;
  animation: pr-fade-in 0.7s var(--pr-ease-out) 2.4s forwards;
}
.pr-ticker-track {
  display: inline-flex;
  gap: 36px;
  white-space: nowrap;
  animation: pr-ticker 40s linear infinite;
  font-family: var(--pr-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  padding-left: 0;
}
@keyframes pr-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.pr-ticker-sep {
  color: var(--pr-accent);
  opacity: 0.6;
  font-size: 6px;
}

/* ═══════════════════════════════════════════════════════════
   CTA buttons (Liquid Glass)
   ═══════════════════════════════════════════════════════════ */

.pr-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 22px;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--pr-ease-spring), box-shadow 0.2s;
  white-space: nowrap;
}

.pr-cta--primary {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.1) 100%),
    var(--pr-gradient);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 0 rgba(0,0,0,0.18),
    inset 0 0 0 0.5px rgba(255,255,255,0.22),
    0 8px 22px -2px rgba(168,85,247,0.45),
    0 2px 6px rgba(0,0,0,0.25);
  text-shadow: 0 1px 2px rgba(0,0,0,0.22);
}
.pr-cta--primary:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 0 rgba(0,0,0,0.18),
    inset 0 0 0 0.5px rgba(255,255,255,0.3),
    0 12px 32px -2px rgba(168,85,247,0.55),
    0 4px 10px rgba(0,0,0,0.3);
}

.pr-cta--ghost {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.08) 100%),
    rgba(255,255,255,0.03);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.22),
    inset 0 0 0 0.5px rgba(255,255,255,0.1),
    0 2px 8px rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);
}
.pr-cta--ghost:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.32),
    inset 0 0 0 0.5px rgba(255,255,255,0.18),
    0 6px 16px rgba(0,0,0,0.3);
}
.pr-cta--full { width: 100%; }

.pr-cta__arrow { display: inline-flex; transition: transform 0.2s var(--pr-ease-out); }
.pr-cta:hover .pr-cta__arrow { transform: translateX(3px); }

.pr-cta__play {
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.9);
  margin-left: -4px;
}

.pr-cta.is-sent { background: linear-gradient(135deg, #10b981, #34d399) !important; }

/* ═══════════════════════════════════════════════════════════
   SCENES (Takes)
   ═══════════════════════════════════════════════════════════ */

.pr-scene {
  position: relative;
  padding: 96px 40px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.pr-scene--dark {
  background:
    linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.015) 50%, transparent 100%);
}

/* Slug line — section header (scene slugline style) */
.pr-scene__slug {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
  margin-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pr-slug-left { display: flex; align-items: center; gap: 16px; }

.pr-take-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.03) 100%),
    rgba(168,85,247,0.08);
  border-radius: 4px;
  font-family: var(--pr-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pr-amber);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.2),
    inset 0 0 0 0.5px rgba(251,191,36,0.25);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.pr-take-chip--live {
  color: var(--pr-rec);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.2),
    inset 0 0 0 0.5px rgba(255,59,59,0.35);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.03) 100%),
    rgba(255, 59, 59, 0.08);
}

.pr-slug-mark {
  font-family: var(--pr-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.pr-slug-tc {
  font-family: var(--pr-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  font-variant-numeric: tabular-nums;
}

/* Title block */
.pr-scene__title-block { margin-bottom: 72px; max-width: 920px; }
.pr-scene__title-block--right { margin-left: auto; text-align: right; }

.pr-display-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--pr-text);
  margin: 0;
}
.pr-display-title em {
  font-style: normal;
  font-weight: 500;
  background: var(--pr-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pr-display-title__accent {
  font-weight: 400;
  font-style: italic;
  color: var(--pr-text);
}
.pr-display-title--right { text-align: right; }

.pr-scene__lede {
  font-family: 'Urbanist', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
  max-width: 540px;
  margin: 28px 0 0;
}

/* Reveal utility */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--pr-ease-out), transform 0.9s var(--pr-ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES — numbered editorial list
   ═══════════════════════════════════════════════════════════ */

.pr-services {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.pr-service {
  display: grid;
  grid-template-columns: 72px 1fr 80px;
  gap: 32px;
  padding: 36px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
  position: relative;
  transition: background 0.4s var(--pr-ease-out);
}

.pr-service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(168,85,247,0.04), rgba(56,189,248,0.02) 50%, transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.pr-service:hover::before { opacity: 1; }
.pr-service:hover { background: rgba(255,255,255,0.015); }

.pr-service__idx {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  letter-spacing: -0.02em;
  line-height: 1;
  padding-top: 4px;
  font-variant-numeric: tabular-nums;
}

.pr-service--feature .pr-service__idx {
  background: var(--pr-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  opacity: 1;
}

.pr-service__main { min-width: 0; }

.pr-service__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--pr-text);
  margin: 0 0 12px;
  transition: letter-spacing 0.4s var(--pr-ease-out);
}
.pr-service:hover .pr-service__title { letter-spacing: -0.015em; }

.pr-service__desc {
  font-family: 'Urbanist', sans-serif;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  margin: 0;
  max-width: 640px;
}

.pr-service__tags {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.pr-service__tags li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--pr-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.pr-dot {
  width: 5px; height: 5px;
  background: var(--pr-accent);
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(168,85,247,0.6);
}

.pr-service__icon {
  justify-self: end;
  color: rgba(255,255,255,0.25);
  padding-top: 4px;
  transition: color 0.35s var(--pr-ease-out), transform 0.35s var(--pr-ease-out);
}
.pr-service:hover .pr-service__icon {
  color: var(--pr-accent);
  transform: rotate(4deg) scale(1.08);
}

/* ═══════════════════════════════════════════════════════════
   REEL (Portfolio) — asymmetric mosaic
   ═══════════════════════════════════════════════════════════ */

.pr-scene--reel { padding-bottom: 72px; }

.pr-reel {
  display: grid;
  grid-template-columns: 1.42fr 0.58fr 0.58fr;
  grid-template-rows: auto auto;
  gap: 24px;
  position: relative;
}

.pr-case {
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  position: relative;
}

.pr-case--feature {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.pr-case:nth-child(2) { grid-column: 2; grid-row: 1; }
.pr-case:nth-child(3) { grid-column: 3; grid-row: 1; }
.pr-case:nth-child(4) { grid-column: 2 / span 2; grid-row: 2; }

.pr-case__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background: #0c0c0f;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.06),
    0 12px 32px -8px rgba(0,0,0,0.5),
    inset 0 0 0 0.5px rgba(255,255,255,0.06);
}

.pr-case--feature .pr-case__frame { aspect-ratio: 4 / 5; }

.pr-case__frame img,
.pr-case__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--pr-ease-out), filter 0.5s;
  filter: saturate(0.9) brightness(0.78);
}
.pr-case:hover .pr-case__frame img,
.pr-case:hover .pr-case__frame video {
  transform: scale(1.04);
  filter: saturate(1.1) brightness(0.95);
}

.pr-case__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(6,6,6,0.7) 100%);
}

.pr-case__play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.06) 100%),
    rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.35s var(--pr-ease-out), transform 0.35s var(--pr-ease-spring);
  padding-left: 3px;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.35),
    inset 0 0 0 0.5px rgba(255,255,255,0.15),
    0 4px 12px rgba(0,0,0,0.5);
}
.pr-case:hover .pr-case__play-btn {
  opacity: 1;
  transform: scale(1);
}

.pr-case--feature .pr-case__play-btn { width: 64px; height: 64px; }

.pr-case__duration {
  font-family: var(--pr-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  padding: 4px 8px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 3px;
  text-transform: uppercase;
  align-self: flex-end;
}

/* Frame corner marks inside each case */
.pr-case__framemark {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
}
.pr-case:hover .pr-case__framemark { opacity: 0.5; }
.pr-case__framemark span {
  position: absolute;
  width: 10px; height: 10px;
  border: 1.5px solid #fff;
  border-width: 0;
}
.pr-case__framemark span:nth-child(1) { top: 0; left: 0; border-top-width: 1.5px; border-left-width: 1.5px; }
.pr-case__framemark span:nth-child(2) { top: 0; right: 0; border-top-width: 1.5px; border-right-width: 1.5px; }
.pr-case__framemark span:nth-child(3) { bottom: 0; left: 0; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.pr-case__framemark span:nth-child(4) { bottom: 0; right: 0; border-bottom-width: 1.5px; border-right-width: 1.5px; }

.pr-case__body { padding: 0 4px; }

.pr-case__credits {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 18px;
  padding: 10px 0 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--pr-mono);
  font-size: 10.5px;
  line-height: 1.4;
}
.pr-case__credits div {
  display: contents;
}
.pr-case__credits span {
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pr-case__credits strong {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 11.5px;
}

.pr-case__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--pr-text);
  margin: 0 0 6px;
  line-height: 1.2;
}
.pr-case--feature .pr-case__title { font-size: 26px; }

.pr-case__synopsis {
  font-family: 'Urbanist', sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* Reel cursor crosshair */
.pr-reel { cursor: default; }
.pr-reel.has-cursor { cursor: none; }

.pr-cursor-crosshair {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 40;
  opacity: 0;
  transition: opacity 0.3s;
  will-change: transform;
}
.pr-reel.has-cursor .pr-cursor-crosshair { opacity: 1; }

.pr-cursor-crosshair span {
  position: absolute;
  background: var(--pr-rec);
  box-shadow: 0 0 6px rgba(255,59,59,0.6);
}
.pr-cursor-crosshair span:nth-child(1) { top: 0; left: 50%; width: 1px; height: 28px; transform: translateX(-50%); }
.pr-cursor-crosshair span:nth-child(2) { bottom: 0; left: 50%; width: 1px; height: 28px; transform: translateX(-50%); }
.pr-cursor-crosshair span:nth-child(3) { left: 0; top: 50%; width: 28px; height: 1px; transform: translateY(-50%); }
.pr-cursor-crosshair span:nth-child(4) { right: 0; top: 50%; width: 28px; height: 1px; transform: translateY(-50%); }

.pr-cursor-crosshair em {
  position: absolute;
  top: 48%;
  left: 60%;
  font-family: var(--pr-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--pr-rec);
  text-shadow: 0 0 6px rgba(255,59,59,0.5);
  font-style: normal;
}

/* Reel footer link */
.pr-reel-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pr-reel-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-family: var(--pr-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.pr-reel-footer__link svg { transition: transform 0.25s var(--pr-ease-out); }
.pr-reel-footer__link:hover { color: var(--pr-accent); }
.pr-reel-footer__link:hover svg { transform: translate(3px, -3px); }

/* ═══════════════════════════════════════════════════════════
   NUMBERS — big editorial stats
   ═══════════════════════════════════════════════════════════ */

.pr-scene--numbers {
  padding-top: 96px;
  padding-bottom: 96px;
}

.pr-numbers {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 36px 28px;
  padding-top: 16px;
}

.pr-stat {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
}

.pr-stat--xl {
  grid-row: span 1;
}

.pr-stat__num {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--pr-text);
  font-variant-numeric: tabular-nums;
  margin-bottom: 10px;
}
.pr-stat--xl .pr-stat__num {
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  background: var(--pr-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pr-stat__label {
  display: block;
  font-family: var(--pr-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}

.pr-stat__desc {
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.52);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   CREW (Testimonials) — editorial magazine style
   ═══════════════════════════════════════════════════════════ */

.pr-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.pr-quote {
  margin: 0;
  padding: 40px 36px;
  position: relative;
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.08),
    inset 0 0 0 0.5px rgba(255,255,255,0.05);
}

.pr-quote__mark {
  position: absolute;
  top: -20px;
  left: 24px;
  font-family: 'Unbounded', sans-serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  background: var(--pr-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
}

.pr-quote__body {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--pr-text);
  margin: 0 0 28px;
}
.pr-quote__body em {
  font-style: italic;
  color: var(--pr-accent-2);
}

.pr-quote__foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px dashed rgba(255,255,255,0.1);
}
.pr-quote__foot img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.3);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}
.pr-quote__name {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.01em;
  color: var(--pr-text);
  margin-bottom: 2px;
}
.pr-quote__role {
  font-family: var(--pr-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════════════════════════════════
   BRIEFING — form section
   ═══════════════════════════════════════════════════════════ */

.pr-scene--briefing {
  padding-bottom: 120px;
}

.pr-briefing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.pr-briefing__intro { padding-top: 8px; }

.pr-briefing__intro .pr-display-title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.pr-briefing__lede {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 32px 0 36px;
  max-width: 440px;
}
.pr-briefing__lede strong {
  color: var(--pr-text);
  font-weight: 600;
}

.pr-contact-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pr-contact-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--pr-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
  width: fit-content;
}
.pr-contact-line:hover { color: var(--pr-accent); }
.pr-contact-line svg { color: rgba(255,255,255,0.4); }
.pr-contact-line--static { cursor: default; color: rgba(255,255,255,0.45); }

/* Form */
.pr-briefing__form {
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%),
    rgba(12,12,16,0.5);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.06),
    inset 0 0 0 0.5px rgba(255,255,255,0.05),
    0 20px 48px -12px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pr-briefing__slate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  font-family: var(--pr-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.05);
}
.pr-briefing__slate-code {
  color: var(--pr-amber);
  font-weight: 600;
}

.pr-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pr-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pr-field__label {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--pr-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.pr-field__idx {
  font-style: normal;
  color: var(--pr-amber);
  font-weight: 500;
}

.pr-field input,
.pr-field textarea,
.pr-field select {
  width: 100%;
  padding: 0 14px;
  height: 44px;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  color: var(--pr-text);
  background:
    linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.08) 100%),
    rgba(255,255,255,0.02);
  border: none;
  border-radius: 8px;
  box-shadow:
    inset 0 1px 1px 0 rgba(0,0,0,0.25),
    inset 0 0 0 0.5px rgba(255,255,255,0.08),
    inset 0 -1px 0 0 rgba(255,255,255,0.05);
  outline: none;
  transition: box-shadow 0.2s;
}

.pr-field input::placeholder,
.pr-field textarea::placeholder { color: rgba(255,255,255,0.32); }

.pr-field input:focus,
.pr-field textarea:focus,
.pr-field select:focus {
  box-shadow:
    inset 0 1px 1px 0 rgba(0,0,0,0.25),
    inset 0 0 0 1px rgba(168,85,247,0.45),
    0 0 0 3px rgba(168,85,247,0.1);
}

.pr-field--textarea textarea {
  height: auto;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.5;
  min-height: 110px;
}

.pr-field__select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.pr-field__select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 38px;
}
.pr-field__select-wrap select option { background: #0c0c10; color: var(--pr-text); }
.pr-field__select-wrap svg {
  position: absolute;
  right: 14px;
  pointer-events: none;
  color: rgba(255,255,255,0.5);
}

.pr-briefing__fineprint {
  font-family: var(--pr-mono);
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.35);
  margin: 0;
  text-align: center;
}
.pr-briefing__fineprint span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════════════════════════
   END CARD
   ═══════════════════════════════════════════════════════════ */

.pr-endcard {
  padding: 70px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(168,85,247,0.02) 0%, transparent 100%),
    rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  font-family: var(--pr-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  max-width: 1440px;
  margin: 40px auto 0;
}
.pr-endcard__text {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--pr-text);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .pr-reel {
    grid-template-columns: 1fr 1fr;
  }
  .pr-case--feature {
    grid-column: 1 / span 2;
    grid-row: 1;
  }
  .pr-case--feature .pr-case__frame { aspect-ratio: 16 / 9; }
  .pr-case:nth-child(2) { grid-column: 1; grid-row: 2; }
  .pr-case:nth-child(3) { grid-column: 2; grid-row: 2; }
  .pr-case:nth-child(4) { grid-column: 1 / span 2; grid-row: 3; }

  .pr-numbers { grid-template-columns: 1fr 1fr; }

  .pr-briefing { grid-template-columns: 1fr; gap: 60px; }

  .pr-slate { display: none; }
}

@media (max-width: 768px) {
  :root { --pr-letterbox-h: 28px; }

  .pr-cold-open { padding: calc(var(--pr-letterbox-h) + 14px) 20px calc(var(--pr-letterbox-h) + 28px); }
  .pr-meta-strip {
    left: 18px; right: 18px; gap: 10px;
    font-size: 9.5px;
  }
  .pr-meta-strip__col--right { display: none; }
  .pr-meta-strip__col--center { display: none; }

  .pr-frame-marks { inset: calc(var(--pr-letterbox-h) + 14px) 14px; }

  .pr-cold-open__stage { padding-top: 12px; }

  .pr-hero-title__row--shifted { padding-left: 0; }

  .pr-lower-third { grid-template-columns: 1fr; gap: 28px; }
  .pr-lower-third__ctas { flex-direction: column; align-items: stretch; }
  .pr-cta { width: 100%; }

  .pr-bottom-ticker { bottom: calc(var(--pr-letterbox-h) + 10px); }

  .pr-scene { padding: 70px 20px; }

  .pr-scene__slug { flex-wrap: wrap; gap: 12px; padding-bottom: 14px; margin-bottom: 40px; }
  .pr-slug-mark { font-size: 10px; }

  .pr-scene__title-block { margin-bottom: 44px; }

  .pr-services {
    margin-top: 8px;
  }
  .pr-service {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 24px 4px;
  }
  .pr-service__idx { font-size: 16px; }
  .pr-service__icon { display: none; }
  .pr-service__tags { gap: 12px; }

  .pr-reel { grid-template-columns: 1fr; gap: 28px; }
  .pr-case--feature, .pr-case:nth-child(2), .pr-case:nth-child(3), .pr-case:nth-child(4) {
    grid-column: 1; grid-row: auto;
  }
  .pr-case--feature .pr-case__title { font-size: 20px; }

  .pr-numbers { grid-template-columns: 1fr; gap: 32px; }

  .pr-quotes { grid-template-columns: 1fr; gap: 28px; }
  .pr-quote { padding: 28px 24px; }
  .pr-quote__mark { font-size: 80px; top: -12px; left: 16px; }

  .pr-briefing__form { padding: 22px; }
  .pr-field-row { grid-template-columns: 1fr; gap: 16px; }
  .pr-field input, .pr-field textarea, .pr-field select { font-size: 16px; }

  .pr-endcard { flex-direction: column; gap: 12px; padding: 40px 20px; text-align: center; }
}

/* Ultra-compact phones */
@media (max-width: 480px) {
  :root { --pr-letterbox-h: 22px; }

  .pr-cold-open { padding: calc(var(--pr-letterbox-h) + 10px) 14px calc(var(--pr-letterbox-h) + 20px); }
  .pr-frame-marks { inset: calc(var(--pr-letterbox-h) + 10px) 8px; }
  .pr-meta-strip { left: 12px; right: 12px; font-size: 9px; }

  .pr-scene { padding: 56px 16px; }
  .pr-scene__slug { gap: 8px; }

  /* Services stacked fully */
  .pr-service { grid-template-columns: 36px 1fr; gap: 12px; padding: 18px 2px; }
  .pr-service__idx { font-size: 14px; }

  /* Numbers/quotes tighter */
  .pr-numbers { gap: 24px; }
  .pr-quote { padding: 22px 18px; }
  .pr-quote__mark { font-size: 64px; top: -8px; left: 12px; }

  /* Briefing form */
  .pr-briefing__form { padding: 18px; }
  .pr-endcard { padding: 32px 16px; }

  /* CTAs full-width */
  .pr-cta { width: 100%; min-height: 48px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pr-letterbox { animation: none; }
  .pr-hero-title__word { opacity: 1; transform: none; animation: none; }
  .pr-slate, .pr-meta-strip, .pr-bottom-ticker, .pr-cold-open__eyebrow, .pr-lower-third, .pr-mark {
    opacity: 1; transform: none; animation: none;
  }
  .pr-rec__dot { animation: none; }
  .pr-ticker-track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════
   FLOATING CTA — Liquid glass, scroll-to-form
   ═══════════════════════════════════════════════════════════ */

.pr-float-cta {
  position: fixed;
  right: 32px;
  bottom: 56px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 18px;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.14) 100%),
    linear-gradient(135deg, #a855f7 0%, #38bdf8 100%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 0 rgba(255,255,255,0.12),
    inset 0 0 0 0.5px rgba(255,255,255,0.22),
    0 10px 32px -6px rgba(168,85,247,0.55),
    0 4px 16px -4px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition:
    opacity 0.5s var(--pr-ease-out),
    transform 0.5s var(--pr-ease-out),
    box-shadow 0.3s ease;
  pointer-events: none;
  will-change: transform, opacity;
}

.pr-float-cta.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.pr-float-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 0 rgba(255,255,255,0.14),
    inset 0 0 0 0.5px rgba(255,255,255,0.28),
    0 16px 40px -6px rgba(168,85,247,0.7),
    0 6px 20px -4px rgba(56,189,248,0.35);
}

.pr-float-cta:active {
  transform: translateY(-1px) scale(0.99);
}

.pr-float-cta__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
  animation: pr-float-pulse 1.8s ease-in-out infinite;
}

@keyframes pr-float-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.82); }
}

.pr-float-cta__arrow {
  transition: transform 0.3s var(--pr-ease-out);
}

.pr-float-cta:hover .pr-float-cta__arrow {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .pr-float-cta {
    right: 16px;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px) + 12px);
    padding: 12px 18px 12px 16px;
    font-size: 12px;
    gap: 9px;
  }
  .pr-float-cta__dot { width: 6px; height: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .pr-float-cta { transition: opacity 0.3s ease; }
  .pr-float-cta__dot { animation: none; }
  .pr-float-cta:hover { transform: translateY(0) scale(1); }
}
