.pitch-launch-button {
  position: fixed;
  z-index: 90;
  right: calc(
    clamp(1rem, 3.6vw, 3rem)
    + clamp(102px, 8.6vw, 136px)
    + clamp(.68rem, 1.1vw, 1rem)
    + clamp(46px, 3.8vw, 54px)
    + clamp(.56rem, .86vw, .86rem)
    + clamp(46px, 3.8vw, 54px)
    + clamp(.56rem, .86vw, .86rem)
    + clamp(92px, 7.8vw, 116px)
    + clamp(.56rem, .86vw, .86rem)
    + 8px
  );
  width: 128px;
  min-width: 46px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(139, 219, 255, .5);
  border-radius: 999px;
  color: #f4fdff;
  background:
    radial-gradient(circle at 22% 22%, rgba(255,255,255,.16), transparent 24%),
    radial-gradient(ellipse at 50% 120%, rgba(87, 232, 255, .2), transparent 62%),
    linear-gradient(145deg, rgba(8, 14, 26, .97), rgba(5, 7, 17, .9) 58%, rgba(17, 10, 35, .9));
  box-shadow:
    0 0 0 1px rgba(214, 244, 255, .035),
    0 0 24px rgba(66, 192, 255, .19),
    0 0 64px rgba(126, 85, 235, .13),
    inset 0 1px 0 rgba(255,255,255,.1),
    inset 0 -12px 28px rgba(0,0,0,.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 220ms ease, transform 260ms cubic-bezier(.19,1,.22,1), border-color 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  isolation: isolate;
}

.pitch-launch-button.is-ready {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.pitch-launch-button::before {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: -1;
  border: 1px solid rgba(187, 239, 255, .07);
  border-radius: inherit;
  pointer-events: none;
}

.pitch-launch-button:hover {
  transform: translateY(-2px) scale(1.035);
  border-color: rgba(193, 237, 255, .82);
  filter: brightness(1.13) saturate(1.08);
  box-shadow:
    0 0 0 1px rgba(218, 245, 255, .06),
    0 0 34px rgba(92, 212, 255, .3),
    0 0 82px rgba(141, 102, 245, .2),
    inset 0 1px 0 rgba(255,255,255,.13),
    inset 0 -12px 30px rgba(0,0,0,.42);
}

.pitch-launch-button:active { transform: translateY(-1px) scale(.98); }
.pitch-launch-button:focus-visible { outline: 2px solid rgba(155, 234, 255, .86); outline-offset: 6px; }

.pitch-launch-icon {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(142, 236, 255, .62);
  border-radius: 50%;
  color: #ecfeff;
  background: linear-gradient(145deg, rgba(91, 230, 255, .2), rgba(130, 87, 241, .2));
  box-shadow: 0 0 16px rgba(87, 224, 255, .25), inset 0 0 12px rgba(135, 101, 255, .16);
}

.pitch-launch-icon svg { width: 12px; height: 14px; margin-left: 2px; filter: drop-shadow(0 0 5px rgba(176,247,255,.72)); }
.pitch-launch-icon path { fill: currentColor; }

.pitch-launch-copy { display: grid; justify-items: center; gap: 2px; text-align: center; line-height: 1; white-space: nowrap; }
.pitch-launch-copy small { color: rgba(157, 225, 248, .78); font-size: 7px; font-weight: 800; letter-spacing: .18em; }
.pitch-launch-copy strong { color: #f5fdff; font-size: 10px; font-weight: 900; letter-spacing: .09em; }

.pitch-modal[hidden] { display: none !important; }

.pitch-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 36px);
  color: #f3fbff;
  background:
    radial-gradient(circle at 18% 18%, rgba(22, 114, 139, .14), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(83, 48, 148, .17), transparent 38%),
    rgba(0, 2, 7, .965);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
  overflow: auto;
  overscroll-behavior: contain;
  cursor: auto !important;
}

.pitch-modal.is-open { opacity: 1; visibility: visible; }
/* The homepage deliberately hides the native desktop cursor for its custom cursor.
   Inside the pitch player, restore the native pointer with higher specificity than
   body.has-signaltakt-cursor * so video controls remain precise and familiar. */
body.has-signaltakt-cursor.pitch-player-open,
body.has-signaltakt-cursor.pitch-player-open .pitch-modal,
body.has-signaltakt-cursor.pitch-player-open .pitch-modal * { cursor: default !important; }
body.has-signaltakt-cursor.pitch-player-open .pitch-modal button,
body.has-signaltakt-cursor.pitch-player-open .pitch-modal video { cursor: pointer !important; }
body.pitch-player-open .cursor-fx-layer { display: none !important; opacity: 0 !important; }

.pitch-modal::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(137, 220, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 220, 255, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 74%);
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 74%);
}

.pitch-modal-close {
  position: fixed;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(161, 222, 255, .38);
  border-radius: 50%;
  color: rgba(241, 252, 255, .92);
  background: linear-gradient(145deg, rgba(13, 20, 32, .96), rgba(5, 7, 13, .94));
  box-shadow: 0 0 26px rgba(82, 188, 241, .14), inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pitch-modal-close:hover { transform: rotate(4deg) scale(1.06); border-color: rgba(191, 240, 255, .72); background: rgba(16, 27, 42, .98); }
.pitch-modal-close:focus-visible { outline: 2px solid rgba(147, 230, 255, .86); outline-offset: 5px; }
.pitch-modal-close svg { width: 17px; height: 17px; }
.pitch-modal-close path { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }

.pitch-modal-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 31%);
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  transform: translateY(14px) scale(.985);
  transition: transform 340ms cubic-bezier(.19,1,.22,1);
}
.pitch-modal.is-open .pitch-modal-shell { transform: translateY(0) scale(1); }

.pitch-video-column { display: grid; justify-items: center; min-width: 0; }
.pitch-video-frame {
  position: relative;
  width: min(100%, 46vh);
  max-height: 82svh;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(143, 224, 255, .46);
  border-radius: clamp(18px, 2.4vw, 28px);
  padding: 5px;
  background: linear-gradient(145deg, rgba(81, 222, 255, .34), rgba(20, 27, 43, .12) 43%, rgba(133, 87, 239, .34));
  box-shadow: 0 28px 90px rgba(0,0,0,.6), 0 0 46px rgba(67, 190, 239, .14), 0 0 86px rgba(112, 74, 218, .12);
  overflow: hidden;
}

.pitch-video-frame::after {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: 2;
  border: 1px solid rgba(230, 250, 255, .08);
  border-radius: calc(clamp(18px, 2.4vw, 28px) - 5px);
  pointer-events: none;
}

.pitch-video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: calc(clamp(18px, 2.4vw, 28px) - 6px);
  background: #01040b;
  object-fit: contain;
}

.pitch-modal-copy { align-self: center; }
.pitch-modal-kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: #8fefff; font-size: 10px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.pitch-modal-kicker::before { content: ""; width: 28px; height: 1px; background: linear-gradient(90deg, #6fefff, #9c78ff); box-shadow: 0 0 12px rgba(111,239,255,.65); }
.pitch-modal-copy h2 { max-width: 11ch; margin: 0; color: #f7fcff; font-size: clamp(2rem, 4.2vw, 4.5rem); line-height: .92; letter-spacing: -.055em; font-weight: 900; text-wrap: balance; }
.pitch-modal-copy h2 span { display: block; color: #8cecf7; }
.pitch-modal-copy p { max-width: 29ch; margin: 20px 0 0; color: rgba(213, 230, 239, .73); font-size: clamp(.84rem, 1.2vw, 1rem); line-height: 1.65; }
.pitch-modal-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pitch-modal-meta span { padding: 7px 10px; border: 1px solid rgba(142, 211, 239, .18); border-radius: 999px; color: rgba(219, 242, 250, .72); background: rgba(9, 17, 29, .72); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 720px) {
  .pitch-launch-button {
    right: auto;
    width: 46px;
    min-width: 46px;
    padding: 0;
    gap: 0;
  }
  .pitch-launch-copy { display: none; }
  .pitch-launch-icon { width: 29px; height: 29px; }
  .pitch-modal { align-items: start; padding: max(58px, calc(env(safe-area-inset-top) + 50px)) 12px max(14px, env(safe-area-inset-bottom)); }
  .pitch-modal-close { width: 40px; height: 40px; }
  .pitch-modal-shell { width: 100%; grid-template-columns: 1fr; gap: 15px; }
  .pitch-video-frame { width: min(100%, 42.5vh); max-height: 68svh; border-radius: 20px; }
  .pitch-video-frame::after { border-radius: 15px; }
  .pitch-video { border-radius: 14px; }
  .pitch-modal-copy { order: -1; text-align: center; }
  .pitch-modal-kicker { justify-content: center; margin-bottom: 8px; font-size: 8px; }
  .pitch-modal-copy h2 { max-width: none; font-size: clamp(1.45rem, 7vw, 2rem); line-height: 1; }
  .pitch-modal-copy h2 span { display: inline; }
  .pitch-modal-copy p, .pitch-modal-meta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .pitch-launch-button, .pitch-modal, .pitch-modal-shell { transition-duration: 1ms !important; }
}
