@import url("/act-theme.css");

:root {
  --lh-header-h: 72px;
  --lh-navy: #0a1128;
  --lh-navy-deep: #020617;
  --lh-ink: #0f1729;
  --lh-muted: #64748b;
  --lh-line: #e2e8f0;
  --lh-max: 1200px;
  --lh-pad: clamp(1rem, 4vw, 2rem);
  --lh-blue: #2563eb;
  --lh-blue-bright: #3b82f6;
  --lh-green: #059669;
  --lh-green-soft: #ecfdf5;
  --lh-purple: #7c3aed;
  --lh-purple-soft: #f5f3ff;
  --lh-gold: #d97706;
  --lh-gold-soft: #fffbeb;
  --lh-warm: #f97316;
  --lh-display: "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", "Arial Narrow", sans-serif;
  --lh-body: "Aptos", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

[id] {
  scroll-margin-top: calc(var(--lh-header-h, 72px) + 16px);
}

body.landing-home-body {
  margin: 0;
  font-family: var(--lh-body);
  color: var(--lh-ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ---- Header (transparent on hero, solid on scroll) ---- */
.lh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px var(--lh-pad);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

html:not(.lh-nav-solid) .lh-header {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0));
  border-bottom: 1px solid transparent;
}

html.lh-nav-solid .lh-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--lh-line);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px -20px rgba(15, 23, 42, 0.35);
}

.lh-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  min-width: 0;
}

.lh-wordmark {
  display: block;
  height: 34px;
  width: auto;
  max-width: 108px;
  object-fit: contain;
  flex-shrink: 0;
}

.lh-logo-mark {
  width: 40px;
  height: 40px;
  max-width: none;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 34%;
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.35);
}

html:not(.lh-nav-solid) .lh-wordmark {
  filter: none;
}

html.lh-nav-solid .lh-wordmark {
  filter: none;
}

.lh-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
  max-width: 9rem;
}

html:not(.lh-nav-solid) .lh-tagline {
  color: rgba(226, 232, 240, 0.88);
}

html.lh-nav-solid .lh-tagline {
  color: var(--lh-muted);
}

.lh-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 18px;
}

.lh-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}

html:not(.lh-nav-solid) .lh-nav a {
  color: rgba(248, 250, 252, 0.9);
}

html:not(.lh-nav-solid) .lh-nav a:hover {
  color: #fff;
}

html.lh-nav-solid .lh-nav a {
  color: var(--lh-muted);
}

html.lh-nav-solid .lh-nav a:hover {
  color: var(--act-brand-strong);
}

.lh-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.lh-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

html.lh-nav-solid .lh-nav-toggle:hover {
  background: rgba(15, 23, 42, 0.06);
}

.lh-nav-backdrop {
  display: none;
}

.lh-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.12s, box-shadow 0.16s, background 0.16s;
}

.lh-btn:active { transform: translateY(1px); }

.lh-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(37, 99, 235, 0.75);
}

.lh-btn-primary:hover {
  box-shadow: 0 14px 28px -8px rgba(37, 99, 235, 0.85);
}

.lh-btn-ghost {
  background: transparent;
  border: 1px solid transparent;
}

html:not(.lh-nav-solid) .lh-btn-ghost {
  color: #fff;
}

html:not(.lh-nav-solid) .lh-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

html.lh-nav-solid .lh-btn-ghost {
  color: var(--lh-ink);
}

html.lh-nav-solid .lh-btn-ghost:hover {
  background: #f1f5f9;
}

.lh-btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.lh-btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
}

/* ---- Hero shell ---- */
.lh-hero-shell {
  position: relative;
  background: var(--lh-navy-deep);
  padding-bottom: clamp(48px, 8vw, 72px);
}

.lh-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding-top: var(--lh-header-h, 72px);
  min-height: clamp(520px, 72vh, 760px);
}

.lh-hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.lh-hero-bg-wrap .lh-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 68%;
  pointer-events: none;
}

.lh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.9) 34%, rgba(2, 6, 23, 0.52) 52%, rgba(2, 6, 23, 0.08) 68%, transparent 82%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.35) 0%, transparent 42%, rgba(2, 6, 23, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

.lh-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--lh-max);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 56px) var(--lh-pad) clamp(88px, 12vw, 128px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}

.lh-hero h1 {
  margin: 0 0 20px;
  font-family: var(--lh-display);
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-transform: uppercase;
}

.lh-hero-accent {
  display: block;
  margin-top: 0.15em;
  background: linear-gradient(90deg, #60a5fa 0%, #93c5fd 45%, #bfdbfe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lh-hero-lead {
  margin: 0 0 28px;
  max-width: 48ch;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: rgba(226, 232, 240, 0.92);
  line-height: 1.6;
}

.lh-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.lh-social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: rgba(226, 232, 240, 0.9);
}

.lh-avatar-stack {
  display: flex;
}

.lh-avatar-stack img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(15, 23, 42, 0.9);
  margin-left: -12px;
  object-fit: cover;
  background: #334155;
}

.lh-avatar-stack img:first-child { margin-left: 0; }

.lh-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.lh-rating-stars {
  display: inline-flex;
  gap: 2px;
  color: #fbbf24;
}

.lh-rating-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.lh-hero-mark {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
  pointer-events: none;
}

.lh-hero-mark-logo {
  width: min(100%, clamp(280px, 42vw, 480px));
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(2, 6, 23, 0.35));
}

/* SVG sizing */
.lh-path-icon svg,
.lh-feature-list svg,
.lh-footer-cta-icon svg,
.lh-quote-mark,
.lh-satellite-stat .lh-stat-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.lh-stats .lh-stat-icon svg,
.lh-stats .lh-stat-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lh-feature-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.lh-path-icon svg {
  width: 22px;
  height: 22px;
}

/* Stats bar */
.lh-stats {
  position: relative;
  z-index: 3;
  max-width: var(--lh-max);
  margin: -72px auto 0;
  padding: 28px var(--lh-pad) 26px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--lh-line);
  box-shadow: 0 20px 48px -28px rgba(15, 23, 42, 0.4);
}

.lh-stat {
  --lh-stat-accent: var(--act-brand-strong);
  padding: 8px 12px 6px;
  text-align: center;
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.lh-stat--engineers { --lh-stat-accent: #2563eb; }
.lh-stat--countries { --lh-stat-accent: #6366f1; }
.lh-stat--discussions { --lh-stat-accent: #16a34a; }
.lh-stat--partners { --lh-stat-accent: #4338ca; }
.lh-stat--disciplines { --lh-stat-accent: #2563eb; }
.lh-stat--careers { --lh-stat-accent: #ea580c; }

.lh-stat + .lh-stat {
  border-left: 1px solid #e5e7eb;
}

.lh-stat .lh-stat-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 0;
  color: var(--lh-stat-accent);
  background: transparent;
}

.lh-stats .lh-stat-icon svg {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  overflow: visible;
}

.lh-stat strong {
  display: block;
  font-family: var(--lh-display);
  font-size: clamp(1.75rem, 2.85vw, 2.25rem);
  font-weight: 800;
  font-stretch: semi-expanded;
  color: var(--lh-stat-accent);
  letter-spacing: -0.04em;
  line-height: 1;
}

.lh-stat span {
  display: block;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lh-muted);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

/* Meet the founder */
.lh-founder {
  max-width: var(--lh-max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 72px) var(--lh-pad) clamp(24px, 4vw, 40px);
  scroll-margin-top: 96px;
}

.lh-founder-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 40px -28px rgba(15, 23, 42, 0.12);
}

.lh-founder-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #e2e8f0;
}

.lh-founder-photo picture,
.lh-founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.lh-founder-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--act-brand-strong);
}

.lh-founder-copy h2 {
  margin: 0 0 10px;
  font-family: var(--lh-display);
  font-size: clamp(1.85rem, 3.6vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.1;
}

.lh-founder-creds {
  margin: 0 0 16px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--act-brand-strong);
}

.lh-founder-lead,
.lh-founder-outro {
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--lh-muted);
  max-width: 58ch;
}

.lh-founder-outro {
  margin-bottom: 14px;
}

.lh-founder-exp {
  margin: 0 0 22px;
}

.lh-founder-cred-label {
  margin: 0 0 12px;
  font-size: 0.92rem;
  color: var(--lh-muted);
}

.lh-founder-cred-label span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--act-brand-strong);
}

.lh-founder-exp .lh-founder-logos {
  margin: 0;
}

.lh-founder-logos {
  list-style: none;
  margin: 0 0 18px;
  padding: 10px 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 100%;
}

.lh-founder-logos li {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px clamp(10px, 2vw, 22px);
}

.lh-founder-logos li + li {
  border-left: 1px solid #d1d5db;
}

.lh-founder-logos picture {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lh-founder-logos img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(36px, 5vw, 52px);
  object-fit: contain;
}

.lh-founder-logos img[alt="NASA"] {
  max-height: clamp(40px, 5.5vw, 56px);
}

.lh-founder-logos img[alt="Extant Aerospace"],
.lh-founder-logos picture img[alt="Extant Aerospace"] {
  max-height: clamp(34px, 5vw, 50px);
  max-width: min(100%, 180px);
}

.lh-founder-logos img[alt="Johns Hopkins University"] {
  max-height: clamp(32px, 4.5vw, 48px);
  max-width: min(100%, 220px);
}

.lh-founder-logos img[alt="United Launch Alliance"] {
  max-width: min(100%, 120px);
}

.lh-founder-edu {
  margin: 0 0 18px;
}

.lh-founder-edu img {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(100%, 220px);
  object-fit: contain;
}

.lh-founder-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--act-brand-strong);
  text-decoration: none;
}

.lh-founder-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Section headings */
.lh-section {
  max-width: var(--lh-max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 72px) var(--lh-pad);
}

.lh-section--paths {
  background: #f8fafc;
  padding-top: clamp(32px, 5vw, 48px);
  max-width: 1320px;
}

.lh-section--stories {
  background: #fff;
}

.lh-section-head {
  text-align: center;
  margin-bottom: clamp(28px, 5vw, 40px);
}

.lh-kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lh-kicker--blue { color: var(--act-brand-strong); }

.lh-kicker--warm { color: var(--lh-warm); }

.lh-section-head h2 {
  margin: 0 0 12px;
  font-family: var(--lh-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  color: var(--lh-ink);
}

.lh-section-head p {
  margin: 0 auto;
  max-width: 56ch;
  color: var(--lh-muted);
  font-size: 1.02rem;
}

.lh-billing-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 auto clamp(24px, 4vw, 32px);
  max-width: var(--lh-max);
  padding: 0 var(--lh-pad);
}

.lh-billing-toggle-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lh-muted);
}

.lh-billing-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--lh-line);
  box-shadow: 0 8px 24px -18px rgba(15, 23, 42, 0.18);
}

.lh-billing-toggle__btn {
  appearance: none;
  border: 0;
  margin: 0;
  padding: 10px 18px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--lh-muted);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.lh-billing-toggle__btn:hover {
  color: var(--lh-ink);
}

.lh-billing-toggle__btn.is-active {
  color: #fff;
  background: var(--lh-blue);
  box-shadow: 0 6px 16px -8px rgba(37, 99, 235, 0.55);
}

.lh-billing-toggle__btn:focus-visible {
  outline: 2px solid var(--lh-blue);
  outline-offset: 2px;
}

/* Path cards */
.lh-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
  align-items: stretch;
}

.lh-path-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 26px 22px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--lh-line);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 14px 40px -22px rgba(15, 23, 42, 0.18);
  scroll-margin-top: 100px;
}

.lh-path-card h3 {
  margin: 14px 0 8px;
  font-family: var(--lh-display);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--lh-ink);
}

.lh-path-price {
  margin: 0 0 8px;
  font-family: var(--lh-display);
  font-size: clamp(1.65rem, 2.2vw, 1.95rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--lh-ink);
}

.lh-path-amount {
  font-size: inherit;
  font-weight: inherit;
}

.lh-path-period {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--lh-muted);
}

.lh-path-detail {
  margin: 0 0 18px;
  padding-bottom: 18px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.lh-path-detail:has(+ .lh-path-includes),
.lh-path-detail:has(+ .lh-path-mentor) {
  margin-bottom: 12px;
  padding-bottom: 0;
  border-bottom: none;
}

.lh-path-includes {
  margin: 0 0 16px;
  padding: 12px 14px;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--lh-ink);
  background: rgba(15, 23, 42, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.lh-path-includes strong {
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.01em;
}

.lh-path-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.lh-path-icon svg {
  width: 26px;
  height: 26px;
}

.lh-path-icon--blue { color: var(--act-brand-strong); background: var(--act-brand-soft); }
.lh-path-icon--green { color: var(--lh-green); background: var(--lh-green-soft); }
.lh-path-icon--purple { color: var(--lh-purple); background: var(--lh-purple-soft); }
.lh-path-icon--gold { color: var(--lh-gold); background: var(--lh-gold-soft); }

.lh-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  color: #475569;
}

.lh-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 0 11px;
  margin: 0 0 11px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.lh-feature-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.lh-feature-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.lh-path-card--blue { border-top: 4px solid var(--act-brand); }
.lh-path-card--blue .lh-path-detail { color: var(--act-brand-strong); }
.lh-path-card--blue .lh-feature-list svg { color: var(--act-brand); }
.lh-path-card--blue .lh-path-cta { background: var(--act-brand); color: #fff; }

.lh-path-card--green { border-top: 4px solid var(--lh-green); }
.lh-path-card--green .lh-path-detail { color: var(--lh-green); }
.lh-path-card--green .lh-path-includes {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.14);
}
.lh-path-card--green .lh-feature-list svg { color: var(--lh-green); }
.lh-path-card--green .lh-path-cta { background: var(--lh-green); color: #fff; }

.lh-path-card--purple { border-top: 4px solid var(--lh-purple); }
.lh-path-card--purple .lh-path-detail { color: var(--lh-purple); }
.lh-path-card--purple .lh-path-includes {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.14);
}
.lh-path-card--purple .lh-feature-list svg { color: var(--lh-purple); }
.lh-path-card--purple .lh-path-cta { background: var(--lh-purple); color: #fff; }

.lh-path-card--gold {
  border-top: 4px solid var(--lh-gold);
  position: relative;
  padding-top: 42px;
}

.lh-path-card--gold .lh-path-detail { color: var(--lh-gold); }

.lh-path-mentor {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45;
}

.lh-path-mentor a {
  color: var(--lh-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lh-path-mentor a:hover {
  color: #b45309;
}
.lh-path-card--gold .lh-path-includes {
  background: rgba(217, 119, 6, 0.1);
  border-color: rgba(217, 119, 6, 0.18);
}
.lh-path-card--gold .lh-feature-list svg { color: var(--lh-gold); }
.lh-path-card--gold .lh-path-cta {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
}

.lh-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--lh-gold);
  color: #fff;
  box-shadow: 0 4px 12px -6px rgba(217, 119, 6, 0.55);
}

.lh-path-disciplines {
  margin: 4px 0 0;
  padding: 10px 12px;
  font-size: 0.74rem;
  line-height: 1.5;
  color: #047857;
  background: rgba(22, 163, 74, 0.06);
  border: 1px solid rgba(22, 163, 74, 0.12);
  border-radius: 10px;
}

.lh-disciplines-label {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lh-green);
}

.lh-discipline-grid {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #047857;
}

.lh-discipline-grid li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lh-discipline-chip {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--lh-green);
  flex-shrink: 0;
}

.lh-path-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

/* Satellite */
.lh-satellite {
  max-width: var(--lh-max);
  margin: 0 auto;
  padding: 0 var(--lh-pad) clamp(48px, 8vw, 72px);
}

.lh-satellite-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
  align-items: center;
  padding: clamp(32px, 5vw, 44px);
  border-radius: 20px;
  color: #e2e8f0;
  overflow: hidden;
  background: var(--lh-navy-deep);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 24px 48px -28px rgba(15, 23, 42, 0.6);
}

.lh-satellite-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.lh-satellite-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 68%;
}

.lh-satellite-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.82) 38%, rgba(2, 6, 23, 0.45) 58%, rgba(2, 6, 23, 0.12) 72%, transparent 86%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.45) 0%, transparent 45%, rgba(2, 6, 23, 0.7) 100%);
  pointer-events: none;
}

.lh-satellite-copy,
.lh-satellite-stats {
  position: relative;
  z-index: 2;
}

.lh-satellite h2 {
  margin: 0 0 14px;
  font-family: var(--lh-display);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.lh-satellite-copy > p {
  margin: 0 0 24px;
  max-width: 50ch;
  color: rgba(226, 232, 240, 0.9);
  line-height: 1.6;
}

.lh-satellite-disciplines {
  margin: -8px 0 20px;
  max-width: 58ch;
  font-size: 0.92rem;
  color: rgba(191, 219, 254, 0.95);
  line-height: 1.55;
}

.lh-satellite-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lh-satellite-stat {
  padding: 16px 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.22);
  text-align: center;
}

.lh-stat-icon--light {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 50%;
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.2);
}

.lh-satellite-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.lh-satellite-stat span {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  line-height: 1.35;
}

/* Testimonials marquee */
.lh-quotes-marquee {
  margin-inline: calc(-1 * var(--lh-pad));
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.lh-quotes-track {
  display: flex;
  width: max-content;
  animation: lh-quotes-marquee 80s linear infinite;
}

.lh-quotes-marquee:hover .lh-quotes-track,
.lh-quotes-marquee:focus-within .lh-quotes-track {
  animation-play-state: paused;
}

.lh-quotes-group {
  display: flex;
  gap: 18px;
  padding-inline: 18px;
}

.lh-quote {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 0 0 auto;
  width: min(320px, 82vw);
  min-height: 0;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--lh-line);
  border-radius: 16px;
  box-shadow: 0 10px 28px -20px rgba(15, 23, 42, 0.2);
}

.lh-quote-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lh-quote-who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.lh-quote-who strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--lh-ink);
  line-height: 1.25;
}

.lh-quote-who span {
  font-size: 0.78rem;
  color: var(--lh-muted);
  line-height: 1.35;
}

@keyframes lh-quotes-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lh-quotes-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .lh-quotes-track {
    animation: none;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .lh-quotes-group[aria-hidden="true"] {
    display: none;
  }
}

.lh-quote-avatar,
.lh-quote img {
  display: block;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  min-width: 56px;
  max-width: 56px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  background: var(--act-brand-soft, #e9f0ff);
}

.lh-quote blockquote {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--lh-muted);
  line-height: 1.55;
}

.lh-quote blockquote::before {
  content: "\201C";
  margin-right: 0.12em;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--act-brand);
  line-height: 1;
  vertical-align: -0.12em;
}

/* Footer CTA bar */
.lh-footer-cta-wrap {
  max-width: var(--lh-max);
  margin: 0 auto;
  padding: 0 var(--lh-pad) clamp(56px, 8vw, 80px);
}

.lh-footer-cta-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 32px) clamp(24px, 4vw, 36px);
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(120deg, #0b1530, #1e3a8a);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 20px 40px -24px rgba(15, 23, 42, 0.45);
}

.lh-footer-cta-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  flex-shrink: 0;
}

.lh-footer-cta-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.lh-footer-cta-text h2 {
  margin: 0 0 6px;
  font-family: var(--lh-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  letter-spacing: -0.02em;
}

.lh-footer-cta-text p {
  margin: 0;
  max-width: 48ch;
  font-size: 0.92rem;
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.5;
}

.lh-footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.lh-site-footer {
  padding: 28px var(--lh-pad) 44px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--lh-muted);
  background: #f8fafc;
  border-top: 1px solid var(--lh-line);
}

.lh-site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
}

.lh-site-footer a {
  text-decoration: none;
  font-weight: 600;
}

.lh-site-footer a:hover {
  color: var(--act-brand-strong);
}

/* Login redirect page */
.login-page-body {
  min-height: 100vh;
  background: linear-gradient(180deg, #eef1f7, #f8fafc);
}

.login-page-top { padding: 16px var(--lh-pad); }

.login-page-main {
  display: flex;
  justify-content: center;
  padding: 24px var(--lh-pad) 64px;
}

.login-page-card {
  width: min(440px, 100%);
  margin: 0;
}

.login-page-card .portal-card-head p {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: var(--lh-muted);
}

.react-entry-redirect {
  display: grid;
  place-items: center;
  min-height: 100vh;
  font-family: system-ui, sans-serif;
}

@media (max-width: 1100px) {
  .lh-hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .lh-hero-mark {
    justify-content: center;
  }

  .lh-hero-mark-logo {
    width: min(320px, 82vw);
  }

  .lh-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lh-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lh-satellite-inner {
    grid-template-columns: 1fr;
  }

  .lh-footer-cta-bar {
    grid-template-columns: auto 1fr;
  }

  .lh-footer-cta-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .lh-nav-toggle { display: inline-flex; }

  .lh-nav {
    display: none;
    position: fixed;
    top: var(--lh-header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 49;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    margin: 0;
    padding: 12px var(--lh-pad) 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--lh-line);
    box-shadow: 0 16px 40px -24px rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(12px);
  }

  html.lh-nav-open {
    overflow: hidden;
  }

  html.lh-nav-open .lh-nav {
    display: flex;
  }

  html.lh-nav-open .lh-nav-backdrop {
    display: block;
    position: fixed;
    inset: var(--lh-header-h) 0 0 0;
    z-index: 48;
    background: rgba(2, 6, 23, 0.42);
    border: 0;
  }

  .lh-nav a {
    padding: 14px 12px;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--lh-ink) !important;
  }

  .lh-nav a:hover,
  .lh-nav a:focus-visible {
    background: rgba(37, 99, 235, 0.08);
    color: var(--lh-blue) !important;
  }

  .lh-nav a[aria-current="page"] {
    background: rgba(37, 99, 235, 0.1);
    color: var(--lh-blue) !important;
  }

  .lh-tagline { display: none; }

  .lh-header-actions .lh-btn-ghost span { display: none; }
}

@media (max-width: 720px) {
  .lh-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -48px;
    gap: 0;
  }

  .lh-stat + .lh-stat {
    border-left: none;
  }

  .lh-stat:nth-child(odd) {
    border-right: 1px solid var(--lh-line);
  }

  .lh-stat:nth-child(-n + 4) {
    border-bottom: 1px solid var(--lh-line);
  }

  .lh-stat:nth-child(5) {
    border-right: none;
  }

  .lh-hero-ctas .lh-btn,
  .lh-footer-cta-actions .lh-btn {
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }

  .lh-path-grid {
    grid-template-columns: 1fr;
  }

  .lh-founder-card {
    grid-template-columns: 1fr;
  }

  .lh-founder-photo {
    max-width: 320px;
    margin: 0 auto;
  }

  .lh-founder-logos {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .lh-founder-logos li {
    flex: 0 0 auto;
    min-width: 118px;
  }

  .lh-founder-logos li + li {
    border-left: 1px solid #d1d5db;
  }

  .lh-quote {
    width: min(280px, 88vw);
  }

  .lh-footer-cta-bar {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .lh-footer-cta-icon {
    justify-self: start;
  }
}
