/* Saud Apps — Product Cinema / Director's Cut V2 prototype.
   Route-scoped, dependency-free, progressively enhanced. */

:root {
  color-scheme: light;
  --paper: #f2ebdd;
  --paper-soft: #e9e0d1;
  --ink: #161711;
  --muted: #6f6a60;
  --line: rgba(22, 23, 17, .18);
  --line-strong: rgba(22, 23, 17, .42);
  --panel: rgba(255, 252, 245, .72);
  --panel-solid: #f7f1e6;
  --deep: #11140f;
  --deep-ink: #f2ebdd;
  --signal: #d55b2d;
  --signal-soft: #ed8a54;
  --shadow: 0 30px 80px rgba(31, 26, 18, .2), 0 4px 16px rgba(31, 26, 18, .14);
  --screen-shadow: 0 42px 110px rgba(26, 22, 16, .32), 0 8px 24px rgba(26, 22, 16, .18);
  --max: 1600px;
  --pad: clamp(22px, 3.2vw, 58px);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #10130f;
  --paper-soft: #171b16;
  --ink: #f0eadf;
  --muted: #aaa49a;
  --line: rgba(240, 234, 223, .16);
  --line-strong: rgba(240, 234, 223, .38);
  --panel: rgba(25, 29, 24, .78);
  --panel-solid: #191d18;
  --deep: #ede5d6;
  --deep-ink: #151712;
  --signal: #f17a42;
  --signal-soft: #ef996d;
  --shadow: 0 34px 90px rgba(0, 0, 0, .42), 0 4px 18px rgba(0, 0, 0, .3);
  --screen-shadow: 0 48px 120px rgba(0, 0, 0, .58), 0 8px 26px rgba(0, 0, 0, .35);
}

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

html {
  min-width: 320px;
  background: var(--paper);
  scroll-behavior: smooth;
}

body.product-cinema {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.product-cinema::selection { background: var(--signal); color: #fff; }
body.product-cinema img { display: block; max-width: 100%; }
body.product-cinema a { color: inherit; text-decoration: none; }
body.product-cinema button { font: inherit; }
body.product-cinema h1,
body.product-cinema h2,
body.product-cinema h3,
body.product-cinema p,
body.product-cinema figure { margin: 0; }

.pc-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.pc-skip {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pc-skip:focus { transform: none; }

:where(.product-cinema a, .product-cinema button, .product-cinema summary):focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.pc-header {
  position: absolute;
  z-index: 100;
  inset: 0 0 auto;
  width: 100%;
  min-height: 96px;
  padding: 20px var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.pc-brand {
  justify-self: start;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
}

.pc-brand > span:last-child { display: grid; line-height: 1.05; }
.pc-brand strong { font-size: 14px; letter-spacing: .02em; }
.pc-brand small { margin-top: 5px; color: var(--muted); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }

.pc-brand__mark {
  width: 44px;
  height: 44px;
  padding: 7px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.pc-brand__mark i { border-radius: 50%; background: var(--ink); }
.pc-brand__mark i:nth-child(2) { border-radius: 0 100% 0 0; }
.pc-brand__mark i:nth-child(3) { border-radius: 0 0 0 100%; }
.pc-brand__mark i:nth-child(4) { background: var(--signal); }

.pc-header__nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px); }
.pc-header__nav a { min-width: 44px; min-height: 44px; display: inline-grid; place-items: center; font-size: 12px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.pc-header__nav a:hover { color: var(--signal); }

.pc-theme {
  justify-self: end;
  min-height: 52px;
  padding: 3px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
}

.pc-theme button {
  min-width: 64px;
  min-height: 44px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 99px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pc-theme button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }

.pc-kicker,
.pc-edition,
.pc-sequence__label,
.pc-product-opening__edition {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.pc-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; }

.pc-action {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .28s ease, background .28s ease, color .28s ease;
}

.pc-action:hover { transform: translateY(-2px); }
.pc-action--signal { border-color: var(--signal); background: var(--signal); color: #fff !important; }
.pc-action--dark { border-color: var(--deep); background: var(--deep); color: var(--deep-ink) !important; }
.pc-action--text { padding-inline: 4px; border-color: transparent; background: transparent; color: var(--ink); }

/* Homepage opening */
.pc-opening {
  --pc-depth-back-x: 0px;
  --pc-depth-back-y: 0px;
  --pc-depth-mid-x: 0px;
  --pc-depth-mid-y: 0px;
  --pc-depth-front-x: 0px;
  --pc-depth-front-y: 0px;
  --pc-depth-light-x: 50%;
  --pc-depth-light-y: 38%;
  position: relative;
  min-height: max(780px, 100svh);
  padding: 132px var(--pad) 24px;
  display: grid;
  grid-template-rows: minmax(330px, 1fr) auto;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.pc-field,
.pc-product-opening__field {
  position: absolute;
  z-index: -2;
  inset: 96px 0 0;
  background-image: url('/assets/product-cinema-v2/field-grid.svg');
  background-position: calc(50% + var(--pc-depth-back-x, 0px)) calc(50% + var(--pc-depth-back-y, 0px));
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 84%);
  overflow: hidden;
  opacity: .8;
  pointer-events: none;
  transition: background-position .46s cubic-bezier(.2,.72,.2,1);
}

.pc-field::before,
.pc-product-opening__field::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/product-cinema-v2/field-grid.svg');
  background-position: 40px 40px;
  opacity: .16;
  transform: translate3d(var(--pc-depth-mid-x, 0px), var(--pc-depth-mid-y, 0px), 0);
  transition: transform .5s cubic-bezier(.2,.72,.2,1), opacity .35s ease;
}

.pc-field::after,
.pc-product-opening__field::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--pc-depth-light-x, 50%) var(--pc-depth-light-y, 38%), color-mix(in srgb, var(--signal) 13%, transparent) 0, transparent 39%);
  opacity: .58;
  transition: opacity .4s ease;
}

.pc-opening.is-pc-depth-active .pc-field,
.pc-product-opening.is-pc-depth-active .pc-product-opening__field { transition-duration: .16s; }
.pc-opening.is-pc-depth-active .pc-field::before,
.pc-product-opening.is-pc-depth-active .pc-product-opening__field::before { opacity: .24; transition-duration: .18s; }
.pc-opening.is-pc-depth-active .pc-field::after,
.pc-product-opening.is-pc-depth-active .pc-product-opening__field::after { opacity: .9; }

.pc-field > span {
  position: absolute;
  width: 1px;
  height: 42%;
  background: var(--line-strong);
}

.pc-field > span:nth-child(1) { left: 12.5%; top: 0; }
.pc-field > span:nth-child(2) { left: 37.5%; top: 18%; }
.pc-field > span:nth-child(3) { left: 62.5%; top: 8%; }
.pc-field > span:nth-child(4) { left: 87.5%; top: 22%; }

.pc-opening__mast { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: auto 1fr auto; gap: 18px; }
.pc-edition { grid-column: 1 / -1; display: flex; justify-content: space-between; color: var(--muted); }

.pc-opening h1 {
  grid-column: 1 / 10;
  align-self: center;
  display: flex;
  align-items: baseline;
  gap: .18em;
  font-family: var(--display);
  font-size: clamp(86px, 11.2vw, 178px);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .78;
  text-transform: uppercase;
}

.pc-opening h1 span:last-child { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }

.pc-opening__thesis { grid-column: 9 / -1; align-self: end; padding: 18px 0 2px 20px; border-left: 1px solid var(--line-strong); }
.pc-opening__thesis .pc-kicker { margin-bottom: 12px; color: var(--signal); }
.pc-opening__thesis > p:last-child { max-width: 420px; font-size: clamp(16px, 1.4vw, 21px); line-height: 1.45; }

.pc-opening__cue {
  position: absolute;
  left: 0;
  bottom: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pc-opening__cue span { color: var(--signal); font-size: 18px; }

.pc-cast { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.pc-cast__item {
  --pc-depth-back-x: 0px;
  --pc-depth-back-y: 0px;
  --pc-depth-mid-x: 0px;
  --pc-depth-mid-y: 0px;
  --pc-depth-front-x: 0px;
  --pc-depth-front-y: 0px;
  --pc-depth-light-x: 50%;
  --pc-depth-light-y: 50%;
  position: relative;
  min-width: 0;
  padding: 14px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at var(--pc-depth-light-x) var(--pc-depth-light-y), color-mix(in srgb, var(--ink) 8%, transparent) 0, transparent 34%),
    color-mix(in srgb, var(--paper) 78%, transparent);
  transition: background-color .3s ease;
}
.pc-cast__item:last-child { border-right: 0; }

/* Homepage cast: one restrained, route-accented hover system. */
.pc-cast__item {
  --pc-cast-light-x: 50%;
  --pc-cast-light-y: 50%;
  --pc-cast-accent: #356fdb;
  transform: translateY(0) scale(1);
  transform-origin: center;
  transition: transform .34s cubic-bezier(.2,.72,.2,1), border-color .34s ease, box-shadow .34s ease, background .34s ease;
}
.pc-cast__item--phonespace { --pc-cast-accent: #b88227; }
.pc-cast__item--filed { --pc-cast-accent: #338db5; }
.pc-cast__item--dufaat { --pc-cast-accent: #287f73; }
.pc-cast__item.is-pc-engaged {
  z-index: 2;
  border-color: color-mix(in srgb, var(--pc-cast-accent) 62%, var(--line-strong));
  background: radial-gradient(circle at var(--pc-cast-light-x) var(--pc-cast-light-y), color-mix(in srgb, var(--pc-cast-accent) 17%, transparent), transparent 44%), color-mix(in srgb, var(--paper) 78%, transparent);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--pc-cast-accent) 18%, transparent);
  transform: translateY(-5px) scale(1.008);
}
.pc-cast__item.is-pc-engaged .pc-cast__route > img { transform: translate3d(4px, -3px, 0); }
.pc-cast__item.is-pc-engaged .pc-mark { transform: translate3d(3px, -2px, 0); }
.pc-cast__facts a { transition: transform .3s cubic-bezier(.2,.72,.2,1), color .3s ease; }
.pc-cast__item.is-pc-engaged .pc-cast__facts a { color: var(--pc-cast-accent); transform: translateX(4px); }
.pc-cast__item.is-pc-engaged .pc-mark i,
.pc-cast__item.is-pc-engaged .pc-mark i::before { animation: none !important; }

@media (hover: none), (pointer: coarse) {
  .pc-cast__item:active { opacity: .9; }
  .pc-cast__item.is-pc-engaged { box-shadow: none; transform: none; }
}

.pc-cast__route {
  min-height: 158px;
  display: grid;
  grid-template-columns: 30px 58px minmax(0, 1fr);
  grid-template-rows: 64px 1fr;
  align-items: center;
  gap: 8px 12px;
}

.pc-cast__number { align-self: start; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.pc-cast__route > img { width: 58px; height: 58px; border-radius: 14px; box-shadow: 0 8px 22px rgba(20,20,15,.14); transform: translate3d(var(--pc-depth-front-x), var(--pc-depth-front-y), 0); transition: transform .44s cubic-bezier(.2,.72,.2,1); }
.pc-cast__identity { min-width: 0; display: grid; gap: 3px; }
.pc-cast__identity strong { overflow-wrap: anywhere; font-size: clamp(16px, 1.35vw, 22px); line-height: 1; }
.pc-cast__identity small { color: var(--muted); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }

.pc-cast__facts { min-height: 44px; display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.pc-cast__facts a { margin-left: auto; width: 44px; height: 44px; display: grid; place-items: center; color: var(--ink); font-size: 16px; }

.pc-mark { grid-column: 2 / -1; align-self: end; height: 42px; display: grid; transform: translate3d(var(--pc-depth-mid-x), var(--pc-depth-mid-y), 0); transition: transform .48s cubic-bezier(.2,.72,.2,1); }

/* Miniature product scenes: the card and its interaction layer remain shared. */
.pc-mark--sshift { grid-template-columns: repeat(7, 1fr); align-items: stretch; gap: 4px; padding: 3px 0; }
.pc-mark--sshift i { position: relative; min-width: 0; border: 1px solid color-mix(in srgb, #356fdb 45%, var(--line)); border-radius: 3px; background: color-mix(in srgb, #356fdb 10%, var(--paper)); overflow: hidden; }
.pc-mark--sshift i::before { content: ""; position: absolute; inset: 4px 3px auto; height: 3px; border-radius: 99px; background: #356fdb; }
.pc-mark--sshift i::after { content: ""; position: absolute; right: 3px; bottom: 4px; width: 4px; height: 4px; border-radius: 50%; background: #55c8df; }
.pc-mark--sshift i:nth-child(2), .pc-mark--sshift i:nth-child(5) { background: color-mix(in srgb, #55c8df 14%, var(--paper)); }
.pc-mark--sshift i:nth-child(2)::before, .pc-mark--sshift i:nth-child(5)::before { width: 40%; background: #55c8df; }
.pc-mark--sshift i:nth-child(3), .pc-mark--sshift i:nth-child(6) { background: color-mix(in srgb, var(--line) 76%, var(--paper)); }
.pc-mark--sshift i:nth-child(3)::before, .pc-mark--sshift i:nth-child(6)::before { width: 32%; background: color-mix(in srgb, #356fdb 36%, var(--paper)); }

.pc-mark--phonespace { grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(2, 1fr); align-items: stretch; gap: 3px; padding: 2px 0; }
.pc-mark--phonespace i { min-width: 0; border-radius: 2px; background: color-mix(in srgb, #b88227 70%, var(--paper)); box-shadow: inset 0 0 0 1px color-mix(in srgb, #b88227 24%, var(--paper)); }
.pc-mark--phonespace i:nth-child(2n) { background: color-mix(in srgb, #d6a943 66%, var(--paper)); }
.pc-mark--phonespace i:nth-child(3n) { background: color-mix(in srgb, #9f5a2c 58%, var(--paper)); }
.pc-mark--phonespace i:nth-child(n+9) { background: color-mix(in srgb, #b88227 10%, var(--paper)); box-shadow: inset 0 0 0 1px color-mix(in srgb, #b88227 20%, var(--paper)); }
.pc-mark--phonespace i:nth-child(11), .pc-mark--phonespace i:nth-child(12) { opacity: .38; }

.pc-mark--filed { position: relative; display: block; }
.pc-mark--filed i { position: absolute; width: 70%; height: 25px; border: 1px solid #338db5; border-radius: 2px 4px 3px 3px; background: color-mix(in srgb, var(--paper) 84%, #338db5 16%); box-shadow: inset 0 3px 0 color-mix(in srgb, #3d9978 58%, var(--paper)); }
.pc-mark--filed i::before { content: ""; position: absolute; top: 8px; left: 11px; right: 14px; height: 1px; background: color-mix(in srgb, #338db5 56%, transparent); box-shadow: 0 5px 0 color-mix(in srgb, #338db5 34%, transparent); }
.pc-mark--filed i:nth-child(1) { left: 4%; bottom: 1px; }
.pc-mark--filed i:nth-child(2) { left: 14%; bottom: 8px; }
.pc-mark--filed i:nth-child(3) { left: 24%; bottom: 15px; }

.pc-mark--dufaat { grid-template-columns: repeat(4, 1fr); align-items: center; gap: 5px; padding: 6px 0; }
.pc-mark--dufaat i { position: relative; height: 19px; border: 1px solid color-mix(in srgb, #287f73 56%, var(--line)); border-radius: 3px; background: color-mix(in srgb, #287f73 11%, var(--paper)); }
.pc-mark--dufaat i::before { content: ""; position: absolute; top: 50%; left: 50%; width: 6px; height: 6px; transform: translate(-50%, -50%); border: 1px solid #287f73; border-radius: 50%; background: var(--paper); }
.pc-mark--dufaat i:nth-child(-n+2)::before { background: #287f73; box-shadow: 0 0 0 2px color-mix(in srgb, #287f73 16%, transparent); }
.pc-mark--dufaat i:nth-child(3) { border-color: color-mix(in srgb, #b88227 55%, var(--line)); }
.pc-mark--dufaat i:nth-child(3)::before { border-color: #b88227; }
.pc-mark--dufaat i:nth-child(4) { opacity: .5; }

/* One-shot product logic inside the four opening cards. */
.pc-cast__item.is-pc-engaged .pc-mark--sshift i {
  animation: pc-shift-day-cycle .62s cubic-bezier(.2,.72,.2,1) both;
}
.pc-cast__item.is-pc-engaged .pc-mark--sshift i:nth-child(2) { animation-delay: .03s; }
.pc-cast__item.is-pc-engaged .pc-mark--sshift i:nth-child(3) { animation-delay: .06s; }
.pc-cast__item.is-pc-engaged .pc-mark--sshift i:nth-child(4) { animation-delay: .09s; }
.pc-cast__item.is-pc-engaged .pc-mark--sshift i:nth-child(5) { animation-delay: .12s; }
.pc-cast__item.is-pc-engaged .pc-mark--sshift i:nth-child(6) { animation-delay: .15s; }
.pc-cast__item.is-pc-engaged .pc-mark--sshift i:nth-child(7) { animation-delay: .18s; }

@keyframes pc-shift-day-cycle {
  0%, 100% { transform: translateY(0); background: var(--line); }
  34% { transform: translateY(-5px); background: color-mix(in srgb, var(--signal) 72%, var(--paper)); }
  68% { transform: translateY(-1px); background: color-mix(in srgb, var(--signal) 18%, var(--line)); }
}

.pc-cast__item.is-pc-engaged .pc-mark--phonespace i:nth-child(n+3):nth-child(-n+5) {
  animation: pc-storage-compress .76s cubic-bezier(.2,.72,.2,1) both;
}
.pc-cast__item.is-pc-engaged .pc-mark--phonespace i:nth-child(n+6):nth-child(-n+8) {
  animation: pc-storage-compress .76s .08s cubic-bezier(.2,.72,.2,1) both;
}
.pc-cast__item.is-pc-engaged .pc-mark--phonespace i:nth-child(n+9) {
  animation: pc-storage-release .76s .12s cubic-bezier(.2,.72,.2,1) both;
}

@keyframes pc-storage-compress {
  0%, 100% { transform: scaleY(1); opacity: .7; }
  42%, 66% { transform: scaleY(.58); opacity: .42; }
}

@keyframes pc-storage-release {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  28% { transform: scaleY(.82); opacity: .72; }
  62% { transform: scaleY(1.06); opacity: 1; }
}

.pc-mark--filed i:nth-child(1) { --pc-file-align-x: 28%; --pc-file-align-y: -14px; --pc-file-open-x: -5%; --pc-file-open-y: 4px; }
.pc-mark--filed i:nth-child(2) { --pc-file-align-x: 14%; --pc-file-align-y: -7px; --pc-file-open-x: 2%; --pc-file-open-y: -3px; }
.pc-mark--filed i:nth-child(3) { --pc-file-align-x: 0%; --pc-file-align-y: 0px; --pc-file-open-x: 6%; --pc-file-open-y: -6px; }
.pc-cast__item.is-pc-engaged .pc-mark--filed i { animation: pc-file-order .78s cubic-bezier(.2,.72,.2,1) both; }
.pc-cast__item.is-pc-engaged .pc-mark--filed i:nth-child(2) { animation-delay: .06s; }
.pc-cast__item.is-pc-engaged .pc-mark--filed i:nth-child(3) { animation-delay: .12s; }

@keyframes pc-file-order {
  0%, 100% { transform: translate(0, 0); border-color: #478369; }
  28% { transform: translate(var(--pc-file-open-x), var(--pc-file-open-y)); border-color: color-mix(in srgb, #478369 65%, var(--signal)); }
  62%, 72% { transform: translate(var(--pc-file-align-x), var(--pc-file-align-y)); border-color: #478369; }
}

.pc-cast__item.is-pc-engaged .pc-mark--dufaat i:nth-child(1) { animation: pc-installment-progress .7s cubic-bezier(.2,.72,.2,1) both; }
.pc-cast__item.is-pc-engaged .pc-mark--dufaat i:nth-child(2) { animation: pc-installment-progress .7s .08s cubic-bezier(.2,.72,.2,1) both; }
.pc-cast__item.is-pc-engaged .pc-mark--dufaat i:nth-child(3)::before { animation: pc-installment-pending .7s .16s cubic-bezier(.2,.72,.2,1) both; }

@keyframes pc-installment-progress {
  0%, 100% { transform: scaleX(1); background: #9b6dcb; }
  34%, 62% { transform: scaleX(1.04); background: #c89a38; }
}

@keyframes pc-installment-pending {
  0%, 100% { transform: translate(-50%, -50%) scale(1); border-color: #9b6dcb; box-shadow: none; }
  38%, 64% { transform: translate(-50%, -50%) scale(1.18); border-color: #c89a38; box-shadow: 0 0 0 4px color-mix(in srgb, #c89a38 18%, transparent); }
}

/* Homepage signature sequence */
.pc-sequence {
  --pc-force-opacity: 0;
  --pc-logic-opacity: 0;
  --pc-week-opacity: .34;
  --pc-screen-opacity: 1;
  --pc-screen-inset-y: 0%;
  --pc-screen-inset-x: 0%;
  --pc-screen-scale: 1;
  --pc-arrival-opacity: 1;
  --pc-arrival-y: 0px;
  position: relative;
  min-height: 980px;
  background: #11140f;
  color: #f3ede2;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

:root[data-theme="dark"] .pc-sequence { background: #090b09; }

@media (min-width: 721px) {
  html.pc-ready:not(.pc-reduced) .pc-sequence { height: 310vh; min-height: 2400px; }
  html.pc-ready:not(.pc-reduced) .pc-sequence__sticky { position: sticky; top: 0; height: 100svh; min-height: 620px; }
  .pc-mobile-cut { display: none !important; }
}

.pc-sequence__sticky { position: relative; min-height: 980px; overflow: hidden; isolation: isolate; }
.pc-sequence__grid { position: absolute; z-index: -2; inset: 0; background-image: url('/assets/product-cinema-v2/field-grid.svg'); background-size: 80px; opacity: .26; }
.pc-sequence__grid::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 52%, rgba(213,91,45,.16), transparent 44%); }

.pc-sequence__meter { position: absolute; z-index: 20; top: 0; left: 0; width: 100%; height: 3px; background: rgba(255,255,255,.12); }
.pc-sequence__meter span { display: block; width: 100%; height: 100%; transform: scaleX(1); transform-origin: left; background: var(--signal-soft); }
.pc-sequence__label { position: absolute; z-index: 20; top: 28px; left: var(--pad); right: var(--pad); display: flex; justify-content: space-between; color: rgba(243,237,226,.58); }

.pc-sequence__chapters { position: absolute; z-index: 1; inset: 0; display: grid; place-items: center; pointer-events: none; }
.pc-sequence__chapters p { position: absolute; width: min(74vw, 940px); opacity: 0; text-align: center; transition: opacity .38s ease, transform .6s cubic-bezier(.2,.75,.2,1); transform: translateY(18px); }
.pc-sequence__chapters small { display: block; margin-bottom: 22px; color: var(--signal-soft); font-size: 10px; font-weight: 800; letter-spacing: .2em; }
.pc-sequence__chapters strong { display: block; font-family: var(--display); font-size: clamp(58px, 7.2vw, 118px); font-weight: 900; letter-spacing: -.055em; line-height: .86; }

.pc-sequence[data-phase="forces"] [data-chapter="forces"],
.pc-sequence[data-phase="logic"] [data-chapter="logic"],
.pc-sequence[data-phase="converge"] [data-chapter="converge"],
.pc-sequence[data-phase="select"] [data-chapter="select"],
.pc-sequence[data-phase="week"] [data-chapter="week"],
.pc-sequence[data-phase="interface"] [data-chapter="interface"] { opacity: 1; transform: none; }

.pc-sequence[data-phase="converge"] [data-chapter="converge"] {
  transform: translateY(270px);
}

.pc-sequence[data-phase="select"] [data-chapter="select"] {
  transform: translateY(230px);
}

.pc-sequence[data-phase="interface"] [data-chapter="interface"] {
  width: 430px;
  transform: translateX(-440px);
  text-align: left;
}

.pc-sequence[data-phase="interface"] [data-chapter="interface"] strong {
  font-size: clamp(48px, 4.3vw, 68px);
}

.pc-forces { position: absolute; z-index: 3; inset: 0; pointer-events: none; }
.pc-force {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(230px, 20vw, 320px);
  min-height: 132px;
  padding: 14px;
  transform: translate(calc(-50% + var(--pc-x, 0px)), calc(-50% + var(--pc-y, 0px))) scale(var(--pc-force-scale, 1));
  opacity: var(--pc-card-opacity, var(--pc-force-opacity));
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(19,23,17,.86);
  box-shadow: 0 24px 70px rgba(0,0,0,.36);
  backdrop-filter: blur(8px);
  transition: border-color .3s ease;
}

.pc-force--sshift { border-top-color: #f17a42; }
.pc-force--phonespace { border-top-color: #44a7dc; }
.pc-force--filed { border-top-color: #74ad91; }
.pc-force--dufaat { border-top-color: #b98ae2; }
.pc-force__head { display: grid; grid-template-columns: 56px 1fr; gap: 12px; align-items: center; }
.pc-force__head img { width: 56px; height: 56px; border-radius: 14px; }
.pc-force__head span { display: grid; grid-template-columns: 34px 1fr; align-items: baseline; }
.pc-force__head b { grid-row: 1 / 3; color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .15em; }
.pc-force__head strong { font-size: 17px; line-height: 1; }
.pc-force__head small { margin-top: 5px; color: rgba(255,255,255,.54); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

.pc-force__logic { height: 42px; margin-top: 13px; opacity: var(--pc-logic-opacity); }
.pc-force__logic--sshift { display: grid; grid-template-columns: repeat(7, 1fr); align-items: end; gap: 4px; }
.pc-force__logic--sshift i { height: 55%; border-top: 3px solid #f17a42; background: rgba(255,255,255,.1); }
.pc-force__logic--sshift i:nth-child(2n) { height: 88%; }
.pc-force__logic--sshift i:nth-child(4) { height: 100%; }
.pc-force__logic--phonespace { display: grid; grid-template-columns: repeat(8, 1fr); grid-template-rows: 1fr 1fr; gap: 3px; }
.pc-force__logic--phonespace i { background: rgba(68,167,220,.24); }
.pc-force__logic--phonespace i:nth-child(n+8) { background: rgba(68,167,220,.88); }
.pc-force__logic--filed { position: relative; }
.pc-force__logic--filed i { position: absolute; width: 70%; height: 25px; border: 1px solid rgba(116,173,145,.8); background: #171e18; }
.pc-force__logic--filed i:nth-child(1) { left: 0; top: 14px; }
.pc-force__logic--filed i:nth-child(2) { left: 12%; top: 7px; }
.pc-force__logic--filed i:nth-child(3) { left: 24%; top: 0; }
.pc-force__logic--dufaat { display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.pc-force__logic--dufaat i { position: relative; height: 1px; background: rgba(185,138,226,.74); }
.pc-force__logic--dufaat i::before { content: ""; position: absolute; left: 0; top: 50%; width: 10px; height: 10px; transform: translate(-50%,-50%); border: 2px solid #b98ae2; border-radius: 50%; background: #11140f; }
.pc-force__logic--dufaat i:nth-child(-n+2)::before { background: #b98ae2; }

.pc-week-score {
  position: absolute;
  z-index: 2;
  inset: 13% 6% 8%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  opacity: var(--pc-week-opacity);
  pointer-events: none;
}

.pc-week-score > span { position: relative; padding: 54px 10px 20px; display: grid; align-content: space-between; justify-items: center; border-left: 1px solid rgba(255,255,255,.2); background: linear-gradient(to bottom, color-mix(in srgb, var(--day) 13%, transparent), transparent 28%); }
.pc-week-score > span:last-child { border-right: 1px solid rgba(255,255,255,.2); }
.pc-week-score b { color: rgba(255,255,255,.52); font-size: 9px; letter-spacing: .14em; }
.pc-week-score i { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--day); border-radius: 50%; color: #fff; font-size: 10px; font-style: normal; font-weight: 900; box-shadow: 0 0 26px color-mix(in srgb, var(--day) 26%, transparent); }
.pc-week-score small { color: rgba(255,255,255,.42); font-size: 8px; font-weight: 800; letter-spacing: .12em; writing-mode: vertical-rl; }

.pc-screen-frame { position: relative; overflow: hidden; border: 1px solid var(--line-strong); background: var(--panel-solid); box-shadow: var(--screen-shadow); }
.pc-screen-frame > img,
.pc-screen-frame > noscript img { width: 100%; height: 100%; object-fit: cover; }

.pc-sequence__screen {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  width: min(31vw, 330px);
  aspect-ratio: 820 / 1781;
  transform: translate(-50%, -50%) scale(var(--pc-screen-scale));
  opacity: var(--pc-screen-opacity);
  clip-path: inset(var(--pc-screen-inset-y) var(--pc-screen-inset-x) round 24px);
  border-radius: 24px;
}

.pc-screen-frame__edge { position: absolute; z-index: 2; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.3), inset 12px 0 34px rgba(255,255,255,.08); pointer-events: none; }
.pc-sequence__screen figcaption { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; padding: 30px 14px 12px; display: flex; justify-content: space-between; background: linear-gradient(transparent, rgba(0,0,0,.72)); color: #fff; font-size: 8px; font-weight: 800; letter-spacing: .14em; }

.pc-arrival { position: absolute; z-index: 7; inset: 0; opacity: var(--pc-arrival-opacity); transform: translateY(var(--pc-arrival-y)); pointer-events: none; }
.pc-arrival__identity { position: absolute; left: var(--pad); top: 15%; display: flex; align-items: center; gap: 13px; }
.pc-arrival__identity img { width: 64px; height: 64px; border-radius: 15px; box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.pc-arrival__identity span { display: grid; }
.pc-arrival__identity small { color: rgba(255,255,255,.48); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.pc-arrival__identity strong { margin-top: 4px; font-size: 24px; }

.pc-arrival h2 { position: absolute; inset: 0; font-family: var(--display); font-size: clamp(58px, 6.9vw, 112px); font-weight: 900; letter-spacing: -.06em; line-height: .82; pointer-events: none; }
.pc-arrival h2 span { position: absolute; }
.pc-arrival h2 span:nth-child(1) { left: var(--pad); top: 36%; }
.pc-arrival h2 span:nth-child(2) { right: var(--pad); top: 32%; }
.pc-arrival h2 span:nth-child(3) { left: var(--pad); bottom: 16%; color: var(--signal-soft); }
.pc-arrival__copy { position: absolute; right: var(--pad); bottom: 20%; width: min(27vw, 380px); color: rgba(255,255,255,.72); font-size: clamp(14px, 1.1vw, 17px); }
.pc-arrival__metadata { display: flex; flex-wrap: wrap; gap: 8px 14px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.pc-sequence .pc-arrival__metadata { position: absolute; right: var(--pad); top: 16%; justify-content: flex-end; color: rgba(255,255,255,.56); }
.pc-arrival > .pc-actions { position: absolute; right: var(--pad); bottom: 8%; pointer-events: auto; }

html.pc-ready:not(.pc-reduced) .pc-sequence[data-phase="arrival"] .pc-arrival,
html:not(.pc-ready) .pc-arrival,
html.pc-reduced .pc-arrival { pointer-events: auto; }

/* Mobile editorial cut */
.pc-mobile-cut { display: none; }

/* Homepage studio continuity */
.pc-studio {
  position: relative;
  min-height: 760px;
  padding: clamp(110px, 13vw, 190px) var(--pad) 100px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line-strong);
  background: var(--paper);
}

.pc-studio__rail { position: absolute; top: 42px; left: var(--pad); right: var(--pad); height: 40px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; border-top: 1px solid var(--line-strong); }
.pc-studio__rail i { position: relative; height: 1px; background: var(--line); }
.pc-studio__rail i::before { content: ""; position: absolute; top: 50%; left: 0; width: 8px; height: 8px; transform: translate(-50%,-50%); border: 1px solid var(--ink); border-radius: 50%; background: var(--paper); }
.pc-studio__rail i:first-child::before { background: var(--signal); border-color: var(--signal); }
.pc-studio__rail span { position: absolute; top: 14px; right: 0; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .16em; }
.pc-studio__lead { grid-column: 1 / 8; }
.pc-studio__lead .pc-kicker { margin-bottom: 22px; color: var(--signal); }
.pc-studio__lead h2 { font-family: var(--display); font-size: clamp(52px, 6.2vw, 104px); font-weight: 900; letter-spacing: -.06em; line-height: .88; text-transform: uppercase; }
.pc-studio__copy { grid-column: 9 / -1; align-self: end; }
.pc-studio__copy > p:first-child { padding-left: 20px; border-left: 1px solid var(--line-strong); font-size: clamp(16px, 1.35vw, 20px); line-height: 1.6; }
.pc-studio__promise { margin: 28px 0 !important; display: flex; flex-wrap: wrap; gap: 8px; }
.pc-studio__promise span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .11em; }

/* Shared footer */
.pc-footer { padding: 42px var(--pad) 26px; display: grid; grid-template-columns: 1fr auto; gap: 48px; background: var(--deep); color: var(--deep-ink); }
.pc-footer__identity { display: grid; align-content: start; }
.pc-footer__identity strong { font-family: var(--display); font-size: clamp(28px, 3vw, 48px); letter-spacing: -.04em; }
.pc-footer__identity span { color: color-mix(in srgb, var(--deep-ink) 60%, transparent); font-size: 12px; }
.pc-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 28px; }
.pc-footer nav a { min-width: 44px; min-height: 44px; display: grid; place-items: center; font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.pc-footer__base { grid-column: 1 / -1; padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid color-mix(in srgb, var(--deep-ink) 20%, transparent); color: color-mix(in srgb, var(--deep-ink) 55%, transparent); font-size: 10px; letter-spacing: .06em; }
.pc-footer__base a { min-height: 44px; display: inline-grid; align-items: center; }

/* SShift — Chapter 1 */
.pc-product-opening {
  --pc-depth-back-x: 0px;
  --pc-depth-back-y: 0px;
  --pc-depth-mid-x: 0px;
  --pc-depth-mid-y: 0px;
  --pc-depth-front-x: 0px;
  --pc-depth-front-y: 0px;
  --pc-depth-light-x: 50%;
  --pc-depth-light-y: 42%;
  position: relative;
  min-height: max(820px, 100svh);
  overflow: hidden;
  padding: 126px var(--pad) 28px;
  border-bottom: 1px solid var(--line-strong);
  isolation: isolate;
}

.pc-product-opening__field { inset: 96px 0 0; }
.pc-product-opening__field > i { position: absolute; top: 0; bottom: 0; width: 1px; background: var(--line); }
.pc-product-opening__field > i:nth-child(1) { left: 7%; }
.pc-product-opening__field > i:nth-child(2) { left: 21.3%; }
.pc-product-opening__field > i:nth-child(3) { left: 35.6%; }
.pc-product-opening__field > i:nth-child(4) { left: 49.9%; }
.pc-product-opening__field > i:nth-child(5) { left: 64.2%; }
.pc-product-opening__field > i:nth-child(6) { left: 78.5%; }
.pc-product-opening__field > i:nth-child(7) { left: 92.8%; }

.pc-product-opening__edition { display: flex; justify-content: space-between; color: var(--muted); }
.pc-product-opening__lockup { position: absolute; z-index: 4; top: 158px; left: var(--pad); display: flex; align-items: center; gap: 14px; }
.pc-product-opening__lockup img { width: 72px; height: 72px; border-radius: 18px; box-shadow: 0 14px 34px rgba(24,21,16,.2); }
.pc-product-opening__lockup span { display: grid; }
.pc-product-opening__lockup small { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.pc-product-opening__lockup strong { margin-top: 4px; font-size: 24px; }

.pc-product-opening h1 { position: absolute; z-index: 2; inset: 0; font-family: var(--display); font-weight: 900; letter-spacing: -.07em; line-height: .8; text-transform: uppercase; pointer-events: none; }
.pc-product-opening h1 span { position: absolute; white-space: nowrap; }
.pc-product-opening h1 span:nth-child(1) { left: var(--pad); top: 37%; font-size: clamp(82px, 10vw, 164px); }
.pc-product-opening h1 span:nth-child(2) { right: var(--pad); top: 34%; font-size: clamp(62px, 7.3vw, 120px); color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.pc-product-opening h1 span:nth-child(3) { left: 7vw; bottom: 6%; font-size: clamp(82px, 10vw, 164px); color: var(--signal); }

.pc-product-hero-screen { --pc-hero-lower: 18px; position: absolute; z-index: 3; left: 50%; top: 52%; width: min(23vw, 330px); aspect-ratio: 820 / 1781; transform: translate(calc(-50% + var(--pc-depth-front-x)), calc(-50% + var(--pc-hero-lower) + var(--pc-hero-engine-align, 0px) + var(--pc-depth-front-y))); border-radius: 26px; transition: transform .5s cubic-bezier(.2,.72,.2,1); }
.pc-product-opening.is-pc-depth-active .pc-product-hero-screen { transition-duration: .18s; }
.pc-product-hero-screen__day { position: absolute; z-index: 4; top: 50%; right: -32px; transform: translate(100%,-50%); color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .13em; writing-mode: vertical-rl; }
.pc-product-hero-screen figcaption { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; padding: 32px 14px 12px; display: flex; justify-content: space-between; background: linear-gradient(transparent, rgba(0,0,0,.7)); color: #fff; font-size: 8px; font-weight: 800; letter-spacing: .13em; }

@supports (-webkit-app-region: drag) {
  @media (min-width: 1101px) {
    .pc-product-hero-screen { --pc-hero-engine-align: 1px; }
  }
}

.pc-product-opening__statement { position: absolute; z-index: 4; right: var(--pad); bottom: 7%; width: min(29vw, 390px); }
.pc-product-opening__statement > p { padding-left: 18px; border-left: 1px solid var(--line-strong); font-size: clamp(15px, 1.25vw, 19px); line-height: 1.55; }
.pc-product-meta { margin: 18px 0 20px; display: flex; flex-wrap: wrap; gap: 8px 14px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

/* SShift — Chapter 2 */
.pc-week-system { padding: clamp(70px, 5.5vw, 80px) var(--pad); border-bottom: 1px solid var(--line-strong); }
.pc-chapter-heading { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; align-items: end; }
.pc-chapter-heading .pc-kicker { grid-column: 1 / 5; align-self: start; padding-top: 12px; color: var(--signal); }
.pc-chapter-heading h2 { grid-column: 4 / 10; font-family: var(--display); font-size: clamp(54px, 6.6vw, 108px); font-weight: 900; letter-spacing: -.06em; line-height: .86; text-transform: uppercase; }
.pc-chapter-heading > p:last-child { grid-column: 10 / -1; padding-left: 18px; border-left: 1px solid var(--line-strong); color: var(--muted); font-size: 14px; line-height: 1.6; }

.pc-week-system__score { max-width: var(--max); margin: 48px auto 0; display: grid; grid-template-columns: repeat(7, 1fr); border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.pc-week-system__score > div { min-height: 210px; padding: 16px 12px; display: grid; align-content: space-between; border-right: 1px solid var(--line); background: linear-gradient(to bottom, color-mix(in srgb, var(--day) 12%, transparent), transparent 44%); }
.pc-week-system__score > div:last-child { border-right: 0; }
.pc-week-system__score span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.pc-week-system__score strong { font-family: var(--display); font-size: clamp(42px, 4.4vw, 72px); line-height: 1; }
.pc-week-system__score small { padding-top: 12px; border-top: 3px solid var(--day); font-size: 10px; font-weight: 800; }

.pc-week-system__notes { max-width: var(--max); margin: 30px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pc-week-system__notes p { padding: 22px; display: grid; align-content: start; gap: 10px; background: var(--paper); }
.pc-week-system__notes span { color: var(--signal); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.pc-week-system__notes strong { font-size: clamp(18px, 1.8vw, 26px); line-height: 1.25; }
.pc-week-system__notes small { color: var(--muted); font-size: 13px; line-height: 1.55; }

/* SShift — Chapter 3 */
.pc-product-motion { padding: clamp(74px, 6vw, 88px) 0 0; background: #11140f; color: #f3ede2; }
:root[data-theme="dark"] .pc-product-motion { background: #090b09; }
.pc-chapter-heading--motion { padding: 0 var(--pad) clamp(52px, 4vw, 60px); }
.pc-chapter-heading--motion > p:last-child { color: rgba(243,237,226,.58); border-color: rgba(243,237,226,.26); }

.pc-story { position: relative; min-height: 510px; max-width: var(--max); margin: 0 auto; padding: 28px var(--pad); display: grid; grid-template-columns: repeat(12, 1fr); align-items: center; gap: 24px; border-top: 1px solid rgba(243,237,226,.22); }
.pc-story:last-child { border-bottom: 1px solid rgba(243,237,226,.22); }
.pc-story__index { grid-column: 1 / 3; align-self: start; display: grid; }
.pc-story__index span { font-family: var(--display); color: var(--signal-soft); font-size: 62px; font-weight: 900; letter-spacing: -.05em; line-height: 1; }
.pc-story__index small { color: rgba(243,237,226,.5); font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.pc-story figure { grid-column: 3 / 8; display: grid; grid-template-columns: minmax(190px, 210px) 1fr; align-items: end; gap: 22px; }
.pc-story__screen { width: 100%; aspect-ratio: 820 / 1781; border-radius: 22px; border-color: rgba(255,255,255,.24); }
.pc-story figcaption { padding-bottom: 16px; display: grid; gap: 12px; }
.pc-story figcaption span { color: rgba(243,237,226,.48); font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.pc-story figcaption strong { font-size: clamp(15px, 1.3vw, 19px); line-height: 1.45; }
.pc-story__copy { grid-column: 9 / -1; align-self: end; }
.pc-story__annotation { margin-bottom: 26px !important; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.3); }
.pc-story__annotation span { padding-top: 8px; color: rgba(243,237,226,.48); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.pc-story__copy h3 { font-family: var(--display); font-size: clamp(36px, 4vw, 64px); font-weight: 900; letter-spacing: -.05em; line-height: .92; text-transform: uppercase; }
.pc-story__copy > p:last-child { margin-top: 22px; color: rgba(243,237,226,.66); font-size: 14px; line-height: 1.65; }
.pc-story--edit figure { grid-column: 6 / 11; order: 2; }
.pc-story--edit .pc-story__index { grid-column: 11 / -1; order: 3; justify-self: end; text-align: right; }
.pc-story--edit .pc-story__copy { grid-column: 1 / 5; order: 1; }

/* SShift — Chapter 4 */
.pc-real-screens { padding: clamp(74px, 6vw, 88px) var(--pad); border-bottom: 1px solid var(--line-strong); }
.pc-real-screens__grid { max-width: 950px; margin: 46px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 24px); align-items: start; }
.pc-real-screens__grid figure:nth-child(even) { margin-top: 40px; }
.pc-real-screens__grid .pc-screen-frame { aspect-ratio: 820 / 1781; border-radius: 22px; }
.pc-real-screens__grid figcaption { padding: 14px 2px; display: flex; justify-content: space-between; gap: 10px; border-bottom: 1px solid var(--line-strong); }
.pc-real-screens__grid figcaption span { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.pc-real-screens__grid figcaption strong { font-size: 11px; text-align: right; }

/* SShift — Chapter 5 */
.pc-continuity { background: var(--paper-soft); }
.pc-continuity__release { max-width: var(--max); margin: 0 auto; padding: clamp(78px, 7vw, 106px) var(--pad); display: grid; grid-template-columns: repeat(12, 1fr); gap: 26px; border-bottom: 1px solid var(--line-strong); }
.pc-continuity__release > header { grid-column: 1 / 7; }
.pc-continuity__release > header .pc-kicker { margin-bottom: 26px; color: var(--signal); }
.pc-continuity__release > header h2 { font-family: var(--display); font-size: clamp(52px, 6vw, 96px); font-weight: 900; letter-spacing: -.06em; line-height: .88; text-transform: uppercase; }
.pc-continuity__release > header > p:last-child { max-width: 430px; margin-top: 26px; color: var(--muted); }
.pc-continuity__release-wall { grid-column: 8 / -1; align-self: end; min-height: 180px; padding: 28px; border: 1px solid var(--line-strong); background: var(--paper); box-shadow: 12px 12px 0 color-mix(in srgb, var(--ink) 9%, transparent); }
.pc-continuity__release-wall:has(> [data-releases]:empty) { display: none; }
.pc-continuity__release:has(.pc-continuity__release-wall > [data-releases]:empty) > header { grid-column: 1 / 9; }
.release-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.release-version { font-size: 18px; }
.release-date { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.release-notes { margin: 18px 0 0; padding-left: 20px; color: var(--muted); font-size: 13px; line-height: 1.6; }
div.release-notes { padding-left: 0; }
.release-notes p { margin-top: 10px !important; }
.release-history { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.release-history summary { min-height: 44px; cursor: pointer; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.release-history-list { display: grid; gap: 22px; padding-top: 20px; }
.release-history-list .release { padding-top: 18px; border-top: 1px solid var(--line); }

.pc-continuity__coda { position: relative; min-height: 550px; max-width: var(--max); margin: 0 auto; padding: clamp(68px, 5vw, 78px) var(--pad); display: grid; grid-template-columns: repeat(12, 1fr); align-items: center; gap: 26px; overflow: hidden; }
.pc-continuity__week { position: absolute; inset: 9% var(--pad); display: grid; grid-template-columns: repeat(7, 1fr); opacity: .42; }
.pc-continuity__week i { border-left: 1px solid var(--line-strong); }
.pc-continuity__week i:last-child { border-right: 1px solid var(--line-strong); }
.pc-continuity__week i:nth-child(1), .pc-continuity__week i:nth-child(2) { background: color-mix(in srgb, #4caf50 7%, transparent); }
.pc-continuity__week i:nth-child(3) { background: color-mix(in srgb, #009688 7%, transparent); }
.pc-continuity__week i:nth-child(4) { background: color-mix(in srgb, #ff9800 7%, transparent); }
.pc-continuity__week i:nth-child(5) { background: color-mix(in srgb, #f44336 7%, transparent); }
.pc-continuity__week i:nth-child(6) { background: color-mix(in srgb, #5c6bc0 7%, transparent); }
.pc-continuity__week i:nth-child(7) { background: color-mix(in srgb, #9e9e9e 7%, transparent); }
.pc-continuity__statement { position: relative; z-index: 2; grid-column: 1 / 8; }
.pc-continuity__statement .pc-kicker { margin-bottom: 22px; color: var(--signal); }
.pc-continuity__statement h2 { max-width: 800px; font-family: var(--display); font-size: clamp(58px, 6.5vw, 106px); font-weight: 900; letter-spacing: -.06em; line-height: .86; text-transform: uppercase; }
.pc-continuity__statement > p:last-child { max-width: 520px; margin-top: 28px; color: var(--muted); font-size: 16px; }
.pc-continuity__action { position: relative; z-index: 2; grid-column: 9 / -1; display: grid; justify-items: center; gap: 28px; }
.pc-coda-link { width: clamp(220px, 21vw, 310px); aspect-ratio: 1; padding: 34px; display: grid; align-content: space-between; border: 1px solid var(--signal); border-radius: 50%; background: color-mix(in srgb, var(--signal) 8%, var(--paper)); transition: transform .35s cubic-bezier(.2,.75,.2,1), background .35s ease; }
.pc-coda-link:hover { transform: rotate(-3deg) scale(1.02); background: color-mix(in srgb, var(--signal) 15%, var(--paper)); }
.pc-coda-link span { color: var(--signal); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.pc-coda-link strong { font-family: var(--display); font-size: clamp(30px, 3vw, 44px); letter-spacing: -.05em; line-height: .9; text-transform: uppercase; }
.pc-coda-link i { justify-self: end; color: var(--signal); font-size: 24px; font-style: normal; }
.pc-continuity__action nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; }
.pc-continuity__action nav a { min-width: 44px; min-height: 44px; display: grid; place-items: center; border-bottom: 1px solid var(--line-strong); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

/* Progressive reveal */
html.pc-observe [data-pc-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .72s ease, transform .9s cubic-bezier(.2,.75,.2,1); }
html.pc-observe [data-pc-reveal].is-visible { opacity: 1; transform: none; }

/* Tablet */
@media (min-width: 1600px) {
  .pc-product-hero-screen { --pc-hero-lower: 20px; }
}

@media (max-width: 1100px) {
  .pc-opening h1 { grid-column: 1 / -1; font-size: clamp(80px, 13vw, 132px); }
  .pc-opening__thesis { grid-column: 8 / -1; }
  .pc-cast__route { grid-template-columns: 24px 48px 1fr; }
  .pc-cast__route > img { width: 48px; height: 48px; border-radius: 12px; }
  .pc-cast__identity strong { font-size: 16px; }

  .pc-arrival h2 { font-size: clamp(58px, 7vw, 78px); }
  .pc-arrival__copy { width: 27vw; }

  .pc-product-opening { min-height: 980px; }
  .pc-product-opening h1 span:nth-child(1) { top: 31%; font-size: 86px; }
  .pc-product-opening h1 span:nth-child(2) { top: 45%; right: auto; left: var(--pad); font-size: 64px; }
  .pc-product-opening h1 span:nth-child(3) { left: var(--pad); bottom: 33%; font-size: 92px; }
  .pc-product-hero-screen { --pc-hero-lower: 12px; left: 69%; top: 48%; width: min(34vw, 300px); }
  .pc-product-opening__statement { left: var(--pad); right: auto; bottom: 5%; width: 46vw; }

  .pc-chapter-heading .pc-kicker { grid-column: 1 / 4; }
  .pc-chapter-heading h2 { grid-column: 4 / 9; }
  .pc-chapter-heading > p:last-child { grid-column: 9 / -1; }

  .pc-story figure { grid-column: 3 / 9; }
  .pc-story__copy { grid-column: 9 / -1; }
  .pc-story--edit figure { grid-column: 5 / 11; }
  .pc-story--edit .pc-story__copy { grid-column: 1 / 5; }

  .pc-real-screens__grid { gap: 14px; }
}

@media (max-width: 820px) and (min-width: 721px) {
  :root { --pad: 24px; }
  .pc-header { grid-template-columns: 1fr auto; }
  .pc-header__nav { display: none; }
  .pc-theme { grid-column: 2; }

  .pc-opening { min-height: 1024px; grid-template-rows: minmax(420px,1fr) auto; }
  .pc-opening h1 { font-size: 104px; flex-direction: column; gap: 0; }
  .pc-opening__thesis { grid-column: 7 / -1; }
  .pc-cast { grid-template-columns: 1fr 1fr; }
  .pc-cast__item:nth-child(2) { border-right: 0; }
  .pc-cast__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .pc-force { width: 220px; }
  .pc-sequence__chapters strong { font-size: 62px; }
  .pc-week-score { inset-inline: 3%; }
  .pc-week-score small { display: none; }
  .pc-arrival__identity { top: 13%; }
  .pc-arrival h2 span:nth-child(2) { top: 27%; }
  .pc-arrival__copy { width: 32vw; }

  .pc-studio { min-height: 720px; }
  .pc-studio__lead { grid-column: 1 / 8; }
  .pc-studio__copy { grid-column: 8 / -1; }

  .pc-week-system__score > div { min-height: 220px; padding-inline: 8px; }
  .pc-week-system__score small { font-size: 8px; }
  .pc-week-system__notes p { padding: 20px; }

  .pc-story { min-height: 620px; }
  .pc-story__index { grid-column: 1 / 3; }
  .pc-story figure { grid-column: 3 / 9; grid-template-columns: minmax(190px, 230px) 1fr; }
  .pc-story__copy { grid-column: 9 / -1; }
  .pc-story--edit figure { grid-column: 5 / 11; }
  .pc-story--edit .pc-story__copy { grid-column: 1 / 5; }
  .pc-story__copy h3 { font-size: 38px; }
  .pc-story figcaption { display: none; }

  .pc-continuity__release > header { grid-column: 1 / 7; }
  .pc-continuity__release-wall { grid-column: 7 / -1; }
}

/* Phone — a separately directed edit */
@media (max-width: 720px) {
  :root { --pad: 18px; }
  .pc-header { position: absolute; min-height: 80px; padding-block: 14px; grid-template-columns: 1fr auto; gap: 12px; }
  .pc-header__nav { display: none; }
  .pc-brand__mark { width: 42px; height: 42px; }
  .pc-brand small { display: none; }
  .pc-theme { min-height: 52px; }
  .pc-theme button { min-width: 44px; min-height: 44px; padding-inline: 8px; }
  .pc-theme button span:last-child { display: none; }
  .pc-action { min-height: 48px; }

  .pc-opening { min-height: 0; padding-top: 104px; grid-template-rows: auto auto; gap: 30px; }
  .pc-field { inset-top: 80px; }
  .pc-opening__mast { display: block; }
  .pc-edition { margin-bottom: 26px; }
  .pc-edition span:nth-child(2) { display: none; }
  .pc-opening h1 { display: block; font-size: clamp(58px, 20vw, 78px); line-height: .82; }
  .pc-opening h1 span { display: block; }
  .pc-opening__thesis { margin-top: 24px; padding: 14px 0 0; border-left: 0; border-top: 1px solid var(--line-strong); }
  .pc-opening__thesis > p:last-child { max-width: 34ch; font-size: 14px; }
  .pc-opening__cue { display: none; }

  .pc-cast { grid-template-columns: 1fr 1fr; }
  .pc-cast__item { min-height: 142px; padding: 10px; }
  .pc-cast__item:nth-child(2) { border-right: 0; }
  .pc-cast__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pc-cast__route { min-height: 98px; grid-template-columns: 22px 40px 1fr; grid-template-rows: 48px 28px; gap: 4px 8px; }
  .pc-cast__route > img { width: 40px; height: 40px; border-radius: 10px; }
  .pc-cast__identity strong { font-size: 13px; }
  .pc-cast__identity small { font-size: 7px; }
  .pc-mark { grid-column: 2 / -1; height: 26px; }
  .pc-cast__facts { gap: 7px; font-size: 7px; }
  .pc-cast__facts [data-field="version"] { display: none; }

  .pc-sequence { min-height: 0; padding: 84px var(--pad) 96px; }
  .pc-sequence__sticky { display: none; }
  .pc-mobile-cut { display: block; }
  .pc-mobile-cut__head .pc-kicker { color: var(--signal-soft); }
  .pc-mobile-cut__head h2 { margin-top: 14px; font-family: var(--display); font-size: clamp(42px, 13vw, 58px); font-weight: 900; letter-spacing: -.055em; line-height: .9; text-transform: uppercase; }
  .pc-mobile-cut__forces { margin: 44px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.28); }
  .pc-mobile-cut__forces li { min-height: 78px; display: grid; grid-template-columns: 42px 1fr; grid-template-rows: 1fr 1fr; align-items: end; border-bottom: 1px solid rgba(255,255,255,.2); }
  .pc-mobile-cut__forces span { grid-row: 1 / 3; align-self: center; color: rgba(255,255,255,.45); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
  .pc-mobile-cut__forces strong { align-self: end; font-size: 18px; }
  .pc-mobile-cut__forces small { align-self: start; color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
  .pc-mobile-cut__turn { min-height: 130px; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
  .pc-mobile-cut__turn i { color: var(--signal-soft); font-size: 34px; font-style: normal; }
  .pc-mobile-week { height: 180px; display: grid; grid-template-columns: repeat(7,1fr); border: 1px solid rgba(255,255,255,.24); }
  .pc-mobile-week span { padding: 12px 2px; display: grid; align-content: space-between; justify-items: center; border-right: 1px solid rgba(255,255,255,.18); background: linear-gradient(to bottom, color-mix(in srgb, var(--day) 18%, transparent), transparent 58%); }
  .pc-mobile-week span:last-child { border-right: 0; }
  .pc-mobile-week b { color: rgba(255,255,255,.54); font-size: 8px; }
  .pc-mobile-week i { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--day); border-radius: 50%; color: #fff; font-size: 7px; font-style: normal; font-weight: 900; }
  .pc-mobile-arrival { position: relative; margin-top: 90px; padding-bottom: 8px; }
  .pc-mobile-arrival .pc-kicker { color: var(--signal-soft); }
  .pc-mobile-arrival h2 { margin-top: 16px; font-family: var(--display); font-size: clamp(54px, 17vw, 72px); font-weight: 900; letter-spacing: -.06em; line-height: .82; text-transform: uppercase; }
  .pc-mobile-arrival__screen { width: min(64vw, 250px); aspect-ratio: 820 / 1781; margin: 34px auto; border-radius: 22px; }
  .pc-mobile-arrival > p:not(.pc-kicker) { color: rgba(255,255,255,.68); font-size: 14px; }
  .pc-mobile-arrival .pc-arrival__metadata { margin: 18px 0; color: rgba(255,255,255,.54); }
  .pc-mobile-arrival .pc-actions { align-items: stretch; }

  .pc-studio { min-height: 0; padding: 120px var(--pad) 90px; display: block; }
  .pc-studio__rail { top: 42px; }
  .pc-studio__lead h2 { font-size: clamp(46px, 14vw, 62px); }
  .pc-studio__copy { margin-top: 42px; }
  .pc-studio__copy > p:first-child { font-size: 15px; }

  .pc-footer { grid-template-columns: 1fr; gap: 26px; }
  .pc-footer nav { justify-content: flex-start; gap: 4px 20px; }
  .pc-footer__base { grid-column: 1; display: grid; gap: 8px; }

  /* SShift phone opening */
  .pc-product-opening { min-height: 0; padding: 104px var(--pad) 64px; display: grid; grid-template-columns: 1fr minmax(126px, 44vw); grid-template-rows: auto auto auto auto; gap: 24px 14px; overflow: visible; }
  .pc-product-opening__field { inset: 80px 0 0; }
  .pc-product-opening__edition { grid-column: 1 / -1; font-size: 8px; }
  .pc-product-opening__edition span:nth-child(2) { display: none; }
  .pc-product-opening__lockup { position: static; grid-column: 1 / -1; grid-row: 2; }
  .pc-product-opening__lockup img { width: 52px; height: 52px; border-radius: 13px; }
  .pc-product-opening__lockup strong { font-size: 18px; }
  .pc-product-opening h1 { position: static; grid-column: 1; grid-row: 3; display: flex; flex-direction: column; align-self: center; gap: 2px; }
  .pc-product-opening h1 span { position: static; white-space: normal; font-size: clamp(42px, 14vw, 58px) !important; line-height: .84; }
  .pc-product-opening h1 span:nth-child(2) { color: transparent; -webkit-text-stroke: 1px var(--ink); }
  .pc-product-opening h1 span:nth-child(3) { color: var(--signal); }
  .pc-product-hero-screen { --pc-hero-lower: 0px; position: static; grid-column: 2; grid-row: 3; width: 100%; transform: none; align-self: center; border-radius: 18px; }
  .pc-product-hero-screen__day { display: none; }
  .pc-product-hero-screen figcaption { padding: 20px 8px 8px; font-size: 6px; }
  .pc-product-opening__statement { position: static; grid-column: 1 / -1; grid-row: 4; width: auto; }
  .pc-product-opening__statement > p { font-size: 14px; }

  .pc-week-system { padding-block: 84px; }
  .pc-chapter-heading { display: block; }
  .pc-chapter-heading .pc-kicker { margin-bottom: 18px; }
  .pc-chapter-heading h2 { font-size: clamp(44px, 14vw, 62px); }
  .pc-chapter-heading > p:last-child { margin-top: 24px; font-size: 13px; }
  .pc-week-system__score { margin-top: 50px; grid-template-columns: repeat(4, 1fr); }
  .pc-week-system__score > div { min-height: 150px; border-bottom: 1px solid var(--line); }
  .pc-week-system__score > div:nth-child(4) { border-right: 0; }
  .pc-week-system__score > div:nth-child(n+5) { border-bottom: 0; }
  .pc-week-system__score strong { font-size: 34px; }
  .pc-week-system__score small { font-size: 7px; }
  .pc-week-system__notes { margin-top: 36px; grid-template-columns: 1fr; }

  .pc-product-motion { padding-top: 84px; }
  .pc-chapter-heading--motion { padding: 0 var(--pad) 66px; }
  .pc-story, .pc-story--edit { min-height: 0; padding: 52px var(--pad); display: grid; grid-template-columns: 46px 1fr; gap: 24px 12px; }
  .pc-story__index, .pc-story--edit .pc-story__index { grid-column: 1; grid-row: 1; justify-self: auto; text-align: left; }
  .pc-story__index span { font-size: 42px; }
  .pc-story figure, .pc-story--edit figure { grid-column: 2; grid-row: 1; display: block; }
  .pc-story__screen { width: min(100%, 230px); margin: 0 auto; border-radius: 18px; }
  .pc-story figcaption { margin-top: 14px; display: grid; }
  .pc-story__copy, .pc-story--edit .pc-story__copy { grid-column: 1 / -1; grid-row: 2; }
  .pc-story__copy h3 { font-size: 40px; }

  .pc-real-screens { padding-block: 84px; }
  .pc-real-screens__grid { margin-top: 52px; grid-template-columns: 1fr 1fr; gap: 28px 12px; }
  .pc-real-screens__grid figure:nth-child(even) { margin-top: 42px; }
  .pc-real-screens__grid .pc-screen-frame { border-radius: 15px; }
  .pc-real-screens__grid figcaption { display: grid; }
  .pc-real-screens__grid figcaption strong { text-align: left; }

  .pc-continuity__release { padding-block: 84px; display: block; }
  .pc-continuity__release > header h2 { font-size: clamp(44px, 14vw, 62px); }
  .pc-continuity__release-wall { margin-top: 46px; padding: 20px; box-shadow: 7px 7px 0 color-mix(in srgb, var(--ink) 9%, transparent); }
  .pc-continuity__coda { min-height: 0; padding-block: 100px; display: block; }
  .pc-continuity__week { inset: 50px var(--pad); }
  .pc-continuity__statement h2 { font-size: clamp(46px, 14vw, 64px); }
  .pc-continuity__action { margin-top: 58px; }
  .pc-coda-link { width: min(72vw, 270px); }
}

@media (max-width: 390px) {
  .pc-brand > span:last-child strong { font-size: 13px; }
  .pc-opening { padding-inline: 14px; }
  .pc-cast__item { padding-inline: 7px; }
  .pc-cast__route { grid-template-columns: 18px 36px 1fr; gap: 3px 6px; }
  .pc-cast__route > img { width: 36px; height: 36px; }
  .pc-cast__identity strong { font-size: 12px; }
  .pc-cast__facts { font-size: 6.5px; }
  .pc-product-opening { grid-template-columns: 1fr minmax(122px, 43vw); }
  .pc-product-opening h1 span { font-size: clamp(40px, 13.5vw, 52px) !important; }
}

@media (max-width: 340px) {
  :root { --pad: 14px; }
  .pc-theme button { min-width: 44px; }
  .pc-opening h1 { font-size: 58px; }
  .pc-cast__identity small { display: none; }
  .pc-cast__facts > span:first-child { display: none; }
  .pc-mobile-cut__head h2 { font-size: 40px; }
  .pc-product-opening { grid-template-columns: 1fr 130px; gap-inline: 10px; }
  .pc-product-opening h1 span { font-size: 42px !important; }
  .pc-week-system__score > div { min-height: 138px; }
  .pc-story figure, .pc-story--edit figure { grid-column: 1 / -1; grid-row: 2; }
  .pc-story__copy, .pc-story--edit .pc-story__copy { grid-row: 3; }
}

/* Complete reduced-motion alternate */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html.pc-observe [data-pc-reveal] { opacity: 1; transform: none; }
  .pc-field, .pc-product-opening__field { background-position: 50% 50%; }
  .pc-field::before, .pc-product-opening__field::before { transform: none; }
  .pc-product-hero-screen { transform: translate(-50%, calc(-50% + var(--pc-hero-lower) + var(--pc-hero-engine-align, 0px))); }
  .pc-cast__route > img, .pc-mark { transform: none; }
  .pc-cast__item.is-pc-engaged .pc-mark i,
  .pc-cast__item.is-pc-engaged .pc-mark i::before { animation: none !important; }
  .pc-cast__item.is-pc-engaged { box-shadow: none; transform: none; }
}

@media (max-width: 720px) and (prefers-reduced-motion: reduce) {
  .pc-product-hero-screen { transform: none; }
}

html.pc-reduced .pc-sequence { height: auto; min-height: 980px; }
html.pc-reduced .pc-sequence__sticky { position: relative; min-height: 980px; }
html.pc-reduced .pc-forces { opacity: 0; }
html.pc-reduced .pc-sequence__chapters { opacity: 0; }

@media (max-width: 720px) {
  html.pc-reduced .pc-sequence { min-height: 0; }
  html.pc-reduced .pc-sequence__sticky { display: none; }
}
