/* ===================================================
   AI Consensus — Content Page Styles
   Shared by: glossary, what-is, use-case pages
   Inherits landing.css design system variables
   =================================================== */

.cp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--ink);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
}

.cp-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) { .cp-nav .container { padding: 0 24px; } }

.cp-nav__brand {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
}

.cp-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.cp-nav__links a {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 200ms;
}

.cp-nav__links a:hover { color: var(--white); }

@media (max-width: 768px) { .cp-nav__links { display: none; } }

/* ===================================================
   PAGE WRAPPER
   =================================================== */

.cp-page {
  padding-top: 56px;
  background: var(--paper);
  min-height: 100vh;
}

/* ===================================================
   HERO BAND
   =================================================== */

.cp-hero {
  background: var(--ink);
  padding: 64px 0 56px;
}

.cp-hero__eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.cp-hero__h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--white);
  line-height: 1.1;
  max-width: 760px;
  margin-bottom: 20px;
}

.cp-hero__intro {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 680px;
}

@media (max-width: 768px) {
  .cp-hero__h1 { font-size: 32px; }
}

/* ===================================================
   BREADCRUMB
   =================================================== */

.cp-breadcrumb {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--steel);
  padding: 20px 0 0;
  letter-spacing: 0.05em;
}

.cp-breadcrumb a {
  color: var(--steel);
  text-decoration: none;
  transition: color 200ms;
}

.cp-breadcrumb a:hover { color: var(--gold); }

/* ===================================================
   CONTENT BODY
   =================================================== */

.cp-body {
  padding: 64px 0 100px;
}

.cp-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--ink);
  margin: 48px 0 16px;
  line-height: 1.2;
}

.cp-body h2:first-child { margin-top: 0; }

.cp-body p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--steel);
  max-width: 720px;
  margin-bottom: 20px;
}

.cp-body p a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,146,42,0.4);
  transition: border-color 200ms;
}

.cp-body p a:hover { border-color: var(--gold); }

.cp-rule {
  width: 100%;
  height: 1px;
  background: var(--rule);
  margin: 48px 0;
}

/* ===================================================
   GLOSSARY-SPECIFIC
   =================================================== */

.gl-term {
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
}

.gl-term:last-child { border-bottom: none; }

.gl-term__name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.gl-term h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 14px !important;
  margin-top: 0 !important;
}

.gl-term p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--steel);
  max-width: 760px;
  margin-bottom: 0 !important;
}

/* ===================================================
   FAQ ITEMS (reused on landing + content pages)
   =================================================== */

.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}

.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-item p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--steel);
  max-width: 780px;
  margin: 0;
}

/* ===================================================
   USE CASE PAGE SPECIFIC
   =================================================== */

.uc-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
}

.uc-section:last-child { border-bottom: none; }

.uc-section__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.uc-section h2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px;
}

.uc-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.uc-list li {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  color: var(--steel);
  line-height: 1.7;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding-left: 16px;
  position: relative;
}

.uc-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ===================================================
   CTA BAND
   =================================================== */

.cp-cta {
  background: var(--ink);
  padding: 64px 0;
  text-align: center;
}

.cp-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 16px;
}

.cp-cta p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}

/* ===================================================
   FOOTER
   =================================================== */

.cp-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 40px 0;
}

.cp-footer .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

@media (max-width: 768px) {
  .cp-footer .container { padding: 0 24px; flex-direction: column; }
}

.cp-footer__brand-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--paper);
  text-transform: uppercase;
  display: block;
  text-decoration: none;
}

.cp-footer__brand-url {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 4px;
}

.cp-footer__col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.cp-footer__col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cp-footer__col a {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 200ms;
}

.cp-footer__col a:hover { color: var(--paper); }

.cp-footer__copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}
