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

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

:root {
  --ink-900: #1C1A2E;
  --ink-700: #2D2B4A;
  --ink-500: #4A4768;
  --ink-300: #8B89A8;
  --ink-100: #C7C6D8;
  --cream-base: #FBF8F4;
  --cream-warm: #F4EFE8;
  --cream-border: #E4DDD4;
  --canvas-white: #FFFFFF;
  --brand-orange: #F0651A;
  --brand-orange-hover: #D45514;
  --brand-orange-dim: #7A320D;
  --brand-orange-light: #FDE8DC;
  --brand-indigo: #3B37A0;
  --brand-indigo-light: #ECEAFC;
  --brand-indigo-dim: #2A2773;
  --signal-green: #27AE75;
  --signal-green-light: #D4F4E7;
  --signal-amber: #E8991A;
  --signal-red: #D94444;
  --text-on-dark-primary: #F7F5F2;
  --text-on-dark-secondary: #B8B4CC;
  --text-on-dark-muted: #6C698A;
  --text-on-light-primary: #1C1A2E;
  --text-on-light-secondary: #4A4768;
  --text-on-light-muted: #8B89A8;
  --section-v: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;
  --gap: 1.5rem;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text-on-light-primary);
  background: var(--cream-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.clz-page--dark-top {
  background: var(--ink-900);
}

body.clz-page--light-top {
  background: var(--cream-base);
}

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

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

ul { list-style: none; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', 'Georgia', serif;
  line-height: 1.15;
  font-weight: 700;
}

.clz-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.clz-section {
  padding-block: var(--section-v);
}

.clz-section--dark {
  background: var(--ink-900);
  color: var(--text-on-dark-primary);
}

.clz-section--dark-alt {
  background: var(--ink-700);
  color: var(--text-on-dark-primary);
}

.clz-section--brand {
  background: var(--brand-indigo);
  color: var(--text-on-dark-primary);
}

.clz-section--light {
  background: var(--cream-base);
  color: var(--text-on-light-primary);
}

.clz-section--cream {
  background: var(--cream-warm);
  color: var(--text-on-light-primary);
}

.clz-section--white {
  background: var(--canvas-white);
  color: var(--text-on-light-primary);
}

.clz-section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 0.75rem;
  display: block;
}

.clz-section-headline {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.clz-section-subhead {
  font-size: 1.125rem;
  color: var(--text-on-light-secondary);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.clz-section--dark .clz-section-subhead,
.clz-section--dark-alt .clz-section-subhead,
.clz-section--brand .clz-section-subhead {
  color: var(--text-on-dark-secondary);
}

.clz-section--dark .clz-section-headline,
.clz-section--dark-alt .clz-section-headline,
.clz-section--brand .clz-section-headline {
  color: var(--text-on-dark-primary);
}

.clz-text-center { text-align: center; }
.clz-text-center .clz-section-subhead { margin-inline: auto; }

.clz-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.clz-btn:hover { transform: translateY(-1px); }

.clz-btn--primary {
  background: var(--brand-orange);
  color: var(--canvas-white);
  border-color: var(--brand-orange);
}
.clz-btn--primary:hover { background: var(--brand-orange-hover); border-color: var(--brand-orange-hover); color: var(--canvas-white); }

.clz-btn--outline-dark {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-900);
}
.clz-btn--outline-dark:hover { background: var(--ink-900); color: var(--canvas-white); }

.clz-btn--outline-light {
  background: transparent;
  color: var(--text-on-dark-primary);
  border-color: var(--text-on-dark-primary);
}
.clz-btn--outline-light:hover { background: var(--text-on-dark-primary); color: var(--ink-900); }

.clz-btn--ghost-on-dark {
  background: transparent;
  color: var(--text-on-dark-primary);
  border-color: rgba(247, 245, 242, 0.35);
}
.clz-btn--ghost-on-dark:hover { background: rgba(247, 245, 242, 0.12); color: var(--text-on-dark-primary); border-color: rgba(247, 245, 242, 0.6); }

.clz-btn--ghost-on-light {
  background: transparent;
  color: var(--text-on-light-primary);
  border-color: var(--cream-border);
}
.clz-btn--ghost-on-light:hover { background: var(--cream-warm); color: var(--text-on-light-primary); }

.clz-btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.clz-btn--lg { padding: 1rem 2rem; font-size: 1.0625rem; }

.clz-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.clz-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.25s, box-shadow 0.25s;
}

.clz-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

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

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

.clz-nav__logo-light { display: block; }
.clz-nav__logo-dark { display: none; }

.clz-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.clz-nav__link {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-on-dark-primary);
  transition: color 0.15s;
  position: relative;
}

.clz-nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transition: transform 0.18s;
}

.clz-nav__link:hover { color: var(--brand-orange); }
.clz-nav__link:hover::after { transform: scaleX(1); }

.clz-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.clz-nav__signin {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-on-dark-primary);
  transition: color 0.15s;
}
.clz-nav__signin:hover { color: var(--brand-orange); }

.clz-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.clz-nav__hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-on-dark-primary);
  transition: transform 0.25s, opacity 0.25s, background 0.25s;
  border-radius: 1px;
}

.clz-nav--open .clz-nav__hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.clz-nav--open .clz-nav__hamburger-bar:nth-child(2) { opacity: 0; }
.clz-nav--open .clz-nav__hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.clz-page--light-top .clz-nav .clz-nav__logo-light { display: none; }
.clz-page--light-top .clz-nav .clz-nav__logo-dark { display: block; }
.clz-page--light-top .clz-nav .clz-nav__link { color: var(--text-on-light-primary); }
.clz-page--light-top .clz-nav .clz-nav__link:hover { color: var(--brand-indigo); }
.clz-page--light-top .clz-nav .clz-nav__signin { color: var(--text-on-light-primary); }
.clz-page--light-top .clz-nav .clz-nav__signin:hover { color: var(--brand-indigo); }
.clz-page--light-top .clz-nav .clz-nav__hamburger-bar { background: var(--ink-900); }

.clz-page--light-top .clz-nav {
  background: var(--cream-base);
  border-bottom: 1px solid var(--cream-border);
}

.clz-page--dark-top .clz-nav { background: transparent; }

.clz-nav--scrolled {
  background: var(--ink-900) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.clz-nav--scrolled .clz-nav__logo-light { display: block !important; }
.clz-nav--scrolled .clz-nav__logo-dark { display: none !important; }
.clz-nav--scrolled .clz-nav__link { color: var(--text-on-dark-primary) !important; }
.clz-nav--scrolled .clz-nav__link:hover { color: var(--brand-orange) !important; }
.clz-nav--scrolled .clz-nav__signin { color: var(--text-on-dark-primary) !important; }
.clz-nav--scrolled .clz-nav__hamburger-bar { background: var(--text-on-dark-primary) !important; }
.clz-nav--scrolled .clz-btn--outline-dark {
  color: var(--text-on-dark-primary) !important;
  border-color: rgba(247, 245, 242, 0.5) !important;
}
.clz-nav--scrolled .clz-btn--outline-dark:hover {
  background: rgba(247, 245, 242, 0.1) !important;
}

.clz-nav__mobile-menu {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--ink-900);
  padding: 1.5rem;
  border-top: 1px solid var(--ink-700);
  flex-direction: column;
  gap: 1.25rem;
}

.clz-nav--open .clz-nav__mobile-menu { display: flex; }

.clz-nav__mobile-link {
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--text-on-dark-primary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ink-700);
}

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

.clz-footer {
  background: var(--ink-900);
  color: var(--text-on-dark-secondary);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}

.clz-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.clz-footer__brand-logo {
  margin-bottom: 1rem;
}

.clz-footer__brand-logo img {
  height: 28px;
  width: auto;
}

.clz-footer__tagline {
  font-size: 0.9375rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 260px;
}

.clz-footer__social {
  display: flex;
  gap: 1rem;
}

.clz-footer__social-link {
  color: var(--text-on-dark-muted);
  font-size: 1.1rem;
  transition: color 0.15s;
}
.clz-footer__social-link:hover { color: var(--brand-orange); }

.clz-footer__col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-on-dark-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.clz-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.clz-footer__link {
  font-size: 0.9375rem;
  color: var(--text-on-dark-secondary);
  transition: color 0.15s;
}
.clz-footer__link:hover { color: var(--text-on-dark-primary); }

.clz-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--ink-700);
  flex-wrap: wrap;
  gap: 1rem;
}

.clz-footer__copy {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
}

.clz-footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.clz-footer__bottom-link {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  transition: color 0.15s;
}
.clz-footer__bottom-link:hover { color: var(--text-on-dark-secondary); }

.clz-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--ink-900);
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: var(--section-v);
}

.clz-hero__geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.clz-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.clz-hero__content {
  position: relative;
  z-index: 1;
}

.clz-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240, 101, 26, 0.12);
  border: 1px solid rgba(240, 101, 26, 0.3);
  border-radius: 100px;
  padding: 0.35rem 0.875rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--brand-orange);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.clz-hero__h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--text-on-dark-primary);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.clz-hero__h1 em {
  font-style: italic;
  color: var(--brand-orange);
}

.clz-hero__sub {
  font-size: 1.125rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.clz-hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clz-hero__raster {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 8px 24px rgba(0,0,0,0.3);
}

.clz-product-grid-mock {
  width: 100%;
  border-radius: var(--radius-lg);
  background: var(--ink-700);
  border: 1px solid var(--ink-500);
  padding: 1.5rem;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}

.clz-product-grid-mock__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--ink-500);
}

.clz-product-grid-mock__title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.clz-product-grid-mock__live {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  color: var(--signal-green);
}

.clz-product-grid-mock__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal-green);
  animation: clz-pulse 1.5s ease-in-out infinite;
}

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

.clz-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.clz-grid-card {
  background: var(--ink-900);
  border: 1px solid var(--ink-500);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.clz-grid-card__rank {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  margin-bottom: 0.4rem;
}

.clz-grid-card__rank--rising {
  color: var(--signal-green);
}

.clz-grid-card__color {
  height: 36px;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.clz-grid-card__name {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-on-dark-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clz-grid-card__score {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--brand-orange);
  color: var(--canvas-white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.5625rem;
  font-weight: 500;
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
}

.clz-grid-card--rank-change {
  border-color: var(--brand-orange);
  animation: clz-rank-flash 0.5s ease;
}

@keyframes clz-rank-flash {
  0% { background: rgba(240, 101, 26, 0.25); border-color: var(--brand-orange); }
  100% { background: var(--ink-900); }
}

.clz-proof-bar {
  background: var(--ink-700);
  padding-block: 2.5rem;
}

.clz-proof-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.clz-proof-stat {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid var(--ink-500);
}

.clz-proof-stat:last-child { border-right: none; }

.clz-proof-stat__value {
  font-family: 'Fraunces', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.clz-proof-stat__label {
  font-size: 0.875rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.4;
}

.clz-problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.clz-problem__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.clz-problem__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--cream-warm);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--brand-orange);
}

.clz-problem__item-icon {
  color: var(--brand-orange);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.clz-problem__item-text {
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
  line-height: 1.6;
}

.clz-before-after {
  background: var(--canvas-white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(28, 26, 46, 0.08);
}

.clz-before-after__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.clz-ba-col__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
}

.clz-ba-col__label--before {
  color: var(--ink-300);
  background: var(--cream-warm);
}

.clz-ba-col__label--after {
  color: var(--brand-orange);
  background: var(--brand-orange-light);
}

.clz-ba-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.clz-ba-mini-card {
  background: var(--cream-base);
  border: 1px solid var(--cream-border);
  border-radius: 4px;
  padding: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.5625rem;
  color: var(--text-on-light-muted);
  position: relative;
}

.clz-ba-mini-card--ranked {
  border-color: var(--brand-orange);
  background: var(--brand-orange-light);
  color: var(--brand-orange-dim);
}

.clz-ba-rank-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--brand-orange);
  color: white;
  font-size: 0.5rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clz-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.clz-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.66% + 1.5rem);
  right: calc(16.66% + 1.5rem);
  height: 1px;
  background: var(--cream-border);
}

.clz-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--canvas-white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  position: relative;
}

.clz-step__num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand-orange-light);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  opacity: 0.7;
}

.clz-step__icon {
  width: 44px;
  height: 44px;
  background: var(--brand-orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  font-size: 1.25rem;
}

.clz-step__title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
}

.clz-step__desc {
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
  line-height: 1.6;
}

.clz-features__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 1.5rem;
  margin-top: 3rem;
}

.clz-feature-card {
  background: var(--canvas-white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.clz-feature-card:hover {
  box-shadow: 0 8px 32px rgba(28, 26, 46, 0.1);
  transform: translateY(-2px);
}

.clz-feature-card--hero {
  grid-row: 1 / 4;
  background: var(--brand-indigo-light);
  border-color: var(--brand-indigo);
}

.clz-feature-card__tag {
  display: inline-flex;
  align-items: center;
  background: var(--brand-orange-light);
  color: var(--brand-orange);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  align-self: flex-start;
}

.clz-feature-card__title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  line-height: 1.25;
}

.clz-feature-card--hero .clz-feature-card__title {
  font-size: 1.6rem;
}

.clz-feature-card__desc {
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
  line-height: 1.65;
}

.clz-feature-card__mock {
  margin-top: auto;
  padding-top: 1.25rem;
}

.clz-rank-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.clz-rank-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.clz-rank-bar__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  color: var(--text-on-light-muted);
  width: 80px;
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clz-rank-bar__track {
  flex: 1;
  height: 8px;
  background: var(--cream-border);
  border-radius: 4px;
  overflow: hidden;
}

.clz-rank-bar__fill {
  height: 100%;
  border-radius: 4px;
  background: var(--brand-indigo);
  transition: width 1s ease;
}

.clz-rank-bar__fill--high { background: var(--brand-orange); }
.clz-rank-bar__fill--mid { background: var(--brand-indigo); }
.clz-rank-bar__fill--low { background: var(--ink-100); }

.clz-rank-bar__score {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--text-on-light-muted);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

.clz-integrations-teaser {
  position: relative;
  overflow: hidden;
}

.clz-integrations-teaser__geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.clz-integrations-teaser__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.clz-integrations-teaser__subhead {
  font-size: 1.125rem;
  color: var(--text-on-dark-secondary);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.clz-integration-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.clz-integration-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  padding: 0.625rem 1.25rem;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-on-dark-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.clz-integration-pill__dot {
  width: 8px;
  height: 8px;
  background: var(--brand-orange);
  border-radius: 50%;
}

.clz-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.clz-testimonial-card {
  background: var(--canvas-white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 2px 16px rgba(28, 26, 46, 0.06);
}

.clz-testimonial-card__quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  color: var(--brand-orange-light);
  line-height: 1;
  margin-bottom: -1rem;
}

.clz-testimonial-card__quote {
  font-size: 1.0625rem;
  color: var(--text-on-light-primary);
  line-height: 1.7;
  font-style: italic;
}

.clz-testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-border);
}

.clz-testimonial-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-on-light-primary);
}

.clz-testimonial-card__role {
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
}

.clz-pricing-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.clz-pricing-card {
  background: var(--canvas-white);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  transition: box-shadow 0.2s;
}

.clz-pricing-card:hover { box-shadow: 0 8px 32px rgba(28, 26, 46, 0.1); }

.clz-pricing-card--featured {
  border-color: var(--brand-indigo);
  box-shadow: 0 0 0 3px var(--brand-indigo-light);
}

.clz-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-indigo);
  color: white;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.2rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
}

.clz-pricing-card__name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
}

.clz-pricing-card__price {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  line-height: 1;
}

.clz-pricing-card__price-period {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-on-light-muted);
}

.clz-pricing-card__cap {
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-border);
}

.clz-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.clz-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-on-light-secondary);
  line-height: 1.4;
}

.clz-pricing-card__feature-icon {
  color: var(--signal-green);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.clz-pricing-card__cta {
  margin-top: 1.5rem;
  display: block;
  text-align: center;
}

.clz-final-cta {
  background: var(--brand-indigo);
  overflow: hidden;
  position: relative;
}

.clz-final-cta__geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.clz-final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.clz-final-cta__headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-on-dark-primary);
  margin-bottom: 1rem;
}

.clz-final-cta__sub {
  font-size: 1.0625rem;
  color: var(--text-on-dark-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.clz-page-hero {
  padding-top: calc(68px + var(--section-v));
  padding-bottom: var(--section-v);
}

.clz-page-hero--light {
  background: var(--cream-base);
}

.clz-page-hero--cream {
  background: var(--cream-warm);
}

.clz-page-hero--dark {
  background: var(--ink-900);
}

.clz-page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.clz-page-hero__content {}

.clz-page-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--text-on-light-primary);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.clz-page-hero--dark .clz-page-hero__title {
  color: var(--text-on-dark-primary);
}

.clz-page-hero__sub {
  font-size: 1.0625rem;
  color: var(--text-on-light-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.clz-page-hero--dark .clz-page-hero__sub {
  color: var(--text-on-dark-secondary);
}

.clz-page-hero--single-col .clz-page-hero__inner {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.clz-deep-dive__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 3rem;
  border-bottom: 1px solid var(--cream-border);
}

.clz-deep-dive__item:last-child { border-bottom: none; }

.clz-deep-dive__item--reverse {
  direction: rtl;
}
.clz-deep-dive__item--reverse > * { direction: ltr; }

.clz-deep-dive__title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-bottom: 0.75rem;
}

.clz-deep-dive__desc {
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.clz-deep-dive__points {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.clz-deep-dive__point {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-on-light-secondary);
}

.clz-deep-dive__point-icon {
  color: var(--brand-orange);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.clz-metric-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.clz-metric-tile {
  background: var(--canvas-white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
}

.clz-metric-tile__value {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-indigo);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.clz-metric-tile__label {
  font-size: 0.875rem;
  color: var(--text-on-light-secondary);
  line-height: 1.4;
}

.clz-arch-diagram {
  background: var(--ink-700);
  border: 1px solid var(--ink-500);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.clz-arch-node {
  text-align: center;
  flex: 1;
}

.clz-arch-node__icon {
  width: 56px;
  height: 56px;
  background: var(--ink-500);
  border: 1px solid var(--ink-300);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 0.75rem;
  color: var(--text-on-dark-secondary);
  font-size: 1.375rem;
}

.clz-arch-node__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-on-dark-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.clz-arch-node__sublabel {
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
  margin-top: 0.25rem;
}

.clz-arch-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

.clz-arch-arrow__line {
  width: 60px;
  height: 2px;
  background: var(--brand-orange);
  position: relative;
}

.clz-arch-arrow__line::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -4px;
  border: 5px solid transparent;
  border-left: 7px solid var(--brand-orange);
}

.clz-arch-arrow__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.5625rem;
  color: var(--brand-orange);
}

.clz-faq {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.clz-faq__item {
  border-bottom: 1px solid var(--cream-border);
}

.clz-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-on-light-primary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.clz-faq__icon {
  color: var(--brand-orange);
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: transform 0.25s;
}

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

.clz-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.clz-faq__answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
  line-height: 1.7;
}

.clz-hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.clz-hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}

.clz-hiw-step__num {
  width: 64px;
  height: 64px;
  background: var(--brand-indigo);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.clz-hiw-step__content {}

.clz-hiw-step__title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-bottom: 0.625rem;
}

.clz-hiw-step__desc {
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
  line-height: 1.7;
}

.clz-code-block {
  background: var(--ink-900);
  border: 1px solid var(--ink-500);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  overflow-x: auto;
  margin-top: 1rem;
}

.clz-code-block pre {
  margin: 0;
}

.clz-code-block code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.8;
}

.clz-code-keyword { color: #C084FC; }
.clz-code-string { color: #86EFAC; }
.clz-code-attr { color: #7DD3FC; }
.clz-code-comment { color: var(--text-on-dark-muted); }
.clz-code-value { color: var(--brand-orange); }
.clz-code-key { color: #FDE68A; }

.clz-layer-diagram {
  background: var(--canvas-white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.clz-layer {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.clz-layer--base {
  background: var(--brand-indigo-light);
  border: 1px solid var(--brand-indigo);
}

.clz-layer--rules {
  background: var(--brand-orange-light);
  border: 1px solid var(--brand-orange);
}

.clz-layer--output {
  background: var(--signal-green-light);
  border: 1px solid var(--signal-green);
}

.clz-layer__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.clz-layer--base .clz-layer__icon { color: var(--brand-indigo); }
.clz-layer--rules .clz-layer__icon { color: var(--brand-orange); }
.clz-layer--output .clz-layer__icon { color: var(--signal-green); }

.clz-layer__title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-on-light-primary);
}

.clz-layer__desc {
  font-size: 0.8125rem;
  color: var(--text-on-light-secondary);
}

.clz-experiment-mock {
  background: var(--ink-700);
  border: 1px solid var(--ink-500);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.clz-experiment-mock__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.clz-experiment-mock__title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  color: var(--text-on-dark-secondary);
}

.clz-experiment-mock__status {
  background: var(--signal-green);
  color: white;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.clz-experiment-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.clz-experiment-row {
  display: grid;
  grid-template-columns: 1fr 3fr auto;
  gap: 1rem;
  align-items: center;
}

.clz-experiment-row__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  color: var(--text-on-dark-secondary);
}

.clz-experiment-row__bar-track {
  height: 10px;
  background: var(--ink-500);
  border-radius: 5px;
  overflow: hidden;
}

.clz-experiment-row__bar-fill {
  height: 100%;
  border-radius: 5px;
}
.clz-experiment-row__bar-fill--a { background: var(--brand-indigo); width: 63%; }
.clz-experiment-row__bar-fill--b { background: var(--brand-orange); width: 82%; }

.clz-experiment-row__value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-on-dark-primary);
  white-space: nowrap;
}

.clz-int-platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.clz-platform-card {
  background: var(--canvas-white);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.clz-platform-card:hover {
  box-shadow: 0 8px 32px rgba(28, 26, 46, 0.1);
  transform: translateY(-2px);
}

.clz-platform-card__icon {
  width: 56px;
  height: 56px;
  background: var(--brand-indigo-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  color: var(--brand-indigo);
  font-size: 1.5rem;
}

.clz-platform-card__name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-bottom: 0.5rem;
}

.clz-platform-card__desc {
  font-size: 0.875rem;
  color: var(--text-on-light-secondary);
  line-height: 1.6;
}

.clz-marketing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.clz-marketing-card {
  background: var(--canvas-white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
}

.clz-marketing-card__icon {
  width: 44px;
  height: 44px;
  background: var(--brand-orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.clz-marketing-card__content {}

.clz-marketing-card__name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-on-light-primary);
  margin-bottom: 0.375rem;
}

.clz-marketing-card__desc {
  font-size: 0.875rem;
  color: var(--text-on-light-secondary);
  line-height: 1.6;
}

.clz-api-block {
  background: var(--ink-700);
  border: 1px solid var(--ink-500);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.clz-api-block__tab {
  background: var(--ink-900);
  padding: 0.75rem 1.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
  border-bottom: 1px solid var(--ink-500);
  display: flex;
  gap: 1rem;
}

.clz-api-block__tab-item {
  color: var(--brand-orange);
}

.clz-api-block__body {
  padding: 1.5rem;
}

.clz-api-block code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.8;
}

.clz-pricing-tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.clz-pricing-tier {
  background: var(--canvas-white);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.clz-pricing-tier--featured {
  border-color: var(--brand-indigo);
  box-shadow: 0 0 0 4px var(--brand-indigo-light);
}

.clz-pricing-tier__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-indigo);
  color: white;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.2rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
}

.clz-pricing-tier__name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
}

.clz-pricing-tier__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.clz-pricing-tier__price-num {
  font-family: 'Fraunces', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  line-height: 1;
}

.clz-pricing-tier__price-period {
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
}

.clz-pricing-tier__cap {
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-border);
}

.clz-pricing-tier__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.clz-pricing-tier__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-on-light-secondary);
  line-height: 1.45;
}

.clz-pricing-tier__feature i {
  color: var(--signal-green);
  font-size: 0.8125rem;
  flex-shrink: 0;
  margin-top: 0.175rem;
}

.clz-pricing-tier__cta {
  margin-top: 1rem;
  display: block;
  text-align: center;
}

.clz-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.clz-pricing-toggle__label {
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
}

.clz-pricing-toggle__label--active {
  color: var(--text-on-light-primary);
  font-weight: 600;
}

.clz-pricing-toggle__switch {
  width: 44px;
  height: 24px;
  background: var(--brand-indigo);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}

.clz-pricing-toggle__switch::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
}

.clz-pricing-toggle__switch--annual::after { transform: translateX(20px); }

.clz-pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
  margin-top: 1.5rem;
}

.clz-about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.clz-about-story__text {
  font-size: 1.0625rem;
  color: var(--text-on-light-secondary);
  line-height: 1.8;
}

.clz-about-story__portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 16px 48px rgba(28, 26, 46, 0.15);
}

.clz-about-story__portrait img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
}

.clz-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.clz-value-card {
  background: var(--canvas-white);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.clz-value-card__num {
  font-family: 'Fraunces', serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-orange);
  margin-bottom: 0.75rem;
}

.clz-value-card__title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-bottom: 0.75rem;
}

.clz-value-card__desc {
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
  line-height: 1.65;
}

.clz-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.clz-team-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.clz-team-card__portrait {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.clz-team-card__portrait img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
}

.clz-team-card__name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
}

.clz-team-card__role {
  font-size: 0.875rem;
  color: var(--brand-orange);
  font-weight: 500;
  margin-top: -0.5rem;
}

.clz-team-card__bio {
  font-size: 0.9rem;
  color: var(--text-on-light-secondary);
  line-height: 1.6;
}

.clz-location-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.clz-location-band__title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-on-dark-primary);
  margin-bottom: 1rem;
}

.clz-location-band__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.clz-location-band__item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text-on-dark-secondary);
}

.clz-location-band__item i {
  color: var(--brand-orange);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.clz-location-band__map-placeholder {
  background: var(--ink-700);
  border: 1px solid var(--ink-500);
  border-radius: var(--radius-lg);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-on-dark-muted);
}

.clz-location-band__map-placeholder i {
  font-size: 2rem;
  color: var(--brand-indigo);
}

.clz-location-band__map-placeholder p {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
}

.clz-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.clz-contact-form {}

.clz-form-group {
  margin-bottom: 1.25rem;
}

.clz-form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-on-light-primary);
  margin-bottom: 0.4rem;
}

.clz-form-input,
.clz-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-on-light-primary);
  background: var(--canvas-white);
  transition: border-color 0.18s, box-shadow 0.18s;
}

.clz-form-input:focus,
.clz-form-textarea:focus {
  outline: none;
  border-color: var(--brand-indigo);
  box-shadow: 0 0 0 3px var(--brand-indigo-light);
}

.clz-form-textarea { min-height: 130px; resize: vertical; }

.clz-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.clz-contact-info__title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-bottom: 0.5rem;
}

.clz-contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.clz-contact-info__item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
}

.clz-contact-info__item i {
  color: var(--brand-orange);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.clz-blog-hero {
  padding-top: calc(68px + 4rem);
  padding-bottom: 3rem;
}

.clz-blog-grid__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.clz-blog-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  background: var(--canvas-white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}

.clz-blog-featured__cover {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.clz-blog-featured__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: auto;
}

.clz-blog-featured__content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.clz-blog-featured__tag {
  display: inline-flex;
  align-items: center;
  background: var(--brand-orange-light);
  color: var(--brand-orange);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  align-self: flex-start;
}

.clz-blog-featured__title {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  line-height: 1.25;
}

.clz-blog-featured__excerpt {
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
  line-height: 1.65;
}

.clz-blog-featured__meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
  padding-top: 0.75rem;
  border-top: 1px solid var(--cream-border);
}

.clz-blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.clz-blog-card {
  background: var(--canvas-white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.clz-blog-card:hover {
  box-shadow: 0 8px 32px rgba(28, 26, 46, 0.1);
  transform: translateY(-2px);
}

.clz-blog-card__cover {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream-warm);
}

.clz-blog-card__cover img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.clz-blog-card__tag {
  display: inline-flex;
  align-items: center;
  background: var(--brand-orange-light);
  color: var(--brand-orange);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.175rem 0.5rem;
  border-radius: 100px;
  align-self: flex-start;
}

.clz-blog-card__title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  line-height: 1.3;
}

.clz-blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-on-light-secondary);
  line-height: 1.6;
}

.clz-blog-card__meta {
  display: flex;
  gap: 0.875rem;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-on-light-muted);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-border);
}

.clz-article-hero {
  padding-top: calc(68px + 3rem);
  padding-bottom: 3rem;
  background: var(--cream-warm);
}

.clz-article-hero__inner {
  max-width: 820px;
  margin-inline: auto;
}

.clz-article-hero__tag {
  display: inline-flex;
  align-items: center;
  background: var(--brand-orange-light);
  color: var(--brand-orange);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.clz-article-hero__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-on-light-primary);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.clz-article-hero__meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
}

.clz-article-cover {
  background: var(--canvas-white);
  padding-block: 2rem 0;
}

.clz-article-cover__img {
  max-width: 900px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.clz-article-cover__img img {
  width: 100%;
  height: auto;
  display: block;
}

.clz-article-body-section {
  background: var(--canvas-white);
  padding-block: 3rem 5rem;
}

.clz-article-body {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.clz-article-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
}

.clz-article-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-top: 2rem;
  margin-bottom: 0.625rem;
}

.clz-article-body p {
  font-size: 1rem;
  color: var(--text-on-light-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.clz-article-body ul,
.clz-article-body ol {
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}

.clz-article-body ul { list-style: disc; }
.clz-article-body ol { list-style: decimal; }

.clz-article-body li {
  font-size: 1rem;
  color: var(--text-on-light-secondary);
  line-height: 1.75;
  margin-bottom: 0.375rem;
}

.clz-article-body blockquote {
  border-left: 3px solid var(--brand-orange);
  padding-left: 1.5rem;
  margin-block: 2rem;
  font-size: 1.0625rem;
  color: var(--text-on-light-primary);
  font-style: italic;
  line-height: 1.7;
}

.clz-article-body pre {
  background: var(--ink-900);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  overflow-x: auto;
  margin-block: 1.5rem;
}

.clz-article-body pre code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.8;
  background: transparent;
  border: none;
  padding: 0;
}

.clz-article-body code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875em;
  background: var(--cream-warm);
  color: var(--brand-indigo);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

.clz-article-body img {
  max-width: 100%;
  border-radius: var(--radius-md);
  margin-block: 2rem;
}

.clz-article-related {
  background: var(--cream-warm);
  padding-block: 4rem;
}

.clz-auth-page {
  min-height: 100svh;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.clz-auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--canvas-white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(28, 26, 46, 0.12);
}

.clz-auth-brand-strip {
  background: var(--brand-indigo);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clz-auth-brand-strip__logo {
  height: 26px;
  width: auto;
}

.clz-auth-brand-strip__tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  color: rgba(247, 245, 242, 0.6);
}

.clz-auth-card__body {
  padding: 2.5rem 2rem;
}

.clz-auth-card__title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-bottom: 0.375rem;
}

.clz-auth-card__subtitle {
  font-size: 0.9rem;
  color: var(--text-on-light-muted);
  margin-bottom: 2rem;
}

.clz-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.clz-auth-form .clz-form-group {
  margin-bottom: 0;
}

.clz-auth-form .clz-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.clz-auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-border);
}

.clz-auth-link {
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
}

.clz-auth-link a {
  color: var(--brand-indigo);
  font-weight: 500;
}

.clz-auth-link a:hover { text-decoration: underline; }

.clz-auth-legal {
  padding: 1rem 2rem 1.5rem;
  text-align: center;
}

.clz-auth-legal p {
  font-size: 0.8125rem;
  color: var(--text-on-light-muted);
}

.clz-auth-legal a {
  color: var(--brand-indigo);
}

.clz-legal-page {
  padding-top: calc(68px + 3rem);
  padding-bottom: 5rem;
}

.clz-legal-page main {
  background: var(--canvas-white);
}

.clz-legal-container {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.clz-legal-article .legal-article {
  max-width: 800px;
  margin-inline: auto;
}

.legal-article {
  padding-block: 3rem 5rem;
}

.legal-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-border);
}

.legal-header h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-bottom: 0.5rem;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
}

.legal-article section {
  margin-bottom: 2rem;
}

.legal-article h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

.legal-article h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-on-light-primary);
  margin-bottom: 0.5rem;
  margin-top: 1.25rem;
}

.legal-article p {
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
  line-height: 1.75;
  margin-bottom: 0.875rem;
}

.legal-article ul, .legal-article ol {
  padding-left: 1.75rem;
  margin-bottom: 0.875rem;
}

.legal-article ul { list-style: disc; }
.legal-article ol { list-style: decimal; }

.legal-article li {
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
  line-height: 1.7;
  margin-bottom: 0.375rem;
}

.legal-article address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--text-on-light-secondary);
  line-height: 1.8;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.legal-table th {
  background: var(--cream-warm);
  color: var(--text-on-light-primary);
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--cream-border);
}

.legal-table td {
  padding: 0.75rem 1rem;
  color: var(--text-on-light-secondary);
  border-bottom: 1px solid var(--cream-border);
}

.legal-article a {
  color: var(--brand-indigo);
  text-decoration: underline;
}

.clz-docs-hero {
  padding-top: calc(68px + var(--section-v));
  padding-bottom: var(--section-v);
  background: var(--cream-warm);
}

.clz-docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  padding-top: 3rem;
  align-items: start;
}

.clz-docs-sidebar {
  position: sticky;
  top: 88px;
}

.clz-docs-sidebar__section {
  margin-bottom: 1.5rem;
}

.clz-docs-sidebar__title {
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-light-muted);
  margin-bottom: 0.5rem;
}

.clz-docs-sidebar__link {
  display: block;
  font-size: 0.9rem;
  color: var(--text-on-light-secondary);
  padding: 0.3rem 0;
  transition: color 0.15s;
}
.clz-docs-sidebar__link:hover, .clz-docs-sidebar__link--active { color: var(--brand-indigo); }

.clz-changelog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.clz-changelog-entry {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--cream-border);
}

.clz-changelog-entry:last-child { border-bottom: none; }

.clz-changelog-entry__date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  color: var(--text-on-light-muted);
  padding-top: 0.25rem;
}

.clz-changelog-entry__title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-bottom: 0.5rem;
}

.clz-changelog-entry__desc {
  font-size: 0.9rem;
  color: var(--text-on-light-secondary);
  line-height: 1.65;
}

.clz-section-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--ink-900);
  border-top: 1px solid var(--ink-700);
}

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

.cookie-banner__text {
  font-size: 0.875rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.5;
}

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

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

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  background: transparent;
  color: var(--text-on-dark-primary);
  border: 1.5px solid rgba(247, 245, 242, 0.4);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
}

.cookie-banner__btn:hover {
  background: rgba(247, 245, 242, 0.1);
}

@keyframes clz-fade-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.clz-fade-in {
  opacity: 0;
  animation: clz-fade-in 0.55s ease forwards;
}

.clz-fade-in--d1 { animation-delay: 0.1s; }
.clz-fade-in--d2 { animation-delay: 0.25s; }
.clz-fade-in--d3 { animation-delay: 0.4s; }

.clz-observe {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.clz-observe--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .clz-hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .clz-hero__sub { max-width: 100%; }
  .clz-hero__raster { display: none; }
  .clz-proof-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .clz-proof-stat { border-right: none; border-bottom: 1px solid var(--ink-500); }
  .clz-proof-stat:nth-child(even) { border-right: none; }
  .clz-problem__grid { grid-template-columns: 1fr; gap: 3rem; }
  .clz-page-hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .clz-features__layout { grid-template-columns: 1fr; }
  .clz-feature-card--hero { grid-row: auto; }
  .clz-metric-tiles { grid-template-columns: repeat(2, 1fr); }
  .clz-about-story__grid { grid-template-columns: 1fr; gap: 2rem; }
  .clz-values-grid { grid-template-columns: 1fr 1fr; }
  .clz-team-grid { grid-template-columns: 1fr 1fr; }
  .clz-pricing-tiers__grid { grid-template-columns: 1fr 1fr; }
  .clz-pricing-preview__grid { grid-template-columns: 1fr 1fr; }
  .clz-blog-featured { grid-template-columns: 1fr; }
  .clz-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .clz-nav__links { display: none; }
  .clz-nav__actions { display: none; }
  .clz-nav__hamburger { display: flex; }
  .clz-steps { grid-template-columns: 1fr; }
  .clz-steps::before { display: none; }
  .clz-testimonials__grid { grid-template-columns: 1fr; }
  .clz-int-platform-cards { grid-template-columns: 1fr; }
  .clz-marketing-grid { grid-template-columns: 1fr; }
  .clz-contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .clz-location-band { grid-template-columns: 1fr; gap: 2rem; }
  .clz-deep-dive__item { grid-template-columns: 1fr; gap: 2rem; }
  .clz-deep-dive__item--reverse { direction: ltr; }
  .clz-arch-diagram { flex-direction: column; }
  .clz-arch-arrow__line { width: 2px; height: 40px; }
  .clz-arch-arrow__line::after {
    right: -4px;
    top: auto;
    bottom: -1px;
    border: 5px solid transparent;
    border-top: 7px solid var(--brand-orange);
    border-left: none;
  }
  .clz-values-grid { grid-template-columns: 1fr; }
  .clz-team-grid { grid-template-columns: 1fr; }
  .clz-pricing-tiers__grid { grid-template-columns: 1fr; }
  .clz-pricing-preview__grid { grid-template-columns: 1fr; }
  .clz-blog-cards-grid { grid-template-columns: 1fr; }
  .clz-footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .clz-footer__bottom { flex-direction: column; align-items: flex-start; }
  .clz-hiw-step { grid-template-columns: 1fr; }
  .clz-hiw-step__num { width: 48px; height: 48px; font-size: 1.25rem; }
  .clz-docs-layout { grid-template-columns: 1fr; }
  .clz-docs-sidebar { position: static; }
  .clz-proof-bar__grid { grid-template-columns: 1fr 1fr; }
  .clz-metric-tiles { grid-template-columns: 1fr; }
  .clz-about-story__grid { grid-template-columns: 1fr; }
  .clz-changelog-entry { grid-template-columns: 1fr; gap: 0.5rem; }
  .clz-experiment-row { grid-template-columns: 1fr 2fr auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
