/* ═══ COLOR FLOW MAP (from design-spec.theme_context_map) ═══
 *
 * index.html: dark-top
 *   nav        → transparent-on-dark (scrolled: solid #0F2240)  | logo: light
 *   hero       → DARK  (#0F2240) | text: white (#F0F5FF)
 *   logos      → DARK  (#0F2240) | text: white-muted
 *   problem    → LIGHT (#F6F9FC) | text: dark (#0F2240)
 *   solution   → LIGHT (#F6F9FC) | text: dark
 *   how-works  → DARK  (#0F2240) | text: white
 *   proof      → LIGHT (#F6F9FC) | text: dark
 *   pricing-teaser → DARK (#172B4D) | text: white
 *   footer     → DARK  (#0F2240) | text: white-muted
 *
 * product.html: light-top
 *   nav        → solid #0F2240 (forced)  | logo: light
 *   hero       → LIGHT (#F6F9FC) | text: dark
 *   feature sections → LIGHT / CREAM
 *   cta-band   → DARK | text: white
 *   footer     → DARK
 *
 * how-it-works.html: dark-top
 *   nav        → transparent-on-dark | logo: light
 *   hero       → DARK  (#0F2240) | text: white
 *   steps      → LIGHT (#F6F9FC) | text: dark
 *   cta-band   → DARK
 *   footer     → DARK
 *
 * All blog articles / login / legal: light-top
 *   nav        → solid #0F2240 (forced) | logo: light
 *   content    → LIGHT (#FFFFFF / #F6F9FC) | text: dark
 *   footer     → DARK
 *
 * ADJACENT SAME-POLARITY: problem→solution both LIGHT = same-bg section separator by spacing change only
 * NAV RULE: dark-top → transparent + white text; light-top → solid navy + white text (always solid on scroll)
 * ═══════════════════════════════════════════════════════════════ */

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

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

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #0F2240;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* dark-top pages: body bg = dark so transparent nav blends into hero */
body.lfg-page--dark-top { background: #0F2240; }
body.lfg-page--light-top { background: #FFFFFF; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── CSS Custom Properties ─── */
:root {
  --lfg-navy: #0F2240;
  --lfg-navy-alt: #172B4D;
  --lfg-teal: #22C9A0;
  --lfg-teal-aa: #0D7C61;
  --lfg-fg-dark-primary: #F0F5FF;
  --lfg-fg-dark-secondary: #9BB3CC;
  --lfg-fg-light-primary: #0F2240;
  --lfg-fg-light-secondary: #4A5568;
  --lfg-bg-light: #F6F9FC;
  --lfg-bg-white: #FFFFFF;
  --lfg-bg-cream: #F0F4F1;
  --lfg-bg-dark: #0F2240;
  --lfg-bg-dark-alt: #172B4D;
  --lfg-border: #DDE5ED;
  --lfg-shadow-card: 0 2px 8px rgba(15,34,64,0.08);
  --lfg-shadow-modal: 0 8px 32px rgba(15,34,64,0.12);
  --lfg-radius-card: 12px;
  --lfg-radius-btn: 8px;
  --lfg-radius-input: 6px;
  --lfg-radius-pill: 24px;
  --lfg-container: 1200px;
  --lfg-section-pad: 96px;
  --lfg-section-pad-mobile: 64px;
}

/* ─── Typography ─── */
h1 { font-size: 3.25rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; }
h2 { font-size: 2.25rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
h3 { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
h4 { font-size: 1.125rem; font-weight: 600; letter-spacing: 0; line-height: 1.4; }

.lfg-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── Container ─── */
.lfg-container {
  max-width: var(--lfg-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ─── */
.lfg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--lfg-radius-btn);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.lfg-btn--primary {
  background: var(--lfg-teal);
  color: var(--lfg-navy);
  border-color: var(--lfg-teal);
}
.lfg-btn--primary:hover {
  background: #1DB38B;
  border-color: #1DB38B;
}
.lfg-btn--outline-dark {
  background: transparent;
  color: var(--lfg-fg-dark-primary);
  border-color: rgba(240,245,255,0.3);
}
.lfg-btn--outline-dark:hover {
  background: rgba(240,245,255,0.08);
  border-color: rgba(240,245,255,0.5);
}
.lfg-btn--ghost-on-light {
  background: transparent;
  color: var(--lfg-navy);
  border-color: var(--lfg-border);
}
.lfg-btn--ghost-on-light:hover {
  background: var(--lfg-bg-light);
  border-color: var(--lfg-navy);
}

/* ─── NAV ─── */
.lfg-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  padding: 0;
}

/* dark-top: transparent nav blends into hero */
body.lfg-page--dark-top .lfg-nav {
  background: transparent;
}
/* light-top: always solid navy */
body.lfg-page--light-top .lfg-nav {
  background: var(--lfg-navy);
  box-shadow: 0 1px 0 rgba(240,245,255,0.1);
}
/* scrolled state (JS adds class) — always solid */
.lfg-nav--scrolled {
  background: var(--lfg-navy) !important;
  box-shadow: 0 2px 16px rgba(15,34,64,0.2) !important;
}

.lfg-nav__inner {
  max-width: var(--lfg-container);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 0;
}

.lfg-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.lfg-nav__logo img {
  height: 32px;
  width: auto;
  max-width: 180px;
}

.lfg-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 40px;
}
.lfg-nav__link {
  padding: 6px 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--lfg-fg-dark-secondary);
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.lfg-nav__link:hover {
  color: var(--lfg-fg-dark-primary);
  background: rgba(240,245,255,0.08);
}
.lfg-nav__link--active {
  color: var(--lfg-fg-dark-primary);
}

.lfg-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.lfg-nav__signin {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--lfg-fg-dark-secondary);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s;
}
.lfg-nav__signin:hover {
  color: var(--lfg-fg-dark-primary);
}

/* Hamburger */
.lfg-nav__hamburger {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}
.lfg-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lfg-fg-dark-primary);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile menu */
.lfg-nav__mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--lfg-navy);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(240,245,255,0.1);
  z-index: 99;
}
.lfg-nav__mobile.is-open { display: block; }
.lfg-nav__mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--lfg-fg-dark-secondary);
  border-bottom: 1px solid rgba(240,245,255,0.06);
  transition: color 0.15s;
}
.lfg-nav__mobile-link:hover { color: var(--lfg-fg-dark-primary); }
.lfg-nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

/* ─── HERO ─── */
.lfg-hero {
  background: var(--lfg-bg-dark);
  padding-top: calc(72px + 80px);
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
  min-height: 680px;
}

/* subtle geometric SVG background pattern for dark sections */
.lfg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%2322C9A0' stroke-width='0.3' stroke-opacity='0.08'%3E%3Cpath d='M0 0l30 30L60 0M0 60l30-30 30 30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.lfg-hero__inner {
  max-width: var(--lfg-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
}

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

.lfg-hero__eyebrow {
  color: var(--lfg-teal);
  margin-bottom: 20px;
  display: inline-block;
}

.lfg-hero__headline {
  color: var(--lfg-fg-dark-primary);
  margin-bottom: 24px;
}

.lfg-hero__subhead {
  font-size: 1.125rem;
  color: var(--lfg-fg-dark-secondary);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 500px;
}

.lfg-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lfg-hero__visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.lfg-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Gradient fade to blend into dark section */
.lfg-hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,34,64,0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* ─── LOGO BAR ─── */
.lfg-logos {
  background: var(--lfg-navy-alt);
  padding: 48px 0;
  border-top: 1px solid rgba(240,245,255,0.08);
}

.lfg-logos__eyebrow {
  text-align: center;
  color: var(--lfg-fg-dark-secondary);
  margin-bottom: 28px;
}

.lfg-logos__strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.lfg-logos__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(240,245,255,0.45);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ─── SECTION BASE ─── */
.lfg-section {
  padding: var(--lfg-section-pad) 0;
}

.lfg-section--dark {
  background: var(--lfg-bg-dark);
  position: relative;
}
.lfg-section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%2322C9A0' stroke-width='0.3' stroke-opacity='0.06'%3E%3Cpath d='M0 0l30 30L60 0M0 60l30-30 30 30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.lfg-section--dark-alt {
  background: var(--lfg-navy-alt);
  position: relative;
}
.lfg-section--dark-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%2322C9A0' stroke-width='0.3' stroke-opacity='0.06'%3E%3Cpath d='M0 0l30 30L60 0M0 60l30-30 30 30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.lfg-section--light { background: var(--lfg-bg-light); }
.lfg-section--white { background: var(--lfg-bg-white); }
.lfg-section--cream { background: var(--lfg-bg-cream); }

.lfg-section__header {
  margin-bottom: 56px;
  text-align: center;
}
.lfg-section__header--left { text-align: left; }

/* Section text colors scoped by container */
.lfg-section--dark .lfg-section__eyebrow { color: var(--lfg-teal); }
.lfg-section--dark .lfg-section__headline { color: var(--lfg-fg-dark-primary); }
.lfg-section--dark .lfg-section__subhead { color: var(--lfg-fg-dark-secondary); }
.lfg-section--dark-alt .lfg-section__eyebrow { color: var(--lfg-teal); }
.lfg-section--dark-alt .lfg-section__headline { color: var(--lfg-fg-dark-primary); }
.lfg-section--dark-alt .lfg-section__subhead { color: var(--lfg-fg-dark-secondary); }
.lfg-section--light .lfg-section__eyebrow { color: var(--lfg-teal-aa); }
.lfg-section--light .lfg-section__headline { color: var(--lfg-fg-light-primary); }
.lfg-section--light .lfg-section__subhead { color: var(--lfg-fg-light-secondary); }
.lfg-section--white .lfg-section__eyebrow { color: var(--lfg-teal-aa); }
.lfg-section--white .lfg-section__headline { color: var(--lfg-fg-light-primary); }
.lfg-section--white .lfg-section__subhead { color: var(--lfg-fg-light-secondary); }
.lfg-section--cream .lfg-section__eyebrow { color: var(--lfg-teal-aa); }
.lfg-section--cream .lfg-section__headline { color: var(--lfg-fg-light-primary); }
.lfg-section--cream .lfg-section__subhead { color: var(--lfg-fg-light-secondary); }

.lfg-section__subhead {
  font-size: 1.125rem;
  margin-top: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ─── PROBLEM STATS ─── */
.lfg-stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lfg-stat-card {
  background: var(--lfg-bg-white);
  border: 1px solid var(--lfg-border);
  border-radius: var(--lfg-radius-card);
  padding: 32px;
  box-shadow: var(--lfg-shadow-card);
}

.lfg-stat-card__value {
  font-family: 'JetBrains Mono', 'Fira Code', Consolas, monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--lfg-teal-aa);
  line-height: 1;
  margin-bottom: 12px;
}

.lfg-stat-card__label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 8px;
}

.lfg-stat-card__note {
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.5;
}

/* ─── FEATURE TRIO ─── */
.lfg-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lfg-feature-card {
  background: var(--lfg-bg-white);
  border: 1px solid var(--lfg-border);
  border-radius: var(--lfg-radius-card);
  padding: 32px;
  box-shadow: var(--lfg-shadow-card);
  transition: box-shadow 0.2s;
}
.lfg-feature-card:hover {
  box-shadow: var(--lfg-shadow-modal);
}

.lfg-feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(13,124,97,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.lfg-feature-card__icon i {
  color: var(--lfg-teal-aa);
  font-size: 1.25rem;
}

.lfg-feature-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 12px;
}

.lfg-feature-card__body {
  font-size: 0.9375rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.6;
}

/* ─── HOW IT WORKS (numbered steps teaser) ─── */
.lfg-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.lfg-step {
  display: flex;
  gap: 20px;
}

.lfg-step__num {
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lfg-teal);
  opacity: 0.8;
  flex-shrink: 0;
  line-height: 1.3;
  min-width: 32px;
}

.lfg-step__body {
  color: var(--lfg-fg-dark-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.lfg-steps-cta {
  text-align: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

/* ─── TESTIMONIALS ─── */
.lfg-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.lfg-testimonials--3col {
  grid-template-columns: repeat(3, 1fr);
}

.lfg-testimonial {
  background: var(--lfg-bg-white);
  border: 1px solid var(--lfg-border);
  border-radius: var(--lfg-radius-card);
  padding: 32px;
  box-shadow: var(--lfg-shadow-card);
}

.lfg-testimonial__quote {
  font-size: 1rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.lfg-testimonial__quote::before { content: '"'; }
.lfg-testimonial__quote::after  { content: '"'; }

.lfg-testimonial__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lfg-fg-light-primary);
}
.lfg-testimonial__role {
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
  margin-top: 2px;
}

/* ─── CTA BAND ─── */
.lfg-cta-band {
  background: var(--lfg-navy-alt);
  padding: var(--lfg-section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lfg-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%2322C9A0' stroke-width='0.3' stroke-opacity='0.08'%3E%3Cpath d='M0 0l30 30L60 0M0 60l30-30 30 60'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.lfg-cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.lfg-cta-band__headline {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--lfg-fg-dark-primary);
  margin-bottom: 16px;
}

.lfg-cta-band__body {
  font-size: 1.125rem;
  color: var(--lfg-fg-dark-secondary);
  margin-bottom: 36px;
  line-height: 1.65;
}

.lfg-cta-band__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.lfg-footer {
  background: var(--lfg-bg-dark);
  padding: 64px 0 0;
  position: relative;
}
.lfg-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%2322C9A0' stroke-width='0.3' stroke-opacity='0.05'%3E%3Cpath d='M0 0l30 30L60 0M0 60l30-30 30 30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.lfg-footer__grid {
  max-width: var(--lfg-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.lfg-footer__brand-logo img {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}

.lfg-footer__tagline {
  font-size: 0.9375rem;
  color: var(--lfg-fg-dark-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.lfg-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--lfg-fg-dark-secondary);
  margin-bottom: 8px;
}
.lfg-footer__contact-item i {
  color: var(--lfg-teal);
  font-size: 0.875rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.lfg-footer__contact-item a {
  color: var(--lfg-fg-dark-secondary);
  transition: color 0.15s;
}
.lfg-footer__contact-item a:hover { color: var(--lfg-fg-dark-primary); }

.lfg-footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lfg-fg-dark-secondary);
  margin-bottom: 16px;
}

.lfg-footer__link {
  display: block;
  font-size: 0.9375rem;
  color: var(--lfg-fg-dark-secondary);
  padding: 4px 0;
  transition: color 0.15s;
}
.lfg-footer__link:hover { color: var(--lfg-fg-dark-primary); }

.lfg-footer__bottom {
  max-width: var(--lfg-container);
  margin: 40px auto 0;
  padding: 20px 24px;
  border-top: 1px solid rgba(240,245,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.lfg-footer__copy {
  font-size: 0.875rem;
  color: rgba(155,179,204,0.7);
}

.lfg-footer__legal-links {
  display: flex;
  gap: 16px;
}

.lfg-footer__legal-link {
  font-size: 0.875rem;
  color: rgba(155,179,204,0.7);
  transition: color 0.15s;
}
.lfg-footer__legal-link:hover { color: var(--lfg-fg-dark-secondary); }

/* ─── PAGE HERO (sub-pages) ─── */
.lfg-page-hero {
  padding-top: calc(72px + 64px);
  padding-bottom: 64px;
}

.lfg-page-hero--dark {
  background: var(--lfg-bg-dark);
  position: relative;
}
.lfg-page-hero--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%2322C9A0' stroke-width='0.3' stroke-opacity='0.07'%3E%3Cpath d='M0 0l30 30L60 0M0 60l30-30 30 30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.lfg-page-hero--light {
  background: var(--lfg-bg-white);
  border-bottom: 1px solid var(--lfg-border);
}

.lfg-page-hero__inner {
  max-width: var(--lfg-container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.lfg-page-hero--dark .lfg-page-hero__eyebrow { color: var(--lfg-teal); }
.lfg-page-hero--dark .lfg-page-hero__headline { color: var(--lfg-fg-dark-primary); }
.lfg-page-hero--dark .lfg-page-hero__subhead  { color: var(--lfg-fg-dark-secondary); }

.lfg-page-hero--light .lfg-page-hero__eyebrow { color: var(--lfg-teal-aa); }
.lfg-page-hero--light .lfg-page-hero__headline { color: var(--lfg-fg-light-primary); }
.lfg-page-hero--light .lfg-page-hero__subhead  { color: var(--lfg-fg-light-secondary); }

.lfg-page-hero__eyebrow { margin-bottom: 16px; display: block; }
.lfg-page-hero__headline { margin-bottom: 20px; }
.lfg-page-hero__subhead {
  font-size: 1.125rem;
  line-height: 1.65;
  max-width: 620px;
}

/* ─── PRODUCT PAGE ─── */
.lfg-feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lfg-feature-split--reverse { direction: rtl; }
.lfg-feature-split--reverse > * { direction: ltr; }

.lfg-feature-split__content {}
.lfg-feature-split__content .lfg-section__eyebrow { color: var(--lfg-teal-aa); margin-bottom: 12px; display: block; }
.lfg-feature-split__content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 16px;
}
.lfg-section--cream .lfg-feature-split__content h2 { color: var(--lfg-fg-light-primary); }
.lfg-feature-split__content p {
  font-size: 1rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.lfg-feature-split__visual {
  border-radius: var(--lfg-radius-card);
  overflow: hidden;
  box-shadow: var(--lfg-shadow-modal);
}
.lfg-feature-split__visual img {
  width: 100%;
  height: auto;
}

/* ─── MANAGER DASHBOARD MOCK ─── */
.lfg-dashboard-mock {
  background: #1A2D45;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(15,34,64,0.3);
  font-family: 'JetBrains Mono', Consolas, monospace;
}
.lfg-dashboard-mock__chrome {
  background: #243650;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(240,245,255,0.1);
}
.lfg-dashboard-mock__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.lfg-dashboard-mock__dot--red   { background: #FF5F57; }
.lfg-dashboard-mock__dot--yellow { background: #FEBC2E; }
.lfg-dashboard-mock__dot--green  { background: #28C840; }
.lfg-dashboard-mock__title {
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  color: rgba(240,245,255,0.5);
  margin-left: 8px;
}
.lfg-dashboard-mock__body {
  padding: 20px;
}
.lfg-dashboard-mock__table {
  width: 100%;
  border-collapse: collapse;
}
.lfg-dashboard-mock__table th {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(155,179,204,0.7);
  padding: 0 0 12px 0;
  text-align: left;
}
.lfg-dashboard-mock__table td {
  padding: 10px 0;
  border-top: 1px solid rgba(240,245,255,0.06);
  font-size: 0.8125rem;
  color: var(--lfg-fg-dark-secondary);
}
.lfg-dashboard-mock__table td:first-child {
  color: var(--lfg-fg-dark-primary);
  font-weight: 500;
}

.lfg-progress-bar {
  background: rgba(240,245,255,0.1);
  border-radius: 100px;
  height: 8px;
  width: 120px;
  overflow: hidden;
}
.lfg-progress-bar__fill {
  height: 100%;
  background: var(--lfg-teal);
  border-radius: 100px;
}

.lfg-gap-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(34,201,160,0.12);
  color: var(--lfg-teal);
}

/* ─── INTEGRATIONS GRID ─── */
.lfg-integrations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lfg-integration-tile {
  background: var(--lfg-bg-white);
  border: 1px solid var(--lfg-border);
  border-radius: var(--lfg-radius-card);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lfg-fg-light-secondary);
  box-shadow: var(--lfg-shadow-card);
  transition: box-shadow 0.2s;
}
.lfg-integration-tile:hover { box-shadow: var(--lfg-shadow-modal); }
.lfg-integration-tile i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--lfg-teal-aa);
}

/* ─── HOW IT WORKS (full page) ─── */
.lfg-step-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lfg-step-block--reverse {
  direction: rtl;
}
.lfg-step-block--reverse > * { direction: ltr; }

.lfg-step-block__content {}
.lfg-step-block__num {
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-size: 4rem;
  font-weight: 700;
  color: var(--lfg-teal-aa);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}
.lfg-step-block__headline {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 16px;
}
.lfg-step-block__body {
  font-size: 1rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.7;
}

.lfg-step-block__visual {
  border-radius: var(--lfg-radius-card);
  overflow: hidden;
  box-shadow: var(--lfg-shadow-modal);
}
.lfg-step-block__visual img {
  width: 100%;
  height: auto;
}

/* ─── PRICING ─── */
.lfg-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.lfg-pricing-card {
  background: var(--lfg-bg-white);
  border: 2px solid var(--lfg-border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
}
.lfg-pricing-card--featured {
  border-color: var(--lfg-teal);
  box-shadow: 0 0 0 1px var(--lfg-teal), var(--lfg-shadow-modal);
}

.lfg-pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lfg-teal);
  color: var(--lfg-navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.lfg-pricing-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 8px;
}

.lfg-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.lfg-pricing-card__amount {
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-size: 3rem;
  font-weight: 700;
  color: var(--lfg-navy);
}
.lfg-pricing-card__per {
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
}
.lfg-pricing-card__annual {
  font-size: 0.875rem;
  color: var(--lfg-teal-aa);
  margin-bottom: 16px;
}

.lfg-pricing-card__range {
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--lfg-border);
}

.lfg-pricing-card__features {
  margin-bottom: 32px;
}
.lfg-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9375rem;
  color: var(--lfg-fg-light-secondary);
}
.lfg-pricing-card__feature i {
  color: var(--lfg-teal-aa);
  font-size: 0.875rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.lfg-pricing-card .lfg-btn {
  width: 100%;
  justify-content: center;
}

.lfg-pricing-enterprise {
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  background: var(--lfg-bg-light);
  border-radius: var(--lfg-radius-card);
  border: 1px solid var(--lfg-border);
}
.lfg-pricing-enterprise p {
  color: var(--lfg-fg-light-secondary);
  margin-bottom: 16px;
  font-size: 0.9375rem;
}

/* ─── FAQ ─── */
.lfg-faq {
  max-width: 760px;
  margin: 0 auto;
}

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

.lfg-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lfg-fg-light-primary);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s;
}
.lfg-faq__question:hover { color: var(--lfg-teal-aa); }
.lfg-faq__question i {
  color: var(--lfg-teal-aa);
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.lfg-faq__item.is-open .lfg-faq__question i { transform: rotate(180deg); }

.lfg-faq__answer {
  display: none;
  padding: 0 0 20px 0;
  font-size: 0.9375rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.7;
}
.lfg-faq__item.is-open .lfg-faq__answer { display: block; }

/* ─── CUSTOMERS PAGE ─── */
.lfg-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(240,245,255,0.1);
  position: relative;
  z-index: 1;
}

.lfg-stats-bar__item {
  padding: 40px 32px;
  text-align: center;
  background: var(--lfg-navy);
}
.lfg-stats-bar__value {
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--lfg-teal);
  line-height: 1;
  margin-bottom: 8px;
}
.lfg-stats-bar__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lfg-fg-dark-primary);
  margin-bottom: 4px;
}
.lfg-stats-bar__note {
  font-size: 0.8125rem;
  color: var(--lfg-fg-dark-secondary);
}

.lfg-case-study {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.lfg-case-study__company {
  background: var(--lfg-bg-white);
  border: 1px solid var(--lfg-border);
  border-radius: var(--lfg-radius-card);
  padding: 28px;
  box-shadow: var(--lfg-shadow-card);
}
.lfg-section--cream .lfg-case-study__company { background: var(--lfg-bg-white); }

.lfg-case-study__company-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 8px;
}
.lfg-case-study__company-desc {
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.5;
}

.lfg-case-study__blocks { display: flex; flex-direction: column; gap: 20px; }

.lfg-case-study__block {
  background: var(--lfg-bg-white);
  border: 1px solid var(--lfg-border);
  border-radius: var(--lfg-radius-card);
  padding: 24px 28px;
  box-shadow: var(--lfg-shadow-card);
}
.lfg-section--cream .lfg-case-study__block { background: var(--lfg-bg-white); }

.lfg-case-study__block-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lfg-teal-aa);
  margin-bottom: 8px;
}

.lfg-case-study__block-text {
  font-size: 0.9375rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.65;
}

/* ─── ABOUT PAGE ─── */
.lfg-founder {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

.lfg-founder__portrait {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--lfg-shadow-modal);
}
.lfg-founder__portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.lfg-founder__content {}
.lfg-founder__name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 4px;
}
.lfg-founder__title {
  font-size: 1rem;
  color: var(--lfg-teal-aa);
  font-weight: 600;
  margin-bottom: 20px;
}
.lfg-founder__body p {
  font-size: 1rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.lfg-mission-block { max-width: 760px; margin: 0 auto; text-align: center; }
.lfg-mission-block h2 { color: var(--lfg-fg-light-primary); margin-bottom: 20px; }
.lfg-section--cream .lfg-mission-block h2 { color: var(--lfg-fg-light-primary); }
.lfg-mission-block p { font-size: 1.0625rem; color: var(--lfg-fg-light-secondary); line-height: 1.75; }

.lfg-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lfg-value-card {
  background: var(--lfg-bg-white);
  border: 1px solid var(--lfg-border);
  border-radius: var(--lfg-radius-card);
  padding: 28px;
  box-shadow: var(--lfg-shadow-card);
}
.lfg-value-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(13,124,97,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.lfg-value-card__icon i { color: var(--lfg-teal-aa); font-size: 1.125rem; }
.lfg-value-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 8px;
}
.lfg-value-card__body {
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.6;
}

/* ─── TEAM PAGE ─── */
.lfg-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lfg-team-card {
  background: var(--lfg-bg-white);
  border: 1px solid var(--lfg-border);
  border-radius: var(--lfg-radius-card);
  overflow: hidden;
  box-shadow: var(--lfg-shadow-card);
  transition: box-shadow 0.2s;
}
.lfg-team-card:hover { box-shadow: var(--lfg-shadow-modal); }

.lfg-team-card__portrait {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--lfg-bg-light);
}
.lfg-team-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lfg-team-card__info { padding: 20px; }
.lfg-team-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 4px;
}
.lfg-team-card__title {
  font-size: 0.875rem;
  color: var(--lfg-teal-aa);
  font-weight: 600;
  margin-bottom: 10px;
}
.lfg-team-card__bio {
  font-size: 0.8125rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.6;
}

/* ─── CAREERS PAGE ─── */
.lfg-culture-block {
  max-width: 720px;
  background: var(--lfg-bg-white);
  border: 1px solid var(--lfg-border);
  border-radius: var(--lfg-radius-card);
  padding: 36px;
  box-shadow: var(--lfg-shadow-card);
  margin: 0 auto;
}
.lfg-culture-block p {
  font-size: 1.0625rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.75;
}

.lfg-jobs {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lfg-job-card {
  background: var(--lfg-bg-white);
  border: 1px solid var(--lfg-border);
  border-radius: var(--lfg-radius-card);
  padding: 28px 32px;
  box-shadow: var(--lfg-shadow-card);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.lfg-job-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 8px;
}

.lfg-job-card__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.lfg-job-meta-tag {
  font-size: 0.8125rem;
  color: var(--lfg-fg-light-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}
.lfg-job-meta-tag i { color: var(--lfg-teal-aa); font-size: 0.75rem; }

.lfg-job-card__desc {
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.6;
}

/* ─── CONTACT PAGE ─── */
.lfg-contact-split {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

.lfg-contact-form__group {
  margin-bottom: 20px;
}
.lfg-contact-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 6px;
}
.lfg-contact-form__input,
.lfg-contact-form__select,
.lfg-contact-form__textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  border: 1.5px solid var(--lfg-border);
  border-radius: var(--lfg-radius-input);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--lfg-fg-light-primary);
  background: var(--lfg-bg-white);
  transition: border-color 0.15s;
}
.lfg-contact-form__input:focus,
.lfg-contact-form__select:focus,
.lfg-contact-form__textarea:focus {
  outline: none;
  border-color: var(--lfg-teal-aa);
}
.lfg-contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230D7C61' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.lfg-contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.lfg-contact-aside {
  background: var(--lfg-bg-light);
  border: 1px solid var(--lfg-border);
  border-radius: var(--lfg-radius-card);
  padding: 32px;
}
.lfg-contact-aside__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 20px;
}
.lfg-contact-aside__item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.lfg-contact-aside__item i {
  color: var(--lfg-teal-aa);
  font-size: 0.875rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.lfg-contact-aside__item span {
  font-size: 0.9375rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.5;
}

/* ─── BLOG ─── */
.lfg-blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.lfg-blog-filter {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1.5px solid var(--lfg-border);
  background: transparent;
  color: var(--lfg-fg-light-secondary);
  cursor: pointer;
  transition: all 0.15s;
}
.lfg-blog-filter:hover,
.lfg-blog-filter.is-active {
  background: var(--lfg-navy);
  color: var(--lfg-fg-dark-primary);
  border-color: var(--lfg-navy);
}

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

.lfg-blog-card {
  background: var(--lfg-bg-white);
  border: 1px solid var(--lfg-border);
  border-radius: var(--lfg-radius-card);
  overflow: hidden;
  box-shadow: var(--lfg-shadow-card);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.lfg-blog-card:hover {
  box-shadow: var(--lfg-shadow-modal);
  transform: translateY(-2px);
}

.lfg-blog-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.lfg-blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lfg-blog-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lfg-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.lfg-blog-card__category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lfg-teal-aa);
  background: rgba(13,124,97,0.08);
  padding: 3px 8px;
  border-radius: 100px;
}

.lfg-blog-card__date {
  font-size: 0.75rem;
  color: var(--lfg-fg-light-secondary);
}

.lfg-blog-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  line-height: 1.4;
  margin-bottom: 10px;
}
.lfg-blog-card:hover .lfg-blog-card__title { color: var(--lfg-teal-aa); }

.lfg-blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.6;
  flex: 1;
}

.lfg-blog-card__footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--lfg-border);
}
.lfg-blog-card__author {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lfg-fg-light-secondary);
}
.lfg-blog-card__read-time {
  font-size: 0.75rem;
  color: var(--lfg-fg-light-secondary);
}

/* ─── BLOG ARTICLE ─── */
.lfg-blog-article__cover-wrap {
  max-width: 820px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.lfg-blog-article__cover {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  /* NO object-fit: cover, NO aspect-ratio here — natural ratio per design-spec */
}

.lfg-article-header {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.lfg-article-header__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.lfg-article-header__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lfg-teal-aa);
  background: rgba(13,124,97,0.08);
  padding: 4px 10px;
  border-radius: 100px;
}
.lfg-article-header__date {
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
}
.lfg-article-header__read-time {
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
}

.lfg-article-header__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.lfg-article-header__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lfg-article-header__author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lfg-fg-light-primary);
}
.lfg-article-header__author-title {
  font-size: 0.8125rem;
  color: var(--lfg-fg-light-secondary);
}

/* Article body scoped to light-top pages */
body.lfg-page--light-top .lfg-article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
body.lfg-page--light-top .lfg-article-body h2 {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin: 36px 0 16px;
}
body.lfg-page--light-top .lfg-article-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--lfg-fg-light-primary);
  margin: 28px 0 12px;
}
body.lfg-page--light-top .lfg-article-body p {
  font-size: 1rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
}
body.lfg-page--light-top .lfg-article-body ul,
body.lfg-page--light-top .lfg-article-body ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
body.lfg-page--light-top .lfg-article-body li {
  font-size: 1rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.75;
  margin-bottom: 8px;
}
body.lfg-page--light-top .lfg-article-body a {
  color: var(--lfg-teal-aa);
  text-decoration: underline;
}
body.lfg-page--light-top .lfg-article-body strong {
  color: var(--lfg-fg-light-primary);
  font-weight: 600;
}

/* related articles */
.lfg-related {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.lfg-related__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 24px;
}
.lfg-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lfg-related__card {
  background: var(--lfg-bg-white);
  border: 1px solid var(--lfg-border);
  border-radius: var(--lfg-radius-card);
  overflow: hidden;
  box-shadow: var(--lfg-shadow-card);
  display: block;
  transition: box-shadow 0.2s;
}
.lfg-related__card:hover { box-shadow: var(--lfg-shadow-modal); }
.lfg-related__card-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.lfg-related__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lfg-related__card-body { padding: 14px; }
.lfg-related__card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  line-height: 1.4;
  margin-bottom: 4px;
}
.lfg-related__card:hover .lfg-related__card-title { color: var(--lfg-teal-aa); }
.lfg-related__card-date {
  font-size: 0.75rem;
  color: var(--lfg-fg-light-secondary);
}

/* ─── AUTH PAGES ─── */
.lfg-auth-page {
  min-height: calc(100vh - 72px - 200px);
  background: var(--lfg-bg-light);
  padding: calc(72px + 48px) 24px 48px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.lfg-auth-card {
  background: var(--lfg-bg-white);
  border: 1px solid var(--lfg-border);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--lfg-shadow-modal);
}

.lfg-auth-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.lfg-auth-card__logo img {
  height: 32px;
  width: auto;
}

.lfg-auth-card__title {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 8px;
  text-align: center;
}
.lfg-auth-card__sub {
  font-size: 0.9375rem;
  color: var(--lfg-fg-light-secondary);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.5;
}

.lfg-auth-form__group {
  margin-bottom: 16px;
}
.lfg-auth-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 6px;
}
.lfg-auth-form__input,
.lfg-auth-form__select {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  border: 1.5px solid var(--lfg-border);
  border-radius: var(--lfg-radius-input);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--lfg-fg-light-primary);
  background: var(--lfg-bg-white);
  transition: border-color 0.15s;
}
.lfg-auth-form__input:focus,
.lfg-auth-form__select:focus {
  outline: none;
  border-color: var(--lfg-teal-aa);
}
.lfg-auth-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230D7C61' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.lfg-auth-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.lfg-auth-form__checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lfg-auth-form__checkbox-group label {
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
}
.lfg-auth-form__forgot {
  font-size: 0.875rem;
  color: var(--lfg-teal-aa);
  font-weight: 600;
}
.lfg-auth-form__forgot:hover { text-decoration: underline; }

.lfg-auth-form__submit {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: var(--lfg-radius-btn);
  background: var(--lfg-teal);
  color: var(--lfg-navy);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 20px;
}
.lfg-auth-form__submit:hover { background: #1DB38B; }

.lfg-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.lfg-auth-divider span {
  font-size: 0.8125rem;
  color: var(--lfg-fg-light-secondary);
  white-space: nowrap;
}
.lfg-auth-divider::before,
.lfg-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--lfg-border);
}

.lfg-auth-sso-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  border: 1.5px solid var(--lfg-border);
  border-radius: var(--lfg-radius-btn);
  background: transparent;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lfg-fg-light-primary);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  margin-bottom: 8px;
}
.lfg-auth-sso-btn:hover { background: var(--lfg-bg-light); border-color: var(--lfg-navy); }

.lfg-auth-card__footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--lfg-border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
}
.lfg-auth-card__footer a {
  color: var(--lfg-teal-aa);
  font-weight: 600;
}
.lfg-auth-card__footer a:hover { text-decoration: underline; }

/* ─── LEGAL PAGES ─── */
.lfg-legal-page {
  padding-top: calc(72px + 48px);
  padding-bottom: var(--lfg-section-pad);
  background: var(--lfg-bg-white);
}

.lfg-legal-layout {
  max-width: var(--lfg-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}

.lfg-legal-toc {
  position: sticky;
  top: calc(72px + 24px);
}
.lfg-legal-toc__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lfg-fg-light-secondary);
  margin-bottom: 12px;
}
.lfg-legal-toc__link {
  display: block;
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
  padding: 4px 0;
  transition: color 0.15s;
}
.lfg-legal-toc__link:hover { color: var(--lfg-teal-aa); }

/* Legal content scoped to light-top pages */
body.lfg-page--light-top .lfg-legal-content { max-width: 760px; }
body.lfg-page--light-top .lfg-legal-content .legal-header { margin-bottom: 36px; }
body.lfg-page--light-top .lfg-legal-content .legal-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 8px;
}
body.lfg-page--light-top .lfg-legal-content .legal-meta {
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
  margin-bottom: 4px;
}
body.lfg-page--light-top .lfg-legal-content section { margin-bottom: 36px; }
body.lfg-page--light-top .lfg-legal-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 12px;
  padding-top: 8px;
}
body.lfg-page--light-top .lfg-legal-content h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--lfg-fg-light-primary);
  margin: 20px 0 8px;
}
body.lfg-page--light-top .lfg-legal-content p {
  font-size: 0.9375rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}
body.lfg-page--light-top .lfg-legal-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
body.lfg-page--light-top .lfg-legal-content li {
  font-size: 0.9375rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}
body.lfg-page--light-top .lfg-legal-content address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.7;
}
body.lfg-page--light-top .lfg-legal-content a {
  color: var(--lfg-teal-aa);
  text-decoration: underline;
}
body.lfg-page--light-top .lfg-legal-content .legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 16px;
}
body.lfg-page--light-top .lfg-legal-content .legal-table th {
  text-align: left;
  padding: 8px 12px;
  background: var(--lfg-bg-light);
  color: var(--lfg-fg-light-primary);
  font-weight: 600;
  border: 1px solid var(--lfg-border);
}
body.lfg-page--light-top .lfg-legal-content .legal-table td {
  padding: 8px 12px;
  color: var(--lfg-fg-light-secondary);
  border: 1px solid var(--lfg-border);
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--lfg-navy-alt);
  border-top: 1px solid rgba(240,245,255,0.12);
  padding: 16px 24px;
}
.cookie-banner__inner {
  max-width: var(--lfg-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--lfg-fg-dark-secondary);
  line-height: 1.5;
}
.cookie-banner__text a { color: var(--lfg-teal); text-decoration: underline; }
.cookie-banner__actions { flex-shrink: 0; }
.cookie-banner__btn {
  padding: 8px 20px;
  border-radius: var(--lfg-radius-btn);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-banner__btn--primary {
  background: var(--lfg-teal);
  color: var(--lfg-navy);
}
.cookie-banner__btn--primary:hover { background: #1DB38B; }

/* ─── FADE-IN ANIMATION ─── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
/* Failsafe: reveal after 1.2s regardless */
@keyframes lfg-reveal {
  to { opacity: 1; transform: none; }
}
.fade-in {
  animation: lfg-reveal 0.5s ease 1.2s forwards;
}

/* ─── UTILITY ─── */
.lfg-text-center { text-align: center; }
.lfg-mt-8 { margin-top: 8px; }
.lfg-mt-16 { margin-top: 16px; }
.lfg-mt-24 { margin-top: 24px; }
.lfg-mt-40 { margin-top: 40px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 1.875rem; }
  .lfg-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .lfg-hero__visual { display: none; }
  .lfg-features { grid-template-columns: repeat(2, 1fr); }
  .lfg-steps { grid-template-columns: 1fr; }
  .lfg-team-grid { grid-template-columns: repeat(2, 1fr); }
  .lfg-values { grid-template-columns: repeat(2, 1fr); }
  .lfg-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lfg-integrations { grid-template-columns: repeat(2, 1fr); }
  .lfg-contact-split { grid-template-columns: 1fr; }
  .lfg-founder { grid-template-columns: 1fr; }
  .lfg-founder__portrait { max-width: 260px; }
  .lfg-legal-layout { grid-template-columns: 1fr; }
  .lfg-legal-toc { display: none; }
  .lfg-case-study { grid-template-columns: 1fr; }
  .lfg-related__grid { grid-template-columns: repeat(2, 1fr); }
  .lfg-step-block { grid-template-columns: 1fr; gap: 32px; }
  .lfg-step-block--reverse { direction: ltr; }
}

@media (max-width: 768px) {
  :root {
    --lfg-section-pad: var(--lfg-section-pad-mobile);
  }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.625rem; }
  .lfg-cta-band__headline { font-size: 1.75rem; }
  .lfg-nav__links,
  .lfg-nav__signin { display: none; }
  .lfg-nav__actions .lfg-btn { display: none; }
  .lfg-nav__hamburger { display: flex; }
  .lfg-stat-cards { grid-template-columns: 1fr; }
  .lfg-features { grid-template-columns: 1fr; }
  .lfg-testimonials { grid-template-columns: 1fr; }
  .lfg-testimonials--3col { grid-template-columns: 1fr; }
  .lfg-pricing-grid { grid-template-columns: 1fr; }
  .lfg-team-grid { grid-template-columns: 1fr 1fr; }
  .lfg-values { grid-template-columns: 1fr 1fr; }
  .lfg-blog-grid { grid-template-columns: 1fr 1fr; }
  .lfg-feature-split { grid-template-columns: 1fr; gap: 32px; }
  .lfg-feature-split--reverse { direction: ltr; }
  .lfg-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .lfg-stats-bar { grid-template-columns: 1fr; }
  .lfg-stats-bar__item { background: var(--lfg-navy); }
  .lfg-hero { padding-top: calc(72px + 56px); min-height: unset; }
  .lfg-article-header__title { font-size: 1.875rem; }
  .lfg-related__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.875rem; }
  .lfg-blog-grid { grid-template-columns: 1fr; }
  .lfg-team-grid { grid-template-columns: 1fr; }
  .lfg-values { grid-template-columns: 1fr; }
  .lfg-hero__actions { flex-direction: column; }
  .lfg-cta-band__actions { flex-direction: column; align-items: center; }
}

/* ─── ADDITIONAL COMPONENT CSS (session 2 pages) ─── */

/* Fix: lfg-legal-layout is a single-column wrapper on legal pages (no TOC) */
.lfg-legal-layout {
  display: block;
  padding-top: calc(72px + 48px);
  padding-bottom: var(--lfg-section-pad);
}
.lfg-legal-content {
  max-width: 760px;
  margin: 0 auto;
}

/* Auth SSO buttons */
.lfg-auth-sso {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.lfg-auth-sso__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  border: 1.5px solid var(--lfg-border);
  border-radius: var(--lfg-radius-btn);
  background: transparent;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lfg-fg-light-primary);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  font-family: inherit;
}
.lfg-auth-sso__btn:hover { background: var(--lfg-bg-light); border-color: var(--lfg-navy); }

/* Auth legal notice */
.lfg-auth-legal {
  font-size: 0.8125rem;
  color: var(--lfg-fg-light-secondary);
  text-align: center;
  line-height: 1.5;
  margin-top: 16px;
}
.lfg-auth-legal a { color: var(--lfg-teal-aa); text-decoration: underline; }

/* Signup page wide auth card */
.lfg-auth-page--wide { align-items: flex-start; }
.lfg-auth-card--wide { max-width: 540px; }

/* Signup form 2-col row */
.lfg-auth-form__row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ─── STATS BAND (customers page) ─── */
.lfg-stats-band {
  background: var(--lfg-navy);
  padding: 56px 0;
  position: relative;
}
.lfg-stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%2322C9A0' stroke-width='0.3' stroke-opacity='0.07'%3E%3Cpath d='M0 0l30 30L60 0M0 60l30-30 30 30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.lfg-stats-band__inner {
  max-width: var(--lfg-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  position: relative;
  z-index: 1;
}
.lfg-stat-item {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(240,245,255,0.1);
}
.lfg-stat-item:last-child { border-right: none; }
.lfg-stat-item__value {
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--lfg-teal);
  line-height: 1;
  margin-bottom: 8px;
}
.lfg-stat-item__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lfg-fg-dark-primary);
  margin-bottom: 4px;
}

/* ─── CASE STUDY EXTENDED ─── */
.lfg-case-study__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
/* Scoped reset: .lfg-case-study__company inside the meta row is an inline
   text label, NOT the sidebar card variant — strip all card styling. */
.lfg-case-study__meta .lfg-case-study__company {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
}
.lfg-case-study__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lfg-teal-aa);
  background: rgba(13,124,97,0.08);
  padding: 3px 10px;
  border-radius: 100px;
}
.lfg-case-study__headline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 16px;
}
.lfg-case-study__body p {
  font-size: 0.9375rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}
.lfg-case-study__results {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--lfg-border);
}
.lfg-case-study__result {
  background: rgba(13,124,97,0.08);
  border: 1px solid rgba(13,124,97,0.15);
  border-radius: 8px;
  padding: 14px 18px;
}
.lfg-case-study__result-value {
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lfg-teal-aa);
  margin-bottom: 4px;
}
.lfg-case-study__result-label {
  font-size: 0.8125rem;
  color: var(--lfg-fg-light-secondary);
}
.lfg-case-study__quote {
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.7;
  border-left: 3px solid var(--lfg-teal-aa);
  padding-left: 20px;
  margin-top: 20px;
}
.lfg-case-study__cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lfg-fg-light-primary);
}

/* ─── ABOUT: FACTS GRID ─── */
.lfg-about-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lfg-about-fact {
  background: var(--lfg-bg-white);
  border: 1px solid var(--lfg-border);
  border-radius: var(--lfg-radius-card);
  padding: 24px;
  text-align: center;
  box-shadow: var(--lfg-shadow-card);
}
.lfg-about-fact__value {
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--lfg-teal-aa);
  margin-bottom: 6px;
}
.lfg-about-fact__label {
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
}

/* ─── ABOUT: FOUNDER EXTRA ─── */
.lfg-founder__headline {
  font-size: 2rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 16px;
}
.lfg-founder__body {
  font-size: 1rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.75;
}
.lfg-founder__body p { margin-bottom: 14px; }
.lfg-founder__content { padding: 16px 0; }

/* ─── ABOUT: MISSION ─── */
.lfg-mission {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.lfg-mission__headline {
  font-size: 2rem;
  font-weight: 700;
  color: var(--lfg-fg-dark-primary);
  margin-bottom: 20px;
}
.lfg-mission__body {
  font-size: 1.0625rem;
  color: var(--lfg-fg-dark-secondary);
  line-height: 1.8;
}

/* ─── CAREERS: CULTURE ─── */
.lfg-culture {
  max-width: 760px;
  margin: 0 auto;
}
.lfg-culture__headline {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 16px;
}
.lfg-culture__body,
.lfg-culture__text {
  font-size: 1rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
.lfg-culture__perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
  list-style: none;
  padding: 0;
}
.lfg-culture__perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--lfg-fg-light-secondary);
  padding: 6px 0;
}
.lfg-culture__perk::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--lfg-teal-aa);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── CAREERS: JOB CARDS EXTRA ─── */
.lfg-job-card__content {
  flex: 1;
  min-width: 0;
}
.lfg-job-card__header {
  margin-bottom: 0;
}
.lfg-job-card > .lfg-btn {
  align-self: flex-start;
  flex-shrink: 0;
  white-space: nowrap;
}
.lfg-job-card__body {
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.6;
  margin-top: 8px;
}
.lfg-job-card__requirements {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--lfg-border);
}
.lfg-job-card__requirements li {
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
  padding: 3px 0;
  list-style: disc;
  margin-left: 20px;
}
.lfg-job-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lfg-teal-aa);
  background: rgba(13,124,97,0.08);
  padding: 3px 8px;
  border-radius: 100px;
  margin-bottom: 4px;
}

/* ─── CONTACT FORM WRAPPER ─── */
.lfg-contact-form {
  flex: 1;
}
.lfg-contact-form__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 24px;
}

/* Contact aside extra */
.lfg-contact-aside__heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 4px;
}
.lfg-contact-aside__block {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--lfg-border);
}
.lfg-contact-aside__block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.lfg-contact-aside__note {
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.6;
}

/* ─── GENERIC FORM (contact.html uses lfg-form__* classes) ─── */
.lfg-form__group {
  margin-bottom: 20px;
}
.lfg-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lfg-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 6px;
}
.lfg-form__input,
.lfg-form__select {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  border: 1.5px solid var(--lfg-border);
  border-radius: var(--lfg-radius-input);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--lfg-fg-light-primary);
  background: var(--lfg-bg-white);
  transition: border-color 0.15s;
}
.lfg-form__input:focus,
.lfg-form__select:focus {
  outline: none;
  border-color: var(--lfg-teal-aa);
}
.lfg-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230D7C61' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.lfg-form__textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  border: 1.5px solid var(--lfg-border);
  border-radius: var(--lfg-radius-input);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--lfg-fg-light-primary);
  background: var(--lfg-bg-white);
  transition: border-color 0.15s;
  min-height: 120px;
  resize: vertical;
}
.lfg-form__textarea:focus {
  outline: none;
  border-color: var(--lfg-teal-aa);
}
.lfg-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--lfg-teal);
  color: var(--lfg-navy);
  border: none;
  border-radius: var(--lfg-radius-btn);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.lfg-form__submit:hover { background: #1DB38B; }
.lfg-form { }

/* ─── TEAM: ROLE & HIRING ─── */
.lfg-team-card__role {
  font-size: 0.875rem;
  color: var(--lfg-teal-aa);
  font-weight: 600;
  margin-bottom: 10px;
}
.lfg-team-hiring {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--lfg-bg-light);
  border: 1px solid var(--lfg-border);
  border-radius: var(--lfg-radius-card);
  padding: 48px 32px;
  box-shadow: var(--lfg-shadow-card);
}
.lfg-team-hiring__headline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 12px;
}
.lfg-team-hiring__body {
  font-size: 1rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ─── RESPONSIVE: session 2 additions ─── */
@media (max-width: 1024px) {
  .lfg-about-facts { grid-template-columns: repeat(2, 1fr); }
  .lfg-stats-band__inner { grid-template-columns: 1fr; }
  .lfg-stat-item { border-right: none; border-bottom: 1px solid rgba(240,245,255,0.1); }
  .lfg-stat-item:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .lfg-about-facts { grid-template-columns: repeat(2, 1fr); }
  .lfg-auth-form__row--split { grid-template-columns: 1fr; }
  .lfg-culture__perks { grid-template-columns: 1fr; }
  .lfg-form__row { grid-template-columns: 1fr; }
  .lfg-job-card { flex-direction: column; }
}
@media (max-width: 480px) {
  .lfg-about-facts { grid-template-columns: 1fr; }
}

/* ─── FOOTER STRUCTURAL COLUMNS (session 3 orphan fixes) ─── */
/* These are direct children of .lfg-footer__grid */
.lfg-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lfg-footer__col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ─── AUTH: body-level class + form wrapper ─── */
.lfg-auth-body {
  margin: 0;
  padding: 0;
}
/* .lfg-auth-page already centers .lfg-auth-card; auth-form is just the form element */
.lfg-auth-form {
  display: flex;
  flex-direction: column;
}

/* ─── BLOG ARTICLE PAGE (article wrapper + layout) ─── */
.lfg-blog-article {
  background: var(--lfg-bg-white);
}

/* Article header: light bg, centered, padded for fixed nav */
.lfg-blog-article__header {
  background: var(--lfg-bg-light);
  padding: calc(72px + 56px) 0 48px;
  border-bottom: 1px solid var(--lfg-border);
}
.lfg-blog-article__header-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Category badge above title */
.lfg-blog-article__cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lfg-teal-aa);
  background: rgba(13,124,97,0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* Title */
.lfg-blog-article__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Author + date meta line */
.lfg-blog-article__meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.lfg-blog-article__author {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lfg-fg-light-primary);
}
.lfg-blog-article__date {
  font-size: 0.875rem;
  color: var(--lfg-fg-light-secondary);
}

/* Cover image: full-width, natural ratio (no crop) */
.lfg-blog-article__cover-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 0;
}
.lfg-blog-article__cover {
  width: 100%;
  height: auto;
  border-radius: var(--lfg-radius-card);
  display: block;
}

/* Article body wrapper */
.lfg-blog-article__body-wrap {
  padding: 56px 0;
}
.lfg-blog-article__body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 1.0625rem;
  color: var(--lfg-fg-light-secondary);
  line-height: 1.8;
}
.lfg-blog-article__body h2 {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin: 40px 0 16px;
}
.lfg-blog-article__body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin: 28px 0 12px;
}
.lfg-blog-article__body p { margin-bottom: 20px; }
.lfg-blog-article__body ul,
.lfg-blog-article__body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.lfg-blog-article__body li { margin-bottom: 8px; }
.lfg-blog-article__body a { color: var(--lfg-teal-aa); text-decoration: underline; }
.lfg-blog-article__body blockquote {
  border-left: 3px solid var(--lfg-teal-aa);
  padding-left: 20px;
  margin: 28px 0;
  font-style: italic;
  color: var(--lfg-fg-light-primary);
}

/* Related articles section */
.lfg-blog-article__related {
  background: var(--lfg-bg-light);
  padding: 64px 0;
  border-top: 1px solid var(--lfg-border);
}
.lfg-blog-article__related-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lfg-fg-light-primary);
  margin-bottom: 32px;
}

/* Grid for 3 related cards */
.lfg-blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── BLOG CARD: IMG-LINK + CAT ─── */
/* img-link: anchor wrapping the card thumbnail */
.lfg-blog-card__img-link {
  display: block;
  overflow: hidden;
  border-radius: var(--lfg-radius-card) var(--lfg-radius-card) 0 0;
  line-height: 0;
}
.lfg-blog-card__img-link:hover .lfg-blog-card__img {
  transform: scale(1.03);
}

/* cat: category badge shown above card title (short name used in article-related and index) */
.lfg-blog-card__cat {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lfg-teal-aa);
  background: rgba(13,124,97,0.07);
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 8px;
}

/* ─── BLOG CARD SIZE MODIFIER ─── */
/* --small: compact card in related/sidebar grids */
.lfg-blog-card--small .lfg-blog-card__img {
  height: 180px;
}
.lfg-blog-card--small .lfg-blog-card__body {
  padding: 16px;
}
.lfg-blog-card--small .lfg-blog-card__title {
  font-size: 1rem;
}
.lfg-blog-card--small .lfg-blog-card__excerpt {
  display: none;
}

/* ─── BREADCRUMB ─── */
.lfg-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 0.875rem;
}
.lfg-breadcrumb__link {
  color: var(--lfg-teal-aa);
  font-weight: 500;
}
.lfg-breadcrumb__link:hover { text-decoration: underline; }
.lfg-breadcrumb__sep {
  color: var(--lfg-fg-light-secondary);
}
.lfg-breadcrumb__current {
  color: var(--lfg-fg-light-secondary);
}

/* ─── RESPONSIVE: blog article ─── */
@media (max-width: 1024px) {
  .lfg-blog-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .lfg-blog-article__title { font-size: 1.875rem; }
  .lfg-blog-related-grid { grid-template-columns: 1fr; }
  .lfg-blog-article__cover-wrap { padding-top: 28px; }
}
