:root {
  --navy: #102f56;
  --navy-deep: #0b2442;
  --purple: #6763bd;
  --purple-deep: #5551a6;
  --gold: #d9aa38;
  --cream: #faf7f1;
  --mist: #f6f7fa;
  --ink: #1d385c;
  --muted: #52627a;
  --line: #e8e8ee;
  --white: #fff;
  --shadow: 0 16px 42px rgba(22, 47, 85, .10);
  --shadow-soft: 0 8px 24px rgba(22, 47, 85, .075);
  --max: 1180px;
  --narrow: 820px;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 104px; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.68; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0 0 .68em; color: var(--navy); font-family: Avenir, "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif; line-height: 1.08; letter-spacing: -.035em; }
p { margin: 0 0 1.2em; }
ul, ol { margin: 0 0 1.45em; }
.container { width: min(calc(100% - 44px), var(--max)); margin-inline: auto; }
.container.narrow { width: min(calc(100% - 44px), var(--narrow)); }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 2000; top: 8px; left: 8px; padding: 10px 16px; background: var(--white); color: var(--navy); border: 2px solid var(--purple); border-radius: 8px; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(103, 99, 189, .45); outline-offset: 3px; }

/* Header and navigation */
.site-header { position: sticky; z-index: 1000; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.site-header.is-scrolled { box-shadow: 0 8px 26px rgba(16,47,86,.07); }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 11px; color: var(--navy); }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; background: var(--purple); box-shadow: 0 6px 16px rgba(103,99,189,.18); }
.brand-mark span { color: var(--white); font: 800 14px/1 Inter, sans-serif; letter-spacing: -.04em; }
.brand-name { font: 800 18px/1 Avenir, "Avenir Next", Inter, sans-serif; letter-spacing: -.04em; }
.brand-name span { color: var(--purple); }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 3px; color: #344968; font-size: 13px; font-weight: 650; white-space: nowrap; }
.site-nav > a, .nav-group > summary { min-height: 42px; display: flex; align-items: center; padding: 10px 12px; border-radius: 9px; color: #344968; transition: color .18s ease, background .18s ease; }
.site-nav > a:hover, .nav-group > summary:hover { background: #f4f3fb; color: var(--purple-deep); }
.site-nav > a[aria-current="page"], .nav-group.is-active > summary { color: var(--purple-deep); background: #f0effa; }
.nav-primary { color: var(--navy) !important; }
.nav-group { position: relative; }
.nav-group > summary { gap: 6px; cursor: pointer; list-style: none; }
.nav-group > summary::-webkit-details-marker { display: none; }
.nav-group > summary span { color: var(--purple); font-size: 13px; transition: transform .18s ease; }
.nav-group[open] > summary span { transform: rotate(180deg); }
.nav-panel { position: absolute; z-index: 1200; top: calc(100% + 13px); left: 50%; width: min(650px, calc(100vw - 40px)); padding: 21px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 24px 65px rgba(16,47,86,.16); white-space: normal; transform: translateX(-50%); }
.nav-panel::before { content: ""; position: absolute; top: -7px; left: calc(50% - 7px); width: 13px; height: 13px; background: var(--white); border-top: 1px solid var(--line); border-left: 1px solid var(--line); transform: rotate(45deg); }
.nav-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 2px 4px 15px; border-bottom: 1px solid var(--line); }
.nav-panel-head strong { color: var(--navy); font: 800 15px/1.3 Avenir, "Avenir Next", Inter, sans-serif; }
.nav-panel-head a { color: var(--purple-deep); font-size: 12px; font-weight: 700; }
.nav-panel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; padding-top: 12px; }
.nav-panel-grid > a { display: grid; grid-template-columns: 30px 1fr; gap: 10px; padding: 11px; border-radius: 11px; }
.nav-panel-grid > a:hover, .nav-panel-grid > a[aria-current="page"] { background: #f5f4fb; }
.nav-panel-grid > a > span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 8px; background: #eeedf8; color: var(--purple); font: 800 10px/1 Inter, sans-serif; }
.nav-panel-grid strong { display: block; margin-bottom: 3px; color: var(--navy); font-size: 13px; }
.nav-panel-grid small { display: block; color: var(--muted); font-size: 10.5px; font-weight: 500; line-height: 1.42; }
.nav-search { gap: 6px; margin-left: 5px; padding: 9px 14px !important; border: 1px solid #b9b7d6; background: var(--white); }
.nav-search span:first-child { color: var(--purple); font-size: 18px; line-height: 1; }
.mobile-nav-head, .menu-backdrop { display: none; }
.menu-toggle { display: none; align-items: center; justify-content: center; gap: 8px; min-width: 82px; height: 44px; padding: 9px 12px; border: 1px solid #c9c9d4; border-radius: 9px; background: var(--white); color: var(--navy); }
.menu-toggle-lines { width: 20px; }
.menu-toggle-lines i { display: block; width: 20px; height: 2px; margin: 4px 0; border-radius: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle b { font-size: 12px; }

/* Reusable typography and actions */
.eyebrow, .section-heading > span, .split-heading .eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 17px; color: var(--purple); font-size: 11px; font-weight: 800; letter-spacing: .15em; line-height: 1.2; text-transform: uppercase; }
.eyebrow::before, .section-heading > span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.button { min-height: 51px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 22px; border: 1px solid transparent; border-radius: 9px; font-weight: 750; line-height: 1.25; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-coral { color: var(--white); background: var(--purple); box-shadow: 0 10px 24px rgba(103,99,189,.18); }
.button-coral:hover { background: var(--purple-deep); }
.button-dark { color: var(--white); background: var(--navy); }
.button-dark:hover { background: var(--navy-deep); }
.button-ghost { color: var(--navy); background: transparent; border-color: #c5c5d1; }
.button-light { color: var(--navy); background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--purple-deep); font-weight: 750; }
.text-link b { transition: transform .18s ease; }
.text-link:hover b { transform: translateX(3px); }
.center { text-align: center; }
.section { padding: 90px 0; }
.section-heading { max-width: 710px; margin: 0 auto 45px; text-align: center; }
.section-heading.left { max-width: none; margin-inline: 0; text-align: left; }
.section-heading h2, .split-heading h2 { font-size: clamp(34px, 4.3vw, 53px); font-weight: 850; }
.section-heading p, .split-heading p { color: var(--muted); font-size: 17px; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 43px; }
.split-heading > div { flex: 1; }
.split-heading > p, .split-heading > .text-link { max-width: 430px; }

/* Homepage */
.home-hero { min-height: 690px; display: flex; align-items: center; background: var(--white); border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 78px; padding-block: 72px; }
.hero-copy h1 { max-width: 690px; margin-bottom: 23px; color: var(--navy); font-size: clamp(48px, 5.3vw, 68px); font-weight: 900; line-height: 1.03; letter-spacing: -.048em; }
.hero-copy h1 em { color: var(--purple); font-style: normal; }
.hero-copy > p { max-width: 620px; margin-bottom: 28px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 9px 20px; margin-top: 24px; color: #4a5c75; font-size: 12px; font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust b { display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; background: #efeff8; color: var(--purple); font-size: 10px; }
.hero-visual { position: relative; min-height: 540px; }
.hero-image { position: absolute; inset: 0; overflow: hidden; border-radius: 32px; background: var(--cream); box-shadow: 0 24px 54px rgba(16,47,86,.15); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 61% center; }
.home-search-band { padding: 29px 0; background: var(--cream); border-bottom: 1px solid #eee8dd; }
.search-band-inner { display: grid; grid-template-columns: 285px minmax(360px, 1fr); align-items: center; gap: 18px 42px; }
.search-band-inner .eyebrow { margin-bottom: 7px; }
.search-band-inner p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.hero-search, .page-search { display: flex; align-items: center; overflow: hidden; background: var(--white); border: 1px solid #cfcfd9; border-radius: 10px; box-shadow: 0 8px 22px rgba(16,47,86,.07); }
.hero-search > span { padding-left: 17px; color: var(--purple); font-size: 23px; }
.hero-search input, .page-search input { width: 100%; min-width: 0; border: 0; background: transparent; padding: 15px 13px; color: var(--ink); outline: 0; }
.hero-search input::placeholder, .page-search input::placeholder { color: #7a8393; opacity: 1; }
.hero-search button, .page-search button { align-self: stretch; padding: 0 22px; border: 0; color: var(--white); background: var(--navy); font-weight: 750; white-space: nowrap; }
.popular { grid-column: 2; display: flex; align-items: center; flex-wrap: wrap; gap: 7px 14px; color: #697388; font-size: 11px; }
.popular a { color: var(--purple-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.concern-section { background: var(--white); }
.concern-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.concern-card { min-height: 230px; display: flex; flex-direction: column; padding: 29px 27px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-soft); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.concern-card:hover { transform: translateY(-4px); border-color: #c4c1df; box-shadow: var(--shadow); }
.concern-number { display: inline-grid; width: 38px; height: 38px; place-items: center; margin-bottom: 24px; border-radius: 10px; background: #efeff8; color: var(--purple); font: 800 11px/1 Inter, sans-serif; }
.concern-card h3 { margin-bottom: 11px; font-size: 20px; }
.concern-card p { color: var(--muted); font-size: 14px; line-height: 1.62; }
.concern-card b { margin-top: auto; color: var(--purple-deep); font-size: 13px; }
.age-section { background: var(--cream); }
.age-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; }
.age-grid a { min-height: 140px; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; border: 1px solid #e7e1d8; border-radius: 14px; background: var(--white); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.age-grid a:hover { transform: translateY(-3px); border-color: #c6c3dd; box-shadow: var(--shadow-soft); }
.age-grid span { color: var(--purple); font: 800 11px/1 Inter, sans-serif; letter-spacing: .1em; }
.age-grid strong { color: var(--navy); font-size: 15px; line-height: 1.35; }
.age-grid b { align-self: flex-end; color: var(--purple); }
.pathway-section { background: #f7f6fb; color: var(--muted); }
.pathway-section .section-heading h2 { color: var(--navy); }
.pathway-section .section-heading > span { color: var(--purple); }
.pathway-section .section-heading p { color: var(--muted); }
.pathway-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 39px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); overflow: hidden; }
.pathway-grid > div { min-height: 220px; padding: 29px 27px 25px; border-right: 1px solid var(--line); }
.pathway-grid > div:last-child { border-right: 0; }
.pathway-grid span { color: var(--purple); font: 800 11px/1 Inter, sans-serif; letter-spacing: .1em; }
.pathway-grid h3 { margin-top: 48px; margin-bottom: 9px; color: var(--navy); font-size: 20px; }
.pathway-grid p { margin: 0; font-size: 14px; line-height: 1.62; }
.featured-section { background: var(--white); }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-soft); transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card > a { height: 100%; display: flex; flex-direction: column; }
.feature-image { height: 92px; display: flex; align-items: flex-end; padding: 18px 22px; background: #f0eff8; }
.feature-2 { background: var(--cream); }
.feature-3 { background: #edf2f7; }
.feature-image span { color: var(--purple); font: 900 34px/1 Avenir, "Avenir Next", Inter, sans-serif; letter-spacing: -.04em; }
.feature-card > a > div:last-child { flex: 1; display: flex; flex-direction: column; padding: 24px 25px 27px; }
.card-kicker { display: block; margin-bottom: 10px; color: var(--purple); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.feature-card h3 { font-size: 20px; }
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.62; }
.feature-card b { margin-top: auto; color: var(--purple-deep); font-size: 13px; }
.help-section { background: var(--white); }
.help-card { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 50px 54px; border-radius: 22px; background: var(--navy); color: rgba(255,255,255,.75); }
.help-card > div { max-width: 720px; }
.help-card .eyebrow { color: #c9c7ef; }
.help-card h2 { color: var(--white); font-size: clamp(30px, 4vw, 46px); }
.help-card p { margin-bottom: 0; color: rgba(255,255,255,.75); }

/* Inner page heroes and cards */
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding-block: 15px; color: #6e7889; font-size: 12px; }
.breadcrumbs a:hover { color: var(--purple-deep); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumbs a[aria-current="page"] { color: var(--purple-deep); }
.page-hero { padding: 75px 0 70px; background: var(--cream); border-top: 1px solid #f0ece4; border-bottom: 1px solid #ebe5dc; text-align: left; }
.page-hero h1 { max-width: 780px; margin-bottom: 18px; color: var(--navy); font-size: clamp(44px, 5.2vw, 62px); font-weight: 900; }
.page-hero p { max-width: 710px; margin-inline: 0; margin-bottom: 0; color: var(--muted); font-size: 17px; }
.page-hero.simple { padding-block: 64px; }
.page-hero.simple .narrow { margin-inline: auto; }
.page-search { max-width: 680px; margin-top: 29px; border-color: #d1d0dc; box-shadow: var(--shadow-soft); }
.page-search input { min-height: 56px; }
.page-search button { background: var(--purple); }
.page-search button:hover { background: var(--purple-deep); }
.search-suggestions { display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 15px; color: var(--muted); font-size: 12px; }
.search-suggestions button { padding: 6px 10px; color: var(--purple-deep); background: var(--white); border: 1px solid #cfccdf; border-radius: 999px; }
.library-layout { display: grid; grid-template-columns: 215px 1fr; gap: 48px; padding-block: 64px 104px; }
.library-nav { position: sticky; top: 105px; align-self: start; display: flex; flex-direction: column; padding: 11px; background: var(--mist); border: 1px solid var(--line); border-radius: 14px; }
.library-nav a { display: flex; align-items: center; gap: 12px; padding: 11px 10px; border-radius: 8px; color: #4c5e77; font-size: 13px; }
.library-nav a:hover { color: var(--purple-deep); background: var(--white); }
.library-nav span { color: var(--purple); font: 800 10px/1 Inter, sans-serif; }
.library-group { padding-bottom: 72px; scroll-margin-top: 105px; }
.library-group + .library-group { padding-top: 16px; border-top: 1px solid var(--line); }
.library-group-head { display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 20px; margin-bottom: 28px; }
.group-mark { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 12px; background: var(--purple); color: var(--white); font: 800 12px/1 Inter, sans-serif; }
.library-group-head h2 { margin-bottom: 7px; font-size: 30px; }
.library-group-head p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.library-group-head > a { color: var(--purple-deep); font-size: 13px; font-weight: 700; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.guide-grid.three { grid-template-columns: repeat(3, 1fr); }
.guide-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 7px 22px rgba(22,47,85,.045); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.guide-card:hover { transform: translateY(-3px); border-color: #c6c3dc; box-shadow: var(--shadow-soft); }
.guide-card a { height: 100%; display: flex; flex-direction: column; padding: 26px; }
.guide-card h3 { margin-bottom: 11px; font-size: 18px; letter-spacing: -.025em; }
.guide-card p { color: var(--muted); font-size: 13px; line-height: 1.62; }
.card-link { margin-top: auto; padding-top: 8px; color: var(--purple-deep); font-size: 12px; font-weight: 700; }
.guide-card.compact p { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

/* Article pages */
.article-hero { padding: 76px 0 67px; background: var(--white); border-bottom: 1px solid var(--line); }
.article-hero-inner { display: block; }
.article-hero h1 { max-width: 930px; margin-bottom: 18px; color: var(--navy); font-size: clamp(42px, 5vw, 62px); font-weight: 900; }
.article-deck { max-width: 820px; color: var(--muted); font-size: 18px; }
.article-number { display: none; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px; color: #667287; font-size: 11px; }
.article-meta span { display: inline-flex; align-items: center; gap: 5px; padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); }
.article-meta i { display: inline-grid; width: 17px; height: 17px; place-items: center; border-radius: 50%; background: #efeff8; color: var(--purple); font-size: 9px; font-style: normal; }
.article-layout { display: grid; grid-template-columns: 220px minmax(0, 790px); justify-content: space-between; gap: 82px; padding-top: 59px; padding-bottom: 104px; }
.article-aside { position: sticky; top: 112px; align-self: start; }
.aside-card { padding: 20px; background: var(--mist); border: 1px solid var(--line); border-radius: 13px; }
.aside-card > span { display: block; margin-bottom: 13px; color: var(--navy); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.aside-card nav { display: flex; flex-direction: column; gap: 7px; }
.aside-card nav a { padding: 5px 7px; border-radius: 6px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.aside-card nav a:hover { color: var(--purple-deep); background: var(--white); }
.aside-hub { display: block; margin-top: 18px; color: var(--purple-deep); font-size: 12px; font-weight: 700; }
.article-main { min-width: 0; }
.prose { color: #334a68; font-size: 17px; line-height: 1.78; }
.prose > p:first-child { color: var(--ink); font-size: 20px; line-height: 1.65; }
.prose h2 { margin-top: 2.1em; margin-bottom: .65em; padding-top: .2em; font-size: 31px; scroll-margin-top: 110px; }
.prose h3 { margin-top: 1.9em; font-size: 22px; scroll-margin-top: 110px; }
.prose strong { color: var(--navy); }
.prose a { color: var(--purple-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose li { margin-bottom: .55em; padding-left: 4px; }
.prose li::marker { color: var(--purple); }
.prose blockquote { margin: 32px 0; padding: 23px 26px; border-left: 4px solid var(--purple); border-radius: 0 12px 12px 0; background: #f5f4fb; color: #3e5070; }
.prose blockquote p:last-child { margin-bottom: 0; }
.prose table { width: 100%; margin: 28px 0; border-collapse: collapse; font-size: 14px; }
.prose th, .prose td { padding: 13px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { background: #f2f1f8; color: var(--navy); }
.education-notice { margin: 42px 0; padding: 24px 27px; border: 1px solid #e5ddcd; border-left: 4px solid var(--gold); border-radius: 12px; background: var(--cream); }
.education-notice strong { display: block; margin-bottom: 5px; color: var(--navy); font-family: Avenir, "Avenir Next", Inter, sans-serif; }
.education-notice p { margin: 0; color: var(--muted); font-size: 14px; }
.education-notice.wide { max-width: 850px; margin: 48px auto 0; }
.service-cta { margin: 46px 0; padding: 37px 39px; border: 1px solid #e1dfed; border-radius: 16px; background: #f7f6fb; color: var(--muted); }
.service-cta > span { color: var(--purple); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-cta h2 { margin-top: 12px; margin-bottom: 12px; color: var(--navy); font-size: 29px; }
.service-cta p { font-size: 15px; }
.service-cta small { display: block; margin-top: 13px; color: #727b8c; }
.sources { margin-top: 42px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; }
.sources summary { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; background: var(--mist); color: var(--navy); font-family: Avenir, "Avenir Next", Inter, sans-serif; font-weight: 750; cursor: pointer; }
.sources summary span { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: #ecebf7; color: var(--purple); font: 700 10px/1 Inter, sans-serif; }
.sources ol { padding: 18px 38px 4px; color: var(--muted); font-size: 13px; }
.sources li { margin-bottom: 8px; }
.sources a { color: var(--purple-deep); text-decoration: underline; text-underline-offset: 3px; }
.sources > p { padding: 0 18px 16px; color: var(--muted); font-size: 12px; }
.related { padding-bottom: 0; }
.related .text-link { margin-top: 25px; }
.hub-library { margin-top: 65px; padding-top: 55px; border-top: 1px solid var(--line); }
.hub-library .guide-grid { grid-template-columns: repeat(2, 1fr); }

/* Start, search, resources and standard pages */
.start-flow { padding-block: 70px 104px; }
.start-flow > section { padding: 54px 0; border-bottom: 1px solid var(--line); }
.start-flow > section:first-child { padding-top: 0; }
.step-label { display: flex; align-items: center; gap: 17px; margin-bottom: 33px; }
.step-label > span { display: grid; flex: 0 0 auto; width: 48px; height: 48px; place-items: center; border-radius: 12px; background: var(--purple); color: var(--white); font: 800 15px/1 Inter, sans-serif; }
.step-label small { display: block; color: var(--purple); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.step-label h2 { margin: 2px 0 0; font-size: 30px; }
.age-grid.compact { grid-template-columns: repeat(5, 1fr); }
.age-grid.compact a { min-height: 120px; }
.start-concerns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.start-concerns a { min-height: 88px; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 16px; padding: 17px 20px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); box-shadow: 0 6px 18px rgba(22,47,85,.04); }
.start-concerns a:hover { border-color: #c6c3dc; box-shadow: var(--shadow-soft); }
.start-concerns span { color: var(--purple); font: 800 11px/1 Inter, sans-serif; }
.start-concerns strong { font-size: 14px; line-height: 1.45; }
.start-concerns b { color: var(--purple); }
.question-panel { padding: 47px 50px !important; border: 0 !important; border-radius: 18px; background: var(--navy); color: rgba(255,255,255,.8); }
.question-panel .step-label > span { background: var(--purple); }
.question-panel .step-label small { color: #c9c7ef; }
.question-panel h2 { color: var(--white); }
.question-panel ol { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 35px; margin: 0; padding-left: 25px; }
.question-panel li { padding-left: 8px; }
.question-panel li::marker { color: #c9c7ef; font-weight: 700; }
.decision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.decision-grid > div { padding: 28px; border: 1px solid var(--line); border-top: 4px solid var(--purple); border-radius: 13px; background: var(--white); box-shadow: 0 7px 20px rgba(22,47,85,.04); }
.decision-grid > div.urgent { border-color: #e7ddc9; border-top-color: var(--gold); background: var(--cream); }
.decision-grid span { color: var(--purple); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.decision-grid h3 { margin-top: 11px; font-size: 18px; }
.decision-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.results-head { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 34px; }
.results-head h2 { margin-bottom: 0; font-size: 32px; }
.results-head > span { color: var(--muted); font-size: 13px; }
.no-results { max-width: 620px; margin: 20px auto; padding: 50px; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: 15px; }
.no-results > span { color: var(--purple); font-size: 45px; }
.no-results h2 { margin-top: 15px; }
.no-results p { color: var(--muted); }
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.resource-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 7px 22px rgba(22,47,85,.045); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.resource-card:hover { transform: translateY(-3px); border-color: #c6c3dc; box-shadow: var(--shadow-soft); }
.resource-card a { min-height: 255px; display: grid; grid-template-columns: 55px 1fr; gap: 25px; padding: 34px; }
.resource-number { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 11px; background: #eeedf8; color: var(--purple); font: 800 12px/1 Inter, sans-serif; }
.resource-card small { color: var(--purple); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.resource-card h2 { margin-top: 9px; font-size: 24px; }
.resource-card p { color: var(--muted); font-size: 14px; }
.resource-card b { color: var(--purple-deep); font-size: 13px; }
.resource-paper { max-width: 850px; padding-block: 65px 100px; }
.print-button { margin-top: 24px; }
.resource-paper .prose li { position: relative; margin-left: -24px; padding-left: 32px; list-style: none; }
.print-check { position: absolute; left: 0; top: .45em; width: 16px; height: 16px; border: 1.5px solid #8b89b1; }
.standard-page { max-width: 830px; margin-top: 54px; margin-bottom: 85px; padding: 45px 50px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-soft); }
.standard-page .prose > p:first-child { font-size: 19px; }
.not-found { min-height: 640px; display: grid; place-items: center; padding: 80px 0; text-align: center; background: var(--cream); }
.not-found .container { max-width: 730px; }
.error-code { display: block; color: rgba(103,99,189,.14); font: 900 120px/1 Avenir, "Avenir Next", Inter, sans-serif; }
.not-found h1 { font-size: clamp(38px, 5vw, 58px); }
.not-found p { color: var(--muted); font-size: 18px; }
.not-found .page-search { margin: 26px auto 24px; }
.not-found .hero-actions { justify-content: center; }

/* Trust strip and footer */
.trust-band { background: var(--cream); border-top: 1px solid #ece6dc; border-bottom: 1px solid #ece6dc; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid > div { display: flex; align-items: center; justify-content: center; gap: 13px; padding: 23px; border-right: 1px solid #e8e1d6; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid > div > span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid #cbc8de; border-radius: 50%; background: var(--white); color: var(--purple); font-weight: 700; }
.trust-grid p { margin: 0; line-height: 1.35; }
.trust-grid strong { display: block; color: var(--navy); font-size: 13px; }
.trust-grid small { color: var(--muted); font-size: 11px; }
.site-footer { padding-top: 62px; background: var(--navy-deep); color: rgba(255,255,255,.68); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1.15fr 1fr; gap: 60px; padding-bottom: 45px; }
.site-footer .brand { margin-bottom: 22px; color: var(--white); }
.site-footer .brand-mark { background: var(--purple); box-shadow: none; }
.site-footer .brand-name { color: var(--white); }
.site-footer .brand-name span { color: #c7c4ef; }
.footer-intro p { max-width: 340px; font-size: 13px; }
.site-footer h2 { margin-bottom: 18px; color: var(--white); font-size: 14px; letter-spacing: 0; }
.site-footer a:not(.brand) { display: block; padding: 4px 0; color: rgba(255,255,255,.67); font-size: 12px; }
.site-footer a:hover { color: var(--white); }
.disclosure-note { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0 24px; font-size: 10px; }
.back-top { position: fixed; z-index: 50; right: 20px; bottom: 20px; width: 42px; height: 42px; display: grid; place-items: center; opacity: 0; pointer-events: none; border: 0; border-radius: 10px; background: var(--purple); color: var(--white); box-shadow: var(--shadow-soft); transition: opacity .2s ease, transform .2s ease; transform: translateY(10px); }
.back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-nav { gap: 0; font-size: 12px; }
  .site-nav > a, .nav-group > summary { padding-inline: 9px; }
  .brand-name { font-size: 17px; }
  .hero-grid { gap: 42px; }
  .article-layout { grid-template-columns: 195px minmax(0, 1fr); gap: 55px; }
}

@media (max-width: 900px) {
  .site-header { background: rgba(255,255,255,.98); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .header-inner { min-height: 69px; }
  .menu-toggle { display: flex; }
  .menu-backdrop { position: fixed; z-index: 950; inset: 69px 0 0; display: block; opacity: 0; pointer-events: none; background: rgba(11,36,66,.36); transition: opacity .22s ease; }
  .nav-open .menu-backdrop { opacity: 1; pointer-events: auto; }
  .site-nav { position: fixed; z-index: 1050; inset: 69px 0 auto; max-height: calc(100vh - 69px); display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px; padding: 18px 20px 22px; overflow-y: auto; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 24px 50px rgba(11,36,66,.18); white-space: normal; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-12px); transition: opacity .2s ease, transform .22s ease, visibility 0s linear .22s; }
  .nav-open .site-nav { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); transition: opacity .2s ease, transform .22s ease, visibility 0s; }
  .mobile-nav-head { display: flex; align-items: center; justify-content: flex-start; gap: 18px; padding-bottom: 15px; margin-bottom: 5px; border-bottom: 1px solid var(--line); }
  .mobile-nav-head strong { display: block; color: var(--navy); font: 800 18px/1.3 Avenir, "Avenir Next", Inter, sans-serif; }
  .mobile-nav-head small { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; }
  .nav-close { display: none; }
  .site-nav > a, .nav-group > summary { min-height: 48px; padding: 12px 13px; border-radius: 9px; font-size: 15px; }
  .nav-group { width: 100%; }
  .nav-group > summary { justify-content: space-between; }
  .nav-group[open] > summary { color: var(--navy); background: #f5f4fb; }
  .nav-panel { position: static; width: auto; margin: 4px 0 7px; padding: 10px; border: 0; border-radius: 12px; background: var(--mist); box-shadow: none; transform: none; }
  .nav-panel::before { display: none; }
  .nav-panel-head { display: block; padding: 3px 4px 10px; }
  .nav-panel-head strong { display: none; }
  .nav-panel-head a { display: block; padding: 6px; font-size: 12px; }
  .nav-panel-grid { grid-template-columns: 1fr; gap: 2px; padding-top: 6px; }
  .nav-panel-grid > a { padding: 9px 7px; }
  .nav-panel-grid small { display: none; }
  .nav-search { justify-content: center; margin: 8px 0 0; border: 1px solid #bbb9d4; background: #f6f5fb; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero-grid { grid-template-columns: 1fr; padding-block: 62px 42px; }
  .hero-copy { max-width: 730px; }
  .hero-visual { min-height: 500px; margin-top: 12px; }
  .search-band-inner { grid-template-columns: 1fr; }
  .popular { grid-column: 1; }
  .concern-grid, .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .age-grid { grid-template-columns: repeat(5, minmax(155px, 1fr)); overflow-x: auto; padding-bottom: 8px; }
  .pathway-grid { grid-template-columns: repeat(2, 1fr); }
  .pathway-grid > div:nth-child(2) { border-right: 0; }
  .pathway-grid > div { border-bottom: 1px solid var(--line); }
  .featured-grid { grid-template-columns: 1fr; }
  .feature-card > a { display: grid; grid-template-columns: 180px 1fr; }
  .feature-image { height: 100%; min-height: 220px; }
  .help-card { align-items: flex-start; flex-direction: column; }
  .library-layout { grid-template-columns: 1fr; }
  .library-nav { position: static; flex-direction: row; overflow-x: auto; background: transparent; border: 0; border-radius: 0; }
  .library-nav a { flex: 0 0 auto; border: 1px solid var(--line); background: var(--white); }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { display: none; }
  .article-main { max-width: 790px; margin-inline: auto; }
  .hub-library .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { justify-content: flex-start; border-right: 0; border-bottom: 1px solid #e8e1d6; }
  .trust-grid > div:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container, .container.narrow { width: min(calc(100% - 30px), var(--max)); }
  .brand-mark { width: 36px; height: 36px; border-radius: 9px; }
  .brand-mark span { font-size: 12px; }
  .brand-name { font-size: 15px; }
  .menu-toggle { min-width: 79px; height: 42px; }
  .section { padding: 68px 0; }
  .home-hero { min-height: 0; }
  .hero-grid { gap: 24px; padding-block: 52px 36px; }
  .hero-copy h1 { font-size: 41px; line-height: 1.04; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 15px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-trust { gap: 8px 14px; }
  .hero-visual { min-height: 385px; margin-top: 11px; }
  .hero-image { border-radius: 27px; }
  .hero-image img { object-position: 57% center; }
  .home-search-band { padding: 25px 0; }
  .hero-search, .page-search { display: grid; grid-template-columns: auto 1fr; }
  .hero-search button, .page-search button { grid-column: 1 / -1; min-height: 48px; }
  .popular { gap: 7px 11px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .split-heading h2 { font-size: 34px; }
  .split-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
  .concern-grid, .guide-grid, .guide-grid.three, .hub-library .guide-grid, .resource-grid, .decision-grid { grid-template-columns: 1fr; }
  .concern-card { min-height: 0; }
  .pathway-grid { grid-template-columns: 1fr; }
  .pathway-grid > div { min-height: 0; border-right: 0; }
  .pathway-grid h3 { margin-top: 29px; }
  .feature-card > a { display: block; }
  .feature-image { height: 88px; min-height: 0; }
  .help-card { padding: 34px 27px; }
  .page-hero { padding: 57px 0 54px; }
  .page-hero h1 { font-size: 40px; }
  .page-hero p { font-size: 16px; }
  .library-layout { padding-top: 44px; }
  .library-group-head { grid-template-columns: 44px 1fr; }
  .library-group-head > a { grid-column: 2; }
  .group-mark { width: 44px; height: 44px; }
  .article-hero { padding: 56px 0 49px; }
  .article-hero h1 { font-size: 38px; }
  .article-deck { font-size: 16px; }
  .article-meta span { padding: 5px 8px; }
  .article-layout { padding-top: 42px; padding-bottom: 75px; }
  .prose { font-size: 16px; }
  .prose > p:first-child { font-size: 18px; }
  .prose h2 { font-size: 27px; }
  .guide-card a { padding: 24px; }
  .service-cta { padding: 29px 24px; }
  .start-flow > section { padding: 42px 0; }
  .start-concerns { grid-template-columns: 1fr; }
  .question-panel { padding: 35px 27px !important; }
  .question-panel ol { grid-template-columns: 1fr; }
  .resource-card a { grid-template-columns: 40px 1fr; padding: 27px 22px; }
  .standard-page { margin-top: 30px; margin-bottom: 60px; padding: 29px 23px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  @page { margin: 16mm; }
  body { background: white; color: black; font-size: 11pt; }
  .site-header, .breadcrumbs, .trust-band, .site-footer, .back-top, .print-button, .article-meta, .service-cta, .sources { display: none !important; }
  .article-hero { padding: 0 0 10mm; background: white; border-bottom: 2px solid #173b4d; }
  .article-hero h1 { color: black; font-size: 25pt; }
  .article-hero .eyebrow, .article-number { display: none; }
  .article-deck { color: #333; }
  .resource-paper { max-width: none; padding: 10mm 0 0; }
  .prose { color: black; font-size: 11pt; }
  .prose h2, .prose h3 { color: black; break-after: avoid; }
  .prose li { break-inside: avoid; }
  .education-notice { background: white; border: 1px solid #777; }
  a { color: black !important; text-decoration: none !important; }
}
