/* ============================================================================
   ABOUT US (/about-us) — trust/credibility page (E-E-A-T), not a product
   landing page. Route-scoped stylesheet (see app/[slug]/page.tsx
   getRouteStyles), built only from tokens + primitives already defined in
   limaxlock-home.css (.ll-container / .ll-eyebrow / .ll-section-head /
   .ll-section-title / .ll-section-sub / .ll-card / .ll-card__*) — no new
   colors, radii or shadows introduced here.

   Section rhythm (documents/theme.md §6 — alternate backgrounds, ink-900
   roughly every 3rd/4th section): hero(ink) -> story(white) -> build(slate-50)
   -> why+stats(white, reused) -> logos(slate-50, reused+rewrapped) ->
   mission(brand-50 tint) -> industries(white, reused) -> company(slate-50)
   -> CTA(ink, reused).
   ========================================================================== */

/* ── 1. Hero (ink-900, trust framing — no signup CTA here on purpose) ─────── */

.ll-about-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink-900);
  padding: 88px 0 76px;
  text-align: center;
}

.ll-about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 74%);
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 74%);
}

.ll-about-hero .ll-container { position: relative; z-index: 2; }

.ll-about-hero__title {
  font-family: var(--ll-font-heading);
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 14px 0 18px;
}

.ll-about-hero__sub {
  font-family: var(--ll-font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-text);
  max-width: 660px;
  margin: 0 auto;
}

.ll-about-hero__cred {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 26px auto 0;
  padding: 7px 15px 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  font-family: var(--ll-font-ui);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
}

.ll-about-hero__cred svg { width: 16px; height: 16px; color: var(--brand-300); flex: none; }

@media (max-width: 640px) {
  .ll-about-hero { padding: 64px 0 56px; }
}

/* ── 2. Our story (white, prose) ───────────────────────────────────────── */

.ll-about-story { background: #fff; padding: 96px 0; }

.ll-about-story__prose {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--ll-font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--slate-600);
}

.ll-about-story__prose p { margin: 0 0 20px; }
.ll-about-story__prose p:last-child { margin-bottom: 0; }
.ll-about-story__prose strong { color: var(--slate-900); }

@media (max-width: 640px) {
  .ll-about-story { padding: 64px 0; }
}

/* ── 3. What we build (slate-50, card grid from lib/internalLinks.ts) ─────── */

.ll-about-build { background: var(--slate-50); padding: 96px 0; }

.ll-about-build__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ll-about-build__card { display: block; text-decoration: none; }

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

@media (max-width: 640px) {
  .ll-about-build { padding: 64px 0; }
  .ll-about-build__grid { grid-template-columns: 1fr; }
}

/* ── Logos wrapper (reuses LLTrustStripSection, which is calibrated for the
   homepage hero overlap — neutralise that coupling here so it reads as a
   plain standalone section: solid background, no negative margin). ────── */

.ll-about-logos { background: var(--slate-50); padding: 96px 0; }
.ll-about-logos .ll-logos { margin-top: 0; padding: 0; background: transparent; }

@media (max-width: 640px) {
  .ll-about-logos { padding: 64px 0; }
}

/* ── 5. Our mission (brand-tint statement band) ───────────────────────────── */

.ll-about-mission { background: var(--brand-50); padding: 88px 0; }

.ll-about-mission__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.ll-about-mission__statement {
  font-family: var(--ll-font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--brand-800);
  margin: 0;
}

@media (max-width: 640px) {
  .ll-about-mission { padding: 56px 0; }
}

/* ── 6. Company information (slate-50 card) ───────────────────────────────── */

.ll-about-company { background: var(--slate-50); padding: 96px 0; }

.ll-about-company__card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.ll-about-company__brand {
  font-family: var(--ll-font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 10px;
}

.ll-about-company__brand span { color: var(--brand-600); }

.ll-about-company__line {
  font-family: var(--ll-font-body);
  font-size: 15px;
  color: var(--slate-600);
  margin: 0 0 24px;
}

.ll-about-company__contact {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.ll-about-company__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ll-font-body);
  font-size: 15px;
  color: var(--slate-600);
}

.ll-about-company__contact a { color: var(--slate-600); text-decoration: none; }
.ll-about-company__contact a:hover { color: var(--brand-600); text-decoration: underline; }

.ll-about-company__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-600);
  flex: none;
}

.ll-about-company__icon svg { width: 15px; height: 15px; }

@media (max-width: 640px) {
  .ll-about-company { padding: 64px 0; }
  .ll-about-company__card { padding: 32px 24px; }
}
