/* ==========================================================================
   Pathful go-forward site — marketing CSS
   Built strictly on Pathful design tokens (colors_and_type.css).
   Component specs (button/card/badge) mirror the DS bundle exactly.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-system);
  letter-spacing: var(--tracking-brand);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
.container {
  width: 100%;
  max-width: var(--max-marketing);
  margin: 0 auto;
  padding: 0 32px;
}
.narrow { max-width: 880px; }

/* ---------- Buttons (mirror DS Button) ---------------------------------- */
.btn {
  font-family: var(--font-system);
  font-weight: 600;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 13px 24px;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 200ms var(--ease-out-soft), box-shadow 200ms var(--ease-out-soft), background 200ms var(--ease-out-soft), color 200ms var(--ease-out-soft);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-card); }
.btn:active { transform: translateY(0); box-shadow: var(--shadow-sm); }
.btn--lg { padding: 17px 30px; font-size: 17px; }
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--gradient { background: var(--pf-gradient-brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary { background: var(--pf-sky-blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #0BB6DA; }
.btn--secondary { background: var(--pf-black); color: #fff; }
.btn--outline { background: transparent; color: var(--pf-sky-blue); box-shadow: inset 0 0 0 2px var(--pf-sky-blue); }
.btn--outline:hover { background: rgba(0,169,206,0.08); }
.btn--ghost { background: transparent; color: var(--fg); box-shadow: none; }
.btn--ghost:hover { background: var(--bg-subtle); box-shadow: none; }
.btn--white { background: #fff; color: var(--pf-black); }
.btn--on-dark-outline { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.55); }
.btn--on-dark-outline:hover { background: rgba(255,255,255,0.12); }
.btn .ico { width: 18px; height: 18px; stroke-width: 2; }

/* ---------- Badge / chip (mirror DS Badge) ------------------------------ */
.badge {
  font-size: 12px; font-weight: 600; letter-spacing: -0.005em;
  padding: 5px 12px; border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 7px; line-height: 1;
}
.badge .bdot { width: 6px; height: 6px; border-radius: 999px; background: currentColor; }
.badge--blue   { background: var(--pf-sky-blue-tint-10);    color: #007FA0; }
.badge--green  { background: var(--pf-grass-green-tint-10); color: #006B30; }
.badge--pink   { background: var(--pf-hot-pink-tint-10);    color: #B41E5C; }
.badge--apricot{ background: var(--pf-apricot-tint-10);     color: #C26F0F; }
.badge--violet { background: var(--pf-violet-tint-10);      color: #6B1A6A; }
.badge--teal   { background: #E5F4F0;                       color: #157A65; }
.badge--lime   { background: var(--pf-lime-tint-10);        color: #75902C; }
.badge--neutral{ background: var(--bg-subtle);              color: var(--fg-muted); }

/* eyebrow with rule */
.eyebrow-rule { display: inline-flex; align-items: center; gap: 12px; }
.eyebrow-rule::before { content: ""; width: 28px; height: 2px; background: currentColor; display: inline-block; }

/* ---------- Header ------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 200ms var(--ease-out-soft), border-color 200ms var(--ease-out-soft), background 200ms var(--ease-out-soft);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--border-subtle); background: rgba(255,255,255,0.94); }
.nav {
  display: flex; align-items: center; gap: 28px;
  height: 72px; max-width: var(--max-marketing); margin: 0 auto; padding: 0 32px;
}
.nav > a:first-child { flex: 0 0 auto; display: inline-flex; align-items: center; }
.nav__logo { height: 30px; width: auto; flex-shrink: 0; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav__link {
  font-size: 15px; font-weight: 500; color: var(--fg); text-decoration: none;
  padding: 9px 14px; border-radius: var(--radius-pill); line-height: 1;
  transition: background 160ms var(--ease-out-soft), color 160ms var(--ease-out-soft);
}
.nav__link:hover { background: var(--bg-subtle); text-decoration: none; color: var(--fg); }
.nav__link.is-active { color: var(--pf-sky-blue); }
.nav__spacer { flex: 1; }
.nav__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__burger { display: none; }

/* ---------- Log-in dropdown -------------------------------------------- */
.login-menu { position: relative; display: inline-flex; }
.login-menu__trigger { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.login-menu__chev { width: 15px; height: 15px; stroke-width: 2; transition: transform 180ms var(--ease-out-soft); }
.login-menu.is-open .login-menu__chev { transform: rotate(180deg); }
.login-menu__panel {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 244px;
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-card);
  padding: 8px; z-index: 200;
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity 180ms var(--ease-out-soft), transform 180ms var(--ease-out-soft);
}
.login-menu.is-open .login-menu__panel { opacity: 1; transform: translateY(0); pointer-events: auto; }
.login-menu__item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 12px; border-radius: var(--radius-md); text-decoration: none;
  transition: background 160ms var(--ease-out-soft);
}
.login-menu__item:hover { background: var(--bg-subtle); text-decoration: none; }
.login-menu__name { font-size: 14px; font-weight: 600; color: var(--fg); line-height: 1.2; }
.login-menu__desc { font-size: 12px; color: var(--fg-muted); line-height: 1.2; }

@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__actions .btn--demo-text { display: none; }
  .login-menu { display: none; }
}

/* ---------- Mobile navigation (built by shared.js) --------------------- */
.nav__burger {
  display: none; flex: 0 0 auto; padding: 0;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer;
  color: var(--fg); border-radius: var(--radius-md);
  transition: background 160ms var(--ease-out-soft);
}
.nav__burger svg { width: 26px; height: 26px; stroke-width: 2; }
.nav__burger:hover { background: var(--bg-subtle); }

.mobile-nav { position: fixed; inset: 0; z-index: 300; overflow: hidden; pointer-events: none; }
.mobile-nav.is-open { pointer-events: auto; }
.mobile-nav__scrim {
  position: absolute; inset: 0; background: rgba(22,22,22,0.42);
  opacity: 0; transition: opacity 240ms var(--ease-out-soft);
}
.mobile-nav.is-open .mobile-nav__scrim { opacity: 1; }
.mobile-nav__panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(384px, 88vw); background: #fff; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; overflow-y: auto;
  transform: translateX(101%); transition: transform 280ms var(--ease-out-soft);
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 14px 16px 22px; border-bottom: 1px solid var(--border-subtle);
}
.mobile-nav__head img { height: 28px; width: auto; }
.mobile-nav__close {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer; color: var(--fg); border-radius: var(--radius-md);
}
.mobile-nav__close:hover { background: var(--bg-subtle); }
.mobile-nav__close svg { width: 24px; height: 24px; stroke-width: 2; }
.mobile-nav__links { display: flex; flex-direction: column; padding: 10px 12px; }
.mobile-nav__link {
  display: flex; align-items: center; min-height: 52px; padding: 0 14px;
  font-family: var(--font-brand); font-weight: 600; font-size: 18px; letter-spacing: -0.01em;
  color: var(--fg); text-decoration: none; border-radius: var(--radius-md);
}
.mobile-nav__link:hover { background: var(--bg-subtle); text-decoration: none; color: var(--fg); }
.mobile-nav__link.is-active { color: var(--pf-sky-blue); }
.mobile-nav__section {
  padding: 14px 26px 4px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-subtle);
}
.mobile-nav__sublink {
  display: flex; flex-direction: column; justify-content: center; gap: 2px;
  min-height: 52px; padding: 6px 14px; text-decoration: none; border-radius: var(--radius-md);
}
.mobile-nav__sublink:hover { background: var(--bg-subtle); text-decoration: none; }
.mobile-nav__sublink .nm { font-weight: 600; font-size: 15px; color: var(--fg); line-height: 1.2; }
.mobile-nav__sublink .ds { font-size: 12.5px; color: var(--fg-muted); line-height: 1.2; }
.mobile-nav__cta {
  margin-top: auto; padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border-subtle);
}
.mobile-nav__cta .btn { width: 100%; }
body.mobile-nav-open { overflow: hidden; }

@media (max-width: 920px) { .nav__burger { display: inline-flex; } }
@media (max-width: 520px) { .nav__actions .btn--gradient { display: none; } }

/* ---------- Global mobile spacing -------------------------------------- */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .section { padding: 60px 0; }
  .section--tight { padding: 44px 0; }
  .hero { padding: 48px 0 60px; }
}

/* ---------- Mobile touch targets + dense-component padding ------------- */
@media (max-width: 640px) {
  /* tap targets ≥ ~44px */
  .filter-chip { padding: 11px 18px; }
  .footer__col a { display: inline-block; padding: 6px 0; }
  .footer__col ul { gap: 6px; }
  .subnav__row { padding: 10px 20px; gap: 6px; }
  /* roomier interior padding so copy isn't cramped */
  .quote { padding: 36px 24px; }
  .quote__mark { font-size: 84px; top: 18px; left: 20px; }
  .cta-band { padding: 40px 26px; }
  .cta-band p { font-size: 16px; }
}
/* full-width, stacked CTAs on phones for easier tapping */
@media (max-width: 480px) {
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1 1 100%; }
}

/* ---------- Section scaffolding ---------------------------------------- */
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--muted { background: var(--bg-muted); }
.section--subtle { background: var(--bg-subtle); }
.section-head { max-width: 720px; }
.section-head--center { margin: 0 auto; text-align: center; }
.eyebrow { display: block; margin-bottom: 16px; }
.section-head h2 { margin: 0 0 16px; }
.section-head p { margin: 0; color: var(--fg-muted); }

/* ---------- Hero -------------------------------------------------------- */
.hero { position: relative; padding: 72px 0 88px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero__kicker { margin-bottom: 22px; }
.hero h1 {
  font-family: var(--font-brand); font-weight: 700;
  font-size: clamp(40px, 5vw, 60px); line-height: 1.02; letter-spacing: -0.025em;
  margin: 0 0 22px; text-wrap: balance;
}
.hero h1 .grad {
  background: var(--pf-gradient-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.hero__lead { font-size: 19px; line-height: 1.55; color: var(--fg-muted); margin: 0 0 32px; max-width: 30em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__trust { margin-top: 36px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__trust-label { font-size: 13px; color: var(--fg-subtle); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* hero visual: framed product/photo */
.hero__visual { position: relative; }
/* brand dot graphic — corner-offset, center off-canvas, behind hero text */
.hero__dots {
  position: absolute; top: -240px; right: -240px; width: 460px; z-index: 0;
  pointer-events: none; user-select: none;
}
@media (max-width: 860px) {
  .hero__dots { width: 300px; top: -160px; right: -150px; opacity: 0.7; }
}
.hero__photo {
  position: relative; z-index: 1; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; background: #d9e7ec;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.hero__photo-tag {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  padding: 12px 16px; border-radius: var(--radius-md); box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 12px;
}
.hero__photo-tag .num { font-family: var(--font-brand); font-weight: 700; font-size: 26px; line-height: 1; letter-spacing: -0.02em; background: var(--pf-gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__photo-tag .lbl { font-size: 12.5px; color: var(--fg-muted); line-height: 1.25; max-width: 12em; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Logo / proof strip ----------------------------------------- */
.proof { padding: 40px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.proof__label { text-align: center; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-subtle); font-weight: 600; margin-bottom: 24px; }
.proof__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; }
.proof__logos img { height: 46px; width: auto; opacity: 0.72; filter: saturate(0.2); transition: opacity 160ms, filter 160ms; }
.proof__logos img:hover { opacity: 1; filter: none; }
.ph-logo {
  height: 48px; min-width: 150px; padding: 0 22px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px dashed var(--border-strong); border-radius: 10px;
  color: var(--fg-subtle); font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  background: #fff;
}

/* ---------- Merge / together strip ------------------------------------- */
.together {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
}
.together__marks { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.together__plus { font-family: var(--font-brand); font-size: 30px; font-weight: 300; color: var(--fg-subtle); }
.together__jr { font-family: var(--font-brand); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; color: var(--pf-black); }
.together__jr .sup { color: var(--pf-apricot); }
.together__logo { height: 30px; width: auto; }
.together ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.together li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--fg-muted); line-height: 1.5; }
.together li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--pf-grass-green); margin-top: 1px; }
@media (max-width: 820px){ .together{ grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Continuum --------------------------------------------------- */
.continuum { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; margin-top: 48px; }
/* Per-segment connector: each stage draws a line to the next dot's center, so it always reaches the final stage. */
.stage:not(:last-child)::after {
  content: ""; position: absolute; top: 25.5px; left: 27px; width: calc(100% + 16px); height: 3px; z-index: 0;
  border-radius: 999px; opacity: 0.9;
}
.stage:nth-child(1)::after { background: linear-gradient(90deg, var(--pf-grass-green), #1f9f86); }
.stage:nth-child(2)::after { background: linear-gradient(90deg, #1f9f86, var(--pf-sky-blue)); }
.stage:nth-child(3)::after { background: linear-gradient(90deg, var(--pf-sky-blue), var(--pf-violet)); }
.stage:nth-child(4)::after { background: linear-gradient(90deg, var(--pf-apricot), var(--pf-hot-pink)); }
.stage { position: relative; z-index: 1; text-align: left; }
.stage__dot {
  position: relative; z-index: 1;
  width: 54px; height: 54px; border-radius: 50%; background: #fff; border: 3px solid var(--pf-sky-blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  box-shadow: var(--shadow-sm); color: var(--pf-sky-blue);
}
.stage__dot svg { width: 24px; height: 24px; stroke-width: 1.9; }
.stage:nth-child(1) .stage__dot { border-color: var(--pf-grass-green); color: var(--pf-grass-green); }
.stage:nth-child(2) .stage__dot { border-color: #1f9f86; color: #1f9f86; }
.stage:nth-child(3) .stage__dot { border-color: var(--pf-sky-blue); color: var(--pf-sky-blue); }
.stage:nth-child(4) .stage__dot { border-color: var(--pf-violet); color: var(--pf-violet); }
.stage:nth-child(5) .stage__dot { border-color: var(--pf-hot-pink); color: var(--pf-hot-pink); }
.stage h4 { font-family: var(--font-brand); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; margin: 0 0 8px; }
.stage p { font-size: 14.5px; line-height: 1.5; color: var(--fg-muted); margin: 0 0 10px; }
.stage .stage__by { font-size: 12px; font-weight: 600; color: var(--fg-subtle); text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 900px){
  .continuum { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stage::after { display: none; }
}
@media (max-width: 560px){ .continuum { grid-template-columns: 1fr; } }

/* ---------- Integrations (Built to fit your stack) --------------------- */
.integ-col { display: flex; flex-direction: column; gap: 22px; }
.integ-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--fg-subtle); margin: 0 0 10px; }
.integ-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.integ-tile { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 14px 16px; font-family: var(--font-brand); font-weight: 600; font-size: 14.5px; letter-spacing: -0.01em; color: var(--fg); display: flex; align-items: center; gap: 10px; }
.integ-tile::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--pf-grass-green); flex: 0 0 auto; }
@media (max-width: 760px){ .integ-tiles { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); } }

/* ---------- Product family cards --------------------------------------- */
.prod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.prod-card {
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 200ms var(--ease-out-soft), box-shadow 200ms var(--ease-out-soft);
  text-decoration: none; color: inherit;
}
a.prod-card:hover { transform: translateY(-3px); box-shadow: 0 32px 60px -20px rgba(22,22,22,0.22); text-decoration: none; color: inherit; }
.prod-card__shot { position: relative; padding: 28px 28px 0; background: var(--bg-subtle); overflow: hidden; }
.prod-card__shot img { width: 100%; aspect-ratio: 16 / 10; object-fit: contain; object-position: bottom center; display: block; border-radius: 10px 10px 0 0; box-shadow: 0 -2px 0 rgba(0,0,0,0); }
/* Uniform, quiet backdrop for every product screenshot \u2014 color identity stays in the wordmark, not the panel. */
.prod-card__shot--grad-pathful,
.prod-card__shot--grad-planner,
.prod-card__shot--grad-junior,
.prod-card__shot--grad-jr360 { background: var(--bg-subtle); }
.prod-card__body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.wordmark { font-family: var(--font-brand); font-weight: 700; font-size: 23px; letter-spacing: -0.025em; line-height: 1; }
.wordmark--pathful { color: var(--pf-grass-green); }
.wordmark--planner { color: var(--pf-violet); }
.wordmark--junior  { color: var(--pf-sky-blue); }
.wordmark--jr360   { color: #2196F3; }
.wordmark .lo { color: var(--fg); }
.prod-card__body p { font-size: 15px; line-height: 1.55; color: var(--fg-muted); margin: 0; }
.prod-card__more { margin-top: auto; padding-top: 12px; font-size: 14.5px; font-weight: 600; color: var(--pf-sky-blue); display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 760px){ .prod-grid { grid-template-columns: 1fr; } }

/* ---------- Persona / audience cards ----------------------------------- */
.persona-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.persona {
  background: #fff; border-radius: var(--radius-md); padding: 30px 28px;
  border: 1px solid var(--border-subtle); position: relative; overflow: hidden;
}
.persona::before { content:""; position:absolute; left:0; top:0; bottom:0; width: 4px; background: var(--pf-sky-blue); }
.persona--green::before { background: var(--pf-grass-green); }
.persona--teal::before { background: #1f9f86; }
.persona--apricot::before { background: var(--pf-apricot); }
.persona__role { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--pf-sky-blue); margin-bottom: 12px; }
.persona--green .persona__role { color: var(--pf-grass-green); }
.persona--teal .persona__role { color: #1f9f86; }
.persona--apricot .persona__role { color: var(--pf-apricot); }
.persona h4 { font-family: var(--font-brand); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; margin: 0 0 12px; }
.persona ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.persona li { font-size: 14.5px; line-height: 1.45; color: var(--fg-muted); padding-left: 24px; position: relative; }
.persona li svg { position: absolute; left: 0; top: 2px; width: 16px; height: 16px; color: var(--pf-sky-blue); }
.persona--green li svg { color: var(--pf-grass-green); }
.persona--teal li svg { color: #1f9f86; }
.persona--apricot li svg { color: var(--pf-apricot); }
@media (max-width: 980px){ .persona-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .persona-grid { grid-template-columns: 1fr; } }

/* ---------- Stat band --------------------------------------------------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 0 8px; }
.stat__num { font-family: var(--font-brand); font-weight: 700; font-size: clamp(40px, 5vw, 56px); line-height: 1; letter-spacing: -0.03em; background: var(--pf-gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { font-size: 15px; color: var(--fg-muted); margin-top: 10px; line-height: 1.4; }
.stat__ph { color: var(--pf-sky-blue); }
@media (max-width: 760px){ .stat-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; } }

/* ---------- Quote ------------------------------------------------------- */
.quote { background: var(--pf-black); color: #fff; border-radius: var(--radius-md); padding: 56px 56px; position: relative; overflow: hidden; }
.quote__mark { font-family: var(--font-brand); font-weight: 700; font-size: 120px; line-height: 0.6; position: absolute; top: 36px; left: 40px; background: var(--pf-gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 0.5; }
.quote blockquote { position: relative; z-index: 2; font-family: var(--font-brand); font-weight: 500; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.32; letter-spacing: -0.02em; margin: 0 0 28px; max-width: 22em; }
.quote__who { display: flex; align-items: center; gap: 14px; position: relative; z-index: 2; }
.quote__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--pf-gradient-brand); display: flex; align-items: center; justify-content: center; font-family: var(--font-brand); font-weight: 700; }
.quote__name { font-weight: 600; font-size: 15px; }
.quote__title { font-size: 13.5px; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* ---------- CTA band ---------------------------------------------------- */
.cta-band { background: var(--pf-gradient-brand); border-radius: var(--radius-md); padding: 64px; color: #fff; position: relative; overflow: hidden; text-align: center; }
.cta-band h2 { color: #fff; margin: 0 0 14px; font-size: clamp(30px, 3.6vw, 44px); }
.cta-band p { color: rgba(255,255,255,0.92); font-size: 18px; margin: 0 auto 30px; max-width: 34em; }
.cta-band .hero__cta { justify-content: center; }

/* ---------- Feature split (Solutions / Products deep sections) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature--rev .feature__media { order: -1; }
.feature__media { position: relative; }
.feature__shot {
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg);
}
.feature__shot.feature__shot--plain { background: var(--bg-subtle); padding: 24px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.feature__shot--plain img { border-radius: 8px; }
.feat-pad-pathful { background: linear-gradient(160deg, var(--pf-grass-green-tint-10), var(--pf-sky-blue-tint-10)); }
.feat-pad-planner { background: linear-gradient(160deg, var(--pf-violet-tint-10), var(--pf-sky-blue-tint-10)); }
.feat-pad-junior  { background: linear-gradient(160deg, var(--pf-sky-blue-tint-10), var(--pf-lime-tint-10)); }
.feat-pad-jr360   { background: linear-gradient(160deg, var(--pf-apricot-tint-10), var(--pf-hot-pink-tint-10)); }
.feature h3 { font-family: var(--font-brand); font-weight: 700; font-size: clamp(28px, 3vw, 38px); letter-spacing: -0.025em; line-height: 1.08; margin: 16px 0; }
.feature__lead { font-size: 17.5px; line-height: 1.6; color: var(--fg-muted); margin: 0 0 24px; }
.feature ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.feature li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; line-height: 1.5; }
.feature li svg { flex: 0 0 auto; width: 21px; height: 21px; margin-top: 1px; color: var(--pf-sky-blue); }
/* Phase-colored checkmarks to echo the journey spine */
#awareness .feature li svg   { color: var(--pf-grass-green); }
#exploration .feature li svg { color: #1f9f86; }
#preparation .feature li svg { color: var(--pf-sky-blue); }
#placement .feature li svg   { color: var(--pf-violet); }
.feature li b { font-weight: 600; }
@media (max-width: 880px){
  .feature { grid-template-columns: 1fr; gap: 36px; }
  .feature--rev .feature__media { order: 0; }
}

/* generic stack spacing for deep pages */
.stack > * + * { margin-top: 112px; }

/* product screenshot gallery */
.shot-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 28px; }
.shot-gallery--3 { grid-template-columns: repeat(3, 1fr); }
.shot-tile { border-radius: var(--radius-md); padding: 16px; box-shadow: var(--shadow-card); overflow: hidden; }
.shot-tile img { border-radius: 7px; }
.shot-tile .cap { font-size: 13px; font-weight: 600; color: var(--fg-muted); margin-top: 12px; letter-spacing: -0.01em; }
@media (max-width: 760px){ .shot-gallery, .shot-gallery--3 { grid-template-columns: 1fr; } }

/* product anchor sub-nav */
.subnav { position: sticky; top: 72px; z-index: 50; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-subtle); }
.subnav__row { display: flex; gap: 8px; padding: 12px 32px; max-width: var(--max-marketing); margin: 0 auto; overflow-x: auto; }
.subnav a { font-size: 14px; font-weight: 600; color: var(--fg-muted); text-decoration: none; padding: 7px 16px; border-radius: var(--radius-pill); white-space: nowrap; transition: background 160ms, color 160ms; }
.subnav a:hover { background: var(--bg-subtle); text-decoration: none; }

/* ---------- Footer ------------------------------------------------------ */
.site-footer { background: var(--pf-black); color: rgba(255,255,255,0.7); padding: 72px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; }
.footer__brand img { height: 30px; width: auto; margin-bottom: 18px; }
.footer__brand p { font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,0.6); max-width: 24em; margin: 0; }
.footer__col h5 { font-family: var(--font-system); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin: 0 0 16px; font-weight: 600; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__col a { color: rgba(255,255,255,0.78); font-size: 14.5px; text-decoration: none; }
.footer__col a:hover { color: #fff; text-decoration: none; }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom .tag { font-weight: 600; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.78); text-decoration: none; }
.footer-legal a:hover { color: #fff; text-decoration: underline; }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .footer__brand { grid-column: 1 / -1; } }

/* ---------- FAQ accordion --------------------------------------------- */
.faq { border-top: 1px solid var(--border-subtle); }
.faq__item { border-bottom: 1px solid var(--border-subtle); }
.faq__h { margin: 0; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: none; cursor: pointer; text-align: left;
  padding: 22px 4px; font-family: var(--font-brand); font-weight: 600; font-size: 18px;
  letter-spacing: -0.01em; color: var(--fg); line-height: 1.3;
  transition: color 160ms var(--ease-out-soft);
}
.faq__q:hover { color: var(--pf-sky-blue); }
.faq__chev { width: 22px; height: 22px; flex: 0 0 auto; stroke-width: 2; color: var(--fg-subtle); transition: transform 220ms var(--ease-out-soft), color 160ms var(--ease-out-soft); }
.faq__a { overflow: hidden; }
.faq__a p { margin: 0 4px 24px; font-size: 16px; line-height: 1.65; color: var(--fg-muted); max-width: 64ch; text-wrap: pretty; }
/* JS-enhanced: collapse by default, expand the open item */
.faq--js .faq__a { max-height: 0; transition: max-height 240ms var(--ease-out-soft); }
.faq--js .faq__item.is-open .faq__a { max-height: 480px; }
.faq--js .faq__item.is-open .faq__chev { transform: rotate(180deg); color: var(--pf-sky-blue); }

/* ---------- Reveal-on-scroll ------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--ease-out-soft), transform 600ms var(--ease-out-soft); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================================================
   WHY PATHFUL — narrative patterns (research / proof)
   ========================================================================= */
.section--dark { background: var(--pf-black); color: #fff; }
.section--dark h2 { color: #fff; }
.section--dark .section-head p { color: rgba(255,255,255,0.72); }
.section--dark .eyebrow { color: var(--pf-sky-blue); }

/* Workforce gap — two giant stats with "yet" */
.gap-stats { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; margin: 8px 0 40px; }
.gap-stat { text-align: center; }
.gap-stat .n { font-family: var(--font-brand); font-weight: 700; font-size: clamp(56px, 9vw, 104px); line-height: 0.9; letter-spacing: -0.04em; }
.gap-stat--unfilled .n { background: var(--pf-gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gap-stat .k { font-size: 16px; font-weight: 600; margin-top: 10px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.gap-yet { font-family: var(--font-brand); font-weight: 300; font-style: italic; font-size: clamp(22px, 3vw, 34px); color: var(--pf-apricot); }
@media (max-width: 700px){ .gap-stats { grid-template-columns: 1fr; gap: 18px; } }

/* Data grid — stat cards with source */
.data-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.data-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.data-card .dn { font-family: var(--font-brand); font-weight: 700; font-size: clamp(34px, 4vw, 46px); line-height: 1; letter-spacing: -0.03em; color: var(--pf-sky-blue); margin-bottom: 12px; }
.data-card.accent-green .dn { color: var(--pf-grass-green); }
.data-card.accent-apricot .dn { color: var(--pf-apricot); }
.data-card.accent-violet .dn { color: var(--pf-violet); }
.data-card .dl { font-size: 15px; line-height: 1.45; color: var(--fg); font-weight: 500; }
.data-card .ds { font-size: 12px; color: var(--fg-subtle); margin-top: 14px; letter-spacing: 0.01em; }
@media (max-width: 880px){ .data-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (max-width: 480px){ .data-grid { grid-template-columns: 1fr; } }

/* VS compare — what CCR delivers vs what students need */
.vs-head { display: grid; grid-template-columns: 1fr 56px 1fr; gap: 20px; margin-bottom: 16px; }
.vs-head div { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.vs-head .h-old { color: var(--fg-subtle); }
.vs-head .h-new { color: var(--pf-grass-green); }
.vs-row { display: grid; grid-template-columns: 1fr 56px 1fr; gap: 20px; align-items: stretch; margin-bottom: 12px; }
.vs-cell { border-radius: var(--radius-md); padding: 18px 22px; font-size: 16px; font-weight: 500; display: flex; align-items: center; }
.vs-cell--old { background: var(--bg-subtle); color: var(--fg-muted); border: 1px solid var(--border-subtle); }
.vs-cell--new { background: linear-gradient(135deg, var(--pf-grass-green-tint-10), var(--pf-sky-blue-tint-10)); color: var(--fg); font-weight: 600; }
.vs-arrow { display: flex; align-items: center; justify-content: center; color: var(--pf-sky-blue); }
.vs-arrow svg { width: 24px; height: 24px; }
@media (max-width: 760px){
  .vs-head { display: none; }
  .vs-row { grid-template-columns: 1fr; gap: 6px; margin-bottom: 18px; }
  .vs-arrow { transform: rotate(90deg); height: 28px; }
}

/* Capability comparison table */
.cap-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.cap-table th, .cap-table td { padding: 16px 22px; text-align: left; border-bottom: 1px solid var(--border-subtle); }
.cap-table thead th { font-family: var(--font-brand); font-size: 15px; letter-spacing: -0.01em; background: var(--bg-subtle); font-weight: 700; }
.cap-table thead th:nth-child(2), .cap-table thead th:nth-child(3) { text-align: center; width: 26%; }
.cap-table thead th.col-pf { background: var(--pf-grass-green-tint-10); color: #006B30; }
.cap-table tbody td:first-child { font-weight: 600; font-size: 15px; }
.cap-table td.mk { text-align: center; font-size: 14px; }
.cap-table tbody tr:last-child td { border-bottom: none; }
.cap-table tbody tr:nth-child(even) td { background: #fcfdfd; }
.cap-table .mk .mark { display: inline-flex; flex-direction: column; align-items: center; gap: 3px; }
.cap-table .sym { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.cap-table .sym--yes { background: var(--pf-grass-green-tint-10); color: #006B30; }
.cap-table .sym--mid { background: var(--pf-apricot-tint-10); color: #C26F0F; }
.cap-table .sym--no  { background: var(--pf-hot-pink-tint-10); color: #B41E5C; }
.cap-table .qual { font-size: 12.5px; color: var(--fg-subtle); font-weight: 500; }
.cap-table td.col-pf-cell { background: rgba(0,148,68,0.04); }
.cap-wrap { overflow-x: auto; }
.cap-table--min { min-width: 640px; }

/* CRD cycle — traditional (linear) vs continuous */
.cycle-cols { display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px; align-items: stretch; }
.cycle-card { border-radius: var(--radius-md); padding: 32px; display: flex; flex-direction: column; }
.cycle-card--old { background: var(--bg-subtle); border: 1px solid var(--border-subtle); }
.cycle-card--new { background: var(--pf-black); color: #fff; position: relative; overflow: hidden; }
.cycle-card h4 { font-family: var(--font-brand); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; margin: 0 0 6px; }
.cycle-card .sub { font-size: 13.5px; color: var(--fg-subtle); margin: 0 0 22px; }
.cycle-card--new .sub { color: rgba(255,255,255,0.6); }
.lin-flow { position: relative; display: grid; gap: 16px; }
.lin-flow::before { content: ""; position: absolute; left: 14px; top: 15px; bottom: 15px; width: 2px; background: var(--border-default); z-index: 0; }
.lin-row { display: grid; grid-template-columns: 30px 1fr; gap: 14px; align-items: start; position: relative; z-index: 1; }
.lin-dot { width: 30px; height: 30px; border-radius: 50%; background: #fff; border: 2px solid var(--border-default); color: var(--fg-subtle); display: flex; align-items: center; justify-content: center; font-family: var(--font-brand); font-weight: 700; font-size: 13px; }
.lin-name { font-family: var(--font-brand); font-weight: 700; font-size: 15px; color: var(--fg-muted); letter-spacing: -0.01em; }
.lin-desc { font-size: 13px; color: var(--fg-subtle); margin-top: 2px; line-height: 1.4; }
.lin-end { margin-top: auto; padding-top: 22px; display: flex; align-items: center; gap: 14px; }
.lin-end__cap { width: 30px; height: 30px; border-radius: 50%; background: var(--pf-hot-pink-tint-10); color: #B41E5C; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex: 0 0 auto; }
.lin-end__text { font-size: 13.5px; font-weight: 600; color: #B41E5C; }
.crd-phases { display: grid; gap: 12px; }
.crd-phase { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.crd-phase:first-child { border-top: none; }
.crd-phase .ph-dot { width: 38px; height: 38px; border-radius: 50%; background: var(--pf-gradient-brand); display: flex; align-items: center; justify-content: center; font-family: var(--font-brand); font-weight: 700; font-size: 15px; flex: 0 0 auto; }
.crd-phase .ph-name { font-family: var(--font-brand); font-weight: 700; font-size: 16px; }
.crd-phase .ph-q { font-size: 13.5px; color: rgba(255,255,255,0.7); margin: 2px 0 4px; }
.crd-phase .ph-d { font-size: 13px; color: rgba(255,255,255,0.55); }
.cycle-foot { margin-top: 20px; font-size: 13.5px; font-weight: 600; color: var(--pf-sky-blue); }
@media (max-width: 820px){ .cycle-cols { grid-template-columns: 1fr; } }

/* District result cards */
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.result-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 26px 28px; box-shadow: var(--shadow-sm); }
.result-card .rc-where { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--pf-sky-blue); margin-bottom: 12px; }
.result-card .rc-stat { font-family: var(--font-brand); font-weight: 700; font-size: 28px; letter-spacing: -0.02em; line-height: 1.2; }
.result-card .rc-stat .up { color: var(--pf-grass-green); }
.result-card .rc-desc { font-size: 14px; color: var(--fg-muted); margin-top: 6px; }
@media (max-width: 700px){ .result-grid { grid-template-columns: 1fr; } }

/* two-up quotes */
.quote-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; }
.quote-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 30px 32px; box-shadow: var(--shadow-sm); }
.quote-card blockquote { font-family: var(--font-brand); font-weight: 500; font-size: 19px; line-height: 1.4; letter-spacing: -0.015em; margin: 0 0 18px; }
.quote-card .qc-who { font-size: 13.5px; color: var(--fg-muted); }
.quote-card .qc-who b { color: var(--fg); font-weight: 600; }
@media (max-width: 760px){ .quote-duo { grid-template-columns: 1fr; } }

/* Everything students want / educators need — dual platform panel */
.ewn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ewn-card { border-radius: var(--radius-md); padding: 36px 34px; box-shadow: var(--shadow-lg); }
.ewn-card--students { background: linear-gradient(165deg, var(--pf-grass-green-tint-10), var(--pf-sky-blue-tint-10)); }
.ewn-card--educators { background: var(--pf-black); color: #fff; }
.ewn-card__eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--pf-grass-green); margin-bottom: 8px; }
.ewn-card--educators .ewn-card__eyebrow { color: var(--pf-sky-blue); }
.ewn-card h3 { font-family: var(--font-brand); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; margin: 0 0 6px; }
.ewn-card--educators h3 { color: #fff; }
.ewn-card__sub { font-size: 14.5px; line-height: 1.5; color: var(--fg-muted); margin: 0 0 24px; }
.ewn-card--educators .ewn-card__sub { color: rgba(255,255,255,0.66); }
.ewn-row { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 13px 0; border-top: 1px solid rgba(22,22,22,0.10); align-items: baseline; }
.ewn-card--educators .ewn-row { border-top-color: rgba(255,255,255,0.14); }
.ewn-row:first-of-type { border-top: none; }
.ewn-row .k { font-family: var(--font-brand); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.ewn-card--students .ewn-row .k { color: var(--pf-grass-green); }
.ewn-card--educators .ewn-row .k { color: #fff; }
.ewn-row .v { font-size: 14px; line-height: 1.45; color: var(--fg-muted); }
.ewn-card--educators .ewn-row .v { color: rgba(255,255,255,0.7); }
@media (max-width: 860px){ .ewn-grid { grid-template-columns: 1fr; } }
@media (max-width: 460px){ .ewn-row { grid-template-columns: 1fr; gap: 4px; } }

/* assessment suite chips */
.assess-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 24px; }
.assess-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 20px 18px; box-shadow: var(--shadow-sm); }
.assess-card .an { font-family: var(--font-brand); font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em; margin-bottom: 6px; color: var(--pf-grass-green); }
.assess-card .ad { font-size: 13px; line-height: 1.4; color: var(--fg-muted); }
.assess-card .as { font-size: 11.5px; color: var(--fg-subtle); margin-top: 10px; }
@media (max-width: 900px){ .assess-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .assess-grid { grid-template-columns: 1fr; } }

/* artifact tool grid + mini steps (Planning & Artifacts) */
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 40px; row-gap: 26px; margin-top: 28px; }
.tool { padding-top: 16px; border-top: 1px solid var(--border-subtle); }
.tool h5 { font-family: var(--font-brand); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; margin: 0 0 5px; color: var(--pf-grass-green); }
.tool p { font-size: 13.5px; line-height: 1.5; color: var(--fg-muted); margin: 0; }
@media (max-width: 760px){ .tool-grid { grid-template-columns: 1fr 1fr; column-gap: 32px; } }
@media (max-width: 460px){ .tool-grid { grid-template-columns: 1fr; } }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 22px; }
.step-mini .sn { width: 30px; height: 30px; border-radius: 50%; background: var(--pf-gradient-brand); color: #fff; font-family: var(--font-brand); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.step-mini h6 { font-family: var(--font-brand); font-weight: 700; font-size: 14px; letter-spacing: -0.01em; margin: 0 0 4px; }
.step-mini p { font-size: 12.5px; line-height: 1.4; color: var(--fg-muted); margin: 0; }
@media (max-width: 700px){ .steps-row { grid-template-columns: 1fr 1fr; } }

/* Four-phase student journey (Awareness → Exploration → Preparation → Placement) */
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; margin-top: 52px; }
/* Per-segment connector: each stage draws a line to the next dot's center (calc(100% + gap)), so it always reaches — including Preparation -> Placement. */
.jstage:not(:last-child)::after { content: ""; position: absolute; top: 26.5px; left: 28px; width: calc(100% + 22px); height: 3px; border-radius: 999px; z-index: 0; }
.jstage:nth-child(1)::after { background: linear-gradient(90deg, var(--pf-grass-green), #1f9f86); }
.jstage:nth-child(2)::after { background: linear-gradient(90deg, #1f9f86, var(--pf-sky-blue)); }
.jstage:nth-child(3)::after { background: linear-gradient(90deg, var(--pf-sky-blue), var(--pf-violet)); }
.jstage { position: relative; z-index: 1; }
.jstage .jdot { position: relative; z-index: 1; width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 3px solid var(--pf-sky-blue); display: flex; align-items: center; justify-content: center; font-family: var(--font-brand); font-weight: 700; font-size: 21px; color: var(--pf-sky-blue); box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.jstage:nth-child(1) .jdot { border-color: var(--pf-grass-green); color: var(--pf-grass-green); }
.jstage:nth-child(2) .jdot { border-color: #1f9f86; color: #1f9f86; }
.jstage:nth-child(3) .jdot { border-color: var(--pf-sky-blue); color: var(--pf-sky-blue); }
.jstage:nth-child(4) .jdot { border-color: var(--pf-violet); color: var(--pf-violet); }
.jstage h4 { font-family: var(--font-brand); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; margin: 0 0 6px; }
.jstage .jd { font-size: 14px; line-height: 1.45; color: var(--fg-muted); margin: 0 0 16px; }
.jstage ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.jstage li { font-size: 13.5px; line-height: 1.4; color: var(--fg); padding-left: 17px; position: relative; }
.jstage li::before { content: ""; position: absolute; left: 0; top: 6px; width: 7px; height: 7px; border-radius: 50%; background: var(--pf-sky-blue); }
.jstage:nth-child(1) li::before { background: var(--pf-grass-green); }
.jstage:nth-child(2) li::before { background: #1f9f86; }
.jstage:nth-child(4) li::before { background: var(--pf-violet); }
.jstage li b { font-weight: 600; }
@media (max-width: 900px){ .journey { grid-template-columns: 1fr 1fr; gap: 32px 22px; } .jstage::after { display: none; } }
@media (max-width: 520px){ .journey { grid-template-columns: 1fr; } }

/* Partnership / support + trust (Why Pathful) */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.svc { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 24px 22px; box-shadow: var(--shadow-sm); }
.svc .si { width: 42px; height: 42px; border-radius: 10px; background: var(--pf-sky-blue-tint-10); color: var(--pf-sky-blue); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.svc .si svg { width: 22px; height: 22px; stroke-width: 1.9; }
.svc.accent-green .si { background: var(--pf-grass-green-tint-10); color: var(--pf-grass-green); }
.svc.accent-apricot .si { background: var(--pf-apricot-tint-10); color: var(--pf-apricot); }
.svc.accent-violet .si { background: var(--pf-violet-tint-10); color: var(--pf-violet); }
.svc h4 { font-family: var(--font-brand); font-weight: 700; font-size: 16px; letter-spacing: -0.01em; margin: 0 0 6px; }
.svc p { font-size: 13.5px; line-height: 1.45; color: var(--fg-muted); margin: 0; }
@media (max-width: 900px){ .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .svc-grid { grid-template-columns: 1fr; } }
.cert-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.cert { background: #fff; border: 1px solid var(--border-default); border-radius: var(--radius-pill); padding: 9px 18px; font-weight: 700; font-size: 14px; font-family: var(--font-brand); letter-spacing: -0.01em; color: var(--pf-black); display: inline-flex; align-items: center; gap: 8px; }
.cert svg { width: 16px; height: 16px; color: var(--pf-grass-green); }

/* Live Connections spotlight (on dark) */
.lc-prog { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 40px; }
.lc-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius-md); padding: 22px 20px; }
.lc-card h4 { font-family: var(--font-brand); font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em; margin: 0 0 8px; color: #fff; }
.lc-card p { font-size: 13px; line-height: 1.45; color: rgba(255,255,255,0.62); margin: 0; }
@media (max-width: 1000px){ .lc-prog { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .lc-prog { grid-template-columns: 1fr; } }
.lc-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.14); }
.lc-why h5 { font-family: var(--font-brand); font-weight: 700; font-size: 16px; letter-spacing: -0.01em; color: #fff; margin: 0 0 8px; display: flex; gap: 9px; align-items: center; }
.lc-why h5 svg { width: 19px; height: 19px; color: var(--pf-sky-blue); flex: 0 0 auto; }
.lc-why p { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.62); margin: 0; }
@media (max-width: 760px){ .lc-why { grid-template-columns: 1fr; gap: 22px; } }

/* About — leadership team + awards */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--pf-gradient-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-brand); font-weight: 700; font-size: 24px; letter-spacing: -0.02em; margin-bottom: 16px; }
.team-card:nth-child(3n+2) .team-avatar { background: var(--pf-gradient-violet-sky); }
.team-card:nth-child(3n) .team-avatar { background: var(--pf-gradient-hot-pink-apricot); }
.team-card h4 { font-family: var(--font-brand); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; margin: 0; }
.team-card .role { font-size: 14px; color: var(--fg-muted); margin: 3px 0 0; line-height: 1.4; }
.team-card .li { margin-top: 14px; color: var(--pf-sky-blue); display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; text-decoration: none; }
.team-card .li:hover { text-decoration: underline; }
.team-card .li svg { width: 16px; height: 16px; }
@media (max-width: 820px){ .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .team-grid { grid-template-columns: 1fr; } }
.award-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.award-ph { height: 76px; min-width: 130px; padding: 0 22px; display: flex; align-items: center; justify-content: center; text-align: center; border: 1.5px dashed var(--border-strong); border-radius: 12px; color: var(--fg-subtle); font-size: 12px; font-weight: 600; background: #fff; }

/* Resources / blog (Pathful Compass) */
.topic-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.post-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform 200ms var(--ease-out-soft), box-shadow 200ms var(--ease-out-soft); }
a.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); text-decoration: none; color: inherit; }
.post-card__strip { height: 6px; background: var(--pf-gradient-brand); }
.post-card:nth-child(3n+2) .post-card__strip { background: var(--pf-gradient-violet-sky); }
.post-card:nth-child(3n) .post-card__strip { background: var(--pf-gradient-hot-pink-apricot); }
.post-card__body { padding: 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--pf-sky-blue); }
.post-card:nth-child(3n+2) .post-card__tag { color: var(--pf-violet); }
.post-card:nth-child(3n) .post-card__tag { color: var(--pf-apricot); }
.post-card h3 { font-family: var(--font-brand); font-weight: 700; font-size: 18px; line-height: 1.25; letter-spacing: -0.015em; margin: 0; }
.post-card p { font-size: 13.5px; line-height: 1.5; color: var(--fg-muted); margin: 0; }
.post-card__meta { margin-top: auto; padding-top: 6px; font-size: 12.5px; color: var(--fg-subtle); }
.post-card__meta b { color: var(--fg-muted); font-weight: 600; }
@media (max-width: 860px){ .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .post-grid { grid-template-columns: 1fr; } }
.res-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.res-link { background: var(--bg-subtle); border-radius: var(--radius-md); padding: 28px; text-decoration: none; color: inherit; border: 1px solid var(--border-subtle); transition: background 160ms; }
.res-link:hover { background: var(--pf-sky-blue-tint-10); text-decoration: none; color: inherit; }
.res-link h4 { font-family: var(--font-brand); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; margin: 0 0 6px; }
.res-link p { font-size: 13.5px; line-height: 1.45; color: var(--fg-muted); margin: 0; }
@media (max-width: 760px){ .res-links { grid-template-columns: 1fr; } }
.res-link__kicker { display:block; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color: var(--pf-sky-blue); margin-bottom:10px; }

/* ---------- Resources hub: intent-routing pillars ---------------------- */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.pillar { background:#fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); overflow:hidden; display:flex; flex-direction:column; text-decoration:none; color:inherit; transition: transform 200ms var(--ease-out-soft), box-shadow 200ms var(--ease-out-soft); }
a.pillar:hover { transform: translateY(-3px); box-shadow: 0 32px 60px -20px rgba(22,22,22,0.22); text-decoration:none; color:inherit; }
.pillar__top { height:7px; background: var(--pf-gradient-brand); }
.pillar:nth-child(2) .pillar__top { background: var(--pf-gradient-violet-sky); }
.pillar:nth-child(3) .pillar__top { background: var(--pf-gradient-hot-pink-apricot); }
.pillar__body { padding: 32px 30px 34px; display:flex; flex-direction:column; gap:12px; flex:1; }
.pillar__eyebrow { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color: var(--pf-grass-green); }
.pillar:nth-child(2) .pillar__eyebrow { color: var(--pf-violet); }
.pillar:nth-child(3) .pillar__eyebrow { color: var(--pf-apricot); }
.pillar h3 { font-family: var(--font-brand); font-weight:700; font-size:23px; letter-spacing:-0.02em; margin:0; line-height:1.1; }
.pillar p { font-size:14.5px; line-height:1.55; color: var(--fg-muted); margin:0; }
.pillar__for { font-size:12.5px; color: var(--fg-subtle); margin:0; }
.pillar__for b { color: var(--fg-muted); font-weight:600; }
.pillar__more { margin-top:auto; padding-top:12px; font-size:14.5px; font-weight:600; color: var(--pf-sky-blue); display:inline-flex; align-items:center; gap:6px; }
.pillar__more svg { width:16px; height:16px; }
@media (max-width: 860px){ .pillar-grid { grid-template-columns:1fr; } }

/* ---------- Case study cards ------------------------------------------- */
.case-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.case-card { background:#fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); overflow:hidden; display:flex; flex-direction:column; text-decoration:none; color:inherit; transition: transform 200ms var(--ease-out-soft), box-shadow 200ms var(--ease-out-soft); }
a.case-card:hover { transform: translateY(-3px); box-shadow: 0 32px 60px -20px rgba(22,22,22,0.22); text-decoration:none; color:inherit; }
.case-card__head { display:flex; align-items:center; gap:14px; padding:24px 26px 0; }
.case-card__mono { width:48px; height:48px; flex:0 0 auto; border-radius:12px; background: var(--pf-gradient-brand); color:#fff; display:flex; align-items:center; justify-content:center; font-family: var(--font-brand); font-weight:700; font-size:18px; letter-spacing:-0.02em; }
.case-card:nth-child(3n+2) .case-card__mono { background: var(--pf-gradient-violet-sky); }
.case-card:nth-child(3n) .case-card__mono { background: var(--pf-gradient-hot-pink-apricot); }
.case-card__state { font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:0.07em; color: var(--fg-subtle); }
.case-card__body { padding:18px 26px 8px; display:flex; flex-direction:column; gap:10px; flex:1; }
.case-card__body h3 { font-family: var(--font-brand); font-weight:700; font-size:19px; line-height:1.2; letter-spacing:-0.015em; margin:0; }
.case-card__body p { font-size:13.5px; line-height:1.5; color: var(--fg-muted); margin:0; }
.case-card__metric { margin-top:6px; display:flex; align-items:baseline; gap:8px; }
.case-card__metric b { font-family: var(--font-brand); font-weight:700; font-size:24px; letter-spacing:-0.02em; background: var(--pf-gradient-brand); -webkit-background-clip:text; background-clip:text; color:transparent; }
.case-card__metric span { font-size:12.5px; color: var(--fg-muted); }
.case-card__foot { margin-top:auto; padding:14px 26px 22px; font-size:12.5px; color: var(--pf-sky-blue); font-weight:600; display:inline-flex; align-items:center; gap:6px; }
.case-card__foot svg { width:15px; height:15px; }
@media (max-width: 860px){ .case-grid { grid-template-columns:1fr 1fr; } }
@media (max-width: 560px){ .case-grid { grid-template-columns:1fr; } }

/* ---------- Compass filter chips (client-side) ------------------------- */
.filter-row { display:flex; flex-wrap:wrap; gap:8px; margin-top:28px; }
.filter-chip { font-family: var(--font-brand); font-weight:600; font-size:13.5px; letter-spacing:-0.01em; padding:9px 18px; border-radius: var(--radius-pill); border:1px solid var(--border-default); background:#fff; color: var(--fg-muted); cursor:pointer; transition: all 160ms var(--ease-out-soft); }
.filter-chip:hover { border-color: var(--pf-sky-blue); color: var(--pf-sky-blue); }
.filter-chip.is-active { background: var(--pf-black); border-color: var(--pf-black); color:#fff; }
a.filter-chip { text-decoration:none; display:inline-flex; align-items:center; }
a.filter-chip:hover { text-decoration:none; }
.lib-filter__label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color: var(--fg-subtle); margin-bottom:8px; }
.post-card[hidden] { display:none; }

/* ---------- Featured insight (white paper hero row) -------------------- */
.feature-post { display:grid; grid-template-columns: 1.1fr 1fr; gap:0; background:#fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); overflow:hidden; text-decoration:none; color:inherit; transition: transform 200ms var(--ease-out-soft), box-shadow 200ms var(--ease-out-soft); }
a.feature-post:hover { transform: translateY(-3px); box-shadow: 0 32px 60px -20px rgba(22,22,22,0.22); text-decoration:none; color:inherit; }
.feature-post__art { background: var(--pf-gradient-brand); min-height:280px; position:relative; overflow:hidden; }
.feature-post__art .dots { position:absolute; right:-90px; bottom:-90px; width:300px; opacity:0.9; }
.feature-post__art .kind { position:absolute; left:30px; top:30px; font-family: var(--font-brand); font-weight:700; font-size:12px; letter-spacing:0.09em; text-transform:uppercase; color:#fff; background: rgba(255,255,255,0.18); padding:7px 14px; border-radius: var(--radius-pill); backdrop-filter: blur(6px); }
.feature-post__body { padding:40px 44px; display:flex; flex-direction:column; gap:14px; justify-content:center; }
.feature-post__body h3 { font-family: var(--font-brand); font-weight:700; font-size:clamp(24px,2.4vw,30px); line-height:1.12; letter-spacing:-0.02em; margin:0; }
.feature-post__body p { font-size:15px; line-height:1.55; color: var(--fg-muted); margin:0; }
.feature-post__meta { font-size:13px; color: var(--fg-subtle); }
.feature-post__meta b { color: var(--fg-muted); font-weight:600; }
@media (max-width: 760px){ .feature-post { grid-template-columns:1fr; } .feature-post__art { min-height:160px; } }

/* ---------- Case-study detail page (generated) ------------------------- */
.cs-hero { position: relative; overflow: hidden; padding: 60px 0 8px; }
.cs-breadcrumb { font-size: 13px; font-weight: 600; color: var(--fg-subtle); margin-bottom: 18px; }
.cs-breadcrumb a { color: var(--fg-subtle); text-decoration: none; }
.cs-breadcrumb a:hover { color: var(--pf-sky-blue); }
.cs-kicker { display:flex; align-items:center; gap:10px; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color: var(--pf-grass-green); margin-bottom:14px; }
.cs-kicker .sep { width:4px; height:4px; border-radius:50%; background: var(--border-default); }
.cs-kicker .date { color: var(--fg-subtle); }
.cs-hero h1 { font-family: var(--font-brand); font-weight:700; font-size: clamp(34px,4.4vw,52px); line-height:1.05; letter-spacing:-0.02em; margin:0 0 16px; max-width:18ch; }
.cs-hero .cs-sub { font-size: clamp(17px,1.9vw,21px); line-height:1.45; color: var(--fg-muted); max-width:40em; margin:0; }
.cs-facts { display:flex; flex-wrap:wrap; align-items:center; gap:18px 28px; margin-top:32px; padding-top:26px; border-top:1px solid var(--border-subtle); }
.cs-mono { width:54px; height:54px; border-radius:12px; background: var(--pf-gradient-brand); color:#fff; display:flex; align-items:center; justify-content:center; font-family: var(--font-brand); font-weight:700; font-size:20px; letter-spacing:-0.02em; flex:0 0 auto; }
.cs-id .cs-district { font-family: var(--font-brand); font-weight:700; font-size:16px; letter-spacing:-0.01em; margin:0 0 3px; }
.cs-id .cs-state { font-size:12px; color: var(--fg-subtle); text-transform:uppercase; letter-spacing:0.06em; }
.cs-metric-big { margin-left:auto; text-align:right; }
.cs-metric-big b { font-family: var(--font-brand); font-weight:700; font-size:32px; letter-spacing:-0.02em; background: var(--pf-gradient-brand); -webkit-background-clip:text; background-clip:text; color:transparent; display:block; line-height:1; }
.cs-metric-big span { font-size:13px; color: var(--fg-muted); }
.cs-wrap { max-width:720px; }
.cs-lead { font-size:18.5px; line-height:1.6; color: var(--fg); font-weight:500; margin:0 0 8px; text-wrap:pretty; }
.cs-wrap h2 { font-family: var(--font-brand); font-weight:700; font-size:23px; letter-spacing:-0.02em; margin:38px 0 10px; }
.cs-wrap p { font-size:16px; line-height:1.7; color: var(--fg-muted); margin:0 0 16px; }
.cs-wrap strong { color: var(--fg); font-weight:600; }
.cs-quote { margin:34px 0; padding-left:22px; border-left:3px solid var(--pf-grass-green); }
.cs-quote p { font-family: var(--font-brand); font-weight:700; font-size:22px; line-height:1.32; letter-spacing:-0.02em; color: var(--fg); margin:0 0 12px; text-wrap:pretty; }
.cs-quote cite { font-style:normal; font-size:14px; font-weight:600; color: var(--pf-sky-blue); }
.cs-pdf { margin:32px 0 8px; }
.cs-author { display:flex; gap:16px; align-items:flex-start; margin-top:44px; padding-top:28px; border-top:1px solid var(--border-subtle); }
.cs-author__avatar { width:52px; height:52px; border-radius:50%; background: var(--pf-gradient-violet-sky); color:#fff; display:flex; align-items:center; justify-content:center; font-family: var(--font-brand); font-weight:700; font-size:17px; flex:0 0 auto; }
.cs-author__name { font-family: var(--font-brand); font-weight:700; font-size:15px; letter-spacing:-0.01em; margin:0 0 4px; }
.cs-author__bio { font-size:13.5px; line-height:1.55; color: var(--fg-muted); margin:0; }
@media (max-width: 560px){ .cs-metric-big { margin-left:0; text-align:left; width:100%; } }

/* ---------- Article / blog detail page (generated) --------------------- */
.art-hero { position: relative; overflow: hidden; padding: 56px 0 0; }
.art-cat { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color: var(--pf-sky-blue); margin-bottom:14px; }
.art-cat .date { color: var(--fg-subtle); }
.art-hero h1 { font-family: var(--font-brand); font-weight:700; font-size: clamp(32px,4.2vw,50px); line-height:1.06; letter-spacing:-0.02em; margin:0 0 14px; max-width:20ch; }
.art-dek { font-size: clamp(17px,1.9vw,21px); line-height:1.45; color: var(--fg-muted); max-width:40em; margin:0 0 8px; }
.art-byline { display:flex; align-items:center; gap:12px; margin-top:24px; padding:18px 0 4px; border-top:1px solid var(--border-subtle); }
.art-byline .av { width:44px; height:44px; border-radius:50%; background: var(--pf-gradient-brand); color:#fff; display:flex; align-items:center; justify-content:center; font-family: var(--font-brand); font-weight:700; font-size:15px; flex:0 0 auto; }
.art-byline .nm { font-family: var(--font-brand); font-weight:700; font-size:14px; letter-spacing:-0.01em; }
.art-byline .rl { font-size:12.5px; color: var(--fg-subtle); }
.art-figure { margin:28px 0; }
.art-figure img { width:100%; border-radius: var(--radius-md); display:block; box-shadow: var(--shadow-sm); }
.art-figure figcaption { font-size:12.5px; color: var(--fg-subtle); margin-top:8px; }
.art-body { max-width:720px; }
.art-body p { font-size:16.5px; line-height:1.75; color: var(--fg); margin:0 0 18px; }
.art-body h2 { font-family: var(--font-brand); font-weight:700; font-size:24px; letter-spacing:-0.02em; margin:38px 0 12px; }
.art-body strong { font-weight:600; }
.art-body em { font-style:italic; }
.art-body a { color: var(--pf-sky-blue); }
.art-body ul { margin:0 0 18px; padding-left:22px; }
.art-body li { font-size:16.5px; line-height:1.7; color: var(--fg); margin:0 0 8px; }
.art-sources { margin-top:42px; padding-top:24px; border-top:1px solid var(--border-subtle); }
.art-sources h2 { font-family: var(--font-brand); font-weight:700; font-size:16px; letter-spacing:-0.01em; margin:0 0 12px; }
.art-sources ol { margin:0; padding-left:20px; display:grid; gap:7px; }
.art-sources li { font-size:12.5px; line-height:1.5; color: var(--fg-subtle); }
