@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,800;1,9..144,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep: #1a2e1e;
  --bg-surface: #243325;
  --bg-cream: #f5f0e8;
  --bg-cream-alt: #ede8df;
  --bg-white: #ffffff;
  --text-on-dark: #f0ebe0;
  --text-muted-on-dark: #c4bfb4;
  --text-on-light: #1c2b1f;
  --text-muted-on-light: #4a5c4d;
  --accent-highlight: #e8a020;
  --accent-text-on-light: #8b5a0a;
  --accent-fill: #f0a030;
  --source-chip-bg: #2f4233;
  --nav-h: 68px;
  --container-w: 1180px;
  --radius-s: 6px;
  --radius-m: 10px;
  --radius-l: 16px;
  --ff-head: 'Fraunces', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
  --ff-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-on-light);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.cps-container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 40px;
}

.cps-section { padding-block: 96px; }
.cps-section--dark { background: var(--bg-deep); }
.cps-section--dark-alt { background: var(--bg-surface); }
.cps-section--light { background: var(--bg-cream); }
.cps-section--light-alt { background: var(--bg-cream-alt); }
.cps-section--cream { background: var(--bg-cream-alt); }
.cps-section--white { background: var(--bg-white); }
.cps-section--dark, .cps-section--dark-alt { padding-block: 80px; }

.cps-eyebrow {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-highlight);
  margin-bottom: 14px;
}
.cps-eyebrow--on-light {
  color: var(--accent-text-on-light);
}

.cps-h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cps-h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.cps-h3 {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
}
.cps-lead {
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: 400;
}

.cps-text-on-dark, .cps-section--dark h1, .cps-section--dark h2, .cps-section--dark h3, .cps-section--dark p, .cps-section--dark-alt h1, .cps-section--dark-alt h2, .cps-section--dark-alt h3, .cps-section--dark-alt p {
  color: var(--text-on-dark);
}
.cps-section--dark .cps-lead, .cps-section--dark-alt .cps-lead { color: var(--text-muted-on-dark); }
.cps-section--dark .cps-text-muted { color: var(--text-muted-on-dark); }
.cps-text-muted { color: var(--text-muted-on-light); }

.cps-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.cps-btn:focus-visible { outline: 2px solid var(--accent-fill); outline-offset: 3px; }
.cps-btn:active { transform: translateY(1px); }

.cps-btn--primary {
  background: var(--accent-fill);
  color: #1c2b1f;
  border-color: var(--accent-fill);
}
.cps-btn--primary:hover { background: #d98c1a; border-color: #d98c1a; }

.cps-btn--outline-on-dark {
  background: transparent;
  color: var(--text-on-dark);
  border-color: var(--text-on-dark);
}
.cps-btn--outline-on-dark:hover { background: rgba(240,235,224,0.1); }

.cps-btn--outline-on-light {
  background: transparent;
  color: var(--text-on-light);
  border-color: var(--text-on-light);
}
.cps-btn--outline-on-light:hover { background: rgba(28,43,31,0.06); }

.cps-btn--ghost-on-dark {
  background: transparent;
  color: var(--text-on-dark);
  border-color: transparent;
  padding-inline: 12px;
}
.cps-btn--ghost-on-dark:hover { color: var(--accent-fill); }

.cps-btn--ghost-on-light {
  background: transparent;
  color: var(--text-on-light);
  border-color: transparent;
  padding-inline: 12px;
}
.cps-btn--ghost-on-light:hover { color: var(--accent-text-on-light); }

.cps-btn--sm { padding: 9px 20px; font-size: 0.875rem; }

.cps-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}
.cps-nav__inner {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 40px;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 32px;
}
.cps-nav__logo { flex-shrink: 0; display: flex; align-items: center; }
.cps-nav__logo img { height: 32px; width: auto; }
.cps-nav__logo .logo-dark { display: none; }
.cps-nav__logo .logo-light { display: block; }

.cps-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.cps-nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  color: var(--text-on-dark);
}
.cps-nav__link:hover { background: rgba(240,235,224,0.1); }

.cps-nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}
.cps-nav__signin {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-on-dark);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.cps-nav__signin:hover { background: rgba(240,235,224,0.1); }

.cps-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  margin-left: auto;
  cursor: pointer;
}
.cps-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: background 0.2s, transform 0.3s, opacity 0.3s;
}

.cps-page--dark-top {
  background: var(--bg-deep);
}
.cps-page--dark-top .cps-nav {
  background: transparent;
}
.cps-page--dark-top .cps-nav--scrolled {
  background: var(--bg-deep);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.cps-page--dark-top .cps-nav--scrolled .cps-nav__link { color: var(--text-on-dark); }
.cps-page--dark-top .cps-nav--scrolled .cps-nav__signin { color: var(--text-on-dark); }
.cps-page--dark-top .cps-nav--scrolled .logo-light { display: block !important; }
.cps-page--dark-top .cps-nav--scrolled .logo-dark { display: none !important; }

.cps-page--light-top .cps-nav {
  background: var(--bg-cream);
  box-shadow: 0 1px 0 rgba(28,43,31,0.1);
}
.cps-page--light-top .cps-nav .cps-nav__link { color: var(--text-on-light); }
.cps-page--light-top .cps-nav .cps-nav__link:hover { background: rgba(28,43,31,0.06); }
.cps-page--light-top .cps-nav .cps-nav__signin { color: var(--text-on-light); }
.cps-page--light-top .cps-nav .cps-nav__signin:hover { background: rgba(28,43,31,0.06); }
.cps-page--light-top .cps-nav .cps-nav__hamburger span { background: var(--text-on-light); }
.cps-page--light-top .cps-nav .logo-light { display: none; }
.cps-page--light-top .cps-nav .logo-dark { display: block; }
.cps-page--light-top .cps-nav--scrolled .logo-dark { display: block !important; }
.cps-page--light-top .cps-nav--scrolled .logo-light { display: none !important; }

.cps-main { padding-top: var(--nav-h); }
.cps-main--no-nav { padding-top: 0; }

.cps-nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg-deep);
  padding: 24px 40px 32px;
  z-index: 899;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.cps-nav__mobile-menu.is-open { display: flex; }
.cps-nav__mobile-menu .cps-nav__link { color: var(--text-on-dark); font-size: 1.05rem; padding: 12px 0; }
.cps-nav__mobile-menu .cps-nav__link:hover { background: transparent; color: var(--accent-fill); }
.cps-nav__mobile-menu .cps-nav__signin { color: var(--text-on-dark); font-size: 1.05rem; padding: 12px 0; }
.cps-nav__mobile-menu .cps-btn { margin-top: 12px; width: fit-content; }

.cps-footer {
  background: var(--bg-deep);
  color: var(--text-on-dark);
  padding-block: 64px 40px;
}
.cps-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.cps-footer__brand .logo-light { height: 30px; margin-bottom: 16px; }
.cps-footer__brand p {
  font-size: 0.9rem;
  color: var(--text-muted-on-dark);
  line-height: 1.6;
  max-width: 260px;
}
.cps-footer__col h4 {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted-on-dark);
  margin-bottom: 16px;
}
.cps-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.cps-footer__col a {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.cps-footer__col a:hover { opacity: 1; color: var(--accent-fill); }
.cps-footer__bottom {
  border-top: 1px solid rgba(240,235,224,0.15);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.cps-footer__copyright {
  font-size: 0.82rem;
  color: var(--text-muted-on-dark);
}
.cps-footer__legal-links {
  display: flex;
  gap: 20px;
}
.cps-footer__legal-links a {
  font-size: 0.82rem;
  color: var(--text-muted-on-dark);
  transition: color 0.2s;
}
.cps-footer__legal-links a:hover { color: var(--text-on-dark); }

.cps-hero {
  position: relative;
  background: var(--bg-deep);
  overflow: hidden;
}
.cps-hero__inner {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 40px;
  padding-block: 100px 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cps-hero__text { position: relative; z-index: 1; }
.cps-hero__text .cps-h1 { color: var(--text-on-dark); margin-bottom: 20px; }
.cps-hero__text .cps-lead { color: var(--text-muted-on-dark); margin-bottom: 36px; max-width: 520px; }
.cps-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cps-hero__visual { position: relative; z-index: 1; }

.cps-hero--centered {
  text-align: center;
}
.cps-hero--centered .cps-hero__inner {
  grid-template-columns: 1fr;
  max-width: 760px;
}
.cps-hero--centered .cps-lead { margin-inline: auto; }
.cps-hero--centered .cps-hero__actions { justify-content: center; }

.cps-hero--light {
  background: var(--bg-cream);
}
.cps-hero--light .cps-h1 { color: var(--text-on-light); }
.cps-hero--light .cps-lead { color: var(--text-muted-on-light); }

.cps-hero__bg-leaf {
  position: absolute;
  top: -60px; right: -40px;
  opacity: 0.05;
  pointer-events: none;
}

.cps-answer-card {
  background: var(--bg-surface);
  border-radius: var(--radius-l);
  border-left: 3px solid var(--accent-fill);
  padding: 28px 28px 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 6px 16px rgba(0,0,0,0.25);
}
.cps-answer-card__question {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted-on-dark);
  padding: 10px 14px;
  background: rgba(240,235,224,0.06);
  border-radius: 6px;
  margin-bottom: 18px;
  line-height: 1.4;
}
.cps-answer-card__answer {
  font-size: 0.92rem;
  color: var(--text-on-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}
.cps-answer-card__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cps-source-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--source-chip-bg);
  border: 1px solid rgba(240,160,48,0.35);
  border-radius: 4px;
  padding: 5px 10px;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: var(--text-on-dark);
}
.cps-source-chip i { color: var(--accent-fill); font-size: 0.7rem; }

.cps-integration-strip {
  background: var(--bg-surface);
  padding-block: 40px;
}
.cps-integration-strip__inner {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 40px;
}
.cps-integration-strip__label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted-on-dark);
  margin-bottom: 24px;
}
.cps-integration-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cps-integration-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.cps-integration-logo:hover { opacity: 1; }
.cps-integration-logo__icon {
  width: 36px; height: 36px;
  background: rgba(240,235,224,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-on-dark);
}
.cps-integration-logo__name {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--text-muted-on-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cps-problem {
  background: var(--bg-cream);
  padding-block: 96px;
}
.cps-problem__header { text-align: center; margin-bottom: 56px; }
.cps-problem__header .cps-h2 { color: var(--text-on-light); }
.cps-problem__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cps-problem-tile {
  background: var(--bg-white);
  border-radius: var(--radius-m);
  padding: 28px 24px;
  border: 1px solid rgba(28,43,31,0.1);
  transition: box-shadow 0.2s, transform 0.2s;
}
.cps-problem-tile:hover { box-shadow: 0 8px 28px rgba(28,43,31,0.1); transform: translateY(-2px); }
.cps-problem-tile__icon {
  width: 40px; height: 40px;
  background: rgba(240,160,48,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.cps-problem-tile__icon i { color: var(--accent-text-on-light); font-size: 1.1rem; }
.cps-problem-tile h3 { font-family: var(--ff-body); font-size: 0.95rem; font-weight: 600; color: var(--text-on-light); margin-bottom: 8px; }
.cps-problem-tile p { font-size: 0.88rem; color: var(--text-muted-on-light); line-height: 1.6; margin-bottom: 12px; }
.cps-problem-tile__freq { font-size: 0.75rem; font-weight: 600; color: var(--accent-text-on-light); font-family: var(--ff-mono); }

.cps-process__header { text-align: center; margin-bottom: 56px; }
.cps-process__header .cps-h2 { color: var(--text-on-light); }
.cps-process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.cps-process__steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(100%/6);
  width: calc(100% - 100%/3);
  height: 2px;
  background: linear-gradient(to right, var(--accent-fill), var(--accent-fill));
  opacity: 0.3;
}
.cps-process-step { text-align: center; padding-inline: 24px; position: relative; }
.cps-process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-deep);
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-fill);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cps-process-step h3 { font-family: var(--ff-body); font-size: 1.05rem; font-weight: 600; color: var(--text-on-light); margin-bottom: 10px; }
.cps-process-step p { font-size: 0.9rem; color: var(--text-muted-on-light); line-height: 1.6; }

.cps-feature-split {
  padding-block: 96px;
}
.cps-feature-split__inner {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.cps-feature-split--reversed .cps-feature-split__text { order: 2; }
.cps-feature-split--reversed .cps-feature-split__visual { order: 1; }
.cps-feature-split__text .cps-h2 { color: var(--text-on-light); margin-bottom: 16px; }
.cps-feature-split__text p { color: var(--text-muted-on-light); line-height: 1.7; margin-bottom: 28px; }

.cps-feature-split--on-dark .cps-feature-split__text .cps-h2 { color: var(--text-on-dark); }
.cps-feature-split--on-dark .cps-feature-split__text p { color: var(--text-muted-on-dark); }

.cps-search-panel {
  background: var(--bg-surface);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.35);
}
.cps-search-panel__header {
  padding: 16px 20px;
  background: rgba(240,235,224,0.05);
  border-bottom: 1px solid rgba(240,235,224,0.1);
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  color: var(--text-muted-on-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cps-search-panel__header i { color: var(--accent-fill); }
.cps-search-result {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(240,235,224,0.07);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cps-search-result__bar-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding-top: 4px;
}
.cps-search-result__bar {
  width: 6px;
  background: var(--accent-fill);
  border-radius: 3px;
  opacity: 0.85;
}
.cps-search-result__content { flex: 1; }
.cps-search-result__source {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--accent-fill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.cps-search-result__snippet {
  font-size: 0.85rem;
  color: var(--text-muted-on-dark);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cps-metrics {
  background: var(--bg-deep);
}
.cps-metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(240,235,224,0.1);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.cps-metric {
  background: var(--bg-deep);
  padding: 44px 36px;
  text-align: center;
}
.cps-metric__num {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--accent-fill);
  line-height: 1;
  margin-bottom: 10px;
}
.cps-metric__label {
  font-size: 1rem;
  color: var(--text-on-dark);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.4;
}
.cps-metric__sub {
  font-size: 0.75rem;
  color: var(--text-muted-on-dark);
  font-family: var(--ff-mono);
}

.cps-testimonials { background: var(--bg-cream-alt); }
.cps-testimonials__header { text-align: center; margin-bottom: 48px; }
.cps-testimonials__header .cps-h2 { color: var(--text-on-light); }
.cps-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cps-testimonial {
  background: var(--bg-white);
  border-radius: var(--radius-m);
  padding: 28px;
  border: 1px solid rgba(28,43,31,0.07);
  position: relative;
}
.cps-testimonial__quote-mark {
  font-family: var(--ff-head);
  font-size: 3rem;
  color: var(--accent-text-on-light);
  line-height: 1;
  margin-bottom: 12px;
  pointer-events: none;
  user-select: none;
}
.cps-testimonial p {
  font-size: 0.95rem;
  color: var(--text-on-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.cps-testimonial__attr {
  font-size: 0.82rem;
  color: var(--text-muted-on-light);
  font-weight: 500;
}

.cps-pricing-preview { background: var(--bg-white); }
.cps-pricing-preview__header { text-align: center; margin-bottom: 48px; }
.cps-pricing-preview__header .cps-h2 { color: var(--text-on-light); }
.cps-pricing-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.cps-pricing-mini {
  background: var(--bg-cream);
  border-radius: var(--radius-m);
  padding: 28px 24px;
  border: 1px solid rgba(28,43,31,0.08);
  text-align: center;
  transition: box-shadow 0.2s;
}
.cps-pricing-mini--featured {
  background: var(--bg-deep);
  border-color: var(--accent-fill);
  box-shadow: 0 0 0 2px var(--accent-fill);
}
.cps-pricing-mini:not(.cps-pricing-mini--featured):hover { box-shadow: 0 6px 24px rgba(28,43,31,0.1); }
.cps-pricing-mini__badge {
  display: inline-block;
  background: var(--accent-fill);
  color: #1c2b1f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 12px;
}
.cps-pricing-mini h3 {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-on-light);
}
.cps-pricing-mini--featured h3 { color: var(--text-on-dark); }
.cps-pricing-mini__price {
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-text-on-light);
  line-height: 1;
  margin-bottom: 4px;
}
.cps-pricing-mini--featured .cps-pricing-mini__price { color: var(--accent-fill); }
.cps-pricing-mini__period { font-size: 0.8rem; color: var(--text-muted-on-light); margin-bottom: 12px; }
.cps-pricing-mini--featured .cps-pricing-mini__period { color: var(--text-muted-on-dark); }
.cps-pricing-mini p { font-size: 0.88rem; color: var(--text-muted-on-light); line-height: 1.5; }
.cps-pricing-mini--featured p { color: var(--text-muted-on-dark); }
.cps-pricing-preview__cta { text-align: center; }

.cps-cta-banner { background: var(--bg-deep); text-align: center; }
.cps-cta-banner .cps-h2 {
  font-style: italic;
  font-weight: 300;
  color: var(--text-on-dark);
  margin-bottom: 24px;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 24px;
}
.cps-cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.cps-cta-banner p { font-size: 0.9rem; color: var(--text-muted-on-dark); }

.cps-page-hero {
  background: var(--bg-cream);
  padding-block: 80px 64px;
}
.cps-page-hero--dark {
  background: var(--bg-deep);
}
.cps-page-hero__inner {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 40px;
}
.cps-page-hero .cps-h1 { color: var(--text-on-light); }
.cps-page-hero .cps-lead { color: var(--text-muted-on-light); margin-top: 16px; }
.cps-page-hero--dark .cps-h1 { color: var(--text-on-dark); }
.cps-page-hero--dark .cps-lead { color: var(--text-muted-on-dark); margin-top: 16px; }
.cps-page-hero__visual-anchor {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.cps-subhero-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cps-data-fragment {
  background: var(--bg-surface);
  border-radius: var(--radius-m);
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--text-on-dark);
}
.cps-data-fragment__row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(240,235,224,0.08);
  gap: 16px;
}
.cps-data-fragment__row:last-child { border-bottom: none; }
.cps-data-fragment__key { color: var(--text-muted-on-dark); }
.cps-data-fragment__val { color: var(--accent-fill); font-weight: 500; }

.cps-section-header { text-align: center; margin-bottom: 56px; }
.cps-section-header .cps-h2 { color: var(--text-on-light); }
.cps-section-header p { font-size: 1.05rem; color: var(--text-muted-on-light); margin-top: 14px; max-width: 580px; margin-inline: auto; }
.cps-section--dark .cps-section-header .cps-h2 { color: var(--text-on-dark); }
.cps-section--dark .cps-section-header p { color: var(--text-muted-on-dark); }

.cps-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cps-feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-m);
  padding: 28px 24px;
  border: 1px solid rgba(28,43,31,0.09);
  transition: box-shadow 0.2s, transform 0.2s;
}
.cps-feature-card:hover { box-shadow: 0 6px 24px rgba(28,43,31,0.1); transform: translateY(-2px); }
.cps-feature-card__icon {
  width: 44px; height: 44px;
  background: rgba(240,160,48,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: var(--accent-text-on-light);
}
.cps-feature-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--text-on-light); margin-bottom: 10px; }
.cps-feature-card p { font-size: 0.9rem; color: var(--text-muted-on-light); line-height: 1.6; }

.cps-integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cps-integration-card {
  background: var(--bg-white);
  border-radius: var(--radius-m);
  padding: 28px 24px;
  border: 1px solid rgba(28,43,31,0.09);
  transition: box-shadow 0.2s;
}
.cps-integration-card:hover { box-shadow: 0 6px 24px rgba(28,43,31,0.1); }
.cps-integration-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.cps-integration-card__icon {
  width: 44px; height: 44px;
  background: rgba(240,160,48,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-text-on-light);
  flex-shrink: 0;
}
.cps-integration-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--text-on-light); }
.cps-integration-card p { font-size: 0.88rem; color: var(--text-muted-on-light); line-height: 1.6; margin-bottom: 12px; }
.cps-integration-card__setup { font-size: 0.78rem; color: var(--accent-text-on-light); font-family: var(--ff-mono); }

.cps-usecase-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cps-usecase-block--reversed .cps-usecase-block__text { order: 2; }
.cps-usecase-block--reversed .cps-usecase-block__visual { order: 1; }
.cps-usecase-block__text .cps-h2 { color: var(--text-on-light); margin-bottom: 16px; }
.cps-usecase-block__text p { color: var(--text-muted-on-light); line-height: 1.7; margin-bottom: 16px; }
.cps-usecase-block__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cps-usecase-block__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-on-light);
}
.cps-usecase-block__list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent-fill);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.cps-usecase-icon-block {
  background: var(--bg-deep);
  border-radius: var(--radius-l);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.cps-usecase-icon-block__row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cps-usecase-icon-block__dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--source-chip-bg);
  border: 1px solid rgba(240,160,48,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--accent-fill);
  flex-shrink: 0;
}
.cps-usecase-icon-block__row span { font-size: 0.88rem; color: var(--text-muted-on-dark); }

.cps-pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.cps-price-card {
  background: var(--bg-white);
  border-radius: var(--radius-l);
  padding: 32px 28px;
  border: 1px solid rgba(28,43,31,0.1);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.cps-price-card:hover { box-shadow: 0 8px 32px rgba(28,43,31,0.1); }
.cps-price-card--featured {
  background: var(--bg-deep);
  border-color: var(--accent-fill);
  box-shadow: 0 0 0 2px var(--accent-fill), 0 12px 40px rgba(0,0,0,0.25);
}
.cps-price-card__badge {
  display: inline-block;
  background: var(--accent-fill);
  color: #1c2b1f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 16px;
  width: fit-content;
}
.cps-price-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-on-light);
  margin-bottom: 8px;
}
.cps-price-card--featured .cps-price-card__name { color: var(--text-on-dark); }
.cps-price-card__price-row { margin-bottom: 6px; }
.cps-price-card__amount {
  font-family: var(--ff-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-on-light);
  line-height: 1;
}
.cps-price-card--featured .cps-price-card__amount { color: var(--accent-fill); }
.cps-price-card__amount--annual { color: var(--text-on-light) !important; }
.cps-price-card--featured .cps-price-card__amount--annual { color: var(--accent-fill) !important; }
.cps-price-card__period { font-size: 0.85rem; color: var(--text-muted-on-light); }
.cps-price-card--featured .cps-price-card__period { color: var(--text-muted-on-dark); }
.cps-price-card__desc { font-size: 0.88rem; color: var(--text-muted-on-light); margin-bottom: 24px; line-height: 1.5; }
.cps-price-card--featured .cps-price-card__desc { color: var(--text-muted-on-dark); }
.cps-price-card__divider { border: none; border-top: 1px solid rgba(28,43,31,0.1); margin-bottom: 20px; }
.cps-price-card--featured .cps-price-card__divider { border-color: rgba(240,235,224,0.15); }
.cps-price-card__features { display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 28px; }
.cps-price-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-on-light);
}
.cps-price-card--featured .cps-price-card__feature { color: var(--text-on-dark); }
.cps-price-card__feature i { color: var(--accent-text-on-light); font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }
.cps-price-card--featured .cps-price-card__feature i { color: var(--accent-fill); }
.cps-price-card .cps-btn { width: 100%; justify-content: center; }

.cps-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}
.cps-pricing-toggle span { font-size: 0.92rem; color: var(--text-muted-on-light); font-weight: 500; }
.cps-pricing-toggle__save {
  display: inline-block;
  background: rgba(240,160,48,0.15);
  color: var(--accent-text-on-light);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  padding: 2px 10px;
}
.cps-billing-switch {
  position: relative;
  width: 44px; height: 24px;
  background: rgba(28,43,31,0.2);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  display: flex;
  align-items: center;
  padding: 2px;
}
.cps-billing-switch.is-annual { background: var(--bg-deep); }
.cps-billing-switch__thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--bg-cream);
  transition: transform 0.2s;
  pointer-events: none;
}
.cps-billing-switch.is-annual .cps-billing-switch__thumb { transform: translateX(20px); }

.cps-faq { }
.cps-faq__list { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(28,43,31,0.1); border-radius: var(--radius-m); overflow: hidden; }
.cps-faq-item { border-bottom: 1px solid rgba(28,43,31,0.1); }
.cps-faq-item:last-child { border-bottom: none; }
.cps-faq-item__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: var(--bg-white);
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}
.cps-faq-item__btn:hover { background: var(--bg-cream); }
.cps-faq-item__question {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text-on-light);
}
.cps-faq-item__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
  color: var(--text-muted-on-light);
}
.cps-faq-item.is-open .cps-faq-item__icon { transform: rotate(45deg); }
.cps-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.cps-faq-item.is-open .cps-faq-item__answer { max-height: 400px; }
.cps-faq-item__answer-inner {
  padding: 0 24px 20px;
  background: var(--bg-white);
  font-size: 0.92rem;
  color: var(--text-muted-on-light);
  line-height: 1.7;
}

.cps-about-hero-ornament {
  flex: 0 0 320px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cps-about-hero-ornament__cell {
  background: rgba(240,235,224,0.05);
  border: 1px solid rgba(240,235,224,0.1);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cps-about-hero-ornament__cell:nth-child(1) { background: rgba(240,160,48,0.08); border-color: rgba(240,160,48,0.2); }
.cps-about-hero-ornament__num {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-fill);
  line-height: 1;
}
.cps-about-hero-ornament__label {
  font-size: 0.75rem;
  color: var(--text-muted-on-dark);
  font-family: var(--ff-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cps-story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cps-story-split img {
  border-radius: var(--radius-l);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.cps-story-split__text .cps-h2 { color: var(--text-on-light); margin-bottom: 16px; }
.cps-story-split__text p { color: var(--text-muted-on-light); line-height: 1.7; margin-bottom: 14px; }

.cps-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.cps-team-card { text-align: center; }
.cps-team-card__portrait {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: 16px;
  overflow: hidden;
  border: 3px solid rgba(240,160,48,0.25);
}
.cps-team-card__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.cps-team-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--text-on-light); margin-bottom: 4px; }
.cps-team-card__title { font-size: 0.82rem; color: var(--accent-text-on-light); font-weight: 500; margin-bottom: 12px; }
.cps-team-card p { font-size: 0.85rem; color: var(--text-muted-on-light); line-height: 1.6; }

.cps-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cps-security-card {
  background: var(--bg-white);
  border-radius: var(--radius-m);
  padding: 28px 24px;
  border: 1px solid rgba(28,43,31,0.09);
}
.cps-security-card__icon {
  width: 44px; height: 44px;
  background: rgba(240,160,48,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 1.2rem;
  color: var(--accent-text-on-light);
}
.cps-security-card h3 { font-size: 1rem; font-weight: 600; color: var(--text-on-light); margin-bottom: 8px; }
.cps-security-card p { font-size: 0.88rem; color: var(--text-muted-on-light); line-height: 1.6; }

.cps-compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.cps-compliance-item {
  background: var(--bg-white);
  border-radius: var(--radius-m);
  padding: 24px;
  border: 1px solid rgba(28,43,31,0.09);
}
.cps-compliance-item h3 { font-size: 1rem; font-weight: 600; color: var(--text-on-light); margin-bottom: 8px; }
.cps-compliance-item p { font-size: 0.88rem; color: var(--text-muted-on-light); line-height: 1.6; }

.cps-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.cps-contact-info h2 { color: var(--text-on-light); margin-bottom: 20px; }
.cps-contact-info__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.cps-contact-info__item i { color: var(--accent-text-on-light); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.cps-contact-info__item div { font-size: 0.92rem; color: var(--text-muted-on-light); line-height: 1.6; }
.cps-contact-info__item a { color: var(--accent-text-on-light); }
.cps-contact-info__item a:hover { text-decoration: underline; }
.cps-contact-form { background: var(--bg-white); border-radius: var(--radius-l); padding: 36px; border: 1px solid rgba(28,43,31,0.1); }
.cps-form-field { margin-bottom: 20px; }
.cps-form-field label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-on-light); margin-bottom: 7px; }
.cps-form-field input,
.cps-form-field select,
.cps-form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(28,43,31,0.2);
  border-radius: var(--radius-s);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--text-on-light);
  background: var(--bg-cream);
  transition: border-color 0.2s;
  outline: none;
}
.cps-form-field input:focus,
.cps-form-field select:focus,
.cps-form-field textarea:focus { border-color: var(--accent-fill); }
.cps-form-field textarea { resize: vertical; min-height: 120px; }

.cps-blog-hero { background: var(--bg-cream); padding-block: 64px 48px; }
.cps-blog-hero__inner {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 40px;
}
.cps-blog-hero__inner .cps-h1 { color: var(--text-on-light); }
.cps-blog-hero__inner .cps-lead { color: var(--text-muted-on-light); margin-top: 12px; }
.cps-blog-grid-section { background: var(--bg-cream); padding-block: 0 80px; }
.cps-blog-grid { max-width: var(--container-w); margin-inline: auto; padding-inline: 40px; }
.cps-blog-featured {
  margin-bottom: 40px;
}
.cps-blog-featured__card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  background: var(--bg-white);
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid rgba(28,43,31,0.09);
  transition: box-shadow 0.2s;
  text-decoration: none;
}
.cps-blog-featured__card:hover { box-shadow: 0 8px 32px rgba(28,43,31,0.1); }
.cps-blog-featured__img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%; height: 100%;
}
.cps-blog-featured__content { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.cps-blog-featured__meta { font-size: 0.8rem; color: var(--text-muted-on-light); margin-bottom: 10px; font-family: var(--ff-mono); }
.cps-blog-featured__content h2 {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-on-light);
  margin-bottom: 12px;
  line-height: 1.25;
}
.cps-blog-featured__content p { font-size: 0.92rem; color: var(--text-muted-on-light); line-height: 1.6; }
.cps-blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cps-blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid rgba(28,43,31,0.09);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.cps-blog-card:hover { box-shadow: 0 6px 24px rgba(28,43,31,0.1); transform: translateY(-2px); }
.cps-blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.cps-blog-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.cps-blog-card__meta { font-size: 0.75rem; color: var(--text-muted-on-light); font-family: var(--ff-mono); margin-bottom: 8px; }
.cps-blog-card__body h3 { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 600; color: var(--text-on-light); line-height: 1.3; margin-bottom: 8px; }
.cps-blog-card__body p { font-size: 0.85rem; color: var(--text-muted-on-light); line-height: 1.55; flex: 1; }

.cps-article-hero {
  background: var(--bg-cream);
  padding-block: 64px 0;
}
.cps-article-hero__inner {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 40px;
}
.cps-article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--accent-text-on-light);
  margin-bottom: 24px;
  transition: color 0.2s;
}
.cps-article-back:hover { color: var(--text-on-light); }
.cps-article-hero__meta {
  font-size: 0.82rem;
  color: var(--text-muted-on-light);
  font-family: var(--ff-mono);
  margin-bottom: 16px;
}
.cps-article-hero__title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--text-on-light);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 760px;
}
.cps-article-cover {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 40px;
  margin-top: 32px;
}
.cps-article-cover img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-l) var(--radius-l) 0 0;
}
.cps-article-body {
  background: var(--bg-white);
  padding-block: 56px 80px;
}
.cps-article-content {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 40px;
}
.cps-prose h2 {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-on-light);
  margin-bottom: 14px;
  margin-top: 40px;
}
.cps-prose p {
  font-size: 1.02rem;
  color: var(--text-on-light);
  line-height: 1.78;
  margin-bottom: 20px;
}
.cps-prose ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.cps-prose ul li {
  font-size: 1.02rem;
  color: var(--text-on-light);
  line-height: 1.7;
  margin-bottom: 8px;
}
.cps-prose blockquote {
  border-left: 3px solid var(--accent-fill);
  padding: 12px 20px;
  margin-block: 24px;
  background: var(--bg-cream);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
}
.cps-prose blockquote p { color: var(--text-muted-on-light); font-style: italic; margin-bottom: 0; }
.cps-article-related { margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(28,43,31,0.1); }
.cps-article-related h3 {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-on-light);
  margin-bottom: 20px;
}
.cps-article-related__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cps-article-related__item {
  background: var(--bg-cream);
  border-radius: var(--radius-s);
  padding: 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-on-light);
  text-decoration: none;
  transition: background 0.2s;
}
.cps-article-related__item:hover { background: var(--bg-cream-alt); color: var(--accent-text-on-light); }

.cps-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-cream);
  padding: 40px 20px;
}
.cps-auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-white);
  border-radius: var(--radius-l);
  padding: 44px 40px;
  border: 1px solid rgba(28,43,31,0.1);
  box-shadow: 0 8px 40px rgba(28,43,31,0.08);
}
.cps-auth-card__logo { margin-bottom: 28px; }
.cps-auth-card__logo img { height: 32px; }
.cps-auth-card h1 {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-on-light);
  margin-bottom: 6px;
}
.cps-auth-card__sub { font-size: 0.9rem; color: var(--text-muted-on-light); margin-bottom: 28px; }
.cps-auth-form { display: flex; flex-direction: column; gap: 16px; }
.cps-auth-field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-on-light); margin-bottom: 6px; }
.cps-auth-field input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(28,43,31,0.2);
  border-radius: var(--radius-s);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--text-on-light);
  background: var(--bg-cream);
  outline: none;
  transition: border-color 0.2s;
}
.cps-auth-field input:focus { border-color: var(--accent-fill); }
.cps-auth-forgot {
  text-align: right;
  font-size: 0.82rem;
  color: var(--accent-text-on-light);
  margin-top: -8px;
  transition: color 0.2s;
}
.cps-auth-forgot:hover { color: var(--text-on-light); }
.cps-auth-submit { margin-top: 6px; }
.cps-auth-submit .cps-btn { width: 100%; justify-content: center; }
.cps-auth-switch {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted-on-light);
  margin-top: 20px;
}
.cps-auth-switch a { color: var(--accent-text-on-light); font-weight: 500; }
.cps-auth-switch a:hover { text-decoration: underline; }
.cps-auth-legal {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted-on-light);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(28,43,31,0.1);
}
.cps-auth-legal a { color: var(--text-muted-on-light); text-decoration: underline; }
.cps-auth-legal a:hover { color: var(--text-on-light); }

.cps-product-deep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cps-product-deep__text .cps-h2 { color: var(--text-on-light); margin-bottom: 14px; }
.cps-product-deep__text p { color: var(--text-muted-on-light); line-height: 1.7; margin-bottom: 14px; }
.cps-section--cream .cps-product-deep__text .cps-h2 { color: var(--text-on-light); }
.cps-section--cream .cps-product-deep__text p { color: var(--text-muted-on-light); }

.cps-freshness-mock {
  background: var(--bg-surface);
  border-radius: var(--radius-m);
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.cps-freshness-mock__header {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  color: var(--text-muted-on-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.cps-freshness-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cps-freshness-row__source {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: var(--text-muted-on-dark);
  width: 100px;
  flex-shrink: 0;
}
.cps-freshness-row__bar-bg {
  flex: 1;
  height: 6px;
  background: rgba(240,235,224,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.cps-freshness-row__bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--accent-fill);
}
.cps-freshness-row__ts {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--accent-fill);
  flex-shrink: 0;
}

.cps-admin-mock {
  background: var(--bg-surface);
  border-radius: var(--radius-m);
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.cps-admin-mock__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(240,235,224,0.07);
  gap: 16px;
}
.cps-admin-mock__row:last-child { border-bottom: none; }
.cps-admin-mock__name { font-size: 0.85rem; color: var(--text-on-dark); }
.cps-admin-mock__status {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 4px;
}
.cps-admin-mock__status--ok { background: rgba(101,163,91,0.2); color: #8fd47e; }
.cps-admin-mock__status--warn { background: rgba(240,160,48,0.15); color: var(--accent-fill); }

.cps-legal-content {
  background: var(--bg-white);
  padding-block: 60px 80px;
}
.cps-legal-prose {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 40px;
  font-size: 0.97rem;
  color: var(--text-on-light);
  line-height: 1.75;
}
.cps-legal-prose h2 {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-on-light);
  margin-top: 36px;
  margin-bottom: 12px;
}
.cps-legal-prose p { margin-bottom: 16px; }
.cps-legal-prose ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.cps-legal-prose ul li { margin-bottom: 6px; }
.cps-legal-prose a { color: var(--accent-text-on-light); text-decoration: underline; }

.cps-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.cps-fade-in.is-visible {
  opacity: 1;
  transform: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--bg-surface);
  border-top: 1px solid rgba(240,160,48,0.3);
}
.cookie-banner__inner {
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-on-dark);
  line-height: 1.5;
}
.cookie-banner__text a { color: var(--accent-fill); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__btn {
  padding: 9px 20px;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s;
}
.cookie-banner__btn--primary {
  background: var(--accent-fill);
  color: #1c2b1f;
  border-color: var(--accent-fill);
}
.cookie-banner__btn--primary:hover { background: #d98c1a; border-color: #d98c1a; }
.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(240,235,224,0.5);
}
.cookie-banner__btn--secondary:hover { background: rgba(240,235,224,0.1); }

@media (max-width: 1024px) {
  .cps-container { padding-inline: 28px; }
  .cps-hero__inner { padding-inline: 28px; }
  .cps-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cps-team-grid { grid-template-columns: repeat(2, 1fr); }
  .cps-pricing-table { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .cps-features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .cps-container { padding-inline: 20px; }
  .cps-section { padding-block: 64px; }
  .cps-section--dark, .cps-section--dark-alt { padding-block: 56px; }

  .cps-nav__inner { padding-inline: 20px; }
  .cps-nav__links { display: none; }
  .cps-nav__cta { display: none; }
  .cps-nav__hamburger { display: flex; }
  .cps-nav__mobile-menu { padding: 20px 20px 28px; }

  .cps-hero__inner {
    grid-template-columns: 1fr;
    padding-inline: 20px;
    padding-block: 60px 48px;
    gap: 40px;
  }
  .cps-hero--centered .cps-hero__inner { max-width: 100%; }
  .cps-hero__visual { order: 2; }

  .cps-problem__tiles { grid-template-columns: 1fr; }
  .cps-process__steps { grid-template-columns: 1fr; gap: 36px; }
  .cps-process__steps::before { display: none; }
  .cps-process-step { text-align: left; display: flex; gap: 16px; }
  .cps-process-step__num { margin-bottom: 0; flex-shrink: 0; }
  .cps-metrics__grid { grid-template-columns: 1fr; }
  .cps-testimonials__grid { grid-template-columns: 1fr; }
  .cps-pricing-preview__grid { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
  .cps-feature-split__inner { grid-template-columns: 1fr; padding-inline: 20px; gap: 36px; }
  .cps-feature-split--reversed .cps-feature-split__text { order: 0; }
  .cps-feature-split--reversed .cps-feature-split__visual { order: 0; }
  .cps-integration-grid { grid-template-columns: 1fr 1fr; }
  .cps-usecase-block { grid-template-columns: 1fr; gap: 32px; }
  .cps-usecase-block--reversed .cps-usecase-block__text { order: 0; }
  .cps-usecase-block--reversed .cps-usecase-block__visual { order: 0; }
  .cps-pricing-table { max-width: 100%; }
  .cps-team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cps-security-grid { grid-template-columns: 1fr 1fr; }
  .cps-compliance-grid { grid-template-columns: 1fr; }
  .cps-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cps-story-split { grid-template-columns: 1fr; gap: 32px; }
  .cps-blog-featured__card { grid-template-columns: 1fr; }
  .cps-blog-card-grid { grid-template-columns: 1fr 1fr; }
  .cps-article-cover { padding-inline: 20px; }
  .cps-article-content { padding-inline: 20px; }
  .cps-article-hero__inner { padding-inline: 20px; }
  .cps-article-related__grid { grid-template-columns: 1fr; }
  .cps-subhero-two-col { grid-template-columns: 1fr; gap: 32px; }
  .cps-about-hero-ornament { flex: none; width: 100%; max-width: 320px; margin-inline: auto; }
  .cps-product-deep { grid-template-columns: 1fr; gap: 36px; }
  .cps-features-grid { grid-template-columns: 1fr; }
  .cps-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cps-page-hero__inner { padding-inline: 20px; }
  .cps-blog-hero__inner { padding-inline: 20px; }
  .cps-integration-strip__logos { gap: 24px; }
  .cps-blog-grid { padding-inline: 20px; }
  .cps-auth-card { padding: 32px 24px; }
  .cookie-banner__inner { padding: 14px 20px; }
  .cps-integration-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cps-blog-card-grid { grid-template-columns: 1fr; }
  .cps-security-grid { grid-template-columns: 1fr; }
  .cps-team-grid { grid-template-columns: 1fr 1fr; }
  .cps-footer__grid { grid-template-columns: 1fr; }
  .cps-about-hero-ornament { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .cps-fade-in { opacity: 1; transform: none; }
}
