/* Performance Clinic OS: marketing design system (warm editorial / amber accent).
 * Staff app mirrors tokens in staff/src/styles/pcos-tokens.css (Inter Tight display, JetBrains Mono); sync when changing global brand. */

/* Edge-to-edge viewport: remove default html/body margin and match page background */
html {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #080a07;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #080a07;
  overflow-x: clip;
}

.pcos-site {
  /* === BACKGROUNDS === */
  --pcos-bg: #080a07;
  --pcos-surface-primary: #0c0f0b;
  --pcos-surface-secondary: #111410;
  --pcos-surface-tertiary: #161a14;
  --pcos-surface-card: #0f1210;
  --pcos-surface-overlay: rgba(8, 10, 7, 0.9);
  --pcos-surface-warm: #f5f0e8;
  --pcos-surface-warm-card: #ede8de;

  /* Aliases for platform CSS */
  --pcos-bg-elevated: var(--pcos-surface-secondary);
  --pcos-surface-1: var(--pcos-surface-primary);
  --pcos-surface-2: var(--pcos-surface-secondary);
  --pcos-surface-3: rgba(255, 248, 230, 0.04);

  /* === BORDERS === */
  --pcos-border: rgba(255, 248, 230, 0.07);
  --pcos-border-strong: rgba(255, 248, 230, 0.11);
  --pcos-border-active: rgba(210, 158, 60, 0.55);
  --pcos-border-glow: rgba(210, 158, 60, 0.22);

  /* === TEXT === */
  --pcos-text: rgba(245, 240, 228, 0.95);
  --pcos-text-muted: rgba(245, 240, 228, 0.62);
  --pcos-text-dim: rgba(245, 240, 228, 0.38);
  --pcos-text-disabled: rgba(245, 240, 228, 0.22);
  --pcos-text-on-warm: #1a1a14;
  --pcos-text-muted-on-warm: #4a4538;

  /* === ACCENT: amber-gold === */
  --pcos-accent: #c8943a;
  --pcos-accent-hover: #daa84a;
  --pcos-accent-deep: #7a5418;
  --pcos-accent-glow: rgba(200, 148, 58, 0.15);
  --pcos-accent-muted: rgba(200, 148, 58, 0.25);
  --pcos-teal-live: #5abf94;

  /* Semantic */
  --pcos-success: #3ddc97;
  --pcos-warning: #e8b949;
  --pcos-error: #ff6b6b;
  --pcos-info: var(--pcos-accent);

  /* === TYPOGRAPHY === */
  --pcos-font-sans: 'DM Sans', system-ui, sans-serif;
  --pcos-font-display: 'Inter Tight', 'DM Sans', system-ui, sans-serif;
  --pcos-font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --pcos-brand-primary: var(--pcos-accent);

  /* === RADIUS === */
  --pcos-r-sm: 8px;
  --pcos-r-card: 12px;
  --pcos-r-panel: 16px;
  --pcos-r-hero: 18px;

  /* === MOTION === */
  --pcos-motion: 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  --pcos-motion-slow: 0.38s cubic-bezier(0.16, 1, 0.3, 1);

  background: var(--pcos-bg);
  color: var(--pcos-text);
  font-family: var(--pcos-font-sans);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}

.pcos-site .pcos-skip {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 12px 16px;
  background: var(--pcos-surface-secondary);
  color: var(--pcos-accent);
  font-size: 13px;
  font-weight: 500;
}
.pcos-site .pcos-skip:focus {
  left: 16px;
  top: 16px;
}

.pcos-site .pcos-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;
}

/* Header */
.pcos-site .pcos-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px max(20px, env(safe-area-inset-right)) 12px max(16px, env(safe-area-inset-left));
  transition: background var(--pcos-motion), box-shadow var(--pcos-motion);
}
.pcos-site .pcos-header.is-solid {
  background: var(--pcos-surface-overlay);
  backdrop-filter: blur(16px) saturate(1.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.pcos-site .pcos-header-inner {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pcos-site .pcos-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--pcos-text);
  line-height: 0;
}
.pcos-site .pcos-logo svg {
  display: block;
  width: 180px;
  height: auto;
  max-width: min(180px, 48vw);
}
.pcos-site .pcos-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
.pcos-site .pcos-nav a {
  color: var(--pcos-text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: var(--pcos-r-sm);
  transition: color var(--pcos-motion), background var(--pcos-motion);
}
.pcos-site .pcos-nav a:hover {
  color: var(--pcos-text);
  background: rgba(255, 255, 255, 0.04);
}
.pcos-site .pcos-header-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pcos-site .pcos-mobile-ctas {
  display: none;
}
.pcos-site .pcos-menu-btn {
  display: none;
  background: var(--pcos-surface-tertiary);
  border: 1px solid var(--pcos-border);
  color: var(--pcos-text);
  padding: 8px;
  border-radius: var(--pcos-r-sm);
  cursor: pointer;
}
@media (max-width: 900px) {
  .pcos-site .pcos-header {
    padding: 10px max(12px, env(safe-area-inset-right)) 12px max(12px, env(safe-area-inset-left));
  }
  /* Marketing + contact: logo fills left; hamburger + CTAs stack on the right (CLINIC OS wordmark keeps room). */
  .pcos-site:not(.pcos-clients-portal) .pcos-header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, max-content);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 8px;
  }
  .pcos-site:not(.pcos-clients-portal) .pcos-logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    align-self: center;
    min-width: 0;
    max-width: 100%;
  }
  .pcos-site:not(.pcos-clients-portal) .pcos-logo svg {
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block;
  }
  .pcos-site:not(.pcos-clients-portal) .pcos-menu-btn {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-left: 0;
    display: inline-flex;
  }
  .pcos-site:not(.pcos-clients-portal) .pcos-nav {
    display: none;
  }
  .pcos-site:not(.pcos-clients-portal) .pcos-nav.is-open {
    grid-column: 1 / -1;
    grid-row: 3;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    background: var(--pcos-surface-secondary);
    padding: 12px;
    border: 1px solid var(--pcos-border);
    border-radius: var(--pcos-r-sm);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  }
  .pcos-site .pcos-header-ctas {
    display: none;
  }
  .pcos-site:not(.pcos-clients-portal) .pcos-mobile-ctas {
    grid-column: 2;
    grid-row: 2;
    justify-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
    min-width: 0;
    margin-left: 0;
  }
  .pcos-site.pcos-clients-portal .pcos-header-inner {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    align-items: center;
    gap: 8px 10px;
  }
  .pcos-site.pcos-clients-portal .pcos-logo {
    flex: 1 1 auto;
    min-width: 0;
  }
  .pcos-site.pcos-clients-portal .pcos-logo svg {
    max-width: min(136px, calc(100vw - 32px));
  }
  .pcos-site.pcos-clients-portal .pcos-nav {
    flex: 1 0 100%;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px 8px;
    row-gap: 4px;
  }
  .pcos-site.pcos-clients-portal .pcos-nav a {
    font-size: 12px;
    padding: 8px 10px;
  }
  .pcos-site .pcos-mobile-ctas .pcos-btn--sm {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }
  .pcos-site #pcosMain {
    padding-top: 100px;
  }
  .pcos-site .pcos-hero {
    padding-top: max(120px, env(safe-area-inset-top, 0px) + 102px);
  }
}

@media (max-width: 380px) {
  .pcos-site .pcos-mobile-ctas .pcos-btn--sm {
    padding: 0 10px;
    font-size: 11px;
    min-height: 38px;
  }
}

/* Buttons: 44px primary */
.pcos-site .pcos-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font-family: var(--pcos-font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  border-radius: var(--pcos-r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--pcos-motion), border-color var(--pcos-motion), transform 0.12s ease, box-shadow var(--pcos-motion);
}
.pcos-site .pcos-btn--sm {
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
}
.pcos-site .pcos-btn--primary {
  background: linear-gradient(160deg, #c8943a 0%, #a07028 100%);
  border-color: rgba(210, 168, 80, 0.4);
  color: #0c0f0b;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 248, 200, 0.2), 0 4px 24px rgba(200, 148, 58, 0.25);
}
.pcos-site .pcos-btn--primary:hover {
  background: linear-gradient(160deg, #daa84a 0%, #b07f32 100%);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 248, 200, 0.25), 0 8px 32px rgba(200, 148, 58, 0.32);
}
.pcos-site .pcos-btn--primary:active {
  transform: scale(0.99) translateY(0);
}
.pcos-site .pcos-btn--ghost {
  background: transparent;
  border-color: var(--pcos-border-strong);
  color: var(--pcos-text-muted);
}
.pcos-site .pcos-btn--ghost:hover {
  color: var(--pcos-text);
  border-color: rgba(200, 148, 58, 0.35);
}

/* Hex CTAs: same geometry as hero honeycomb (.pf-hive-face clip-path), gold-forward pair */
.pcos-site .pcos-hex-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.pcos-site .pcos-btn-hex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 156px;
  min-height: 168px;
  padding: 18px 14px;
  box-sizing: border-box;
  font-family: var(--pcos-font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background var(--pcos-motion),
    box-shadow var(--pcos-motion),
    transform 0.12s ease,
    filter var(--pcos-motion);
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.pcos-site .pcos-btn-hex--primary {
  background: linear-gradient(160deg, #c8943a 0%, #a07028 100%);
  color: #0c0f0b;
  box-shadow: inset 0 1px 0 rgba(255, 248, 200, 0.2), 0 4px 24px rgba(200, 148, 58, 0.25);
}

.pcos-site .pcos-btn-hex--primary:hover {
  background: linear-gradient(160deg, #daa84a 0%, #b07f32 100%);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 248, 200, 0.25), 0 8px 32px rgba(200, 148, 58, 0.32);
}

.pcos-site .pcos-btn-hex--primary:active {
  transform: scale(0.99) translateY(0);
}

.pcos-site .pcos-btn-hex--accent {
  background: linear-gradient(
    160deg,
    rgba(200, 148, 58, 0.2) 0%,
    rgba(160, 112, 40, 0.14) 100%
  );
  color: rgba(248, 244, 228, 0.94);
  box-shadow:
    inset 0 0 0 1px rgba(200, 148, 58, 0.45),
    inset 0 1px 0 rgba(255, 248, 200, 0.1),
    0 2px 16px rgba(0, 0, 0, 0.22);
}

.pcos-site .pcos-btn-hex--accent:hover {
  color: var(--pcos-text);
  background: linear-gradient(
    160deg,
    rgba(200, 148, 58, 0.3) 0%,
    rgba(160, 112, 40, 0.2) 100%
  );
  box-shadow:
    inset 0 0 0 1px rgba(218, 168, 74, 0.55),
    inset 0 1px 0 rgba(255, 248, 200, 0.14),
    0 6px 24px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.pcos-site .pcos-btn-hex--accent:active {
  transform: scale(0.99) translateY(0);
}

.pcos-site .pcos-btn-hex:focus-visible {
  outline: none;
  filter: drop-shadow(0 0 0 2px var(--pcos-accent, #c8943a))
    drop-shadow(0 0 10px rgba(200, 148, 58, 0.35));
}

@media (prefers-reduced-motion: reduce) {
  .pcos-site .pcos-btn-hex--primary:hover,
  .pcos-site .pcos-btn-hex--accent:hover,
  .pcos-site .pcos-btn-hex--primary:active,
  .pcos-site .pcos-btn-hex--accent:active {
    transform: none;
  }
}

.pcos-site #pcosMain {
  position: relative;
  z-index: 1;
  padding-top: 60px;
}

/* Scroll-driven motion (GSAP): disable CSS transition on reveals when JS drives opacity */
.pcos-site.pcos-site--gsap .pcos-reveal {
  transition: none;
}

/* Fixed geometric field (scroll-scrubbed segments) */
.pcos-site .pcos-snake-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.pcos-site .pcos-snake-segment {
  position: absolute;
  height: 2px;
  background: var(--pcos-accent);
  opacity: 0.14;
  transform-origin: left center;
  border-radius: 1px;
}

/* Hero decorative snake + triangles (non-interactive) */
.pcos-site .pcos-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.pcos-site .pcos-hero-snake {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: min(360px, 36vw);
  height: min(520px, 70vh);
  opacity: 0.42;
}
@media (max-width: 1024px) {
  .pcos-site .pcos-hero-snake {
    display: none;
  }
}
.pcos-site .pcos-hero-snake svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.pcos-site .pcos-snake-path-glow {
  fill: none;
  stroke: var(--pcos-accent);
  stroke-width: 8;
  stroke-linecap: round;
  opacity: 0.14;
  filter: blur(8px);
}
.pcos-site .pcos-snake-path {
  fill: none;
  stroke: var(--pcos-accent);
  stroke-width: 2;
  stroke-linecap: round;
}

.pcos-site .pcos-geo-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 35px solid var(--pcos-accent);
  opacity: 0.12;
  pointer-events: none;
  will-change: transform, opacity;
}
.pcos-site .pcos-geo-triangle--1 {
  right: 16%;
  top: 16%;
}
.pcos-site .pcos-geo-triangle--2 {
  right: 10%;
  top: 48%;
  opacity: 0.1;
  transform: scale(0.88);
}
.pcos-site .pcos-geo-triangle--3 {
  right: 20%;
  top: 68%;
  opacity: 0.08;
  transform: scale(0.72);
}
@media (max-width: 640px) {
  .pcos-site .pcos-geo-triangle {
    display: none;
  }
}

/* Bridge: platform (dark) → operations (hero-aligned amber atmosphere) */
.pcos-site .pcos-geo-divider {
  position: relative;
  height: clamp(72px, 12vw, 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: linear-gradient(
    180deg,
    var(--pcos-surface-primary) 0%,
    rgba(200, 148, 58, 0.05) 50%,
    var(--pcos-bg) 100%
  );
  border: none;
}
.pcos-site .pcos-geo-divider-line {
  position: absolute;
  width: 2px;
  height: 100%;
  left: 50%;
  margin-left: -1px;
  transform: scaleY(0);
  transform-origin: center top;
  background: linear-gradient(to bottom, transparent, var(--pcos-accent), transparent);
  opacity: 0.5;
}
.pcos-site .pcos-geo-divider-triangle {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 24px solid var(--pcos-accent);
  opacity: 0.32;
  position: relative;
  z-index: 1;
  will-change: transform;
}

.pcos-site .pcos-geo-divider + .pcos-section--warm {
  border-top: none;
}

/* Hero: spec padding + ambient + grid texture */
.pcos-site .pcos-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 20px clamp(48px, 6.5vw, 72px);
  z-index: 2;
}

/* Deeper radial bloom behind headline (marketing only) */
.pcos-site .pcos-hero-bloom {
  position: absolute;
  inset: -20% -10% 35%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 55% 45% at 18% 28%, color-mix(in srgb, var(--pcos-brand-primary) 22%, transparent), transparent 62%),
    radial-gradient(ellipse 40% 38% at 72% 12%, rgba(245, 240, 228, 0.06), transparent 58%);
  opacity: 0.95;
}
@media (max-width: 1024px) {
  .pcos-site .pcos-hero {
    padding-top: 96px;
    padding-bottom: clamp(40px, 6vw, 60px);
  }
}
@media (max-width: 640px) {
  .pcos-site .pcos-hero {
    padding: max(100px, env(safe-area-inset-top, 0px) + 88px) max(16px, env(safe-area-inset-right)) 48px
      max(16px, env(safe-area-inset-left));
  }
}

.pcos-site .pcos-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 40% at 80% 15%, rgba(200, 148, 58, 0.12), transparent 60%),
    radial-gradient(ellipse 35% 50% at 15% 85%, rgba(90, 191, 148, 0.06), transparent 55%),
    radial-gradient(ellipse 70% 30% at 50% 0%, rgba(245, 240, 228, 0.03), transparent 50%);
  pointer-events: none;
  animation: pcos-hero-glow 14s ease-in-out infinite alternate;
}
@keyframes pcos-hero-glow {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(12px, -8px);
  }
}

.pcos-site .pcos-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 248, 230, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 230, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, black, transparent 75%);
}

.pcos-site .pcos-hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.pcos-site .pcos-hero-copy {
  position: relative;
  z-index: 1;
}

.pcos-site .pcos-hero-visual-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.pcos-site .pcos-hero-visual {
  position: relative;
  border-radius: var(--pcos-r-hero);
  padding: 2px;
  background: linear-gradient(135deg, rgba(200, 148, 58, 0.22), rgba(255, 248, 230, 0.05));
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.42);
}

.pcos-site .pcos-hero-visual--embed {
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.pcos-site .pcos-hero-visual:not(.pcos-hero-visual--embed) .pf-hero-hive,
.pcos-site .pcos-hero-visual:not(.pcos-hero-visual--embed) .pf-hero-stack {
  border-radius: calc(var(--pcos-r-hero) - 2px);
  background: var(--pcos-surface-card);
  padding: 16px 14px 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pcos-site .pcos-hero-visual--embed .pf-hero-hive {
  padding: 0;
  margin: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

/* Full-bleed honeycomb: overlaps hero ~10–15% so headline + system read as one unit */
.pcos-site .pcos-hero-hive-band {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: clamp(-72px, -12vh, -120px);
  padding: clamp(24px, 4vw, 40px) clamp(16px, 4vw, 40px) clamp(48px, 7vw, 96px);
  background: linear-gradient(
    180deg,
    rgba(14, 17, 12, 0.2) 0%,
    rgba(12, 14, 11, 0.94) 38%,
    rgba(8, 10, 7, 0.99) 100%
  );
  border-top: none;
  box-shadow: inset 0 1px 0 rgba(255, 248, 230, 0.04);
  overflow-x: clip;
  z-index: 1;
}

.pcos-site .pcos-hero-hive-band::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(120px, 24vh, 220px);
  background: linear-gradient(180deg, rgba(8, 10, 7, 0.92) 0%, rgba(8, 10, 7, 0.35) 55%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.pcos-site .pcos-hero-hive-band-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.pcos-site .pcos-hero-hive-mount {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .pcos-site .pcos-hero-hive-mount {
    animation: pcos-hive-mount-reveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
  }
}

@keyframes pcos-hive-mount-reveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.pcos-site .pcos-hero-hive-band .pf-hero-hive {
  width: 100%;
  max-width: none;
}

.pcos-site .pcos-hero-hive-band .pf-hive-radial-stage {
  transform: scale(1.02);
  transform-origin: center top;
}

@media (min-width: 1100px) {
  .pcos-site .pcos-hero-hive-band .pf-hive-radial-stage {
    transform: scale(1.06);
  }
}

@media (max-width: 820px) {
  .pcos-site .pcos-hero-hive-band .pf-hive-radial-stage {
    transform: scale(0.78);
  }
}

@media (max-width: 640px) {
  .pcos-site .pcos-hero-hive-band .pf-hive-radial-stage {
    transform: scale(0.68);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcos-site .pcos-hero-hive-band .pf-hive-radial-stage {
    transform: none;
  }
}

/* Honeycomb programs copy (below grid, flush with page) */
.pcos-site .pf-hero-hive-prose {
  margin-top: 28px;
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.pcos-site .pcos-hero-hive-band .pf-hero-hive-prose {
  margin-top: clamp(72px, 11vw, 140px);
  padding-top: clamp(32px, 5vw, 64px);
  max-width: 38rem;
  text-align: center;
}

.pcos-site .pf-hive-prose-kicker {
  font-family: var(--pcos-font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pcos-accent);
  margin: 0 0 10px;
}

.pcos-site .pf-hive-prose-body {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--pcos-text-muted);
}

.pcos-site .pf-hive-prose-foot {
  margin: 0;
  font-family: var(--pcos-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pcos-text-dim);
}

.pcos-site .pcos-hero-cta-above {
  margin-bottom: 4px;
}

/* Hero only: pull hex CTAs left (same vertical slot above embed), uneven spacing / slight tilt */
.pcos-site .pcos-hero-visual-wrap .pcos-hex-cta-row--hero {
  justify-content: flex-start;
  align-self: flex-start;
  width: 100%;
  gap: 0;
  margin-left: calc(-1 * clamp(4px, 1.2vw, 16px));
  margin-right: auto;
  transform: translateX(clamp(-20px, -6.5vw, -80px));
}

.pcos-site .pcos-hero-visual-wrap .pcos-hex-cta-row--hero .pcos-btn-hex--primary {
  transform: rotate(-1deg);
  margin-right: clamp(6px, 2.2vw, 26px);
}

.pcos-site .pcos-hero-visual-wrap .pcos-hex-cta-row--hero .pcos-btn-hex--accent {
  transform: rotate(0.7deg);
  margin-top: clamp(5px, 1.4vw, 14px);
  margin-left: clamp(8px, 3.8vw, 42px);
}

.pcos-site .pcos-hero-visual-wrap .pcos-hex-cta-row--hero .pcos-btn-hex--primary:hover {
  transform: rotate(-1deg) translateY(-2px);
}

.pcos-site .pcos-hero-visual-wrap .pcos-hex-cta-row--hero .pcos-btn-hex--accent:hover {
  transform: rotate(0.7deg) translateY(-2px);
}

.pcos-site .pcos-hero-visual-wrap .pcos-hex-cta-row--hero .pcos-btn-hex--primary:active {
  transform: rotate(-1deg) scale(0.99) translateY(0);
}

.pcos-site .pcos-hero-visual-wrap .pcos-hex-cta-row--hero .pcos-btn-hex--accent:active {
  transform: rotate(0.7deg) scale(0.99) translateY(0);
}

@media (max-width: 900px) {
  .pcos-site .pcos-hero-visual-wrap .pcos-hex-cta-row--hero {
    margin-left: 0;
    transform: translateX(clamp(-8px, -3vw, -28px));
    max-width: 100%;
  }
  .pcos-site .pcos-hero-visual-wrap .pcos-hex-cta-row--hero .pcos-btn-hex--accent {
    margin-left: clamp(6px, 5vw, 28px);
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcos-site .pcos-hero-visual-wrap .pcos-hex-cta-row--hero {
    margin-left: calc(-1 * clamp(16px, 4vw, 56px));
    transform: none;
  }
  .pcos-site .pcos-hero-visual-wrap .pcos-hex-cta-row--hero .pcos-btn-hex--primary,
  .pcos-site .pcos-hero-visual-wrap .pcos-hex-cta-row--hero .pcos-btn-hex--accent {
    transform: none;
  }
  .pcos-site .pcos-hero-visual-wrap .pcos-hex-cta-row--hero .pcos-btn-hex--primary:hover,
  .pcos-site .pcos-hero-visual-wrap .pcos-hex-cta-row--hero .pcos-btn-hex--accent:hover {
    transform: none;
  }
  .pcos-site .pcos-hero-visual-wrap .pcos-hex-cta-row--hero .pcos-btn-hex--primary:active,
  .pcos-site .pcos-hero-visual-wrap .pcos-hex-cta-row--hero .pcos-btn-hex--accent:active {
    transform: scale(0.99);
  }
}

.pcos-site .pcos-kicker {
  font-family: var(--pcos-font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pcos-accent);
  margin: 0 0 10px;
}

/* Hero headline: oversized display sans, tight kerning, staggered fade-up lines */
.pcos-site .pcos-hero .pcos-hero-title {
  font-family: var(--pcos-font-display);
  font-size: clamp(2.85rem, 1rem + 6.2vw, 5.65rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.045em;
  line-height: 0.98;
  font-optical-sizing: auto;
  margin: 0 0 18px;
  color: var(--pcos-text);
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.06em;
}

.pcos-site .pcos-hero .pcos-hero-title--display {
  max-width: min(100%, 26ch);
}

.pcos-site .pcos-hero .pcos-hero-title-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  will-change: transform, opacity;
  animation: pcos-hero-line-in 0.88s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pcos-site .pcos-hero .pcos-hero-title-line:nth-child(1) {
  animation-delay: 0.04s;
}
.pcos-site .pcos-hero .pcos-hero-title-line:nth-child(2) {
  animation-delay: 0.14s;
}
.pcos-site .pcos-hero .pcos-hero-title-line:nth-child(3) {
  animation-delay: 0.24s;
}

.pcos-site .pcos-hero .pcos-hero-title-line--accent {
  color: color-mix(in srgb, var(--pcos-brand-primary) 92%, var(--pcos-text));
}

.pcos-site .pcos-hero .pcos-hero-title-line--sub {
  font-size: 0.58em;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--pcos-text-muted);
  line-height: 1.12;
  margin-top: 0.12em;
}

@keyframes pcos-hero-line-in {
  from {
    opacity: 0;
    transform: translate3d(0, 0.5em, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcos-site .pcos-hero .pcos-hero-title-line {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .pcos-site .pcos-hero .pcos-hero-title {
    font-size: clamp(2.45rem, 1rem + 5vw, 4rem);
  }
}

@media (max-width: 640px) {
  .pcos-site .pcos-hero .pcos-hero-title {
    font-size: clamp(2rem, 0.85rem + 5.5vw, 3rem);
    letter-spacing: -0.042em;
    gap: 0.04em;
  }
}

/* Contact / other pages: plain hero h1 (no accordion pleats) */
.pcos-site .pcos-hero h1:not(.pcos-hero-title) {
  font-family: var(--pcos-font-sans);
  font-size: clamp(1.85rem, 1rem + 3.2vw, 2.65rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.03em;
  line-height: 1.12;
  font-optical-sizing: auto;
  margin: 0 0 14px;
  color: var(--pcos-text);
  max-width: 22ch;
}

.pcos-site .pcos-lede {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--pcos-text-muted);
  max-width: 620px;
  margin: 0 0 24px;
}

.pcos-site .pcos-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.pcos-site .pcos-hero-foot {
  font-size: 11px;
  font-weight: 500;
  color: var(--pcos-text-dim);
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .pcos-site .pcos-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* Section reveals */
.pcos-site .pcos-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.pcos-site .pcos-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pcos-site .pcos-section {
  padding: 96px 20px;
  border-top: 1px solid var(--pcos-border);
}
.pcos-site .pcos-section--dense {
  padding: 72px 20px;
}
@media (max-width: 640px) {
  .pcos-site .pcos-section,
  .pcos-site .pcos-section--dense,
  .pcos-site .pcos-section--cta {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
  .pcos-site .pcos-footer {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
}
.pcos-site .pcos-section--product {
  background: var(--pcos-surface-primary);
}
.pcos-site .pcos-section--live {
  background: linear-gradient(180deg, var(--pcos-bg) 0%, var(--pcos-surface-primary) 100%);
}
.pcos-site .pcos-section--brand {
  background: var(--pcos-surface-primary);
}

.pcos-site .pcos-section--brand.pcos-section--brand-system {
  background: linear-gradient(180deg, #070905 0%, var(--pcos-surface-primary) 28%, #0c100c 100%);
  border-top: 1px solid color-mix(in srgb, var(--pcos-accent) 22%, transparent);
}

.pcos-site .pcos-section-head--brand .pcos-brand-eyebrow {
  font-family: var(--pcos-font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pcos-accent);
  margin: 0 0 10px;
}

.pcos-site .pcos-section-head--brand h2 {
  font-family: var(--pcos-font-display);
  font-size: clamp(26px, 4.2vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(245, 240, 228, 0.97);
  margin-bottom: 16px;
}

.pcos-site .pcos-section-head--brand p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(245, 240, 228, 0.72);
  max-width: 640px;
}

.pcos-site .pcos-section--brand-system .pcos-brand-bento-card {
  background: color-mix(in srgb, var(--pcos-surface-secondary) 94%, transparent);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pcos-site .pcos-section--brand-system .pcos-brand-bento-card--hub {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--pcos-brand-primary) 24%, rgba(18, 22, 16, 0.96)),
    rgba(18, 22, 16, 0.94)
  );
  border: 1px solid color-mix(in srgb, var(--pcos-brand-primary) 42%, rgba(255, 255, 255, 0.08));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--pcos-brand-primary) 12%, transparent),
    0 14px 44px rgba(0, 0, 0, 0.38);
}
.pcos-site .pcos-section--faq {
  padding-bottom: 80px;
  background: transparent;
  border-top: none;
}

/* Solid black slab behind copy only; keeps scroll/geo motion from washing over FAQ + CTA text */
.pcos-site .pcos-section--faq .pcos-section-inner--narrow,
.pcos-site .pcos-section--cta .pcos-section-inner--narrow {
  background: var(--pcos-bg);
  padding: 40px 32px 44px;
  border: none;
  outline: none;
  box-shadow: none;
  position: relative;
  z-index: 2;
  isolation: isolate;
}

@media (max-width: 640px) {
  .pcos-site .pcos-section--faq .pcos-section-inner--narrow,
  .pcos-site .pcos-section--cta .pcos-section-inner--narrow {
    padding: 32px 20px 36px;
  }
}

.pcos-site .pcos-section--cta {
  text-align: center;
  padding: 96px 20px 112px;
  background: transparent;
  border-top: none;
}

/* Operational outcomes: dark base; orange rises from bottom with --pcos-ops-fill (scroll-driven) */
.pcos-site .pcos-section--warm {
  --pcos-ops-fill: 0;
  position: relative;
  overflow: hidden;
  background: var(--pcos-bg);
  border-top: 1px solid color-mix(in srgb, var(--pcos-border) calc((1 - var(--pcos-ops-fill)) * 100%), rgba(0, 0, 0, 0.2) calc(var(--pcos-ops-fill) * 100%));
  color: var(--pcos-text);
  transition: border-color 0.15s ease;
}

.pcos-site .pcos-ops-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.pcos-site .pcos-ops-bg-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  transform: scaleY(var(--pcos-ops-fill));
  transform-origin: 50% 100%;
  will-change: transform;
  /* Same gold family as .pcos-btn--primary (#c8943a → #a07028), muted with site bg so it matches the hero CTA, not neon orange */
  background: linear-gradient(
    185deg,
    color-mix(in srgb, var(--pcos-accent) 72%, var(--pcos-bg) 28%) 0%,
    color-mix(in srgb, #a07028 62%, var(--pcos-bg) 38%) 46%,
    color-mix(in srgb, #6d4a1a 52%, var(--pcos-bg) 48%) 100%
  );
}

.pcos-site .pcos-section--warm > .pcos-section-inner {
  position: relative;
  z-index: 1;
}

.pcos-site .pcos-section--warm .pcos-section-head h2 {
  color: color-mix(in srgb, var(--pcos-text) calc((1 - var(--pcos-ops-fill)) * 100%), #14110c calc(var(--pcos-ops-fill) * 100%));
  transition: color 0.12s ease;
}

.pcos-site .pcos-section--warm .pcos-section-head p {
  color: color-mix(in srgb, var(--pcos-text-muted) calc((1 - var(--pcos-ops-fill)) * 100%), #3a3228 calc(var(--pcos-ops-fill) * 100%));
  transition: color 0.12s ease;
}

.pcos-site .pcos-section--warm .pcos-section-head h2 .pcos-section-hit:hover {
  color: color-mix(in srgb, var(--pcos-accent) calc((1 - var(--pcos-ops-fill)) * 100%), #5c3d14 calc(var(--pcos-ops-fill) * 100%));
}

.pcos-site .pcos-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pcos-site .pcos-section-inner--narrow {
  max-width: 520px;
}
.pcos-site .pcos-section-inner--live {
  max-width: 1120px;
}

.pcos-site .pcos-section-head {
  margin-bottom: 32px;
}
.pcos-site .pcos-section-head h2 {
  font-family: var(--pcos-font-sans);
  font-size: 28px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-optical-sizing: auto;
  margin: 0 0 14px;
  color: var(--pcos-text);
}
@media (min-width: 768px) {
  .pcos-site .pcos-section-head h2 {
    font-size: 32px;
  }
}
.pcos-site .pcos-section-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--pcos-text-muted);
  max-width: 620px;
}
.pcos-site .pcos-section-head--solo {
  margin-bottom: 28px;
}
.pcos-site .pcos-section-head--solo h2 {
  margin-bottom: 0;
}
.pcos-site .pcos-section-head h2 .pcos-section-hit {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.pcos-site .pcos-section-head h2 .pcos-section-hit:hover {
  color: var(--pcos-accent);
}
.pcos-site .pcos-inline-hit {
  color: var(--pcos-accent);
  text-decoration: none;
  font-weight: 500;
}
.pcos-site .pcos-inline-hit:hover {
  text-decoration: underline;
}

/* Showcase shell */
.pcos-site .pcos-showcase-wrap {
  position: relative;
}
.pcos-site .pcos-showcase-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 16px;
  background: var(--pcos-surface-tertiary);
  border: 1px solid var(--pcos-border);
  border-bottom: none;
  border-radius: var(--pcos-r-panel) var(--pcos-r-panel) 0 0;
}
.pcos-site .pcos-showcase-chrome-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pcos-text-dim);
}
.pcos-site .pcos-chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--pcos-r-sm);
  background: rgba(90, 191, 148, 0.12);
  color: var(--pcos-teal-live);
  border: 1px solid rgba(90, 191, 148, 0.28);
}

.pcos-site .pcos-showcase {
  border: 1px solid var(--pcos-border-strong);
  border-radius: 0 0 var(--pcos-r-panel) var(--pcos-r-panel);
  overflow: hidden;
  background: var(--pcos-surface-primary);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.pcos-site .pcos-showcase-panel-shell {
  position: relative;
}

.pcos-site .pcos-showcase-callouts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.pcos-site .pcos-showcase-callout {
  position: absolute;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: var(--pcos-r-sm);
  color: var(--pcos-text);
  background: rgba(8, 10, 7, 0.9);
  border: 1px solid rgba(200, 148, 58, 0.38);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.48);
  max-width: 200px;
  line-height: 1.35;
}

.pcos-site .pcos-showcase-callout--a {
  top: 50px;
  left: 14px;
}

.pcos-site .pcos-showcase-callout--b {
  bottom: 18px;
  right: 14px;
}

@media (max-width: 640px) {
  .pcos-site .pcos-showcase-callout {
    font-size: 9px;
    padding: 6px 9px;
    max-width: 158px;
  }
  .pcos-site .pcos-showcase-callout--a {
    top: 46px;
    left: 8px;
  }
  .pcos-site .pcos-showcase-callout--b {
    bottom: 10px;
    right: 8px;
  }
}

.pcos-site .pcos-tabs--showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid var(--pcos-border);
  background: var(--pcos-surface-secondary);
  min-height: 48px;
}
.pcos-site .pcos-tabs--showcase .pcos-tab {
  flex: 1;
  min-width: 72px;
  padding: 14px 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  background: transparent;
  color: var(--pcos-text-dim);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}
.pcos-site .pcos-tabs--showcase a.pcos-tab {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcos-site .pcos-tabs--showcase .pcos-tab:hover {
  color: var(--pcos-text-muted);
}
.pcos-site .pcos-tabs--showcase .pcos-tab.is-active {
  color: var(--pcos-accent);
  background: rgba(200, 148, 58, 0.08);
  box-shadow: inset 0 -2px 0 var(--pcos-accent), 0 0 24px rgba(200, 148, 58, 0.12);
}
.pcos-site a.pcos-chip {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.pcos-site a.pcos-chip:hover {
  color: var(--pcos-teal-live);
  border-color: rgba(90, 191, 148, 0.45);
}
.pcos-site a.pcos-ops-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.pcos-site a.pcos-live-aside {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.pcos-site a.pcos-live-aside:hover .pcos-live-proof {
  border-color: rgba(200, 148, 58, 0.35);
}
.pcos-site a.pcos-brand-node,
.pcos-site a.pcos-brand-bento-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.pcos-site .pcos-hero-foot a {
  color: var(--pcos-teal-live);
  text-decoration: none;
  font-weight: 500;
}
.pcos-site .pcos-hero-foot a:hover {
  text-decoration: underline;
}

.pcos-site .pcos-showcase-panel {
  min-height: 400px;
  padding: 0;
  position: relative;
}
.pcos-site .pcos-showcase-panel.is-crossfading::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pcos-surface-primary);
  opacity: 0;
  pointer-events: none;
  animation: pcos-tab-fade 0.22s ease;
  z-index: 1;
}
@keyframes pcos-tab-fade {
  0% {
    opacity: 0.35;
  }
  100% {
    opacity: 0;
  }
}

.pcos-site .pcos-showcase-panel .pf-table-wrap,
.pcos-site .pcos-showcase-panel .pf-revenue-grid {
  margin: 16px;
}
.pcos-site .pcos-showcase-panel .pf-revenue-note {
  margin: 0 16px 16px;
}

/* Ops: collage-style cards (desktop overlap + tilt; stack on small screens) */
.pcos-site .pcos-ops-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 4px 0 8px;
  position: relative;
}
.pcos-site .pcos-ops-slot {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  position: relative;
  transform: translate(var(--ops-drag-x, 0px), var(--ops-drag-y, 0px));
  transition: transform 0.22s ease;
  cursor: grab;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}
.pcos-site .pcos-ops-slot--dragging {
  transition: none;
  z-index: 24;
  cursor: grabbing;
}
.pcos-site .pcos-ops-drag-handle {
  display: none;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin: 0 4px 6px 0;
  width: 30px;
  height: 22px;
  padding: 0;
  border: 1px solid var(--pcos-border);
  border-radius: 6px;
  background: color-mix(in srgb, var(--pcos-surface-card) 88%, transparent);
  color: var(--pcos-text-dim);
  cursor: grab;
  touch-action: none;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.pcos-site .pcos-ops-drag-handle:hover {
  border-color: var(--pcos-border-strong);
  color: var(--pcos-accent);
}
.pcos-site .pcos-ops-drag-handle:active {
  cursor: grabbing;
}
.pcos-site .pcos-ops-drag-handle::before {
  content: '⋮⋮';
  font-size: 10px;
  letter-spacing: -2px;
  line-height: 1;
  opacity: 0.85;
}
.pcos-site .pcos-ops-card {
  position: relative;
  z-index: 1;
  padding: 22px 24px;
  background: var(--pcos-surface-card);
  border: 1px solid var(--pcos-border);
  border-radius: 0;
  border-left: 3px solid var(--pcos-accent-deep);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: border-color var(--pcos-motion), box-shadow var(--pcos-motion), transform 0.2s ease;
  text-align: left;
  --pcos-ops-rot: 0deg;
  /* touch-action is not inherited from .pcos-ops-slot; required so touch drags don’t scroll the page */
  touch-action: none;
  -webkit-user-drag: none;
}
.pcos-site .pcos-ops-card--collage-0 {
  --pcos-ops-rot: -0.42deg;
}
.pcos-site .pcos-ops-card--collage-1 {
  --pcos-ops-rot: 0.38deg;
}
.pcos-site .pcos-ops-card--collage-2 {
  --pcos-ops-rot: -0.32deg;
}
.pcos-site .pcos-ops-card--collage-3 {
  --pcos-ops-rot: 0.32deg;
}
.pcos-site .pcos-ops-card--collage-4 {
  --pcos-ops-rot: -0.36deg;
}

@media (min-width: 900px) {
  .pcos-site .pcos-ops-slot .pcos-ops-card {
    cursor: grab;
    padding-top: 28px;
  }
  .pcos-site .pcos-ops-drag-handle {
    display: flex;
    position: absolute;
    top: 6px;
    right: 8px;
    margin: 0;
    width: 32px;
    height: 26px;
    cursor: grab;
  }
  .pcos-site .pcos-ops-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    row-gap: 20px;
    padding: 16px 0 40px;
    max-width: 960px;
    margin: 0 auto;
  }
  .pcos-site .pcos-ops-slot--0 {
    grid-column: 1;
    grid-row: 1;
    margin-top: 0;
    z-index: 1;
  }
  .pcos-site .pcos-ops-slot--1 {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    z-index: 1;
  }
  .pcos-site .pcos-ops-slot--2 {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
    z-index: 1;
  }
  .pcos-site .pcos-ops-slot--3 {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    z-index: 1;
  }
  .pcos-site .pcos-ops-slot--4 {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 0;
    justify-self: center;
    width: 100%;
    max-width: 640px;
    z-index: 1;
  }
  .pcos-site .pcos-ops-card {
    border-radius: var(--pcos-r-card);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcos-site .pcos-ops-card {
    --pcos-ops-rot: 0deg;
  }
  /* Keep drag handle visible so reduced-motion users can reset (double-click / keyboard). */
  .pcos-site .pcos-ops-grid .pcos-ops-slot--0,
  .pcos-site .pcos-ops-grid .pcos-ops-slot--1,
  .pcos-site .pcos-ops-grid .pcos-ops-slot--2,
  .pcos-site .pcos-ops-grid .pcos-ops-slot--3,
  .pcos-site .pcos-ops-grid .pcos-ops-slot--4 {
    margin-top: 0 !important;
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    justify-self: stretch !important;
    max-width: none !important;
    /* Do NOT set transform: none — it overrides translate(var(--ops-drag-x), var(--ops-drag-y)) and breaks drag. */
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 900px) {
  .pcos-site .pcos-ops-slot .pcos-ops-card {
    padding-top: 22px !important;
  }
}

/* No-GSAP path: sequential pop-in driven by .is-in (see setupOpsCardsEntrance) */
.pcos-site:not(.pcos-site--gsap) .pcos-ops-grid .pcos-ops-card {
  opacity: 0;
  transform: translateY(32px) scale(0.94) rotate(var(--pcos-ops-rot));
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pcos-site:not(.pcos-site--gsap) .pcos-ops-grid .pcos-ops-card.is-in {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(var(--pcos-ops-rot));
}
.pcos-site .pcos-ops-card:hover {
  z-index: 8;
  border-color: var(--pcos-border-strong);
  border-left-color: var(--pcos-accent);
  box-shadow: 0 0 0 1px rgba(200, 148, 58, 0.18), 0 12px 40px rgba(0, 0, 0, 0.32);
}
.pcos-site .pcos-ops-card--lead {
  border-left-color: var(--pcos-accent);
  background: linear-gradient(135deg, rgba(200, 148, 58, 0.1), rgba(255, 248, 230, 0.03));
}
.pcos-site .pcos-ops-card h3 {
  font-family: var(--pcos-font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 12px;
}
.pcos-site .pcos-ops-card p {
  font-size: 14px;
  margin: 0 0 8px;
  color: var(--pcos-text-muted);
  line-height: 1.5;
}
.pcos-site .pcos-ops-card p:last-child {
  margin-bottom: 0;
}
.pcos-site .pcos-ops-problem strong,
.pcos-site .pcos-ops-action strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--pcos-text-dim);
  margin-bottom: 4px;
}
.pcos-site .pcos-ops-result {
  margin-top: 12px !important;
  padding-top: 12px;
  border-top: 1px solid var(--pcos-border);
  color: var(--pcos-text) !important;
  font-size: 15px !important;
  font-weight: 500;
}
.pcos-site .pcos-ops-result strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pcos-accent);
  margin-bottom: 6px;
}

/* Staggered fade-up (bento + any [data-pcos-stagger] wrapper) */
.pcos-site [data-pcos-stagger] > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--pcos-stagger-delay, 0ms);
}
.pcos-site [data-pcos-stagger].is-stagger-in > * {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .pcos-site [data-pcos-stagger] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Live: cockpit signal strip (glass + mono metrics) */
.pcos-site .pcos-live-cockpit {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}
@media (max-width: 720px) {
  .pcos-site .pcos-live-cockpit {
    grid-template-columns: 1fr;
  }
}
.pcos-site .pcos-cockpit-card {
  padding: 14px 16px;
  border-radius: var(--pcos-r-card);
  background: rgba(15, 18, 16, 0.52);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}
.pcos-site .pcos-cockpit-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pcos-text-dim);
  margin-bottom: 8px;
}
.pcos-site .pcos-cockpit-value-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.pcos-site .pcos-cockpit-value {
  font-family: var(--pcos-font-mono);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: color-mix(in srgb, var(--pcos-brand-primary) 88%, var(--pcos-text));
  line-height: 1;
}
.pcos-site .pcos-cockpit-spark {
  width: 74px;
  height: 26px;
  flex-shrink: 0;
  color: color-mix(in srgb, var(--pcos-brand-primary) 55%, transparent);
  opacity: 0.9;
}
.pcos-site .pcos-cockpit-spark--alt {
  color: color-mix(in srgb, var(--pcos-teal-live) 65%, transparent);
}
.pcos-site .pcos-cockpit-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pcos-teal-live);
  border: 1px solid rgba(90, 191, 148, 0.35);
  background: rgba(90, 191, 148, 0.08);
  font-family: var(--pcos-font-mono);
}

/* Live section layout */
.pcos-site .pcos-live-layout {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .pcos-site .pcos-live-layout {
    grid-template-columns: 1fr;
  }
}
.pcos-site .pcos-live-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pcos-site .pcos-live-proof {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--pcos-text-dim);
  padding: 16px;
  background: var(--pcos-surface-secondary);
  border: 1px solid var(--pcos-border);
  border-radius: var(--pcos-r-card);
}
.pcos-site .pcos-live-proof strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pcos-accent);
  margin-bottom: 8px;
}

.pcos-site .pcos-live-frame {
  border-radius: var(--pcos-r-panel);
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.42);
  border: 1px solid var(--pcos-border-strong);
}

/* Brand: live toggle + bento grid */
.pcos-site .pcos-brand-live-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: var(--pcos-r-card);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
}
.pcos-site .pcos-brand-live-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pcos-text-dim);
}
.pcos-site .pcos-brand-toggle-group {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  border-radius: var(--pcos-r-sm);
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pcos-site .pcos-brand-toggle {
  appearance: none;
  border: none;
  margin: 0;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: calc(var(--pcos-r-sm) - 2px);
  font-family: var(--pcos-font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--pcos-text-muted);
  background: transparent;
  transition: color var(--pcos-motion), background var(--pcos-motion), box-shadow var(--pcos-motion);
}
.pcos-site .pcos-brand-toggle:hover {
  color: var(--pcos-text);
  background: rgba(255, 255, 255, 0.05);
}
.pcos-site .pcos-brand-toggle.is-active {
  color: var(--pcos-bg);
  background: color-mix(in srgb, var(--pcos-brand-primary) 92%, #1a1408);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--pcos-brand-primary) 45%, transparent);
}

.pcos-site .pcos-brand-bento {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 18px;
  padding: 8px 0 8px;
}
@media (min-width: 520px) and (max-width: 900px) {
  .pcos-site .pcos-brand-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 519px) {
  .pcos-site .pcos-brand-bento {
    grid-template-columns: 1fr;
  }
}

.pcos-site .pcos-brand-bento-card {
  position: relative;
  display: block;
  padding: 18px 20px;
  background: var(--pcos-surface-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--pcos-r-card);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--pcos-motion), box-shadow var(--pcos-motion), transform var(--pcos-motion);
}
.pcos-site a.pcos-brand-bento-card:hover {
  border-color: color-mix(in srgb, var(--pcos-brand-primary) 42%, rgba(255, 255, 255, 0.12));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--pcos-brand-primary) 22%, transparent),
    0 14px 42px rgba(0, 0, 0, 0.34);
  transform: translateY(-2px);
}

.pcos-site .pcos-brand-bento-card--hub {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(100px, 132px) 1fr;
  gap: 20px 24px;
  align-items: center;
  text-align: left;
}
@media (max-width: 519px) {
  .pcos-site .pcos-brand-bento-card--hub {
    grid-template-columns: 1fr;
  }
}
.pcos-site .pcos-brand-bento-card--hub .pcos-brand-bento-preview {
  margin-bottom: 0;
  height: 72px;
}

.pcos-site .pcos-brand-bento-card--staff {
  cursor: default;
  padding-bottom: 52px;
}
.pcos-site .pcos-brand-bento-card--staff:hover {
  transform: translateY(-2px);
}
.pcos-site .pcos-brand-bento-hit {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}
.pcos-site .pcos-brand-bento-body {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.pcos-site .pcos-brand-staff-peek {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 16px 12px;
  margin: 0;
  list-style: none;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 10, 7, 0.94) 42%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--pcos-font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pcos-text-muted);
  transform: translateY(102%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.pcos-site .pcos-brand-bento-card--staff:hover .pcos-brand-staff-peek,
.pcos-site .pcos-brand-bento-card--staff:focus-within .pcos-brand-staff-peek {
  transform: translateY(0);
}
.pcos-site .pcos-brand-staff-peek span {
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
}

.pcos-site .pcos-brand-bento-text h3 {
  margin: 0 0 6px;
}
.pcos-site .pcos-brand-bento-card h3 {
  font-family: var(--pcos-font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--pcos-text);
}
.pcos-site .pcos-brand-bento-card p {
  margin: 0;
  font-size: 13px;
  color: var(--pcos-text-dim);
  line-height: 1.45;
}

/* Shared preview tiles (legacy nodes + bento) */
.pcos-site .pcos-brand-preview,
.pcos-site .pcos-brand-bento-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  margin-bottom: 12px;
  border-radius: var(--pcos-r-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pcos-text-dim);
  border: 1px dashed var(--pcos-border-strong);
  background: rgba(0, 0, 0, 0.2);
}
.pcos-site .pcos-brand-preview--logo,
.pcos-site .pcos-brand-bento-preview--logo {
  font-family: var(--pcos-font-sans);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--pcos-accent);
  border-style: solid;
  border-color: var(--pcos-border-glow);
}
.pcos-site .pcos-brand-preview--theme,
.pcos-site .pcos-brand-bento-preview--theme {
  background: linear-gradient(135deg, #2a2214 0%, #0c0f0b 50%, var(--pcos-accent) 100%);
  border: none;
}
.pcos-site .pcos-brand-preview--book,
.pcos-site .pcos-brand-preview--dash,
.pcos-site .pcos-brand-preview--multi,
.pcos-site .pcos-brand-preview--client,
.pcos-site .pcos-brand-preview--export,
.pcos-site .pcos-brand-bento-preview--book,
.pcos-site .pcos-brand-bento-preview--dash,
.pcos-site .pcos-brand-bento-preview--multi,
.pcos-site .pcos-brand-bento-preview--client,
.pcos-site .pcos-brand-bento-preview--export {
  color: var(--pcos-text-muted);
}
.pcos-site .pcos-brand-preview--dash,
.pcos-site .pcos-brand-bento-preview--dash {
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 8px,
    rgba(255, 255, 255, 0.04) 8px,
    rgba(255, 255, 255, 0.04) 9px
  );
  border: 1px solid var(--pcos-border);
}

.pcos-site .pcos-brand-node h3 {
  font-family: var(--pcos-font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.pcos-site .pcos-brand-node p {
  margin: 0;
  font-size: 13px;
  color: var(--pcos-text-dim);
  line-height: 1.45;
}

/* FAQ */
.pcos-site .pcos-faq-item {
  border: none;
  outline: none;
}
.pcos-site .pcos-faq-item + .pcos-faq-item {
  margin-top: 8px;
}
.pcos-site .pcos-faq-item summary {
  padding: 18px 0;
  font-family: var(--pcos-font-sans);
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.01em;
  cursor: pointer;
  list-style: none;
  color: var(--pcos-text);
  transition: color 0.15s ease;
}
.pcos-site .pcos-faq-item summary:hover {
  color: var(--pcos-accent-hover);
}
.pcos-site .pcos-faq-item summary::-webkit-details-marker {
  display: none;
}
.pcos-site .pcos-faq-a {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--pcos-text-muted);
  line-height: 1.6;
}

/* CTA */
.pcos-site .pcos-section--cta h2 {
  font-family: var(--pcos-font-sans);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.03em;
  line-height: 1.18;
  font-optical-sizing: auto;
  margin: 0 0 14px;
  color: rgba(245, 240, 228, 0.96);
}
@media (min-width: 768px) {
  .pcos-site .pcos-section--cta h2 {
    font-size: clamp(30px, 3.6vw, 38px);
  }
}
.pcos-site .pcos-cta-lede {
  margin: 0 0 30px;
  color: rgba(245, 240, 228, 0.66);
  font-size: 17px;
  line-height: 1.55;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.pcos-site .pcos-footer {
  padding: 48px 20px 40px;
  border-top: 1px solid var(--pcos-border-strong);
  background: var(--pcos-surface-primary);
}
.pcos-site .pcos-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pcos-site .pcos-footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.pcos-site .pcos-footer-lockup {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pcos-site .pcos-footer-brand {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  color: inherit;
}
.pcos-site .pcos-footer-brand svg {
  display: block;
  width: 148px;
  height: auto;
  max-width: 100%;
}
.pcos-site .pcos-footer-tagline {
  margin: 0;
  font-size: 13px;
  color: var(--pcos-text-dim);
  max-width: 360px;
  line-height: 1.5;
}
.pcos-site .pcos-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.pcos-site .pcos-footer-links a {
  color: var(--pcos-text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.pcos-site .pcos-footer-links a:hover {
  color: var(--pcos-accent-hover);
}
.pcos-site .pcos-footer-copy {
  margin: 0;
  font-size: 12px;
  color: var(--pcos-text-disabled);
  letter-spacing: 0.02em;
}

/* Hero motion (stagger) */
.pcos-site .pcos-motion-stagger {
  opacity: 0;
  animation: pcos-stagger-in 0.45s ease forwards;
  animation-delay: calc(var(--stagger, 0) * 75ms);
}
@keyframes pcos-stagger-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Book demo / contact (static page, matches marketing shell) */
.pcos-site .pcos-hero--contact .pcos-hero-grid {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.pcos-site .pcos-hero--contact h1 {
  max-width: none;
}
.pcos-site .pcos-contact-note {
  margin: 28px 0 0;
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--pcos-text-muted);
  background: var(--pcos-surface-secondary);
  border: 1px solid var(--pcos-border);
  border-radius: var(--pcos-r-card);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}
.pcos-site .pcos-contact-note strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pcos-teal-live);
  margin-bottom: 8px;
}
