/* Capkindle — capkindle.css
   Institutional RWA tokenization platform, NYC FiDi
   Brand: Deep Navy #0E1E3A + Warm Gold #C8922A + DM Serif Display + Inter + IBM Plex Mono */

/* =========================================================
   0. RESET + CUSTOM PROPERTIES
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --navy:          #0E1E3A;
  --navy-alt:      #152B52;
  --navy-border:   #1E3358;
  --gold:          #C8922A;
  --gold-aa-light: #7A5719;
  --parchment:     #F7F5F1;
  --white:         #FFFFFF;
  --border-light:  #E2DDD5;

  /* Foreground tokens */
  --fg-light-primary:   #0E1E3A;
  --fg-light-secondary: #4A5568;
  --fg-dark-primary:    #F3EFE7;
  --fg-dark-secondary:  #9AABBF;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  /* Spacing */
  --section-pad:  120px;
  --col-max:      1080px;
  --text-max:     680px;

  /* Transitions */
  --trans-fast:   0.18s ease;
  --trans-med:    0.28s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fg-light-primary);
  background: var(--parchment);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }

/* =========================================================
   1. UTILITY CLASSES
   ========================================================= */
.ckl-container {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.ckl-text-container {
  max-width: var(--text-max);
}

.section--light  { background: var(--parchment); }
.section--white  { background: var(--white); }
.section--dark   { background: var(--navy); }
.section--dark-alt { background: var(--navy-alt); }

.ckl-section {
  padding: var(--section-pad) 0;
}

.ckl-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section--light  .ckl-eyebrow,
.section--white  .ckl-eyebrow { color: var(--gold-aa-light); }
.section--dark   .ckl-eyebrow,
.section--dark-alt .ckl-eyebrow { color: var(--gold); }

.ckl-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section--light  .ckl-section-title,
.section--white  .ckl-section-title { color: var(--fg-light-primary); }
.section--dark   .ckl-section-title,
.section--dark-alt .ckl-section-title { color: var(--fg-dark-primary); }

.ckl-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: var(--text-max);
}

.section--light  .ckl-lead,
.section--white  .ckl-lead { color: var(--fg-light-secondary); }
.section--dark   .ckl-lead,
.section--dark-alt .ckl-lead { color: var(--fg-dark-secondary); }

/* =========================================================
   2. BUTTONS
   ========================================================= */
.ckl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--trans-fast), color var(--trans-fast), border-color var(--trans-fast);
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.ckl-btn--gold-fill {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.ckl-btn--gold-fill:hover {
  background: #b37e23;
  border-color: #b37e23;
  color: var(--navy);
}

.ckl-btn--outlined-ivory {
  background: transparent;
  color: var(--fg-dark-primary);
  border-color: rgba(243,239,231,0.5);
}
.ckl-btn--outlined-ivory:hover {
  border-color: var(--fg-dark-primary);
  color: var(--fg-dark-primary);
}

.ckl-btn--outlined-navy {
  background: transparent;
  color: var(--fg-light-primary);
  border-color: var(--navy);
}
.ckl-btn--outlined-navy:hover {
  background: var(--navy);
  color: var(--fg-dark-primary);
}

.ckl-btn--outlined-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.ckl-btn--outlined-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

/* =========================================================
   3. NAVIGATION
   ========================================================= */
.ckl-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  background: var(--navy);
  transition: background var(--trans-med), box-shadow var(--trans-med);
}

.ckl-nav--scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(14,30,58,0.18);
}

.ckl-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.ckl-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.ckl-nav__logo-img {
  height: 36px;
  width: auto;
  max-width: 200px;
}

.ckl-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.ckl-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(243,239,231,0.82);
  text-decoration: none;
  transition: color var(--trans-fast);
  white-space: nowrap;
}

.ckl-nav__link:hover,
.ckl-nav__link.active { color: var(--fg-dark-primary); }

.ckl-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.ckl-nav__signin {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(243,239,231,0.7);
  text-decoration: none;
  transition: color var(--trans-fast);
}

.ckl-nav__signin:hover { color: var(--fg-dark-primary); }

.ckl-nav__cta {
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: background var(--trans-fast), color var(--trans-fast);
  text-decoration: none;
  white-space: nowrap;
}

.ckl-nav__cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Hamburger */
.ckl-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.ckl-nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--fg-dark-primary);
  border-radius: 2px;
  transition: transform var(--trans-fast), opacity var(--trans-fast);
}

.ckl-nav--menu-open .ckl-nav__hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.ckl-nav--menu-open .ckl-nav__hamburger span:nth-child(2) {
  opacity: 0;
}
.ckl-nav--menu-open .ckl-nav__hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu overlay */
.ckl-nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  padding: 40px clamp(20px, 6vw, 48px);
  gap: 8px;
  overflow-y: auto;
}

.ckl-nav__mobile-menu.is-open {
  display: flex;
}

.ckl-nav__mobile-link {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--fg-dark-primary);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--navy-border);
  transition: color var(--trans-fast);
}

.ckl-nav__mobile-link:hover { color: var(--gold); }

.ckl-nav__mobile-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Light-top pages: nav always solid (already navy — same as default) */
body.ckl-page--light-top .ckl-nav {
  background: var(--navy);
}

/* =========================================================
   4. HERO (INDEX)
   ========================================================= */
.ckl-hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.ckl-hero__inner {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ckl-hero__content {
  display: flex;
  flex-direction: column;
}

.ckl-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.ckl-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
  color: var(--fg-dark-primary);
  margin-bottom: 24px;
}

.ckl-hero__sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--fg-dark-secondary);
  max-width: 520px;
  margin-bottom: 40px;
}

.ckl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ckl-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================================================
   5. TRUST BAND (INDEX)
   ========================================================= */
.ckl-trust-band {
  background: var(--navy-alt);
  padding: 48px 0;
}

.ckl-trust-band__inner {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.ckl-trust-chip {
  text-align: center;
}

.ckl-trust-chip__stat {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}

.ckl-trust-chip__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-dark-secondary);
  letter-spacing: 0.04em;
}

/* =========================================================
   6. FEATURE CARDS (3-COL)
   ========================================================= */
.ckl-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.ckl-feature-card {
  padding: 32px 28px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: var(--white);
}

.section--dark .ckl-feature-card,
.section--dark-alt .ckl-feature-card {
  background: var(--navy-alt);
  border-color: var(--navy-border);
}

.ckl-feature-card__icon {
  font-size: 1.5rem;
  color: var(--gold-aa-light);
  margin-bottom: 18px;
}

.section--dark .ckl-feature-card__icon,
.section--dark-alt .ckl-feature-card__icon {
  color: var(--gold);
}

.ckl-feature-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg-light-primary);
  margin-bottom: 10px;
}

.section--dark .ckl-feature-card__title,
.section--dark-alt .ckl-feature-card__title {
  color: var(--fg-dark-primary);
}

.ckl-feature-card__body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg-light-secondary);
}

.section--dark .ckl-feature-card__body,
.section--dark-alt .ckl-feature-card__body {
  color: var(--fg-dark-secondary);
}

/* =========================================================
   7. ASSET CLASSES PREVIEW
   ========================================================= */
.ckl-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ckl-split-section--reverse {
  grid-template-columns: 1fr 1fr;
}

.ckl-split-section--reverse .ckl-split-section__text {
  order: 2;
}

.ckl-split-section--reverse .ckl-split-section__visual {
  order: 1;
}

.ckl-asset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ckl-asset-card {
  padding: 24px 20px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  background: var(--white);
}

.section--dark .ckl-asset-card,
.section--dark-alt .ckl-asset-card {
  background: var(--navy-alt);
  border-color: var(--navy-border);
}

.ckl-asset-card__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg-light-primary);
  margin-bottom: 6px;
}

.ckl-asset-card__desc {
  font-size: 0.85rem;
  color: var(--fg-light-secondary);
  line-height: 1.6;
}

.section--dark .ckl-asset-card__label { color: var(--fg-dark-primary); }
.section--dark .ckl-asset-card__desc  { color: var(--fg-dark-secondary); }

/* =========================================================
   8. PROCESS STEPS
   ========================================================= */
.ckl-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.ckl-step {
  position: relative;
}

.ckl-step__number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(200, 146, 42, 0.25);
  line-height: 1;
  margin-bottom: 12px;
}

.section--dark .ckl-step__number,
.section--dark-alt .ckl-step__number { color: rgba(200, 146, 42, 0.3); }

.ckl-step__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--fg-light-primary);
  margin-bottom: 10px;
}

.section--dark .ckl-step__title { color: var(--fg-dark-primary); }

.ckl-step__body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg-light-secondary);
}

.section--dark .ckl-step__body { color: var(--fg-dark-secondary); }

/* =========================================================
   9. COMPLIANCE BAND
   ========================================================= */
.ckl-compliance-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ckl-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg-light-primary);
}

.ckl-chip::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-aa-light);
  flex-shrink: 0;
}

.section--dark .ckl-chip {
  border-color: var(--navy-border);
  background: rgba(255,255,255,0.05);
  color: var(--fg-dark-primary);
}

.section--dark .ckl-chip::before { background: var(--gold); }

/* =========================================================
   10. TESTIMONIAL
   ========================================================= */
.ckl-testimonial {
  padding: var(--section-pad) 0;
  text-align: center;
}

.ckl-testimonial__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.ckl-testimonial__quote-mark {
  display: block;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 28px;
  font-family: Georgia, serif;
}

.ckl-testimonial__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  line-height: 1.5;
  color: var(--fg-dark-primary);
  margin-bottom: 28px;
}

.ckl-testimonial__attr {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-dark-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========================================================
   11. CTA BAND
   ========================================================= */
.ckl-cta-band {
  padding: var(--section-pad) 0;
  text-align: center;
  background: var(--navy);
}

.ckl-cta-band__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.ckl-cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--fg-dark-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.ckl-cta-band__sub {
  font-size: 1rem;
  color: var(--fg-dark-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.ckl-cta-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CTA light variant */
.ckl-cta-band--light {
  background: var(--parchment);
}

.ckl-cta-band--light .ckl-cta-band__title {
  color: var(--fg-light-primary);
}

.ckl-cta-band--light .ckl-cta-band__sub {
  color: var(--fg-light-secondary);
}

/* =========================================================
   12. FOOTER
   ========================================================= */
.ckl-footer {
  background: var(--navy);
  padding: 80px 0 0;
}

.ckl-footer__inner {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--navy-border);
}

.ckl-footer__brand {
  display: flex;
  flex-direction: column;
}

.ckl-footer__col {
  display: flex;
  flex-direction: column;
}

.ckl-footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--fg-dark-primary);
  margin-bottom: 12px;
}

.ckl-footer__tagline {
  font-size: 0.88rem;
  color: var(--fg-dark-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 260px;
}

.ckl-footer__contact-item {
  font-size: 0.85rem;
  color: var(--fg-dark-secondary);
  line-height: 1.9;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.ckl-footer__contact-item a {
  color: var(--fg-dark-secondary);
  transition: color var(--trans-fast);
}

.ckl-footer__contact-item a:hover { color: var(--gold); }

.ckl-footer__col-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dark-primary);
  margin-bottom: 20px;
}

.ckl-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ckl-footer__link {
  font-size: 0.88rem;
  color: var(--fg-dark-secondary);
  text-decoration: none;
  transition: color var(--trans-fast);
}

.ckl-footer__link:hover { color: var(--gold); }

.ckl-footer__bottom {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 28px clamp(20px, 4vw, 48px) 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ckl-footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(154, 171, 191, 0.7);
  line-height: 1.65;
  font-style: italic;
}

.ckl-footer__legal-line {
  font-size: 0.82rem;
  color: rgba(154, 171, 191, 0.5);
}

/* =========================================================
   13. COOKIE BANNER
   ========================================================= */
.ckl-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy-alt);
  border-top: 1px solid var(--navy-border);
  padding: 20px clamp(20px, 4vw, 48px);
  display: none;
}

.ckl-cookie-banner.is-visible {
  display: block;
}

.ckl-cookie-banner__inner {
  max-width: var(--col-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ckl-cookie-banner__text {
  flex: 1;
  min-width: 260px;
  font-size: 0.88rem;
  color: var(--fg-dark-secondary);
  line-height: 1.6;
}

.ckl-cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
}

.ckl-cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ckl-cookie-btn--accept {
  padding: 9px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--trans-fast);
}

.ckl-cookie-btn--accept:hover { background: #b37e23; }

.ckl-cookie-btn--essential {
  padding: 9px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
  color: var(--fg-dark-secondary);
  border: 1px solid var(--navy-border);
  border-radius: 4px;
  cursor: pointer;
  transition: color var(--trans-fast), border-color var(--trans-fast);
}

.ckl-cookie-btn--essential:hover {
  color: var(--fg-dark-primary);
  border-color: var(--fg-dark-secondary);
}

body.cookie-visible {
  padding-bottom: 80px;
}

/* =========================================================
   14. SUB-PAGE HERO
   ========================================================= */
.ckl-subhero {
  background: var(--navy);
  padding: 140px 0 80px;
}

.ckl-subhero__inner {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ckl-subhero__inner--centered {
  grid-template-columns: 1fr;
  max-width: 760px;
  text-align: center;
}

.ckl-subhero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.ckl-subhero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.18;
  color: var(--fg-dark-primary);
  margin-bottom: 20px;
}

.ckl-subhero__sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fg-dark-secondary);
  max-width: 540px;
}

.ckl-subhero__inner--centered .ckl-subhero__sub {
  max-width: 100%;
  margin: 0 auto;
}

.ckl-subhero__stat-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ckl-subhero__stat-tile {
  padding: 22px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--navy-border);
  border-radius: 6px;
}

.ckl-subhero__stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.ckl-subhero__stat-label {
  font-size: 0.8rem;
  color: var(--fg-dark-secondary);
}

/* =========================================================
   15. PLATFORM PAGE
   ========================================================= */
.ckl-platform-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ckl-platform-feature--reverse {
  grid-template-columns: 1fr 1fr;
}

.ckl-platform-feature--reverse .ckl-platform-feature__text {
  order: 2;
}

.ckl-platform-feature--reverse .ckl-platform-feature__visual {
  order: 1;
}

.ckl-platform-feature__visual img {
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.ckl-integration-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.ckl-integration-pill {
  padding: 10px 20px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg-light-secondary);
  background: var(--white);
  font-family: var(--font-mono);
}

/* =========================================================
   16. HOW IT WORKS — TIMELINE + FAQ
   ========================================================= */
.ckl-timeline-bar {
  width: 100%;
  overflow-x: auto;
  margin-top: 48px;
}

.ckl-faq {
  max-width: 780px;
  margin: 48px auto 0;
}

.ckl-faq__item {
  border-bottom: 1px solid var(--border-light);
}

.ckl-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--fg-light-primary);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color var(--trans-fast);
}

.ckl-faq__question:hover { color: var(--gold-aa-light); }

.ckl-faq__icon {
  font-size: 1rem;
  color: var(--gold-aa-light);
  flex-shrink: 0;
  transition: transform var(--trans-fast);
}

.ckl-faq__item.is-open .ckl-faq__icon {
  transform: rotate(45deg);
}

.ckl-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.ckl-faq__item.is-open .ckl-faq__answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.ckl-faq__answer p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--fg-light-secondary);
  padding-right: 40px;
}

/* =========================================================
   17. ASSET CLASSES PAGE
   ========================================================= */
.ckl-asset-section {
  padding: var(--section-pad) 0;
}

.ckl-asset-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ckl-deal-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  padding: 24px;
  background: var(--parchment);
  border-radius: 6px;
  border: 1px solid var(--border-light);
}

.section--white .ckl-deal-meta {
  background: var(--parchment);
}

.ckl-deal-meta__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
}

.ckl-deal-meta__key {
  color: var(--fg-light-secondary);
  font-weight: 500;
}

.ckl-deal-meta__value {
  color: var(--fg-light-primary);
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.ckl-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-size: 0.9rem;
}

.ckl-comparison-table th {
  background: var(--navy);
  color: var(--fg-dark-primary);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ckl-comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--fg-light-secondary);
}

.ckl-comparison-table td:first-child {
  color: var(--fg-light-primary);
  font-weight: 600;
}

.ckl-comparison-table tr:nth-child(even) td {
  background: rgba(247,245,241,0.5);
}

.ckl-comparison-table .ckl-mono {
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

/* =========================================================
   18. COMPLIANCE PAGE
   ========================================================= */
.ckl-reg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.ckl-reg-card {
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--white);
}

.ckl-reg-card__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.ckl-reg-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--fg-light-primary);
  margin-bottom: 12px;
}

.ckl-reg-card__body {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--fg-light-secondary);
}

.ckl-reg-card__list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ckl-reg-card__list li {
  font-size: 0.88rem;
  color: var(--fg-light-secondary);
  padding-left: 18px;
  position: relative;
}

.ckl-reg-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-aa-light);
}

/* Audit trail dark panel */
.ckl-audit-panel {
  background: var(--navy);
  border-radius: 8px;
  padding: 32px 28px;
  margin-top: 48px;
}

.ckl-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.ckl-security-item {
  display: flex;
  gap: 14px;
}

.ckl-security-item__icon {
  font-size: 1.2rem;
  color: var(--gold-aa-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.ckl-security-item__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg-light-primary);
  margin-bottom: 4px;
}

.ckl-security-item__body {
  font-size: 0.88rem;
  color: var(--fg-light-secondary);
  line-height: 1.65;
}

/* =========================================================
   19. ABOUT PAGE
   ========================================================= */
.ckl-founder-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px;
  background: var(--parchment);
  border: 1px solid var(--border-light);
  border-radius: 8px;
}

.ckl-founder-card__img {
  width: 200px;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.ckl-founder-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--fg-light-primary);
  margin-bottom: 4px;
}

.ckl-founder-card__role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-aa-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ckl-founder-card__bio {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--fg-light-secondary);
  max-width: 520px;
}

.ckl-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.ckl-team-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  text-align: center;
}

.ckl-team-card__img {
  width: 100px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 auto 16px;
}

.ckl-team-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-light-primary);
  margin-bottom: 4px;
}

.ckl-team-card__role {
  font-size: 0.82rem;
  color: var(--gold-aa-light);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ckl-team-card__bio {
  font-size: 0.88rem;
  color: var(--fg-light-secondary);
  line-height: 1.65;
}

.ckl-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.ckl-value-card {
  padding: 32px 24px;
  border-top: 3px solid var(--gold-aa-light);
}

.ckl-value-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--fg-light-primary);
  margin-bottom: 10px;
}

.ckl-value-card__body {
  font-size: 0.92rem;
  color: var(--fg-light-secondary);
  line-height: 1.7;
}

.ckl-funding-band {
  padding: var(--section-pad) 0;
  background: var(--navy-alt);
  text-align: center;
}

.ckl-funding-band__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.ckl-funding-stat {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.ckl-funding-label {
  font-size: 0.95rem;
  color: var(--fg-dark-secondary);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================================================
   20. CONTACT PAGE
   ========================================================= */
.ckl-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: start;
}

.ckl-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ckl-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ckl-form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-light-primary);
  letter-spacing: 0.02em;
}

.ckl-form-input,
.ckl-form-textarea,
.ckl-form-select {
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg-light-primary);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  outline: none;
}

.ckl-form-input:focus,
.ckl-form-textarea:focus,
.ckl-form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(14,30,58,0.1);
}

.ckl-form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.ckl-contact-detail-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ckl-contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ckl-contact-detail__icon {
  font-size: 1rem;
  color: var(--gold-aa-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.ckl-contact-detail__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-light-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ckl-contact-detail__value {
  font-size: 0.95rem;
  color: var(--fg-light-primary);
  line-height: 1.6;
}

.ckl-contact-detail__value a {
  color: var(--gold-aa-light);
  text-decoration: none;
  transition: color var(--trans-fast);
}

.ckl-contact-detail__value a:hover { color: var(--navy); }

/* =========================================================
   21. LOGIN / AUTH PAGES
   ========================================================= */
.ckl-auth-page {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px clamp(16px, 4vw, 48px);
}

.ckl-auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: 8px;
  padding: 48px 40px;
  box-shadow: 0 24px 64px rgba(14,30,58,0.24);
}

.ckl-auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.ckl-auth-logo img {
  height: 36px;
  width: auto;
}

.ckl-auth-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--fg-light-primary);
  text-align: center;
  margin-bottom: 6px;
}

.ckl-auth-sub {
  font-size: 0.88rem;
  color: var(--fg-light-secondary);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
}

.ckl-auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ckl-auth-links {
  margin-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-light-secondary);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ckl-auth-links a {
  color: var(--gold-aa-light);
  text-decoration: none;
  font-weight: 500;
}

.ckl-auth-links a:hover { text-decoration: underline; }

.ckl-auth-note {
  margin-top: 20px;
  padding: 14px;
  background: var(--parchment);
  border-radius: 4px;
  font-size: 0.82rem;
  color: var(--fg-light-secondary);
  text-align: center;
  line-height: 1.55;
}

.ckl-auth-back {
  margin-top: 24px;
  text-align: center;
}

.ckl-auth-back a {
  font-size: 0.85rem;
  color: rgba(243,239,231,0.55);
  text-decoration: none;
  transition: color var(--trans-fast);
}

.ckl-auth-back a:hover { color: var(--fg-dark-primary); }

/* =========================================================
   22. BLOG / INSIGHTS
   ========================================================= */
.ckl-insights-hero {
  background: var(--navy);
  padding: 140px 0 80px;
}

.ckl-insights-hero__inner {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ckl-insights-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ckl-insights-meta-tile {
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--navy-border);
  border-radius: 6px;
}

.ckl-insights-meta-tile__value {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.ckl-insights-meta-tile__label {
  font-size: 0.78rem;
  color: var(--fg-dark-secondary);
}

.ckl-articles-grid {
  padding: var(--section-pad) 0;
  background: var(--parchment);
}

.ckl-articles-grid__inner {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.ckl-articles-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.ckl-article-card {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--trans-med);
}

.ckl-article-card:hover {
  box-shadow: 0 8px 32px rgba(14,30,58,0.1);
}

.ckl-article-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
}

.ckl-article-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.ckl-article-card--featured .ckl-article-card__img {
  width: 45%;
  height: auto;
  aspect-ratio: auto;
}

.ckl-article-card__body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ckl-article-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ckl-article-card__category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-aa-light);
  padding: 3px 10px;
  border: 1px solid var(--border-light);
  border-radius: 3px;
}

.ckl-article-card__date {
  font-size: 0.8rem;
  color: var(--fg-light-secondary);
}

.ckl-article-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--fg-light-primary);
  margin-bottom: 10px;
}

.ckl-article-card--featured .ckl-article-card__title {
  font-size: 1.5rem;
}

.ckl-article-card__excerpt {
  font-size: 0.9rem;
  color: var(--fg-light-secondary);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.ckl-article-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-aa-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--trans-fast);
}

.ckl-article-card__link:hover { gap: 8px; }

/* Blog article page */
.ckl-article-hero {
  background: var(--navy);
  padding: 140px 0 64px;
}

.ckl-article-hero__inner {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.ckl-article-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.ckl-article-hero__back {
  font-size: 0.82rem;
  color: var(--fg-dark-secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--trans-fast);
}

.ckl-article-hero__back:hover { color: var(--gold); }

.ckl-article-hero__category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 3px 10px;
  border: 1px solid rgba(200,146,42,0.4);
  border-radius: 3px;
}

.ckl-article-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--fg-dark-primary);
  margin-bottom: 16px;
  max-width: 800px;
}

.ckl-article-hero__meta {
  font-size: 0.85rem;
  color: var(--fg-dark-secondary);
  display: flex;
  align-items: center;
  gap: 14px;
}

.ckl-article-body {
  padding: 64px 0 var(--section-pad);
  background: var(--white);
}

.ckl-article-body__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-light-secondary);
}

.ckl-article-body__inner h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--fg-light-primary);
  margin: 48px 0 16px;
}

.ckl-article-body__inner p {
  margin-bottom: 20px;
}

.ckl-article-body__cover {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 40px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.ckl-related-articles {
  background: var(--parchment);
  padding: var(--section-pad) 0;
}

.ckl-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}

/* =========================================================
   23. STATUS PAGE
   ========================================================= */

/* Hero status banner */
.ckl-status-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 24px;
}

.ckl-status-banner--green {
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.3);
  color: #0f9a6b;
}

.ckl-status-banner--green i { color: #10b981; }

/* Grid section */
.ckl-status-grid-section {
  padding: var(--section-pad) 0;
}

/* Services list */
.ckl-status-services {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

.ckl-status-service {
  padding: 28px 28px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.ckl-status-service:last-child { border-bottom: none; }

.ckl-status-service__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.ckl-status-service__info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ckl-status-service__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-light-primary);
}

.ckl-status-service__desc {
  font-size: 0.88rem;
  color: var(--fg-light-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
  max-width: 640px;
}

/* Status dot */
.ckl-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ckl-status-dot--green {
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
  animation: ckl-status-pulse 2.5s ease-in-out infinite;
}

@keyframes ckl-status-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.2); }
  50% { box-shadow: 0 0 0 5px rgba(16,185,129,0.1); }
}

/* Status badge variants */
.ckl-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.ckl-status-badge--green {
  background: rgba(52,211,153,0.1);
  color: #0f9a6b;
  border: 1px solid rgba(52,211,153,0.3);
}

/* Uptime bar */
.ckl-status-uptime {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ckl-status-uptime__label {
  font-size: 0.78rem;
  color: var(--fg-light-secondary);
  white-space: nowrap;
  min-width: 120px;
}

.ckl-status-uptime__bar {
  flex: 1;
  height: 6px;
  background: rgba(14,30,58,0.08);
  border-radius: 3px;
  overflow: hidden;
}

.ckl-status-uptime__fill {
  height: 100%;
  background: #10b981;
  border-radius: 3px;
}

.ckl-status-uptime__pct {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: #0f9a6b;
  font-weight: 600;
  min-width: 52px;
  text-align: right;
}

/* History bars */
.ckl-status-history {
  margin-top: 4px;
}

.ckl-status-history__inner {
  display: flex;
  gap: 2px;
  align-items: stretch;
  height: 24px;
}

.ckl-history-bar {
  flex: 1;
  border-radius: 2px;
  display: block;
  cursor: default;
  transition: opacity var(--trans-fast);
  position: relative;
}

.ckl-history-bar:hover { opacity: 0.75; }

.ckl-history-bar--green { background: #10b981; }
.ckl-history-bar--yellow { background: #f59e0b; }
.ckl-history-bar--red { background: #ef4444; }

.ckl-status-history__labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--fg-light-secondary);
  margin-top: 4px;
}

/* Incident log */
.ckl-status-incident-log {
  margin-top: 56px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

.ckl-status-log__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--fg-light-primary);
  padding: 24px 28px;
  background: var(--parchment);
  border-bottom: 1px solid var(--border-light);
}

.ckl-incident-entry {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 24px 28px;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.ckl-incident-entry:last-child { border-bottom: none; }

.ckl-incident-entry__date {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--fg-light-secondary);
  padding-top: 2px;
  white-space: nowrap;
}

.ckl-incident-entry__body strong {
  font-size: 0.95rem;
  color: var(--fg-light-primary);
  display: block;
  margin-bottom: 6px;
}

.ckl-incident-entry__body p {
  font-size: 0.88rem;
  color: var(--fg-light-secondary);
  line-height: 1.65;
  margin-bottom: 10px;
}

.ckl-incident-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ckl-incident-tag--resolved {
  background: rgba(52,211,153,0.1);
  color: #0f9a6b;
  border: 1px solid rgba(52,211,153,0.25);
}

/* Status subscribe band */
.ckl-status-subscribe { padding: var(--section-pad) 0; }

.ckl-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f9a6b;
  margin-top: 16px;
}

.ckl-status-indicator::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: ckl-pulse 2s infinite;
}

@keyframes ckl-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.ckl-status-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

.ckl-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.ckl-status-row:last-child { border-bottom: none; }

.ckl-status-row__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg-light-primary);
}

.ckl-status-row__sub {
  font-size: 0.82rem;
  color: var(--fg-light-secondary);
  margin-top: 2px;
}

.ckl-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.ckl-status-badge--operational {
  background: rgba(52, 211, 153, 0.1);
  color: #0f9a6b;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.ckl-status-badge--operational::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
}

.ckl-uptime-label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--fg-light-secondary);
}

/* =========================================================
   24. 404 PAGE
   ========================================================= */

/* Standalone 404 page (no nav/footer) */
.ckl-404-page {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.ckl-404-logo {
  position: absolute;
  top: 32px;
  left: clamp(24px, 8vw, 80px);
}

.ckl-404-logo img {
  height: 32px;
  width: auto;
}

.ckl-404-code {
  font-family: var(--font-mono);
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  opacity: 0.9;
}

.ckl-404-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--fg-dark-primary);
  margin: 0 0 16px;
}

.ckl-404-sub {
  font-size: 1.05rem;
  color: rgba(240,235,220,0.7);
  max-width: 440px;
  line-height: 1.65;
  margin: 0 0 40px;
}

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

.ckl-404-back {
  margin-top: 56px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(200,146,42,0.5);
  letter-spacing: 0.08em;
}

.ckl-404-nav {
  margin-top: 24px;
}

.ckl-404 {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px clamp(20px, 4vw, 48px);
}

.ckl-404__number {
  font-family: var(--font-mono);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 700;
  color: rgba(200,146,42,0.18);
  line-height: 1;
  margin-bottom: 24px;
}

.ckl-404__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--fg-dark-primary);
  margin-bottom: 16px;
}

.ckl-404__sub {
  font-size: 1rem;
  color: var(--fg-dark-secondary);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* =========================================================
   25. FADE-IN ANIMATION
   ========================================================= */
.ckl-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.ckl-fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Failsafe: if JS fails, reveal after 1.2s */
@keyframes ckl-reveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.ckl-fade-in {
  animation: ckl-reveal 0.6s ease 1.2s both;
}

/* =========================================================
   26. LEGAL PAGES
   ========================================================= */

/* Legal hero (reuses subhero pattern but centered) */
.ckl-legal-hero {
  background: var(--navy);
  padding: 140px 0 64px;
}

.ckl-legal-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* CCPA highlight box */
.ckl-legal-highlight {
  background: rgba(200,146,42,0.07);
  border: 1px solid rgba(122,87,25,0.25);
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 0.92rem;
  color: var(--fg-light-primary);
  margin-bottom: 32px;
  line-height: 1.65;
}

.ckl-legal-highlight a { color: var(--gold-aa-light); }
.ckl-legal-highlight strong { color: var(--fg-light-primary); }

/* DNS banner */
.ckl-legal-dns-banner {
  background: var(--navy);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ckl-legal-dns-banner__text {
  flex: 1;
  min-width: 200px;
}

.ckl-legal-dns-banner__text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--fg-dark-primary);
  margin-bottom: 4px;
}

.ckl-legal-dns-banner__text p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--fg-dark-secondary);
}

.ckl-legal-dns-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--trans-fast);
}

.ckl-legal-dns-btn:hover { background: #b37e23; }

/* Legal table */
.ckl-legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.88rem;
}

.ckl-legal-table th {
  background: var(--parchment);
  padding: 10px 14px;
  font-weight: 600;
  color: var(--fg-light-primary);
  border: 1px solid var(--border-light);
  text-align: left;
}

.ckl-legal-table td {
  padding: 9px 14px;
  border: 1px solid var(--border-light);
  vertical-align: top;
  color: var(--fg-light-secondary);
  line-height: 1.55;
}

.ckl-legal-table tr:nth-child(even) td { background: rgba(247,245,241,0.5); }

.ckl-legal-table code {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  background: rgba(14,30,58,0.06);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--navy);
}

/* Rights grid */
.ckl-legal-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0 24px;
}

.ckl-legal-right-card {
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 16px 18px;
  background: var(--parchment);
}

.ckl-legal-right-card h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--fg-light-primary);
  margin: 0 0 8px;
}

.ckl-legal-right-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--fg-light-secondary);
  line-height: 1.6;
}

.ckl-legal-body {
  padding: 64px 0 var(--section-pad);
  background: var(--white);
}

.ckl-legal-body__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--fg-light-secondary);
}

.ckl-legal-body__inner h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--fg-light-primary);
  margin: 40px 0 12px;
  padding-left: 14px;
  border-left: 3px solid var(--gold-aa-light);
}

.ckl-legal-body__inner h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-light-primary);
  margin: 28px 0 8px;
}

.ckl-legal-body__inner p { margin-bottom: 16px; }

.ckl-legal-body__inner ul,
.ckl-legal-body__inner ol {
  margin: 0 0 16px 24px;
}

.ckl-legal-body__inner li { margin-bottom: 6px; }

.ckl-legal-body__inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.88rem;
}

.ckl-legal-body__inner th {
  background: var(--parchment);
  padding: 10px 14px;
  font-weight: 600;
  color: var(--fg-light-primary);
  border: 1px solid var(--border-light);
  text-align: left;
}

.ckl-legal-body__inner td {
  padding: 9px 14px;
  border: 1px solid var(--border-light);
  vertical-align: top;
}

.ckl-legal-body__inner tr:nth-child(even) td { background: rgba(247,245,241,0.5); }

.ckl-legal-body__inner a { color: var(--gold-aa-light); }
.ckl-legal-body__inner a:hover { text-decoration: underline; }

/* =========================================================
   27. RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .ckl-hero__inner,
  .ckl-split-section,
  .ckl-platform-feature,
  .ckl-asset-section__layout { grid-template-columns: 1fr; gap: 40px; }

  .ckl-hero { min-height: auto; }

  .ckl-platform-feature--reverse .ckl-platform-feature__text { order: 1; }
  .ckl-platform-feature--reverse .ckl-platform-feature__visual { order: 2; }

  .ckl-cards-grid { grid-template-columns: 1fr 1fr; }

  .ckl-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .ckl-subhero__inner {
    grid-template-columns: 1fr;
  }

  .ckl-reg-split { grid-template-columns: 1fr; }

  .ckl-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  .ckl-nav__links,
  .ckl-nav__actions { display: none; }

  .ckl-nav__hamburger { display: flex; }

  .ckl-trust-band__inner { grid-template-columns: repeat(2, 1fr); }

  .ckl-cards-grid { grid-template-columns: 1fr; }

  .ckl-process-steps { grid-template-columns: 1fr; }

  .ckl-articles-layout { grid-template-columns: 1fr; }

  .ckl-article-card--featured { flex-direction: column; }

  .ckl-article-card--featured .ckl-article-card__img { width: 100%; }

  .ckl-footer__inner { grid-template-columns: 1fr; }

  .ckl-team-grid { grid-template-columns: 1fr 1fr; }

  .ckl-values-grid { grid-template-columns: 1fr; }

  .ckl-founder-card { flex-direction: column; }

  .ckl-founder-card__img { width: 100%; height: auto; max-height: 280px; }

  .ckl-reg-split { grid-template-columns: 1fr; }

  .ckl-auth-card { padding: 36px 24px; }

  .ckl-security-grid { grid-template-columns: 1fr; }

  .ckl-insights-hero__inner { grid-template-columns: 1fr; }

  .ckl-related-grid { grid-template-columns: 1fr; }

  .ckl-subhero__stat-tiles { grid-template-columns: 1fr 1fr; }

  .ckl-incident-entry { grid-template-columns: 1fr; gap: 8px; }

  .ckl-legal-rights-grid { grid-template-columns: 1fr; }

  .ckl-legal-dns-banner { flex-direction: column; }
}

@media (max-width: 480px) {
  .ckl-trust-band__inner { grid-template-columns: 1fr 1fr; }
  .ckl-team-grid { grid-template-columns: 1fr; }
  .ckl-cta-band__actions { flex-direction: column; }
  .ckl-hero__actions { flex-direction: column; }
  .ckl-asset-grid { grid-template-columns: 1fr; }
  .ckl-subhero__stat-tiles { grid-template-columns: 1fr; }
}
