/* ==========================================================================
   Circulyft — clft.css
   Brand prefix: clft
   Palette:
     bg-depth:          #0D1F1A  (very dark forest)
     bg-depth-alt:      #122218  (dark forest alt)
     bg-surface:        #F5F4EF  (warm off-white)
     bg-white:          #FFFFFF
     bg-rule:           #1E3B2F  (deep forest divider)
     green-primary:     #1A6B45
     green-accent:      #2A8A58
     green-bright:      #3DAA70
     green-muted:       #4F7A62
     ink-primary-on-dark:   #F0EDE4
     ink-secondary-on-dark: #9DB5A8
     ink-primary-on-light:  #0D1F1A
     ink-secondary-on-light:#4F6B5A
     ink-muted-on-light:    #7A8F84
     verified-amber:    #C8914A
     verified-amber-light: #E8B56D
     steel-line:        #D1D8D3
     data-teal:         #2B7A78
   ========================================================================== */

/* ------------------------------------------------------------------
   1. RESET + BASE
   ------------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #0D1F1A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* ------------------------------------------------------------------
   2. TYPOGRAPHY SCALE
   ------------------------------------------------------------------ */
.clft-display {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.clft-h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.clft-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.clft-h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.clft-body {
  font-size: 1rem;
  line-height: 1.7;
}

.clft-small {
  font-size: 0.875rem;
  line-height: 1.5;
}

.clft-mono {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 1.125rem;
  font-weight: 500;
}

.clft-mono-sm {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.875rem;
  font-weight: 500;
}

/* ------------------------------------------------------------------
   3. LAYOUT CONTAINERS
   ------------------------------------------------------------------ */
.clft-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-section {
  padding: 6rem 0;
}

.clft-section--sm {
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .clft-section {
    padding: 4rem 0;
  }
  .clft-section--sm {
    padding: 2.5rem 0;
  }
}

/* Section themes */
.clft-section--dark {
  background: #0D1F1A;
  color: #F0EDE4;
}

.clft-section--dark-alt {
  background: #122218;
  color: #F0EDE4;
}

.clft-section--light {
  background: #FFFFFF;
  color: #0D1F1A;
}

.clft-section--light-alt {
  background: #F5F4EF;
  color: #0D1F1A;
}

.clft-section--brand {
  background: #1A6B45;
  color: #F0EDE4;
}

/* ------------------------------------------------------------------
   4. BUTTONS
   ------------------------------------------------------------------ */
.clft-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.8125rem 1.625rem;
  border-radius: 4px;
  transition: background 220ms cubic-bezier(0.16,1,0.3,1), color 220ms cubic-bezier(0.16,1,0.3,1), border-color 220ms cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.clft-btn--primary {
  background: #1A6B45;
  color: #FFFFFF;
  border: 2px solid #1A6B45;
}

.clft-btn--primary:hover {
  background: #2A8A58;
  border-color: #2A8A58;
  color: #FFFFFF;
}

.clft-btn--ghost-dark {
  background: transparent;
  color: #F0EDE4;
  border: 2px solid rgba(240,237,228,0.45);
}

.clft-btn--ghost-dark:hover {
  background: rgba(240,237,228,0.08);
  border-color: rgba(240,237,228,0.7);
  color: #F0EDE4;
}

.clft-btn--outline-dark {
  background: transparent;
  color: #1A6B45;
  border: 2px solid #1A6B45;
}

.clft-btn--outline-dark:hover {
  background: #1A6B45;
  color: #FFFFFF;
}

.clft-btn--ghost-light {
  background: transparent;
  color: #0D1F1A;
  border: 2px solid rgba(13,31,26,0.3);
}

.clft-btn--ghost-light:hover {
  background: rgba(13,31,26,0.06);
  border-color: rgba(13,31,26,0.55);
  color: #0D1F1A;
}

.clft-btn--sm {
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}

.clft-btn--lg {
  font-size: 1rem;
  padding: 1rem 2rem;
}

/* ------------------------------------------------------------------
   5. NAVIGATION
   ------------------------------------------------------------------ */
.clft-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 220ms cubic-bezier(0.16,1,0.3,1), box-shadow 220ms cubic-bezier(0.16,1,0.3,1);
}

.clft-nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.clft-nav__logo-img {
  height: 32px;
  width: auto;
}

.clft-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.clft-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  transition: color 200ms, background 200ms;
}

.clft-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}

.clft-nav__signin {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  transition: color 200ms;
}

.clft-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.clft-nav__hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: transform 220ms cubic-bezier(0.16,1,0.3,1), opacity 220ms;
}

.clft-nav__hamburger--open .clft-nav__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.clft-nav__hamburger--open .clft-nav__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.clft-nav__hamburger--open .clft-nav__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.clft-nav__mobile {
  display: none;
  flex-direction: column;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
  gap: 0.25rem;
}

.clft-nav__mobile--open {
  display: flex;
}

.clft-nav__mobile-link {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.625rem 0.75rem;
  border-radius: 4px;
  transition: background 200ms;
}

.clft-nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}

/* Dark-top page nav: transparent on scroll=0, dark on scrolled */
.clft-page--dark-top .clft-nav {
  background: transparent;
}

.clft-page--dark-top .clft-nav__link {
  color: #F0EDE4;
}

.clft-page--dark-top .clft-nav__link:hover {
  background: rgba(240,237,228,0.08);
  color: #F0EDE4;
}

.clft-page--dark-top .clft-nav__signin {
  color: #9DB5A8;
}

.clft-page--dark-top .clft-nav__signin:hover {
  color: #F0EDE4;
}

.clft-page--dark-top .clft-nav__hamburger-bar {
  background: #F0EDE4;
}

.clft-page--dark-top .clft-nav__mobile {
  background: #0D1F1A;
}

.clft-page--dark-top .clft-nav__mobile-link {
  color: #F0EDE4;
}

.clft-page--dark-top .clft-nav__mobile-link:hover {
  background: rgba(240,237,228,0.08);
}

.clft-page--dark-top .clft-nav__mobile-actions {
  border-top: 1px solid #1E3B2F;
}

.clft-page--dark-top .clft-nav--scrolled {
  background: rgba(13,31,26,0.96);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.clft-page--dark-top .clft-nav--scrolled .clft-nav__link {
  color: #F0EDE4;
}

.clft-page--dark-top .clft-nav--scrolled .clft-nav__signin {
  color: #9DB5A8;
}

/* Light-top page nav */
.clft-page--light-top .clft-nav {
  background: #FFFFFF;
  box-shadow: 0 1px 0 #D1D8D3;
}

.clft-page--light-top .clft-nav__link {
  color: #0D1F1A;
}

.clft-page--light-top .clft-nav__link:hover {
  background: #F5F4EF;
  color: #1A6B45;
}

.clft-page--light-top .clft-nav__signin {
  color: #4F6B5A;
}

.clft-page--light-top .clft-nav__signin:hover {
  color: #1A6B45;
}

.clft-page--light-top .clft-nav__hamburger-bar {
  background: #0D1F1A;
}

.clft-page--light-top .clft-nav__mobile {
  background: #FFFFFF;
  border-top: 1px solid #D1D8D3;
}

.clft-page--light-top .clft-nav__mobile-link {
  color: #0D1F1A;
}

.clft-page--light-top .clft-nav__mobile-link:hover {
  background: #F5F4EF;
}

.clft-page--light-top .clft-nav__mobile-actions {
  border-top: 1px solid #D1D8D3;
}

.clft-page--light-top .clft-nav--scrolled {
  background: #FFFFFF;
  box-shadow: 0 1px 0 #D1D8D3;
}

/* Nav button overrides per theme */
.clft-page--dark-top .clft-nav .clft-btn--ghost-dark {
  color: #F0EDE4;
  border-color: rgba(240,237,228,0.45);
}

.clft-page--dark-top .clft-nav .clft-btn--ghost-dark:hover {
  border-color: rgba(240,237,228,0.7);
  color: #F0EDE4;
}

.clft-page--light-top .clft-nav .clft-btn--ghost-dark {
  color: #0D1F1A;
  border-color: rgba(13,31,26,0.3);
}

.clft-page--light-top .clft-nav .clft-btn--ghost-dark:hover {
  background: rgba(13,31,26,0.05);
  border-color: rgba(13,31,26,0.55);
  color: #0D1F1A;
}

@media (max-width: 900px) {
  .clft-nav__links,
  .clft-nav__actions {
    display: none;
  }

  .clft-nav__hamburger {
    display: flex;
  }

  .clft-nav__inner {
    height: 60px;
  }
}

/* ------------------------------------------------------------------
   6. FOOTER
   ------------------------------------------------------------------ */
.clft-footer {
  background: #0D1F1A;
  color: #F0EDE4;
  padding: 4rem 0 2rem;
}

.clft-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #1E3B2F;
}

.clft-footer__brand-tagline {
  font-size: 0.875rem;
  color: #9DB5A8;
  line-height: 1.6;
  margin-top: 0.75rem;
}

.clft-footer__col-heading {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9DB5A8;
  margin-bottom: 1rem;
}

.clft-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.clft-footer__col-link {
  font-size: 0.9375rem;
  color: #F0EDE4;
  transition: color 200ms;
  text-decoration: none;
}

.clft-footer__col-link:hover {
  color: #3DAA70;
}

.clft-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}

.clft-footer__copy {
  font-size: 0.875rem;
  color: #9DB5A8;
}

.clft-footer__legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.clft-footer__legal-link {
  font-size: 0.875rem;
  color: #9DB5A8;
  text-decoration: none;
  transition: color 200ms;
}

.clft-footer__legal-link:hover {
  color: #F0EDE4;
}

@media (max-width: 900px) {
  .clft-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .clft-footer__top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .clft-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ------------------------------------------------------------------
   7. HERO — INDEX.HTML
   ------------------------------------------------------------------ */
.clft-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0D1F1A;
  padding-top: 68px;
  padding-bottom: 4rem;
}

.clft-hero__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem clamp(1.25rem, 4vw, 2.5rem);
}

.clft-hero__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: #F0EDE4;
  margin-bottom: 1.5rem;
}

.clft-hero__headline em {
  font-style: normal;
  color: #3DAA70;
}

.clft-hero__subhead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #9DB5A8;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.clft-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.clft-hero__visual {
  position: relative;
}

@media (max-width: 900px) {
  .clft-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3rem;
  }

  .clft-hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .clft-hero__visual {
    order: -1;
  }
}

/* Hero dashboard SVG wrapper */
.clft-dashboard-mock {
  background: #122218;
  border: 1px solid #1E3B2F;
  border-radius: 10px;
  padding: 1.75rem;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  overflow: hidden;
}

.clft-dashboard-mock__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #1E3B2F;
}

.clft-dashboard-mock__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #9DB5A8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-dashboard-mock__badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(200,145,74,0.15);
  border: 1px solid rgba(200,145,74,0.35);
  border-radius: 4px;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #E8B56D;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-dashboard-mock__badge-dot {
  width: 6px;
  height: 6px;
  background: #E8B56D;
  border-radius: 50%;
}

.clft-scope-row {
  margin-bottom: 1.125rem;
}

.clft-scope-row__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.375rem;
}

.clft-scope-row__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #9DB5A8;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  letter-spacing: 0.02em;
}

.clft-scope-row__value {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #F0EDE4;
}

.clft-scope-row__bar-track {
  height: 8px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
}

.clft-scope-row__bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s cubic-bezier(0.16,1,0.3,1);
}

.clft-scope-row__bar-fill--s1 {
  background: #3DAA70;
  width: 38%;
}

.clft-scope-row__bar-fill--s2 {
  background: #2B7A78;
  width: 22%;
}

.clft-scope-row__bar-fill--s3 {
  background: #C8914A;
  width: 70%;
}

.clft-dashboard-mock__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid #1E3B2F;
}

.clft-dashboard-mock__total-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #9DB5A8;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-dashboard-mock__total-value {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 1.25rem;
  font-weight: 500;
  color: #F0EDE4;
}

.clft-dashboard-mock__footer {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.clft-dashboard-mock__source-note {
  font-size: 0.6875rem;
  color: #4F7A62;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-dashboard-mock__trail-pill {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  color: #3DAA70;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ------------------------------------------------------------------
   8. PROBLEM STRIP
   ------------------------------------------------------------------ */
.clft-problem-strip {
  background: #122218;
  padding: 4rem 0;
}

.clft-problem-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-stat-block {
  text-align: center;
  padding: 1.5rem;
  border-left: 1px solid #1E3B2F;
}

.clft-stat-block:first-child {
  border-left: none;
}

.clft-stat-block__number {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: #F0EDE4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.clft-stat-block__label {
  font-size: 0.9375rem;
  color: #9DB5A8;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .clft-problem-strip__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .clft-stat-block {
    border-left: none;
    border-top: 1px solid #1E3B2F;
    padding: 1.25rem 0;
  }

  .clft-stat-block:first-child {
    border-top: none;
  }
}

/* ------------------------------------------------------------------
   9. HOW IT WORKS
   ------------------------------------------------------------------ */
.clft-steps {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-steps__heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.clft-steps__heading .clft-h2 {
  color: #0D1F1A;
  margin-bottom: 0.75rem;
}

.clft-steps__heading .clft-body {
  color: #4F6B5A;
  max-width: 560px;
  margin: 0 auto;
}

.clft-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.clft-steps__grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(16.66% + 1.5rem);
  right: calc(16.66% + 1.5rem);
  height: 1px;
  background: linear-gradient(90deg, #1A6B45 0%, #2A8A58 50%, #1A6B45 100%);
}

.clft-step {
  padding: 0 2rem;
  position: relative;
}

.clft-step__number-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.clft-step__number {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFFFFF;
  background: #1A6B45;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 0 1px #1A6B45;
  position: relative;
  z-index: 1;
}

.clft-step__label {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0D1F1A;
  text-align: center;
  margin-bottom: 0.75rem;
}

.clft-step__desc {
  font-size: 0.9375rem;
  color: #4F6B5A;
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 768px) {
  .clft-steps__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .clft-steps__grid::before {
    display: none;
  }

  .clft-step {
    padding: 0;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    text-align: left;
  }

  .clft-step__number-wrap {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .clft-step__number {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }

  .clft-step__label,
  .clft-step__desc {
    text-align: left;
  }
}

/* ------------------------------------------------------------------
   10. SCOPE BREAKDOWN
   ------------------------------------------------------------------ */
.clft-scope-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-scope-col {
  background: #FFFFFF;
  border: 1px solid #D1D8D3;
  border-radius: 6px;
  padding: 2rem;
}

.clft-scope-col__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 3px;
  margin-bottom: 1rem;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
}

.clft-scope-col__tag--s1 {
  background: rgba(61,170,112,0.12);
  color: #1A6B45;
}

.clft-scope-col__tag--s2 {
  background: rgba(43,122,120,0.12);
  color: #1D5756;
}

.clft-scope-col__tag--s3 {
  background: rgba(200,145,74,0.12);
  color: #8B5E24;
}

.clft-scope-col__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0D1F1A;
  margin-bottom: 0.5rem;
}

.clft-scope-col__sub {
  font-size: 0.875rem;
  color: #7A8F84;
  margin-bottom: 1.25rem;
}

.clft-scope-col__items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.clft-scope-col__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #0D1F1A;
}

.clft-scope-col__item-dot {
  width: 6px;
  height: 6px;
  background: #3DAA70;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55em;
}

.clft-scope-col__item-dot--teal {
  background: #2B7A78;
}

.clft-scope-col__item-dot--amber {
  background: #C8914A;
}

.clft-scope-col__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  color: #4F6B5A;
  border-top: 1px solid #D1D8D3;
  padding-top: 1rem;
  margin-top: auto;
}

.clft-scope-cols-heading {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-scope-cols-heading .clft-h2 {
  color: #0D1F1A;
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .clft-scope-cols {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

/* ------------------------------------------------------------------
   11. DATA SOURCES / INTEGRATIONS STRIP
   ------------------------------------------------------------------ */
.clft-int-strip {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-int-strip__heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.clft-int-strip__heading .clft-h2 {
  color: #0D1F1A;
  margin-bottom: 0.5rem;
}

.clft-int-strip__heading .clft-body {
  color: #4F6B5A;
}

.clft-int-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.clft-int-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  background: #F5F4EF;
  border: 1px solid #D1D8D3;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #0D1F1A;
  transition: border-color 200ms, background 200ms;
}

.clft-int-pill:hover {
  border-color: #1A6B45;
  background: rgba(26,107,69,0.04);
}

.clft-int-pill__icon {
  color: #1A6B45;
  font-size: 0.875rem;
}

.clft-int-strip__cta {
  text-align: center;
}

/* ------------------------------------------------------------------
   12. CSRD CALLOUT (dark section)
   ------------------------------------------------------------------ */
.clft-csrd-callout {
  background: #0D1F1A;
  padding: 6rem 0;
}

.clft-csrd-callout__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}

.clft-csrd-callout__eyebrow {
  display: inline-block;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3DAA70;
  margin-bottom: 1.25rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(61,170,112,0.3);
  border-radius: 3px;
}

.clft-csrd-callout__heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #F0EDE4;
  margin-bottom: 1.25rem;
}

.clft-csrd-callout__body {
  font-size: 1rem;
  line-height: 1.75;
  color: #9DB5A8;
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ------------------------------------------------------------------
   13. TESTIMONIALS
   ------------------------------------------------------------------ */
.clft-testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-testimonials__heading {
  text-align: center;
  margin-bottom: 3rem;
}

.clft-testimonials__heading .clft-h2 {
  color: #0D1F1A;
}

.clft-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.clft-testimonial-card {
  background: #F5F4EF;
  border: 1px solid #D1D8D3;
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.clft-testimonial-card__quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  font-weight: 300;
  line-height: 1.6;
  color: #0D1F1A;
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.clft-testimonial-card__attribution {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.clft-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-avatar--green {
  background: #1A6B45;
  color: #F0EDE4;
}

.clft-avatar--teal {
  background: #2B7A78;
  color: #F0EDE4;
}

.clft-testimonial-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0D1F1A;
}

.clft-testimonial-card__role {
  font-size: 0.875rem;
  color: #7A8F84;
}

@media (max-width: 768px) {
  .clft-testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------
   14. BOTTOM CTA
   ------------------------------------------------------------------ */
.clft-cta-section {
  padding: 6rem 0;
}

.clft-cta-section__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}

.clft-cta-section--dark {
  background: #1A6B45;
}

.clft-cta-section--dark .clft-cta-section__heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: #F0EDE4;
  margin-bottom: 0.75rem;
}

.clft-cta-section--dark .clft-cta-section__sub {
  font-size: 1rem;
  color: rgba(240,237,228,0.75);
  margin-bottom: 2rem;
  line-height: 1.65;
}

/* On brand-green CTA section, primary button should use white bg to stand out */
.clft-cta-section--dark .clft-btn--primary {
  background: #F0EDE4;
  color: #0D1F1A;
  border-color: #F0EDE4;
}

.clft-cta-section--dark .clft-btn--primary:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #0D1F1A;
}

/* ------------------------------------------------------------------
   15. SECTION HEADING PATTERN (reusable)
   ------------------------------------------------------------------ */
.clft-section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.clft-section-head--left {
  text-align: left;
}

.clft-section-head__eyebrow {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A6B45;
  margin-bottom: 0.75rem;
  display: block;
}

.clft-section--dark .clft-section-head__eyebrow {
  color: #3DAA70;
}

.clft-section-head__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: #0D1F1A;
  margin-bottom: 0.75rem;
}

.clft-section--dark .clft-section-head__title {
  color: #F0EDE4;
}

.clft-section-head__sub {
  font-size: 1rem;
  color: #4F6B5A;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.clft-section-head--left .clft-section-head__sub {
  margin: 0;
}

.clft-section--dark .clft-section-head__sub {
  color: #9DB5A8;
}

/* ------------------------------------------------------------------
   16. PRODUCT PAGE COMPONENTS
   ------------------------------------------------------------------ */
.clft-product-hero {
  background: #0D1F1A;
  padding: 7rem 0 5rem;
  padding-top: calc(7rem + 68px);
}

.clft-product-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}

.clft-product-hero__heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #F0EDE4;
  margin-bottom: 1.25rem;
}

.clft-product-hero__sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #9DB5A8;
  max-width: 620px;
  margin: 0 auto 2rem;
}

/* Data ingestion detail */
.clft-input-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.clft-input-card {
  background: #F5F4EF;
  border: 1px solid #D1D8D3;
  border-radius: 6px;
  padding: 1.5rem;
}

.clft-input-card__icon {
  color: #1A6B45;
  font-size: 1.25rem;
  margin-bottom: 0.875rem;
}

.clft-input-card__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0D1F1A;
  margin-bottom: 0.375rem;
}

.clft-input-card__desc {
  font-size: 0.875rem;
  color: #7A8F84;
  line-height: 1.55;
}

/* Calculation engine / formula block */
.clft-formula-block {
  background: #122218;
  border: 1px solid #1E3B2F;
  border-radius: 8px;
  padding: 2rem;
  overflow-x: auto;
}

.clft-formula-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.clft-formula-row:last-child {
  margin-bottom: 0;
}

.clft-formula-input {
  padding: 0.375rem 0.75rem;
  background: rgba(61,170,112,0.1);
  border: 1px solid rgba(61,170,112,0.25);
  border-radius: 4px;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.8125rem;
  color: #3DAA70;
}

.clft-formula-op {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 1.125rem;
  color: #9DB5A8;
}

.clft-formula-factor {
  padding: 0.375rem 0.75rem;
  background: rgba(43,122,120,0.1);
  border: 1px solid rgba(43,122,120,0.25);
  border-radius: 4px;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.8125rem;
  color: #2B7A78;
}

.clft-formula-output {
  padding: 0.375rem 0.75rem;
  background: rgba(200,145,74,0.1);
  border: 1px solid rgba(200,145,74,0.25);
  border-radius: 4px;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.8125rem;
  color: #E8B56D;
}

/* Audit trail mock table */
.clft-audit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: #FFFFFF;
  border: 1px solid #D1D8D3;
  border-radius: 6px;
  overflow: hidden;
}

.clft-audit-table th {
  background: #F5F4EF;
  font-weight: 600;
  font-size: 0.8125rem;
  color: #4F6B5A;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #D1D8D3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.clft-audit-table td {
  padding: 0.75rem 1rem;
  color: #0D1F1A;
  border-bottom: 1px solid #F5F4EF;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.8125rem;
}

.clft-audit-table tr:last-child td {
  border-bottom: none;
}

.clft-audit-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-audit-status--verified {
  background: rgba(200,145,74,0.12);
  color: #C8914A;
}

/* Report output formats (dark section) */
.clft-output-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-output-card {
  background: #122218;
  border: 1px solid #1E3B2F;
  border-radius: 6px;
  padding: 1.5rem;
}

.clft-output-card__framework {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #3DAA70;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.clft-output-card__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #F0EDE4;
  margin-bottom: 0.375rem;
}

.clft-output-card__sub {
  font-size: 0.875rem;
  color: #9DB5A8;
  line-height: 1.5;
}

/* ------------------------------------------------------------------
   17. SCOPE PAGES (1+2, 3) — sub-page hero
   ------------------------------------------------------------------ */
.clft-page-hero {
  background: #F5F4EF;
  padding: calc(5rem + 68px) 0 4rem;
  border-bottom: 1px solid #D1D8D3;
  overflow: hidden;
  position: relative;
}

.clft-page-hero--dark {
  background: #0D1F1A;
  border-bottom: none;
  padding-top: calc(5rem + 68px);
}

.clft-page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-page-hero__inner--centered {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
}

.clft-page-hero__eyebrow {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A6B45;
  display: block;
  margin-bottom: 1rem;
}

.clft-page-hero--dark .clft-page-hero__eyebrow {
  color: #3DAA70;
}

.clft-page-hero__heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #0D1F1A;
  margin-bottom: 1.25rem;
}

.clft-page-hero--dark .clft-page-hero__heading {
  color: #F0EDE4;
}

.clft-page-hero__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #4F6B5A;
  max-width: 560px;
}

.clft-page-hero--dark .clft-page-hero__sub {
  color: #9DB5A8;
}

.clft-page-hero--dark .clft-page-hero__inner--centered .clft-page-hero__sub {
  margin: 0 auto;
}

.clft-page-hero__ornament {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Data fragment / stat ornament for sub-page hero visual weight */
.clft-hero-stat-block {
  background: #0D1F1A;
  border: 1px solid #1E3B2F;
  border-radius: 8px;
  padding: 2rem;
  min-width: 280px;
}

.clft-hero-stat-block__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #1E3B2F;
  gap: 1rem;
}

.clft-hero-stat-block__row:last-child {
  border-bottom: none;
}

.clft-hero-stat-block__key {
  font-size: 0.8125rem;
  color: #9DB5A8;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-hero-stat-block__val {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #F0EDE4;
}

.clft-hero-stat-block__val--green {
  color: #3DAA70;
}

.clft-hero-stat-block__val--amber {
  color: #E8B56D;
}

@media (max-width: 768px) {
  .clft-page-hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .clft-page-hero__inner--centered {
    grid-template-columns: 1fr;
  }
}

/* Source table for scope pages */
.clft-source-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: #FFFFFF;
  border: 1px solid #D1D8D3;
  border-radius: 6px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.clft-source-table th {
  background: #F5F4EF;
  font-weight: 600;
  font-size: 0.8125rem;
  color: #4F6B5A;
  padding: 0.875rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid #D1D8D3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.clft-source-table td {
  padding: 0.875rem 1.25rem;
  color: #0D1F1A;
  border-bottom: 1px solid #F5F4EF;
  line-height: 1.5;
}

.clft-source-table tr:last-child td {
  border-bottom: none;
}

.clft-source-table tr:hover td {
  background: #F5F4EF;
}

.clft-coverage-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-coverage-tag--live {
  background: rgba(61,170,112,0.12);
  color: #1A6B45;
}

.clft-coverage-tag--import {
  background: rgba(43,122,120,0.12);
  color: #2B7A78;
}

.clft-coverage-tag--estimated {
  background: rgba(200,145,74,0.12);
  color: #C8914A;
}

/* Scope 3 category grid */
.clft-s3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-s3-card {
  background: #FFFFFF;
  border: 1px solid #D1D8D3;
  border-radius: 6px;
  padding: 1.25rem;
}

.clft-s3-card__num {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  color: #7A8F84;
  margin-bottom: 0.375rem;
}

.clft-s3-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0D1F1A;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.clft-s3-card__stream {
  font-size: 0.8125rem;
  color: #7A8F84;
  font-style: italic;
}

@media (max-width: 900px) {
  .clft-s3-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .clft-s3-grid {
    grid-template-columns: 1fr;
  }
}

/* Supplier form mock */
.clft-supplier-form-mock {
  background: #FFFFFF;
  border: 1px solid #D1D8D3;
  border-radius: 8px;
  padding: 1.75rem;
  max-width: 560px;
  box-shadow: 0 4px 24px rgba(13,31,26,0.07);
}

.clft-supplier-form-mock__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #D1D8D3;
}

.clft-supplier-form-mock__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0D1F1A;
}

.clft-supplier-form-mock__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #3DAA70;
  background: rgba(61,170,112,0.1);
  border: 1px solid rgba(61,170,112,0.25);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-supplier-form-mock__field {
  margin-bottom: 1rem;
}

.clft-supplier-form-mock__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #4F6B5A;
  margin-bottom: 0.375rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-supplier-form-mock__input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: #F5F4EF;
  border: 1px solid #D1D8D3;
  border-radius: 4px;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.8125rem;
  color: #0D1F1A;
}

.clft-supplier-form-mock__input--completed {
  background: rgba(61,170,112,0.06);
  border-color: rgba(61,170,112,0.3);
  color: #1A6B45;
}

/* ------------------------------------------------------------------
   18. CSRD COMPLIANCE PAGE
   ------------------------------------------------------------------ */
.clft-timeline {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-timeline__track {
  position: relative;
  padding-left: 2rem;
}

.clft-timeline__track::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #1A6B45 0%, #3DAA70 100%);
}

.clft-timeline-item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}

.clft-timeline-item::before {
  content: '';
  position: absolute;
  left: -0.625rem;
  top: 0.375rem;
  width: 1.25rem;
  height: 1.25rem;
  background: #1A6B45;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #1A6B45;
}

.clft-timeline-item:last-child {
  padding-bottom: 0;
}

.clft-timeline-item__year {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1A6B45;
  margin-bottom: 0.375rem;
}

.clft-timeline-item__heading {
  font-size: 1rem;
  font-weight: 600;
  color: #0D1F1A;
  margin-bottom: 0.375rem;
}

.clft-timeline-item__desc {
  font-size: 0.9375rem;
  color: #4F6B5A;
  line-height: 1.6;
}

/* ESRS requirements */
.clft-esrs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-esrs-card {
  background: #FFFFFF;
  border: 1px solid #D1D8D3;
  border-radius: 6px;
  padding: 1.75rem;
}

.clft-esrs-card__tag {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: #1A6B45;
  letter-spacing: 0.06em;
  margin-bottom: 0.625rem;
  display: block;
}

.clft-esrs-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0D1F1A;
  margin-bottom: 0.5rem;
}

.clft-esrs-card__desc {
  font-size: 0.9375rem;
  color: #4F6B5A;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.clft-esrs-card__covered {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1A6B45;
}

@media (max-width: 768px) {
  .clft-esrs-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------
   19. INTEGRATIONS PAGE
   ------------------------------------------------------------------ */
.clft-int-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-int-card {
  background: #FFFFFF;
  border: 1px solid #D1D8D3;
  border-radius: 6px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.clft-int-card__category-icon {
  width: 44px;
  height: 44px;
  background: rgba(26,107,69,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A6B45;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.clft-int-card__name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0D1F1A;
  margin-bottom: 0.375rem;
}

.clft-int-card__method {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  color: #4F7A62;
  margin-bottom: 0.75rem;
}

.clft-int-card__desc {
  font-size: 0.9375rem;
  color: #4F6B5A;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.clft-int-card__scope-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1A6B45;
  background: rgba(26,107,69,0.08);
  padding: 0.25rem 0.625rem;
  border-radius: 3px;
  display: inline-block;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ------------------------------------------------------------------
   20. PRICING PAGE
   ------------------------------------------------------------------ */
.clft-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-pricing-card {
  background: #FFFFFF;
  border: 1px solid #D1D8D3;
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.clft-pricing-card--featured {
  border-color: #1A6B45;
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(26,107,69,0.12);
}

.clft-pricing-card__popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #1A6B45;
  color: #FFFFFF;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.275rem 0.875rem;
  border-radius: 0 0 6px 6px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  white-space: nowrap;
}

.clft-pricing-card__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0D1F1A;
  margin-bottom: 0.25rem;
  margin-top: 0.75rem;
}

.clft-pricing-card__target {
  font-size: 0.875rem;
  color: #7A8F84;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.clft-pricing-card__price {
  margin-bottom: 0.25rem;
}

.clft-pricing-card__amount {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 2.25rem;
  font-weight: 500;
  color: #0D1F1A;
  line-height: 1;
}

.clft-pricing-card__currency {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 1.25rem;
  font-weight: 500;
  color: #4F6B5A;
  vertical-align: top;
  margin-top: 0.25em;
}

.clft-pricing-card__custom-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0D1F1A;
  line-height: 1;
}

.clft-pricing-card__billing-note {
  font-size: 0.8125rem;
  color: #7A8F84;
  margin-bottom: 0.5rem;
}

.clft-pricing-card__scope-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1A6B45;
  background: rgba(26,107,69,0.08);
  padding: 0.25rem 0.625rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-pricing-card__divider {
  height: 1px;
  background: #D1D8D3;
  margin-bottom: 1.5rem;
}

.clft-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
  margin-bottom: 2rem;
}

.clft-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: #0D1F1A;
  line-height: 1.4;
}

.clft-pricing-card__feature-check {
  color: #1A6B45;
  flex-shrink: 0;
  margin-top: 0.15em;
  font-size: 0.875rem;
}

@media (max-width: 900px) {
  .clft-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

/* Pricing FAQ */
.clft-faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-faq__item {
  border-top: 1px solid #D1D8D3;
}

.clft-faq__item:last-child {
  border-bottom: 1px solid #D1D8D3;
}

.clft-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #0D1F1A;
  text-align: left;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  transition: color 200ms;
}

.clft-faq__question:hover {
  color: #1A6B45;
}

.clft-faq__icon {
  flex-shrink: 0;
  color: #4F6B5A;
  font-size: 0.875rem;
  transition: transform 220ms cubic-bezier(0.16,1,0.3,1);
}

.clft-faq__item--open .clft-faq__icon {
  transform: rotate(180deg);
}

.clft-faq__item--open .clft-faq__question {
  color: #1A6B45;
}

.clft-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms cubic-bezier(0.16,1,0.3,1);
}

.clft-faq__item--open .clft-faq__answer {
  max-height: 400px;
}

.clft-faq__answer-inner {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: #4F6B5A;
  line-height: 1.7;
}

/* ------------------------------------------------------------------
   21. ABOUT PAGE
   ------------------------------------------------------------------ */
.clft-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-team-card {
  text-align: center;
}

.clft-team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-team-card__avatar--a {
  background: #1A6B45;
  color: #F0EDE4;
}

.clft-team-card__avatar--b {
  background: #2B7A78;
  color: #F0EDE4;
}

.clft-team-card__avatar--c {
  background: #4F7A62;
  color: #F0EDE4;
}

.clft-team-card__name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0D1F1A;
  margin-bottom: 0.25rem;
}

.clft-team-card__title {
  font-size: 0.875rem;
  color: #1A6B45;
  font-weight: 500;
  margin-bottom: 0.625rem;
}

.clft-team-card__bio {
  font-size: 0.9375rem;
  color: #4F6B5A;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .clft-team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* About mission text block */
.clft-mission-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}

.clft-mission-block__text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.7;
  color: #0D1F1A;
  font-style: italic;
}

/* Detroit block */
.clft-detroit-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-detroit-block__text .clft-h2 {
  color: #0D1F1A;
  margin-bottom: 1rem;
}

.clft-detroit-block__text .clft-body {
  color: #4F6B5A;
  margin-bottom: 0.875rem;
}

.clft-detroit-block__address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #4F6B5A;
  font-style: normal;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #D1D8D3;
}

.clft-detroit-block__address-icon {
  color: #1A6B45;
  margin-top: 0.1em;
  flex-shrink: 0;
}

.clft-detroit-block__visual {
  background: #F5F4EF;
  border: 1px solid #D1D8D3;
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.clft-detroit-stat {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.clft-detroit-stat__num {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 2rem;
  font-weight: 500;
  color: #1A6B45;
  line-height: 1;
}

.clft-detroit-stat__label {
  font-size: 0.9375rem;
  color: #4F6B5A;
}

@media (max-width: 768px) {
  .clft-detroit-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Funding note */
.clft-funding-note {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}

.clft-funding-note__text {
  font-size: 1.0625rem;
  color: #4F6B5A;
  line-height: 1.7;
  font-style: italic;
}

/* ------------------------------------------------------------------
   22. BLOG INDEX PAGE
   ------------------------------------------------------------------ */
.clft-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-blog-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid #D1D8D3;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 220ms cubic-bezier(0.16,1,0.3,1), transform 220ms cubic-bezier(0.16,1,0.3,1);
}

.clft-blog-card:hover {
  box-shadow: 0 6px 24px rgba(13,31,26,0.1);
  transform: translateY(-2px);
}

.clft-blog-card__cover {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  height: auto;
  background: #F5F4EF;
}

.clft-blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.clft-blog-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A6B45;
  margin-bottom: 0.75rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-blog-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0D1F1A;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  flex: 1;
}

.clft-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: #7A8F84;
  margin-top: auto;
}

.clft-blog-card__meta-dot {
  width: 3px;
  height: 3px;
  background: #D1D8D3;
  border-radius: 50%;
}

@media (max-width: 1000px) {
  .clft-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .clft-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------
   23. ARTICLE TEMPLATE
   ------------------------------------------------------------------ */
.clft-article-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}

.clft-article-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(3rem + 68px) clamp(1.25rem, 4vw, 2.5rem) 0;
}

.clft-article-header__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A6B45;
  margin-bottom: 1rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-article-header__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #0D1F1A;
  margin-bottom: 1rem;
  max-width: 800px;
}

.clft-article-header__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #7A8F84;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.clft-article-header__cover {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  object-fit: cover;
  height: auto;
  border-radius: 6px;
  margin-bottom: 0;
}

.clft-article-body {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.8;
  color: #0D1F1A;
}

.clft-article-body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #0D1F1A;
  margin-top: 2.5em;
  margin-bottom: 0.75em;
  letter-spacing: -0.01em;
}

.clft-article-body h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0D1F1A;
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.clft-article-body p {
  margin-bottom: 1.25em;
  color: #0D1F1A;
}

.clft-article-body ul, .clft-article-body ol {
  padding-left: 1.75em;
  margin-bottom: 1.25em;
  list-style: disc;
}

.clft-article-body ol {
  list-style: decimal;
}

.clft-article-body li {
  color: #0D1F1A;
  margin-bottom: 0.5em;
  line-height: 1.7;
}

.clft-article-body blockquote {
  border-left: 3px solid #1A6B45;
  padding-left: 1.25rem;
  margin: 1.5em 0;
  font-style: italic;
  color: #4F6B5A;
}

.clft-article-body a {
  color: #1A6B45;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.clft-article-body a:hover {
  color: #2A8A58;
}

.clft-article-body code {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.875em;
  background: #F5F4EF;
  border: 1px solid #D1D8D3;
  border-radius: 3px;
  padding: 0.1em 0.4em;
  color: #1A6B45;
}

.clft-article-body pre {
  background: #122218;
  border: 1px solid #1E3B2F;
  border-radius: 6px;
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.5em 0;
}

.clft-article-body pre code {
  background: transparent;
  border: none;
  padding: 0;
  color: #3DAA70;
  font-size: 0.875rem;
}

.clft-article-body img {
  max-width: 100%;
  border-radius: 6px;
  margin: 1.5em 0;
}

.clft-article-sidebar {
  position: sticky;
  top: 90px;
}

.clft-article-sidebar__box {
  background: #F5F4EF;
  border: 1px solid #D1D8D3;
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.clft-article-sidebar__heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0D1F1A;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 1000px) {
  .clft-article-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .clft-article-sidebar {
    position: static;
  }
}

/* ------------------------------------------------------------------
   24. CONTACT PAGE
   ------------------------------------------------------------------ */
.clft-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-contact-form__field {
  margin-bottom: 1.25rem;
}

.clft-contact-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0D1F1A;
  margin-bottom: 0.5rem;
}

.clft-contact-form__input,
.clft-contact-form__select,
.clft-contact-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D8D3;
  border-radius: 4px;
  background: #FFFFFF;
  color: #0D1F1A;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  transition: border-color 200ms;
  display: block;
}

.clft-contact-form__input:focus,
.clft-contact-form__select:focus,
.clft-contact-form__textarea:focus {
  outline: none;
  border-color: #1A6B45;
  box-shadow: 0 0 0 3px rgba(26,107,69,0.1);
}

.clft-contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.clft-contact-info-card {
  background: #F5F4EF;
  border: 1px solid #D1D8D3;
  border-radius: 6px;
  padding: 2rem;
}

.clft-contact-info-card__heading {
  font-size: 1rem;
  font-weight: 600;
  color: #0D1F1A;
  margin-bottom: 1.25rem;
}

.clft-contact-info-row {
  display: flex;
  gap: 0.875rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.clft-contact-info-row__icon {
  color: #1A6B45;
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.1em;
}

.clft-contact-info-row__text {
  font-size: 0.9375rem;
  color: #4F6B5A;
  line-height: 1.55;
}

.clft-contact-info-row__text a {
  color: #1A6B45;
  text-decoration: none;
}

.clft-contact-info-row__text a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .clft-contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ------------------------------------------------------------------
   25. AUTH PAGES
   ------------------------------------------------------------------ */
.clft-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F4EF;
  padding: 2rem;
}

.clft-auth-card {
  background: #FFFFFF;
  border: 1px solid #D1D8D3;
  border-radius: 8px;
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 4px 32px rgba(13,31,26,0.08);
}

.clft-auth-card__logo {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.clft-auth-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #0D1F1A;
  margin-bottom: 0.375rem;
  text-align: center;
}

.clft-auth-card__sub {
  font-size: 0.9375rem;
  color: #7A8F84;
  margin-bottom: 2rem;
  text-align: center;
}

.clft-auth-form__field {
  margin-bottom: 1.25rem;
}

.clft-auth-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0D1F1A;
  margin-bottom: 0.5rem;
}

.clft-auth-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D8D3;
  border-radius: 4px;
  background: #FFFFFF;
  color: #0D1F1A;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  transition: border-color 200ms;
  display: block;
}

.clft-auth-form__input:focus {
  outline: none;
  border-color: #1A6B45;
  box-shadow: 0 0 0 3px rgba(26,107,69,0.1);
}

.clft-auth-form__submit {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: #1A6B45;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 220ms;
  display: block;
  text-align: center;
  margin-top: 0.5rem;
}

.clft-auth-form__submit:hover {
  background: #2A8A58;
}

.clft-auth-card__links {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9375rem;
  color: #4F6B5A;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.clft-auth-card__links a {
  color: #1A6B45;
  text-decoration: none;
}

.clft-auth-card__links a:hover {
  text-decoration: underline;
}

.clft-auth-card__legal {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #D1D8D3;
  text-align: center;
  font-size: 0.8125rem;
  color: #7A8F84;
  line-height: 1.6;
}

.clft-auth-card__legal a {
  color: #4F6B5A;
  text-decoration: underline;
}

.clft-auth-card__legal a:hover {
  color: #1A6B45;
}

/* ------------------------------------------------------------------
   26. LEGAL PAGES
   ------------------------------------------------------------------ */
.clft-legal-main {
  background: #FFFFFF;
  padding-top: 68px;
}

.clft-legal-hero {
  background: #F5F4EF;
  border-bottom: 1px solid #D1D8D3;
  padding: 4rem 0 3rem;
}

.clft-legal-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-legal-hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #0D1F1A;
  margin-bottom: 0.5rem;
}

.clft-legal-hero__date {
  font-size: 0.875rem;
  color: #7A8F84;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
}

.clft-legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 4vw, 2.5rem) 5rem;
  color: #0D1F1A;
  font-size: 1rem;
  line-height: 1.8;
  background: #FFFFFF;
}

.clft-legal-content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0D1F1A;
  margin-top: 2.5em;
  margin-bottom: 0.75em;
}

.clft-legal-content h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0D1F1A;
  margin-top: 1.75em;
  margin-bottom: 0.5em;
}

.clft-legal-content p {
  margin-bottom: 1.25em;
  color: #0D1F1A;
}

.clft-legal-content ul, .clft-legal-content ol {
  padding-left: 1.75em;
  margin-bottom: 1.25em;
  list-style: disc;
}

.clft-legal-content ol {
  list-style: decimal;
}

.clft-legal-content li {
  color: #0D1F1A;
  margin-bottom: 0.5em;
  line-height: 1.7;
}

.clft-legal-content a {
  color: #1A6B45;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.clft-legal-content a:hover {
  color: #2A8A58;
}

.clft-docs-content {
  background: #FFFFFF;
  color: #0D1F1A;
}

.clft-docs-content h1,
.clft-docs-content h2,
.clft-docs-content h3 {
  color: #0D1F1A;
}

.clft-docs-content p,
.clft-docs-content li {
  color: #0D1F1A;
}

/* ------------------------------------------------------------------
   27. UTILITY / ANIMATION
   ------------------------------------------------------------------ */
.clft-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms cubic-bezier(0.16,1,0.3,1), transform 500ms cubic-bezier(0.16,1,0.3,1);
}

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

.clft-text-green {
  color: #1A6B45;
}

.clft-text-amber {
  color: #C8914A;
}

.clft-text-teal {
  color: #2B7A78;
}

.clft-text-muted {
  color: #7A8F84;
}

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

.clft-divider {
  height: 1px;
  background: #D1D8D3;
  border: none;
  margin: 0;
}

.clft-divider--dark {
  background: #1E3B2F;
}

/* Spacers */
.clft-mt-sm { margin-top: 1rem; }
.clft-mt-md { margin-top: 2rem; }
.clft-mt-lg { margin-top: 3rem; }
.clft-mb-sm { margin-bottom: 1rem; }
.clft-mb-md { margin-bottom: 2rem; }
.clft-mb-lg { margin-bottom: 3rem; }

/* ------------------------------------------------------------------
   28. COOKIE BANNER
   ------------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #122218;
  border-top: 1px solid #1E3B2F;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.9375rem;
  color: #9DB5A8;
  line-height: 1.55;
  flex: 1;
}

.cookie-banner__text a {
  color: #3DAA70;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  flex-shrink: 0;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: #F0EDE4;
  border: 1px solid rgba(240,237,228,0.4);
  border-radius: 4px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms, border-color 200ms;
}

.cookie-banner__btn:hover {
  background: rgba(240,237,228,0.1);
  border-color: rgba(240,237,228,0.7);
  color: #F0EDE4;
}

@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ------------------------------------------------------------------
   29. INVOICE MOCK (product.html data ingestion)
   ------------------------------------------------------------------ */
.clft-invoice-mock {
  background: #FFFFFF;
  border: 1px solid #D1D8D3;
  border-radius: 8px;
  overflow: hidden;
  max-width: 560px;
  box-shadow: 0 4px 24px rgba(13,31,26,0.07);
}

.clft-invoice-mock__header {
  background: #F5F4EF;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #D1D8D3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.clft-invoice-mock__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4F6B5A;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-invoice-mock__status {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #3DAA70;
  background: rgba(61,170,112,0.1);
  border: 1px solid rgba(61,170,112,0.25);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-invoice-mock__body {
  padding: 1.25rem 1.5rem;
}

.clft-invoice-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #F5F4EF;
  gap: 1rem;
}

.clft-invoice-field:last-child {
  border-bottom: none;
}

.clft-invoice-field__key {
  font-size: 0.8125rem;
  color: #7A8F84;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-invoice-field__val {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #0D1F1A;
}

.clft-invoice-field__extracted {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1A6B45;
}

.clft-invoice-field__extracted-icon {
  font-size: 0.625rem;
  color: #3DAA70;
}

/* ------------------------------------------------------------------
   30. CSRD REPORT PREVIEW (csrd-compliance.html)
   ------------------------------------------------------------------ */
.clft-report-mock {
  background: #FFFFFF;
  border: 1px solid #D1D8D3;
  border-radius: 8px;
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 4px 32px rgba(13,31,26,0.08);
}

.clft-report-mock__header {
  background: #0D1F1A;
  padding: 1.25rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.clft-report-mock__doc-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #F0EDE4;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-report-mock__framework {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.6875rem;
  color: #3DAA70;
}

.clft-report-mock__body {
  padding: 1.5rem 1.75rem;
}

.clft-report-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0;
  border-bottom: 1px solid #F5F4EF;
  gap: 1rem;
}

.clft-report-row:last-child {
  border-bottom: none;
}

.clft-report-row__label {
  font-size: 0.875rem;
  color: #4F6B5A;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.clft-report-row__value {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0D1F1A;
}

.clft-report-row__check {
  color: #1A6B45;
  font-size: 0.75rem;
}

/* ------------------------------------------------------------------
   31. TWO-COLUMN CONTENT LAYOUT (general)
   ------------------------------------------------------------------ */
.clft-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-two-col--centered {
  align-items: center;
}

.clft-two-col--media-right .clft-two-col__media {
  order: 2;
}

@media (max-width: 768px) {
  .clft-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Content text in two-col */
.clft-two-col__text .clft-h2 {
  margin-bottom: 1rem;
}

.clft-two-col__text .clft-body {
  color: #4F6B5A;
  margin-bottom: 1rem;
}

.clft-two-col--dark .clft-two-col__text .clft-h2 {
  color: #F0EDE4;
}

.clft-two-col--dark .clft-two-col__text .clft-body {
  color: #9DB5A8;
}

/* Scope 2 methods comparison */
.clft-scope2-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.clft-scope2-card {
  background: #FFFFFF;
  border: 1px solid #D1D8D3;
  border-radius: 6px;
  padding: 2rem;
}

.clft-scope2-card__method {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A6B45;
  margin-bottom: 0.75rem;
  display: block;
}

.clft-scope2-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0D1F1A;
  margin-bottom: 0.75rem;
}

.clft-scope2-card__desc {
  font-size: 0.9375rem;
  color: #4F6B5A;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .clft-scope2-split {
    grid-template-columns: 1fr;
  }
}

/* Feature list */
.clft-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.clft-feature-list__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.clft-feature-list__icon {
  width: 36px;
  height: 36px;
  background: rgba(26,107,69,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A6B45;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.clft-feature-list__content {}

.clft-feature-list__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0D1F1A;
  margin-bottom: 0.25rem;
}

.clft-feature-list__desc {
  font-size: 0.875rem;
  color: #7A8F84;
  line-height: 1.6;
}

/* Custom connector section */
.clft-custom-box {
  background: #F5F4EF;
  border: 1px solid #D1D8D3;
  border-radius: 6px;
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.clft-custom-box__heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0D1F1A;
  margin-bottom: 0.75rem;
}

.clft-custom-box__desc {
  font-size: 1rem;
  color: #4F6B5A;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

/* ------------------------------------------------------------------
   32. PAGE BODY CLASSES
   ------------------------------------------------------------------ */
body.clft-page--dark-top {
  background: #0D1F1A;
}

body.clft-page--light-top {
  background: #FFFFFF;
}

/* ------------------------------------------------------------------
   33. MISSING / SUPPLEMENTAL CLASSES
   ------------------------------------------------------------------ */
.clft-hero__text {
  /* text side of hero two-col: controlled by parent grid */
}

.clft-footer__brand {
  /* brand column in footer grid */
}

.clft-footer__col {
  /* content column in footer grid */
}

.clft-auth-form {
  /* auth form element — JS selector hook, no visual rules needed */
}

.clft-contact-form {
  /* contact form element — JS selector hook, no visual rules needed */
}

/* ------------------------------------------------------------------
   33b. RESPONSIVE HELPERS
   ------------------------------------------------------------------ */
@media (max-width: 600px) {
  .clft-hide-mobile {
    display: none !important;
  }
}

@media (min-width: 601px) {
  .clft-show-mobile-only {
    display: none !important;
  }
}

/* ------------------------------------------------------------------
   34. PRINT
   ------------------------------------------------------------------ */
@media print {
  .clft-nav,
  .cookie-banner,
  .clft-nav__hamburger {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}
