.cpm-site {
  --cpm-navy: #071f3d;
  --cpm-navy-2: #0c3159;
  --cpm-ink: #0b1830;
  --cpm-muted: #5f6f82;
  --cpm-line: #d7e0ea;
  --cpm-soft-line: #e8eef5;
  --cpm-orange: #f47a20;
  --cpm-orange-2: #ff9a3d;
  --cpm-steel: #f3f6f9;
  --cpm-cyan: #49b8d4;
  --cpm-green: #46b47b;
  --cpm-shadow: 0 18px 45px rgba(7, 31, 61, 0.12);
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(7, 31, 61, 0.06) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(rgba(7, 31, 61, 0.05) 1px, transparent 1px) 0 0 / 92px 92px,
    #ffffff;
  color: var(--cpm-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.cpm-site * {
  box-sizing: border-box;
}

.cpm-site a {
  color: inherit;
  text-decoration: none;
}

.cpm-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.cpm-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--cpm-navy);
  white-space: nowrap;
}

.cpm-wordmark strong {
  color: var(--cpm-orange);
}

.cpm-mark {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--cpm-navy);
}

.cpm-mark svg {
  width: 100%;
  height: 100%;
}

.cpm-mark path:first-child {
  fill: var(--cpm-navy);
}

.cpm-mark path:last-child {
  fill: var(--cpm-orange);
}

.cpm-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 32px);
}

.cpm-header nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--cpm-ink);
}

.cpm-nav-action,
.cpm-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.cpm-nav-action,
.cpm-button-primary {
  background: var(--cpm-navy);
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(7, 31, 61, 0.18);
}

.cpm-button-outline {
  border-color: var(--cpm-orange);
  background: #ffffff;
  color: var(--cpm-navy);
}

.cpm-nav-action:hover,
.cpm-button:hover,
.cpm-text-action:hover,
.cpm-runway a:hover {
  transform: translateY(-1px);
}

.cpm-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 600px;
  overflow: clip;
  padding: 56px max(32px, calc((100vw - 1280px) / 2)) 185px;
}

.cpm-hero-media {
  position: absolute;
  inset: 0 0 auto auto;
  z-index: 0;
  width: min(62vw, 980px);
  height: 610px;
  pointer-events: none;
}

.cpm-hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 17%, rgba(255, 255, 255, 0.66) 42%, rgba(255, 255, 255, 0.06) 70%);
}

.cpm-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.cpm-hero-copy {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
}

.cpm-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--cpm-navy);
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.cpm-hero-copy > p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #1a2b43;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.45;
}

.cpm-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.cpm-text-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 2px solid var(--cpm-orange);
  color: var(--cpm-navy);
  font-size: 14px;
  font-weight: 800;
}

.cpm-positioning {
  max-width: none;
  color: var(--cpm-muted) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
}

.cpm-runway {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1280px, calc(100% - 48px));
  margin: -145px auto 0;
}

.cpm-runway article {
  overflow: hidden;
  border: 1px solid var(--cpm-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--cpm-shadow);
}

.cpm-runway img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.cpm-runway div {
  padding: 20px;
}

.cpm-runway h2 {
  margin: 0;
  color: var(--cpm-navy);
  font-size: 20px;
  line-height: 1.15;
}

.cpm-runway p {
  min-height: 48px;
  margin: 10px 0 16px;
  color: var(--cpm-muted);
  font-size: 14px;
  line-height: 1.45;
}

.cpm-runway a {
  display: inline-flex;
  color: var(--cpm-orange);
  font-size: 14px;
  font-weight: 900;
}

.cpm-editorial,
.cpm-matching,
.cpm-founder,
.cpm-final,
.cpm-labs,
.cpm-process,
.cpm-categories,
.cpm-services {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.cpm-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 92px);
  padding: 105px 0 88px;
}

.cpm-editorial span,
.cpm-section-heading span,
.cpm-match-panel > span,
.cpm-founder span:first-child {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--cpm-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cpm-editorial h2,
.cpm-section-heading h2,
.cpm-match-panel h2,
.cpm-founder h2,
.cpm-final h2 {
  margin: 0;
  color: var(--cpm-navy);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.cpm-editorial p,
.cpm-section-heading p,
.cpm-match-panel p,
.cpm-founder p,
.cpm-final p {
  margin: 0;
  color: var(--cpm-muted);
  font-size: 18px;
  line-height: 1.65;
}

.cpm-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.cpm-proof-row strong {
  border-top: 2px solid var(--cpm-orange);
  padding-top: 12px;
  color: var(--cpm-navy);
  font-size: 14px;
  line-height: 1.35;
}

.cpm-labs {
  border-radius: 8px;
  background: linear-gradient(145deg, var(--cpm-navy), #082c4d 56%, #04172a);
  padding: clamp(40px, 6vw, 74px);
  color: #ffffff;
}

.cpm-section-heading {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.cpm-labs .cpm-section-heading h2,
.cpm-labs .cpm-section-heading p,
.cpm-labs .cpm-section-heading span {
  color: #ffffff;
}

.cpm-labs .cpm-section-heading span {
  color: var(--cpm-orange-2);
}

.cpm-filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 30px;
}

.cpm-filterbar button,
.cpm-match-tags button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.cpm-filterbar button.is-active {
  border-color: var(--cpm-orange);
  background: var(--cpm-orange);
  color: #06182d;
}

.cpm-lab-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cpm-lab-card {
  min-height: 236px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.cpm-lab-card[hidden] {
  display: none;
}

.cpm-lab-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #ffffff;
}

.cpm-icon {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.cpm-lab-icon .cpm-icon path:nth-child(even),
.cpm-lab-icon .cpm-icon circle:nth-child(even) {
  stroke: var(--cpm-orange);
}

.cpm-lab-card span {
  color: var(--cpm-orange-2);
  font-size: 12px;
  font-weight: 900;
}

.cpm-lab-card h3 {
  margin: 8px 0 10px;
  font-size: 22px;
  line-height: 1.05;
}

.cpm-lab-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.5;
}

.cpm-matching {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: stretch;
  padding: 96px 0;
}

.cpm-match-panel {
  border-left: 4px solid var(--cpm-orange);
  padding-left: 28px;
}

.cpm-match-panel p {
  margin-top: 20px;
}

.cpm-match-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.cpm-match-tags button {
  border-color: var(--cpm-line);
  background: #ffffff;
  color: var(--cpm-navy);
}

.cpm-match-visual {
  display: grid;
  gap: 12px;
  border: 1px solid var(--cpm-line);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(90deg, rgba(244, 122, 32, 0.08), transparent),
    var(--cpm-steel);
}

.cpm-match-visual div {
  display: grid;
  gap: 7px;
  border: 1px solid var(--cpm-line);
  border-radius: 8px;
  padding: 22px;
  background: #ffffff;
}

.cpm-match-visual strong {
  color: var(--cpm-navy);
  font-size: 24px;
}

.cpm-match-visual small {
  color: var(--cpm-muted);
  font-size: 14px;
}

.cpm-match-visual i {
  display: block;
  width: 2px;
  height: 28px;
  margin-left: 30px;
  background: var(--cpm-orange);
}

.cpm-process,
.cpm-categories,
.cpm-services {
  padding: 82px 0;
  border-top: 1px solid var(--cpm-soft-line);
}

.cpm-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: var(--cpm-line);
  border: 1px solid var(--cpm-line);
  border-radius: 8px;
  overflow: hidden;
}

.cpm-process-grid article {
  min-height: 260px;
  padding: 28px;
  background: #ffffff;
}

.cpm-process-grid span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--cpm-orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.cpm-process-grid h3,
.cpm-service-grid h3 {
  margin: 0;
  color: var(--cpm-navy);
  font-size: 25px;
}

.cpm-process-grid p {
  margin: 14px 0 0;
  color: var(--cpm-muted);
  font-size: 15px;
  line-height: 1.55;
}

.cpm-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.cpm-category-strip span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid var(--cpm-line);
  border-radius: 999px;
  padding: 0 18px;
  background: #ffffff;
  color: var(--cpm-navy);
  font-size: 14px;
  font-weight: 850;
}

.cpm-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.cpm-service-grid article {
  display: flex;
  min-height: 120px;
  align-items: flex-end;
  justify-content: space-between;
  border: 1px solid var(--cpm-line);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(145deg, #ffffff, #f4f7fa);
}

.cpm-service-grid span {
  width: 14px;
  height: 14px;
  border: 3px solid var(--cpm-orange);
  border-radius: 50%;
  box-shadow: 18px -20px 0 -4px var(--cpm-cyan), 34px -4px 0 -5px var(--cpm-green);
}

.cpm-founder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: center;
  border-radius: 8px;
  background: var(--cpm-navy);
  padding: clamp(36px, 5vw, 70px);
  color: #ffffff;
}

.cpm-founder h2,
.cpm-founder p {
  color: #ffffff;
}

.cpm-founder p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.cpm-founder aside {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.cpm-founder aside strong {
  display: block;
  color: var(--cpm-orange-2);
  font-size: 58px;
  line-height: 0.95;
}

.cpm-founder aside span {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.cpm-founder aside small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.cpm-final {
  padding: 100px 0 110px;
  text-align: center;
}

.cpm-final p {
  max-width: 720px;
  margin: 20px auto 0;
}

.cpm-final .cpm-actions {
  justify-content: center;
}

@media (max-width: 980px) {
  .cpm-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .cpm-header nav {
    justify-content: flex-start;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 4px;
  }

  .cpm-hero {
    min-height: 720px;
    padding-top: 56px;
  }

  .cpm-hero-media {
    width: 100%;
    height: 390px;
    opacity: 0.34;
  }

  .cpm-hero-media::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), #ffffff);
  }

  .cpm-runway,
  .cpm-editorial,
  .cpm-matching,
  .cpm-founder {
    grid-template-columns: 1fr;
  }

  .cpm-lab-grid,
  .cpm-process-grid,
  .cpm-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cpm-header,
  .cpm-runway,
  .cpm-editorial,
  .cpm-matching,
  .cpm-founder,
  .cpm-final,
  .cpm-labs,
  .cpm-process,
  .cpm-categories,
  .cpm-services {
    width: min(100% - 28px, 1280px);
  }

  .cpm-header {
    padding-top: 12px;
  }

  .cpm-wordmark {
    font-size: 19px;
  }

  .cpm-nav-action {
    display: none;
  }

  .cpm-hero {
    min-height: 690px;
    padding: 42px 14px 210px;
  }

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

  .cpm-actions {
    align-items: stretch;
  }

  .cpm-button,
  .cpm-text-action {
    width: 100%;
  }

  .cpm-runway,
  .cpm-lab-grid,
  .cpm-process-grid,
  .cpm-service-grid,
  .cpm-proof-row {
    grid-template-columns: 1fr;
  }

  .cpm-labs {
    padding: 30px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cpm-site *,
  .cpm-site *::before,
  .cpm-site *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
