/* ============================================================
   premium.css · Cue Killer landing page visual system.
   Loaded ONLY by index.html, after styles.css and cinema.css.
   Every class here is pk- prefixed. Shared classes from other
   pages are only ever touched through pk- scoped descendants.
   ============================================================ */

:root {
  /* pk timing tokens: the only timing language on the page */
  --pk-ease-out: cubic-bezier(.22,.61,.2,1);
  --pk-ease-spring: cubic-bezier(.34,1.3,.4,1);
  --pk-dur-micro: 150ms;
  --pk-dur-ui: 320ms;
  --pk-dur-scene: 600ms;
  --pk-maxw-wide: 1320px;
}

/* section rhythm + deep link clearance under the sticky nav */
.pk-cue { scroll-margin-top: 90px; }
main .pk-cue { padding-top: 72px; padding-bottom: 72px; }
@media (min-width: 900px) { main .pk-cue { padding-top: 144px; padding-bottom: 144px; } }
/* perf: below fold sections skip rendering until near the viewport.
   contain-intrinsic-size values are MEASURED (390px and 1440px wide)
   so anchor jumps land true, and premium.js re-lands any hash target
   after first render as a safety net. Excluded on purpose: the hero,
   the GSAP pinned sections (#features, #see) and #audience (its
   inline demo script and deep link stay exactly as verified), and
   every section ABOVE the last pin (#killian, #hands-free,
   #multicam, #ai):
   their estimate error at in-between widths would shift the pins'
   measured start/end after ScrollTrigger cached them. Only #review
   onward may drift, where nothing can move a pin. */
#review, #for, #why, #help, #pricing, #beta {
  content-visibility: auto;
}
#review     { contain-intrinsic-size: auto 566px; }
#for        { contain-intrinsic-size: auto 256px; }
#why        { contain-intrinsic-size: auto 940px; }
#help       { contain-intrinsic-size: auto 632px; }
#pricing    { contain-intrinsic-size: auto 999px; }
#beta       { contain-intrinsic-size: auto 1168px; }
@media (min-width: 900px) {
  #review     { contain-intrinsic-size: auto 1068px; }
  #for        { contain-intrinsic-size: auto 401px; }
  #why        { contain-intrinsic-size: auto 1688px; }
  #help       { contain-intrinsic-size: auto 800px; }
  #pricing    { contain-intrinsic-size: auto 1082px; }
  #beta       { contain-intrinsic-size: auto 1057px; }
}

/* the nav and footer brand icons ship as a 96px derivative inside a
   <picture>; flex keeps the wrapper shrink wrapped to the 30/24px img */
.pk-brand-ico { display: flex; }

/* the rail must never sit on top of footer links */
.pk-body { padding-bottom: 84px; }

/* styles.css gives .foot-links no wrap, so Terms and Contact fall off
   a 390px screen; index only (pk-body scoped), shared pages untouched */
.pk-body .foot-links { flex-wrap: wrap; }

/* ------------------------------------------------------------
   Reveal system (one shot on intersection). premium.js stamps
   .pk-reveal on targets; .pk-in flips them on. pk-static forces
   everything visible so a blocked CDN or reduced motion never
   hides content.
   ------------------------------------------------------------ */
html.pk-js:not(.pk-static) .pk-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--pk-dur-scene) var(--pk-ease-out),
              transform var(--pk-dur-scene) var(--pk-ease-out);
}
html.pk-js:not(.pk-static) .pk-reveal.pk-in { opacity: 1; transform: none; }
html.pk-static .pk-reveal { opacity: 1 !important; transform: none !important; }

/* ------------------------------------------------------------
   Scroll progress filament
   ------------------------------------------------------------ */
.pk-filament {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 80;
  background: var(--amber);
  transform-origin: left;
  transform: scaleX(0);
  pointer-events: none;
}
html.pk-static .pk-filament { display: none; }

/* ------------------------------------------------------------
   Transport rail: the show control HUD
   ------------------------------------------------------------ */
.pk-rail {
  position: fixed; z-index: 9; /* under the sticky nav (z 10) so the open menu wins */
  left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 14px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(10,10,11,.94);
  border-top: 1px solid rgba(255,178,62,.35);
  font-family: var(--font-display);
  opacity: 0; transform: translateY(8px);
  visibility: hidden; /* keeps the hidden rail's GO / GET / Try free out of the tab order */
  pointer-events: none;
  transition: opacity 500ms var(--pk-ease-out), transform 500ms var(--pk-ease-out),
              visibility 0s linear 500ms;
}
@supports (backdrop-filter: blur(16px)) {
  .pk-rail { background: rgba(10,10,11,.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
}
.pk-rail.pk-on { opacity: 1; transform: none; pointer-events: auto; visibility: visible; transition-delay: 0s; }
.pk-rail.pk-navopen { opacity: 0; pointer-events: none; visibility: hidden; }
html.pk-static .pk-rail { opacity: 1; transform: none; pointer-events: auto; visibility: visible; transition: none; }
html.pk-static .pk-rail.pk-navopen { opacity: 0; pointer-events: none; visibility: hidden; }

@media (min-width: 700px) {
  .pk-rail {
    left: 50%; right: auto; bottom: 18px; transform: translateX(-50%) translateY(8px);
    width: min(680px, calc(100vw - 32px));
    border-radius: 16px;
    border: 1px solid rgba(255,178,62,.2);
    border-top-color: rgba(255,178,62,.35);
    padding: 10px 16px;
    box-shadow: 0 18px 50px rgba(0,0,0,.5);
  }
  .pk-rail.pk-on { transform: translateX(-50%); }
  html.pk-static .pk-rail { transform: translateX(-50%); }
}

/* 1 · standby lamp */
.pk-rail-lamp { display: flex; align-items: center; gap: 7px; flex: none; }
.pk-lamp-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px rgba(255,59,71,.7);
  transition: background var(--pk-dur-micro) var(--pk-ease-out),
              box-shadow var(--pk-dur-micro) var(--pk-ease-out),
              transform var(--pk-dur-micro) var(--pk-ease-spring);
}
.pk-rail-lamp.pk-blip .pk-lamp-dot {
  background: var(--green);
  box-shadow: 0 0 10px rgba(43,214,106,.8);
  transform: scale(1.15);
}
.pk-lamp-label { font-size: 10px; font-weight: 700; letter-spacing: .18em; color: var(--muted); }

/* 2 · cue readout */
.pk-rail-cue { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1 1 auto; }
.pk-rail-num {
  font-weight: 700; font-size: 15px; letter-spacing: .04em; color: var(--text);
  font-variant-numeric: tabular-nums; font-feature-settings: "tnum";
  white-space: nowrap;
}
.pk-rail-onair {
  font-size: 12px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* 3 · quiet try-free chip, desktop only */
.pk-rail-try {
  display: none; flex: none;
  color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: .02em;
}
.pk-rail-try:hover { color: var(--amber); text-decoration: none; }
@media (min-width: 700px) { .pk-rail-try { display: inline-block; } }
.pk-rail.pk-get .pk-rail-try { display: none; }

/* 4 · GO / GET */
.pk-rail-action { position: relative; flex: none; width: 52px; height: 52px; }
.pk-rail-go, .pk-rail-get {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 3px;
  width: 52px; height: 52px; min-width: 44px; min-height: 44px;
  border-radius: 50%; border: 0; cursor: pointer;
  background: var(--green); color: #052;
  font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: .03em;
  box-shadow: 0 0 0 3px rgba(43,214,106,.18), 0 6px 18px rgba(0,0,0,.4);
  transition: transform var(--pk-dur-ui) var(--pk-ease-spring),
              opacity var(--pk-dur-ui) var(--pk-ease-out),
              background var(--pk-dur-micro) var(--pk-ease-out),
              visibility 0s linear;
}
.pk-rail-go.pk-press { transform: scale(.92); transition-duration: var(--pk-dur-micro); }
.pk-rail-go.pk-flash, .pk-rail-get.pk-flash { background: #5fe793; }
/* the hidden half of the GO / GET morph also leaves the tab order:
   visibility flips after the crossfade on the way out (delay on the
   4th transition slot) and instantly on the way in, so the swap
   still reads as a crossfade while only one control is focusable */
.pk-rail-get {
  text-decoration: none; opacity: 0; pointer-events: none; font-size: 13.5px;
  visibility: hidden; transition-delay: 0s, 0s, 0s, var(--pk-dur-ui);
}
.pk-rail-get:hover { text-decoration: none; }
.pk-rail-get svg { width: 13px; height: 13px; flex: none; }
.pk-rail.pk-get .pk-rail-go {
  opacity: 0; pointer-events: none;
  visibility: hidden; transition-delay: 0s, 0s, 0s, var(--pk-dur-ui);
}
.pk-rail.pk-get .pk-rail-get {
  opacity: 1; pointer-events: auto;
  visibility: visible; transition-delay: 0s;
}
.pk-rail-go:focus-visible, .pk-rail-get:focus-visible {
  outline: 2px solid var(--amber); outline-offset: 3px;
}

/* tiny screens: lamp + CUE n + GO only */
@media (max-width: 379px) {
  .pk-lamp-label, .pk-rail-onair, .pk-rail-try { display: none; }
}

/* ------------------------------------------------------------
   The 3D device (.pk-device) · pure CSS, instanced per section.
   One camera per composition via .pk-persp. Driven only by the
   unitless custom props --rx --ry --rz --tz --sc (plus pointer
   tilt --tx --ty) so JS scrubs stay dirt cheap.
   ------------------------------------------------------------ */
.pk-persp { perspective: 1400px; perspective-origin: 50% 40%; }
.pk-device {
  position: relative;
  transform-style: preserve-3d;
  --rx: 0; --ry: 0; --rz: 0; --tz: 0; --sc: 1; --tx: 0; --ty: 0;
  transform:
    rotateX(calc((var(--rx) + var(--tx)) * 1deg))
    rotateY(calc((var(--ry) + var(--ty)) * 1deg))
    rotateZ(calc(var(--rz) * 1deg))
    translateZ(calc(var(--tz) * 1px))
    scale(var(--sc));
}
/* back slab: real thickness when rotated */
.pk-device::before {
  content: ""; position: absolute; inset: 0; border-radius: 24px;
  background: #101013;
  transform: translateZ(-8px);
}
.pk-device-body {
  position: relative; border-radius: 24px; padding: 12px;
  overflow: hidden; /* clips the oversized glare sheet below */
  background: linear-gradient(165deg, #2c2c33 0%, #1a1a1f 45%, #131317 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 1px 0 0 rgba(255,255,255,.07),
    inset 0 -1px 0 rgba(255,255,255,.04),
    inset 0 0 0 1px rgba(0,0,0,.9);
}
.pk-device-cam {
  position: absolute; top: 4.5px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: #0a0a10; box-shadow: inset 0 0 1.5px rgba(120,140,255,.8);
}
.pk-device-screen {
  position: relative; border-radius: 13px; overflow: hidden;
  background: #000;
  box-shadow: 0 0 0 1px #000;
  display: flex; flex-direction: column;
}
/* glare: bound to the device yaw so the highlight physically sweeps.
   An oversized fixed-gradient sheet moved with transform (and clipped
   by the body's overflow) so every scrubbed frame is compositor only:
   no background-position repaint of a 55vw gradient during the pins */
.pk-device-body::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 260%;
  pointer-events: none;
  background: linear-gradient(115deg,
    transparent 32%, rgba(255,255,255,.05) 45%, rgba(255,255,255,.09) 50%,
    rgba(255,255,255,.05) 55%, transparent 68%);
  transform: translateX(calc((var(--ry) + var(--ty)) * 1.85%));
}
/* contact shadow: a separate pre blurred sibling, never box-shadow on the mover */
.pk-device-shadow {
  position: absolute; left: 50%; bottom: -4%; z-index: -1;
  width: 72%; height: 46px;
  transform: translateX(-50%) scale(var(--pk-shsc, 1));
  opacity: var(--pk-shop, .7);
  background: radial-gradient(50% 50% at 50% 50%, rgba(0,0,0,.6), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

/* ------------------------------------------------------------
   Hero (CUE 01 · Curtain up)
   ------------------------------------------------------------ */
.pk-hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 72px 0 40px;
  text-align: center;
}
.pk-hero-wrap { width: 100%; max-width: var(--pk-maxw-wide); margin: 0 auto; padding: 0 24px; }
.pk-hero-head { position: relative; z-index: 1; }
.pk-hero-h1 {
  font-size: clamp(44px, 8.5vw, 104px);
  font-weight: 800; line-height: .98; letter-spacing: -.02em;
  margin: 10px auto 0;
}
.pk-hl-line { display: block; }
/* styles.css only colors .amber inside .hero h1; the rebuilt hero
   lives outside .hero, so the accent is re-applied pk-scoped here */
.pk-hero-h1 .amber { color: var(--amber); }
.pk-hero-sub {
  color: var(--muted); font-size: clamp(16px, 2vw, 19px);
  max-width: 70ch; margin: 14px auto 0;
}
@media (max-width: 899px) { .pk-hero-sub { max-width: 46ch; } }
.pk-hero-stage {
  position: relative; z-index: 2;
  max-width: 620px;
  margin: clamp(-16px, -1.5vw, -6px) auto clamp(-64px, -5vw, -20px);
}
@media (max-width: 899px) {
  .pk-hero-stage { margin-bottom: clamp(-48px, -6vw, -16px); }
}
/* amber pool behind the one lit object */
.pk-hero-stage::before {
  content: ""; position: absolute; inset: -12% -18%; z-index: -1; pointer-events: none;
  background: radial-gradient(52% 46% at 50% 46%, rgba(255,178,62,.11), transparent 70%);
}
.pk-device-lift { position: relative; }
.pk-hero-caption {
  position: relative; z-index: 3;
  color: var(--muted); font-size: 14px; letter-spacing: .04em;
  margin: 20px auto 0; min-height: 1.5em;
  font-family: var(--font-display); font-weight: 600;
}
/* the hand-drawn scribble arrow from the caption up to the device GO */
.pk-scribble {
  position: absolute; right: calc(50% + 58px); bottom: 2px;
  width: 170px; height: 80px; color: var(--amber); opacity: .85;
  pointer-events: none;
}
.pk-scribble-line { stroke-dasharray: 230; stroke-dashoffset: 0; animation: pk-scribdraw 0.9s ease-out 1.1s both; }
.pk-scribble-head { animation: pk-scribhead 0.2s ease-out 1.9s both; }
@keyframes pk-scribdraw { from { stroke-dashoffset: 230; } to { stroke-dashoffset: 0; } }
@keyframes pk-scribhead { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 899px) {
  .pk-scribble { width: 96px; height: 52px; right: calc(50% + 62px); bottom: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  .pk-scribble-line, .pk-scribble-head { animation: none !important; }
}
.pk-hero-cta { justify-content: center; margin-top: 22px; }
.pk-hero-note { margin-top: 18px; }
.pk-hero-proof { margin: 14px auto 0; font-size: 13px; }
.pk-hero-proof a { color: var(--muted); }
.pk-hero-proof a:hover { color: var(--amber); text-decoration: none; }

/* killian-peek: he peeks over the device's top edge, behind the glass.
   The render is an opaque booth-black square, so the edges are masked
   away and the device body hides the plank in the art. */
.pk-hero-peek {
  position: absolute; top: 0; left: 74%; z-index: -1;
  width: clamp(170px, 30%, 250px);
  transform: translate(-50%, 0%) rotate(-6deg);
  pointer-events: none;
}
.pk-hero-peek img {
  width: 100%; height: auto; display: block;
  -webkit-mask-image: linear-gradient(90deg, transparent 2%, #000 16%, #000 84%, transparent 98%), linear-gradient(180deg, transparent 4%, #000 26%, #000 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent 2%, #000 16%, #000 84%, transparent 98%), linear-gradient(180deg, transparent 4%, #000 26%, #000 100%);
  mask-composite: intersect;
}
@media (max-width: 899px) { .pk-hero-peek { display: none; } }

/* hero device geometry: crane shot at rest (mobile keeps this angle for free) */
.pk-device-hero { --rx: 52; --rz: -9; width: 100%; }
.pk-device-hero .pk-device-screen { aspect-ratio: 4 / 3; }

/* the transplanted stage cycler, re-housed. Scene internals stay
   cinema.css property; only the container is restyled here. */
.pk-device-screen .pk-stage { display: flex; flex-direction: column; height: 100%; }
.pk-device-screen .pk-stage-view { position: relative; flex: 1 1 auto; min-height: 0; }
.pk-device-screen .stage-screen {
  position: absolute; inset: 0;
  aspect-ratio: auto; border-radius: 0; border: 0; box-shadow: none;
}
.pk-device-screen .stage-bar {
  flex: none; margin-top: 0; padding: 9px 14px;
  background: rgba(12,12,16,.92);
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: nowrap;
}
.pk-devgo {
  position: relative;
  border: 0; cursor: pointer; font-family: var(--font-display);
  min-width: 44px; min-height: 32px;
  transition: transform var(--pk-dur-ui) var(--pk-ease-spring),
              background var(--pk-dur-micro) var(--pk-ease-out);
}
/* the chip stays 32px tall visually; the invisible pseudo extends the
   tap target to 46px (pseudo-elements participate in hit testing) */
.pk-devgo::after { content: ""; position: absolute; inset: -7px; }
.pk-devgo:active { transform: translateY(4px); transition-duration: var(--pk-dur-micro); }
.pk-devgo.pk-flash { background: #5fe793; }
.pk-devgo:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
@media (max-width: 560px) {
  .pk-device-screen .stage-bar .next { display: none; }
}

/* load intro: runs once when premium.js stamps .pk-loaded on <html>.
   Everything starts visible if JS never arrives. */
html.pk-js:not(.pk-static) .pk-hero-eyebrow,
html.pk-js:not(.pk-static) .pk-hl-line,
html.pk-js:not(.pk-static) .pk-hero-sub,
html.pk-js:not(.pk-static) .pk-hero-below { opacity: 0; transform: translateY(24px); }
html.pk-js:not(.pk-static) .pk-device-lift { opacity: 0; transform: translateY(60px); }
html.pk-loaded:not(.pk-static) .pk-hero-eyebrow,
html.pk-loaded:not(.pk-static) .pk-hl-line,
html.pk-loaded:not(.pk-static) .pk-hero-sub,
html.pk-loaded:not(.pk-static) .pk-hero-below {
  animation: pk-rise 480ms var(--pk-ease-out) both;
}
html.pk-loaded:not(.pk-static) .pk-hl-line:nth-child(2) { animation-delay: 60ms; }
html.pk-loaded:not(.pk-static) .pk-hero-sub { animation-delay: 120ms; }
html.pk-loaded:not(.pk-static) .pk-hero-below { animation-delay: 240ms; }
html.pk-loaded:not(.pk-static) .pk-device-lift {
  animation: pk-lift 700ms var(--pk-ease-spring) 120ms both;
}
html.pk-loaded:not(.pk-static) .pk-device-hero .pk-device-body::after {
  animation: pk-glare 900ms var(--pk-ease-out) 300ms;
}
html.pk-static .pk-hero-eyebrow, html.pk-static .pk-hl-line, html.pk-static .pk-hero-sub,
html.pk-static .pk-hero-below, html.pk-static .pk-device-lift, html.pk-static .pk-hero-head {
  opacity: 1 !important; transform: none !important; animation: none !important;
}
@keyframes pk-rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes pk-lift { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: none; } }
@keyframes pk-glare { from { transform: translateX(-68%); } to { transform: translateX(68%); } }

/* static / mobile hero: gentler resting angle so nothing clips */
html.pk-static .pk-device-hero { --rx: 32; --rz: -5; }
@media (max-width: 899px) {
  .pk-hero { padding-top: 84px; }
  .pk-device-hero { --rx: 32; --rz: -5; }
}

/* ------------------------------------------------------------
   Standby band (CUE 01.5): "dead" runs red on standby, then the
   whole line snaps amber when the band crosses center. A cue
   firing, literally.
   ------------------------------------------------------------ */
.pk-standby { padding: 0; min-height: 20vh; display: flex; align-items: center; }
.pk-standby .wrap { width: 100%; }
.pk-standby-line {
  font-size: clamp(28px, 5vw, 56px) !important;
  font-weight: 800; letter-spacing: -.02em; line-height: 1.15;
}
.pk-standby-dead { color: var(--red); }
html.pk-js:not(.pk-static) .pk-standby-dead { animation: pk-standby 2s ease-in-out infinite; }
.pk-standby.pk-fired .pk-standby-dead { color: var(--amber); animation: none; }
html.pk-js:not(.pk-static) .pk-standby.pk-fired .pk-standby-line {
  color: var(--amber);
  animation: pk-cue-click var(--pk-dur-ui) var(--pk-ease-out);
}
.pk-standby.pk-fired .pk-standby-line { color: var(--amber); }
html.pk-static .pk-standby-dead { color: var(--amber); animation: none; }
html.pk-static .pk-standby-line { color: var(--amber); }
@keyframes pk-standby { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes pk-cue-click {
  0% { transform: scale(1); opacity: .7; }
  45% { transform: scale(1.02); opacity: 1; }
  100% { transform: scale(1); }
}

/* ------------------------------------------------------------
   Stage 2 · shared type + layout roles
   ------------------------------------------------------------ */
.pk-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700; letter-spacing: -.02em; line-height: 1.04;
}
.pk-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.pk-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.pk-caption { color: var(--muted); font-size: clamp(17px, 1.6vw, 19px); max-width: 46ch; margin: 14px auto 0; }
.pk-cta-row { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.pk-link-row { margin-top: 18px; text-align: center; font-size: 14px; }
.pk-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 22px; }
.pk-pill {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; font-size: 14px; color: var(--muted);
}
.pk-tick { display: inline-block; flex: none; width: 8px; height: 8px; border-radius: 2px; margin-right: 10px; background: var(--amber); }
.pk-t-amber { background: var(--amber); }
.pk-t-teal { background: var(--teal); }
.pk-t-blue { background: var(--blue); }
.pk-t-green { background: var(--green); }
.pk-bignum {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 6vw, 72px); letter-spacing: -.02em; line-height: 1;
  font-feature-settings: "tnum"; font-variant-numeric: tabular-nums;
}
.pk-num-gray { color: #b9b9c2; }
.pk-num-amber { color: var(--amber); }

/* ------------------------------------------------------------
   #killian (CUE 02 · Meet the operator)
   ------------------------------------------------------------ */
.pk-killian-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
@media (max-width: 899px) { .pk-killian-wrap { grid-template-columns: 1fr; gap: 34px; } }
.pk-killian-art { position: relative; display: flex; justify-content: center; }
.pk-killian-art::before {
  content: ""; position: absolute; width: 82%; aspect-ratio: 1; border-radius: 50%;
  align-self: center;
  background: radial-gradient(circle, rgba(255,178,62,.34) 0%, rgba(255,178,62,.09) 45%, transparent 70%);
  filter: blur(8px);
}
.pk-killian-art picture { position: relative; display: block; width: 100%; max-width: 560px; }
.pk-killian-art img { width: 100%; height: auto; filter: drop-shadow(0 16px 38px rgba(0,0,0,.6)); }
.pk-killian-art.pk-live img { animation: pk-bob 6s ease-in-out infinite; }
@keyframes pk-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
/* the broadcast lower third: the app's name bar cue, fired on the mascot */
.pk-lower3 {
  position: absolute; left: 6%; bottom: 7%; z-index: 1; text-align: left;
  background: rgba(10,10,14,.78); border-left: 3px solid var(--amber);
  padding: 12px 18px; border-radius: 12px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.pk-lower3-t { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2.4vw, 26px); letter-spacing: .02em; line-height: 1; }
.pk-lower3-s { color: var(--amber); font-weight: 700; font-size: 11px; letter-spacing: .14em; margin-top: 4px; }
.pk-killian-copy .pk-copyline { color: #d4d4d6; font-size: 18px; line-height: 1.55; margin-top: 16px; max-width: 56ch; }
.pk-sig { margin-top: 20px; color: var(--amber); font-weight: 800; font-size: 19px; font-family: var(--font-display); }
/* choreography: art clips in from below, lower third fires, copy staggers */
.pk-killian .pk-killian-art picture { transition: clip-path var(--pk-dur-scene) var(--pk-ease-out); }
.pk-killian .pk-lower3 {
  transition: opacity var(--pk-dur-ui) var(--pk-ease-out) 800ms,
              transform var(--pk-dur-ui) var(--pk-ease-spring) 800ms;
}
.pk-killian .pk-killian-copy > * {
  transition: opacity var(--pk-dur-ui) var(--pk-ease-out),
              transform var(--pk-dur-ui) var(--pk-ease-out);
}
.pk-killian .pk-killian-copy > *:nth-child(2) { transition-delay: 80ms; }
.pk-killian .pk-killian-copy > *:nth-child(3) { transition-delay: 160ms; }
.pk-killian .pk-killian-copy > *:nth-child(4) { transition-delay: 240ms; }
.pk-killian .pk-killian-copy > *:nth-child(5) { transition-delay: 320ms; }
html.pk-js:not(.pk-static) .pk-killian.pk-armed:not(.pk-play) .pk-killian-art picture { clip-path: inset(100% 0 0 0); }
html.pk-js:not(.pk-static) .pk-killian.pk-armed:not(.pk-play) .pk-lower3 { opacity: 0; transform: translateY(14px); }
html.pk-js:not(.pk-static) .pk-killian.pk-armed:not(.pk-play) .pk-killian-copy > * { opacity: 0; transform: translateY(14px); }

/* ------------------------------------------------------------
   #features (CUE 03 · The cue stack) THE CENTERPIECE
   Default layout = mobile / static vertical list. Desktop with
   GSAP live gets .pk-feat-gsap stamped and pins the device.
   ------------------------------------------------------------ */
.pk-features .pk-head { margin-bottom: 40px; }
.pk-feat-cameo { display: none; }
/* mobile / static: the device appears once at the top of the section
   at a fixed cinematic angle, then the steps run as a vertical list */
.pk-features:not(.pk-feat-gsap) .pk-feat-wrap { display: flex; flex-direction: column; }
.pk-features:not(.pk-feat-gsap) .pk-feat-stage {
  order: -1; width: min(86vw, 420px); margin: 0 auto 56px;
}
.pk-features:not(.pk-feat-gsap) .pk-device-feat {
  --rx: 32; --ry: 0; --rz: -5; max-width: none;
}
.pk-features:not(.pk-feat-gsap) .pk-feat-screen .pk-scene.on { opacity: 1; transform: none; }
.pk-feat-steps {
  display: flex; flex-direction: column; gap: 64px;
  max-width: 640px; margin: 0 auto; padding: 0 24px;
}
.pk-step-num {
  position: relative; display: inline-block;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(64px, 15vw, 120px); line-height: .92; letter-spacing: -.02em;
  font-feature-settings: "tnum"; font-variant-numeric: tabular-nums;
}
.pk-num-ghost { color: rgba(255,178,62,.08); -webkit-text-stroke: 1px rgba(255,178,62,.3); }
.pk-num-fill {
  position: absolute; inset: 0; color: var(--amber);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 500ms var(--pk-ease-out) 120ms;
}
.pk-step.pk-in .pk-num-fill, html.pk-static .pk-num-fill { clip-path: inset(0); }
.pk-step-name { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3vw, 40px); letter-spacing: -.02em; margin-top: 8px; }
.pk-step-cap { display: flex; align-items: center; color: var(--muted); font-size: 17px; margin-top: 8px; }
.pk-step-mini {
  position: relative; margin-top: 18px; aspect-ratio: 16 / 10;
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  background: radial-gradient(120% 85% at 50% 0%, #16151f 0%, #0b0b10 62%);
}
.pk-step-mini .pk-scene { opacity: 1; transform: none; }

/* the scenes, shared by the minis and the pinned device screen */
.pk-scene {
  position: absolute; inset: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pk-sc-tex img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.pk-slidecard { text-align: center; padding: 8%; }
.pk-slidecard b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2.2vw, 30px); letter-spacing: -.02em; }
.pk-slidecard span { display: block; color: var(--muted); font-size: 13px; margin-top: 6px; }
.pk-wave5 { display: flex; gap: 8px; align-items: center; height: 44%; }
.pk-wave5 i { width: 10px; border-radius: 99px; background: var(--teal); }
.pk-wave5 i:nth-child(1) { height: 34%; }
.pk-wave5 i:nth-child(2) { height: 66%; }
.pk-wave5 i:nth-child(3) { height: 92%; }
.pk-wave5 i:nth-child(4) { height: 52%; }
.pk-wave5 i:nth-child(5) { height: 28%; }
.pk-scene-tag { position: absolute; bottom: 9%; left: 0; right: 0; text-align: center; font-size: 10px; font-weight: 700; letter-spacing: .16em; color: var(--muted); }
.pk-tag-teal { color: var(--teal); }
.pk-tag-blue { color: var(--blue); }
.pk-tag-amber { color: var(--amber); }

/* step 03 · Video: a clip rolling in a letterboxed frame */
.pk-vidframe {
  position: absolute; inset: 12% 10% 24%; border-radius: 10px; overflow: hidden;
  background: linear-gradient(180deg, #101322, #070910);
  border: 1px solid rgba(255,255,255,.12);
}
.pk-vidframe::before, .pk-vidframe::after {
  content: ""; position: absolute; left: 0; right: 0; height: 9%; background: #000;
}
.pk-vidframe::before { top: 0; }
.pk-vidframe::after { bottom: 0; }
.pk-vid-still {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,9,16,.25), rgba(7,9,16,.25)),
    url("images/mc-aud-1000.webp") center / cover no-repeat,
    radial-gradient(70% 60% at 50% 45%, rgba(62,155,255,.28), transparent 70%);
}
.pk-vid-bar {
  position: absolute; left: 5%; right: 5%; bottom: 14%; height: 4px;
  border-radius: 99px; background: rgba(255,255,255,.16); overflow: hidden;
}
.pk-vid-bar i {
  display: block; height: 100%; width: 100%; border-radius: 99px;
  background: var(--blue); transform-origin: left; transform: scaleX(.38);
  animation: pk-vidscrub 7s linear infinite;
}
@keyframes pk-vidscrub { from { transform: scaleX(.05); } to { transform: scaleX(1); } }

/* step 07 · AI music: a prompt becomes a score, on the cue */
.pk-sc-ai { flex-direction: column; gap: 14px; }
.pk-ai-prompt {
  font-size: clamp(12px, 1.4vw, 15px); color: var(--text);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  padding: 8px 16px; border-radius: 99px; white-space: nowrap;
}
.pk-eq { display: flex; align-items: center; gap: 7px; height: 30%; }
.pk-eq i {
  width: 9px; height: 100%; border-radius: 99px;
  background: linear-gradient(180deg, var(--amber), rgba(255,178,62,.45));
  transform-origin: 50% 100%;
  animation: pk-eqbounce 1.1s ease-in-out infinite alternate;
}
.pk-eq i:nth-child(1) { animation-delay: 0s;    transform: scaleY(.42); }
.pk-eq i:nth-child(2) { animation-delay: .12s;  transform: scaleY(.78); }
.pk-eq i:nth-child(3) { animation-delay: .24s;  transform: scaleY(.55); }
.pk-eq i:nth-child(4) { animation-delay: .06s;  transform: scaleY(1); }
.pk-eq i:nth-child(5) { animation-delay: .3s;   transform: scaleY(.6); }
.pk-eq i:nth-child(6) { animation-delay: .18s;  transform: scaleY(.85); }
.pk-eq i:nth-child(7) { animation-delay: .36s;  transform: scaleY(.38); }
@keyframes pk-eqbounce { from { transform: scaleY(.25); } to { transform: scaleY(1); } }

/* step 06 · Timers: a delayed GO counting down */
.pk-sc-timer { flex-direction: column; gap: 12px; }
.pk-timerbig {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(44px, 5.4vw, 84px); line-height: 1;
  font-variant-numeric: tabular-nums; color: var(--text);
}
.pk-timerbig i { font-style: normal; color: var(--amber); animation: pk-colonblink 1s steps(1) infinite; }
@keyframes pk-colonblink { 50% { opacity: .25; } }
.pk-timer-bar { width: 56%; height: 6px; border-radius: 99px; background: rgba(255,255,255,.12); overflow: hidden; }
.pk-timer-bar i {
  display: block; height: 100%; width: 100%; border-radius: 99px;
  background: var(--amber); transform-origin: left;
  animation: pk-timerdrain 12s linear infinite;
}
@keyframes pk-timerdrain { from { transform: scaleX(1); } to { transform: scaleX(0); } }
/* the camera scene IS a camera feed: the wide stage render, live */
.pk-cam-frame {
  position: absolute; inset: 8%; border-radius: 10px; overflow: hidden;
  border: 2px solid rgba(255,255,255,.22);
  background:
    url("images/mc-wide-1000.webp") center / cover no-repeat,
    linear-gradient(200deg, rgba(62,155,255,.12), transparent 55%), #0b0d12;
}
.pk-cam-corners { display: none; }
.pk-tally {
  position: absolute; top: 16%; left: 16%; z-index: 1;
  display: flex; align-items: center; gap: 7px;
  background: rgba(10,10,14,.8); color: var(--red);
  font-weight: 800; font-size: 12px; letter-spacing: .14em;
  padding: 5px 10px; border-radius: 7px;
}
.pk-tally-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 8px rgba(255,59,71,.8); }
.pk-sc-lower { align-items: flex-end; justify-content: flex-start; padding: 8%; }
.pk-l3 { background: rgba(10,10,14,.78); border-left: 3px solid var(--amber); padding: 10px 16px; border-radius: 10px; text-align: left; }
.pk-l3 b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(15px, 1.8vw, 22px); line-height: 1.05; }
.pk-l3 span { color: var(--amber); font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.pk-race { width: 76%; text-align: left; }
.pk-race-row { margin: 10px 0; }
.pk-race-row span { font-size: 12px; font-weight: 700; }
.pk-race-bar { height: 12px; border-radius: 99px; background: rgba(255,255,255,.1); overflow: hidden; margin-top: 5px; }
.pk-race-bar i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, rgba(255,178,62,.55), var(--amber)); }
.pk-race-a { width: 62%; }
.pk-race-b { width: 38%; }
.pk-chainrow { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; padding: 8%; }
.pk-ch {
  border: 1px solid var(--line); background: var(--bg-3); color: var(--muted);
  font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 999px;
}
.pk-ch-go { background: var(--green); color: #052; border-color: transparent; }
html.pk-static .pk-ch { background: rgba(43,214,106,.14); border-color: rgba(43,214,106,.6); color: var(--green); }
html.pk-static .pk-ch-go { background: var(--green); color: #052; }

/* scene ambience, only while its screen is live (IO gated, capped) */
.pk-live .pk-scene .pk-wave5 i,
.pk-feat-screen .pk-scene.on .pk-wave5 i { animation: pk-eq 1.1s ease-in-out infinite alternate; }
.pk-live .pk-scene .pk-wave5 i:nth-child(2), .pk-feat-screen .pk-scene.on .pk-wave5 i:nth-child(2) { animation-delay: .12s; }
.pk-live .pk-scene .pk-wave5 i:nth-child(3), .pk-feat-screen .pk-scene.on .pk-wave5 i:nth-child(3) { animation-delay: .24s; }
.pk-live .pk-scene .pk-wave5 i:nth-child(4), .pk-feat-screen .pk-scene.on .pk-wave5 i:nth-child(4) { animation-delay: .36s; }
.pk-live .pk-scene .pk-wave5 i:nth-child(5), .pk-feat-screen .pk-scene.on .pk-wave5 i:nth-child(5) { animation-delay: .48s; }
@keyframes pk-eq { from { transform: scaleY(.45); } to { transform: scaleY(1.6); } }
.pk-live .pk-scene .pk-tally-dot,
.pk-feat-screen .pk-scene.on .pk-tally-dot { animation: pk-standby 1.6s ease-in-out infinite; }
.pk-live .pk-scene .pk-l3,
.pk-feat-screen .pk-scene.on .pk-l3 { animation: pk-l3in 500ms var(--pk-ease-out) both; }
@keyframes pk-l3in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.pk-live .pk-scene .pk-race-a,
.pk-feat-screen .pk-scene.on .pk-race-a { animation: pk-grow 1.2s var(--pk-ease-out) both; }
.pk-live .pk-scene .pk-race-b,
.pk-feat-screen .pk-scene.on .pk-race-b { animation: pk-grow 1.6s var(--pk-ease-out) both; }
@keyframes pk-grow { from { width: 0; } }
.pk-live .pk-scene .pk-ch,
.pk-feat-screen .pk-scene.on .pk-ch { animation: pk-chlight 400ms var(--pk-ease-out) both; }
.pk-live .pk-scene .pk-ch:nth-child(2), .pk-feat-screen .pk-scene.on .pk-ch:nth-child(2) { animation-delay: .24s; }
.pk-live .pk-scene .pk-ch:nth-child(3), .pk-feat-screen .pk-scene.on .pk-ch:nth-child(3) { animation-delay: .48s; }
.pk-live .pk-scene .pk-ch:nth-child(4), .pk-feat-screen .pk-scene.on .pk-ch:nth-child(4) { animation-delay: .72s; }
.pk-live .pk-scene .pk-ch:nth-child(5), .pk-feat-screen .pk-scene.on .pk-ch:nth-child(5) { animation-delay: .96s; }
@keyframes pk-chlight {
  to { background: rgba(43,214,106,.16); border-color: rgba(43,214,106,.6); color: var(--green); }
}

/* desktop pinned variant */
.pk-feat-gsap .pk-feat-pin {
  height: 100svh; display: flex; align-items: center; overflow: hidden;
}
.pk-feat-gsap .pk-feat-wrap {
  display: grid; grid-template-columns: .42fr .58fr; gap: 40px; align-items: center;
  width: 100%; max-width: var(--pk-maxw-wide); margin: 0 auto; padding: 0 24px;
}
.pk-feat-gsap .pk-feat-steps { display: block; position: relative; height: 440px; max-width: none; margin: 0; padding: 0; }
.pk-feat-gsap .pk-step {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  pointer-events: none;
  transition: opacity 240ms var(--pk-ease-out), transform 240ms var(--pk-ease-out);
}
html.pk-js:not(.pk-static) .pk-feat-gsap .pk-step { opacity: 0; transform: translateY(16px); }
html.pk-js:not(.pk-static) .pk-feat-gsap .pk-step.pk-reveal.pk-in { opacity: 0; transform: translateY(16px); }
html.pk-js:not(.pk-static) .pk-feat-gsap .pk-step.pk-reveal.pk-active { opacity: 1; transform: none; transition-delay: 0ms; }
.pk-feat-gsap .pk-step-num { font-size: clamp(96px, 14vw, 200px); }
.pk-feat-gsap .pk-step .pk-num-fill { clip-path: inset(0 100% 0 0); }
.pk-feat-gsap .pk-step.pk-active .pk-num-fill { clip-path: inset(0); }
.pk-feat-gsap .pk-step-mini { display: none; }
.pk-feat-gsap .pk-feat-stage { display: block; position: relative; }
.pk-feat-gsap .pk-feat-stage::before {
  content: ""; position: absolute; inset: -8% -14%; z-index: -1; pointer-events: none;
  background: radial-gradient(52% 46% at 50% 50%, rgba(255,178,62,.10), transparent 70%);
}
.pk-feat-gsap .pk-feat-cameo {
  display: block; position: absolute; left: 0; bottom: -150px;
  width: 210px; opacity: .4; pointer-events: none;
}
.pk-feat-cameo img {
  width: 100%; height: auto; display: block;
  -webkit-mask-image: radial-gradient(75% 75% at 50% 50%, #000 40%, transparent 70%);
  mask-image: radial-gradient(75% 75% at 50% 50%, #000 40%, transparent 70%);
}
.pk-device-feat { --rx: 6; --ry: -14; width: 100%; max-width: min(55vw, 720px); margin: 0 auto; }
.pk-device-feat .pk-device-screen { aspect-ratio: 4 / 3; }
.pk-feat-screen .pk-scene {
  opacity: 0; transform: scale(.98);
  transition: opacity 240ms var(--pk-ease-out), transform 240ms var(--pk-ease-out);
}
.pk-feat-screen .pk-scene.on { opacity: 1; transform: none; animation: pk-scenein 240ms var(--pk-ease-out); }
@keyframes pk-scenein { from { opacity: 0; transform: translateY(12px); } }

/* ------------------------------------------------------------
   #hands-free (CUE 04 · Fire a cue, your way)
   ------------------------------------------------------------ */
.pk-hf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 880px; margin: 0 auto; }
@media (max-width: 699px) { .pk-hf-grid { grid-template-columns: 1fr; } }
.pk-hf-tile {
  position: relative; overflow: hidden; min-height: 260px;
  display: flex; flex-direction: column;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px; padding: 26px;
}
.pk-hf-art { flex: 1; position: relative; display: grid; place-items: center; }
.pk-hf-cap { position: relative; color: var(--muted); font-size: 15px; font-weight: 600; text-align: center; margin-top: 16px; }
/* tile 1 · the GO button presses itself */
.pk-go3d { position: relative; width: 110px; height: 110px; }
.pk-go3d-btn {
  position: absolute; inset: 0; display: grid; place-items: center; border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 25%, #48e88b, var(--green) 55%, #17b355);
  color: #052; font-family: var(--font-display); font-weight: 800; font-size: 26px;
  box-shadow: 0 9px 0 #0f7a38, 0 16px 30px rgba(0,0,0,.5);
}
.pk-go3d-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(43,214,106,.6); opacity: 0; }
.pk-hf-tile.pk-live .pk-go3d-btn { animation: pk-gopress 4s var(--pk-ease-spring) infinite; }
.pk-hf-tile.pk-live .pk-go3d-ring { animation: pk-goring 4s ease-out infinite; }
@keyframes pk-gopress { 0%, 86%, 96%, 100% { transform: translateY(0); } 89%, 93% { transform: translateY(7px); } }
@keyframes pk-goring { 0%, 86% { transform: scale(.9); opacity: 0; } 90% { opacity: .8; transform: scale(1); } 100% { transform: scale(1.7); opacity: 0; } }
/* tile 2 · voice: killian listens behind a live waveform */
.pk-hf-back { position: absolute; inset: 0; opacity: .18; pointer-events: none; }
.pk-hf-back img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.pk-wave7 { display: flex; gap: 7px; align-items: center; height: 90px; }
.pk-wave7 i { width: 8px; height: 60%; border-radius: 99px; background: var(--teal); transform: scaleY(.3); }
.pk-wave7 i:nth-child(1), .pk-wave7 i:nth-child(7) { transform: scaleY(.22); }
.pk-wave7 i:nth-child(3), .pk-wave7 i:nth-child(5) { transform: scaleY(.5); }
.pk-wave7 i:nth-child(4) { transform: scaleY(.7); }
.pk-hf-tile.pk-live .pk-wave7 i { animation: pk-spike 3.6s ease-in-out infinite; }
.pk-hf-tile.pk-live .pk-wave7 i:nth-child(2) { animation-delay: .06s; }
.pk-hf-tile.pk-live .pk-wave7 i:nth-child(3) { animation-delay: .12s; }
.pk-hf-tile.pk-live .pk-wave7 i:nth-child(4) { animation-delay: .18s; }
.pk-hf-tile.pk-live .pk-wave7 i:nth-child(5) { animation-delay: .24s; }
.pk-hf-tile.pk-live .pk-wave7 i:nth-child(6) { animation-delay: .3s; }
.pk-hf-tile.pk-live .pk-wave7 i:nth-child(7) { animation-delay: .36s; }
@keyframes pk-spike {
  0%, 38%, 100% { transform: scaleY(.3); background: var(--teal); }
  48% { transform: scaleY(1.5); background: var(--teal); }
  58%, 70% { transform: scaleY(.45); background: var(--green); }
  80% { transform: scaleY(.3); background: var(--teal); }
}
/* tile 3 · prop lock-on */
.pk-prop { position: relative; width: 100%; max-width: 230px; aspect-ratio: 1; }
.pk-prop img { width: 100%; height: 100%; object-fit: contain; }
.pk-scanline {
  position: absolute; left: 5%; right: 5%; top: 8%; height: 2px; opacity: 0;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}
.pk-hf-tile.pk-live .pk-scanline { animation: pk-scan 3.5s ease-in-out infinite; }
@keyframes pk-scan {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: .9; }
  55% { transform: translateY(165px); opacity: .9; }
  62%, 100% { transform: translateY(165px); opacity: 0; }
}
.pk-bracket { position: absolute; width: 22px; height: 22px; border: 2.5px solid rgba(255,178,62,.9); opacity: .45; transform: scale(1.15); }
.pk-br-tl { top: 2%; left: 2%; border-right: 0; border-bottom: 0; border-top-left-radius: 4px; }
.pk-br-tr { top: 2%; right: 2%; border-left: 0; border-bottom: 0; border-top-right-radius: 4px; }
.pk-br-bl { bottom: 2%; left: 2%; border-right: 0; border-top: 0; border-bottom-left-radius: 4px; }
.pk-br-br { bottom: 2%; right: 2%; border-left: 0; border-top: 0; border-bottom-right-radius: 4px; }
.pk-hf-tile.pk-live .pk-bracket { animation: pk-lock 3.5s ease-in-out infinite; }
@keyframes pk-lock {
  0%, 52% { opacity: .45; transform: scale(1.15); border-color: rgba(255,178,62,.9); }
  60%, 78% { opacity: 1; transform: scale(1); border-color: var(--green); }
  88%, 100% { opacity: .45; transform: scale(1.15); border-color: rgba(255,178,62,.9); }
}
/* tile 4 · countdown */
.pk-count { position: relative; width: 120px; height: 110px; display: grid; place-items: center; }
.pk-count span {
  position: absolute; opacity: 0;
  font-family: var(--font-display); font-weight: 800; font-size: 64px; color: var(--text);
  font-feature-settings: "tnum";
}
.pk-count .pk-count-go { color: var(--green); font-size: 46px; letter-spacing: .04em; }
.pk-hf-tile.pk-live .pk-count span { animation: pk-tickn 4.8s infinite; }
.pk-hf-tile.pk-live .pk-count span:nth-child(2) { animation-delay: 1.2s; }
.pk-hf-tile.pk-live .pk-count span:nth-child(3) { animation-delay: 2.4s; }
.pk-hf-tile.pk-live .pk-count span:nth-child(4) { animation-delay: 3.6s; }
@keyframes pk-tickn {
  0% { opacity: 0; transform: scale(.88); }
  3% { opacity: 1; transform: scale(1); }
  22% { opacity: 1; }
  25%, 100% { opacity: 0; transform: scale(.96); }
}
html.pk-static .pk-count span:first-child { opacity: 1; }

/* ------------------------------------------------------------
   #hands-free · the gear wall: every remote Killian learns.
   Marquee is an ambient loop (data-pk-loop, IO gated, capped);
   hover or keyboard focus pauses it; pk-static renders a wrapped
   grid with the duplicate set hidden.
   ------------------------------------------------------------ */
.pk-gear { margin: 72px auto 0; text-align: center; }
.pk-gear-h {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -.01em;
}
.pk-gear-cap { color: var(--muted); font-size: 15px; max-width: 52ch; margin: 10px auto 0; }
.pk-gear-rail {
  overflow: hidden; margin-top: 26px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.pk-gear-rail:focus-visible { outline: 2px solid var(--amber); outline-offset: 4px; border-radius: 14px; }
.pk-gear-track { display: flex; gap: 12px; width: max-content; }
.pk-gear-set { list-style: none; margin: 0; padding: 0; display: flex; gap: 12px; }
.pk-gear-chip {
  flex: none; width: 208px; text-align: left;
  display: grid; grid-template-columns: 22px 1fr; grid-template-rows: auto auto;
  column-gap: 12px; align-items: center;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px;
  padding: 13px 16px;
}
.pk-gear-chip svg { grid-row: 1 / 3; width: 22px; height: 22px; color: var(--amber); }
/* chips with a real product photo get a bigger visual column */
.pk-gear-haspic { width: 236px; grid-template-columns: 52px 1fr; }
.pk-gear-pic { grid-row: 1 / 3; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; }
.pk-gear-pic img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.5));
}
.pk-gear-chip b { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; letter-spacing: .01em; }
.pk-gear-chip span { color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.pk-gear-rail.pk-live .pk-gear-track { animation: pk-gearscroll 46s linear infinite; }
.pk-gear-rail:hover .pk-gear-track,
.pk-gear-rail:focus .pk-gear-track,
.pk-gear-rail:focus-within .pk-gear-track { animation-play-state: paused; }
@keyframes pk-gearscroll { to { transform: translateX(calc(-50% - 6px)); } }
html.pk-static .pk-gear-rail { -webkit-mask-image: none; mask-image: none; }
html.pk-static .pk-gear-track { width: auto; }
html.pk-static .pk-gear-set { flex-wrap: wrap; justify-content: center; width: 100%; }
html.pk-static .pk-gear-dup { display: none; }

/* ------------------------------------------------------------
   #multicam (CUE 05 · The switcher)
   A live mini switcher: one 16:9 program, three phone-shaped
   feeds. premium.js rotates .on every ~3.5s while on screen;
   the crossfade and tally are opacity only. pk-static (and no
   JS) holds the first frame: WIDE live, badge shown.
   ------------------------------------------------------------ */
.pk-mc .pk-head { margin-bottom: 44px; }
.pk-mc-demo { max-width: 720px; margin: 0 auto; }
.pk-mc-program {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); background: #0b0b10;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.pk-mc-view { position: absolute; inset: 0; }
.pk-mc-program .pk-mc-view {
  opacity: 0;
  transition: opacity var(--pk-dur-scene) var(--pk-ease-out);
}
.pk-mc-program .pk-mc-view.on { opacity: 1; }
/* the three camera scenes: Higgsfield renders layered over the
   original gradient scenes, which stay as the loading/404 fallback */
.pk-mcv-wide {
  background:
    url("images/mc-wide-1000.webp") center / cover no-repeat,
    radial-gradient(64% 52% at 50% 70%, rgba(255,178,62,.5), rgba(255,178,62,.12) 55%, transparent 76%),
    linear-gradient(180deg, #141422 0%, #08080d 100%);
}
.pk-mcv-aud {
  background:
    url("images/mc-aud-1000.webp") center / cover no-repeat,
    radial-gradient(70% 40% at 50% 0%, rgba(255,178,62,.16), transparent 70%),
    linear-gradient(180deg, #0a0c16 0%, #05060c 100%);
}
.pk-mcv-close {
  background:
    url("images/mc-close-1000.webp") center / cover no-repeat,
    radial-gradient(52% 56% at 50% 44%, rgba(62,155,255,.34), rgba(62,155,255,.06) 58%, transparent 75%),
    linear-gradient(180deg, #0a0e16 0%, #05060b 100%);
}
/* 9:16 feed cards crop the 16:9 renders; keep the subject in frame */
.pk-mc-feed .pk-mcv-aud { background-position: 72% center, center, center; }
.pk-mc-feed .pk-mcv-close { background-position: 48% center, center, center; }
.pk-mc-air {
  position: absolute; top: 12px; left: 12px;
  display: flex; align-items: center; gap: 7px;
  background: rgba(10,10,14,.8); color: var(--muted);
  font-family: var(--font-display); font-weight: 700; font-size: 10px; letter-spacing: .16em;
  padding: 5px 10px; border-radius: 7px;
}
.pk-mc-air i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 7px rgba(255,59,71,.8); }
/* the three feeds */
.pk-mc-feeds {
  display: flex; gap: clamp(12px, 3vw, 22px); justify-content: center;
  margin: 26px 0 30px; /* bottom room for the angle tags below the cards */
}
.pk-mc-feed { position: relative; width: clamp(78px, 22vw, 116px); aspect-ratio: 9 / 16; }
.pk-mc-feed .pk-mc-view {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line);
  opacity: .38;
  transition: opacity var(--pk-dur-ui) var(--pk-ease-out);
}
.pk-mc-feed.on .pk-mc-view { opacity: 1; }
.pk-mc-ring {
  position: absolute; inset: -3px; border-radius: 15px; pointer-events: none;
  border: 2px solid var(--red);
  box-shadow: 0 0 14px rgba(255,59,71,.4);
  opacity: 0; transition: opacity var(--pk-dur-ui) var(--pk-ease-out);
}
.pk-mc-feed.on .pk-mc-ring { opacity: 1; }
.pk-mc-tally {
  position: absolute; bottom: 7px; left: 7px; /* bottom corner: the trigger badge owns the top edge */
  display: flex; align-items: center; gap: 5px;
  background: rgba(10,10,14,.85); color: var(--red);
  font-family: var(--font-display); font-weight: 800; font-size: 9px; letter-spacing: .14em;
  padding: 3px 7px; border-radius: 6px;
  opacity: 0; transition: opacity var(--pk-dur-ui) var(--pk-ease-out);
}
.pk-mc-tally i { width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 6px rgba(255,59,71,.8); }
.pk-mc-feed.on .pk-mc-tally { opacity: 1; }
.pk-mc-feed.on .pk-mc-tally i { animation: pk-standby 1.6s ease-in-out infinite; }
.pk-mc-badge {
  position: absolute; top: -14px; left: 50%; z-index: 1;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
  background: rgba(10,10,14,.88); border: 1px solid rgba(255,178,62,.45); color: var(--amber);
  font-family: var(--font-display); font-weight: 700; font-size: 11.5px; letter-spacing: .03em;
  padding: 5px 11px; border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0,0,0,.5);
  opacity: 0; transform: translateX(-50%) translateY(6px) scale(.7);
  transition: opacity var(--pk-dur-ui) var(--pk-ease-out),
              transform var(--pk-dur-ui) var(--pk-ease-spring);
}
.pk-mc-badge svg { width: 13px; height: 13px; flex: none; }
.pk-mc-feed.on .pk-mc-badge { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
.pk-mc-tag {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px);
  text-align: center; color: var(--muted);
  font-family: var(--font-display); font-weight: 700; font-size: 10.5px; letter-spacing: .16em;
}
.pk-mc-note { text-align: center; color: var(--muted); font-size: 14px; max-width: 52ch; margin: 26px auto 0; }
html.pk-static .pk-mc-program .pk-mc-view, html.pk-static .pk-mc-feed .pk-mc-view,
html.pk-static .pk-mc-ring, html.pk-static .pk-mc-tally, html.pk-static .pk-mc-badge {
  transition: none;
}
html.pk-static .pk-mc-feed.on .pk-mc-tally i { animation: none; }

/* ------------------------------------------------------------
   #ai (CUE 06 · The genie)
   ------------------------------------------------------------ */
.pk-ai-panel {
  max-width: 560px; margin: 0 auto; text-align: left;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px;
  padding: 22px; box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.pk-ai-field {
  display: flex; align-items: flex-start; gap: 1px; min-height: 3.4em;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 12px;
  padding: 13px 15px; font-size: 15px; color: var(--text); line-height: 1.5;
}
.pk-ai-caret { flex: none; width: 2px; height: 1.2em; margin-top: .12em; background: var(--amber); opacity: 0; }
.pk-ai-panel.pk-armed .pk-ai-caret { animation: pk-caret 1s steps(1) infinite; }
@keyframes pk-caret { 0%, 55% { opacity: 1; } 56%, 100% { opacity: 0; } }
.pk-ai-rows { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.pk-ai-rows li {
  display: flex; align-items: center;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 14px; font-size: 14.5px; color: var(--text);
  transition: opacity var(--pk-dur-ui) var(--pk-ease-out), transform var(--pk-dur-ui) var(--pk-ease-out);
}
.pk-ai-ready {
  display: inline-block; margin-top: 14px;
  background: rgba(43,214,106,.14); border: 1px solid rgba(43,214,106,.5); color: var(--green);
  font-weight: 800; font-size: 12px; letter-spacing: .14em; padding: 6px 14px; border-radius: 999px;
}
html.pk-js:not(.pk-static) .pk-ai-panel.pk-armed .pk-ai-rows li { opacity: 0; transform: translateY(10px); }
html.pk-js:not(.pk-static) .pk-ai-panel.pk-armed .pk-ai-rows li.on { opacity: 1; transform: none; }
html.pk-js:not(.pk-static) .pk-ai-panel.pk-armed .pk-ai-ready { opacity: 0; }
html.pk-js:not(.pk-static) .pk-ai-panel.pk-armed .pk-ai-ready.on { opacity: 1; animation: pk-readyflash var(--pk-dur-scene) var(--pk-ease-out); }
@keyframes pk-readyflash {
  0% { opacity: 0; transform: scale(.9); }
  40% { background: rgba(43,214,106,.4); }
  100% { opacity: 1; transform: none; }
}
.pk-ticker {
  overflow: hidden; max-width: 640px; margin: 28px auto 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.pk-ticker-track { display: flex; gap: 10px; width: max-content; }
.pk-ticker-set { display: flex; gap: 10px; }
.pk-ticker-set span {
  flex: none; border: 1px solid var(--line); background: var(--bg-2); border-radius: 999px;
  padding: 6px 14px; font-size: 13px; color: var(--muted); white-space: nowrap;
}
.pk-ticker.pk-live .pk-ticker-track { animation: pk-tickscroll 26s linear infinite; }
.pk-ticker:hover .pk-ticker-track { animation-play-state: paused; }
@keyframes pk-tickscroll { to { transform: translateX(calc(-50% - 5px)); } }
html.pk-static .pk-ticker { -webkit-mask-image: none; mask-image: none; }
html.pk-static .pk-ticker-track { width: auto; }
html.pk-static .pk-ticker-set { flex-wrap: wrap; justify-content: center; width: 100%; }
html.pk-static .pk-ticker-dup { display: none; }
.pk-ai-note { color: var(--muted); font-size: 13.5px; margin-top: 18px; text-align: center; }

/* ------------------------------------------------------------
   #audience (CUE 07 · The room) · staging only, demo untouched
   ------------------------------------------------------------ */
.pk-aud-persp { position: relative; }
.pk-aud-persp::after {
  content: ""; position: absolute; left: 8%; right: 8%; bottom: -28px; height: 60px; z-index: -1;
  background: radial-gradient(60% 100% at 50% 0%, rgba(255,178,62,.10), transparent 75%);
  pointer-events: none;
}
.pk-aud .aud-screen {
  --pk-slam-y: 0px;
  transform: translateY(var(--pk-slam-y));
  transition: background .55s ease, transform var(--pk-dur-ui) var(--pk-ease-spring);
}
@media (min-width: 900px) {
  .pk-aud .aud-screen {
    transform: rotateY(-8deg) rotateX(3deg) translateY(var(--pk-slam-y));
    -webkit-box-reflect: below 14px linear-gradient(transparent 62%, rgba(0,0,0,.12));
  }
  .pk-aud .aud-phone { transform: rotateY(14deg); }
  .pk-aud-persp.pk-live .aud-phone { animation: pk-phonebob 7s ease-in-out .8s infinite; }
}
@keyframes pk-phonebob {
  0%, 100% { transform: rotateY(14deg) translateY(0); }
  50% { transform: rotateY(14deg) translateY(-7px); }
}
/* brand chips as lighting gels: active one is elevated */
.pk-aud .brandchip[aria-pressed="true"] {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 0 2px rgba(255,178,62,.35), 0 8px 20px rgba(0,0,0,.4);
}
.pk-aud-modes {
  text-align: center; margin: 46px auto 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(17px, 2.2vw, 22px);
}
.pk-aud-mode { white-space: nowrap; }
.pk-aud-modes svg { width: 16px; height: 16px; vertical-align: -2px; margin-right: 7px; color: var(--amber); }
.pk-aud-sub { display: block; margin-top: 8px; color: var(--muted); font-size: 15px; font-weight: 600; font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif; }

/* ------------------------------------------------------------
   #see (CUE 08 · The real thing)
   Default = native snap strip (mobile + static + no JS).
   Desktop with GSAP gets .pk-see-gsap and the pinned coverflow.
   ------------------------------------------------------------ */
.pk-see .pk-head { margin-bottom: 36px; }
.pk-see-strip {
  display: flex; gap: 18px; align-items: center;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px 24px 18px; -webkit-overflow-scrolling: touch;
}
.pk-see-frame { flex: none; width: min(62vw, 240px); margin: 0; scroll-snap-align: center; }
.pk-see-frame.pk-see-ipad { width: min(78vw, 330px); }
.pk-see-shot {
  border-radius: 22px; border: 1px solid var(--line); background: #101013; padding: 10px;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}
.pk-see-shot img { width: 100%; height: auto; border-radius: 14px; display: block; }
.pk-see-frame figcaption { text-align: center; color: var(--muted); font-size: 13.5px; font-weight: 600; margin-top: 12px; }
.pk-see-frame:focus-visible { outline: 2px solid var(--amber); outline-offset: 4px; border-radius: 24px; box-shadow: none; }
/* clip, not hidden: a hidden box is still programmatically scrollable,
   so focusing an off-center frame would shift pinEl.scrollLeft and
   permanently misalign the translateX pipeline. clip cannot scroll;
   hidden stays first as the fallback for old Safari (JS backstop too). */
.pk-see-gsap .pk-see-pin {
  height: 100svh; display: flex; align-items: center;
  overflow: hidden; overflow: clip;
}
.pk-see-gsap .pk-see-strip {
  overflow: visible; scroll-snap-type: none; gap: 36px;
  padding: 0 calc(50vw - 170px) 0 calc(50vw - 130px);
  perspective: 1400px;
  /* will-change is applied by premium.js only while the pin scrub
     is active, per the performance budget */
}
.pk-see-gsap .pk-see-frame { width: 260px; }
.pk-see-gsap .pk-see-frame.pk-see-ipad { width: 380px; }
.pk-see-gsap .pk-see-frame figcaption { opacity: 0; transition: opacity 240ms var(--pk-ease-out); }
.pk-see-gsap .pk-see-frame.pk-center figcaption { opacity: 1; }

/* ------------------------------------------------------------
   #review (CUE 09 · The verdict)
   ------------------------------------------------------------ */
.pk-review .wrap { text-align: center; }
.pk-quote {
  position: relative; margin: 0 auto; max-width: 14ch;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 6.5vw, 88px); letter-spacing: -.02em; line-height: 1.04;
}
.pk-qmark {
  position: absolute; top: -.42em; left: 50%; transform: translateX(-50%);
  font-size: 2.4em; line-height: 1; color: var(--amber); opacity: .2;
  pointer-events: none; user-select: none;
}
.pk-w { display: inline-block; font-style: normal; }
.pk-quote .pk-w { transition: opacity 500ms var(--pk-ease-out), transform 500ms var(--pk-ease-out); }
html.pk-js:not(.pk-static) .pk-quote.pk-armed:not(.pk-play) .pk-w { opacity: 0; transform: translateY(.35em); }
.pk-quote-attr { color: var(--muted); margin: 20px auto 40px; font-size: 15px; }
.pk-review-wrap { max-width: 840px; margin: 0 auto; }
.pk-review-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}
.pk-review-tilt { transform: perspective(900px) rotateX(2deg); }
.pk-review-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pk-review-cap { text-align: center; margin: 18px auto 0; max-width: 640px; opacity: .85; color: var(--muted); font-size: 14px; }

/* ------------------------------------------------------------
   #for (CUE 10 · The mirror)
   ------------------------------------------------------------ */
.pk-for .wrap { text-align: center; }
.pk-for-line {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 4.6vw, 58px); letter-spacing: -.02em; line-height: 1.18;
}
.pk-for-slot { display: none; height: 1.18em; overflow: hidden; vertical-align: bottom; }
.pk-for-roll { display: block; }
.pk-for-roll > span { display: block; height: 1.18em; line-height: 1.18; color: var(--amber); white-space: nowrap; }
.pk-for-static { color: var(--amber); }
html.pk-roles-live .pk-for-slot { display: inline-block; }
html.pk-roles-live .pk-for-static {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ------------------------------------------------------------
   #why (CUE 11 · The weigh in)
   ------------------------------------------------------------ */
.pk-weigh {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end;
  max-width: 880px; margin: 0 auto 44px; text-align: center;
}
@media (max-width: 699px) { .pk-weigh { grid-template-columns: 1fr; gap: 56px; } }
.pk-weigh-col { transition: transform 700ms var(--pk-ease-spring); }
html.pk-js:not(.pk-static) .pk-weigh.pk-tipped .pk-weigh-rig { transform: translateY(10px); }
html.pk-js:not(.pk-static) .pk-weigh.pk-tipped .pk-weigh-ck { transform: translateY(-10px); }
.pk-rig { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 24px; }
.pk-slab {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #34343c, #232329);
  border: 1px solid #3a3a42; border-radius: 8px;
  color: #85858e; font-size: 10px; font-weight: 700; letter-spacing: .18em;
  box-shadow: 0 10px 24px rgba(0,0,0,.45);
}
.pk-slab-mixer { width: 200px; height: 46px; }
.pk-slab-laptop { width: 240px; height: 34px; }
.pk-slab-snake { width: 170px; height: 28px; border-radius: 99px; }
.pk-weigh-cap { color: var(--muted); font-size: 15px; margin-top: 8px; }
.pk-weigh-persp { position: relative; margin-bottom: 24px; }
.pk-weigh-persp::before {
  content: ""; position: absolute; inset: -18% -24%; z-index: -1; pointer-events: none;
  background: radial-gradient(52% 46% at 50% 55%, rgba(255,178,62,.14), transparent 70%);
}
.pk-device-mini { --rx: 8; --ry: -10; width: 260px; max-width: 80%; margin: 0 auto; }
.pk-mini-screen {
  aspect-ratio: 4 / 3; display: flex; flex-direction: column; gap: 12px;
  align-items: center; justify-content: center;
  background: radial-gradient(120% 100% at 50% 0%, rgba(255,178,62,.12), #0b0b10 60%);
}
.pk-mini-rows { display: flex; flex-direction: column; gap: 6px; width: 58%; }
.pk-mini-rows i { height: 8px; border-radius: 4px; background: rgba(255,255,255,.12); }
.pk-mini-rows i:first-child { background: rgba(255,178,62,.55); }
.pk-mini-go {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green); color: #052;
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  box-shadow: 0 0 18px rgba(43,214,106,.35);
}
.pk-compare { max-width: var(--maxw); margin: 0 auto; border-top: 1px solid var(--line); padding-top: 6px; }
.pk-compare-sum { cursor: pointer; color: var(--amber); font-weight: 700; font-size: 16px; padding: 14px 0; }
.pk-compare[open] .pk-compare-sum { margin-bottom: 10px; }

/* ------------------------------------------------------------
   #why · the import moment: MyShow.gobutton slides in, unpacks
   into cue rows, ends on a green READY. One shot on intersection
   (pk-armed / pk-play, same contract as #killian); pk-static and
   no-JS render everything in place.
   ------------------------------------------------------------ */
.pk-import { max-width: 640px; margin: 64px auto 0; text-align: center; }
.pk-import-h {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -.01em;
}
.pk-import-cap { color: var(--muted); font-size: 15px; max-width: 52ch; margin: 10px auto 0; }
.pk-import-viz {
  margin-top: 28px; text-align: left;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px;
  padding: 22px; box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.pk-import-file {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px;
  padding: 9px 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: .01em;
  transition: opacity var(--pk-dur-ui) var(--pk-ease-out),
              transform var(--pk-dur-ui) var(--pk-ease-spring);
}
.pk-import-file svg { width: 17px; height: 17px; color: var(--amber); flex: none; }
.pk-import-rows { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.pk-irow {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  background: var(--bg-3); border: 1px solid var(--line); border-left-width: 3px;
  border-radius: 10px; padding: 9px 14px;
  transition: opacity var(--pk-dur-ui) var(--pk-ease-out),
              transform var(--pk-dur-ui) var(--pk-ease-out);
}
.pk-irow b { font-size: 14px; font-weight: 600; margin-right: auto; }
.pk-ir-amber { border-left-color: var(--amber); }
.pk-ir-teal  { border-left-color: var(--teal); }
.pk-ir-blue  { border-left-color: var(--blue); }
.pk-ir-red   { border-left-color: var(--red); }
.pk-ir-green { border-left-color: var(--green); }
.pk-ibadge {
  flex: none; border: 1px solid var(--line); border-radius: 999px;
  color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .1em;
  padding: 2px 8px;
  font-feature-settings: "tnum"; font-variant-numeric: tabular-nums;
}
.pk-import-ready {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
  background: rgba(43,214,106,.14); border: 1px solid rgba(43,214,106,.5); color: var(--green);
  font-weight: 800; font-size: 12px; letter-spacing: .14em; padding: 6px 14px; border-radius: 999px;
  transition: opacity var(--pk-dur-ui) var(--pk-ease-out),
              transform var(--pk-dur-ui) var(--pk-ease-spring);
}
.pk-import-ready svg { width: 13px; height: 13px; flex: none; }
/* choreography: chip slides in, rows cascade, READY ticks last */
html.pk-js:not(.pk-static) .pk-import.pk-armed:not(.pk-play) .pk-import-file { opacity: 0; transform: translateX(-40px); }
html.pk-js:not(.pk-static) .pk-import.pk-armed:not(.pk-play) .pk-irow { opacity: 0; transform: translateY(12px); }
html.pk-js:not(.pk-static) .pk-import.pk-armed:not(.pk-play) .pk-import-ready { opacity: 0; transform: scale(.8); }
.pk-import.pk-play .pk-irow:nth-child(1) { transition-delay: 280ms; }
.pk-import.pk-play .pk-irow:nth-child(2) { transition-delay: 400ms; }
.pk-import.pk-play .pk-irow:nth-child(3) { transition-delay: 520ms; }
.pk-import.pk-play .pk-irow:nth-child(4) { transition-delay: 640ms; }
.pk-import.pk-play .pk-irow:nth-child(5) { transition-delay: 760ms; }
.pk-import.pk-play .pk-import-ready { transition-delay: 1040ms; }
html.pk-js:not(.pk-static) .pk-import.pk-play .pk-import-ready {
  animation: pk-readyflash var(--pk-dur-scene) var(--pk-ease-out) 1040ms backwards;
}

/* ------------------------------------------------------------
   #help (CUE 12 · The safety net)
   ------------------------------------------------------------ */
.pk-chat { max-width: 460px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.pk-bub {
  padding: 12px 16px; border-radius: 18px; max-width: 85%;
  font-size: 16px; line-height: 1.4;
  transition: opacity var(--pk-dur-ui) var(--pk-ease-out),
              transform var(--pk-dur-scene) var(--pk-ease-spring);
}
.pk-bub-user { align-self: flex-end; background: var(--amber); color: var(--ink); font-weight: 600; border-bottom-right-radius: 6px; }
.pk-bub-k { align-self: flex-start; background: var(--bg-3); border: 1px solid var(--line); border-bottom-left-radius: 6px; }
html.pk-js:not(.pk-static) .pk-chat.pk-armed .pk-bub { opacity: 0; transform: translateY(10px) scale(.9); }
html.pk-js:not(.pk-static) .pk-chat.pk-armed .pk-bub.on { opacity: 1; transform: none; }

/* ------------------------------------------------------------
   #pricing (CUE 13 · The ticket)
   ------------------------------------------------------------ */
.pk-pricing .wrap { text-align: center; }
.pk-zero { margin: 6px 0 34px; }
.pk-zero-num {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(96px, 14vw, 180px); line-height: .95; letter-spacing: -.03em;
  font-feature-settings: "tnum"; font-variant-numeric: tabular-nums;
}
.pk-zero-cap { display: block; color: var(--muted); font-size: clamp(16px, 2vw, 22px); margin-top: 10px; }
.pk-plans { display: grid; grid-template-columns: repeat(2, minmax(0, 260px)); justify-content: center; gap: 18px; }
@media (max-width: 559px) { .pk-plans { grid-template-columns: minmax(0, 300px); } }
.pk-plan { position: relative; background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; padding: 28px 22px 22px; }
.pk-plan-num {
  font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1;
  font-feature-settings: "tnum"; font-variant-numeric: tabular-nums;
}
.pk-plan-num small { font-size: 15px; color: var(--muted); font-weight: 600; margin-left: 2px; }
.pk-plan-cap { color: var(--muted); font-size: 14px; margin-top: 8px; }
.pk-plan-best { border-color: rgba(255,178,62,.5); }
.pk-best-tick {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--ink);
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  border-radius: 999px; padding: 3px 10px; white-space: nowrap;
}
.pk-pricing .pk-cta-row { justify-content: center; margin-top: 32px; }

/* ------------------------------------------------------------
   #beta (CUE 14 · The final GO)
   The page's darkest frame: the section background covers the
   aurora locally (never touching .aurora itself).
   ------------------------------------------------------------ */
.pk-finale {
  position: relative; min-height: 90svh;
  display: flex; flex-direction: column; justify-content: center;
  background: radial-gradient(120% 80% at 50% 0%, #0b0b10 0%, #040405 62%);
  border-top: 1px solid var(--line);
}
.pk-finale-wrap {
  display: grid; grid-template-columns: .4fr .6fr; gap: 44px; align-items: center;
  width: 100%;
}
@media (max-width: 899px) { .pk-finale-wrap { grid-template-columns: 1fr; gap: 24px; } }
.pk-finale-art { position: relative; display: flex; justify-content: center; }
.pk-spot {
  position: absolute; inset: -24% -34%; pointer-events: none;
  transform-origin: 50% 0%;
  background: conic-gradient(from 0deg at 50% -8%,
    transparent 0 41%, rgba(255,178,62,.08) 46%, rgba(255,178,62,.15) 50%,
    rgba(255,178,62,.08) 54%, transparent 59% 100%);
}
.pk-finale.pk-live .pk-spot { animation: pk-spotsweep 12s ease-in-out infinite alternate; }
@keyframes pk-spotsweep { from { transform: rotate(-9deg); } to { transform: rotate(9deg); } }
.pk-finale-art picture { position: relative; display: block; width: 100%; max-width: 360px; }
.pk-finale-art img {
  width: 100%; height: auto;
  -webkit-mask-image: radial-gradient(72% 72% at 50% 50%, #000 46%, transparent 74%);
  mask-image: radial-gradient(72% 72% at 50% 50%, #000 46%, transparent 74%);
}
@media (max-width: 899px) { .pk-finale-art picture { max-width: 240px; } }
.pk-finale-main { text-align: center; }
.pk-finale-main .pk-h2 { margin-bottom: 34px; }
.pk-finale-persp { display: block; }
.pk-bigo {
  display: inline-grid; place-items: center;
  width: clamp(240px, 26vw, 320px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 25%, #48e88b, var(--green) 55%, #17b355);
  color: #052 !important; text-decoration: none;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(64px, 7vw, 96px); letter-spacing: .02em;
  box-shadow: 0 0 60px rgba(43,214,106,.35),
    inset 0 2px 0 rgba(255,255,255,.35), inset 0 -14px 24px rgba(0,0,0,.25);
  transform: translateZ(0);
  transition: transform var(--pk-dur-ui) var(--pk-ease-spring);
}
.pk-bigo:hover { text-decoration: none; transform: translateZ(26px); }
.pk-bigo:active { transform: translateZ(-14px) scale(.97); transition-duration: var(--pk-dur-micro); }
.pk-bigo:focus-visible { outline: 3px solid var(--amber); outline-offset: 6px; box-shadow: 0 0 60px rgba(43,214,106,.35); border-radius: 50%; }
.pk-lastcue { color: var(--muted); font-size: 12px; letter-spacing: .08em; margin-top: 20px; }
.pk-houselights { text-align: center; color: var(--muted); font-size: 13px; opacity: .7; margin: 72px 0 0; }

/* ------------------------------------------------------------
   Global motion hygiene
   ------------------------------------------------------------ */
html.pk-paused .pk-standby-dead,
html.pk-paused .pk-mc-tally i,
html.pk-paused .pk-device-body::after { animation-play-state: paused; }
html.pk-paused .pk-live,
html.pk-paused .pk-live *,
html.pk-paused .pk-live *::before,
html.pk-paused .pk-live *::after { animation-play-state: paused !important; }

@media (prefers-reduced-motion: reduce) {
  /* styles.css sets html { scroll-behavior: smooth }; premium.css is
     index only, so this override keeps native anchor jumps, the rail
     GO and the hash reanchor instant for reduced motion visitors */
  html { scroll-behavior: auto !important; }
  .pk-rail, .pk-rail-go, .pk-rail-get, .pk-lamp-dot, .pk-devgo { transition: none !important; }
  .pk-standby-dead, .pk-standby-line { animation: none !important; }
  .pk-killian-art img, .pk-spot, .pk-ticker-track, .pk-aud .aud-phone { animation: none !important; }
  .pk-gear-track, .pk-mc-tally i { animation: none !important; }
  .pk-vid-bar i, .pk-timer-bar i, .pk-timerbig i, .pk-eq i { animation: none !important; }
  .pk-w, .pk-bub, .pk-ai-rows li, .pk-weigh-col, .pk-num-fill, .pk-scene { transition: none !important; }
  .pk-mc-view, .pk-mc-ring, .pk-mc-tally, .pk-mc-badge,
  .pk-import-file, .pk-irow, .pk-import-ready { transition: none !important; }
}
