/* ClerkMinutes — /about, hand-built page.
   Loads after /assets/site/404/404.css, which supplies the shared hand-built chrome:
   base typography, .cm-header / .cm-nav, .cm-footer, .cm-skip, and .cm-tel.

   Everything below is .ab-* — this page only. Colors and the FAQ accordion follow the
   same values /office-hours uses (design-system/tokens): Ink #0A0A0F on Paper #FAFAFB,
   Plus Jakarta Sans, ice-blue #F0F6FE FAQ cards with the #5B8DEF toggle. */

:root {
  --ab-ink: #0A0A0F;
  --ab-slate: #55555F;
  --ab-muted: #6E6E78;
  --ab-paper: #FAFAFB;
  --ab-surface: #FFFFFF;
  --ab-border: #E8E8EC;
  --ab-divider: #F0F0F3;
  --ab-accent: #E94FA5;       /* decorative only (map dot, card rails) */
  --ab-accent-text: #CE2F86;  /* darkened to 4.8:1 so eyebrows pass WCAG AA */
  --ab-cyan: #00C4FF;
  --ab-faq-fill: #F0F6FE;
  --ab-faq-toggle: #5B8DEF;
  --ab-faq-answer: #3A3A44;
  --ab-gradient: linear-gradient(135deg, #00C4FF, #FF3EA5);
  --ab-gradient-soft: linear-gradient(160deg, #DFF6FF, #FFE3F1);
}

/* ---------- Page shell ---------- */
.ab-main { flex: 1 0 auto; width: 100%; color: var(--ab-ink); }
.ab-section { padding: 72px 24px; }
.ab-section--tint { background: var(--ab-paper); }
.ab-in { width: 100%; max-width: 1120px; margin: 0 auto; }
.ab-in--narrow { max-width: 820px; }
.ab-section > .ab-in > h2 { margin-bottom: 12px; }

.ab-eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ab-accent-text); margin: 0 0 14px;
}
.ab-lead { font-size: 19px; line-height: 1.6; color: var(--ab-slate); max-width: 62ch; }

/* ---------- Hero ---------- */
.ab-hero { padding: 64px 24px 56px; background: var(--ab-gradient-soft); text-align: center; }
.ab-hero h1 { font-size: clamp(34px, 4.6vw, 54px); letter-spacing: -0.03em; margin: 0 auto 18px; max-width: 20ch; }
.ab-hero .ab-lead { margin: 0 auto 16px; font-size: 19px; color: #3A3A44; max-width: 58ch; }
.ab-hero .ab-lead:last-of-type { margin-bottom: 0; }

/* ---------- Founders ---------- */
.ab-founders {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px; margin-top: 36px;
}
.ab-founder {
  background: var(--ab-surface); border: 1px solid var(--ab-border); border-radius: 24px;
  padding: 32px; text-align: center;
}
.ab-founder__img {
  display: block; width: 200px; height: 200px; margin: 0 auto 20px;
  border-radius: 50%; object-fit: cover; object-position: top;
  background: var(--ab-divider); box-shadow: 0 14px 36px rgba(10, 10, 15, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ab-founder:hover .ab-founder__img, .ab-founder:focus-within .ab-founder__img {
  transform: scale(1.07); box-shadow: 0 20px 44px rgba(10, 10, 15, 0.2);
}
@media (prefers-reduced-motion: reduce) {
  .ab-founder__img { transition: none; }
  .ab-founder:hover .ab-founder__img, .ab-founder:focus-within .ab-founder__img { transform: none; }
}
.ab-founder h3 { font-size: 22px; margin-bottom: 2px; }
.ab-founder__role { font-size: 14px; font-weight: 700; color: var(--ab-accent-text); margin: 0 0 14px; }
.ab-founder p { font-size: 15px; line-height: 1.65; color: var(--ab-slate); max-width: 40ch; margin: 0 auto 16px; }
.ab-founder__link { font-size: 14px; font-weight: 700; }

/* ---------- Brands ---------- */
.ab-brands {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px; margin-top: 36px;
}
.ab-brand {
  background: var(--ab-surface); border: 1px solid var(--ab-border);
  border-radius: 24px; padding: 28px; display: flex; flex-direction: column;
  box-shadow: 0 16px 40px rgba(11, 13, 18, 0.06);
}
/* One consistent logo row: every mark sits on the same 44px line. */
.ab-brand__logo {
  display: flex; align-items: center; gap: 10px;
  height: 44px; margin: 0 0 16px;
}
.ab-brand__logo img { display: block; max-height: 100%; width: auto; }
.ab-brand__logo--cm span { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; }
.ab-brand__logo--cm sup { font-size: 0.45em; }
.ab-brand p { font-size: 15px; line-height: 1.65; color: var(--ab-slate); margin: 0 0 18px; }
.ab-brand__foot { margin-top: auto; font-size: 14px; font-weight: 700; }

/* ---------- Values ---------- */
.ab-values {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px; margin-top: 36px; padding: 0; list-style: none;
}
.ab-value {
  background: var(--ab-surface); border: 1px solid var(--ab-border);
  border-radius: 24px; padding: 28px;
  box-shadow: 0 16px 40px rgba(11, 13, 18, 0.06);
}
.ab-value h3 { font-size: 19px; margin-bottom: 10px; }
.ab-value p { font-size: 15px; line-height: 1.65; color: var(--ab-slate); margin: 0; }
/* Check chips follow the site's blue accent (404.css tokens), no gradients. */
.ab-value__check {
  display: inline-grid; place-items: center; width: 40px; height: 40px; margin-bottom: 16px;
  border-radius: 12px; background: var(--cm-blue-soft); color: var(--cm-blue-ink);
}
.ab-value__check svg { width: 20px; height: 20px; }

/* ---------- Midwestern values + the US outline ---------- */
.ab-midwest__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px; align-items: center;
}
.ab-midwest__text p { font-size: 17px; line-height: 1.7; color: var(--ab-slate); }
.ab-map { margin: 0; }
.ab-map svg { display: block; width: 100%; height: auto; }
.ab-map__outline { fill: rgba(0, 196, 255, 0.06); stroke-width: 2.5; stroke-linejoin: round; }
.ab-map__wi { fill: rgba(233, 79, 165, 0.3); }
.ab-map figcaption { margin-top: 14px; font-size: 14px; line-height: 1.6; color: var(--ab-muted); text-align: center; }

/* ---------- FAQ (style guide §05: ice-blue pill cards, same as /office-hours) ---------- */
.ab-faq-list { margin-top: 28px; }
.ab-faq {
  display: block; background: var(--ab-faq-fill); border-radius: 28px;
  padding: 24px 32px; margin: 0 0 16px;
}
.ab-faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 24px;
  font: 700 17px/1.3 var(--cm-font); color: var(--ab-ink); text-align: left;
}
.ab-faq summary::-webkit-details-marker { display: none; }
.ab-faq summary::after {
  content: "+"; flex: none; font-size: 22px; font-weight: 500; line-height: 1; color: var(--ab-faq-toggle);
}
.ab-faq[open] summary::after { content: "−"; }
.ab-faq summary:focus-visible { outline: 3px solid var(--ab-ink); outline-offset: 4px; border-radius: 6px; }
.ab-faq p, .ab-faq li { font-size: 15px; line-height: 1.65; color: var(--ab-faq-answer); }
.ab-faq p { margin: 16px 0 0; }
.ab-faq ul { margin: 16px 0 0; padding-left: 22px; }
.ab-faq li { margin-bottom: 10px; }
.ab-faq li:last-child { margin-bottom: 0; }
@media (max-width: 560px) { .ab-faq { padding: 20px 22px; } }

/* ---------- Closing CTA band ---------- */
.ab-cta { text-align: center; }
.ab-cta .ab-lead { margin: 0 auto 8px; }
.ab-cta__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 28px; }
/* The buttons themselves are .cm-nav__btn--primary / --soft from 404.css, so the primary
   one is already in form-success.js's CTA_SELECTOR and gets the sparkle burst for free. */

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .ab-section { padding: 56px 20px; }
  .ab-founders { grid-template-columns: 1fr; }
  .ab-brands, .ab-values { grid-template-columns: 1fr; }
  .ab-midwest__grid { grid-template-columns: 1fr; gap: 36px; }
  .ab-map { max-width: 520px; margin: 0 auto; }
}
