/**
 * Performance Clinic OS: light marketing system (home + static pages).
 * Scope: body.pcos-os-site. BEM-style pcos-os-* classes.
 */

.pcos-os-site {
  --pcos-os-ink: #10231f;
  /* Body / secondary text on light sage backgrounds */
  --pcos-os-muted: #56625c;
  --pcos-os-soft: #eef2ec;
  --pcos-os-line: #dfe4df;
  --pcos-os-navy: #11231f;
  --pcos-os-navy-2: #1a2e28;
  --pcos-os-teal: #2f6f58;
  --pcos-os-teal-dark: #24634f;
  --pcos-os-gold: #87928c;
  --pcos-os-cream: #ebe6dc;
  --pcos-os-backdrop: #e4dfd4;
  --pcos-os-white: #ffffff;
  --pcos-os-shadow: 0 28px 80px rgba(16, 31, 28, 0.12);
  --pcos-os-radius: 14px;
}

.pcos-os-site *,
.pcos-os-site *::before,
.pcos-os-site *::after {
  box-sizing: border-box;
}

body.pcos-os-site {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--pcos-os-ink);
  background: var(--pcos-os-backdrop);
  line-height: 1.5;
}

.pcos-os-skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pcos-os-skip:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 12px 16px;
  background: var(--pcos-os-navy);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none !important;
  box-shadow: var(--pcos-os-shadow);
}

/* Links: do not use bare `a`; it overrides `.pcos-os-btn` text colors (specificity). */
.pcos-os-site a:not(.pcos-os-btn) {
  color: inherit;
  text-decoration: none;
}

.pcos-os-site a:not(.pcos-os-btn):hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pcos-os-site .pcos-os-hit {
  color: var(--pcos-os-teal-dark);
  font-weight: 600;
}

/* --- Top bar --- */
.pcos-os-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(228, 223, 212, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 35, 31, 0.1);
}

.pcos-os-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pcos-os-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none !important;
}

.pcos-os-brand.pcos-os-brand--text {
  gap: 0;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--pcos-os-ink);
}

.pcos-os-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #64706a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.pcos-os-links a {
  text-decoration: none !important;
  color: #64706a;
}

.pcos-os-links a[aria-current='page'] {
  color: var(--pcos-os-teal-dark);
}

.pcos-os-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.pcos-os-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 2px;
  border: 1px solid var(--pcos-os-line);
  background: var(--pcos-os-white);
  color: var(--pcos-os-navy);
  cursor: pointer;
}

.pcos-os-menu-btn svg {
  display: block;
}

.pcos-os-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 2px;
  font-family: 'Bricolage Grotesque', 'Space Grotesk', Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: 0.18s ease;
  text-decoration: none !important;
  box-shadow: none;
}

.pcos-os-btn:hover {
  transform: none;
}

.pcos-os-btn--primary {
  background: var(--pcos-btn-metal-bg, var(--pcos-os-navy));
  color: var(--pcos-btn-metal-text, #ffffff);
  border: 1px solid var(--pcos-btn-metal-border, transparent);
  box-shadow: var(--pcos-btn-metal-inset, 0 10px 24px rgba(16, 31, 28, 0.18));
}

.pcos-os-btn--primary:hover {
  background: var(--pcos-btn-metal-bg-hover, #17332d);
  color: var(--pcos-btn-metal-text, #ffffff);
  box-shadow: var(--pcos-btn-metal-inset, inset 0 1px 0 rgba(255, 220, 168, 0.5));
}

.pcos-os-btn--secondary {
  background: white;
  color: var(--pcos-os-navy);
  border-color: var(--pcos-os-line);
}

.pcos-os-btn--secondary:hover {
  color: var(--pcos-os-navy);
  background: #fafcfd;
}

/* On dark bands, parent `color: white` can flow to links; pin ghost button label to ink. */
.pcos-os-final a.pcos-os-btn--secondary {
  color: var(--pcos-os-ink);
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.pcos-os-final a.pcos-os-btn--secondary:hover {
  color: var(--pcos-os-ink);
  background: #eef2ec;
  border-color: rgba(255, 255, 255, 0.55);
}

.pcos-os-btn--on-dark {
  background: #ffffff;
  color: var(--pcos-os-ink) !important;
  border-color: transparent;
  box-shadow: none;
}

.pcos-os-btn--on-dark:hover {
  background: #f0f2ee;
  color: var(--pcos-os-ink) !important;
  transform: none;
}

.pcos-os-btn--outline-light {
  background: transparent;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.22);
}

.pcos-os-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff !important;
  transform: none;
}

.pcos-os-btn--teal {
  background: var(--pcos-os-teal);
  color: #ffffff;
}

.pcos-os-btn--teal:hover {
  color: #fff;
  background: #27654f;
}

.pcos-os-btn:focus-visible {
  outline: 2px solid var(--pcos-os-teal);
  outline-offset: 2px;
}

.pcos-os-btn--primary:focus-visible {
  outline-color: #ffffff;
  outline-offset: 3px;
}

.pcos-os-menu-btn:focus-visible {
  outline: 2px solid var(--pcos-os-teal);
  outline-offset: 2px;
}

/* --- Hero (home) --- */
.pcos-os-hero-wrap {
  background: linear-gradient(180deg, #ece7df 0%, var(--pcos-os-backdrop) 100%);
  border-bottom: 1px solid rgba(17, 35, 31, 0.08);
}

.pcos-os-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 22px 74px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: center;
}

.pcos-os-hero h1,
.pcos-os-hero-title {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin: clamp(18px, 2.2vw, 28px) 0 clamp(26px, 2.8vw, 40px);
  font-weight: 600;
}

.pcos-os-hero-title {
  transform-style: preserve-3d;
}

.pcos-os-hero-em {
  display: inline-block;
  transform-origin: center center;
  color: #fafdfb;
  -webkit-text-stroke: 1.65px var(--pcos-os-ink);
  paint-order: stroke fill;
  text-shadow: 0 1px 0 rgba(16, 35, 31, 0.06);
  vertical-align: baseline;
}

@media (min-width: 768px) {
  .pcos-os-hero-em {
    -webkit-text-stroke: 1.9px var(--pcos-os-ink);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .pcos-os-hero--motion .pcos-os-hero-col > *,
  .pcos-os-hero--motion .pcos-os-hero-preview {
    opacity: 0;
    animation: pcos-os-fade-rise 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .pcos-os-hero-title__pre,
  .pcos-os-hero-title__post {
    display: inline-block;
    opacity: 0;
    animation: pcos-os-fade-rise 0.58s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .pcos-os-hero-title__pre {
    animation-delay: 0.02s;
  }

  .pcos-os-hero-title .pcos-os-hero-em {
    opacity: 0;
    animation: pcos-os-hero-brand-flip 1.05s cubic-bezier(0.34, 0.72, 0.24, 1) 0.06s forwards;
  }

  .pcos-os-hero-title__post {
    animation-delay: 0.14s;
  }

  .pcos-os-hero--motion .pcos-os-hero-col > .pcos-os-hero-copy {
    animation-delay: 0.1s;
  }

  .pcos-os-hero--motion .pcos-os-hero-col > .pcos-os-hero-actions {
    animation-delay: 0.18s;
  }

  .pcos-os-hero--motion .pcos-os-hero-col > .pcos-os-proof {
    animation-delay: 0.24s;
  }

  .pcos-os-hero--motion .pcos-os-hero-preview {
    opacity: 0;
    animation: pcos-os-fade-rise 0.68s cubic-bezier(0.22, 1, 0.36, 1) 0.14s forwards;
  }
}

@keyframes pcos-os-hero-brand-flip {
  0% {
    opacity: 0;
    transform: perspective(520px) rotateY(0deg);
  }

  14% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: perspective(520px) rotateY(360deg);
  }
}

@keyframes pcos-os-fade-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcos-os-hero--motion .pcos-os-hero-col > *,
  .pcos-os-hero--motion .pcos-os-hero-preview,
  .pcos-os-hero-title__pre,
  .pcos-os-hero-title__post,
  .pcos-os-hero-title .pcos-os-hero-em {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

.pcos-os-hero-copy {
  font-size: 18px;
  color: var(--pcos-os-muted);
  max-width: 600px;
  margin: 0 0 28px;
}

.pcos-os-hero-copy strong {
  color: var(--pcos-os-ink);
}

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

.pcos-os-hero-col > .pcos-os-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 620px;
  border-top: 1px solid #dce2dc;
  padding-top: 22px;
  margin-top: 10px;
}

.pcos-os-proof-card {
  background: white;
  border: 1px solid var(--pcos-os-line);
  border-radius: 14px;
  padding: 14px;
}

.pcos-os-proof-value {
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--pcos-os-ink);
}

.pcos-os-proof-label {
  font-size: 12px;
  color: #6c7772;
  margin-top: 4px;
  line-height: 1.45;
}

/* --- Product mock --- */
.pcos-os-product-shell {
  background: var(--pcos-os-navy);
  border-radius: 22px;
  padding: 10px;
  box-shadow: var(--pcos-os-shadow);
  border: 1px solid rgba(16, 24, 32, 0.12);
}

.pcos-os-product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 14px;
  color: #c8d2d8;
  font-size: 12px;
}

.pcos-os-dots {
  display: flex;
  gap: 6px;
}

.pcos-os-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5d6b75;
}

.pcos-os-dot:nth-child(2) {
  background: #7d8a93;
}

.pcos-os-dot:nth-child(3) {
  background: var(--pcos-os-teal);
}

.pcos-os-screen {
  background: #f8fafb;
  border-radius: 15px;
  overflow: hidden;
  min-height: 474px;
}

.pcos-os-screen-nav {
  height: 54px;
  background: #101820;
  color: #dbe2e7;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 700;
}

.pcos-os-tab {
  opacity: 0.75;
}

.pcos-os-tab.pcos-os-tab--active {
  opacity: 1;
  color: #c8e0d4;
  border-bottom: 2px solid var(--pcos-os-teal);
  height: 54px;
  display: inline-flex;
  align-items: center;
  margin-bottom: -2px;
}

.pcos-os-screen-body {
  display: grid;
  grid-template-columns: 178px 1fr;
}

.pcos-os-side {
  background: #fff;
  border-right: 1px solid var(--pcos-os-line);
  padding: 18px 14px;
}

.pcos-os-month {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.pcos-os-mini-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px 7px;
  font-size: 10px;
  text-align: center;
  color: #59636c;
}

.pcos-os-mini-cal b {
  color: #98a2ab;
  font-size: 9px;
}

.pcos-os-mini-cal span:nth-child(n + 13):nth-child(-n + 17) {
  background: #e6f1eb;
  color: #24634f;
  border-radius: 99px;
  padding: 3px 0;
  font-weight: 800;
}

.pcos-os-main-panel {
  padding: 18px;
}

.pcos-os-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}

.pcos-os-panel-head h3 {
  font-size: 28px;
  letter-spacing: -0.04em;
  margin: 0;
  font-weight: 800;
}

.pcos-os-panel-head p {
  color: var(--pcos-os-muted);
  font-size: 12px;
  margin: 2px 0 0;
}

.pcos-os-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.pcos-os-metric {
  background: white;
  border: 1px solid var(--pcos-os-line);
  border-radius: 13px;
  padding: 13px;
}

.pcos-os-metric span {
  color: var(--pcos-os-muted);
  font-size: 11px;
  font-weight: 700;
}

.pcos-os-metric strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.04em;
  margin-top: 5px;
  font-weight: 800;
}

.pcos-os-schedule {
  background: white;
  border: 1px solid var(--pcos-os-line);
  border-radius: 15px;
  overflow: hidden;
}

.pcos-os-schedule-row {
  display: grid;
  grid-template-columns: 72px repeat(5, 1fr);
  min-height: 48px;
  border-bottom: 1px solid var(--pcos-os-line);
}

.pcos-os-schedule-row:last-child {
  border-bottom: 0;
}

.pcos-os-time,
.pcos-os-slot {
  padding: 12px;
  font-size: 11px;
  color: #6b747d;
  border-right: 1px solid var(--pcos-os-line);
}

.pcos-os-slot:last-child {
  border-right: 0;
}

.pcos-os-booked {
  background: #e6f1eb;
  color: #275f50;
  border-radius: 9px;
  font-weight: 800;
  padding: 6px 8px;
  display: inline-block;
}

.pcos-os-booked--gold {
  background: #fbf1dc;
  color: #8a651f;
}

/* --- Home: schedule preview + trust strip --- */
.pcos-os-preview {
  border-radius: 14px;
  border: 1px solid #d9dfda;
  background: #ffffff;
  box-shadow: var(--pcos-os-shadow);
  overflow: hidden;
}

.pcos-os-preview__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 20px;
  border-bottom: 1px solid #e3e7e3;
}

.pcos-os-preview__title {
  font-size: 14px;
  font-weight: 650;
  color: var(--pcos-os-ink);
}

.pcos-os-preview__meta {
  margin-top: 3px;
  font-size: 12px;
  color: #6c7772;
}

.pcos-os-preview__pill {
  border-radius: 8px;
  background: #edf4ef;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 650;
  color: #24634f;
}

.pcos-os-preview__grid {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-width: 0;
}

.pcos-os-preview__aside {
  border-right: 1px solid #e3e7e3;
  background: #fbfcfa;
  padding: 16px;
}

.pcos-os-preview__aside-label {
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #7b8580;
}

.pcos-os-preview__kpis {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.pcos-os-preview__kpi {
  border-radius: 10px;
  border: 1px solid #e5e9e5;
  background: #ffffff;
  padding: 10px 12px;
}

.pcos-os-preview__kpi span {
  display: block;
  font-size: 11px;
  color: #6d7772;
}

.pcos-os-preview__kpi strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--pcos-os-ink);
}

.pcos-os-preview__main {
  padding: 16px;
  min-width: 0;
}

.pcos-os-preview__days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e9e5;
  font-size: 12px;
  font-weight: 650;
  color: #6d7772;
}

.pcos-os-preview__rows {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.pcos-os-preview__row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
}

.pcos-os-preview__time {
  font-size: 12px;
  color: #8b938f;
}

.pcos-os-preview__cells {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.pcos-os-preview__cells > span:not(.pcos-os-preview__cell) {
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid #e5e9e5;
  background: #fbfcfa;
}

.pcos-os-preview__cell {
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid #dce8df;
  background: #e6f1eb;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.25;
  color: #275f50;
  display: flex;
  align-items: center;
}

.pcos-os-preview__foot {
  margin: 14px 0 0;
  font-size: 12px;
}

.pcos-os-trust-bar {
  border-bottom: 1px solid rgba(17, 35, 31, 0.08);
  background: #f2ede5;
}

.pcos-os-trust-bar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pcos-os-trust-bar__label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #65716b;
}

.pcos-os-trust-bar__names {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 28px;
  font-size: 13px;
  font-weight: 650;
  color: var(--pcos-os-ink);
}

.pcos-os-trust-link {
  color: var(--pcos-os-ink);
  font-weight: 650;
  text-decoration: none !important;
}

.pcos-os-trust-link:hover {
  color: var(--pcos-os-teal-dark);
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.pcos-os-trust-static {
  color: #5a635e;
}

@media (prefers-reduced-motion: no-preference) {
  .pcos-os-trust-bar {
    opacity: 0;
    animation: pcos-os-fade-in-soft 0.52s ease-out 0.12s forwards;
  }
}

@keyframes pcos-os-fade-in-soft {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcos-os-trust-bar {
    opacity: 1 !important;
    animation: none !important;
  }
}

/* --- Sections (home) --- */
.pcos-os-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 22px;
}

.pcos-os-section--center {
  text-align: center;
}

.pcos-os-section-label {
  color: #3d6f5e;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pcos-os-section h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 0 0 14px;
  font-weight: 600;
}

.pcos-os-sub {
  color: var(--pcos-os-muted);
  font-size: 16px;
  max-width: 680px;
  margin: 0;
}

.pcos-os-sub--tight {
  margin-top: 10px;
  font-size: 15px;
  max-width: 640px;
}

.pcos-os-section-head {
  max-width: 640px;
}

.pcos-os-section--center .pcos-os-sub {
  margin-left: auto;
  margin-right: auto;
}

.pcos-os-who-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pcos-os-who-card {
  background: white;
  border: 1px solid var(--pcos-os-line);
  border-radius: var(--pcos-os-radius);
  padding: 22px;
  text-align: left;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.04);
}

.pcos-os-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #87928c;
  display: block;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.pcos-os-who-card h3 {
  font-size: 17px;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  font-weight: 700;
}

.pcos-os-who-card p {
  color: var(--pcos-os-muted);
  font-size: 13px;
  margin: 0;
}

/* --- Platform (before / after table) --- */
.pcos-os-platform {
  background: #dbd5cb;
  border-top: 1px solid rgba(17, 35, 31, 0.08);
  border-bottom: 1px solid rgba(17, 35, 31, 0.08);
}

.pcos-os-platform__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 40px;
  align-items: start;
}

.pcos-os-platform__intro .pcos-os-section-label {
  color: #3d6f5e;
}

.pcos-os-plat-table {
  border: 1px solid #cfd8cf;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.pcos-os-plat-table__head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) 1fr 1fr;
  gap: 12px;
  padding: 12px 18px;
  background: #f8faf7;
  border-bottom: 1px solid #e2e7e2;
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #75817a;
}

.pcos-os-plat-table__row {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) 1fr 1fr;
  gap: 12px;
  padding: 18px 18px;
  border-bottom: 1px solid #e8ece8;
  font-size: 14px;
  line-height: 1.45;
}

.pcos-os-plat-table__row:last-child {
  border-bottom: 0;
}

.pcos-os-plat-table__fn {
  font-weight: 650;
  color: var(--pcos-os-ink);
}

.pcos-os-plat-table__before {
  color: #7a8580;
}

.pcos-os-plat-table__after {
  font-weight: 600;
  color: #2c6654;
}

/* --- Modules --- */
.pcos-os-modules-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.pcos-os-modules-head .pcos-os-section-label {
  margin-bottom: 8px;
}

.pcos-os-modules-head h2 {
  margin-bottom: 0;
}

.pcos-os-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--pcos-os-line);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 34px;
  background: var(--pcos-os-line);
}

.pcos-os-module {
  background: white;
  padding: 28px;
  min-height: 194px;
}

.pcos-os-module small {
  color: #87928c;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.pcos-os-module h3 {
  font-size: 18px;
  margin: 12px 0 8px;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.pcos-os-module p {
  color: var(--pcos-os-muted);
  font-size: 13px;
  margin: 0;
}

/* --- Brand strip --- */
.pcos-os-brand-section {
  background: #ddd8cf;
  border-top: 1px solid rgba(17, 35, 31, 0.08);
  border-bottom: 1px solid rgba(17, 35, 31, 0.08);
}

.pcos-os-brand-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
}

.pcos-os-theme-board {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 35, 31, 0.1);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--pcos-os-shadow);
}

.pcos-os-theme-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pcos-os-theme {
  border-radius: 16px;
  padding: 12px 12px 14px;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(17, 35, 31, 0.12);
}

.pcos-os-theme--epc {
  background: #0a0a0a;
  border-color: #2a2418;
  color: #f5efe4;
}

.pcos-os-theme--formula {
  background: #0f2918;
  border-color: #1a4d30;
  color: #ecfccb;
}

.pcos-os-theme--malibu {
  background: linear-gradient(165deg, #ffffff 0%, #fdf2f8 55%, #fce7f3 100%);
  border-color: #f9a8d4;
  color: #831843;
}

.pcos-os-theme-name {
  font-weight: 650;
  font-size: 12px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.3;
}

.pcos-os-theme-name--link {
  color: inherit;
  text-decoration: none !important;
}

.pcos-os-theme-name--link:hover {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.pcos-os-theme--epc .pcos-os-theme-name--link,
.pcos-os-theme--formula .pcos-os-theme-name--link {
  color: #f5efe4;
}

.pcos-os-theme-preview {
  flex: 1;
  min-height: 108px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pcos-os-theme-preview__chrome {
  height: 22%;
  min-height: 22px;
  background: linear-gradient(90deg, #1a1a1a 0%, #262626 40%, #1a1a1a 100%);
  border-bottom: 2px solid #b8942f;
}

.pcos-os-theme-preview__chrome--formula {
  background: linear-gradient(90deg, #0a2414 0%, #134a28 50%, #0a2414 100%);
  border-bottom-color: #e4c200;
}

.pcos-os-theme-preview__chrome--malibu {
  background: linear-gradient(90deg, #fff 0%, #fce7f3 100%);
  border-bottom: 2px solid #ec4899;
}

.pcos-os-theme-preview__split {
  flex: 1;
  display: grid;
  grid-template-columns: 22% 1fr;
  min-height: 0;
}

.pcos-os-theme-preview__rail {
  background: #111;
  border-right: 1px solid #2a2a2a;
}

.pcos-os-theme-preview__rail--formula {
  background: #07150d;
  border-right-color: #1e4d32;
}

.pcos-os-theme-preview__rail--malibu {
  background: #fff;
  border-right: 1px solid #fbcfe8;
}

.pcos-os-theme-preview__stage {
  background: #141414;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pcos-os-theme-preview--formula .pcos-os-theme-preview__stage {
  background: #0c2214;
}

.pcos-os-theme-preview__stage--malibu {
  background: #fffdfb;
}

.pcos-os-theme-preview__barline {
  height: 6px;
  width: 42%;
  border-radius: 4px;
  background: linear-gradient(90deg, #c9a227, #8b6914);
}

.pcos-os-theme-preview__barline--formula {
  background: linear-gradient(90deg, #e4c200, #a16207);
}

.pcos-os-theme-preview__barline--malibu {
  background: linear-gradient(90deg, #ec4899, #f472b6);
}

.pcos-os-theme-preview__cells {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  flex: 1;
  align-content: start;
}

.pcos-os-theme-preview__cells--formula {
  gap: 5px;
}

.pcos-os-theme-preview__cells--malibu {
  gap: 5px;
}

.pcos-os-theme-preview__cells > span {
  min-height: 14px;
  border-radius: 4px;
  background: #222;
  border: 1px solid #333;
}

.pcos-os-theme-preview--formula .pcos-os-theme-preview__cells > span {
  background: #123220;
  border-color: #1a4d32;
}

.pcos-os-theme-preview__cells--malibu > span {
  background: #fdf2f8;
  border: 1px solid #fbcfe8;
}

.pcos-os-theme-preview__cell--epc {
  background: linear-gradient(180deg, #2a2418 0%, #1f1a12 100%) !important;
  border-color: #b8942f !important;
  box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.35);
}

.pcos-os-theme-preview__cell--formula {
  background: linear-gradient(180deg, #1a4d2e 0%, #0f2918 100%) !important;
  border-color: #e4c200 !important;
}

.pcos-os-theme-preview__cell--formula-alt {
  background: rgba(228, 194, 0, 0.22) !important;
  border-color: #ca8a04 !important;
}

.pcos-os-theme-preview__cell--malibu {
  background: linear-gradient(180deg, #fce7f3 0%, #fbcfe8 100%) !important;
  border-color: #ec4899 !important;
}

.pcos-os-theme-preview__cell--malibu-alt {
  background: #fff !important;
  border-color: #f9a8d4 !important;
}

/* --- Case studies --- */
.pcos-os-case-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pcos-os-home #proof.pcos-os-section {
  display: block;
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: clamp(22px, 4vw, 56px);
  padding-right: clamp(22px, 4vw, 56px);
  border-top: none;
}

.pcos-os-home #proof .pcos-os-case-grid {
  margin-top: 0;
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}

.pcos-os-case {
  background: white;
  border: 1px solid var(--pcos-os-line);
  border-radius: 20px;
  padding: 26px;
}

.pcos-os-case h3 {
  font-size: 20px;
  letter-spacing: -0.04em;
  margin: 0 0 8px;
  font-weight: 800;
}

.pcos-os-case p {
  color: var(--pcos-os-muted);
  font-size: 14px;
  margin: 0 0 20px;
}

.pcos-os-case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pcos-os-case-stats > div {
  background: #f4f7f9;
  border-radius: 12px;
  padding: 12px;
}

.pcos-os-case-stats strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.pcos-os-case-stats span {
  display: block;
  font-size: 10px;
  color: var(--pcos-os-muted);
  margin-top: 2px;
}

.pcos-os-case__link {
  margin: 14px 0 0;
  font-size: 13px;
}

/* --- Pricing band (home) --- */
.pcos-os-pricing-band {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #d8d2c8;
  border-top: 1px solid rgba(17, 35, 31, 0.1);
  border-bottom: 1px solid rgba(17, 35, 31, 0.1);
}

.pcos-os-pricing-band__inner {
  box-sizing: border-box;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(56px, 6vw, 78px) 22px;
}

.pcos-os-compliance-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding-bottom: clamp(32px, 4vw, 44px);
  margin-bottom: clamp(32px, 4vw, 44px);
  border-bottom: 1px solid var(--pcos-os-line);
}

.pcos-os-compliance-callout__text .pcos-os-section-label {
  margin-bottom: 8px;
}

.pcos-os-compliance-callout h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 600;
  color: var(--pcos-os-ink);
}

.pcos-os-compliance-callout__text .pcos-os-sub {
  max-width: 52ch;
  margin-top: 4px;
}

.pcos-os-compliance-callout__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 168px;
}

.pcos-os-pricing-plans .pcos-os-section-head {
  max-width: 640px;
}

.pcos-os-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.pcos-os-price-card {
  border: 1px solid #d1dbd1;
  border-radius: 14px;
  padding: 26px;
  background: #fbfcfa;
}

.pcos-os-price-card--featured {
  border-color: #2f6f58;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(16, 31, 28, 0.1);
}

.pcos-os-price-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--pcos-os-ink);
}

.pcos-os-price-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #617069;
}

.pcos-os-price-card__cta {
  margin-top: 22px;
  font-size: 13px;
  font-weight: 650;
  color: #2f6f58;
}

/* --- Final CTA (home) --- */
.pcos-os-cta-section {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(40px, 5vw, 72px) 0 clamp(64px, 8vw, 96px);
  background: #10231f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pcos-os-cta-section__inner {
  box-sizing: border-box;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

.pcos-os-final.pcos-os-final--corp {
  position: relative;
  overflow: visible;
  color: #fff;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.pcos-os-final--corp__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.pcos-os-final--corp h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.12;
  max-width: 28ch;
  color: #fff;
}

.pcos-os-final--corp__lede {
  margin: 0;
  color: #bdcbc4;
  font-size: 15px;
  line-height: 1.65;
  max-width: 52ch;
}

.pcos-os-final--corp__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}

@media (max-width: 720px) {
  .pcos-os-final--corp__grid {
    grid-template-columns: 1fr;
  }

  .pcos-os-final--corp__actions {
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* --- Site footer --- */
.pcos-os-site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px;
  color: var(--pcos-os-muted);
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--pcos-os-line);
}

.pcos-os-site-footer a {
  color: var(--pcos-os-muted);
  margin-right: 14px;
  text-decoration: none !important;
}

.pcos-os-site-footer a:hover {
  color: var(--pcos-os-ink);
}

.pcos-os-footer-nav {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
}

.pcos-os-footer-tag {
  margin: 0;
  max-width: 520px;
  line-height: 1.5;
}

/* --- Inner static pages --- */
.pcos-os-static-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 22px 72px;
}

.pcos-os-static-hero {
  margin-bottom: 40px;
  text-align: center;
}

.pcos-os-static-hero .pcos-os-kicker {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid rgba(17, 35, 31, 0.18);
  border-radius: 2px;
  color: #3d6f5e;
  background: rgba(255, 255, 255, 0.45);
  font-family: 'Bricolage Grotesque', 'Space Grotesk', Inter, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.pcos-os-static-main h1 {
  font-family: 'Bricolage Grotesque', 'Space Grotesk', Inter, system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  font-weight: 500;
}

.pcos-os-static-main .pcos-os-lede {
  font-size: 16px;
  color: var(--pcos-os-muted);
  margin: 0 auto 18px;
  max-width: 54ch;
  line-height: 1.65;
}

.pcos-os-static-main .pcos-os-lede strong {
  color: var(--pcos-os-ink);
  font-weight: 500;
}

.pcos-os-static-main .pcos-os-hero-actions {
  justify-content: center;
  margin-bottom: 0;
  gap: 10px;
}

.pcos-os-static-main .pcos-os-btn {
  font-family: 'Bricolage Grotesque', 'Space Grotesk', Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  min-height: 40px;
  padding: 0 20px;
  box-shadow: none;
}

.pcos-os-static-main .pcos-os-btn:hover {
  transform: none;
}

.pcos-os-static-main .pcos-os-btn--primary {
  background: var(--pcos-btn-metal-bg);
  color: var(--pcos-btn-metal-text);
  border: 1px solid var(--pcos-btn-metal-border);
  box-shadow: var(--pcos-btn-metal-inset);
}

.pcos-os-static-main .pcos-os-btn--primary:hover {
  background: var(--pcos-btn-metal-bg-hover);
  color: var(--pcos-btn-metal-text);
  box-shadow: inset 0 1px 0 rgba(255, 220, 168, 0.5);
}

.pcos-os-static-main .pcos-os-btn--secondary {
  background: rgba(255, 255, 255, 0.55);
  color: var(--pcos-os-ink);
  border-color: rgba(17, 35, 31, 0.2);
}

.pcos-os-static-main .pcos-os-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.85);
  color: var(--pcos-os-ink);
}

.pcos-os-static-main .pcos-os-btn--teal {
  background: var(--pcos-os-teal);
  color: #ffffff;
  border: 1px solid var(--pcos-os-teal);
}

.pcos-os-static-main .pcos-os-btn--teal:hover {
  background: var(--pcos-os-teal-dark);
  color: #ffffff;
}

.pcos-os-note {
  background: white;
  border: 1px solid var(--pcos-os-line);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 14px;
  color: var(--pcos-os-muted);
  margin-top: 24px;
}

.pcos-os-note strong {
  display: block;
  color: var(--pcos-os-ink);
  margin-bottom: 6px;
  font-size: 13px;
}

.pcos-os-static-card {
  background: white;
  border: 1px solid var(--pcos-os-line);
  border-radius: 4px;
  padding: 28px 26px;
  margin-bottom: 22px;
  box-shadow: none;
}

.pcos-os-static-card h2 {
  font-family: 'Bricolage Grotesque', 'Space Grotesk', Inter, system-ui, sans-serif;
  font-size: clamp(20px, 2.5vw, 26px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  font-weight: 500;
}

.pcos-os-static-card > p,
.pcos-os-static-card .pcos-os-prose {
  color: var(--pcos-os-muted);
  font-size: 15px;
  margin: 0 0 14px;
  line-height: 1.6;
}

.pcos-os-static-card .pcos-os-prose:last-child {
  margin-bottom: 0;
}

.pcos-os-feature-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.pcos-os-feature-list li {
  font-size: 14px;
  color: var(--pcos-os-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}

.pcos-os-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pcos-os-teal);
}

.pcos-os-feature-list li strong {
  font-weight: 500;
  color: var(--pcos-os-ink);
}

.pcos-os-feature-list a {
  color: var(--pcos-os-teal-dark);
  font-weight: 500;
  text-decoration: none !important;
}

.pcos-os-feature-list a:hover {
  text-decoration: underline !important;
}

.pcos-os-static-cta {
  margin-top: 36px;
  padding: 32px 26px;
  border-radius: 4px;
  background: #10231f;
  color: white;
  text-align: center;
}

.pcos-os-static-cta h2 {
  font-family: 'Bricolage Grotesque', 'Space Grotesk', Inter, system-ui, sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #fff;
}

.pcos-os-static-cta p {
  color: #bdcbc4;
  margin: 0 auto 22px;
  font-size: 14px;
  max-width: 42ch;
  line-height: 1.6;
}

.pcos-os-static-cta .pcos-os-btn--teal {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.pcos-os-static-cta .pcos-os-btn--teal:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.pcos-os-static-cta .pcos-os-btn--secondary {
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
}

.pcos-os-static-cta .pcos-os-btn--secondary:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.34);
}

.pcos-os-foot {
  font-size: 12px;
  color: var(--pcos-os-muted);
  margin-top: 20px;
}

/* --- Legal / long-form docs --- */
.pcos-os-doc {
  max-width: 720px;
}

.pcos-os-doc-meta {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pcos-os-teal-dark);
  margin: 0 0 10px;
}

.pcos-os-doc h1 {
  font-size: clamp(28px, 3.5vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 10px;
  font-weight: 800;
}

.pcos-os-doc-lede {
  color: var(--pcos-os-muted);
  font-size: 14px;
  margin: 0 0 28px;
}

.pcos-os-doc-panel h2 {
  font-size: 17px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--pcos-os-ink);
}

.pcos-os-doc-panel h2:first-child {
  margin-top: 0;
}

.pcos-os-doc-panel p {
  margin: 0 0 14px;
  color: var(--pcos-os-muted);
  font-size: 15px;
  line-height: 1.6;
}

.pcos-os-doc-panel a {
  color: var(--pcos-os-teal-dark);
  font-weight: 600;
  text-decoration: none !important;
}

.pcos-os-doc-panel a:hover {
  text-decoration: underline !important;
}

.pcos-os-shot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.pcos-os-shot {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--pcos-os-line);
  border-radius: 14px;
  padding: 18px 18px 20px;
  box-shadow:
    0 1px 2px rgba(16, 35, 31, 0.04),
    0 14px 30px rgba(16, 35, 31, 0.05);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.pcos-os-shot:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 35, 31, 0.18);
  box-shadow:
    0 1px 2px rgba(16, 35, 31, 0.05),
    0 22px 44px rgba(16, 35, 31, 0.1);
}

.pcos-os-shot__chrome {
  display: block;
  width: 34px;
  height: 8px;
  margin-bottom: 16px;
  background-image: radial-gradient(circle, #cdd5ce 0 3px, transparent 3.5px);
  background-size: 12px 8px;
  background-repeat: repeat-x;
}

.pcos-os-shot__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--pcos-os-ink);
}

.pcos-os-shot__desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--pcos-os-muted);
}

.pcos-os-shot-foot {
  margin-top: 16px;
  font-size: 14px;
  color: var(--pcos-os-muted);
}

/* --- Responsive --- */
@media (max-width: 920px) {
  .pcos-os-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 0;
    position: relative;
  }

  .pcos-os-brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .pcos-os-nav-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
  }

  .pcos-os-nav-actions .pcos-os-btn--secondary {
    order: 0;
  }

  .pcos-os-nav-actions .pcos-os-btn--primary {
    order: 1;
  }

  .pcos-os-nav-actions .pcos-os-menu-btn {
    order: 2;
  }

  .pcos-os-links {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 22px 18px;
    margin-top: 0;
    background: rgba(238, 232, 222, 0.98);
    border-bottom: 1px solid rgba(17, 35, 31, 0.1);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    z-index: 60;
  }

  .pcos-os-links.pcos-os-links--open {
    display: flex;
  }

  .pcos-os-site:not(.pcos-os-home) .pcos-os-links.pcos-os-links--open {
    background: rgba(18, 10, 6, 0.98);
    border-bottom: 1px solid rgba(255, 140, 60, 0.18);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }

  .pcos-os-site:not(.pcos-os-home) .pcos-os-links.pcos-os-links--open a {
    color: #fff2e8;
    border-bottom-color: rgba(255, 140, 60, 0.12);
  }

  .pcos-os-site:not(.pcos-os-home) .pcos-os-links.pcos-os-links--open a[aria-current='page'] {
    color: var(--pcos-cine-orange-hot, #ffb347);
  }

  .pcos-os-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(17, 35, 31, 0.06);
  }

  .pcos-os-links a:last-child {
    border-bottom: 0;
  }

  .pcos-os-menu-btn {
    display: inline-flex;
  }

  .pcos-os-hero,
  .pcos-os-brand-grid {
    grid-template-columns: 1fr;
  }

  .pcos-os-who-grid,
  .pcos-os-modules {
    grid-template-columns: 1fr 1fr;
  }

  .pcos-os-platform__inner,
  .pcos-os-case-grid:not(.pcos-os-proof__cases) {
    grid-template-columns: 1fr;
  }

  .pcos-os-preview__grid {
    grid-template-columns: 1fr;
  }

  .pcos-os-price-grid {
    grid-template-columns: 1fr;
  }

  .pcos-os-compliance-callout {
    grid-template-columns: 1fr;
  }

  .pcos-os-compliance-callout__actions {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }

  .pcos-os-trust-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .pcos-os-screen-body {
    grid-template-columns: 1fr;
  }

  .pcos-os-side {
    display: none;
  }

  .pcos-os-hero-col > .pcos-os-proof {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {
  .pcos-os-who-grid,
  .pcos-os-modules,
  .pcos-os-theme-row {
    grid-template-columns: 1fr;
  }

  .pcos-os-modules-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .pcos-os-nav-actions .pcos-os-btn--secondary {
    display: none;
  }

  .pcos-os-nav-actions .pcos-os-btn--primary {
    padding: 0 12px;
    font-size: 12px;
    min-height: 40px;
  }

  .pcos-os-hero {
    padding-top: 54px;
  }

  .pcos-os-screen-nav {
    overflow-x: auto;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .pcos-os-metrics {
    grid-template-columns: 1fr;
  }

  .pcos-os-schedule-row {
    grid-template-columns: 60px 1fr 1fr;
  }

  .pcos-os-schedule-row .pcos-os-slot:nth-child(n + 4) {
    display: none;
  }

  .pcos-os-case-stats {
    grid-template-columns: 1fr;
  }

  .pcos-os-cta-section__inner,
  .pcos-os-pricing-band__inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .pcos-os-plat-table__head {
    display: none;
  }

  .pcos-os-plat-table__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pcos-os-plat-table__before::before {
    content: 'Before: ';
    font-weight: 650;
    color: #617069;
  }

  .pcos-os-plat-table__after::before {
    content: 'After: ';
    font-weight: 650;
    color: #2c6654;
  }

  .pcos-os-cta-section {
    padding-bottom: 64px;
  }
}
