/* ═══ pages.css — page-specific styles ═══
 * Color context for all page sections in this file:
 * Dark sections: bg #0E1929 or #122030 → text: fg-dark-* tokens
 * Light sections: bg #F8FAFC / #F1F5F9 → text: fg-light-* tokens
 * Panel cards in dark: bg #1A2E44 → text: fg-dark-* tokens
 * Cards in light: bg #FFFFFF → text: fg-light-* tokens
 * ════════════════════════════════════════════════════════════════ */

/* ═══════════════════ PRODUCT PAGE ═══════════════════ */

/* Accordion */
.cpth-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--cpth-border-light);
  border-radius: 10px;
  overflow: hidden;
  background: var(--cpth-bg-white);
}
.cpth-accordion__item {
  border-bottom: 1px solid var(--cpth-border-light);
}
.cpth-accordion__item:last-child { border-bottom: none; }
.cpth-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 1.75rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--cpth-font-sans);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--cpth-fg-light-primary);
  transition: background 0.15s;
}
.cpth-accordion__trigger:hover {
  background: var(--cpth-bg-light);
}
.cpth-accordion__trigger .cpth-accordion__icon {
  font-size: 0.875rem;
  color: var(--cpth-fg-light-muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.cpth-accordion__item.is-open .cpth-accordion__icon {
  transform: rotate(180deg);
}
.cpth-accordion__body {
  display: none;
  padding: 0 1.75rem 1.5rem;
  color: var(--cpth-fg-light-secondary);
  font-size: var(--cpth-text-body);
  line-height: 1.7;
}
.cpth-accordion__item.is-open .cpth-accordion__body {
  display: block;
}
.cpth-accordion__body ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.75rem;
}
.cpth-accordion__body li {
  margin-bottom: 0.375rem;
  color: var(--cpth-fg-light-secondary);
}

/* Step-by-step workflow */
.cpth-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.cpth-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--cpth-border-dark);
}
.cpth-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.cpth-step__num {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--cpth-bg-dark-panel);
  border: 2px solid var(--cpth-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cpth-font-mono);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--cpth-accent-aa-dark);
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}
.cpth-step__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--cpth-fg-dark-primary);
  margin-bottom: 0.5rem;
}
.cpth-step__copy {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-dark-secondary);
  line-height: 1.6;
}

/* Dashboard preview */
.cpth-dashboard-preview {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--cpth-border-light);
  box-shadow: 0 20px 60px rgba(14, 25, 41, 0.12);
}
.cpth-dashboard-preview img {
  width: 100%;
  height: auto;
  display: block;
}

/* API / terminal mock */
.cpth-terminal {
  background: #0A0F1A;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--cpth-border-dark);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.cpth-terminal__chrome {
  background: #111827;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--cpth-border-dark);
}
.cpth-terminal__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cpth-terminal__dot--red { background: #EF4444; }
.cpth-terminal__dot--yellow { background: #F59E0B; }
.cpth-terminal__dot--green { background: #22C55E; }
.cpth-terminal__title {
  font-family: var(--cpth-font-mono);
  font-size: 0.75rem;
  color: var(--cpth-fg-dark-muted);
  margin-left: 0.5rem;
}
.cpth-terminal__body {
  padding: 1.25rem 1.5rem;
  font-family: var(--cpth-font-mono);
  font-size: 0.8125rem;
  line-height: 1.45;
  overflow-x: auto;
}
.cpth-terminal__body code {
  display: block;
  white-space: pre;
  color: var(--cpth-fg-dark-secondary);
}
.cpth-tt-prompt { color: #64748B; }
.cpth-tt-cmd { color: #4FD1C5; }
.cpth-tt-key { color: #94A3B8; }
.cpth-tt-str { color: #86EFAC; }
.cpth-tt-num { color: #FBBF24; }
.cpth-tt-bool { color: #F472B6; }
.cpth-tt-punct { color: #64748B; }
.cpth-tt-comment { color: #3F5572; }

/* Two-col text+code layout */
.cpth-api-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.cpth-api-text .cpth-section__headline {
  font-size: var(--cpth-text-h2);
}

/* ═══════════════════ HOW IT WORKS ═══════════════════ */

.cpth-hiw-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: var(--cpth-section-pad) 0;
}
.cpth-hiw-step--reverse {
  direction: rtl;
}
.cpth-hiw-step--reverse > * {
  direction: ltr;
}
.cpth-hiw-step__num {
  font-family: var(--cpth-font-mono);
  font-size: var(--cpth-text-small);
  font-weight: 500;
  color: var(--cpth-accent-aa-dark);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}
.cpth-section--light .cpth-hiw-step__num,
.cpth-section--cream .cpth-hiw-step__num {
  color: var(--cpth-accent-aa-light);
}
.cpth-hiw-step__headline {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.cpth-section--dark .cpth-hiw-step__headline { color: var(--cpth-fg-dark-primary); }
.cpth-section--light .cpth-hiw-step__headline,
.cpth-section--cream .cpth-hiw-step__headline { color: var(--cpth-fg-light-primary); }
.cpth-hiw-step__copy {
  font-size: var(--cpth-text-body-lg);
  line-height: 1.7;
}
.cpth-section--dark .cpth-hiw-step__copy { color: var(--cpth-fg-dark-secondary); }
.cpth-section--light .cpth-hiw-step__copy,
.cpth-section--cream .cpth-hiw-step__copy { color: var(--cpth-fg-light-secondary); }
.cpth-hiw-step__visual {
  border-radius: 10px;
  overflow: hidden;
}
/* Inline SVG diagram panels for how-it-works */
.cpth-hiw-diagram {
  background: var(--cpth-bg-dark-panel);
  border: 1px solid var(--cpth-border-dark);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.cpth-hiw-diagram svg {
  max-width: 100%;
  height: auto;
}
.cpth-hiw-diagram--light {
  background: var(--cpth-bg-white);
  border: 1px solid var(--cpth-border-light);
}

/* ═══════════════════ PRICING PAGE ═══════════════════ */

.cpth-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.cpth-pricing-card {
  background: var(--cpth-bg-white);
  border: 1px solid var(--cpth-border-light);
  border-radius: 12px;
  padding: 2.25rem;
  position: relative;
}
.cpth-pricing-card--highlight {
  border-color: var(--cpth-accent);
  box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.15);
}
.cpth-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cpth-accent);
  color: var(--cpth-bg-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
  font-family: var(--cpth-font-mono);
}
.cpth-pricing-card__tier {
  font-size: var(--cpth-text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cpth-fg-light-muted);
  font-family: var(--cpth-font-mono);
  margin-bottom: 0.75rem;
}
.cpth-pricing-card__price {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  font-family: var(--cpth-font-mono);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.cpth-pricing-card__price-note {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-muted);
  margin-bottom: 1.5rem;
}
.cpth-pricing-card__target {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-secondary);
  background: var(--cpth-bg-light);
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  display: block;
}
.cpth-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.cpth-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-secondary);
  line-height: 1.5;
}
.cpth-pricing-card__feature i {
  color: var(--cpth-accent-aa-light);
  font-size: 0.8125rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.cpth-pricing-card .cpth-btn {
  width: 100%;
  justify-content: center;
}

/* Pricing FAQ */
.cpth-pricing-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.cpth-faq-item {
  background: var(--cpth-bg-white);
  border: 1px solid var(--cpth-border-light);
  border-radius: 10px;
  overflow: hidden;
}
.cpth-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--cpth-font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cpth-fg-light-primary);
}
.cpth-faq-item__trigger:hover { background: var(--cpth-bg-light); }
.cpth-faq-item__trigger i {
  font-size: 0.8125rem;
  color: var(--cpth-fg-light-muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.cpth-faq-item.is-open .cpth-faq-item__trigger i {
  transform: rotate(180deg);
}
.cpth-faq-item__body {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-secondary);
  line-height: 1.7;
}
.cpth-faq-item.is-open .cpth-faq-item__body {
  display: block;
}

/* ═══════════════════ ABOUT PAGE ═══════════════════ */

.cpth-about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cpth-about-hero__text {}
.cpth-about-hero__visual {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.cpth-about-hero__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.cpth-origin__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.cpth-origin__text p {
  font-size: var(--cpth-text-body-lg);
  color: var(--cpth-fg-light-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.cpth-origin__text p:last-child { margin-bottom: 0; }
.cpth-pullquote {
  padding: 2rem;
  border-left: 3px solid var(--cpth-accent-aa-light);
  background: var(--cpth-bg-white);
  border-radius: 0 10px 10px 0;
  box-shadow: 0 4px 20px rgba(14, 25, 41, 0.07);
}
.cpth-pullquote p {
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--cpth-fg-light-primary);
  line-height: 1.6;
  font-style: italic;
}
.cpth-pullquote__attr {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-muted);
  margin-top: 0.875rem;
  font-family: var(--cpth-font-mono);
}

.cpth-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.cpth-value-card {
  padding: 2rem;
  background: var(--cpth-bg-white);
  border: 1px solid var(--cpth-border-light);
  border-radius: 10px;
}
.cpth-value-card__icon {
  font-size: 1.5rem;
  color: var(--cpth-accent-aa-light);
  margin-bottom: 1rem;
}
.cpth-value-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin-bottom: 0.5rem;
}
.cpth-value-card__copy {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-secondary);
  line-height: 1.65;
}

/* About team preview */
.cpth-team-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.cpth-team-card {
  background: var(--cpth-bg-dark-panel);
  border: 1px solid var(--cpth-border-dark);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}
.cpth-team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  background: var(--cpth-bg-dark);
  border: 2px solid var(--cpth-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cpth-accent-aa-dark);
  font-family: var(--cpth-font-mono);
}
.cpth-team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cpth-team-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cpth-fg-dark-primary);
  margin-bottom: 0.25rem;
}
.cpth-team-card__title {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-dark-muted);
  font-family: var(--cpth-font-mono);
}

/* ═══════════════════ TEAM PAGE ═══════════════════ */

.cpth-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.cpth-member-card {
  background: var(--cpth-bg-white);
  border: 1px solid var(--cpth-border-light);
  border-radius: 12px;
  overflow: hidden;
}
.cpth-member-card__portrait {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.cpth-member-card__portrait-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cpth-bg-dark-panel);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cpth-accent-aa-dark);
  font-family: var(--cpth-font-mono);
}
.cpth-member-card__body {
  padding: 1.75rem;
}
.cpth-member-card__name {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin-bottom: 0.25rem;
}
.cpth-member-card__role {
  font-size: var(--cpth-text-small);
  color: var(--cpth-accent-aa-light);
  font-family: var(--cpth-font-mono);
  font-weight: 500;
  margin-bottom: 1rem;
}
.cpth-member-card__bio {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-secondary);
  line-height: 1.65;
}

/* ═══════════════════ BLOG ═══════════════════ */

.cpth-blog-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--cpth-bg-white);
  border: 1px solid var(--cpth-border-light);
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
}
.cpth-blog-featured__img-wrap {
  overflow: hidden;
}
.cpth-blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.cpth-blog-featured__body {
  padding: 2.5rem 2.5rem 2.5rem 0;
}
.cpth-blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.cpth-blog-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--cpth-font-mono);
  padding: 0.2rem 0.625rem;
  border-radius: 4px;
}
.cpth-section--light .cpth-blog-tag,
.cpth-section--white .cpth-blog-tag {
  background: rgba(10, 124, 112, 0.1);
  color: var(--cpth-accent-aa-light);
}
.cpth-section--cream .cpth-blog-tag {
  background: rgba(10, 124, 112, 0.1);
  color: var(--cpth-accent-aa-light);
}
.cpth-blog-featured__date {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-muted);
  font-family: var(--cpth-font-mono);
}
.cpth-blog-featured__title {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin-bottom: 0.875rem;
  line-height: 1.3;
}
.cpth-blog-featured__excerpt {
  font-size: var(--cpth-text-body);
  color: var(--cpth-fg-light-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.cpth-blog-featured__author {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-muted);
  font-family: var(--cpth-font-mono);
}

.cpth-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.cpth-blog-card {
  background: var(--cpth-bg-white);
  border: 1px solid var(--cpth-border-light);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.cpth-blog-card:hover .cpth-blog-card__title {
  color: var(--cpth-accent-aa-light);
}
.cpth-blog-card__img-wrap {
  overflow: hidden;
}
.cpth-blog-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cpth-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}
.cpth-blog-card__date {
  font-size: 0.75rem;
  color: var(--cpth-fg-light-muted);
  font-family: var(--cpth-font-mono);
}
.cpth-blog-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  line-height: 1.4;
  margin-bottom: 0.625rem;
  transition: color 0.2s;
}
.cpth-blog-card__excerpt {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-secondary);
  line-height: 1.6;
  flex: 1;
}
.cpth-blog-card__author {
  font-size: 0.75rem;
  color: var(--cpth-fg-light-muted);
  margin-top: 1rem;
  font-family: var(--cpth-font-mono);
  padding-top: 0.75rem;
  border-top: 1px solid var(--cpth-border-light);
}

/* ═══════════════════ BLOG ARTICLE ═══════════════════ */

.cpth-article-header {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  text-align: center;
}
.cpth-article-header__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.cpth-article-header__date {
  font-family: var(--cpth-font-mono);
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-dark-muted);
}
.cpth-article-header__author {
  font-family: var(--cpth-font-mono);
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-dark-secondary);
}
.cpth-article-header__title {
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cpth-fg-dark-primary);
  margin-bottom: 1rem;
}
.cpth-article-header__excerpt {
  font-size: var(--cpth-text-body-lg);
  color: var(--cpth-fg-dark-secondary);
  line-height: 1.6;
}

/* Article body + sidebar */
.cpth-article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3.5rem;
  align-items: start;
}
.cpth-blog-article__cover {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 0 auto 2.5rem;
}
/* Article cover max-width centering */
.cpth-article-cover-wrap {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.cpth-article-body {
  min-width: 0;
}
body.cpth-page--dark-top .cpth-article-body h2,
body.cpth-page--dark-top .cpth-article-body h3 {
  color: var(--cpth-fg-light-primary);
}
body.cpth-page--light-top .cpth-article-body h2,
body.cpth-page--light-top .cpth-article-body h3 {
  color: var(--cpth-fg-light-primary);
}
.cpth-article-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}
.cpth-article-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin: 2rem 0 0.875rem;
}
.cpth-article-body p {
  color: var(--cpth-fg-light-secondary);
  font-size: var(--cpth-text-body-lg);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.cpth-article-body ul,
.cpth-article-body ol {
  color: var(--cpth-fg-light-secondary);
  font-size: var(--cpth-text-body-lg);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  list-style: disc;
}
.cpth-article-body li { margin-bottom: 0.375rem; }
.cpth-article-body strong { color: var(--cpth-fg-light-primary); font-weight: 700; }
.cpth-article-body a {
  color: var(--cpth-accent-aa-light);
  text-decoration: underline;
}
.cpth-article-body a:hover { color: var(--cpth-accent); }
.cpth-article-body blockquote {
  border-left: 3px solid var(--cpth-accent-aa-light);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--cpth-bg-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--cpth-fg-light-primary);
  font-size: var(--cpth-text-body-lg);
}

.cpth-article-sidebar {
  position: sticky;
  top: 6rem;
  background: var(--cpth-bg-light);
  border: 1px solid var(--cpth-border-light);
  border-radius: 10px;
  padding: 1.5rem;
}
.cpth-sidebar__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cpth-fg-light-muted);
  font-family: var(--cpth-font-mono);
  margin-bottom: 1rem;
}
.cpth-sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.cpth-sidebar__link {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-secondary);
  text-decoration: none;
  line-height: 1.4;
}
.cpth-sidebar__link:hover { color: var(--cpth-accent-aa-light); }
.cpth-sidebar__cta {
  padding: 1.25rem;
  background: var(--cpth-bg-dark);
  border-radius: 8px;
  text-align: center;
}
.cpth-sidebar__cta p {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-dark-secondary);
  margin-bottom: 0.875rem;
  line-height: 1.5;
}
.cpth-sidebar__cta .cpth-btn {
  width: 100%;
  justify-content: center;
}

/* Article CTA band */
.cpth-article-cta {
  text-align: center;
  padding: 3.5rem 0;
  background: var(--cpth-bg-dark);
}
.cpth-article-cta__headline {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--cpth-fg-dark-primary);
  margin-bottom: 0.875rem;
}
.cpth-article-cta__sub {
  color: var(--cpth-fg-dark-secondary);
  margin-bottom: 1.75rem;
}

/* Related articles */
.cpth-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ═══════════════════ CONTACT PAGE ═══════════════════ */

.cpth-contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}
.cpth-contact-form {
  background: var(--cpth-bg-white);
  border: 1px solid var(--cpth-border-light);
  border-radius: 12px;
  padding: 2.5rem;
}
.cpth-form-group {
  margin-bottom: 1.5rem;
}
.cpth-form-group label {
  display: block;
  font-size: var(--cpth-text-small);
  font-weight: 600;
  color: var(--cpth-fg-light-secondary);
  margin-bottom: 0.5rem;
}
.cpth-form-group input,
.cpth-form-group textarea,
.cpth-form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--cpth-bg-light);
  border: 1px solid var(--cpth-border-light);
  border-radius: 6px;
  font-size: var(--cpth-text-body);
  color: var(--cpth-fg-light-primary);
  font-family: var(--cpth-font-sans);
  transition: border-color 0.2s;
  max-width: 560px;
  display: block;
}
.cpth-form-group input:focus,
.cpth-form-group textarea:focus,
.cpth-form-group select:focus {
  outline: none;
  border-color: var(--cpth-accent-aa-light);
}
.cpth-form-group textarea { min-height: 140px; resize: vertical; }
.cpth-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B7280'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.cpth-form-group select option {
  background: var(--cpth-bg-white);
  color: var(--cpth-fg-light-primary);
}
.cpth-contact-details {
  padding-top: 0.5rem;
}
.cpth-contact-details__headline {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin-bottom: 1.5rem;
}
.cpth-contact-detail-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.cpth-contact-detail-item i {
  font-size: 1rem;
  color: var(--cpth-accent-aa-light);
  margin-top: 0.2rem;
  width: 1.25rem;
  flex-shrink: 0;
}
.cpth-contact-detail-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cpth-fg-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--cpth-font-mono);
  margin-bottom: 0.25rem;
}
.cpth-contact-detail-item__value {
  font-size: var(--cpth-text-body);
  color: var(--cpth-fg-light-secondary);
}
.cpth-contact-detail-item__value a {
  color: var(--cpth-accent-aa-light);
  text-decoration: none;
}
.cpth-contact-detail-item__value a:hover { text-decoration: underline; }

/* ═══════════════════ DEMO PAGE ═══════════════════ */

.cpth-demo-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding-top: clamp(6rem, 10vw, 9rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}
.cpth-demo-text .cpth-hero__eyebrow { margin-bottom: 1rem; }
.cpth-demo-text__headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--cpth-fg-dark-primary);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.cpth-demo-text__sub {
  font-size: var(--cpth-text-body-lg);
  color: var(--cpth-fg-dark-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.cpth-demo-bullet {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  align-items: flex-start;
}
.cpth-demo-bullet i {
  color: var(--cpth-accent-aa-dark);
  font-size: 0.875rem;
  margin-top: 0.275rem;
  flex-shrink: 0;
}
.cpth-demo-bullet span {
  font-size: var(--cpth-text-body);
  color: var(--cpth-fg-dark-secondary);
}
.cpth-demo-form {
  background: var(--cpth-bg-dark-panel);
  border: 1px solid var(--cpth-border-dark);
  border-radius: 12px;
  padding: 2.5rem;
}
.cpth-demo-form__label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cpth-fg-dark-primary);
  margin-bottom: 0.375rem;
}
.cpth-demo-form__sub {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-dark-muted);
  margin-bottom: 1.5rem;
}
.cpth-form-group--dark label {
  color: var(--cpth-fg-dark-secondary);
}
.cpth-form-group--dark input,
.cpth-form-group--dark textarea,
.cpth-form-group--dark select {
  background: rgba(30, 58, 80, 0.5);
  border-color: var(--cpth-border-dark);
  color: var(--cpth-fg-dark-primary);
  max-width: 100%;
}
.cpth-form-group--dark input::placeholder,
.cpth-form-group--dark textarea::placeholder {
  color: var(--cpth-fg-dark-muted);
}
.cpth-form-group--dark input:focus,
.cpth-form-group--dark textarea:focus,
.cpth-form-group--dark select:focus {
  border-color: var(--cpth-accent);
}
.cpth-form-group--dark select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2394A3B8'/%3E%3C/svg%3E");
  background-color: rgba(30, 58, 80, 0.5);
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.cpth-form-group--dark select option {
  background: var(--cpth-bg-dark-panel);
  color: var(--cpth-fg-dark-primary);
}

/* ═══════════════════ INTEGRATIONS PAGE ═══════════════════ */

.cpth-int-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.cpth-int-card {
  padding: 1.75rem;
  background: var(--cpth-bg-white);
  border: 1px solid var(--cpth-border-light);
  border-radius: 10px;
  text-align: center;
}
.cpth-int-card__icon {
  font-size: 2rem;
  color: var(--cpth-accent-aa-light);
  margin-bottom: 1rem;
}
.cpth-int-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin-bottom: 0.375rem;
}
.cpth-int-card__type {
  font-size: 0.75rem;
  color: var(--cpth-fg-light-muted);
  font-family: var(--cpth-font-mono);
  margin-bottom: 0.75rem;
}
.cpth-int-card__copy {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-secondary);
  line-height: 1.6;
}

/* ═══════════════════ SECURITY PAGE ═══════════════════ */

.cpth-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.cpth-security-card {
  padding: 2rem;
  background: var(--cpth-bg-white);
  border: 1px solid var(--cpth-border-light);
  border-radius: 10px;
}
.cpth-security-card__icon {
  font-size: 1.5rem;
  color: var(--cpth-accent-aa-light);
  margin-bottom: 1rem;
}
.cpth-security-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin-bottom: 0.5rem;
}
.cpth-security-card__copy {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-secondary);
  line-height: 1.65;
}

/* Data handling table */
.cpth-data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cpth-bg-white);
  border: 1px solid var(--cpth-border-light);
  border-radius: 10px;
  overflow: hidden;
}
.cpth-data-table th {
  text-align: left;
  padding: 1rem 1.25rem;
  font-size: var(--cpth-text-small);
  font-weight: 700;
  color: var(--cpth-fg-light-secondary);
  background: var(--cpth-bg-cream);
  border-bottom: 1px solid var(--cpth-border-light);
  font-family: var(--cpth-font-mono);
}
.cpth-data-table td {
  padding: 0.875rem 1.25rem;
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-secondary);
  border-bottom: 1px solid var(--cpth-border-light);
  line-height: 1.55;
}
.cpth-data-table tr:last-child td { border-bottom: none; }
.cpth-data-table td:first-child { font-weight: 600; color: var(--cpth-fg-light-primary); }

/* ═══════════════════ CUSTOMERS PAGE ═══════════════════ */

.cpth-customer-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.cpth-customer-case {
  padding: 2.5rem;
  background: var(--cpth-bg-white);
  border: 1px solid var(--cpth-border-light);
  border-radius: 12px;
}
.cpth-customer-case__firm {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin-bottom: 0.25rem;
}
.cpth-customer-case__size {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-muted);
  font-family: var(--cpth-font-mono);
  margin-bottom: 1.25rem;
}
.cpth-customer-case__outcome {
  font-size: var(--cpth-text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cpth-accent-aa-light);
  font-family: var(--cpth-font-mono);
  margin-bottom: 1rem;
  display: block;
}
.cpth-customer-case__quote {
  font-size: var(--cpth-text-body-lg);
  font-style: italic;
  color: var(--cpth-fg-light-primary);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.cpth-customer-case__attr {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-muted);
  font-family: var(--cpth-font-mono);
}

.cpth-testimonial-row {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.cpth-testimonial {
  flex: 1;
  min-width: 280px;
  padding: 2rem;
  background: var(--cpth-bg-white);
  border: 1px solid var(--cpth-border-light);
  border-radius: 10px;
}
.cpth-testimonial__quote {
  font-size: var(--cpth-text-body);
  font-style: italic;
  color: var(--cpth-fg-light-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.cpth-testimonial__attr {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-muted);
  font-family: var(--cpth-font-mono);
}

/* ═══════════════════ LOGIN / AUTH ═══════════════════ */

.cpth-auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--cpth-bg-light);
}
.cpth-auth-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.cpth-auth-panel {
  background: var(--cpth-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem clamp(2rem, 6vw, 4rem);
}
.cpth-auth-panel__inner {
  width: 100%;
  max-width: 400px;
}
.cpth-auth-panel__logo {
  margin-bottom: 2rem;
  display: block;
  text-decoration: none;
}
.cpth-auth-panel__logo img {
  height: 32px;
  width: auto;
}
.cpth-auth-panel__headline {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin-bottom: 0.5rem;
}
.cpth-auth-panel__sub {
  font-size: var(--cpth-text-body);
  color: var(--cpth-fg-light-muted);
  margin-bottom: 2rem;
}
.cpth-auth-panel__footer {
  margin-top: 1.5rem;
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-muted);
  text-align: center;
}
.cpth-auth-panel__footer a {
  color: var(--cpth-accent-aa-light);
  text-decoration: none;
  font-weight: 500;
}
.cpth-auth-panel__footer a:hover { text-decoration: underline; }
.cpth-auth-divider {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin: 1.5rem 0;
}
.cpth-auth-divider::before, .cpth-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cpth-border-light);
}
.cpth-auth-divider span {
  font-size: 0.75rem;
  color: var(--cpth-fg-light-muted);
  font-family: var(--cpth-font-mono);
  white-space: nowrap;
}

.cpth-auth-side {
  background: var(--cpth-bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem clamp(2rem, 6vw, 4rem);
  position: relative;
  overflow: hidden;
}
.cpth-auth-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 209, 197, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 209, 197, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cpth-auth-side__inner {
  position: relative;
  z-index: 1;
  max-width: 420px;
}
.cpth-auth-side__headline {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--cpth-fg-dark-primary);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.cpth-auth-side__sub {
  font-size: var(--cpth-text-body);
  color: var(--cpth-fg-dark-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.cpth-auth-side__stat {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem;
  background: var(--cpth-bg-dark-panel);
  border: 1px solid var(--cpth-border-dark);
  border-radius: 10px;
}
.cpth-auth-side__stat-value {
  font-family: var(--cpth-font-mono);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--cpth-accent-aa-dark);
  line-height: 1;
  flex-shrink: 0;
}
.cpth-auth-side__stat-label {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-dark-secondary);
  line-height: 1.5;
}

/* ═══════════════════ LEGAL PAGES ═══════════════════ */

.cpth-legal-page {
  min-height: 100vh;
  background: var(--cpth-bg-light);
  color: var(--cpth-fg-light-primary);
}
.cpth-legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 7rem clamp(1rem, 4vw, 2.5rem) 5rem;
}
.cpth-legal-content .legal-article {}
.cpth-legal-content .legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cpth-border-light);
}
.cpth-legal-content h1 {
  font-size: var(--cpth-text-h1);
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin-bottom: 0.75rem;
}
.cpth-legal-content .legal-meta {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-muted);
  font-family: var(--cpth-font-mono);
}
.cpth-legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin: 2.5rem 0 1rem;
}
.cpth-legal-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin: 1.75rem 0 0.75rem;
}
.cpth-legal-content p {
  color: var(--cpth-fg-light-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: var(--cpth-text-body);
}
.cpth-legal-content ul, .cpth-legal-content ol {
  color: var(--cpth-fg-light-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  list-style: disc;
}
.cpth-legal-content li { margin-bottom: 0.375rem; }
.cpth-legal-content a {
  color: var(--cpth-accent-aa-light);
  text-decoration: underline;
}
.cpth-legal-content address {
  color: var(--cpth-fg-light-secondary);
  line-height: 1.75;
  font-size: var(--cpth-text-body);
}
.cpth-legal-content section {
  margin-bottom: 1.5rem;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: var(--cpth-text-small);
}
.legal-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--cpth-bg-cream);
  border: 1px solid var(--cpth-border-light);
  color: var(--cpth-fg-light-primary);
  font-weight: 700;
}
.legal-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--cpth-border-light);
  color: var(--cpth-fg-light-secondary);
  line-height: 1.55;
}

/* ═══════════════════ AUTH FORM ═══════════════════ */

.cpth-auth-panel__top {
  margin-bottom: 2rem;
}
.cpth-auth-panel__logo {
  display: block;
  text-decoration: none;
  margin-bottom: 0;
}
.cpth-auth-panel__logo img {
  height: 32px;
  width: auto;
}
.cpth-auth-panel__body {
  width: 100%;
  max-width: 400px;
}
.cpth-auth-panel__title {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin-bottom: 0.5rem;
}
.cpth-auth-panel__sub {
  font-size: var(--cpth-text-body);
  color: var(--cpth-fg-light-muted);
  margin-bottom: 2rem;
}
.cpth-auth-panel__sub a { color: var(--cpth-accent-aa-light); text-decoration: none; font-weight: 500; }
.cpth-auth-panel__sub a:hover { text-decoration: underline; }
.cpth-auth-panel__footer-note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--cpth-fg-light-muted);
  text-align: center;
  line-height: 1.5;
}
.cpth-auth-panel__footer-note a { color: var(--cpth-accent-aa-light); text-decoration: none; }
.cpth-auth-panel__footer-note a:hover { text-decoration: underline; }
.cpth-auth-panel__icon-wrap {
  text-align: center;
  margin-bottom: 1.25rem;
}
.cpth-auth-panel--center {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
}
.cpth-auth-layout--narrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--cpth-bg-light);
}
.cpth-auth-layout--narrow .cpth-auth-panel {
  border: 1px solid var(--cpth-border-light);
  border-radius: 12px;
  min-height: auto;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(14, 25, 41, 0.1);
}

.cpth-auth-form {
  width: 100%;
}
.cpth-auth-form__forgot {
  float: right;
  font-size: 0.8125rem;
  color: var(--cpth-accent-aa-light);
  text-decoration: none;
  font-weight: 400;
}
.cpth-auth-form__forgot:hover { text-decoration: underline; }
.cpth-auth-form__input-wrap {
  position: relative;
}
.cpth-auth-form__input-wrap input {
  padding-right: 3rem;
}
.cpth-auth-form__toggle-pw {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--cpth-fg-light-muted);
  font-size: 0.875rem;
  padding: 0.25rem;
}
.cpth-auth-form__toggle-pw:hover { color: var(--cpth-fg-light-secondary); }

.cpth-auth-side__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.cpth-auth-side__quote {
  padding: 1.5rem;
  background: var(--cpth-bg-dark-panel);
  border: 1px solid var(--cpth-border-dark);
  border-radius: 10px;
  margin: 0;
}
.cpth-auth-side__quote p {
  font-size: var(--cpth-text-body);
  font-style: italic;
  color: var(--cpth-fg-dark-primary);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.cpth-auth-side__quote footer {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-dark-muted);
  font-family: var(--cpth-font-mono);
}
.cpth-auth-side__checklist {
  margin-bottom: 2rem;
}
.cpth-auth-side__check-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.cpth-auth-side__check-item:last-child { margin-bottom: 0; }

/* Form utilities */
.cpth-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cpth-form-success {
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: var(--cpth-text-small);
  font-weight: 600;
  background: rgba(10, 124, 112, 0.1);
  color: var(--cpth-accent-aa-light);
}
.cpth-js-form { }

/* ═══════════════════ BLOG ARTICLE (CONTENT PAGE) ═══════════════════ */

.cpth-blog-article { }
.cpth-blog-article__header {
  padding-top: clamp(6.5rem, 12vw, 10rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}
.cpth-blog-article__header-inner {
  max-width: 820px;
  margin: 0 auto;
}
.cpth-blog-article__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
  font-size: var(--cpth-text-small);
  font-family: var(--cpth-font-mono);
}
.cpth-blog-article__breadcrumb a {
  color: var(--cpth-fg-dark-muted);
  text-decoration: none;
}
.cpth-blog-article__breadcrumb a:hover { color: var(--cpth-fg-dark-secondary); }
.cpth-blog-article__breadcrumb span[aria-hidden] { color: var(--cpth-fg-dark-muted); }
.cpth-blog-article__breadcrumb span:last-child { color: var(--cpth-fg-dark-secondary); }
.cpth-blog-article__meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}
.cpth-blog-article__meta time {
  font-family: var(--cpth-font-mono);
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-dark-muted);
}
.cpth-blog-article__meta .cpth-blog-tag {
  background: rgba(79, 209, 197, 0.15);
  color: var(--cpth-accent-aa-dark);
  text-decoration: none;
}
.cpth-blog-article__title {
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 700;
  color: var(--cpth-fg-dark-primary);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.cpth-blog-article__byline {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-dark-muted);
  font-family: var(--cpth-font-mono);
}
.cpth-blog-article__cover-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem clamp(1rem, 4vw, 2rem);
}
.cpth-blog-article__cover-figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(14, 25, 41, 0.12);
}
.cpth-blog-article__cover {
  width: 100%;
  height: auto;
  display: block;
}
.cpth-blog-article__body-wrap {
  padding: 3rem 0 5rem;
}
.cpth-blog-article__body-wrap .cpth-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  align-items: start;
  max-width: 1180px;
}
.cpth-blog-article__body {
  min-width: 0;
}
.cpth-blog-article__body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin: 2.5rem 0 1rem;
}
.cpth-blog-article__body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin: 2rem 0 0.875rem;
}
.cpth-blog-article__body p {
  color: var(--cpth-fg-light-secondary);
  font-size: var(--cpth-text-body-lg);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.cpth-blog-article__body ul,
.cpth-blog-article__body ol {
  color: var(--cpth-fg-light-secondary);
  line-height: 1.8;
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 1.25rem;
}
.cpth-blog-article__body li { margin-bottom: 0.375rem; }
.cpth-blog-article__body strong { color: var(--cpth-fg-light-primary); font-weight: 700; }
.cpth-blog-article__body a { color: var(--cpth-accent-aa-light); text-decoration: underline; }
.cpth-blog-article__body a:hover { color: var(--cpth-accent); }
.cpth-blog-article__body blockquote {
  border-left: 3px solid var(--cpth-accent-aa-light);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--cpth-bg-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--cpth-fg-light-primary);
}
.cpth-blog-article__cta-aside {
  position: sticky;
  top: 6rem;
  background: var(--cpth-bg-dark);
  border-radius: 10px;
  padding: 1.75rem;
  border: 1px solid var(--cpth-border-dark);
}
.cpth-blog-article__cta-heading {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--cpth-fg-dark-primary);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.cpth-blog-article__cta-text {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-dark-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Blog card link-wrapper */
.cpth-blog-card__img-link {
  display: block;
  text-decoration: none;
}

/* Blog grid 3-up variant */
.cpth-blog-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* blog-featured img link */
.cpth-blog-featured__img-link {
  display: block;
  overflow: hidden;
}
.cpth-blog-featured__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.cpth-blog-featured__img-link:hover .cpth-blog-featured__img { transform: scale(1.03); }

/* ═══════════════════ CUSTOMERS PAGE — OUTCOME & PROFILES ═══════════════════ */

.cpth-outcome-bar {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--cpth-bg-dark-panel);
  border: 1px solid var(--cpth-border-dark);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 4rem;
}
.cpth-outcome-item {
  flex: 1;
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
}
.cpth-outcome-sep {
  width: 1px;
  background: var(--cpth-border-dark);
  flex-shrink: 0;
  align-self: stretch;
}
.cpth-outcome-item__num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  font-family: var(--cpth-font-mono);
  color: var(--cpth-accent-aa-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.cpth-outcome-item__label {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-dark-secondary);
  line-height: 1.4;
}
.cpth-cust-profiles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}
.cpth-cust-profile {
  background: var(--cpth-bg-white);
  border: 1px solid var(--cpth-border-light);
  border-radius: 12px;
  overflow: hidden;
}
.cpth-cust-profile__header {
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--cpth-border-light);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cpth-cust-profile__firm-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--cpth-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--cpth-accent-aa-dark);
  flex-shrink: 0;
}
.cpth-cust-profile__firm-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(10, 124, 112, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--cpth-accent-aa-light);
  flex-shrink: 0;
}
.cpth-cust-profile__firm-meta {
  flex: 1;
}
.cpth-cust-profile__firm-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin-bottom: 0.2rem;
}
.cpth-cust-profile__firm-type {
  font-size: 0.75rem;
  color: var(--cpth-fg-light-muted);
  font-family: var(--cpth-font-mono);
}
.cpth-cust-profile__metrics {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--cpth-border-light);
}
.cpth-cust-profile__metric {
  flex: 1;
  padding: 1.25rem;
  text-align: center;
  border-right: 1px solid var(--cpth-border-light);
}
.cpth-cust-profile__metric:last-child { border-right: none; }
.cpth-cust-profile__metric-val {
  font-family: var(--cpth-font-mono);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--cpth-accent-aa-light);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.cpth-cust-profile__metric-label {
  font-size: 0.6875rem;
  color: var(--cpth-fg-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cpth-cust-profile__quote {
  padding: 1.5rem 1.75rem;
}
.cpth-cust-profile__quote blockquote {
  font-size: var(--cpth-text-small);
  font-style: italic;
  color: var(--cpth-fg-light-secondary);
  line-height: 1.7;
  margin: 0 0 0.875rem;
}
.cpth-cust-profile__quote footer {
  font-size: 0.75rem;
  color: var(--cpth-fg-light-muted);
  font-family: var(--cpth-font-mono);
}
.cpth-firm-types__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.cpth-firm-type-card {
  padding: 1.5rem;
  background: var(--cpth-bg-white);
  border: 1px solid var(--cpth-border-light);
  border-radius: 10px;
  text-align: center;
}
.cpth-firm-type-card i {
  font-size: 1.375rem;
  color: var(--cpth-accent-aa-light);
  margin-bottom: 0.75rem;
  display: block;
}
.cpth-firm-type-card p {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-secondary);
  line-height: 1.5;
  font-weight: 500;
}

/* ═══════════════════ DEMO PAGE — DETAILS & STEPS ═══════════════════ */

.cpth-demo-details {
  background: var(--cpth-bg-light);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid var(--cpth-border-light);
  margin-top: 2rem;
}
.cpth-demo-details__headline {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin-bottom: 1.5rem;
}
.cpth-demo-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.cpth-demo-step:last-child { margin-bottom: 0; }
.cpth-demo-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cpth-bg-dark);
  color: var(--cpth-accent-aa-dark);
  font-family: var(--cpth-font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.cpth-demo-step__label {
  font-size: var(--cpth-text-small);
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin-bottom: 0.25rem;
}
.cpth-demo-step__desc {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-secondary);
  line-height: 1.6;
}

/* ═══════════════════ INTEGRATIONS — BADGES, TERM, WEBHOOK ═══════════════════ */

.cpth-int-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.175rem 0.5rem;
  border-radius: 4px;
  font-family: var(--cpth-font-mono);
  margin-bottom: 0.625rem;
}
.cpth-int-badge--live {
  background: rgba(10, 124, 112, 0.12);
  color: var(--cpth-accent-aa-light);
}
.cpth-int-badge--beta {
  background: rgba(251, 191, 36, 0.12);
  color: #92751A;
}
.cpth-int-badge--universal {
  background: rgba(100, 116, 139, 0.12);
  color: var(--cpth-fg-light-muted);
}
.cpth-int-card__mark {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--cpth-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.625rem;
  color: var(--cpth-accent-aa-light);
  border: 1px solid var(--cpth-border-light);
}
.cpth-int-card__desc {
  font-size: 0.8125rem;
  color: var(--cpth-fg-light-secondary);
  line-height: 1.6;
}
.cpth-int-grid--2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Webhook / API section */
.cpth-webhook-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: center;
}
.cpth-webhook-use-case {
  padding: 1.5rem;
  background: rgba(79, 209, 197, 0.06);
  border: 1px solid rgba(79, 209, 197, 0.15);
  border-radius: 10px;
  margin-bottom: 1.25rem;
}
.cpth-webhook-use-case:last-child { margin-bottom: 0; }
.cpth-webhook-use-case__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cpth-fg-dark-primary);
  margin-bottom: 0.375rem;
}
.cpth-webhook-use-case__desc {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-dark-secondary);
  line-height: 1.6;
}
.cpth-webhook-detail {
  margin-top: 1rem;
}

/* ═══════════════════ SECURITY PAGE — SEC-CARDS, INFRA ═══════════════════ */

.cpth-sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.cpth-sec-card {
  padding: 2rem;
  background: var(--cpth-bg-white);
  border: 1px solid var(--cpth-border-light);
  border-radius: 10px;
}
.cpth-sec-card__icon {
  font-size: 1.5rem;
  color: var(--cpth-accent-aa-light);
  margin-bottom: 1rem;
}
.cpth-sec-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--cpth-fg-light-primary);
  margin-bottom: 0.5rem;
}
.cpth-sec-card__desc {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-secondary);
  line-height: 1.65;
}
.cpth-sec-infra-block {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.cpth-sec-infra-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.875rem 1.25rem;
  background: var(--cpth-bg-dark-panel);
  border: 1px solid var(--cpth-border-dark);
  border-radius: 8px;
}
.cpth-sec-infra-row__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cpth-fg-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-family: var(--cpth-font-mono);
}
.cpth-sec-infra-row__val {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-dark-secondary);
}

/* ═══════════════════ TERMINAL MOCK (INTEGRATIONS / PRODUCT) ═══════════════════ */

.cpth-term {
  background: #0A0F1A;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--cpth-border-dark);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.cpth-term__chrome {
  background: #111827;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--cpth-border-dark);
}
.cpth-term__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cpth-term__dot--red { background: #EF4444; }
.cpth-term__dot--yellow { background: #F59E0B; }
.cpth-term__dot--green { background: #22C55E; }
.cpth-term__title {
  font-family: var(--cpth-font-mono);
  font-size: 0.75rem;
  color: var(--cpth-fg-dark-muted);
  margin-left: 0.5rem;
}
.cpth-term__body {
  padding: 1.25rem 1.5rem;
  font-family: var(--cpth-font-mono);
  font-size: 0.8125rem;
  line-height: 1.45;
  overflow-x: auto;
}
.cpth-term__body code {
  display: block;
  white-space: pre;
  color: var(--cpth-fg-dark-secondary);
}
.cpth-tt-meta { color: #94A3B8; }
.cpth-tt-insert { color: #86EFAC; }

/* ═══════════════════ LEGAL LAYOUT + SIDEBAR ═══════════════════ */

.cpth-legal-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 4rem;
  align-items: start;
}
.cpth-legal-sidebar {
  position: sticky;
  top: 6rem;
}
.cpth-legal-sidebar__inner {
  background: var(--cpth-bg-light);
  border: 1px solid var(--cpth-border-light);
  border-radius: 10px;
  padding: 1.5rem;
}
.cpth-legal-sidebar__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cpth-fg-light-muted);
  font-family: var(--cpth-font-mono);
  margin-bottom: 1rem;
}
.cpth-legal-sidebar__toc {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.cpth-legal-sidebar__link {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-light-secondary);
  text-decoration: none;
  line-height: 1.4;
  display: block;
}
.cpth-legal-sidebar__link:hover { color: var(--cpth-accent-aa-light); }
.cpth-legal-sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cpth-border-light);
}
.cpth-legal-sidebar__page-link {
  font-size: var(--cpth-text-small);
  color: var(--cpth-accent-aa-light);
  text-decoration: none;
  font-weight: 500;
}
.cpth-legal-sidebar__page-link:hover { text-decoration: underline; }

/* Cookie table in cookies.html */
.cpth-cookie-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: 8px;
  border: 1px solid var(--cpth-border-light);
}
.cpth-cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--cpth-text-small);
}
.cpth-cookie-table th {
  text-align: left;
  padding: 0.875rem 1rem;
  background: var(--cpth-bg-cream);
  color: var(--cpth-fg-light-primary);
  font-weight: 700;
  border-bottom: 1px solid var(--cpth-border-light);
}
.cpth-cookie-table td {
  padding: 0.875rem 1rem;
  color: var(--cpth-fg-light-secondary);
  border-bottom: 1px solid var(--cpth-border-light);
  line-height: 1.5;
}
.cpth-cookie-table tr:last-child td { border-bottom: none; }
.cpth-cookie-table td:first-child { font-family: var(--cpth-font-mono); font-size: 0.75rem; color: var(--cpth-fg-light-primary); }
.cpth-cookie-table code { font-family: var(--cpth-font-mono); }

/* ═══════════════════ SUBHERO COMPACT MODIFIER ═══════════════════ */

.cpth-subhero--compact {
  padding-top: clamp(5.5rem, 10vw, 8rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

/* ═══════════════════ FOOTER COL (used across pages) ═══════════════════ */

.cpth-footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cpth-footer-col__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cpth-fg-dark-muted);
  font-family: var(--cpth-font-mono);
  margin-bottom: 0.875rem;
}
.cpth-footer-col__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cpth-footer-col__link {
  font-size: var(--cpth-text-small);
  color: var(--cpth-fg-dark-secondary);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.15s;
}
.cpth-footer-col__link:hover { color: var(--cpth-fg-dark-primary); }

/* ═══════════════════ UTILITY: SR-ONLY ═══════════════════ */

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

/* ═══════════════════ RESPONSIVE: PAGES ═══════════════════ */

@media (max-width: 1024px) {
  .cpth-steps { grid-template-columns: repeat(2, 1fr); }
  .cpth-steps::before { display: none; }
  .cpth-int-grid { grid-template-columns: repeat(2, 1fr); }
  .cpth-team-preview__grid { grid-template-columns: repeat(2, 1fr); }
  .cpth-sec-grid { grid-template-columns: repeat(2, 1fr); }
  .cpth-cust-profiles__grid { grid-template-columns: repeat(2, 1fr); }
  .cpth-firm-types__grid { grid-template-columns: repeat(2, 1fr); }
  .cpth-outcome-bar { flex-wrap: wrap; }
  .cpth-webhook-layout { grid-template-columns: 1fr; gap: 2rem; }
  .cpth-legal-layout { grid-template-columns: 1fr; }
  .cpth-legal-sidebar { position: static; }
}
@media (max-width: 900px) {
  .cpth-about-hero__grid { grid-template-columns: 1fr; }
  .cpth-origin__inner { grid-template-columns: 1fr; }
  .cpth-blog-featured { grid-template-columns: 1fr; }
  .cpth-blog-featured__body { padding: 0 2rem 2rem; }
  .cpth-article-layout { grid-template-columns: 1fr; }
  .cpth-article-sidebar { position: static; }
  .cpth-contact-layout { grid-template-columns: 1fr; }
  .cpth-demo-layout { grid-template-columns: 1fr; padding-top: 6.5rem; }
  .cpth-auth-layout { grid-template-columns: 1fr; }
  .cpth-auth-side { display: none; }
  .cpth-customer-case-grid { grid-template-columns: 1fr; }
  .cpth-pricing__grid { grid-template-columns: 1fr; }
  .cpth-team-grid { grid-template-columns: repeat(2, 1fr); }
  .cpth-values__grid { grid-template-columns: 1fr; }
  .cpth-security-grid { grid-template-columns: 1fr; }
  .cpth-api-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cpth-hiw-step { grid-template-columns: 1fr; gap: 2rem; }
  .cpth-hiw-step--reverse { direction: ltr; }
  .cpth-blog-grid { grid-template-columns: 1fr; }
  .cpth-blog-grid--3 { grid-template-columns: 1fr; }
  .cpth-related__grid { grid-template-columns: 1fr; }
  .cpth-pricing-faq__grid { grid-template-columns: 1fr; }
  .cpth-blog-article__body-wrap .cpth-container { grid-template-columns: 1fr; }
  .cpth-blog-article__cta-aside { position: static; }
  .cpth-cust-profiles__grid { grid-template-columns: 1fr; }
  .cpth-firm-types__grid { grid-template-columns: repeat(2, 1fr); }
  .cpth-int-grid--2col { grid-template-columns: 1fr; }
  .cpth-sec-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cpth-team-grid { grid-template-columns: 1fr; }
  .cpth-int-grid { grid-template-columns: 1fr; }
  .cpth-testimonial-row { flex-direction: column; }
  .cpth-form-row { grid-template-columns: 1fr; }
  .cpth-firm-types__grid { grid-template-columns: 1fr; }
  .cpth-blog-grid--3 { grid-template-columns: 1fr; }
  .cpth-sec-infra-row { grid-template-columns: 1fr; }
}
