/* P Cee Stocks — cinematic institutional (strict B&W) */
:root {
  --pc-void: #000000;
  --pc-black: #050505;
  --pc-black-2: #0a0a0a;
  --pc-ink: #111111;
  --pc-surface: #1a1a1a;
  --pc-white: #ffffff;
  --pc-off: #f5f5f5;
  --pc-grey: #d9d9d9;
  --pc-muted: #888888;
  --pc-border: rgba(255, 255, 255, 0.12);
  --pc-border-strong: rgba(255, 255, 255, 0.28);
  --pc-border-dark: rgba(0, 0, 0, 0.12);
  --pc-accent: #ffffff;
  --pc-accent-soft: rgba(255, 255, 255, 0.08);
  --pc-font: "Manrope", system-ui, sans-serif;
  --pc-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --pc-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --pc-header-h: 4.25rem;
  --pc-max: 1200px;
  --pc-max-wide: 1320px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body.pc-body {
  margin: 0;
  font-family: var(--pc-font);
  background: var(--pc-void);
  color: var(--pc-white);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Under-header mobile panel — no body scroll lock (Muvesta pattern) */

body.pc-js.pc-motion-ok.pc-cursor-on { cursor: none; }
body.pc-js.pc-motion-ok.pc-cursor-on a,
body.pc-js.pc-motion-ok.pc-cursor-on button,
body.pc-js.pc-motion-ok.pc-cursor-on input,
body.pc-js.pc-motion-ok.pc-cursor-on textarea,
body.pc-js.pc-motion-ok.pc-cursor-on select,
body.pc-js.pc-motion-ok.pc-cursor-on label { cursor: none; }

@media (pointer: coarse), (max-width: 768px) {
  body.pc-js.pc-motion-ok.pc-cursor-on,
  body.pc-js.pc-motion-ok.pc-cursor-on a,
  body.pc-js.pc-motion-ok.pc-cursor-on button,
  body.pc-js.pc-motion-ok.pc-cursor-on input,
  body.pc-js.pc-motion-ok.pc-cursor-on textarea,
  body.pc-js.pc-motion-ok.pc-cursor-on select,
  body.pc-js.pc-motion-ok.pc-cursor-on label { cursor: auto; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

.pc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pc-shell {
  width: min(100% - 2rem, var(--pc-max));
  margin-inline: auto;
}

.pc-shell--wide {
  width: min(100% - 2rem, var(--pc-max-wide));
}

.pc-shell--narrow {
  width: min(100% - 2rem, 760px);
  margin-inline: auto;
}

.pc-body a:focus-visible,
.pc-body button:focus-visible,
.pc-body input:focus-visible,
.pc-body textarea:focus-visible,
.pc-body select:focus-visible {
  outline: 2px solid var(--pc-white);
  outline-offset: 3px;
}

/* ——— Typography ——— */
.pc-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pc-muted);
}

.pc-eyebrow--hero { color: rgba(255, 255, 255, 0.55); }

.pc-display {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: clamp(2.5rem, 7.2vw, 5.5rem);
}

.pc-display__line,
.pc-display span { display: block; }

.pc-hero .pc-display__line + .pc-display__line {
  margin-top: 0.08em;
}

.pc-display--dark { color: var(--pc-void); }
.pc-display--research {
  font-size: clamp(1.85rem, 4.5vw, 3.5rem);
  max-width: 14ch;
}

.pc-h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-size: clamp(1.75rem, 4vw, 3rem);
}

.pc-h2 span { display: block; }

.pc-lead {
  margin: 1.25rem 0 0;
  max-width: 36rem;
  color: var(--pc-grey);
  font-size: clamp(1rem, 1.45vw, 1.125rem);
  line-height: 1.7;
  font-weight: 400;
}

.pc-lead--hero {
  margin-top: 1.5rem;
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.35vw, 1.12rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.pc-lead--dark { color: #1a1a1a; }

.pc-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pc-void);
}

.pc-muted { color: var(--pc-muted); }
.pc-grey { color: var(--pc-grey); }

/* ——— Buttons ——— */
.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.9rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  transition:
    background 0.4s var(--pc-ease),
    color 0.4s var(--pc-ease),
    border-color 0.4s var(--pc-ease),
    transform 0.4s var(--pc-ease);
}

.pc-btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.4s var(--pc-ease);
}

.pc-btn:hover svg { transform: translateX(4px); }

.pc-btn--solid {
  background: var(--pc-white);
  color: var(--pc-void);
  border-color: var(--pc-white);
}

.pc-btn--solid:hover {
  background: var(--pc-off);
  border-color: var(--pc-off);
}

.pc-btn--ghost,
.pc-btn--outline {
  background: transparent;
  color: var(--pc-white);
  border-color: var(--pc-border-strong);
}

.pc-btn--ghost:hover,
.pc-btn--outline:hover {
  border-color: var(--pc-white);
  background: rgba(255, 255, 255, 0.05);
}

.pc-btn--dark {
  background: var(--pc-void);
  color: var(--pc-white);
  border-color: var(--pc-void);
}

.pc-btn--dark:hover { background: var(--pc-ink); }

.pc-btn--nav {
  min-height: 2.35rem;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  background: transparent;
  color: var(--pc-white);
  border-color: var(--pc-border-strong);
}

.pc-btn--nav:hover {
  border-color: var(--pc-white);
  background: rgba(255, 255, 255, 0.06);
}

.pc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.85rem;
}

/* ——— Progress ——— */
.pc-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.pc-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--pc-white);
  transform-origin: left center;
  will-change: width;
}

/* ——— Custom cursor (desktop / fine pointer) ——— */
.pc-cursor {
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

body.pc-motion-ok.pc-cursor-on .pc-cursor {
  opacity: 1;
  visibility: visible;
}

.pc-cursor__dot,
.pc-cursor__ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.pc-cursor__dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--pc-white);
}

.pc-cursor__ring {
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: width 0.35s var(--pc-ease), height 0.35s var(--pc-ease),
    margin 0.35s var(--pc-ease), border-color 0.35s var(--pc-ease),
    background 0.35s var(--pc-ease);
}

.pc-cursor.is-expand .pc-cursor__ring {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-color: var(--pc-white);
  background: rgba(255, 255, 255, 0.06);
}

@media (pointer: coarse), (max-width: 768px) {
  .pc-cursor { display: none !important; }
}

body.pc-motion-reduce .pc-cursor { display: none !important; }

/* ——— Header ——— */
.pc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: auto;
  min-height: var(--pc-header-h);
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid transparent;
  transition:
    background 0.45s var(--pc-ease),
    border-color 0.45s var(--pc-ease),
    backdrop-filter 0.45s var(--pc-ease);
  overflow: visible;
}

.pc-header.is-scrolled {
  background: rgba(0, 0, 0, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.pc-header__inner {
  min-height: var(--pc-header-h);
  height: var(--pc-header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: visible;
}

.pc-header.is-scrolled .pc-header__inner {
  height: 3.55rem;
  min-height: 3.55rem;
}

.pc-logo {
  display: flex;
  align-items: center;
  height: 2.55rem;
  flex-shrink: 0;
}

.pc-logo img {
  height: 100%;
  width: auto;
  max-width: 9.5rem;
  object-fit: contain;
}

.pc-logo--plate {
  background: #000;
  padding: 0.2rem 0.45rem;
}

.pc-header.is-scrolled .pc-logo { height: 2.15rem; }

.pc-nav {
  display: none;
  align-items: center;
  margin-left: auto;
  gap: clamp(0.85rem, 1.6vw, 1.35rem);
  flex-wrap: nowrap;
}

.pc-nav > a,
.pc-nav-drop__trigger {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  padding: 0.35rem 0;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.35s var(--pc-ease);
}

.pc-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--pc-white);
  transition: right 0.4s var(--pc-ease);
}

.pc-nav > a:hover,
.pc-nav > a[aria-current="page"],
.pc-nav-drop__trigger:hover,
.pc-nav-drop.is-open .pc-nav-drop__trigger {
  color: var(--pc-white);
}

.pc-nav > a:hover::after,
.pc-nav > a[aria-current="page"]::after { right: 0; }

.pc-nav-drop {
  position: relative;
  display: flex;
  align-items: center;
}

.pc-nav-drop__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.pc-nav-chev {
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform 0.25s var(--pc-ease);
}

.pc-nav-drop.is-open .pc-nav-chev,
.pc-mobile-nav__fold[open] .pc-nav-chev {
  transform: rotate(180deg);
}

.pc-nav-drop__panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  min-width: 12.5rem;
  z-index: 120;
}

.pc-nav-drop__card {
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.35rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.pc-nav-drop__card a {
  display: block;
  padding: 0.55rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 0.25rem;
  text-decoration: none;
}

.pc-nav-drop__card a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.pc-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.35rem;
  flex-shrink: 0;
}

.pc-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.pc-burger svg { width: 1.25rem; height: 1.25rem; }
.pc-burger__close { display: none; }
.pc-burger[aria-expanded="true"] .pc-burger__open { display: none; }
.pc-burger[aria-expanded="true"] .pc-burger__close { display: inline-flex; }

@media (min-width: 980px) {
  .pc-nav { display: flex; }
  .pc-burger { display: none; }
}

@media (max-width: 979px) {
  .pc-header__inner { justify-content: space-between; }
  .pc-header__actions { margin-left: auto; }
}

/* ——— Mobile nav (Muvesta-style under-header panel) ——— */
.pc-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  width: min(100% - 2rem, var(--pc-max-wide));
  margin-inline: auto;
  padding: 0.35rem 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.pc-header.is-nav-open .pc-mobile-nav,
.pc-mobile-nav.is-open {
  display: flex;
}

.pc-mobile-nav[hidden] {
  display: none !important;
}

.pc-mobile-nav > a,
.pc-mobile-nav__fold-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 0;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  background: none;
  cursor: pointer;
  list-style: none;
}

.pc-mobile-nav__fold-summary::-webkit-details-marker { display: none; }

.pc-mobile-nav__fold-panel {
  display: grid;
  gap: 0.1rem;
  padding: 0.25rem 0 0.75rem 0.75rem;
}

.pc-mobile-nav__sub {
  display: block;
  padding: 0.55rem 0;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  border-bottom: 0;
}

.pc-mobile-nav__sub:hover { color: #fff; }

/* Legacy fullscreen mobile (unused) kept inert */
.pc-mobile { display: none !important; }

/* ——— Hero cinema ——— */
.pc-hero,
.pc-hero--cinema {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  background: var(--pc-void);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 960px) {
  .pc-hero,
  .pc-hero--cinema {
    min-height: auto;
  }
}

.pc-hero__void {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 72% 42%, rgba(255, 255, 255, 0.035), transparent 70%),
    linear-gradient(180deg, #000 0%, #050505 60%, #0a0a0a 100%);
  pointer-events: none;
  z-index: 0;
}

.pc-hero__flow {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.pc-hero__flow-canvas {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.72;
}

.pc-hero__dither {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 2 2' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1' height='1' fill='%23ffffff'/%3E%3Crect x='1' y='1' width='1' height='1' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 2px 2px;
}

.pc-hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.28) 0%, transparent 42%, transparent 62%, rgba(0,0,0,0.28) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 28%, transparent 70%, rgba(0,0,0,0.5) 100%);
}

.pc-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.pc-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 65% 55% at 70% 40%, #000 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 70% 40%, #000 15%, transparent 72%);
  pointer-events: none;
  will-change: transform;
}

.pc-hero__inner {
  position: relative;
  z-index: 5;
  flex: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(2.5rem, 7vw, 5.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 960px) {
  .pc-hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: min(78vh, 640px);
    padding: clamp(2.25rem, 4.5vw, 3.75rem) 0 clamp(1.75rem, 3vw, 2.75rem);
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

@media (min-width: 960px) and (max-width: 1366px) {
  .pc-hero__inner {
    min-height: min(70vh, 560px);
    padding: 2.5rem 0 2rem;
  }

  .pc-hero .pc-display {
    font-size: clamp(2.35rem, 4.6vw, 3.65rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
  }

  .pc-hero .pc-lead--hero {
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 28rem;
  }
}

.pc-hero__copy { position: relative; z-index: 6; max-width: 36rem; }

.pc-hero__copy .pc-eyebrow--hero {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.15rem;
}

.pc-hero__copy .pc-actions {
  margin-top: 1.75rem;
}

/* Crisp type after entrance — no leftover blur over particles */
.pc-hero [data-pc-fade] {
  filter: none;
  -webkit-font-smoothing: antialiased;
}

.pc-hero .pc-display,
.pc-hero .pc-lead--hero,
.pc-hero .pc-eyebrow--hero {
  text-shadow:
    0 0 24px rgba(0, 0, 0, 0.75),
    0 2px 16px rgba(0, 0, 0, 0.55);
}

.pc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.15rem;
  padding: 0.35rem 0.75rem 0.35rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--pc-border);
  background: rgba(255, 255, 255, 0.03);
}

.pc-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pc-white);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
  animation: pcPulse 2.4s var(--pc-ease-out) infinite;
}

@keyframes pcPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45); opacity: 1; }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); opacity: 0.85; }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); opacity: 1; }
}

.pc-hero__stage {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(52vw, 420px);
  perspective: 1200px;
}

@media (min-width: 960px) {
  .pc-hero__stage { min-height: min(48vh, 460px); }
}

@media (min-width: 960px) and (max-width: 1366px) {
  .pc-hero__stage { min-height: min(42vh, 380px); }
}

.pc-hero__hint {
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
  .pc-hero__hint { display: none; }
}

/* ——— Bull visual — full chrome plate, not cropped greyscale disc ——— */
.pc-bull {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  margin-inline: auto;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  opacity: 1;
  transform: none;
}

body.pc-js.pc-motion-ok .pc-bull:not(.is-ready) {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1.15s var(--pc-ease), transform 1.15s var(--pc-ease);
}

body.pc-hero-in .pc-bull,
body.pc-js.pc-motion-ok .pc-bull.is-ready {
  opacity: 1;
  transform: scale(1);
}

.pc-bull__glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255,255,255,0.04) 42%, transparent 70%);
  filter: blur(32px);
  pointer-events: none;
  z-index: 0;
  animation: pcGlow 5.5s ease-in-out infinite alternate;
}

@keyframes pcGlow {
  from { opacity: 0.5; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1.05); }
}

.pc-bull__media,
.pc-bull__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
  z-index: 2;
  filter: contrast(1.05) brightness(1.08)
    drop-shadow(0 28px 50px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 28px rgba(255, 255, 255, 0.06));
}

.pc-bull__img--fallback[hidden] { display: none !important; }

body:not(.pc-js) .pc-bull__img:not([hidden]),
body.pc-motion-reduce .pc-bull__img:not([hidden]) {
  animation: none;
}

body.pc-js:not(.pc-motion-ok) .pc-bull__media,
body.pc-js:not(.pc-motion-ok) .pc-bull__img:not([hidden]) {
  animation: pcBullFloat 6.5s ease-in-out infinite;
}

@keyframes pcBullFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

.pc-ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
  z-index: 1;
}

.pc-ring--1 {
  inset: 2%;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.22);
  animation: pcRingSpin 26s linear infinite;
  transform: rotateX(68deg);
}

.pc-ring--2 {
  inset: 10%;
  border-color: rgba(255, 255, 255, 0.12);
  animation: pcRingSpin 38s linear infinite reverse;
}

.pc-ring--3 {
  inset: -4%;
  border-color: rgba(255, 255, 255, 0.07);
  animation: pcRingSpin 52s linear infinite;
}

@keyframes pcRingSpin { to { transform: rotate(360deg); } }

.pc-bull__hud {
  position: absolute;
  inset: 0;
  z-index: 3;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.4;
  transition: opacity 0.6s var(--pc-ease);
  pointer-events: none;
  mix-blend-mode: screen;
}

.pc-hud-draw { vector-effect: non-scaling-stroke; }

@media (max-width: 768px) {
  .pc-bull { width: min(100%, 360px); }
  .pc-ring--3 { display: none; }
}

/* ——— Ticker ——— */
.pc-ticker {
  position: relative;
  z-index: 6;
  border-top: 1px solid var(--pc-border);
  background: var(--pc-black);
  overflow: hidden;
  min-height: 3.15rem;
}

.pc-ticker__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.pc-ticker__track {
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
  animation: pcTicker 48s linear infinite;
}

.pc-ticker:hover .pc-ticker__track { animation-play-state: paused; }

.pc-ticker[data-pc-state="loading"] .pc-ticker__track,
.pc-ticker[data-pc-state="unavailable"] .pc-ticker__track,
.pc-ticker[data-pc-state="offline"] .pc-ticker__track,
.pc-ticker[data-pc-state="error"] .pc-ticker__track {
  animation: none;
}

@keyframes pcTicker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.pc-ticker__item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 0.9rem 1.75rem;
  white-space: nowrap;
  border-right: 1px solid var(--pc-border);
  font-variant-numeric: tabular-nums;
}

.pc-ticker__name {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pc-muted);
}

.pc-ticker__val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pc-white);
}

.pc-ticker__chg {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  color: var(--pc-grey);
}

.pc-ticker__item.is-up .pc-ticker__chg,
.pc-mcard.is-up .pc-mcard__chg { color: var(--pc-white); }

.pc-ticker__item.is-down .pc-ticker__chg,
.pc-mcard.is-down .pc-mcard__chg { color: var(--pc-muted); }

.pc-ticker__chg svg {
  width: 0.75rem;
  height: 0.75rem;
}

.pc-ticker__state {
  margin: 0;
  padding: 0.9rem 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--pc-muted);
  text-align: center;
}

.pc-ticker__state:empty,
.pc-ticker__state[hidden] { display: none; }

body.pc-motion-reduce .pc-ticker__track { animation: none; }

/* ——— Sections ——— */
.pc-section {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  background: var(--pc-void);
  color: var(--pc-white);
}

.pc-section--light {
  background: var(--pc-off);
  color: var(--pc-void);
}

.pc-section--light .pc-eyebrow { color: #888888; }
.pc-section--light .pc-h2 { color: var(--pc-void); }
.pc-section--light .pc-lead { color: #1a1a1a; }

.pc-section--surface {
  background: var(--pc-black-2);
  border-top: 1px solid var(--pc-border);
  border-bottom: 1px solid var(--pc-border);
}

.pc-section--tight { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }

.pc-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.pc-section-head__copy { max-width: 40rem; }

.pc-section-head--research {
  align-items: flex-start;
}

.pc-inner-main { min-height: 50vh; padding-top: calc(var(--pc-header-h, 4.5rem) + 1.25rem); }

/* ——— Blog article / index (B&W editorial) ——— */
.pc-article,
.pc-blogs {
  background: #000;
  color: #fff;
  padding: clamp(1.5rem, 4vw, 2.75rem) 0 clamp(3.5rem, 8vw, 5.5rem);
}

.pc-article__crumb,
.pc-article__back,
.pc-blogs__back {
  margin: 0 0 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pc-article__back,
.pc-blogs__back {
  margin: 2.25rem 0 0;
}

.pc-article__crumb a,
.pc-article__back a,
.pc-blogs__back a,
.pc-article__aside-all {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 0.25s var(--pc-ease);
}

.pc-article__crumb a:hover,
.pc-article__back a:hover,
.pc-blogs__back a:hover,
.pc-article__aside-all:hover {
  color: #fff;
}

.pc-article__layout {
  display: grid;
  grid-template-columns: minmax(15rem, 17.5rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
}

.pc-article__aside {
  position: sticky;
  top: calc(var(--pc-header-h, 4.5rem) + 1rem);
  padding: 1.15rem 1.1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.pc-article__aside-label {
  margin: 0 0 0.9rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.pc-article__aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.pc-article__aside-card {
  display: grid;
  grid-template-columns: 4.25rem 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.45rem;
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s var(--pc-ease), border-color 0.2s var(--pc-ease);
}

.pc-article__aside-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.pc-article__aside-card img {
  width: 4.25rem;
  height: 3.15rem;
  object-fit: cover;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pc-article__aside-card strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #fff;
}

.pc-article__aside-card em {
  display: block;
  margin-top: 0.25rem;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.42);
}

.pc-article__aside-empty {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.pc-article__aside-all {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 650;
}

.pc-article__title {
  margin: 0 0 0.65rem;
  max-width: 22ch;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
}

.pc-article__meta {
  margin: 0 0 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.pc-article__cover {
  margin: 0 0 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0a0a;
  overflow: hidden;
}

.pc-article__cover img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
}

.pc-article__excerpt {
  margin: 0 0 1.35rem;
  max-width: 40rem;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.pc-article__body {
  max-width: 40rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.pc-article__body p {
  margin: 0 0 1.05rem;
}

.pc-blogs__head {
  max-width: 36rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.pc-blogs__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
}

.pc-blogs__lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
}

.pc-blogs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.pc-blogs__card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    border-color 0.3s var(--pc-ease),
    transform 0.3s var(--pc-ease),
    background 0.3s var(--pc-ease);
}

.pc-blogs__card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.pc-blogs__card-media {
  display: block;
  overflow: hidden;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pc-blogs__card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.05);
  transition: transform 0.6s var(--pc-ease), filter 0.4s var(--pc-ease);
}

.pc-blogs__card:hover .pc-blogs__card-media img {
  transform: scale(1.04);
  filter: grayscale(0.05) contrast(1.06);
}

.pc-blogs__card-body {
  display: grid;
  gap: 0.4rem;
  padding: 1.1rem 1.15rem 1.25rem;
}

.pc-blogs__card-meta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.pc-blogs__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #fff;
}

.pc-blogs__card-excerpt {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.pc-blogs__empty {
  border: 1px dashed rgba(255, 255, 255, 0.22);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 900px) {
  .pc-article__layout {
    grid-template-columns: 1fr;
  }
  .pc-article__aside {
    position: static;
    order: 2;
  }
  .pc-article__main {
    order: 1;
  }
  .pc-blogs__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .pc-blogs__grid {
    grid-template-columns: 1fr;
  }
  .pc-article__title {
    max-width: none;
  }
}

/* ——— Service detail (B&W) ——— */
.pc-svc {
  background: #000;
  color: #fff;
  padding: clamp(1.5rem, 4vw, 2.75rem) 0 clamp(3.5rem, 8vw, 5.5rem);
}

.pc-svc__shell {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  max-width: min(100%, 52rem);
}

.pc-svc__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.pc-svc__crumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.25s var(--pc-ease);
}

.pc-svc__crumb a:hover { color: #fff; }

.pc-svc__icon {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.75rem;
  color: #fff;
  opacity: 0.85;
}

.pc-svc__icon svg {
  width: 100%;
  height: 100%;
}

.pc-svc__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
}

.pc-svc__summary {
  margin: 0;
  max-width: 38rem;
  font-size: 1.12rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

.pc-svc__media {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0a0a;
  overflow: hidden;
}

.pc-svc__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
}

.pc-svc__body {
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.pc-svc__body p { margin: 0 0 1.05rem; }

.pc-svc__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding-top: 0.35rem;
}

.pc-svc__cta-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.pc-svc__cta-link:hover { color: #fff; }

.pc-svc__related {
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pc-svc__related-title {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.pc-svc__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 0.75rem;
}

.pc-svc__card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  transition:
    border-color 0.25s var(--pc-ease),
    background 0.25s var(--pc-ease),
    transform 0.25s var(--pc-ease);
}

.pc-svc__card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.pc-svc__card-ico {
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.75);
}

.pc-svc__card-ico svg {
  width: 100%;
  height: 100%;
}

.pc-svc__card-label {
  color: rgba(255, 255, 255, 0.9);
}

/* ——— Glyph Portal (Clarity Over Complexity / 21st Glyph Portal) ——— */
.pc-glyph {
  --gp-p: 0;
  --gp-paper: #ffffff;
  --gp-ink: #0a0a0a;
  --gp-field: #050505;
  --gp-x: 50%;
  --gp-y: 48%;
  --gp-r: 0vmax;
  position: relative;
  background: var(--gp-paper);
  color: var(--gp-ink);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pc-glyph__track {
  position: relative;
  height: 240vh;
}

.pc-glyph__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--gp-paper);
  isolation: isolate;
}

.pc-glyph__field {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pc-glyph__field img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  filter: grayscale(0.2) contrast(1.05) brightness(0.72);
  will-change: transform, filter;
}

.pc-glyph__field--taj img {
  object-position: center 55%;
  filter: grayscale(0.08) contrast(1.08) brightness(0.78);
}

.pc-glyph__field-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

/* White paper veil — hole punches through into the photo */
.pc-glyph__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--gp-paper);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(
    circle var(--gp-r) at var(--gp-x) var(--gp-y),
    transparent 0%,
    transparent 99%,
    #000 100%
  );
  mask-image: radial-gradient(
    circle var(--gp-r) at var(--gp-x) var(--gp-y),
    transparent 0%,
    transparent 99%,
    #000 100%
  );
}

.pc-glyph__front {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(5.5rem, 12vh, 7rem) 1.5rem 2.5rem;
  text-align: center;
  pointer-events: none;
  will-change: opacity;
  color: var(--gp-ink);
}

.pc-glyph__front > * {
  pointer-events: auto;
}

.pc-glyph__top {
  position: absolute;
  top: clamp(1.25rem, 3vh, 2rem);
  left: clamp(1.25rem, 4vw, 2.5rem);
  right: clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.pc-glyph__brand,
.pc-glyph__cat {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
}

.pc-glyph__eyebrow {
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.55);
}

.pc-glyph__word {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.05em;
  max-width: 100%;
  line-height: 0.85;
}

.pc-glyph__letter {
  appearance: none;
  border: 0;
  background: transparent;
  color: #0a0a0a;
  font: inherit;
  font-size: clamp(3.4rem, 14vw, 9.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  padding: 0.04em 0.02em;
  cursor: pointer;
  border-radius: 0.08em;
  transition:
    color 0.35s var(--pc-ease),
    transform 0.35s var(--pc-ease),
    background 0.35s var(--pc-ease),
    box-shadow 0.35s var(--pc-ease);
}

.pc-glyph__letter:hover {
  color: rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
}

.pc-glyph__letter.is-active {
  color: #000;
  background: rgba(0, 0, 0, 0.04);
  box-shadow: inset 0 0 0 1.5px rgba(0, 0, 0, 0.55);
}

.pc-glyph__letter:focus-visible {
  outline: 2px solid #000;
  outline-offset: 4px;
}

.pc-glyph__support {
  margin: 1.1rem 0 0;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.62);
}

.pc-glyph__hint {
  position: absolute;
  bottom: clamp(1.4rem, 4vh, 2.4rem);
  left: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}

.pc-glyph__hint-arrow {
  display: inline-block;
  animation: pcGlyphBob 1.6s ease-in-out infinite;
}

@keyframes pcGlyphBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.pc-glyph__hole {
  --gp-scale: 1;
  position: absolute;
  left: var(--gp-x);
  top: var(--gp-y);
  z-index: 2;
  font-size: clamp(3.4rem, 14vw, 9.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(var(--gp-scale));
  transform-origin: center center;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.pc-glyph__hole span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.28);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
}

.pc-glyph__inside {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

.pc-glyph__inside-dim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0.36) 100%);
  pointer-events: none;
  transition: opacity 0.45s var(--pc-ease), background 0.45s var(--pc-ease);
}

.pc-glyph__inside-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--pc-max));
  margin-inline: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding-top: clamp(4.5rem, 10vh, 6rem);
  padding-bottom: clamp(1.5rem, 4vh, 2.5rem);
}

.pc-glyph__inside-shell--about {
  justify-content: flex-start;
  overflow: visible;
  gap: 1.5rem;
}

.pc-about-panel {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
  min-height: 0;
  flex: 0 1 auto;
  width: 100%;
}

@media (min-width: 900px) {
  .pc-about-panel {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }
}

.pc-about-panel__copy {
  min-width: 0;
}

.pc-about-panel__title {
  margin: 0 0 0.85rem;
  max-width: 16ch;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.pc-about-panel__lead {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38rem;
}

.pc-about-panel__lead--soft {
  color: rgba(255, 255, 255, 0.62);
}

.pc-about-panel__tagline {
  margin: 1rem 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.pc-about-panel__pills {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pc-about-panel__pills li {
  margin: 0;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.25);
}

.pc-about-panel__quote {
  margin: 0.85rem 0 1rem;
  padding: 0.85rem 1rem;
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.pc-about-panel__quote p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #fff;
}

.pc-about-panel__values {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.pc-about-panel__close {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.pc-about-panel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.pc-about-panel__media {
  margin: 0;
  justify-self: stretch;
  width: 100%;
  max-width: none;
}

.pc-about-panel__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(70vh, 36rem);
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.4rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  filter: none;
  background: rgba(0, 0, 0, 0.2);
}

.pc-about-panel__media figcaption {
  margin-top: 0.65rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 899px) {
  .pc-about-panel__media {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }
  .pc-about-panel__media img {
    max-height: min(42vh, 20rem);
  }
  .pc-about-panel__title { max-width: none; font-size: clamp(1.45rem, 6vw, 1.9rem); }
  .pc-about-panel__lead { font-size: 0.9rem; }

  .pc-glyph__inside-shell--about {
    gap: 1.25rem;
    padding-top: clamp(4rem, 9vh, 5rem);
    padding-bottom: 1.75rem;
  }
}

.pc-glyph.is-deep .pc-glyph__field-wash {
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.22) 50%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 45%, rgba(0, 0, 0, 0.42));
}

.pc-glyph__inside-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  max-width: 100%;
}

.pc-glyph__inside-eye {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.85rem;
}

.pc-glyph__inside-title {
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.85rem);
  max-width: 14ch;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.pc-glyph__inside-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  width: 100%;
}

@media (min-width: 900px) {
  .pc-glyph__inside-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }
}

.pc-glyph__inside-copy {
  max-width: 38rem;
}

.pc-glyph__inside-lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.pc-glyph__brand-line {
  margin: 1.35rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.pc-glyph__values {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin: 0.85rem auto 0;
  padding: 0.9rem 1.5rem;
  text-align: center;
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-self: center;
  max-width: min(100%, 36rem);
  width: max-content;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.pc-glyph__inside-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.35rem;
  max-width: 100%;
  width: 100%;
  justify-self: end;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.pc-glyph__inside-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  filter: grayscale(0.7) contrast(1.06) brightness(0.78);
}

/* End state: solid dark — height follows About content on every device */
.pc-glyph.is-done {
  background: #050505;
  color: #fff;
}

.pc-glyph.is-deep .pc-glyph__stage,
.pc-glyph.is-done .pc-glyph__stage {
  background: #050505;
}

.pc-glyph.is-done .pc-glyph__track {
  height: auto !important;
  min-height: 0 !important;
}

.pc-glyph.is-done .pc-glyph__stage {
  position: relative;
  height: auto;
  min-height: 0;
  overflow: visible;
}

.pc-glyph.is-done .pc-glyph__field,
.pc-glyph.is-done .pc-glyph__field-wash,
.pc-glyph.is-done .pc-glyph__veil,
.pc-glyph.is-done .pc-glyph__front,
.pc-glyph.is-done .pc-glyph__hole,
.pc-glyph.is-done .pc-glyph__hint {
  display: none !important;
}

.pc-glyph.is-done .pc-glyph__inside {
  position: relative;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
  padding: clamp(3.25rem, 7vw, 5.25rem) 0 clamp(2.5rem, 5vw, 3.75rem);
  background: #050505;
}

.pc-glyph.is-done .pc-glyph__inside-shell,
.pc-glyph.is-done .pc-glyph__inside-shell--about {
  height: auto;
  overflow: visible;
  justify-content: flex-start;
  padding-top: 0;
  padding-bottom: 0;
}

.pc-glyph.is-done .pc-glyph__inside-dim {
  display: none;
}

.pc-glyph.is-done .pc-about-panel {
  flex: 0 1 auto;
}

.pc-glyph.is-deep .pc-glyph__field-wash {
  opacity: 1;
}

/* Reduced-motion / fallback */
.pc-glyph.is-static .pc-glyph__track {
  height: auto;
}

.pc-glyph.is-static .pc-glyph__stage {
  position: relative;
  height: auto;
  min-height: 0;
  overflow: visible;
}

.pc-glyph.is-static .pc-glyph__front,
.pc-glyph.is-static .pc-glyph__hole,
.pc-glyph.is-static .pc-glyph__veil,
.pc-glyph.is-static .pc-glyph__hint {
  display: none;
}

.pc-glyph.is-static .pc-glyph__field {
  display: none;
}

.pc-glyph.is-static .pc-glyph__inside {
  position: relative;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: #050505;
}

.pc-glyph.is-static .pc-glyph__inside-dim {
  display: none;
}

.pc-glyph.is-static .pc-glyph__inside-shell {
  height: auto;
}

@media (max-width: 720px) {
  .pc-glyph__track { height: 160vh; }
  .pc-glyph__letter { font-size: clamp(2.4rem, 11vw, 3.8rem); }
  .pc-glyph__inside-media { justify-self: start; max-width: none; }
  .pc-glyph__top { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
}

body.pc-motion-reduce .pc-glyph__hint-arrow {
  animation: none;
}

/* Legacy editorial helpers retained for other light pages */
.pc-editorial { overflow: hidden; }
.pc-editorial__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 900px) {
  .pc-editorial__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
  }
}
.pc-editorial__type .pc-display { max-width: 11ch; }
.pc-editorial__body { padding-bottom: 0.5rem; }
.pc-editorial__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 1.75rem;
}
.pc-intro__chip {
  margin: 0;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pc-void);
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.03);
}
.pc-media {
  margin: 1.75rem 0 0;
  overflow: hidden;
  border: 1px solid var(--pc-border-dark);
}
.pc-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 1.1s var(--pc-ease);
}
.pc-media:hover img { transform: scale(1.03); }
.pc-media--intro { max-width: 28rem; }
.pc-media--about { margin-top: 2rem; aspect-ratio: 10 / 7; }
.pc-media--about img { width: 100%; height: 100%; object-fit: cover; }

/* ——— Services board — dark editorial + infographic ——— */
.pc-services-sec {
  position: relative;
  overflow: clip;
  background: #050505;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pc-svc-head {
  display: grid;
  gap: 1.25rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 52rem;
}

.pc-eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.5);
}

.pc-h2--on-dark,
.pc-h2--on-dark span {
  color: #fff;
}

.pc-svc-head__lead {
  margin: 0;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.pc-svc-board {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 960px) {
  .pc-svc-board {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.pc-svc-board__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pc-svc-row {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  align-items: baseline;
  gap: 0.85rem;
  width: 100%;
  margin: 0;
  padding: 1.15rem 0.35rem 1.15rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: color 0.35s var(--pc-ease);
}

.pc-svc-row:hover,
.pc-svc-row:focus-visible {
  color: rgba(255, 255, 255, 0.78);
  outline: none;
}

.pc-svc-row.is-active {
  color: #fff;
}

.pc-svc-row__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.55;
}

.pc-svc-row__title {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.pc-svc-row__mark {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0;
  background: #fff;
  transition: width 0.45s var(--pc-ease);
}

.pc-svc-row.is-active .pc-svc-row__mark {
  width: 100%;
}

.pc-svc-board__stage {
  position: relative;
  min-height: 18rem;
  padding: clamp(0.25rem, 1vw, 0.5rem) 0 0;
}

.pc-svc-board__count {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 0;
}

.pc-svc-board__count [data-pc-svc-count] {
  color: rgba(255, 255, 255, 0.22);
}

.pc-svc-feat {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.4s var(--pc-ease),
    transform 0.5s var(--pc-ease),
    visibility 0.4s;
}

.pc-svc-feat.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.pc-svc-feat__visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 12rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(ellipse 60% 55% at 50% 40%, rgba(255, 255, 255, 0.06), transparent 70%),
    rgba(255, 255, 255, 0.02);
}

.pc-svc-info {
  width: min(100%, 22rem);
  height: auto;
  color: #fff;
  padding: 1rem;
}

.pc-svc-info__label {
  fill: rgba(255, 255, 255, 0.45) !important;
}

.pc-svc-info__line {
  stroke-dasharray: 640;
  stroke-dashoffset: 640;
}

.pc-svc-info.is-playing .pc-svc-info__line {
  animation: pcSvcDraw 1.1s cubic-bezier(.16,1,.3,1) forwards;
}

.pc-svc-info__bar {
  transform-origin: bottom center;
  transform: scaleY(0.12);
  fill: #fff;
}

.pc-svc-info.is-playing .pc-svc-info__bar {
  animation: pcSvcBar 0.65s cubic-bezier(.16,1,.3,1) forwards;
}

.pc-svc-info.is-playing .pc-svc-info__bar:nth-child(1) { animation-delay: 0.04s; }
.pc-svc-info.is-playing .pc-svc-info__bar:nth-child(2) { animation-delay: 0.1s; }
.pc-svc-info.is-playing .pc-svc-info__bar:nth-child(3) { animation-delay: 0.16s; }
.pc-svc-info.is-playing .pc-svc-info__bar:nth-child(4) { animation-delay: 0.22s; }
.pc-svc-info.is-playing .pc-svc-info__bar:nth-child(5) { animation-delay: 0.28s; }
.pc-svc-info.is-playing .pc-svc-info__bar:nth-child(6) { animation-delay: 0.34s; }

.pc-svc-info__ring {
  opacity: 0;
  transform-origin: center;
  transform: scale(0.88);
}

.pc-svc-info.is-playing .pc-svc-info__ring {
  animation: pcSvcRing 0.8s cubic-bezier(.16,1,.3,1) forwards;
}

.pc-svc-info__core {
  transform-origin: center;
  transform: scale(0);
  fill: #fff;
}

.pc-svc-info.is-playing .pc-svc-info__core {
  animation: pcSvcCore 0.5s 0.18s cubic-bezier(.16,1,.3,1) forwards;
}

.pc-svc-info__arc { opacity: 0; }

.pc-svc-info.is-playing .pc-svc-info__arc {
  animation: pcSvcFade 0.65s 0.12s ease forwards;
}

.pc-svc-info__sweep {
  transform-origin: 210px 170px;
  opacity: 0.35;
}

.pc-svc-info.is-playing .pc-svc-info__sweep {
  animation: pcSvcSweep 2.8s ease-in-out infinite;
}

.pc-svc-info__dots circle,
.pc-svc-info__nodes circle {
  opacity: 0;
  fill: #fff;
}

.pc-svc-info.is-playing .pc-svc-info__dots circle,
.pc-svc-info.is-playing .pc-svc-info__nodes circle {
  animation: pcSvcFade 0.45s ease forwards;
}

.pc-svc-info.is-playing .pc-svc-info__dots circle:nth-child(1),
.pc-svc-info.is-playing .pc-svc-info__nodes circle:nth-child(1) { animation-delay: 0.3s; }
.pc-svc-info.is-playing .pc-svc-info__dots circle:nth-child(2),
.pc-svc-info.is-playing .pc-svc-info__nodes circle:nth-child(2) { animation-delay: 0.4s; }
.pc-svc-info.is-playing .pc-svc-info__dots circle:nth-child(3),
.pc-svc-info.is-playing .pc-svc-info__nodes circle:nth-child(3) { animation-delay: 0.5s; }
.pc-svc-info.is-playing .pc-svc-info__nodes circle:nth-child(4) { animation-delay: 0.58s; }

.pc-svc-info__pie circle[fill="#fff"] {
  fill: #050505;
}

@keyframes pcSvcDraw { to { stroke-dashoffset: 0; } }
@keyframes pcSvcBar { to { transform: scaleY(1); } }
@keyframes pcSvcRing { to { opacity: 1; transform: scale(1); } }
@keyframes pcSvcCore { to { transform: scale(1); } }
@keyframes pcSvcFade { to { opacity: 1; } }
@keyframes pcSvcSweep {
  0% { transform: rotate(-50deg); opacity: 0.2; }
  50% { opacity: 0.85; }
  100% { transform: rotate(310deg); opacity: 0.2; }
}

.pc-svc-feat__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 28rem;
}

.pc-svc-feat__title {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #fff;
}

.pc-svc-feat__body {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

.pc-svc-feat__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
  width: fit-content;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.25rem;
  transition: border-color 0.3s var(--pc-ease);
}

.pc-svc-feat__cta svg {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.35s var(--pc-ease);
}

.pc-svc-feat__cta:hover { border-bottom-color: #fff; }
.pc-svc-feat__cta:hover svg { transform: translateX(5px); }

@media (max-width: 959px) {
  .pc-svc-board__count { display: none; }
  .pc-svc-feat__visual { min-height: 11rem; }
}

@media (prefers-reduced-motion: reduce) {
  .pc-svc-feat,
  .pc-svc-info__line,
  .pc-svc-info__bar,
  .pc-svc-info__ring,
  .pc-svc-info__core,
  .pc-svc-info__arc,
  .pc-svc-info__sweep {
    animation: none !important;
    transition: none !important;
  }
  .pc-svc-info__line { stroke-dashoffset: 0; }
  .pc-svc-info__bar { transform: none; }
  .pc-svc-info__ring,
  .pc-svc-info__core,
  .pc-svc-info__arc,
  .pc-svc-info__dots circle,
  .pc-svc-info__nodes circle {
    opacity: 1;
    transform: none;
  }
}
/* Legacy card/cinema hooks retained */
.pc-services--cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

@media (min-width: 700px) {
  .pc-services--cards { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1100px) {
  .pc-services--cards { grid-template-columns: repeat(3, 1fr); }
}

.pc-service--card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 16.5rem;
  padding: 1.65rem 1.5rem 1.5rem;
  background: #fff;
  color: var(--pc-void);
  border: 0;
  transition:
    transform 0.45s var(--pc-ease),
    background 0.45s var(--pc-ease),
    box-shadow 0.45s var(--pc-ease);
}

.pc-service--card:hover {
  transform: translateY(-5px);
  background: #fafafa;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.pc-service--card .pc-service__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.pc-service--card .pc-service__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.16);
  color: #111;
  transition: background 0.4s var(--pc-ease), color 0.4s var(--pc-ease), border-color 0.4s var(--pc-ease);
}

.pc-service--card .pc-service__icon .pc-svc-svg,
.pc-service--card .pc-service__icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.pc-service--card:hover .pc-service__icon {
  background: #000;
  color: #fff;
  border-color: #000;
}

.pc-service--card .pc-service__num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--pc-muted);
}

.pc-service--card .pc-service__title {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.pc-service--card .pc-service__body {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #555;
}

.pc-service--card .pc-service__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
}

.pc-service--card .pc-service__more svg {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.4s var(--pc-ease);
}

.pc-service--card:hover .pc-service__more svg {
  transform: translateX(5px);
}

.pc-services--editorial,
.pc-services--cinema {
  /* legacy hooks kept for older markup */
}

.pc-services,
.pc-services--cinema,
.pc-services--editorial {
  display: grid;
  gap: 0;
  background: transparent;
  border: 0;
}

.pc-services--editorial {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.pc-service--row {
  display: grid;
  grid-template-columns: 3.5rem 2.5rem 1fr auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1.65rem 0.15rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  color: var(--pc-void);
  transition: background 0.4s var(--pc-ease), padding 0.4s var(--pc-ease);
}

.pc-service--row:hover {
  background: rgba(0, 0, 0, 0.03);
  padding-left: 0.65rem;
  padding-right: 0.65rem;
}

.pc-service--row .pc-service__num {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--pc-muted);
}

.pc-service--row .pc-service__icon {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.14);
  color: #111;
}

.pc-service--row .pc-service__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.pc-service--row .pc-service__main {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.pc-service--row .pc-service__title {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.pc-service--row .pc-service__body {
  margin: 0;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.55;
  max-width: 42rem;
}

.pc-service--row .pc-service__arrow {
  width: 1.35rem;
  height: 1.35rem;
  color: #111;
  transition: transform 0.4s var(--pc-ease);
}

.pc-service--row:hover .pc-service__arrow {
  transform: translateX(6px);
}

@media (max-width: 720px) {
  .pc-service--row {
    grid-template-columns: 2.5rem 1fr auto;
    gap: 0.75rem 1rem;
  }
  .pc-service--row .pc-service__icon { display: none; }
  .pc-service--row .pc-service__body { display: none; }
}

.pc-services--cinema {
  display: grid;
  gap: 1px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .pc-services--cinema { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1100px) {
  .pc-services--cinema { grid-template-columns: repeat(3, 1fr); }
}

.pc-service,
.pc-service--cinema {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--pc-off);
  color: var(--pc-void);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.5s var(--pc-ease),
    border-color 0.5s var(--pc-ease),
    box-shadow 0.5s var(--pc-ease);
  border: 1px solid transparent;
}

.pc-service--cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.55), transparent 55%);
  opacity: 0;
  transition: opacity 0.55s var(--pc-ease);
  pointer-events: none;
}

.pc-service--cinema:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.28);
  z-index: 1;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.pc-service--cinema:hover::before { opacity: 1; }

.pc-service__photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--pc-ink);
}

.pc-service__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transition: transform 0.8s var(--pc-ease);
}

.pc-service__photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.pc-service--cinema:hover .pc-service__photo img { transform: scale(1.05); }

.pc-service__body-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.35rem 1.5rem;
  gap: 0.65rem;
}

.pc-service__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pc-service__icon {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.14);
  color: var(--pc-void);
  transition: border-color 0.4s var(--pc-ease), background 0.4s var(--pc-ease);
}

.pc-service__icon svg,
.pc-svc-svg {
  width: 1.25rem;
  height: 1.25rem;
}

.pc-service--cinema:hover .pc-service__icon {
  border-color: rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.04);
}

.pc-service__num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #888888;
  font-variant-numeric: tabular-nums;
}

.pc-service__title {
  margin: 0.35rem 0 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.pc-service__body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #1a1a1a;
  flex: 1;
}

.pc-service__arrow {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--pc-void);
  transition: transform 0.45s var(--pc-ease);
}

.pc-service__arrow svg { width: 1.15rem; height: 1.15rem; }

.pc-service--cinema:hover .pc-service__arrow { transform: translateX(8px); }

/* ——— Markets ——— */
.pc-markets-sec { overflow: hidden; }

.pc-markets-head {
  display: grid;
  gap: 1.75rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

@media (min-width: 900px) {
  .pc-markets-head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

.pc-markets-head__copy { max-width: 36rem; }

.pc-markets-note {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: var(--pc-muted);
  max-width: 34rem;
}

.pc-markets-head__media {
  width: min(220px, 40vw);
  opacity: 0.35;
  filter: grayscale(1);
}

.pc-markets-head__media img { width: 100%; }

.pc-markets-state {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--pc-muted);
  letter-spacing: 0.04em;
}

.pc-markets-state:empty,
.pc-markets-state[hidden] { display: none; }

.pc-markets {
  display: grid;
  gap: 1px;
  background: var(--pc-border);
  border: 1px solid var(--pc-border);
}

@media (min-width: 640px) {
  .pc-markets { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1000px) {
  .pc-markets { grid-template-columns: repeat(4, 1fr); }
}

.pc-mcard {
  background: var(--pc-ink);
  padding: 1.25rem 1.2rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 9.5rem;
  transition: background 0.4s var(--pc-ease);
}

.pc-mcard:hover { background: var(--pc-surface); }

.pc-mcard__name {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pc-muted);
}

.pc-mcard__val {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--pc-white);
}

.pc-mcard__chg {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--pc-grey);
  font-variant-numeric: tabular-nums;
}

.pc-mcard__chg svg {
  width: 0.8rem;
  height: 0.8rem;
}

.pc-mcard__chart {
  margin-top: auto;
  height: 36px;
  opacity: 0.55;
}

.pc-mcard__chart svg { width: 100%; height: 100%; display: block; }

.pc-mcard__chart path {
  fill: none;
  stroke: var(--pc-grey);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pc-mcard.is-up .pc-mcard__chart path { stroke: var(--pc-white); }
.pc-mcard.is-down .pc-mcard__chart path { stroke: var(--pc-muted); }

.pc-mcard.is-loading .pc-mcard__val,
.pc-mcard.is-loading .pc-mcard__chg { color: var(--pc-muted); }

.pc-research-lines {
  margin-top: 2.5rem;
  color: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.pc-research-lines svg {
  width: 100%;
  height: auto;
  display: block;
}

.pc-research-line {
  stroke-dasharray: 8 10;
  animation: pcLineDrift 18s linear infinite;
}

.pc-research-line--2 { animation-duration: 26s; animation-direction: reverse; }

@keyframes pcLineDrift {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -240; }
}

body.pc-motion-reduce .pc-research-line { animation: none; }

/* ——— Research squeeze carousel (21st Carousel Squeeze) ——— */
.pc-squeeze-sec {
  position: relative;
  padding: clamp(3.25rem, 7vw, 5.5rem) 0 clamp(3.75rem, 8vw, 6.5rem);
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(255, 255, 255, 0.06), transparent 55%),
    #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.pc-squeeze {
  display: flex;
  flex-direction: column;
  gap: clamp(1.1rem, 2.5vw, 1.65rem);
}

.pc-squeeze__chrome {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  flex-wrap: wrap;
}

.pc-squeeze__titles .pc-eyebrow {
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.65rem;
}

.pc-squeeze__titles .pc-h2 {
  max-width: 14ch;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.pc-squeeze__titles .pc-h2 span {
  display: block;
}

.pc-squeeze__nav {
  display: inline-flex;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.pc-squeeze__btn {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background 0.35s var(--pc-ease),
    border-color 0.35s var(--pc-ease),
    transform 0.35s var(--pc-ease);
}

.pc-squeeze__btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
}

.pc-squeeze__btn:active {
  transform: none;
}

.pc-squeeze__btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.pc-squeeze__stage {
  position: relative;
  border-radius: 0.75rem;
  padding: 0;
}

.pc-squeeze__track {
  display: flex;
  gap: 0.6rem;
  height: clamp(300px, 52vh, 480px);
  width: 100%;
}

.pc-squeeze__panel {
  position: relative;
  flex: 0.38 1 0;
  min-width: 3rem;
  overflow: hidden;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #0a0a0a;
  cursor: pointer;
  isolation: isolate;
  transition:
    flex 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    min-width 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s var(--pc-ease),
    box-shadow 0.45s var(--pc-ease);
  outline: none;
}

.pc-squeeze__panel:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.pc-squeeze__panel.is-active {
  flex: 7.2 1 0;
  min-width: min(62%, 560px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.pc-squeeze__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.85) contrast(1.08) brightness(0.72);
  transform: scale(1.08);
  transition:
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s var(--pc-ease);
}

.pc-squeeze__panel.is-active img {
  filter: grayscale(0.35) contrast(1.05) brightness(0.92);
  transform: scale(1);
}

.pc-squeeze__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, transparent 35%),
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.78) 100%);
  pointer-events: none;
  opacity: 0.65;
  transition: opacity 0.5s var(--pc-ease);
}

.pc-squeeze__panel.is-active .pc-squeeze__shade {
  opacity: 1;
}

.pc-squeeze__label {
  position: absolute;
  left: 1.15rem;
  bottom: 1.1rem;
  margin: 0;
  max-width: calc(100% - 2.3rem);
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s 0.12s var(--pc-ease),
    transform 0.5s 0.12s var(--pc-ease);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

.pc-squeeze__panel.is-active .pc-squeeze__label {
  opacity: 1;
  transform: none;
}

.pc-squeeze__foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.5rem 2.5rem;
  padding-top: 0.35rem;
}

.pc-squeeze__copy {
  max-width: 38rem;
  min-width: 0;
}

.pc-squeeze__title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #fff;
}

.pc-squeeze__body {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
  max-width: 42ch;
}

.pc-squeeze__title.is-swap,
.pc-squeeze__body.is-swap {
  animation: pcSqueezeCopy 0.55s var(--pc-ease) both;
}

@keyframes pcSqueezeCopy {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.pc-squeeze__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  padding: 0.95rem 1.35rem;
  border-radius: 0.55rem;
  background: #f2f2f2;
  color: #0a0a0a;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid #f2f2f2;
  transition:
    background 0.35s var(--pc-ease),
    transform 0.35s var(--pc-ease),
    box-shadow 0.35s var(--pc-ease);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.pc-squeeze__cta:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.pc-squeeze__cta svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.4s var(--pc-ease);
}

.pc-squeeze__cta:hover svg {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .pc-squeeze__foot {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .pc-squeeze__cta {
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .pc-squeeze__track {
    height: 260px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pc-squeeze__track::-webkit-scrollbar { display: none; }
  .pc-squeeze__panel {
    flex: 0 0 16%;
    scroll-snap-align: center;
  }
  .pc-squeeze__panel.is-active {
    flex: 0 0 72%;
    min-width: 72%;
  }
}

body.pc-motion-reduce .pc-squeeze__panel,
body.pc-motion-reduce .pc-squeeze__panel img,
body.pc-motion-reduce .pc-squeeze__label,
body.pc-motion-reduce .pc-squeeze__title,
body.pc-motion-reduce .pc-squeeze__body {
  transition: none !important;
  animation: none !important;
}

/* ——— Principles ——— */
.pc-principles {
  background: var(--pc-void);
  border-top: 1px solid var(--pc-border);
}

.pc-principles__head { margin-bottom: 2.5rem; max-width: 36rem; }

.pc-principles__rail {
  display: grid;
  gap: 1px;
  background: var(--pc-border);
  border: 1px solid var(--pc-border);
}

@media (min-width: 768px) {
  .pc-principles__rail { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1100px) {
  .pc-principles__rail { grid-template-columns: repeat(4, 1fr); }
}

.pc-principle {
  background: var(--pc-black);
  padding: 1.75rem 1.4rem 1.9rem;
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: background 0.4s var(--pc-ease);
}

.pc-principle:hover { background: var(--pc-ink); }

.pc-principle__num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--pc-muted);
  font-variant-numeric: tabular-nums;
}

.pc-principle__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.pc-principle__body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--pc-grey);
}

/* ——— About ——— */
.pc-about-sec {
  background: var(--pc-off);
  color: var(--pc-void);
}

.pc-split,
.pc-split--about {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 900px) {
  .pc-split--about {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.pc-about-kicker {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888888;
}

.pc-about-meta {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.pc-about-meta > div {
  display: grid;
  gap: 0.25rem;
}

.pc-about-meta strong {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888888;
  font-weight: 600;
}

.pc-about-meta span {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #111111;
}

/* ——— About story (full narrative) ——— */
.pc-about-story {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pc-about-story__head {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.pc-about-story__lead {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.68);
}

.pc-about-story__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

@media (min-width: 960px) {
  .pc-about-story__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  }
}

.pc-about-story__block {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.pc-about-story__block h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 750;
  letter-spacing: -0.025em;
  color: #fff;
}

.pc-about-story__block p {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

.pc-about-story__list {
  margin: 0.75rem 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.pc-about-story__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.pc-about-story__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 1px;
  background: #fff;
}

.pc-about-story__quote {
  margin: 1.75rem 0;
  padding: 1.25rem 1.35rem;
  border-left: 2px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.pc-about-story__quote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: #fff;
  font-weight: 500;
}

.pc-about-story__values {
  margin: 1.25rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.pc-about-story__close {
  margin: 1.5rem 0 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff;
}

.pc-about-story__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.pc-about-story__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.4rem;
}

.pc-about-story__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.05);
}

.pc-about-story--in-glyph {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.pc-glyph.pc-about-combined {
  border-bottom: 0;
}

.pc-glyph__inside-media img {
  filter: grayscale(0.15) contrast(1.04) brightness(0.92);
}

/* ——— Visual band ——— */
.pc-visual,
.pc-visual--photo {
  position: relative;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--pc-void);
  color: var(--pc-white);
}

.pc-visual__photo {
  position: absolute;
  inset: 0;
}

.pc-visual__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(0.45);
}

.pc-visual__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55));
}

.pc-visual__india,
.pc-visual__bull {
  position: absolute;
  pointer-events: none;
  opacity: 0.18;
  filter: grayscale(1);
  will-change: transform;
}

.pc-visual__india {
  right: 4%;
  bottom: 8%;
  width: min(280px, 42vw);
}

.pc-visual__bull {
  right: 18%;
  top: 12%;
  width: min(160px, 28vw);
  opacity: 0.12;
}

.pc-visual__copy {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.pc-visual__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-top: 2rem;
}

.pc-visual__stats li {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.pc-india-outline,
.pc-india-outline__land {
  width: 100%;
  height: auto;
  stroke: rgba(255, 255, 255, 0.45);
  fill: none;
}

.pc-kolam,
.pc-kolam--inline {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.45);
}

.pc-jaali,
.pc-jaali--bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28px;
  opacity: 0.25;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.35) 0 1px,
    transparent 1px 14px
  );
}

.pc-jaali-svg { width: 100%; height: 28px; display: block; color: rgba(255, 255, 255, 0.35); }

.pc-mandala {
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  opacity: 0.5;
}

/* ——— Testimonials ——— */
.pc-testimonials-sec { position: relative; }

.pc-testimonials {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .pc-testimonials { grid-template-columns: 1fr 1fr; }
}

.pc-testimonial {
  background: var(--pc-ink);
  border: 1px solid var(--pc-border);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  transition: border-color 0.4s var(--pc-ease), background 0.4s var(--pc-ease);
}

.pc-testimonial:hover {
  border-color: var(--pc-border-strong);
  background: var(--pc-surface);
}

.pc-testimonial__mark {
  color: rgba(255, 255, 255, 0.35);
  font-size: 2rem;
  line-height: 1;
}

.pc-testimonial__quote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--pc-grey);
}

.pc-testimonial__who {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
}

.pc-testimonial__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--pc-border-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.pc-testimonial__who cite {
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ——— CTA ——— */
.pc-cta,
.pc-cta--photo {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--pc-white);
  background: var(--pc-void);
}

.pc-cta__bg {
  position: absolute;
  inset: 0;
}

.pc-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.35) contrast(1.1);
}

.pc-cta__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.78)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.85));
}

.pc-cta__inner {
  position: relative;
  z-index: 1;
  margin-inline: auto;
}

.pc-cta .pc-actions { justify-content: center; }
.pc-cta .pc-lead { margin-inline: auto; color: rgba(255, 255, 255, 0.72); }

/* ——— FAQ (dark numbered list) ——— */
.pc-faq-sec {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: clamp(3.5rem, 8vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
}

.pc-faq-sec__inner {
  max-width: 42rem;
}

.pc-faq-sec__head {
  text-align: center;
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
}

.pc-faq-sec__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.15rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  color: #0a0a0a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pc-faq-sec__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #fff;
  text-wrap: balance;
}

.pc-faq-sec__lead {
  margin: 0.9rem auto 0;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.pc-faq {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
}

.pc-faq__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  align-items: start;
}

.pc-faq__num {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.4rem;
  background: #262626;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.pc-faq__body {
  min-width: 0;
  padding-top: 0.15rem;
}

.pc-faq__q {
  margin: 0 0 0.45rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #fff;
}

.pc-faq__a {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 38rem;
}

@media (max-width: 520px) {
  .pc-faq__item { gap: 0.85rem; }
  .pc-faq__num {
    width: 1.9rem;
    height: 1.9rem;
    font-size: 0.78rem;
  }
}

/* ——— Contact (Asset Grow form_details) ——— */
.pc-contact {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
}

.pc-contact__head {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 40rem;
}

.pc-contact__lead {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
}

.pc-contact-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 900px) {
  .pc-contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }
}

.pc-contact-info {
  display: grid;
  gap: 0.85rem;
}

.pc-contact-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.45rem;
  padding: 1rem 1.15rem;
}

.pc-contact-row .pc-icon {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  color: #fff;
}

.pc-contact-row h4 {
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.pc-contact-row a,
.pc-contact-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  text-decoration: none;
  line-height: 1.5;
}

.pc-contact-row a:hover { color: #fff; }

.pc-contact-directions {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.pc-contact-phones,
.pc-contact-emails {
  display: grid;
  gap: 0.25rem;
}

.pc-map {
  margin-top: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.45rem;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 10;
}

.pc-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.pc-map-note {
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.45);
}

.pc-form {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

/* Beat shared forms.php light card (injected after theme CSS) */
.pc-contact .pc-form .wb-lead-card {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.45rem;
  box-shadow: none;
  padding: clamp(1.35rem, 3vw, 2rem);
  color: #fff;
}

.pc-contact .pc-form .wb-lead-title {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
}

.pc-contact .pc-form .wb-lead-sub {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
}

.pc-contact .pc-form .wb-lead-field label {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.pc-contact .pc-form .wb-lead-field input,
.pc-contact .pc-form .wb-lead-field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.35rem;
  color: #fff;
  font: inherit;
}

.pc-contact .pc-form .wb-lead-field input::placeholder,
.pc-contact .pc-form .wb-lead-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.pc-contact .pc-form .wb-lead-field input:focus,
.pc-contact .pc-form .wb-lead-field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.09);
}

.pc-contact .pc-form .wb-lead-captcha-q {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 0.35rem;
}

.pc-contact .pc-form .wb-lead-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.85rem 1.1rem;
  background: #fff !important;
  color: #000 !important;
  border: 1px solid #fff;
  border-radius: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  filter: none;
}

.pc-contact .pc-form .wb-lead-submit:hover {
  background: #e8e8e8 !important;
  filter: none;
  transform: translateY(-1px);
}

.pc-contact .pc-form .wb-lead-note {
  color: rgba(255, 255, 255, 0.4);
}

.pc-contact .pc-form .wb-lead-field.is-invalid input,
.pc-contact .pc-form .wb-lead-field.is-invalid textarea {
  border-color: #f87171;
  background: rgba(127, 29, 29, 0.25);
}

.pc-contact .pc-form .wb-lead-alert-success {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border-color: rgba(110, 231, 183, 0.35);
}

.pc-contact .pc-form .wb-lead-alert-error {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border-color: rgba(252, 165, 165, 0.35);
}

/* ——— Calculators (home + inner) ——— */
.pc-calcs {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pc-calcs__lead {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
}

.pc-calcs__widgets {
  margin-top: 0.25rem;
}

.pc-calcs .wb-calc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

@media (max-width: 900px) {
  .pc-calcs .wb-calc-grid {
    grid-template-columns: 1fr;
  }
}

.pc-calcs .wb-calc-card,
.pc-calc-page .wb-calc-card,
.pc-body .tp-subpage .wb-calc-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.45rem;
  box-shadow: none;
  color: #fff;
}

.pc-calcs .wb-calc-card h3,
.pc-calc-page .wb-calc-card h3,
.pc-body .tp-subpage .wb-calc-card h3 {
  color: #fff;
  font-family: inherit;
  letter-spacing: -0.02em;
}

.pc-calcs .wb-calc-field label,
.pc-calc-page .wb-calc-field label,
.pc-body .tp-subpage .wb-calc-field label {
  color: rgba(255, 255, 255, 0.55);
}

.pc-calcs .wb-calc-field input[type="number"],
.pc-calc-page .wb-calc-field input[type="number"],
.pc-body .tp-subpage .wb-calc-field input[type="number"] {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 0.35rem;
}

.pc-calcs .wb-calc-field input[type="number"]:focus,
.pc-calc-page .wb-calc-field input[type="number"]:focus,
.pc-body .tp-subpage .wb-calc-field input[type="number"]:focus {
  outline-color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.65);
}

.pc-calcs .wb-calc-field input[type="range"],
.pc-calc-page .wb-calc-field input[type="range"],
.pc-body .tp-subpage .wb-calc-field input[type="range"] {
  accent-color: #fff;
}

.pc-calcs .wb-calc-result,
.pc-calc-page .wb-calc-result,
.pc-body .tp-subpage .wb-calc-result {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.4rem;
}

.pc-calcs .wb-calc-result .lbl,
.pc-calc-page .wb-calc-result .lbl {
  color: rgba(255, 255, 255, 0.5);
}

.pc-calcs .wb-calc-result .val,
.pc-calc-page .wb-calc-result .val {
  color: #fff;
}

.pc-calcs .wb-calc-break div,
.pc-calc-page .wb-calc-break div {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.35rem;
}

.pc-calcs .wb-calc-break span,
.pc-calc-page .wb-calc-break span {
  color: rgba(255, 255, 255, 0.45);
}

.pc-calcs .wb-calc-break strong,
.pc-calc-page .wb-calc-break strong {
  color: #fff;
}

.pc-calcs .wb-calc-explain,
.pc-calcs .wb-calc-note,
.pc-calc-page .wb-calc-explain,
.pc-calc-page .wb-calc-note,
.pc-body .tp-subpage .wb-calc-note {
  color: rgba(255, 255, 255, 0.45);
}

.pc-calcs .wb-calc-actions button,
.pc-calc-page .wb-calc-actions button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  border-radius: 0.35rem;
}

.pc-calcs .wb-calc-actions a.primary,
.pc-calc-page .wb-calc-actions a.primary {
  background: #fff;
  border-color: #fff;
  color: #000;
  border-radius: 0.35rem;
  box-shadow: none;
}

.pc-calcs__more {
  margin: 1.5rem 0 0;
  text-align: center;
}

.pc-calcs__more a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.pc-calcs__more a:hover { color: #fff; }

/* ——— Dedicated calculators page (Asset Grow sidebar, B&W) ——— */
.pc-calc-page {
  background: #000;
  color: #fff;
  min-height: 60vh;
  padding-top: clamp(5.5rem, 12vh, 7rem);
}

.pc-calc-page__head {
  max-width: 40rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.pc-calc-page__lead {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
}

.pc-calc-page__empty {
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 0.45rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
}

.pc-calc-page__note {
  margin: 1.35rem 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}

.pc-calc-page__note a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.pc-calc-page__note a:hover { text-decoration: underline; }

.pc-calc-page__back {
  margin: 2rem 0 0;
}

.pc-calc-page__back a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-decoration: none;
}

.pc-calc-page__back a:hover { color: #fff; }

.pc-body .tp-subpage {
  background: #000;
  color: #fff;
}

.pc-body .tp-subpage-head p,
.pc-body .tp-note {
  color: rgba(255, 255, 255, 0.62);
}

.pc-body .tp-empty {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.pc-body .tp-subpage a {
  color: #fff;
}

/* ——— Footer (Asset Grow 4-column) ——— */
.pc-footer {
  background: #000;
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.pc-footer a { color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.pc-footer a:hover { color: #fff; }

.pc-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.pc-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.pc-footer__brand img {
  height: 52px;
  width: auto;
  max-width: min(240px, 70vw);
  object-fit: contain;
}

.pc-footer__blurb {
  margin: 0;
  max-width: 26rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.pc-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.pc-footer__social a {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
}

.pc-footer__social a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.pc-footer__social .pc-icon {
  width: 1rem;
  height: 1rem;
}

.pc-footer__col h4 {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

.pc-footer__links {
  display: grid;
  gap: 0.55rem;
}

.pc-footer__links a,
.pc-footer__links span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.pc-footer__links a:hover { color: #fff; }

.pc-footer__disclaimer {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.pc-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.pc-footer__bottom a { color: rgba(255, 255, 255, 0.55); }
.pc-footer__bottom a:hover { color: #fff; }

@media (max-width: 980px) {
  .pc-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pc-footer__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.35rem;
  }
  .pc-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.pc-disclaimer {
  background: var(--pc-black);
  border-top: 1px solid var(--pc-border);
  padding: 1.25rem 0 1.75rem;
}

.pc-disclaimer p {
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--pc-muted);
  max-width: 72rem;
}

.pc-disclaimer a { color: var(--pc-grey); }

/* ——— Reveal / animation ———
   Only hide content when JS motion is confirmed active.
   Prevents blank sections if observers/Lenis fail. */
.pc-js.pc-motion-ok .pc-reveal:not(.is-in),
.pc-js.pc-motion-ok .pc-anim:not(.is-in),
.pc-js.pc-motion-ok .pc-anim-section:not(.is-in) {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.85s var(--pc-ease),
    transform 0.85s var(--pc-ease);
  transition-delay: var(--pc-delay, calc(var(--pc-i, 0) * 50ms));
}

.pc-reveal.is-in,
.pc-anim.is-in,
.pc-anim-section.is-in,
.pc-reveal,
.pc-anim,
.pc-anim-section {
  opacity: 1;
  transform: none;
}

.pc-js.pc-motion-ok .pc-service.pc-anim:not(.is-in),
.pc-js.pc-motion-ok .pc-insight.pc-anim:not(.is-in),
.pc-js.pc-motion-ok .pc-principle.pc-anim:not(.is-in),
.pc-js.pc-motion-ok .pc-testimonial.pc-anim:not(.is-in),
.pc-js.pc-motion-ok .pc-mcard.pc-anim:not(.is-in),
.pc-js.pc-motion-ok .pc-faq__item.pc-anim:not(.is-in),
.pc-js.pc-motion-ok .pc-calcs .wb-calc-card.pc-anim:not(.is-in),
.pc-js.pc-motion-ok .pc-contact-row.pc-anim:not(.is-in) {
  transform: translate3d(0, 28px, 0);
}

.pc-js.pc-motion-ok .pc-line:not(.is-in) {
  opacity: 0;
  transform: translate3d(0, 0.85em, 0);
  transition:
    opacity 0.8s var(--pc-ease),
    transform 0.8s var(--pc-ease);
  transition-delay: calc(var(--pc-i, 0) * 70ms);
}

.pc-line,
.pc-line.is-in,
.pc-split-ready.is-in .pc-line,
.pc-anim.is-in .pc-line,
.pc-hero-in .pc-hero .pc-line {
  opacity: 1;
  transform: none;
}

body.pc-motion-reduce .pc-reveal,
body.pc-motion-reduce .pc-anim,
body.pc-motion-reduce .pc-anim-section,
body.pc-motion-reduce .pc-line,
body.pc-motion-reduce .pc-bull {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

body.pc-motion-reduce .pc-ring,
body.pc-motion-reduce .pc-pulse,
body.pc-motion-reduce .pc-bull__glow,
body.pc-motion-reduce .pc-bull__media,
body.pc-motion-reduce .pc-bull__img {
  animation: none !important;
}

/* ——— Lenis ——— */
html.lenis,
html.lenis body { height: auto; }

.lenis.lenis-smooth { scroll-behavior: auto !important; }

.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

.lenis.lenis-stopped { overflow: hidden; }

/* ——— Narrow / mobile / laptop polish ——— */
@media (min-width: 960px) and (max-width: 1440px) {
  .pc-shell,
  .pc-shell--wide {
    width: min(100% - 3.5rem, var(--pc-max));
  }
  .pc-shell--wide {
    width: min(100% - 3.5rem, var(--pc-max-wide));
  }
  .pc-section {
    padding: clamp(3.25rem, 6vw, 5rem) 0;
  }
  .pc-app {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  }
  .pc-nav {
    gap: clamp(0.65rem, 1.2vw, 1.1rem);
  }
  .pc-nav > a,
  .pc-nav-drop__trigger {
    font-size: 0.68rem;
  }
}

@media (max-width: 720px) {
  .pc-glyph__track { height: 160vh; }
  .pc-glyph__letter { font-size: clamp(2.4rem, 11vw, 3.8rem); }
  .pc-glyph__support { font-size: 0.95rem; }
  .pc-glyph__top { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
  .pc-about-panel__title { font-size: clamp(1.35rem, 6.5vw, 1.75rem); }
  .pc-about-panel__tagline { font-size: 0.95rem; }
  .pc-about-panel__pills li {
    font-size: 0.68rem;
    padding: 0.35rem 0.55rem;
  }
}

@media (max-width: 390px) {
  .pc-shell,
  .pc-shell--wide { width: min(100% - 1.25rem, var(--pc-max)); }

  .pc-display { font-size: clamp(2rem, 10vw, 2.55rem); }

  .pc-actions { flex-direction: column; align-items: stretch; }
  .pc-actions .pc-btn { width: 100%; }
}

@media (max-width: 768px) {
  .pc-hero,
  .pc-hero--cinema {
    min-height: 100svh;
  }
  .pc-hero__inner {
    padding: 1.75rem 0 1.5rem;
    gap: 1.75rem;
    min-height: 0;
  }
  .pc-bull__hud { opacity: 0.22; }
  .pc-section { padding: clamp(3rem, 10vw, 4.5rem) 0; }
  .pc-h2 { font-size: clamp(1.55rem, 6.5vw, 2.15rem); }
  .pc-lead { font-size: 0.95rem; }
  .pc-app { padding: clamp(3rem, 10vw, 4.5rem) 0; }
  .pc-svc__title,
  .pc-article__title,
  .pc-blogs__title {
    font-size: clamp(1.55rem, 6.5vw, 2.1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-ring,
  .pc-pulse,
  .pc-bull__glow,
  .pc-bull__media,
  .pc-bull__img,
  .pc-ticker__track,
  .pc-research-line {
    animation: none !important;
  }
}

/* ——— App download (PC B&W — matches About land) ——— */
.pc-app {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  overflow: hidden;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pc-app__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.pc-app__copy {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.pc-app__title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.06;
  color: #fff;
}

.pc-app__title-accent {
  color: rgba(255, 255, 255, 0.55);
}

.pc-app__stores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  align-items: stretch;
  width: 100%;
  max-width: 22.5rem;
}

.pc-app__badge {
  display: block;
  width: 100%;
  min-width: 0;
  line-height: 0;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.28s var(--pc-ease), box-shadow 0.28s var(--pc-ease), opacity 0.28s var(--pc-ease);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

a.pc-app__badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

a.pc-app__badge:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

.pc-app__badge.is-disabled {
  opacity: 0.72;
  cursor: default;
}

.pc-app__badge-svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 156 / 44;
}

.pc-app__visual {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 34rem;
  overflow: hidden;
}

.pc-app__visual::before {
  content: "";
  position: absolute;
  inset: 12% 8% 8%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.pc-app__phones {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.55)) grayscale(0.2) contrast(1.05);
  will-change: transform;
  transform: translate3d(0, var(--pc-app-parallax, 0px), 0) scale(1.04);
  transition: transform 0.12s linear;
}

[data-pc-app-item],
[data-pc-app-visual] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.9s var(--pc-ease),
    transform 0.9s var(--pc-ease);
}

.pc-app.is-in [data-pc-app-item],
.pc-app.is-in [data-pc-app-visual] {
  opacity: 1;
  transform: none;
}

.pc-app.is-in [data-pc-app-item]:nth-child(1) { transition-delay: 0.06s; }
.pc-app.is-in [data-pc-app-item]:nth-child(2) { transition-delay: 0.14s; }
.pc-app.is-in [data-pc-app-item]:nth-child(3) { transition-delay: 0.22s; }
.pc-app.is-in [data-pc-app-visual] { transition-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  .pc-app__phones {
    transform: none;
    transition: none;
    will-change: auto;
  }
  [data-pc-app-item],
  [data-pc-app-visual] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .pc-app__inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .pc-app__visual {
    order: -1;
    max-width: 26rem;
  }
  .pc-app__stores {
    max-width: none;
    gap: 0.5rem;
  }
  .pc-app__phones {
    transform: none;
    will-change: auto;
  }
}

/* ��� Legal / CMS document pages (Muvesta structure, PC monochrome) ��� */
.pc-legal {
  padding: clamp(2.75rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background: #050505;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.pc-legal__shell { max-width: 44rem; }
.pc-legal__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1.75rem;
}
.pc-legal__crumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 600;
}
.pc-legal__crumb a:hover { color: #fff; }
.pc-legal__head .pc-eyebrow { margin-bottom: 0.75rem; }
.pc-legal__head h1 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #fff;
}
.pc-legal__meta {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}
.pc-legal__body {
  margin-top: 2rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}
.pc-legal__body br + br { display: block; content: ''; margin-top: 0.35rem; }
.pc-legal__reach {
  margin-top: 2.75rem;
  padding: 1.35rem 1.35rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}
.pc-legal__reach h2 {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.pc-legal__reach ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.pc-legal__reach a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.pc-legal__reach a:hover { border-bottom-color: #fff; }
.pc-legal__back { margin: 2.5rem 0 0; }
.pc-legal__back a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
}
.pc-legal__back a:hover { color: #fff; }
