body[data-site-id="cpgmfg"] {
  background: #ffffff !important;
  color: #1e293b !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cpg-site,
.cpg-site * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.cpg-site {
  --cpg-slate: #475569;
  --cpg-dark: #1e293b;
  --cpg-darker: #0f172a;
  --cpg-light: #94a3b8;
  --cpg-orange: #e87722;
  --cpg-warm: #f8fafc;
  --cpg-muted: #64748b;
  background: #ffffff;
  color: var(--cpg-dark);
  min-height: 100vh;
}

.cpg-container,
.cpg-wide-container,
.cpg-video-wrap {
  margin: 0 auto;
  width: min(100% - 48px, 1024px);
}

.cpg-wide-container {
  width: min(100% - 48px, 1152px);
}

.cpg-video-wrap {
  width: min(100% - 48px, 896px);
}

.cpg-centered {
  text-align: center;
}

.cpg-utility {
  background: var(--cpg-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  text-align: center;
  text-transform: uppercase;
}

.cpg-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.cpg-primary-nav {
  align-items: center;
  display: flex;
  height: 64px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 32px;
}

.cpg-logo {
  color: var(--cpg-slate);
  display: flex;
  flex-direction: column;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
}

.cpg-logo > span {
  font-size: 22px;
}

.cpg-logo > span span {
  color: var(--cpg-orange);
}

.cpg-logo small {
  color: #9ca3af;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  margin-top: 5px;
  text-transform: uppercase;
}

.cpg-primary-nav nav {
  align-items: center;
  display: flex;
  gap: 18px;
}

.cpg-primary-nav nav a {
  color: var(--cpg-slate);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.cpg-primary-nav nav a:hover {
  color: var(--cpg-orange);
}

.cpg-primary-nav .cpg-nav-cta {
  background: var(--cpg-orange);
  border-radius: 4px;
  color: #fff;
  padding: 10px 16px;
}

.cpg-arms-strip {
  background: var(--cpg-dark);
  display: flex;
  gap: 4px;
  justify-content: center;
  overflow-x: auto;
  padding: 0 24px;
}

.cpg-arms-strip strong,
.cpg-arms-strip a {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  white-space: nowrap;
}

.cpg-arms-strip strong {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 10px 10px 10px 0;
  text-transform: uppercase;
}

.cpg-arms-strip a {
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 650;
  gap: 5px;
  padding: 10px 12px;
  text-decoration: none;
}

.cpg-arms-strip a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cpg-arms-strip .is-current {
  background: rgba(232, 119, 34, 0.15);
  color: var(--cpg-orange);
}

.cpg-arms-strip span {
  opacity: 0.58;
}

.cpg-hero,
.cpg-packexpo,
.cpg-final-cta {
  background: var(--cpg-dark);
  color: #fff;
}

.cpg-hero {
  padding: 96px 0;
}

.cpg-eyebrow {
  color: var(--cpg-orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.cpg-hero h1 {
  color: #fff;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 950;
  line-height: 1.05;
  margin: 0 auto 24px;
}

.cpg-hero-copy {
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 790px;
}

.cpg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cpg-actions-left {
  justify-content: flex-start;
}

.cpg-button {
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  font-size: 16px;
  font-weight: 850;
  justify-content: center;
  min-height: 54px;
  padding: 14px 30px;
  text-decoration: none;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cpg-button-primary {
  background: var(--cpg-orange);
  color: #fff;
}

.cpg-button-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.cpg-button-outline {
  background: transparent;
  border: 2px solid var(--cpg-slate);
  color: var(--cpg-slate);
}

.cpg-button-outline:hover {
  background: var(--cpg-slate);
  color: #fff;
}

.cpg-button-light {
  background: transparent;
  border: 2px solid #d1d5db;
  color: #374151;
}

.cpg-button:hover {
  opacity: 0.9;
}

.cpg-section,
.cpg-network-nav {
  background: #fff;
  padding: 80px 0;
}

.cpg-warm {
  background: var(--cpg-warm);
}

.cpg-section h2,
.cpg-packexpo h2,
.cpg-phase-banner h2,
.cpg-final-cta h2 {
  color: var(--cpg-dark);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 950;
  line-height: 1.08;
  margin: 0 auto 18px;
  max-width: 820px;
}

.cpg-section h2 span {
  color: var(--cpg-light);
}

.cpg-section h2 mark {
  background: transparent;
  color: var(--cpg-orange);
}

.cpg-lead {
  color: var(--cpg-muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 auto 46px;
  max-width: 720px;
}

.cpg-journey-grid,
.cpg-path-grid,
.cpg-service-grid,
.cpg-heritage-grid,
.cpg-audience-grid,
.cpg-alliance-grid,
.cpg-packexpo-grid {
  display: grid;
  gap: 24px;
}

.cpg-journey-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
}

.cpg-journey-card {
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  text-align: left;
}

.cpg-journey-card i {
  background: var(--cpg-light);
  border-radius: 999px;
  display: block;
  height: 16px;
  margin-bottom: 18px;
  width: 16px;
}

.cpg-journey-card h3 {
  color: var(--cpg-slate);
  font-size: 24px;
  font-weight: 950;
  margin: 0 0 7px;
}

.cpg-journey-card strong {
  color: #94a3b8;
  display: block;
  font-size: 14px;
  font-weight: 750;
  margin-bottom: 15px;
}

.cpg-journey-card p,
.cpg-path-card p,
.cpg-service-card p,
.cpg-heritage-grid p,
.cpg-audience-card p,
.cpg-alliance-grid p {
  color: var(--cpg-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.cpg-journey-card ul,
.cpg-path-card ul,
.cpg-audience-card ul {
  display: grid;
  gap: 7px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.cpg-journey-card li,
.cpg-path-card li,
.cpg-audience-card li {
  color: var(--cpg-muted);
  font-size: 12px;
  line-height: 1.45;
  padding-left: 17px;
  position: relative;
}

.cpg-journey-card li::before,
.cpg-path-card li::before,
.cpg-audience-card li::before {
  color: var(--cpg-orange);
  content: ">";
  font-weight: 950;
  left: 0;
  position: absolute;
}

.cpg-active {
  background: #fff8f3;
  border-color: var(--cpg-orange);
  box-shadow: 0 16px 32px rgba(30, 41, 59, 0.09);
}

.cpg-active i {
  background: var(--cpg-orange);
  margin-top: 8px;
}

.cpg-active h3,
.cpg-active li:last-child {
  color: var(--cpg-orange);
}

.cpg-active strong,
.cpg-active p {
  color: #475569;
}

.cpg-ribbon {
  background: var(--cpg-orange);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  left: 50%;
  padding: 5px 12px;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.cpg-text-link {
  color: var(--cpg-slate);
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.cpg-path-grid,
.cpg-audience-grid,
.cpg-alliance-grid,
.cpg-packexpo-grid,
.cpg-heritage-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cpg-path-card {
  background: #fff;
  border: 2px solid var(--path-color);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
}

.cpg-path-card h3 {
  background: var(--path-color);
  color: #fff;
  font-size: 19px;
  font-weight: 950;
  margin: 0;
  padding: 20px 24px;
}

.cpg-path-card > div {
  padding: 24px;
}

.cpg-path-card a {
  color: var(--path-color);
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  margin-top: 24px;
  text-decoration: none;
}

.cpg-packexpo {
  padding: 80px 0;
}

.cpg-packexpo-grid {
  align-items: center;
  gap: 48px;
}

.cpg-packexpo h2 {
  color: #fff;
  margin-left: 0;
}

.cpg-packexpo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 20px;
}

.cpg-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.cpg-proof-row div,
.cpg-access-stack article {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
}

.cpg-proof-row div {
  padding: 13px 16px;
}

.cpg-proof-row strong {
  color: #fff;
  display: block;
  font-size: 25px;
  font-weight: 950;
}

.cpg-proof-row span {
  color: rgba(255, 255, 255, 0.52);
  display: block;
  font-size: 12px;
  margin-top: 2px;
}

.cpg-access-stack {
  display: grid;
  gap: 16px;
}

.cpg-access-stack article {
  padding: 20px;
}

.cpg-access-stack h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  margin: 0 0 6px;
}

.cpg-access-stack p {
  font-size: 14px;
  margin: 0;
}

.cpg-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  text-align: left;
}

.cpg-service-card {
  border: 2px solid #f1f5f9;
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cpg-service-card:hover {
  border-color: #fdba74;
  box-shadow: 0 16px 34px rgba(30, 41, 59, 0.08);
  transform: translateY(-2px);
}

.cpg-service-card span {
  align-items: center;
  background: var(--cpg-dark);
  border-radius: 9px;
  color: var(--cpg-orange);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 18px;
  width: 44px;
}

.cpg-service-card h3 {
  color: #111827;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.28;
  margin: 0 0 9px;
}

.cpg-service-card p {
  font-size: 12px;
}

.cpg-heritage-grid,
.cpg-alliance-grid {
  align-items: start;
  gap: 48px;
}

.cpg-heritage-grid h2,
.cpg-alliance-grid h2 {
  margin-left: 0;
}

.cpg-heritage-grid > div:first-child p,
.cpg-alliance-grid p {
  margin-bottom: 20px;
}

.cpg-heritage-grid h3,
.cpg-timeline h3,
.cpg-footer h3 {
  color: var(--cpg-slate);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.cpg-brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cpg-brand-cloud span {
  background: var(--cpg-slate);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  padding: 7px 12px;
}

.cpg-timeline {
  display: grid;
}

.cpg-timeline-item {
  display: grid;
  gap: 16px;
  grid-template-columns: 14px minmax(0, 1fr);
  position: relative;
}

.cpg-timeline-item i {
  background: var(--cpg-orange);
  border-radius: 999px;
  height: 12px;
  margin-top: 2px;
  width: 12px;
}

.cpg-timeline-item b {
  background: #e2e8f0;
  bottom: 7px;
  display: block;
  left: 5px;
  position: absolute;
  top: 18px;
  width: 2px;
}

.cpg-timeline-item div {
  padding-bottom: 24px;
}

.cpg-timeline-item strong {
  color: var(--cpg-orange);
  display: block;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.cpg-timeline-item p {
  font-size: 14px;
}

.cpg-audience-card {
  border: 2px solid #f1f5f9;
  border-radius: 16px;
  color: inherit;
  display: block;
  padding: 32px;
  text-align: left;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cpg-audience-card:hover {
  box-shadow: 0 16px 34px rgba(30, 41, 59, 0.08);
  transform: translateY(-2px);
}

.cpg-audience-brand:hover {
  border-color: #94a3b8;
}

.cpg-audience-maker:hover {
  border-color: #fdba74;
}

.cpg-audience-card i {
  align-items: center;
  background: var(--cpg-slate);
  border-radius: 12px;
  color: #fff;
  display: inline-flex;
  font-size: 18px;
  font-style: normal;
  font-weight: 950;
  height: 48px;
  justify-content: center;
  margin-bottom: 20px;
  width: 48px;
}

.cpg-audience-maker i {
  background: var(--cpg-orange);
}

.cpg-audience-card h3 {
  color: var(--cpg-dark);
  font-size: 22px;
  font-weight: 950;
  margin: 0 0 12px;
}

.cpg-audience-card span {
  color: var(--cpg-orange);
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  margin-top: 22px;
}

.cpg-arm-grid,
.cpg-network-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cpg-arm-grid a,
.cpg-network-grid a {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 9px;
  display: block;
  padding: 13px;
  text-align: left;
  text-decoration: none;
}

.cpg-arm-grid a.is-current,
.cpg-network-grid a.is-current {
  background: #fff8f3;
  border-color: var(--cpg-orange);
}

.cpg-arm-grid strong,
.cpg-network-grid strong {
  color: var(--cpg-dark);
  display: block;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 3px;
}

.cpg-arm-grid span,
.cpg-network-grid span {
  color: var(--cpg-light);
  display: block;
  font-size: 12px;
}

.cpg-arm-grid em {
  color: var(--cpg-orange);
  display: block;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  margin-top: 6px;
}

.cpg-video-card {
  align-items: center;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 20% 20%, rgba(232, 119, 34, 0.22), transparent 34%),
    linear-gradient(135deg, #0f172a, #1e293b 56%, #475569);
  border-radius: 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.cpg-video-card span {
  color: var(--cpg-orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.cpg-video-card strong {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 950;
  line-height: 1;
}

.cpg-video-card small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 750;
  margin-top: 16px;
}

.cpg-phase-banner {
  background: var(--cpg-warm);
  border-bottom: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
  padding: 56px 0;
  text-align: center;
}

.cpg-phase-banner p {
  color: var(--cpg-orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.cpg-phase-banner h2 {
  font-size: clamp(28px, 4vw, 38px);
}

.cpg-phase-banner div div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 26px;
}

.cpg-phase-banner span,
.cpg-phase-banner strong {
  border: 2px solid #e2e8f0;
  border-radius: 999px;
  color: var(--cpg-muted);
  font-size: 13px;
  font-weight: 850;
  padding: 9px 14px;
}

.cpg-phase-banner strong {
  background: var(--cpg-orange);
  border-color: var(--cpg-orange);
  color: #fff;
}

.cpg-network-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cpg-final-cta {
  padding: 94px 0;
}

.cpg-final-cta h2 {
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
}

.cpg-final-cta p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 38px;
  max-width: 720px;
}

.cpg-contact-row {
  color: rgba(255, 255, 255, 0.42);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.cpg-footer {
  background: var(--cpg-darker);
  color: #6b7280;
  padding: 48px 0 34px;
}

.cpg-footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 2fr 1fr 1fr;
  margin-bottom: 34px;
}

.cpg-footer strong {
  color: var(--cpg-slate);
  display: block;
  font-size: 22px;
  font-weight: 950;
  margin-bottom: 9px;
}

.cpg-footer strong span {
  color: var(--cpg-orange);
}

.cpg-footer p,
.cpg-footer a {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

.cpg-footer a {
  display: block;
  margin-bottom: 7px;
  text-decoration: none;
}

.cpg-footer a:hover {
  color: #d1d5db;
}

.cpg-footer-network {
  border-top: 1px solid #1f2937;
  padding-top: 24px;
}

.cpg-footer-network div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.cpg-footer-network a {
  font-size: 12px;
}

.cpg-copyright {
  border-top: 1px solid #1f2937;
  color: #374151 !important;
  font-size: 12px !important;
  margin: 22px 0 0;
  padding-top: 22px;
  text-align: center;
}

@media (max-width: 1180px) {
  .cpg-primary-nav nav {
    display: none;
  }
}

@media (max-width: 880px) {
  .cpg-container,
  .cpg-wide-container,
  .cpg-video-wrap {
    width: min(100% - 32px, 1024px);
  }

  .cpg-utility {
    font-size: 10px;
  }

  .cpg-primary-nav {
    height: 72px;
    justify-content: center;
    padding: 0 18px;
  }

  .cpg-logo > span {
    font-size: 28px;
  }

  .cpg-logo small {
    font-size: 10px;
  }

  .cpg-arms-strip {
    justify-content: flex-start;
  }

  .cpg-hero {
    padding: 72px 0;
  }

  .cpg-hero h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .cpg-hero-copy {
    font-size: 18px;
  }

  .cpg-journey-grid,
  .cpg-path-grid,
  .cpg-service-grid,
  .cpg-heritage-grid,
  .cpg-audience-grid,
  .cpg-alliance-grid,
  .cpg-packexpo-grid,
  .cpg-arm-grid,
  .cpg-network-grid,
  .cpg-footer-grid {
    grid-template-columns: 1fr;
  }

  .cpg-section,
  .cpg-packexpo,
  .cpg-network-nav,
  .cpg-final-cta {
    padding: 68px 0;
  }

  .cpg-actions-left {
    justify-content: center;
  }

  .cpg-alliance-grid,
  .cpg-heritage-grid {
    text-align: center;
  }

  .cpg-brand-cloud,
  .cpg-footer-network div {
    justify-content: center;
  }

  .cpg-timeline {
    text-align: left;
  }
}
