.pl-construction-page .pl-main { max-width: none; padding: 0; }
.cl-shell {
  position: relative;
  min-height: calc(100vh - 55px);
  overflow: hidden;
  background: #d9d6cd;
  color: var(--pl-ink);
}
.cl-shell--overview { min-height: calc(100vh - 55px); margin-bottom: 18px; }
#cl-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 240ms ease-out;
}
#cl-scene.is-ready { opacity: 1; }
.cl-copy {
  position: absolute;
  z-index: 2;
  top: 42px;
  left: 44px;
  max-width: 490px;
  pointer-events: none;
}
.cl-copy h1 {
  margin: 12px 0 0;
  max-width: 10ch;
  font-family: var(--pl-serif);
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}
.cl-copy p { margin: 18px 0 0; max-width: 42ch; font-size: 15px; line-height: 1.55; }
.cl-panel {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  width: min(620px, calc(100vw - 48px));
  padding: 18px;
  border: 1px solid rgb(29 33 31 / 18%);
  background: var(--pl-paper);
}
.cl-status { display: flex; align-items: center; gap: 14px; }
.cl-status > span {
  width: 38px;
  font-family: var(--pl-serif);
  font-size: 32px;
  line-height: 1;
  color: var(--pl-brass);
}
.cl-status b { display: block; font-family: var(--pl-serif); font-size: 20px; font-weight: 500; }
.cl-status small { display: block; margin-top: 3px; color: var(--pl-muted); }
#cl-scrubber { width: 100%; margin: 18px 0 14px; accent-color: var(--pl-ink); }
.cl-phases {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}
.cl-phases button {
  flex: 0 0 66px;
  padding: 7px 2px;
  border: 0;
  border-top: 2px solid var(--pl-line);
  background: transparent;
  color: var(--pl-muted);
  font: 9px/1.2 var(--pl-mono);
  text-transform: uppercase;
  cursor: pointer;
  scroll-snap-align: start;
}
.cl-phases button.is-active { border-color: var(--pl-brass); color: var(--pl-ink); }
.cl-phases button:focus-visible { outline: 2px solid var(--pl-ink); outline-offset: -2px; }
.cl-actions { display: flex; align-items: center; gap: 8px; margin-top: 15px; }
.cl-actions button, .cl-actions a {
  min-height: 35px;
  padding: 9px 13px;
  border: 1px solid rgb(29 33 31 / 18%);
  background: rgb(247 245 239 / 72%);
  color: var(--pl-ink);
  font: 11px/1 var(--pl-sans);
  text-decoration: none;
  cursor: pointer;
}
.cl-actions button:first-child { background: var(--pl-ink); color: var(--pl-paper); }
.cl-note { margin: 13px 0 0; color: var(--pl-muted); font: 9px/1.4 var(--pl-mono); }
.cl-next {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 44px;
  color: var(--pl-muted);
  font: 9px/1 var(--pl-mono);
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .cl-shell { min-height: calc(100vh - 86px); }
  .cl-copy { top: 20px; left: 18px; right: 18px; }
  .cl-copy h1 { font-size: 40px; }
  .cl-copy p { max-width: 32ch; margin-top: 12px; font-size: 13px; }
  .cl-panel { right: 12px; bottom: 12px; width: calc(100vw - 24px); padding: 14px; }
  .cl-actions { flex-wrap: wrap; }
  .cl-next { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  #cl-scene { transition: none; }
  .cl-phases { scroll-behavior: auto; }
}
