/* Claimloom — main.css
   Brand prefix: cll
   Palette: institutional navy #1A2B4A + precision blue #3D9FD8
   Typography: Inter (Google Fonts) + JetBrains Mono
*/

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
  --cll-brand-primary:        #1A2B4A;
  --cll-brand-secondary:      #2C4A7C;
  --cll-accent-decorative:    #3D9FD8;
  --cll-accent-aa-light:      #1A6BA3;
  --cll-accent-aa-dark:       #5BB8E8;
  --cll-fg-light-1:           #111827;
  --cll-fg-light-2:           #4B5563;
  --cll-fg-light-3:           #6B7280;
  --cll-fg-dark-1:            #F0F4F8;
  --cll-fg-dark-2:            #94A3B8;
  --cll-fg-dark-3:            #64748B;
  --cll-bg-light:             #F7F8FA;
  --cll-bg-white:             #FFFFFF;
  --cll-bg-cream:             #F1F3F7;
  --cll-bg-dark:              #1A2B4A;
  --cll-bg-dark-alt:          #243560;
  --cll-status-warn:          #B45309;
  --cll-status-success:       #166534;
  --cll-status-error:         #991B1B;
  --cll-border-light:         #E2E8F0;
  --cll-border-dark:          #2D3E5C;

  --cll-font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --cll-font-mono:  'JetBrains Mono', 'Fira Code', Consolas, monospace;

  --cll-nav-h:      64px;
  --cll-container:  1200px;
  --cll-radius-sm:  4px;
  --cll-radius-md:  8px;
  --cll-radius-lg:  16px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--cll-font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cll-fg-light-1);
  background: var(--cll-bg-white);
  -webkit-font-smoothing: antialiased;
}

body.cll-page--dark-top {
  background: var(--cll-bg-dark);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
address { font-style: normal; }

/* ─── Typography ─── */
h1 { font-size: clamp(38px, 5vw, 56px); font-weight: 700; line-height: 1.1; }
h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 600; line-height: 1.3; }
h4 { font-size: 16px; font-weight: 600; line-height: 1.4; }
p  { line-height: 1.65; }

.cll-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cll-mono { font-family: var(--cll-font-mono); }

/* ─── Layout Container ─── */
.cll-container {
  max-width: var(--cll-container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .cll-container { padding: 0 40px; }
}
@media (min-width: 1200px) {
  .cll-container { padding: 0 60px; }
}

/* ─── Navigation ─── */
.cll-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--cll-nav-h);
  background: var(--cll-brand-primary);
  border-bottom: 1px solid var(--cll-border-dark);
  transition: box-shadow 0.2s ease;
}
.cll-nav--scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.cll-nav__inner {
  max-width: var(--cll-container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .cll-nav__inner { padding: 0 40px; }
}

.cll-nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.cll-nav__logo img {
  height: 30px;
  width: auto;
  max-width: 180px;
}

.cll-nav__links {
  display: none;
  align-items: center;
  gap: 4px;
  flex: 1;
}
@media (min-width: 900px) {
  .cll-nav__links { display: flex; }
}

.cll-nav__link {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cll-fg-dark-2);
  border-radius: var(--cll-radius-sm);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.cll-nav__link:hover {
  color: var(--cll-fg-dark-1);
  background: rgba(255,255,255,0.06);
}
.cll-nav__link--active {
  color: var(--cll-fg-dark-1);
}

.cll-nav__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cll-nav__signin {
  font-size: 14px;
  font-weight: 500;
  color: var(--cll-fg-dark-2);
  padding: 6px 12px;
  transition: color 0.15s;
  white-space: nowrap;
}
.cll-nav__signin:hover { color: var(--cll-fg-dark-1); }

/* CTA button in nav */
.cll-btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  background: var(--cll-accent-aa-dark);
  color: var(--cll-brand-primary);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--cll-radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
  text-decoration: none;
}
.cll-btn--primary:hover {
  background: #7CCEF2;
  transform: translateY(-1px);
}
.cll-btn--primary:active { transform: translateY(0); }

/* On light backgrounds, primary button needs darker contrast */
.cll-section--light .cll-btn--primary,
.cll-section--white .cll-btn--primary,
.cll-section--cream .cll-btn--primary {
  background: var(--cll-brand-primary);
  color: #FFFFFF;
}
.cll-section--light .cll-btn--primary:hover,
.cll-section--white .cll-btn--primary:hover,
.cll-section--cream .cll-btn--primary:hover {
  background: var(--cll-brand-secondary);
}

.cll-btn--outline-dark {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--cll-fg-dark-1);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--cll-radius-sm);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.cll-btn--outline-dark:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
}

.cll-btn--outline-light {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border: 1.5px solid var(--cll-border-light);
  color: var(--cll-fg-light-1);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--cll-radius-sm);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.cll-btn--outline-light:hover {
  border-color: var(--cll-brand-secondary);
  background: var(--cll-bg-light);
}

.cll-btn--lg {
  padding: 13px 28px;
  font-size: 15px;
}

/* hamburger */
.cll-nav__hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--cll-fg-dark-2);
  padding: 4px;
  margin-left: auto;
}
@media (max-width: 899px) {
  .cll-nav__hamburger { display: flex; align-items: center; }
  .cll-nav__right .cll-btn--primary { display: none; }
  .cll-nav__signin { display: none; }
}

.cll-nav__mobile {
  display: none;
  position: fixed;
  top: var(--cll-nav-h);
  left: 0; right: 0;
  background: var(--cll-brand-primary);
  border-top: 1px solid var(--cll-border-dark);
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.cll-nav__mobile.is-open { display: flex; }
.cll-nav__mobile .cll-nav__link {
  display: block;
  padding: 10px 8px;
  font-size: 15px;
  color: var(--cll-fg-dark-2);
}
.cll-nav__mobile .cll-nav__signin {
  display: block;
  padding: 10px 8px;
  font-size: 15px;
  color: var(--cll-fg-dark-2);
}
.cll-nav__mobile .cll-btn--primary {
  display: inline-flex;
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  padding: 11px 20px;
  font-size: 15px;
}

/* ─── Section Backgrounds ─── */
.cll-section--dark {
  background: var(--cll-bg-dark);
}
.cll-section--dark-alt {
  background: var(--cll-bg-dark-alt);
}
.cll-section--light {
  background: var(--cll-bg-light);
}
.cll-section--white {
  background: var(--cll-bg-white);
}
.cll-section--cream {
  background: var(--cll-bg-cream);
}

/* ─── Section Padding ─── */
.cll-section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .cll-section { padding: 100px 0; }
}
.cll-section--sm { padding: 48px 0; }
.cll-section--lg { padding: 120px 0; }

/* ─── Eyebrow colors by bg ─── */
.cll-section--dark .cll-eyebrow,
.cll-section--dark-alt .cll-eyebrow {
  color: var(--cll-accent-aa-dark);
}
.cll-section--light .cll-eyebrow,
.cll-section--white .cll-eyebrow,
.cll-section--cream .cll-eyebrow {
  color: var(--cll-accent-aa-light);
}

/* ─── Heading colors by bg ─── */
.cll-section--dark h1,
.cll-section--dark h2,
.cll-section--dark h3,
.cll-section--dark-alt h1,
.cll-section--dark-alt h2,
.cll-section--dark-alt h3 {
  color: var(--cll-fg-dark-1);
}
.cll-section--dark p,
.cll-section--dark-alt p {
  color: var(--cll-fg-dark-2);
}
.cll-section--light h1,
.cll-section--light h2,
.cll-section--light h3,
.cll-section--white h1,
.cll-section--white h2,
.cll-section--white h3,
.cll-section--cream h1,
.cll-section--cream h2,
.cll-section--cream h3 {
  color: var(--cll-fg-light-1);
}
.cll-section--light p,
.cll-section--white p,
.cll-section--cream p {
  color: var(--cll-fg-light-2);
}

/* ─── Hero ─── */
.cll-hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.cll-hero__inner {
  max-width: var(--cll-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .cll-hero__inner {
    padding: 0 40px;
  }
}
@media (min-width: 960px) {
  .cll-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.cll-hero__content {
  position: relative;
  z-index: 2;
}
.cll-hero__eyebrow {
  margin-bottom: 16px;
}
.cll-hero__h1 {
  margin-bottom: 20px;
}
.cll-hero__sub {
  font-size: 17px;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 36px;
}
.cll-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cll-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* dark hero text colors */
.cll-section--dark .cll-hero__sub,
.cll-section--dark-alt .cll-hero__sub {
  color: var(--cll-fg-dark-2);
}

/* light hero text colors */
.cll-section--light .cll-hero__sub,
.cll-section--white .cll-hero__sub,
.cll-section--cream .cll-hero__sub {
  color: var(--cll-fg-light-2);
}

/* ─── Sub-page hero (lighter weight than index) ─── */
.cll-subhero {
  padding: 72px 0 60px;
}
.cll-subhero__inner {
  max-width: var(--cll-container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .cll-subhero__inner { padding: 0 40px; }
}
.cll-subhero__content {
  max-width: 680px;
}
.cll-subhero__eyebrow { margin-bottom: 12px; }
.cll-subhero__h1 { margin-bottom: 16px; }
.cll-subhero__sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--cll-fg-light-2);
}
.cll-section--dark .cll-subhero__sub,
.cll-section--dark-alt .cll-subhero__sub {
  color: var(--cll-fg-dark-2);
}

/* ─── Problem Stat Strip ─── */
.cll-stats {
  padding: 40px 0;
}
.cll-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cll-border-dark);
  border: 1px solid var(--cll-border-dark);
  border-radius: var(--cll-radius-md);
  overflow: hidden;
}
@media (max-width: 600px) {
  .cll-stats__grid { grid-template-columns: 1fr; }
}
.cll-stats__item {
  padding: 28px 32px;
  background: var(--cll-bg-dark-alt);
}
.cll-stats__number {
  font-family: var(--cll-font-mono);
  font-size: 40px;
  font-weight: 700;
  color: var(--cll-accent-aa-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.cll-stats__label {
  font-size: 14px;
  color: var(--cll-fg-dark-2);
  line-height: 1.45;
}

/* ─── Section header ─── */
.cll-section__header {
  margin-bottom: 48px;
}
.cll-section__header--center {
  text-align: center;
}
.cll-section__header .cll-eyebrow {
  margin-bottom: 12px;
}
.cll-section__header h2 {
  margin-bottom: 16px;
}
.cll-section__header p {
  font-size: 17px;
  max-width: 560px;
}
.cll-section__header--center p {
  margin: 0 auto;
}

/* ─── Feature Cards (5-card grid) ─── */
.cll-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.cll-feature-card {
  background: var(--cll-bg-white);
  border: 1px solid var(--cll-border-light);
  border-radius: var(--cll-radius-md);
  padding: 28px 24px;
  transition: box-shadow 0.2s;
}
.cll-feature-card:hover {
  box-shadow: 0 4px 20px rgba(26,43,74,0.1);
}
.cll-feature-card__icon {
  width: 40px;
  height: 40px;
  background: #EBF4FD;
  border-radius: var(--cll-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
  color: var(--cll-accent-aa-light);
}
.cll-feature-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--cll-fg-light-1);
  margin-bottom: 8px;
}
.cll-feature-card__desc {
  font-size: 14px;
  color: var(--cll-fg-light-2);
  line-height: 1.55;
}

/* ─── 3-step Flow ─── */
.cll-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .cll-flow { grid-template-columns: repeat(3, 1fr); }
}
.cll-flow__step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.cll-flow__num {
  width: 32px;
  height: 32px;
  background: var(--cll-brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--cll-accent-aa-dark);
  flex-shrink: 0;
}
.cll-section--cream .cll-flow__num {
  background: var(--cll-brand-primary);
  color: var(--cll-accent-aa-dark);
}
.cll-flow__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--cll-fg-light-1);
}
.cll-flow__desc {
  font-size: 14px;
  color: var(--cll-fg-light-2);
  line-height: 1.55;
}

/* ─── Flag Summary Mock ─── */
.cll-flag-summary {
  background: var(--cll-bg-white);
  border: 1px solid var(--cll-border-light);
  border-radius: var(--cll-radius-md);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,43,74,0.12);
  max-width: 520px;
}
.cll-flag-summary__header {
  background: var(--cll-brand-primary);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cll-flag-summary__claim-id {
  font-family: var(--cll-font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--cll-accent-aa-dark);
}
.cll-flag-summary__ts {
  font-size: 12px;
  color: var(--cll-fg-dark-3);
}
.cll-flag-summary__body {
  padding: 0;
}
.cll-flag-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  padding: 12px 20px;
  border-bottom: 1px solid var(--cll-border-light);
  gap: 12px;
}
.cll-flag-row:last-child { border-bottom: none; }
.cll-flag-row__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--cll-fg-light-1);
  margin-bottom: 2px;
}
.cll-flag-row__detail {
  font-size: 12px;
  color: var(--cll-fg-light-2);
  line-height: 1.4;
}
.cll-flag-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
  margin-top: 2px;
}
.cll-flag-badge--pass {
  background: #D1FAE5;
  color: var(--cll-status-success);
}
.cll-flag-badge--flag {
  background: #FEF3C7;
  color: var(--cll-status-warn);
}
.cll-flag-badge--missing {
  background: #FEE2E2;
  color: var(--cll-status-error);
}
.cll-flag-badge--mismatch {
  background: #FEF3C7;
  color: var(--cll-status-warn);
}

/* ─── API / Terminal Mock ─── */
.cll-terminal {
  border-radius: var(--cll-radius-md);
  overflow: hidden;
  background: #0E1824;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  max-width: 600px;
}
.cll-terminal__chrome {
  background: #1C2B3D;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cll-terminal__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.cll-terminal__dot--red    { background: #FF5F57; }
.cll-terminal__dot--yellow { background: #FFBD2E; }
.cll-terminal__dot--green  { background: #28C840; }
.cll-terminal__title {
  margin-left: 8px;
  font-family: var(--cll-font-mono);
  font-size: 12px;
  color: #8899AA;
}
.cll-terminal__body {
  padding: 18px 20px;
  font-family: var(--cll-font-mono);
  font-size: 13px;
  line-height: 1.5;
  overflow-x: auto;
  white-space: pre;
  color: #C9D7E8;
}
.cll-tt-comment  { color: #5B7A94; }
.cll-tt-key      { color: #5BB8E8; }
.cll-tt-str      { color: #A8D8A8; }
.cll-tt-num      { color: #FFBD7A; }
.cll-tt-pass     { color: #5CC87A; }
.cll-tt-flag     { color: #FFB347; }
.cll-tt-missing  { color: #FF7070; }
.cll-tt-muted    { color: #5B7A94; }

/* ─── Audience / Use-case Cards ─── */
.cll-audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.cll-audience-card {
  border: 1px solid var(--cll-border-light);
  border-radius: var(--cll-radius-md);
  padding: 32px 28px;
  background: var(--cll-bg-white);
  transition: box-shadow 0.2s, transform 0.2s;
}
.cll-audience-card:hover {
  box-shadow: 0 6px 28px rgba(26,43,74,0.1);
  transform: translateY(-2px);
}
.cll-audience-card__role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cll-accent-aa-light);
  margin-bottom: 10px;
}
.cll-audience-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--cll-fg-light-1);
  margin-bottom: 12px;
}
.cll-audience-card__desc {
  font-size: 14px;
  color: var(--cll-fg-light-2);
  line-height: 1.55;
  margin-bottom: 20px;
}
.cll-audience-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--cll-accent-aa-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s;
}
.cll-audience-card__link:hover { gap: 10px; }

/* ─── Quote Strip ─── */
.cll-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.cll-quote__mark {
  font-size: 64px;
  line-height: 1;
  color: var(--cll-accent-aa-dark);
  font-family: Georgia, serif;
  margin-bottom: -8px;
  display: block;
}
.cll-quote__text {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--cll-fg-dark-1);
  margin-bottom: 20px;
}
.cll-quote__attr {
  font-size: 14px;
  color: var(--cll-fg-dark-2);
}

/* ─── CTA Section ─── */
.cll-cta-block {
  text-align: center;
  padding: 80px 0;
}
.cll-cta-block h2 {
  margin-bottom: 32px;
}
.cll-cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ─── Security principles ─── */
.cll-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.cll-principle {
  padding: 28px 24px;
  background: var(--cll-bg-white);
  border: 1px solid var(--cll-border-light);
  border-radius: var(--cll-radius-md);
  border-left: 3px solid var(--cll-accent-decorative);
}
.cll-principle__icon {
  font-size: 22px;
  color: var(--cll-accent-aa-light);
  margin-bottom: 14px;
}
.cll-principle__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--cll-fg-light-1);
  margin-bottom: 8px;
}
.cll-principle__desc {
  font-size: 13px;
  color: var(--cll-fg-light-2);
  line-height: 1.55;
}

/* ─── Pricing ─── */
.cll-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.cll-pricing-card {
  border: 1px solid var(--cll-border-light);
  border-radius: var(--cll-radius-lg);
  padding: 36px 32px;
  background: var(--cll-bg-white);
  transition: box-shadow 0.2s;
}
.cll-pricing-card--highlight {
  border-color: var(--cll-brand-secondary);
  background: var(--cll-brand-primary);
  box-shadow: 0 8px 40px rgba(26,43,74,0.2);
  position: relative;
}
.cll-pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cll-accent-aa-dark);
  color: var(--cll-brand-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.cll-pricing-card__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cll-pricing-card .cll-pricing-card__name {
  color: var(--cll-fg-light-2);
}
.cll-pricing-card--highlight .cll-pricing-card__name {
  color: var(--cll-fg-dark-2);
}
.cll-pricing-card__price {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.cll-pricing-card .cll-pricing-card__price { color: var(--cll-fg-light-1); }
.cll-pricing-card--highlight .cll-pricing-card__price { color: var(--cll-fg-dark-1); }
.cll-pricing-card__unit {
  font-size: 13px;
  margin-bottom: 6px;
}
.cll-pricing-card .cll-pricing-card__unit { color: var(--cll-fg-light-3); }
.cll-pricing-card--highlight .cll-pricing-card__unit { color: var(--cll-fg-dark-3); }
.cll-pricing-card__min {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: var(--cll-radius-sm);
  margin-bottom: 24px;
  display: inline-block;
}
.cll-pricing-card .cll-pricing-card__min {
  background: var(--cll-bg-light);
  color: var(--cll-fg-light-2);
}
.cll-pricing-card--highlight .cll-pricing-card__min {
  background: rgba(255,255,255,0.1);
  color: var(--cll-fg-dark-2);
}
.cll-pricing-card__divider {
  border: none;
  border-top: 1px solid var(--cll-border-light);
  margin: 20px 0;
}
.cll-pricing-card--highlight .cll-pricing-card__divider {
  border-color: var(--cll-border-dark);
}
.cll-pricing-features {
  margin-bottom: 28px;
}
.cll-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}
.cll-pricing-card .cll-pricing-features li { color: var(--cll-fg-light-2); }
.cll-pricing-card--highlight .cll-pricing-features li { color: var(--cll-fg-dark-2); }
.cll-pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%231A6BA3' d='M6.5 11.5L3 8l1-1 2.5 2.5 5-5 1 1z'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}
.cll-pricing-card--highlight .cll-pricing-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%235BB8E8' d='M6.5 11.5L3 8l1-1 2.5 2.5 5-5 1 1z'/%3E%3C/svg%3E");
}

.cll-pricing-card .cll-btn--primary {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 15px;
  background: var(--cll-brand-primary);
  color: white;
}
.cll-pricing-card .cll-btn--primary:hover {
  background: var(--cll-brand-secondary);
}
.cll-pricing-card--highlight .cll-btn--primary {
  background: var(--cll-accent-aa-dark);
  color: var(--cll-brand-primary);
  font-weight: 700;
}
.cll-pricing-card--highlight .cll-btn--primary:hover {
  background: #7CCEF2;
}

/* ─── FAQ Accordion ─── */
.cll-faq {
  max-width: 760px;
  margin: 0 auto;
}
.cll-faq__item {
  border-bottom: 1px solid var(--cll-border-light);
}
.cll-faq__question {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--cll-fg-light-1);
  gap: 16px;
}
.cll-faq__question:hover { color: var(--cll-accent-aa-light); }
.cll-faq__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--cll-fg-light-3);
  transition: transform 0.2s;
}
.cll-faq__item.is-open .cll-faq__chevron {
  transform: rotate(180deg);
}
.cll-faq__answer {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--cll-fg-light-2);
  line-height: 1.65;
}
.cll-faq__item.is-open .cll-faq__answer { display: block; }

/* ─── About / Team ─── */
.cll-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.cll-team-card {
  background: var(--cll-bg-white);
  border: 1px solid var(--cll-border-light);
  border-radius: var(--cll-radius-md);
  overflow: hidden;
}
.cll-team-card__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  background: var(--cll-bg-light);
}
.cll-team-card__body {
  padding: 24px;
}
.cll-team-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--cll-fg-light-1);
  margin-bottom: 4px;
}
.cll-team-card__title {
  font-size: 13px;
  color: var(--cll-accent-aa-light);
  margin-bottom: 12px;
  font-weight: 500;
}
.cll-team-card__bio {
  font-size: 14px;
  color: var(--cll-fg-light-2);
  line-height: 1.6;
}

.cll-funding-note {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--cll-bg-light);
  border-left: 3px solid var(--cll-accent-decorative);
  border-radius: 0 var(--cll-radius-sm) var(--cll-radius-sm) 0;
  font-size: 14px;
  color: var(--cll-fg-light-2);
}

/* ─── Contact Form ─── */
.cll-contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 900px) {
  .cll-contact-layout { grid-template-columns: 1fr 380px; }
}

.cll-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cll-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .cll-form__row { grid-template-columns: 1fr; }
}
.cll-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cll-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--cll-fg-light-1);
  letter-spacing: 0.02em;
}
.cll-form__input,
.cll-form__select,
.cll-form__textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--cll-border-light);
  border-radius: var(--cll-radius-sm);
  background: var(--cll-bg-white);
  color: var(--cll-fg-light-1);
  font-size: 15px;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.cll-form__input:focus,
.cll-form__select:focus,
.cll-form__textarea:focus {
  outline: none;
  border-color: var(--cll-accent-aa-light);
  box-shadow: 0 0 0 3px rgba(26,107,163,0.12);
}
.cll-form__textarea {
  min-height: 120px;
  resize: vertical;
}
.cll-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%234B5563' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}
.cll-form__select option {
  background: #FFFFFF;
  color: var(--cll-fg-light-1);
}

.cll-contact-info {
  padding: 32px;
  background: var(--cll-bg-light);
  border-radius: var(--cll-radius-md);
  border: 1px solid var(--cll-border-light);
}
.cll-contact-info h3 {
  font-size: 17px;
  color: var(--cll-fg-light-1);
  margin-bottom: 20px;
}
.cll-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.cll-contact-info__icon {
  width: 20px;
  color: var(--cll-accent-aa-light);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 14px;
}
.cll-contact-info__text {
  font-size: 14px;
  color: var(--cll-fg-light-2);
  line-height: 1.5;
}
.cll-contact-info__text a {
  color: var(--cll-accent-aa-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── How it Works — Accordion ─── */
.cll-checks-accordion {
  border: 1px solid var(--cll-border-light);
  border-radius: var(--cll-radius-md);
  overflow: hidden;
}
.cll-checks-tab {
  border-bottom: 1px solid var(--cll-border-light);
}
.cll-checks-tab:last-child { border-bottom: none; }
.cll-checks-tab__trigger {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--cll-fg-light-1);
  text-align: left;
  gap: 16px;
  background: var(--cll-bg-white);
  transition: background 0.15s;
}
.cll-checks-tab__trigger:hover { background: var(--cll-bg-light); }
.cll-checks-tab.is-open .cll-checks-tab__trigger {
  background: var(--cll-bg-light);
  color: var(--cll-accent-aa-light);
}
.cll-checks-tab__body {
  display: none;
  padding: 0 24px 20px;
  background: var(--cll-bg-light);
}
.cll-checks-tab.is-open .cll-checks-tab__body { display: block; }
.cll-checks-tab__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cll-checks-tab__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--cll-fg-light-2);
}
.cll-checks-tab__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cll-accent-decorative);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ─── Data flow SVG diagram wrapper ─── */
.cll-dataflow-wrap {
  display: flex;
  justify-content: center;
  margin: 40px 0 0;
  overflow-x: auto;
}
.cll-dataflow-wrap svg {
  max-width: 100%;
}

/* ─── Breadcrumb ─── */
.cll-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--cll-fg-light-3);
  margin-bottom: 20px;
}
.cll-section--dark .cll-breadcrumb,
.cll-section--dark-alt .cll-breadcrumb {
  color: var(--cll-fg-dark-3);
}
.cll-breadcrumb a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cll-breadcrumb span { opacity: 0.6; }

/* ─── Use-case sub-pages ─── */
.cll-usecase-hero {
  padding: 72px 0 0;
}
.cll-usecase-hero__inner {
  max-width: var(--cll-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .cll-usecase-hero__inner { padding: 0 40px; }
}
.cll-usecase-hero__img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--cll-radius-md);
  margin-top: 40px;
  height: auto;
}

.cll-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}
.cll-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cll-benefit__icon {
  width: 36px;
  height: 36px;
  background: #EBF4FD;
  border-radius: var(--cll-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--cll-accent-aa-light);
  flex-shrink: 0;
}
.cll-benefit__content {}
.cll-benefit__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--cll-fg-light-1);
  margin-bottom: 4px;
}
.cll-benefit__desc {
  font-size: 14px;
  color: var(--cll-fg-light-2);
  line-height: 1.55;
}

/* ─── Footer ─── */
.cll-footer {
  background: var(--cll-bg-dark);
  padding: 64px 0 0;
  border-top: 1px solid var(--cll-border-dark);
}
.cll-footer__inner {
  max-width: var(--cll-container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .cll-footer__inner { padding: 0 40px; }
}
.cll-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .cll-footer__top {
    grid-template-columns: 240px repeat(3, 1fr);
    gap: 32px;
  }
}
.cll-footer__brand {}
.cll-footer__logo {
  height: 28px;
  width: auto;
  margin-bottom: 12px;
}
.cll-footer__tagline {
  font-size: 13px;
  color: var(--cll-fg-dark-3);
  line-height: 1.55;
}
.cll-footer__col {}
.cll-footer__col-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cll-fg-dark-2);
  margin-bottom: 14px;
}
.cll-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cll-footer__links a {
  font-size: 13px;
  color: var(--cll-fg-dark-3);
  transition: color 0.15s;
  text-decoration: none;
}
.cll-footer__links a:hover { color: var(--cll-fg-dark-1); }
.cll-footer__bottom {
  border-top: 1px solid var(--cll-border-dark);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cll-footer__copy {
  font-size: 12px;
  color: var(--cll-fg-dark-3);
}
.cll-footer__legal-links {
  display: flex;
  gap: 16px;
}
.cll-footer__legal-links a {
  font-size: 12px;
  color: var(--cll-fg-dark-3);
  transition: color 0.15s;
  text-decoration: none;
}
.cll-footer__legal-links a:hover { color: var(--cll-fg-dark-1); }

/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--cll-bg-dark-alt);
  border-top: 1px solid var(--cll-border-dark);
  padding: 16px 0;
}
.cookie-banner__inner {
  max-width: var(--cll-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .cookie-banner__inner { padding: 0 40px; }
}
.cookie-banner__text {
  flex: 1;
  font-size: 13px;
  color: var(--cll-fg-dark-2);
  min-width: 200px;
}
.cookie-banner__text a {
  color: var(--cll-accent-aa-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--cll-radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.cookie-banner__btn--primary {
  background: var(--cll-accent-aa-dark);
  color: var(--cll-brand-primary);
}
.cookie-banner__btn--primary:hover { background: #7CCEF2; }
.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--cll-fg-dark-2);
  border: 1px solid var(--cll-border-dark);
}
.cookie-banner__btn--secondary:hover { background: rgba(255,255,255,0.06); }

/* body padding when banner visible */
body.cookie-visible { padding-bottom: 64px; }

/* ─── Scroll fade-in ─── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─── Utility ─── */
.cll-text-center { text-align: center; }
.cll-mb-0 { margin-bottom: 0 !important; }
.cll-mt-24 { margin-top: 24px; }
.cll-mt-32 { margin-top: 32px; }
.cll-mt-48 { margin-top: 48px; }
.cll-mt-64 { margin-top: 64px; }
.cll-gap-8 { gap: 8px; }

/* ─── About Hartford section ─── */
.cll-hartford-wrap {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .cll-hartford-wrap { grid-template-columns: 1fr 1fr; align-items: center; }
}
.cll-hartford-img {
  width: 100%;
  height: auto;
  border-radius: var(--cll-radius-md);
  object-fit: cover;
  max-height: 340px;
}

/* ─── How it works — output mock ─── */
.cll-output-mock-wrap {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 768px) {
  .cll-output-mock-wrap { grid-template-columns: 1fr 1fr; }
}

/* ─── Security hero SVG wrapper ─── */
.cll-security-svg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Legal pages ─── */
.cll-legal-page {
  min-height: 100vh;
  background: var(--cll-bg-white);
}
.cll-legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
@media (min-width: 768px) {
  .cll-legal-content { padding: 72px 40px 96px; }
}
.cll-legal-content .legal-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cll-border-light);
}
.cll-legal-content .legal-header h1 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--cll-fg-light-1);
  margin-bottom: 12px;
}
.cll-legal-content .legal-meta {
  font-size: 13px;
  color: var(--cll-fg-light-3);
}
.cll-legal-content section {
  margin-bottom: 36px;
}
body.cll-page--light-top .cll-legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--cll-fg-light-1);
  margin-bottom: 12px;
  margin-top: 32px;
}
body.cll-page--light-top .cll-legal-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--cll-fg-light-1);
  margin-bottom: 8px;
  margin-top: 20px;
}
body.cll-page--light-top .cll-legal-content p {
  font-size: 15px;
  color: var(--cll-fg-light-2);
  line-height: 1.7;
  margin-bottom: 12px;
}
body.cll-page--light-top .cll-legal-content ul,
body.cll-page--light-top .cll-legal-content ol {
  margin: 12px 0 12px 20px;
}
body.cll-page--light-top .cll-legal-content li {
  font-size: 15px;
  color: var(--cll-fg-light-2);
  line-height: 1.65;
  list-style: disc;
  margin-bottom: 6px;
}
body.cll-page--light-top .cll-legal-content address {
  font-size: 14px;
  color: var(--cll-fg-light-2);
  line-height: 1.8;
  padding: 16px 20px;
  background: var(--cll-bg-light);
  border-radius: var(--cll-radius-sm);
  border: 1px solid var(--cll-border-light);
}
body.cll-page--light-top .cll-legal-content a {
  color: var(--cll-accent-aa-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.legal-table th, .legal-table td {
  border: 1px solid var(--cll-border-light);
  padding: 10px 14px;
  text-align: left;
}
.legal-table th {
  background: var(--cll-bg-light);
  font-weight: 600;
  color: var(--cll-fg-light-1);
}
.legal-table td { color: var(--cll-fg-light-2); }

/* Light-top page body bg */
body.cll-page--light-top {
  background: var(--cll-bg-white);
}

/* ─── Responsive utils ─── */
@media (max-width: 767px) {
  .cll-hide-mobile { display: none !important; }
}
@media (min-width: 768px) {
  .cll-hide-desktop { display: none !important; }
}
