
/* =============================================================
   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; }
/* NOTE: Do NOT put `overflow-x: hidden` here — it breaks `position: sticky`
   for descendants (like the TOC sidebar on article pages). Horizontal
   overflow from hero decorations is already clipped at the section level
   via `.lhub-hero { overflow: 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; }
}




/* =============================================================
   LANDING CONNECT — page stylesheet
   Prefix: .lconn-
   Layered on top of london-hub.css (reuses buttons, type, tokens,
   utilities). Only adds what the multi-step flow needs.
   ============================================================= */


/* -------------------------------------------------------------
   Page backdrop — subtle warmth so the app feels premium
   ------------------------------------------------------------- */

.lconn-body {
  background: var(--lhub-soft);
}

.lconn-main {
  padding-bottom: 80px;
}

.lconn {
  padding: 40px 0 64px;
}
@media (min-width: 900px) { .lconn { padding: 56px 0 96px; } }


/* -------------------------------------------------------------
   Header & progress rail
   ------------------------------------------------------------- */

.lconn__head {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}
.lconn__head .lhub-eyebrow { margin: 0 auto 16px; }

.lconn__title {
  font-family: var(--lhub-font-display);
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--lhub-navy);
  margin: 0 0 14px;
}

.lconn__lede {
  font-family: var(--lhub-font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--lhub-slate);
  line-height: 1.6;
  margin: 0;
}

.lconn__progress {
  max-width: 720px;
  margin: 0 auto 24px;
}
.lconn__progressBar {
  width: 100%;
  height: 6px;
  background: rgba(13, 59, 102, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.lconn__progressFill {
  height: 100%;
  background: linear-gradient(90deg, var(--lhub-coral), var(--lhub-coral-soft));
  border-radius: 999px;
  transition: width 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.lconn__progressLabel {
  font-family: var(--lhub-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lhub-slate-2);
  margin: 10px 0 0;
  text-align: center;
}


/* -------------------------------------------------------------
   Views — only .lconn-view--active is visible
   ------------------------------------------------------------- */

.lconn__view { display: none; }
.lconn__view.lconn-view--active {
  display: block;
  animation: lconnFadeIn 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  .lconn__view.lconn-view--active { animation: none; }
}

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


/* -------------------------------------------------------------
   Card shell — every view sits in a card
   ------------------------------------------------------------- */

.lconn__card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--lhub-line);
  border-radius: var(--lhub-radius-xl);
  padding: 32px 28px;
  box-shadow: var(--lhub-shadow-md);
}
@media (min-width: 720px) {
  .lconn__card { padding: 44px 44px; }
}


/* -------------------------------------------------------------
   Welcome card
   ------------------------------------------------------------- */

.lconn__card--welcome {
  max-width: 720px;
}

.lconn__promise {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .lconn__promise { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
.lconn__promise li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--lhub-soft);
  border: 1px solid var(--lhub-line);
  border-radius: var(--lhub-radius-md);
}
.lconn__promiseIco {
  width: 36px; height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: var(--lhub-coral-soft-bg);
  color: var(--lhub-coral);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  flex-shrink: 0;
}
.lconn__promise li > div { display: flex; flex-direction: column; gap: 2px; }
.lconn__promise strong {
  font-family: var(--lhub-font-display);
  font-size: 14.5px;
  font-weight: 800;
  color: var(--lhub-navy);
}
.lconn__promise span {
  font-size: 13px;
  color: var(--lhub-slate);
  line-height: 1.4;
}

.lconn__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.lconn__cta-btn { min-width: 200px; }

.lconn__privacy {
  font-size: 12.5px;
  color: var(--lhub-slate-2);
  margin: 0;
  line-height: 1.5;
}
.lconn__privacy a {
  color: var(--lhub-navy);
  font-weight: 700;
  border-bottom: 1px solid var(--lhub-line-2);
}
.lconn__privacy a:hover { color: var(--lhub-coral); border-color: currentColor; }


/* -------------------------------------------------------------
   Step card: context → question → options → nav
   ------------------------------------------------------------- */

.lconn__context {
  font-family: var(--lhub-font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--lhub-slate-2);
  margin: 0 0 8px;
  min-height: 18px;
  /* Coral dot pattern before the context */
}
.lconn__context:not(:empty)::before {
  content: "◦ ";
  color: var(--lhub-coral);
  margin-right: 4px;
  font-weight: 900;
}

.lconn__q {
  font-family: var(--lhub-font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--lhub-navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.lconn__qSub {
  font-size: 14.5px;
  color: var(--lhub-slate);
  margin: 0 0 28px;
  line-height: 1.5;
}

/* Single-select option buttons (large, tappable) */
.lconn__options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
@media (min-width: 560px) {
  .lconn__options[data-size="half"] { grid-template-columns: repeat(2, 1fr); }
}

.lconn__option {
  appearance: none;
  background: #fff;
  border: 1.5px solid var(--lhub-line-2);
  border-radius: var(--lhub-radius-md);
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  font-family: var(--lhub-font-body);
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}
.lconn__option:hover {
  border-color: var(--lhub-navy);
  background: #fbfcfe;
}
.lconn__option.is-selected {
  border-color: var(--lhub-coral);
  background: var(--lhub-coral-soft-bg);
}
.lconn__option:focus-visible {
  outline: 3px solid rgba(13, 59, 102, 0.28);
  outline-offset: 2px;
}

.lconn__optionLabel {
  font-family: var(--lhub-font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--lhub-navy);
}
.lconn__optionSub {
  font-size: 13.5px;
  color: var(--lhub-slate);
  line-height: 1.4;
}

/* Multi-select chips (for services step) */
.lconn__multi {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.lconn__chip {
  appearance: none;
  background: #fff;
  border: 1.5px solid var(--lhub-line-2);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  font-family: var(--lhub-font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--lhub-navy);
  transition: all 160ms ease;
}
.lconn__chip:hover {
  border-color: var(--lhub-navy);
  background: #fbfcfe;
}
.lconn__chip.is-selected {
  border-color: var(--lhub-coral);
  background: var(--lhub-coral);
  color: #fff;
}
.lconn__chip:focus-visible {
  outline: 3px solid rgba(13, 59, 102, 0.28);
  outline-offset: 2px;
}

/* Select dropdown (for country) */
.lconn__field { margin-bottom: 28px; }
.lconn__labelHidden {
  position: absolute !important;
  clip: rect(0,0,0,0);
  width: 1px; height: 1px;
  overflow: hidden;
  white-space: nowrap;
}
.lconn__select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230D3B66' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right 16px center;
  background-size: 14px;
  border: 1.5px solid var(--lhub-line-2);
  border-radius: var(--lhub-radius-md);
  padding: 16px 44px 16px 18px;
  font-family: var(--lhub-font-body);
  font-size: 16px;
  color: var(--lhub-ink);
  cursor: pointer;
  transition: border-color 160ms ease;
}
.lconn__select:hover { border-color: var(--lhub-navy); }
.lconn__select:focus-visible {
  outline: 3px solid rgba(13, 59, 102, 0.28);
  outline-offset: 2px;
  border-color: var(--lhub-navy);
}

/* Nav: back / next */
.lconn__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--lhub-line-2);
}
.lconn__back {
  appearance: none;
  background: transparent;
  border: none;
  padding: 8px 4px;
  font-family: var(--lhub-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--lhub-slate-2);
  cursor: pointer;
  transition: color 160ms ease;
}
.lconn__back:hover:not(:disabled) { color: var(--lhub-navy); }
.lconn__back:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.lconn__next {
  min-width: 160px;
}
.lconn__next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}


/* -------------------------------------------------------------
   Loading view
   ------------------------------------------------------------- */

.lconn__card--loading {
  text-align: center;
  padding: 60px 40px;
}
.lconn__loader {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 20px;
}
.lconn__loader span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lhub-coral);
  animation: lconnPulse 1.2s infinite ease-in-out;
}
.lconn__loader span:nth-child(2) { animation-delay: 0.2s; }
.lconn__loader span:nth-child(3) { animation-delay: 0.4s; }

@keyframes lconnPulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1.1); }
}

.lconn__loaderText {
  font-family: var(--lhub-font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--lhub-navy);
  margin: 0;
}


/* -------------------------------------------------------------
   Plan view — the output
   ------------------------------------------------------------- */

.lconn__planHead {
  max-width: 880px;
  margin: 0 auto 32px;
  text-align: center;
}
.lconn__planTitle {
  font-family: var(--lhub-font-display);
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--lhub-navy);
  margin: 8px 0 14px;
}
.lconn__planSummary {
  font-family: var(--lhub-font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: var(--lhub-ink);
  max-width: 700px;
  margin: 0 auto;
}
.lconn__planSummary strong {
  font-family: var(--lhub-font-display);
  color: var(--lhub-navy);
  font-weight: 700;
}

/* Plan section shared shell */
.lconn__planSection {
  max-width: 880px;
  margin: 0 auto 24px;
  background: #fff;
  border: 1px solid var(--lhub-line);
  border-radius: var(--lhub-radius-lg);
  padding: 28px 28px;
  box-shadow: var(--lhub-shadow-sm);
}
@media (min-width: 720px) {
  .lconn__planSection { padding: 32px 36px; }
}

.lconn__planSecHead {
  margin-bottom: 20px;
}
.lconn__planSecBadge {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--lhub-navy-soft-bg);
  color: var(--lhub-navy);
  border: 1px solid rgba(13, 59, 102, 0.12);
  font-family: var(--lhub-font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.lconn__planSecBadge--accent {
  background: var(--lhub-coral-soft-bg);
  color: var(--lhub-coral);
  border-color: rgba(250, 114, 104, 0.22);
}
.lconn__planSecHead h3 {
  font-family: var(--lhub-font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--lhub-navy);
  margin: 0 0 4px;
  line-height: 1.2;
}
.lconn__planSecHead p {
  color: var(--lhub-slate);
  font-size: 14.5px;
  line-height: 1.5;
  margin: 0;
}

/* Priority checklist */
.lconn__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: lconn-check;
}
.lconn__checklistItem {
  counter-increment: lconn-check;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--lhub-line);
}
.lconn__checklistItem:first-child {
  border-top: none;
  padding-top: 0;
}
.lconn__checklistItem::before {
  content: counter(lconn-check, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 12px;
  background: var(--lhub-coral-soft-bg);
  color: var(--lhub-coral);
  font-family: var(--lhub-font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.lconn__checklistItemBody h4 {
  font-family: var(--lhub-font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--lhub-navy);
  margin: 4px 0 4px;
  line-height: 1.3;
}
.lconn__checklistItemBody p {
  color: var(--lhub-slate);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 6px;
}
.lconn__checklistItemBody a {
  color: var(--lhub-navy);
  font-weight: 700;
  font-family: var(--lhub-font-display);
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid var(--lhub-line-2);
  transition: gap 160ms ease, color 160ms ease, border-color 160ms ease;
}
.lconn__checklistItemBody a:hover {
  color: var(--lhub-coral);
  gap: 8px;
  border-color: currentColor;
}

/* Guides grid */
.lconn__guides {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) { .lconn__guides { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
.lconn__guideCard {
  display: block;
  padding: 18px 20px;
  background: var(--lhub-soft);
  border: 1px solid var(--lhub-line);
  border-radius: var(--lhub-radius-md);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  color: var(--lhub-navy) !important;
}
.lconn__guideCard:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 59, 102, 0.2);
  box-shadow: var(--lhub-shadow-sm);
}
.lconn__guideCard h4 {
  font-family: var(--lhub-font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--lhub-navy);
  margin: 0 0 4px;
  line-height: 1.3;
}
.lconn__guideCard p {
  color: var(--lhub-slate);
  font-size: 13.5px;
  line-height: 1.45;
  margin: 0;
}
.lconn__guideCard::after {
  content: "→";
  float: right;
  margin-left: 8px;
  color: var(--lhub-coral);
  font-weight: 700;
  font-family: var(--lhub-font-display);
}

/* Timeline */
.lconn__timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  counter-reset: lconn-phase;
}
@media (min-width: 800px) { .lconn__timeline { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.lconn__phaseItem {
  counter-increment: lconn-phase;
  padding: 18px 20px;
  background: var(--lhub-soft);
  border: 1px solid var(--lhub-line);
  border-radius: var(--lhub-radius-md);
  position: relative;
}
.lconn__phaseItem::before {
  content: counter(lconn-phase, decimal-leading-zero);
  display: block;
  font-family: var(--lhub-font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--lhub-coral);
  margin-bottom: 6px;
}
.lconn__phaseItem h4 {
  font-family: var(--lhub-font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--lhub-navy);
  margin: 0 0 2px;
  line-height: 1.25;
}
.lconn__phaseItem p {
  font-size: 12.5px;
  color: var(--lhub-slate-2);
  margin: 0 0 8px;
  font-family: var(--lhub-font-display);
  font-weight: 600;
}
.lconn__phaseItem ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 13.5px;
  color: var(--lhub-slate);
  line-height: 1.5;
}
.lconn__phaseItem ul li {
  padding: 3px 0 3px 14px;
  position: relative;
}
.lconn__phaseItem ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--lhub-coral);
  font-weight: 700;
}

/* Services */
.lconn__planSection--services {
  background: linear-gradient(180deg, #fff 0%, var(--lhub-cream) 100%);
}
.lconn__services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) { .lconn__services { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
.lconn__serviceCard {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--lhub-line);
  border-radius: var(--lhub-radius-md);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  display: block;
  color: var(--lhub-navy) !important;
}
.lconn__serviceCard:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 114, 104, 0.3);
  box-shadow: var(--lhub-shadow-sm);
}
.lconn__serviceCard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.lconn__serviceCard__name {
  font-family: var(--lhub-font-display);
  font-size: 15.5px;
  font-weight: 800;
  color: var(--lhub-navy);
  margin: 0;
}
.lconn__serviceCard__tag {
  font-family: var(--lhub-font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--lhub-teal-soft);
  color: var(--lhub-teal);
  white-space: nowrap;
}
.lconn__serviceCard p {
  color: var(--lhub-slate);
  font-size: 13.5px;
  line-height: 1.45;
  margin: 0;
}


/* -------------------------------------------------------------
   Email capture — styled as a gentle reward card, not a paywall
   ------------------------------------------------------------- */

.lconn__emailCard {
  max-width: 880px;
  margin: 32px auto 24px;
  padding: 32px 32px;
  background:
    radial-gradient(500px 220px at 100% 0%, rgba(250,114,104,0.22), transparent 60%),
    linear-gradient(135deg, var(--lhub-navy) 0%, var(--lhub-navy-3) 100%);
  color: #fff;
  border-radius: var(--lhub-radius-xl);
  box-shadow: var(--lhub-shadow-lg);
}
@media (min-width: 720px) {
  .lconn__emailCard { padding: 40px 44px; }
}

.lconn__emailBody h3 {
  font-family: var(--lhub-font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  margin: 0 0 10px;
  color: #fff;
}
.lconn__emailBody p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 540px;
}

.lconn__emailForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 540px) {
  .lconn__emailForm { flex-direction: row; align-items: stretch; }
}

.lconn__emailInput {
  flex: 1;
  min-width: 0;
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--lhub-font-body);
  font-size: 15px;
  color: #fff;
  transition: border-color 160ms ease, background-color 160ms ease;
}
.lconn__emailInput::placeholder { color: rgba(255, 255, 255, 0.5); }
.lconn__emailInput:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.lconn__emailSubmit { white-space: nowrap; }

.lconn__emailFoot {
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  min-height: 18px;
}
.lconn__emailFoot.is-success { color: #9ef0dd; font-weight: 700; }
.lconn__emailFoot.is-error { color: #ffb5ae; font-weight: 700; }


/* -------------------------------------------------------------
   Plan footer actions
   ------------------------------------------------------------- */

.lconn__planFoot {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding-top: 8px;
}


/* -------------------------------------------------------------
   Print styles — the plan as a PDF
   ------------------------------------------------------------- */

@media print {
  .lhub-header, .lhub-crumbs,
  #tlgxFooterKit,
  .lconn__progress,
  .lconn__planFoot,
  .lconn__emailCard {
    display: none !important;
  }
  .lconn-body { background: #fff; }
  .lconn__planSection,
  .lconn__card {
    box-shadow: none;
    border-color: #ddd;
    break-inside: avoid;
  }
  .lconn__view { display: block !important; }
  .lconn__view:not([data-lconn-view="plan"]) { display: none !important; }
}

