/* ==========================================================================
   /about.html — page-specific styles
   --------------------------------------------------------------------------
   Namespace: .ab-*  (about page).
   The page is self-contained: it does not lean on .sec or .lp-shell because
   it alternates full-bleed background tints between sections, which the
   .sec primitive (max-width: 1200px) can't do without breaking out of its
   shell. .ab-section is the full-bleed wrapper; .ab-section__inner is the
   1200px constraint.
   ========================================================================== */

/* ---- Full-bleed section primitives -------------------------------------- */

.ab-section {
  border-top: var(--border-thin);
  padding: 56px var(--space-5);
}
.ab-section--tint { background: var(--color-bg-tint); }
.ab-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Hero gets a subtle vertical wash from white into the tinted section
   below. Because both this and the next section are full-bleed, the
   gradient extends edge-to-edge and reads as a continuous background. */
.ab-hero {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-tint) 100%);
  border-top: none;
  padding-top: 80px;
  padding-bottom: 64px;
}

/* ---- Shared eyebrow / heading rhythm ------------------------------------ */

.ab-eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}
.ab-eyebrow--teal { color: var(--color-teal-600); }

.ab-h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-navy-800);
}

.ab-lede {
  margin: 0 0 28px;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

/* ---- 1. Hero ------------------------------------------------------------- */

.ab-hero__h1 {
  margin: 0 0 18px;
  max-width: 820px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-navy-800);
}

.ab-hero__lede {
  margin: 0 0 28px;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.ab-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.ab-btn--primary {
  background: var(--color-navy-800);
  color: white;
  border: 0.5px solid var(--color-navy-800);
}
.ab-btn--primary:hover {
  background: var(--color-navy-700);
  border-color: var(--color-navy-700);
}
.ab-btn--secondary {
  background: var(--color-bg);
  color: var(--color-navy-800);
  border: 0.5px solid var(--color-border);
}
.ab-btn--secondary:hover {
  border-color: var(--color-navy-800);
}

/* ---- 2. By the numbers --------------------------------------------------- */

.ab-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.ab-stat {
  background: var(--color-bg);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.ab-stat__num {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-navy-800);
  font-feature-settings: 'tnum';
}
.ab-stat__label {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.ab-stats__callout {
  margin: 24px 0 0;
  padding: 12px 16px;
  background: var(--color-teal-50);
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-secondary);
}
.ab-stats__callout strong {
  color: var(--color-teal-1000);
  font-weight: 500;
}
.ab-stats__callout a {
  color: var(--color-teal-1000);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.ab-stats__callout a:hover { text-decoration-thickness: 2px; }

/* ---- 3. Our story (asymmetric two-column) ------------------------------- */

.ab-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.ab-story__h {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-navy-800);
}

.ab-story__body {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.ab-story__card {
  background: var(--color-bg-tint);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.ab-story__p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}
.ab-story__p:last-child { margin-bottom: 0; }
.ab-story__p--strong {
  color: var(--color-navy-800);
  font-weight: 500;
}

/* ---- 4. What we built differently --------------------------------------- */

.ab-choices__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.ab-choice {
  background: var(--color-bg);
  border: var(--border-thin);
  border-left: 3px solid var(--color-teal-600);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.ab-choice__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal-1000);
}
.ab-choice__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-navy-800);
}
.ab-choice__body {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}
.ab-choice__cb {
  margin: auto 0 0;
  padding-top: 14px;
  border-top: var(--border-thin);
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-tertiary);
}
.ab-choice__cb strong {
  color: var(--color-teal-1000);
  font-weight: 500;
}
.ab-choice__link {
  color: var(--color-teal-900);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.ab-choice__link:hover { text-decoration: underline; }

/* ---- 5. Leadership ------------------------------------------------------ */

.ab-leaders__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.ab-leader {
  background: var(--color-bg);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.ab-leader__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.ab-leader__photo {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-teal-50);
}
.ab-leader__name {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-navy-800);
  line-height: 1.3;
}
.ab-leader__role {
  font-size: 13px;
  color: var(--color-text-secondary);
}
.ab-leader__bio {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

/* ---- 6. What Etlworks isn't --------------------------------------------- */

.ab-isnt__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.ab-isnt__card {
  background: var(--color-bg);
  border: var(--border-thin);
  /* Deliberate gray (not red) — this section is "honest scope," not
     a list of weaknesses. Same visual treatment as the AI-agent page
     "Simba isn't trying to" cards. */
  border-left: 3px solid var(--color-text-tertiary);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.ab-isnt__title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-navy-800);
}
.ab-isnt__body {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* ---- 7. Footer CTA (dark navy, left-aligned) ---------------------------- */

.ab-cta {
  background: var(--color-navy-800);
  padding: 72px var(--space-5);
}
.ab-cta__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.ab-cta__h {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: white;
}
.ab-cta__lede {
  margin: 0 0 24px;
  max-width: 600px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-on-navy-muted);
}
.ab-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ab-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.ab-cta__btn--primary {
  background: var(--color-bg);
  color: var(--color-navy-800);
  border: 0.5px solid var(--color-bg);
}
.ab-cta__btn--primary:hover { background: var(--color-bg-tint); }
.ab-cta__btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
}
.ab-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.30);
}

/* ---- Responsive --------------------------------------------------------- */

@media (max-width: 1000px) {
  .ab-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ab-choices__grid { grid-template-columns: 1fr; }
  .ab-story__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ab-leaders__grid { grid-template-columns: 1fr; }
  .ab-isnt__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .ab-section { padding: 40px 20px; }
  .ab-hero { padding: 56px 20px 48px; }
  .ab-hero__h1 { font-size: 32px; line-height: 1.15; }
  .ab-hero__lede { font-size: 15px; }
  .ab-stats__grid { grid-template-columns: 1fr; }
  .ab-stat { padding: 20px; }
  .ab-stat__num { font-size: 28px; }
  .ab-story__card { padding: 24px; }
  .ab-cta { padding: 56px 20px; }
}
