/* Full-bleed portfolio view + tour */
.pf-live { height: 100%; overflow: hidden; background: #0a1128; }
.pf-live html, html:has(.pf-live) { height: 100%; }
.pf-live .site-header { position: sticky; top: 0; }
.pf-live main { position: fixed; inset: 72px 0 0; }
.pf-live #pf-site {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.pf-tour { position: fixed; inset: 0; z-index: 40; pointer-events: none; }
.pf-tour-spot {
  position: absolute;
  border: 2px solid #0066FF;
  border-radius: 10px;
  box-shadow: 0 0 0 9999px rgba(10, 17, 40, .55);
  pointer-events: none;
}
.pf-tour-spot.is-moving,
.pf-tour-card.is-moving {
  transition: top .28s ease, left .28s ease, width .28s ease, height .28s ease;
}
.pf-tour-card {
  pointer-events: auto;
  position: absolute;
  width: min(22rem, calc(100vw - 2rem));
  background: #fff;
  color: #0a1128;
  border-radius: 14px;
  padding: 1rem 1.1rem 1.05rem;
  box-shadow: 0 16px 40px rgba(10, 17, 40, .22);
  font-family: Inter, system-ui, sans-serif;
}
.pf-tour-kicker {
  margin: 0 0 .35rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0066FF;
}
.pf-tour-card h2 {
  margin: 0 0 .4rem;
  font-size: 1.05rem;
  line-height: 1.25;
}
.pf-tour-card p { margin: 0; color: #3b4256; font-size: .92rem; line-height: 1.45; }
.pf-tour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-top: .85rem;
}
.pf-tour-hint { margin: 0; font-size: .78rem; color: #6b7288; }
.pf-tour-skip {
  appearance: none;
  border: 0;
  background: none;
  color: #0066FF;
  font: 650 .82rem Inter, system-ui, sans-serif;
  cursor: pointer;
  padding: 0;
}
.pf-tour-skip:hover { text-decoration: underline; }
.pf-tour-next {
  appearance: none;
  border: 0;
  background: #0066FF;
  color: #fff;
  font: 650 .82rem Inter, system-ui, sans-serif;
  cursor: pointer;
  padding: .45rem .85rem;
  border-radius: 999px;
  margin-left: auto;
}
.pf-tour-next:hover { background: #0052cc; }
.pf-tour[hidden] { display: none !important; }
