
/* =============================================================
   LONDON HUB — page stylesheet
   Prefix: .lhub-  (reusable for future city / topic hubs)
   Brand tokens aligned with homepage (navy #0D3B66, coral #FA7268)
   ============================================================= */

:root {
  /* Page-scoped tokens (don't clobber the global header/footer tokens) */
  --lhub-navy:        #0D3B66;
  --lhub-navy-2:      #0b355a;
  --lhub-navy-3:      #092b4a;
  --lhub-coral:       #FA7268;
  --lhub-coral-soft:  #ff9b94;
  --lhub-teal:        #0E8C7A;
  --lhub-teal-soft:   #e6f4f1;
  --lhub-amber:       #C8851C;
  --lhub-amber-soft:  #fdf3e0;
  --lhub-coral-soft-bg: #FFF1EF;
  --lhub-navy-soft-bg:  #EEF3F9;

  --lhub-ink:     #0f172a;
  --lhub-slate:   #475569;
  --lhub-slate-2: #64748b;
  --lhub-soft:    #F8FAFC;
  --lhub-cream:   #FCF7F1;
  --lhub-line:    rgba(15, 23, 42, 0.08);
  --lhub-line-2:  rgba(15, 23, 42, 0.12);
  --lhub-line-onNavy: rgba(255, 255, 255, 0.16);

  --lhub-shadow-sm: 0 6px 18px rgba(13, 59, 102, 0.06);
  --lhub-shadow-md: 0 10px 28px rgba(13, 59, 102, 0.08);
  --lhub-shadow-lg: 0 24px 60px rgba(13, 59, 102, 0.14);

  --lhub-radius-sm: 12px;
  --lhub-radius-md: 16px;
  --lhub-radius-lg: 24px;
  --lhub-radius-xl: 32px;

  --lhub-max: 1240px;
  --lhub-pad: 20px;
  --lhub-pad-md: 40px;

  --lhub-font-display: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --lhub-font-body:    'PT Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Base (page-scoped — won't leak) ---------- */

.lhub-body {
  font-family: var(--lhub-font-body);
  color: var(--lhub-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}

.lhub-main { display: block; overflow-x: hidden; }

.lhub-main h1, .lhub-main h2, .lhub-main h3, .lhub-main h4 {
  font-family: var(--lhub-font-display);
  color: var(--lhub-navy);
  letter-spacing: -0.01em;
}

.lhub-main a {
  color: var(--lhub-navy);
  text-decoration: none;
  transition: color 160ms ease;
}
.lhub-main a:hover { color: var(--lhub-coral); }

.lhub-wrap {
  width: 100%;
  max-width: var(--lhub-max);
  margin: 0 auto;
  padding: 0 var(--lhub-pad);
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .lhub-wrap { padding: 0 var(--lhub-pad-md); }
}

/* Reusable gradient highlight (matches homepage hero accent) */
.lhub-grad {
  background: linear-gradient(90deg, var(--lhub-coral) 0%, var(--lhub-coral-soft) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.lhub-grad--light {
  background: linear-gradient(90deg, #ffd1cc 0%, #ffe9e6 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ---------- Breadcrumb ---------- */

.lhub-crumbs {
  padding: 16px 0 8px;
  border-bottom: 1px solid var(--lhub-line);
  background: #fff;
}
.lhub-crumbsList {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: var(--lhub-slate-2);
}
.lhub-crumbsList li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--lhub-line-2);
}
.lhub-crumbsList a { color: var(--lhub-slate-2); font-weight: 600; }
.lhub-crumbsList a:hover { color: var(--lhub-coral); }
.lhub-crumbsList [aria-current="page"] span { color: var(--lhub-navy); font-weight: 700; }

/* ---------- Buttons (shared) ---------- */

.lhub-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  font-family: var(--lhub-font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
  text-decoration: none !important;
}
.lhub-btn:hover { transform: translateY(-1px); }

.lhub-btn--primary,
.lhub-btn--primary:link,
.lhub-btn--primary:visited {
  background: var(--lhub-navy);
  color: #fff !important;
  border-color: var(--lhub-navy);
}
.lhub-btn--primary:hover { background: var(--lhub-navy-2); color: #fff !important; }

.lhub-btn--coral,
.lhub-btn--coral:link,
.lhub-btn--coral:visited {
  background: var(--lhub-coral);
  color: #fff !important;
  border-color: var(--lhub-coral);
}
.lhub-btn--coral:hover { background: #ec6a60; color: #fff !important; }

.lhub-btn--ghost {
  background: transparent;
  color: var(--lhub-navy);
  border-color: var(--lhub-line-2);
}
.lhub-btn--ghost:hover {
  background: var(--lhub-navy-soft-bg);
  color: var(--lhub-navy);
  border-color: var(--lhub-navy);
}
.lhub-btn--ghostLight {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.lhub-btn--ghostLight:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: #fff;
}

/* ---------- Section head (shared across sections) ---------- */

.lhub-sectionHead { margin-bottom: 36px; max-width: 760px; }
.lhub-sectionHead--center { margin-left: auto; margin-right: auto; text-align: center; }
.lhub-sectionHead--split {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 12px;
  max-width: none;
}
@media (min-width: 900px) {
  .lhub-sectionHead--split {
    flex-direction: row; align-items: flex-end; justify-content: space-between;
  }
}

.lhub-sectionEyebrow {
  display: inline-block;
  font-family: var(--lhub-font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lhub-coral);
  padding: 6px 12px;
  background: var(--lhub-coral-soft-bg);
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid rgba(250, 114, 104, 0.18);
}
.lhub-sectionEyebrow--onNavy {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.lhub-sectionTitle {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 16px;
}
.lhub-sectionLede {
  color: var(--lhub-slate);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.6;
  max-width: 680px;
  margin: 0;
}
.lhub-sectionHead--center .lhub-sectionLede { margin-left: auto; margin-right: auto; }

.lhub-linkArrow {
  font-family: var(--lhub-font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--lhub-navy);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 180ms ease;
  white-space: nowrap;
}
.lhub-linkArrow:hover { gap: 10px; color: var(--lhub-coral); }


/* =============================================================
   HERO
   ============================================================= */

.lhub-hero {
  position: relative;
  padding: 56px 0 64px;
  background:
    radial-gradient(1100px 460px at 10% -10%, rgba(250,114,104,0.08), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(13,59,102,0.06), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--lhub-soft) 100%);
  overflow: hidden;
}
@media (min-width: 900px) { .lhub-hero { padding: 72px 0 88px; } }

.lhub-hero::before {
  /* subtle dotted grid texture */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(13,59,102,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0) 70%);
          mask-image: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0) 70%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 0;
}

.lhub-hero__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .lhub-hero__wrap {
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
  }
}

/* Hero left column */

.lhub-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--lhub-font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lhub-coral);
  padding: 8px 14px;
  background: #fff;
  border: 1px solid rgba(250, 114, 104, 0.3);
  border-radius: 999px;
  box-shadow: var(--lhub-shadow-sm);
  margin-bottom: 24px;
}
.lhub-eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lhub-coral);
  box-shadow: 0 0 0 4px rgba(250, 114, 104, 0.18);
}

.lhub-hero__title {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.lhub-hero__lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--lhub-slate);
  max-width: 580px;
  margin: 0 0 28px;
  line-height: 1.6;
}

.lhub-hero__ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 28px;
}

.lhub-hero__meta {
  display: flex; flex-wrap: wrap; gap: 28px;
  list-style: none; padding: 0; margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--lhub-line);
  color: var(--lhub-slate-2);
  font-size: 14px;
  font-family: var(--lhub-font-display);
}
.lhub-hero__meta li { display: flex; align-items: baseline; gap: 8px; }
.lhub-hero__meta strong {
  font-size: 22px; color: var(--lhub-navy); font-weight: 800;
}

/* Hero right column — topic tiles */

.lhub-hero__tiles {
  position: relative;
}

.lhub-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (min-width: 540px) {
  .lhub-tiles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}
@media (min-width: 1024px) {
  .lhub-tiles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}

.lhub-tile {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--lhub-line);
  border-radius: var(--lhub-radius-md);
  box-shadow: var(--lhub-shadow-sm);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  min-height: 112px;
  color: var(--lhub-navy) !important;
}
.lhub-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 59, 102, 0.2);
  box-shadow: var(--lhub-shadow-md);
}

.lhub-tile__ico {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--lhub-navy-soft-bg);
  color: var(--lhub-navy);
  transition: background-color 200ms ease, color 200ms ease;
}
.lhub-tile__ico svg { width: 20px; height: 20px; display: block; }

.lhub-tile__label {
  font-family: var(--lhub-font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: var(--lhub-navy);
}

/* Per-accent tile icon chip */
.lhub-tile[data-accent="navy"]  .lhub-tile__ico { background: var(--lhub-navy-soft-bg); color: var(--lhub-navy); }
.lhub-tile[data-accent="coral"] .lhub-tile__ico { background: var(--lhub-coral-soft-bg); color: var(--lhub-coral); }
.lhub-tile[data-accent="teal"]  .lhub-tile__ico { background: var(--lhub-teal-soft);     color: var(--lhub-teal); }
.lhub-tile[data-accent="amber"] .lhub-tile__ico { background: var(--lhub-amber-soft);    color: var(--lhub-amber); }

.lhub-undecided {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--lhub-slate) !important;
  font-family: var(--lhub-font-display);
}
.lhub-undecided:hover { color: var(--lhub-coral) !important; }
.lhub-undecided u { text-underline-offset: 3px; text-decoration-thickness: 1.5px; }


/* =============================================================
   JOURNEY — slim phase strip
   ============================================================= */

.lhub-journey {
  padding: 32px 0 16px;
  background: #fff;
}
@media (min-width: 900px) { .lhub-journey { padding: 40px 0 24px; } }

.lhub-journey__head {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  margin-bottom: 18px;
}
.lhub-journey__title {
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 700;
  color: var(--lhub-slate);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lhub-journey__more {
  font-family: var(--lhub-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--lhub-navy);
  transition: color 160ms ease, gap 160ms ease;
  display: inline-flex; align-items: center; gap: 4px;
}
.lhub-journey__more:hover,
.lhub-journey__more.is-active {
  color: var(--lhub-coral);
  gap: 8px;
}

.lhub-journey__rail {
  list-style: none;
  padding: 14px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: linear-gradient(180deg, #fff, var(--lhub-soft));
  border: 1px solid var(--lhub-line);
  border-radius: var(--lhub-radius-lg);
  box-shadow: var(--lhub-shadow-sm);
}
@media (min-width: 720px) {
  .lhub-journey__rail {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 18px;
  }
}

.lhub-phase {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 2px;
  padding: 14px 16px;
  border-radius: var(--lhub-radius-md);
}
@media (min-width: 720px) {
  .lhub-phase {
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    column-gap: 0;
    row-gap: 6px;
    padding: 12px 18px;
    border-right: 1px dashed var(--lhub-line-2);
  }
  .lhub-phase:last-child { border-right: none; }
}

.lhub-phase__num {
  grid-row: 1 / span 2;
  grid-column: 1;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--lhub-coral-soft-bg);
  color: var(--lhub-coral);
  font-family: var(--lhub-font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  align-self: center;
}
@media (min-width: 720px) {
  .lhub-phase__num {
    grid-row: 1;
    grid-column: 1;
    width: 36px; height: 36px;
    align-self: flex-start;
  }
}

.lhub-phase__name {
  grid-row: 1;
  grid-column: 2;
  font-family: var(--lhub-font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--lhub-navy);
  align-self: end;
}
@media (min-width: 720px) { .lhub-phase__name { grid-column: 1; font-size: 18px; } }

.lhub-phase__desc {
  grid-row: 2;
  grid-column: 2;
  font-size: 13px;
  color: var(--lhub-slate-2);
  align-self: start;
}
@media (min-width: 720px) { .lhub-phase__desc { grid-column: 1; } }


/* =============================================================
   STARTERS — 8-card topic hub grid
   ============================================================= */

.lhub-starters {
  padding: 72px 0 64px;
  background: #fff;
}
@media (min-width: 900px) { .lhub-starters { padding: 96px 0 80px; } }

.lhub-starterGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px)  { .lhub-starterGrid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .lhub-starterGrid { grid-template-columns: repeat(4, 1fr); gap: 22px; } }

.lhub-starterCard {
  background: #fff;
  border: 1px solid var(--lhub-line);
  border-radius: var(--lhub-radius-xl);
  padding: 28px 24px 24px;
  box-shadow: var(--lhub-shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  position: relative;
  overflow: hidden;
}
.lhub-starterCard::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--_lhub-accent, var(--lhub-navy));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms ease;
}
.lhub-starterCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--lhub-shadow-md);
  border-color: rgba(13, 59, 102, 0.16);
}
.lhub-starterCard:hover::before { transform: scaleX(1); }

.lhub-starterCard[data-accent="navy"]  { --_lhub-accent: var(--lhub-navy); }
.lhub-starterCard[data-accent="coral"] { --_lhub-accent: var(--lhub-coral); }
.lhub-starterCard[data-accent="teal"]  { --_lhub-accent: var(--lhub-teal); }
.lhub-starterCard[data-accent="amber"] { --_lhub-accent: var(--lhub-amber); }

.lhub-starterCard__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.lhub-starterCard__ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--_lhub-accent-bg, var(--lhub-navy-soft-bg));
  color: var(--_lhub-accent, var(--lhub-navy));
}
.lhub-starterCard__ico svg { width: 24px; height: 24px; display: block; }

.lhub-starterCard[data-accent="navy"]  .lhub-starterCard__ico { background: var(--lhub-navy-soft-bg); color: var(--lhub-navy); }
.lhub-starterCard[data-accent="coral"] .lhub-starterCard__ico { background: var(--lhub-coral-soft-bg); color: var(--lhub-coral); }
.lhub-starterCard[data-accent="teal"]  .lhub-starterCard__ico { background: var(--lhub-teal-soft);     color: var(--lhub-teal); }
.lhub-starterCard[data-accent="amber"] .lhub-starterCard__ico { background: var(--lhub-amber-soft);    color: var(--lhub-amber); }

.lhub-starterCard__count {
  font-family: var(--lhub-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lhub-slate-2);
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--lhub-soft);
  border: 1px solid var(--lhub-line);
}

.lhub-starterCard__title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 10px;
}
.lhub-starterCard__title a { color: var(--lhub-navy); }
.lhub-starterCard__title a:hover { color: var(--lhub-coral); }

.lhub-starterCard__desc {
  color: var(--lhub-slate);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.lhub-starterCard__links {
  list-style: none; padding: 0; margin: auto 0 0;
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--lhub-line);
}
.lhub-starterCard__links a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--lhub-font-display);
  color: var(--lhub-slate);
  transition: color 160ms ease, gap 160ms ease;
}
.lhub-starterCard__links a::before {
  content: "→";
  color: var(--_lhub-accent, var(--lhub-navy));
  font-weight: 700;
  transform: translateX(0);
  transition: transform 160ms ease;
}
.lhub-starterCard__links a:hover {
  color: var(--lhub-navy);
  gap: 12px;
}
.lhub-starterCard__links a:hover::before { transform: translateX(2px); }


/* =============================================================
   ROADMAP — full expanded 4-phase grid
   ============================================================= */

.lhub-roadmap {
  padding: 80px 0;
  background: var(--lhub-soft);
  background-image:
    radial-gradient(800px 280px at 50% -10%, rgba(250,114,104,0.06), transparent 70%);
}
@media (min-width: 900px) { .lhub-roadmap { padding: 104px 0 96px; } }

.lhub-roadmapGrid {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: phase;
}
@media (min-width: 720px)  { .lhub-roadmapGrid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (min-width: 1100px) { .lhub-roadmapGrid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.lhub-phaseCard {
  background: #fff;
  border: 1px solid var(--lhub-line);
  border-radius: var(--lhub-radius-lg);
  padding: 26px 24px;
  box-shadow: var(--lhub-shadow-sm);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.lhub-phaseCard:hover,
.lhub-phaseCard.is-peek {
  transform: translateY(-3px);
  box-shadow: var(--lhub-shadow-md);
}
.lhub-phaseCard.is-peek { border-color: rgba(13, 59, 102, 0.22); }
.lhub-phaseCard[data-phase="1"]::after,
.lhub-phaseCard[data-phase="2"]::after,
.lhub-phaseCard[data-phase="3"]::after,
.lhub-phaseCard[data-phase="4"]::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 56px; height: 4px;
  border-radius: 4px 0 4px 0;
  background: var(--lhub-coral);
}
.lhub-phaseCard[data-phase="1"]::after { background: var(--lhub-navy); }
.lhub-phaseCard[data-phase="2"]::after { background: var(--lhub-coral); }
.lhub-phaseCard[data-phase="3"]::after { background: var(--lhub-teal); }
.lhub-phaseCard[data-phase="4"]::after { background: var(--lhub-amber); }

.lhub-phaseCard__head {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 14px;
}
.lhub-phaseCard__num {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--lhub-font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--lhub-navy-soft-bg);
  color: var(--lhub-navy);
  flex-shrink: 0;
}
.lhub-phaseCard[data-phase="2"] .lhub-phaseCard__num { background: var(--lhub-coral-soft-bg); color: var(--lhub-coral); }
.lhub-phaseCard[data-phase="3"] .lhub-phaseCard__num { background: var(--lhub-teal-soft);     color: var(--lhub-teal); }
.lhub-phaseCard[data-phase="4"] .lhub-phaseCard__num { background: var(--lhub-amber-soft);    color: var(--lhub-amber); }

.lhub-phaseCard__name {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 2px;
}
.lhub-phaseCard__when {
  font-size: 13px;
  color: var(--lhub-slate-2);
  font-weight: 600;
  margin: 0;
  font-family: var(--lhub-font-display);
}

.lhub-phaseCard__desc {
  font-size: 14.5px;
  color: var(--lhub-slate);
  line-height: 1.55;
  margin: 0 0 18px;
}

.lhub-phaseCard__list {
  list-style: none; padding: 0; margin: auto 0 0;
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--lhub-line);
}
.lhub-phaseCard__list a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--lhub-font-display);
  color: var(--lhub-slate);
  transition: color 160ms ease;
}
.lhub-phaseCard__list a::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  opacity: 0.35;
}
.lhub-phaseCard__list a:hover { color: var(--lhub-navy); }


/* =============================================================
   FEATURED — editorial cards
   ============================================================= */

.lhub-featured {
  padding: 80px 0;
  background: #fff;
}
@media (min-width: 900px) { .lhub-featured { padding: 104px 0; } }

.lhub-featuredGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px)  { .lhub-featuredGrid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (min-width: 1024px) {
  .lhub-featuredGrid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 24px;
  }
}

.lhub-featuredCard {
  display: flex; flex-direction: column; gap: 14px;
  background: #fff;
  border: 1px solid var(--lhub-line);
  border-radius: var(--lhub-radius-lg);
  padding: 26px 24px;
  box-shadow: var(--lhub-shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  color: var(--lhub-navy) !important;
  min-height: 200px;
}
.lhub-featuredCard:hover {
  transform: translateY(-3px);
  box-shadow: var(--lhub-shadow-md);
  border-color: rgba(13, 59, 102, 0.16);
}

.lhub-featuredCard--lead {
  background:
    radial-gradient(600px 200px at 0% 0%, rgba(250,114,104,0.1), transparent 60%),
    linear-gradient(135deg, var(--lhub-navy) 0%, var(--lhub-navy-3) 100%);
  color: #fff !important;
  border-color: transparent;
}
@media (min-width: 1024px) {
  .lhub-featuredCard--lead {
    grid-row: span 2;
    min-height: 420px;
    padding: 40px 32px;
  }
}

.lhub-featuredCard__tag {
  display: inline-flex; align-self: flex-start;
  font-family: var(--lhub-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--lhub-coral-soft-bg);
  color: var(--lhub-coral);
  border: 1px solid rgba(250, 114, 104, 0.2);
}
.lhub-featuredCard--lead .lhub-featuredCard__tag {
  background: rgba(250, 114, 104, 0.18);
  color: #ffd1cc;
  border-color: rgba(250, 114, 104, 0.35);
}

.lhub-featuredCard__title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
  color: inherit;
}
.lhub-featuredCard--lead .lhub-featuredCard__title {
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.15;
  color: #fff;
}

.lhub-featuredCard__desc {
  font-size: 14.5px;
  color: var(--lhub-slate);
  line-height: 1.55;
  margin: 0;
}
.lhub-featuredCard--lead .lhub-featuredCard__desc {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
}

.lhub-featuredCard__meta {
  margin-top: auto;
  font-family: var(--lhub-font-display);
  font-size: 12.5px;
  color: var(--lhub-slate-2);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.lhub-featuredCard--lead .lhub-featuredCard__meta {
  color: rgba(255,255,255,0.6);
}


/* =============================================================
   CLUSTERS — alt view by mindset
   ============================================================= */

.lhub-clusters {
  padding: 80px 0;
  background: var(--lhub-cream);
}
@media (min-width: 900px) { .lhub-clusters { padding: 104px 0; } }

.lhub-clusterGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px)  { .lhub-clusterGrid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .lhub-clusterGrid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.lhub-cluster {
  padding: 26px 24px;
  border-radius: var(--lhub-radius-lg);
  background: #fff;
  border: 1px solid var(--lhub-line);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.lhub-cluster:hover {
  transform: translateY(-2px);
  box-shadow: var(--lhub-shadow-sm);
}

.lhub-cluster__title {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--lhub-navy);
}
.lhub-cluster__desc {
  font-size: 14px;
  color: var(--lhub-slate-2);
  margin: 0 0 18px;
  font-weight: 600;
  font-family: var(--lhub-font-display);
}
.lhub-cluster__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 16px;
  border-top: 1px dashed var(--lhub-line-2);
}
.lhub-cluster__list a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14.5px;
  font-weight: 600;
  font-family: var(--lhub-font-display);
  color: var(--lhub-ink);
  transition: color 160ms ease;
}
.lhub-cluster__list a::after {
  content: "→";
  opacity: 0.4;
  transition: transform 160ms ease, opacity 160ms ease;
}
.lhub-cluster__list a:hover { color: var(--lhub-coral); }
.lhub-cluster__list a:hover::after { transform: translateX(3px); opacity: 1; }


/* =============================================================
   CONNECT — Landing Connect seam (static shell)
   ============================================================= */

.lhub-connect {
  padding: 72px 0;
}
@media (min-width: 900px) { .lhub-connect { padding: 96px 0; } }

.lhub-connect__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--lhub-radius-xl);
  padding: 40px 28px;
  background:
    radial-gradient(520px 260px at 100% 0%, rgba(250,114,104,0.22), transparent 60%),
    radial-gradient(420px 300px at 0% 100%, rgba(14, 140, 122, 0.22), transparent 60%),
    linear-gradient(135deg, var(--lhub-navy) 0%, var(--lhub-navy-3) 100%);
  color: #fff;
  box-shadow: var(--lhub-shadow-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 960px) {
  .lhub-connect__card {
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    padding: 56px 48px;
  }
}

.lhub-connect__title {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  margin: 16px 0 14px;
  color: #fff;
}
.lhub-connect__desc {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 520px;
}
.lhub-connect__chips {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.lhub-connect__chips li {
  font-family: var(--lhub-font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
}
.lhub-connect__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.lhub-connect__foot {
  font-family: var(--lhub-font-display);
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  letter-spacing: 0.02em;
}

/* Decorative diagram (right) */
.lhub-connect__right {
  display: none;
  position: relative;
}
@media (min-width: 960px) {
  .lhub-connect__right { display: block; }
}

.lhub-connect__diagram {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 340px;
  margin-left: auto;
  color: rgba(255,255,255,0.35);
}

.lhub-connect__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lhub-connect__node {
  position: absolute;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-family: var(--lhub-font-display);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
}
.lhub-connect__node--top {
  top: 0; left: 50%; transform: translateX(-50%);
  background: var(--lhub-coral);
  border-color: var(--lhub-coral);
  box-shadow: 0 10px 24px rgba(250, 114, 104, 0.4);
}
.lhub-connect__node--a { bottom: 0; left: 0; }
.lhub-connect__node--b { bottom: 0; left: 50%; transform: translateX(-50%); }
.lhub-connect__node--c { bottom: 0; right: 0; }


/* =============================================================
   TRUST
   ============================================================= */

.lhub-trust {
  padding: 80px 0;
  background: #fff;
}
@media (min-width: 900px) { .lhub-trust { padding: 104px 0; } }

.lhub-trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .lhub-trust__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.lhub-trust__lead .lhub-sectionLede + .lhub-sectionLede { margin-top: 14px; }

.lhub-trust__pillars {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) {
  .lhub-trust__pillars { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

.lhub-trust__pillars li {
  background: var(--lhub-soft);
  border: 1px solid var(--lhub-line);
  border-radius: var(--lhub-radius-md);
  padding: 22px 20px;
}
.lhub-trust__pillars h3 {
  font-family: var(--lhub-font-display);
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--lhub-navy);
}
.lhub-trust__pillars p {
  font-size: 14px;
  color: var(--lhub-slate);
  margin: 0;
  line-height: 1.55;
}
.lhub-trust__pillars a { font-weight: 700; color: var(--lhub-navy); border-bottom: 1px solid var(--lhub-line-2); }
.lhub-trust__pillars a:hover { color: var(--lhub-coral); border-color: currentColor; }


/* =============================================================
   NEXT — final CTA / forward nav
   ============================================================= */

.lhub-next {
  padding: 72px 0 96px;
  background: linear-gradient(180deg, #fff 0%, var(--lhub-soft) 100%);
}
@media (min-width: 900px) { .lhub-next { padding: 96px 0 112px; } }

.lhub-next__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.lhub-next__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 14px;
}
.lhub-next__lede {
  color: var(--lhub-slate);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto 36px;
}

.lhub-nextGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
}
@media (min-width: 720px)  { .lhub-nextGrid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.lhub-nextCard {
  display: flex; flex-direction: column; gap: 10px;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--lhub-line);
  border-radius: var(--lhub-radius-lg);
  box-shadow: var(--lhub-shadow-sm);
  color: var(--lhub-navy) !important;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.lhub-nextCard:hover {
  transform: translateY(-3px);
  box-shadow: var(--lhub-shadow-md);
  border-color: rgba(13, 59, 102, 0.16);
}

.lhub-nextCard__num {
  font-family: var(--lhub-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--lhub-coral);
  text-transform: uppercase;
}
.lhub-nextCard h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}
.lhub-nextCard p {
  font-size: 14px;
  color: var(--lhub-slate);
  margin: 0;
  line-height: 1.5;
}
.lhub-nextCard__cta {
  margin-top: 6px;
  font-family: var(--lhub-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--lhub-coral);
}

.lhub-nextCard--accent {
  background:
    radial-gradient(400px 200px at 100% 0%, rgba(250,114,104,0.12), transparent 70%),
    #fff;
  border-color: rgba(250,114,104,0.3);
}

.lhub-next__soft {
  margin-top: 32px;
  font-size: 14px;
  color: var(--lhub-slate-2);
}
.lhub-next__soft a {
  color: var(--lhub-navy);
  font-weight: 700;
}
.lhub-next__soft a:hover { color: var(--lhub-coral); }


/* =============================================================
   MOTION — one orchestrated reveal on load + scroll
   ============================================================= */

@media (prefers-reduced-motion: no-preference) {
  .lhub-hero__lead > * {
    animation: lhubRiseIn 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }
  .lhub-hero__lead > *:nth-child(1) { animation-delay: 0ms; }
  .lhub-hero__lead > *:nth-child(2) { animation-delay: 80ms; }
  .lhub-hero__lead > *:nth-child(3) { animation-delay: 160ms; }
  .lhub-hero__lead > *:nth-child(4) { animation-delay: 240ms; }
  .lhub-hero__lead > *:nth-child(5) { animation-delay: 320ms; }

  .lhub-hero__tiles .lhub-tile {
    animation: lhubRiseIn 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }
  .lhub-hero__tiles .lhub-tile:nth-child(1) { animation-delay: 240ms; }
  .lhub-hero__tiles .lhub-tile:nth-child(2) { animation-delay: 300ms; }
  .lhub-hero__tiles .lhub-tile:nth-child(3) { animation-delay: 360ms; }
  .lhub-hero__tiles .lhub-tile:nth-child(4) { animation-delay: 420ms; }
  .lhub-hero__tiles .lhub-tile:nth-child(5) { animation-delay: 480ms; }
  .lhub-hero__tiles .lhub-tile:nth-child(6) { animation-delay: 540ms; }
  .lhub-hero__tiles .lhub-tile:nth-child(7) { animation-delay: 600ms; }
  .lhub-hero__tiles .lhub-tile:nth-child(8) { animation-delay: 660ms; }

  /* Scroll-reveal (progressive): only hide pre-reveal when JS has
     marked the body as ready. If JS fails or hasn't run yet, all
     content stays visible — no FOUC, no blank sections. */
  .lhub-js-ready [data-lhub-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 600ms cubic-bezier(0.2, 0.7, 0.2, 1),
                transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: var(--lhub-reveal-delay, 0ms);
  }
  .lhub-js-ready [data-lhub-reveal].is-in {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lhubRiseIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Focus visibility — critical for accessibility */
.lhub-main a:focus-visible,
.lhub-btn:focus-visible {
  outline: 3px solid rgba(13, 59, 102, 0.35);
  outline-offset: 3px;
  border-radius: 10px;
}
.lhub-connect__card a:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.5);
}

/* Print: readable hub */
@media print {
  .lhub-hero, .lhub-journey, .lhub-connect, .lhub-next { background: #fff; }
  .lhub-btn { border: 1px solid #000; }
}




/* =============================================================
   LONDON VISAS — page-specific styles
   Layered on top of london-hub.css.
   Only adds/extends; never overrides hub tokens.
   Prefix: .lhub-  (same namespace — these are hub-tier modules)
   ============================================================= */


/* -------------------------------------------------------------
   Hero variant — visas gets a slightly cooler backdrop
   ------------------------------------------------------------- */

.lhub-hero--visas {
  background:
    radial-gradient(1100px 460px at 8% -10%, rgba(13,59,102,0.08), transparent 60%),
    radial-gradient(900px 500px at 92% 0%, rgba(250,114,104,0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--lhub-soft) 100%);
}

/* Route tiles carry a subtitle */
.lhub-tiles--routes .lhub-tile { min-height: 132px; }
.lhub-tile__sub {
  font-family: var(--lhub-font-body);
  font-size: 12px;
  color: var(--lhub-slate-2);
  font-weight: 400;
  line-height: 1.3;
  margin-top: -4px;
}


/* -------------------------------------------------------------
   Route cards — adds a small "at-a-glance" fact list
   ------------------------------------------------------------- */

.lhub-starterGrid--routes { grid-template-columns: 1fr; }
@media (min-width: 640px)  { .lhub-starterGrid--routes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lhub-starterGrid--routes { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.lhub-routeFacts {
  list-style: none;
  padding: 14px 0 0;
  margin: 4px 0 16px;
  border-top: 1px dashed var(--lhub-line-2);
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.lhub-routeFacts > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: baseline;
  column-gap: 12px;
  font-size: 13.5px;
  line-height: 1.35;
}
.lhub-routeFacts dt {
  font-family: var(--lhub-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lhub-slate-2);
  margin: 0;
}
.lhub-routeFacts dd {
  margin: 0;
  color: var(--lhub-ink);
  font-weight: 600;
  font-family: var(--lhub-font-display);
}


/* =============================================================
   COMPARE — side-by-side comparison table
   Reusable for any sub-hub with discrete options
   ============================================================= */

.lhub-compare {
  padding: 72px 0;
  background: var(--lhub-cream);
}
@media (min-width: 900px) { .lhub-compare { padding: 96px 0; } }

.lhub-compare__wrap {
  background: #fff;
  border: 1px solid var(--lhub-line);
  border-radius: var(--lhub-radius-lg);
  box-shadow: var(--lhub-shadow-sm);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(13, 59, 102, 0.25) transparent;
}
.lhub-compare__wrap:focus-visible {
  outline: 3px solid rgba(13, 59, 102, 0.35);
  outline-offset: 3px;
}
.lhub-compare__wrap::-webkit-scrollbar { height: 10px; }
.lhub-compare__wrap::-webkit-scrollbar-thumb {
  background: rgba(13, 59, 102, 0.2);
  border-radius: 999px;
  border: 2px solid #fff;
}

.lhub-compare__table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--lhub-font-body);
  font-size: 14px;
  color: var(--lhub-ink);
}

.lhub-compare__table thead th {
  background: linear-gradient(180deg, #fff 0%, var(--lhub-soft) 100%);
  font-family: var(--lhub-font-display);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lhub-slate);
  text-align: left;
  padding: 18px 16px;
  border-bottom: 1px solid var(--lhub-line);
  white-space: nowrap;
}
.lhub-compare__table thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fff;
  box-shadow: 1px 0 0 0 var(--lhub-line);
}

.lhub-compare__table tbody tr + tr th,
.lhub-compare__table tbody tr + tr td {
  border-top: 1px solid var(--lhub-line);
}
.lhub-compare__table tbody tr:hover th,
.lhub-compare__table tbody tr:hover td {
  background: #FFFBF6;
}

.lhub-compare__table th,
.lhub-compare__table td {
  padding: 16px 16px;
  vertical-align: middle;
  line-height: 1.4;
}

.lhub-compare__rowHead {
  font-family: var(--lhub-font-display);
  font-weight: 800;
  font-size: 14.5px;
  color: var(--lhub-navy);
  background: #fff;
  position: sticky;
  left: 0;
  z-index: 1;
  box-shadow: 1px 0 0 0 var(--lhub-line);
  white-space: nowrap;
}
.lhub-compare__rowHead a { color: var(--lhub-navy); border-bottom: 1px solid var(--lhub-line-2); }
.lhub-compare__rowHead a:hover { color: var(--lhub-coral); border-color: currentColor; }

/* Semantic cell accents using data-yes / data-no / data-maybe */
.lhub-compare__table td[data-yes] {
  color: var(--lhub-teal);
  font-weight: 700;
  font-family: var(--lhub-font-display);
}
.lhub-compare__table td[data-no] {
  color: var(--lhub-slate-2);
  font-weight: 700;
  font-family: var(--lhub-font-display);
}
.lhub-compare__table td[data-maybe] {
  color: var(--lhub-amber);
  font-weight: 700;
  font-family: var(--lhub-font-display);
}
.lhub-compare__table td[data-yes]::before,
.lhub-compare__table td[data-no]::before,
.lhub-compare__table td[data-maybe]::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 0.5px;
  background: currentColor;
}

.lhub-compare__foot {
  margin-top: 14px;
  font-size: 13px;
  color: var(--lhub-slate-2);
  text-align: center;
}
.lhub-compare__foot a { color: var(--lhub-navy); font-weight: 700; }
.lhub-compare__foot a:hover { color: var(--lhub-coral); }

.lhub-visually-hidden {
  position: absolute !important;
  clip: rect(0,0,0,0);
  width: 1px; height: 1px;
  overflow: hidden;
  white-space: nowrap;
}


/* =============================================================
   RELATED — cross-hub forward cards
   Horizontal card style, differs from starter cards on purpose
   ============================================================= */

.lhub-related {
  padding: 72px 0;
  background: #fff;
}
@media (min-width: 900px) { .lhub-related { padding: 96px 0; } }

.lhub-relatedGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px)  { .lhub-relatedGrid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1100px) { .lhub-relatedGrid { grid-template-columns: repeat(4, 1fr); gap: 22px; } }

.lhub-relatedCard {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 4px;
  padding: 22px 22px;
  background: #fff;
  border: 1px solid var(--lhub-line);
  border-radius: var(--lhub-radius-lg);
  box-shadow: var(--lhub-shadow-sm);
  color: var(--lhub-navy) !important;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  position: relative;
}
.lhub-relatedCard:hover {
  transform: translateY(-3px);
  box-shadow: var(--lhub-shadow-md);
  border-color: rgba(13, 59, 102, 0.18);
}

.lhub-relatedCard__ico {
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 48px; height: 48px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  align-self: start;
}
.lhub-relatedCard__ico svg { width: 22px; height: 22px; }

.lhub-relatedCard[data-accent="navy"]  .lhub-relatedCard__ico { background: var(--lhub-navy-soft-bg);  color: var(--lhub-navy); }
.lhub-relatedCard[data-accent="coral"] .lhub-relatedCard__ico { background: var(--lhub-coral-soft-bg); color: var(--lhub-coral); }
.lhub-relatedCard[data-accent="teal"]  .lhub-relatedCard__ico { background: var(--lhub-teal-soft);     color: var(--lhub-teal); }
.lhub-relatedCard[data-accent="amber"] .lhub-relatedCard__ico { background: var(--lhub-amber-soft);    color: var(--lhub-amber); }

.lhub-relatedCard > div {
  grid-row: 1;
  grid-column: 2;
}
.lhub-relatedCard h3 {
  font-family: var(--lhub-font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--lhub-navy);
  margin: 0 0 4px;
  line-height: 1.2;
}
.lhub-relatedCard p {
  font-size: 13.5px;
  color: var(--lhub-slate);
  line-height: 1.5;
  margin: 0;
}
.lhub-relatedCard__cta {
  grid-row: 2;
  grid-column: 2;
  margin-top: 10px;
  font-family: var(--lhub-font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--lhub-coral);
}


/* =============================================================
   FAQ — native <details> accordion
   Works without JS; JS upgrades (mutual-exclusion, smooth open)
   ============================================================= */

.lhub-faq {
  padding: 72px 0;
  background: var(--lhub-soft);
}
@media (min-width: 900px) { .lhub-faq { padding: 96px 0; } }

.lhub-faq__list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lhub-faqItem {
  background: #fff;
  border: 1px solid var(--lhub-line);
  border-radius: var(--lhub-radius-md);
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.lhub-faqItem[open] {
  border-color: rgba(13, 59, 102, 0.2);
  box-shadow: var(--lhub-shadow-sm);
}

.lhub-faqItem summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-family: var(--lhub-font-display);
  color: var(--lhub-navy);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.35;
  transition: background-color 200ms ease;
}
.lhub-faqItem summary::-webkit-details-marker { display: none; }
.lhub-faqItem summary:hover { background: #fbfcfe; }
.lhub-faqItem summary:focus-visible {
  outline: 3px solid rgba(13, 59, 102, 0.3);
  outline-offset: -3px;
}

.lhub-faqItem__q { flex: 1; }

.lhub-faqItem__ico {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--lhub-coral-soft-bg);
  color: var(--lhub-coral);
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
}
.lhub-faqItem[open] .lhub-faqItem__ico {
  transform: rotate(180deg);
  background: var(--lhub-navy-soft-bg);
  color: var(--lhub-navy);
}

.lhub-faqItem__a {
  padding: 0 22px 22px;
  color: var(--lhub-slate);
  font-size: 15px;
  line-height: 1.6;
}
.lhub-faqItem__a p { margin: 0 0 10px; }
.lhub-faqItem__a p:last-child { margin: 0; }
.lhub-faqItem__a a {
  color: var(--lhub-navy);
  font-weight: 700;
  border-bottom: 1px solid var(--lhub-line-2);
}
.lhub-faqItem__a a:hover { color: var(--lhub-coral); border-color: currentColor; }

/* Subtle open/close motion (progressive — only with JS enhancement) */
@media (prefers-reduced-motion: no-preference) {
  .lhub-js-ready .lhub-faqItem .lhub-faqItem__a {
    overflow: hidden;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 300ms cubic-bezier(0.2, 0.7, 0.2, 1),
                padding 300ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .lhub-js-ready .lhub-faqItem[open] .lhub-faqItem__a {
    max-height: 500px;
    padding-top: 0;
    padding-bottom: 22px;
  }
}

