/* Shared design tokens and document-level accessibility defaults */
:root {
  --font-display: Georgia, 'Times New Roman', serif;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --color-paper: #fffdfa;
  --color-text: #344d5e;
  --color-text-muted: #5d7180;
  --color-line: #e4eae7;
  --color-line-strong: #cfdad5;
  --content-width: clamp(76rem, calc(52rem + 30vw), 88rem);
  --radius-md: 1rem;
  --radius-lg: 1.6rem;
  --shadow-sm: 0 12px 28px rgba(23, 51, 79, .07);
  --shadow-lg: 0 24px 70px rgba(23, 51, 79, .14);
  --anchor-offset: 7rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--anchor-offset); background: var(--color-paper); }
body { margin: 0; color: var(--color-text); background: var(--color-paper); font-family: var(--font-sans); font-size: 1rem; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a, button, summary { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid #f1a94e; outline-offset: 4px; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.container { width: min(calc(100% - 2.5rem), var(--content-width)); margin-inline: auto; }
.section { padding: clamp(5.75rem, 11vw, 10rem) 0; }
h1, h2, h3 { color: var(--color-ink); font-family: var(--font-display); font-weight: 600; }
h2 { margin: .8rem 0 1.2rem; font-size: clamp(2.6rem, 5vw, 4.6rem); line-height: 1.02; letter-spacing: -.055em; text-wrap: balance; }
p { text-wrap: pretty; }
.eyebrow { margin: 0; color: var(--color-accent-strong); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow--light { color: #b9ddcc; }
.section-heading { max-width: 47rem; }
.section-heading > p:not(.eyebrow), .section-heading--row > p { max-width: 34rem; margin: 0; color: var(--color-text-muted); font-size: 1.08rem; line-height: 1.7; }
.section-heading--row { display: flex; max-width: none; align-items: end; justify-content: space-between; gap: 3rem; }
.section-heading--row > div { max-width: 50rem; }
.section-heading--row > p, .section-heading--row > a { margin-bottom: .75rem; }
.button { display: inline-flex; min-height: 3.25rem; align-items: center; justify-content: center; gap: .75rem; padding: .85rem 1.25rem; color: white; background: var(--color-accent-strong); border: 1px solid var(--color-accent-strong); border-radius: 999px; font-size: .9rem; font-weight: 750; text-decoration: none; transition: transform .2s ease, background-color .2s ease; }
.button:hover { background: var(--color-ink); border-color: var(--color-ink); transform: translateY(-2px); }
.button--small { min-height: 2.75rem; padding: .65rem 1.1rem; font-size: .82rem; }
.button--quiet { color: var(--color-accent-strong); background: transparent; border-color: var(--color-line-strong); }
.button--quiet:hover { color: white; }
.button--light { color: var(--color-ink); background: white; border-color: white; }
.button--light:hover { color: var(--color-ink); background: #edf6f2; border-color: #edf6f2; }
.text-link { display: inline-flex; min-height: 2.75rem; align-items: center; gap: .6rem; color: var(--color-accent-strong); font-size: .88rem; font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: .3rem; }
.text-link--light { color: white; }
.skip-link { position: fixed; left: 1rem; top: 0; z-index: 200; padding: .75rem 1rem; color: white; background: var(--color-ink); transform: translateY(-110%); }
.skip-link:focus { transform: translateY(1rem); }

/* Shared brand */
.brand { display: inline-flex; align-items: center; color: var(--color-ink); }
.brand__copy { display: grid; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-size: clamp(1.325rem, calc(1.25rem + .25vw), 1.35rem); font-feature-settings: 'lnum' 1, 'onum' 0; font-variant-numeric: lining-nums; font-weight: 700; letter-spacing: -.025em; white-space: nowrap; }
.brand__logo { width: clamp(12rem, 14vw, 14.5rem); height: auto; }
.brand--image .brand__tagline { margin-top: 0; }
.brand__tagline { margin-top: .25rem; color: var(--color-text-muted); font-size: .7rem; }
.brand--light { color: white; }
.brand--light .brand__tagline { color: rgba(255,255,255,.68); }

/* Header and navigation */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--color-line); }
.header__inner { min-height: 5.4rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.header__brand { text-decoration: none; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.desktop-nav ul { display: flex; align-items: center; gap: clamp(.9rem, 1.8vw, 1.65rem); margin: 0; padding: 0; list-style: none; }
.desktop-nav li { margin: 0; }
.desktop-nav a:not(.button) { color: var(--color-ink); font-size: .88rem; font-weight: 650; text-decoration: none; }
.desktop-nav a:not(.button):hover { color: var(--color-accent-strong); }
.desktop-nav a[aria-current='page'] { color: var(--color-accent-strong); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: .45rem; }
.mobile-nav { display: none; }

/* Hero */
.hero { padding: clamp(3.8rem, 8vw, 7.5rem) 0 clamp(5rem, 10vw, 9rem); overflow: hidden; background: linear-gradient(115deg, #f7faf8 0%, #fff 58%); }
.hero__grid { display: grid; grid-template-columns: minmax(0, .94fr) minmax(32rem, 1.06fr); align-items: center; gap: clamp(3rem, 5vw, 6rem); }
.hero__content { position: relative; z-index: 1; max-width: 39rem; }
.hero h1 { max-width: 12.5ch; margin: 1rem 0 1.5rem; font-size: clamp(3.4rem, 5.5vw, 5.55rem); line-height: 1; letter-spacing: -.058em; text-wrap: balance; }
.hero__body { max-width: 35rem; margin: 0; color: var(--color-text); font-size: clamp(1.12rem, 1.5vw, 1.32rem); line-height: 1.65; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: 2.4rem; }
.hero__visual { position: relative; width: calc(100% + max(0px, (100vw - var(--content-width)) / 2)); min-height: 36rem; margin: 0; }
.hero__visual::before { content: ''; position: absolute; inset: -1.25rem auto auto -1.25rem; z-index: -1; width: 62%; height: 66%; border-radius: 60% 40% 35% 65%; background: #dcece6; }
.hero__visual img { width: 100%; height: 36rem; object-fit: cover; object-position: 63% center; border-radius: 1.75rem 0 0 1.75rem; box-shadow: var(--shadow-lg); }
.hero figcaption { position: absolute; left: -2.5rem; bottom: -2rem; display: grid; max-width: 17rem; padding: 1.25rem 1.5rem; color: white; background: var(--color-ink); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.hero figcaption strong { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.35; }

/* Guided question */
.guided { background: white; }
.guided__grid { display: grid; grid-template-columns: minmax(21rem, .88fr) minmax(0, 1.12fr); gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.guided__heading { position: sticky; top: calc(var(--anchor-offset) - .75rem); padding: clamp(2rem, 3.5vw, 3.5rem); background: var(--color-soft); border-radius: var(--radius-lg); }
.guided__heading h2 { margin: 0; font-size: clamp(2.6rem, 4.4vw, 4.25rem); }
.guided__heading .guided__intro { max-width: 28rem; margin: 1.25rem 0 0; color: var(--color-text-muted); font-size: 1.08rem; line-height: 1.7; }
.guided__pathways { border-top: 1px solid var(--color-line-strong); }
.pathway { display: grid; grid-template-columns: 2.5rem 1fr auto; align-items: start; gap: 1rem; padding: 1.7rem .25rem; color: var(--color-ink); text-decoration: none; border-bottom: 1px solid var(--color-line-strong); transition: padding .2s ease, background-color .2s ease; }
.pathway:hover { padding-left: .8rem; padding-right: .8rem; background: var(--color-soft); }
.pathway__number { padding-top: .15rem; color: var(--color-accent-strong); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.pathway__copy { display: grid; gap: .35rem; }
.pathway__copy strong { font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.65rem); }
.pathway__copy span { max-width: 39rem; color: var(--color-text-muted); line-height: 1.55; }
.pathway__arrow { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border: 1px solid var(--color-line-strong); border-radius: 50%; transition: color .2s ease, border-color .2s ease; }
.pathway:hover .pathway__arrow { color: white; background: var(--color-accent); border-color: var(--color-accent); }

/* Retirement picture */
.picture { position: relative; overflow: hidden; color: white; background: var(--color-ink); }
.picture::after { content: ''; position: absolute; width: 34rem; height: 34rem; right: -12rem; top: -17rem; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(255,255,255,.025), 0 0 0 10rem rgba(255,255,255,.02); }
.picture__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .85fr) minmax(32rem, 1.15fr); gap: clamp(4rem, 9vw, 9rem); align-items: center; }
.picture__copy h2 { max-width: 13ch; color: white; font-size: clamp(2.6rem, 4.4vw, 4.15rem); }
.picture__copy > p:not(.eyebrow) { max-width: 36rem; color: rgba(255,255,255,.72); font-size: 1.1rem; line-height: 1.75; }
.income-map { display: grid; gap: 1rem; align-items: stretch; }
.income-map__sources { display: grid; grid-template-columns: minmax(6.5rem, 1fr) auto minmax(7.5rem, 1fr) auto minmax(6.5rem, 1fr) auto minmax(6.5rem, 1fr); gap: .45rem; align-items: stretch; }
.income-source { display: grid; min-width: 0; min-height: 8rem; place-items: center; padding: 1rem .75rem; color: var(--color-ink); background: #fff; border-radius: .8rem; text-align: center; }
.income-source > span { display: grid; place-items: center; }
.income-source strong { font-family: var(--font-display); font-size: clamp(1rem, 1.55vw, 1.2rem); line-height: 1.15; }
.income-source small { margin-top: .32rem; color: var(--color-text-muted); font-size: .68rem; line-height: 1.3; }
.income-map__operator { display: grid; place-items: center; color: #b9ddcc; font-family: var(--font-display); font-size: 1.45rem; }
.income-map__equals { color: #b9ddcc; font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; line-height: 1; text-align: center; }
.income-map__result { display: grid; min-height: 6.5rem; place-content: center; padding: 1.5rem 2rem; color: white; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3); border-radius: 1rem; text-align: center; }
.income-map__result strong { font-family: var(--font-display); font-size: clamp(1.55rem, 2.6vw, 2.2rem); line-height: 1.15; }

/* Featured resources */
.resources__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2rem); margin-top: 3rem; }
.resource-card { position: relative; display: flex; flex-direction: column; padding: clamp(1.5rem, 2.5vw, 1.9rem); overflow: hidden; background: white; border: 1px solid var(--color-line); border-radius: var(--radius-md); }
.resource-card::after { content: ''; position: absolute; right: -2.8rem; top: -3.2rem; width: 7rem; height: 7rem; border: 1px solid rgba(216, 231, 225, .7); border-radius: 50%; }
.resource-card__number { color: #b6ccc4; font-family: var(--font-display); font-size: 2.75rem; line-height: 1; }
.resource-card > p:first-of-type { margin: 1.8rem 0 .55rem; color: var(--color-accent-strong); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.resource-card h3 { max-width: 14ch; margin: 0; font-size: clamp(1.55rem, 2.3vw, 2rem); line-height: 1.15; }
.resource-card h3 a { color: var(--color-ink); text-decoration: none; }
.resource-card h3 a::after { content: ''; position: absolute; inset: 0; }
.resource-card__description { margin: .7rem 0 0; color: var(--color-text-muted); line-height: 1.6; }
.resource-card__link { z-index: 1; display: flex; min-height: 2.75rem; align-items: flex-end; margin-top: auto; padding-top: 1.15rem; color: var(--color-accent-strong); font-size: .83rem; font-weight: 750; text-decoration: none; }
.resource-card:hover { border-color: #b4cec4; box-shadow: var(--shadow-sm); }

/* Human CTA, disclosure, footer */
.human-cta { padding: clamp(5rem, 9vw, 8rem) 0; color: white; background: var(--color-accent-strong); }
.human-cta__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .75fr); gap: clamp(3rem, 10vw, 9rem); align-items: end; }
.human-cta h2 { max-width: 16ch; margin-bottom: 0; color: white; }
.human-cta__action p { margin: 0 0 1.8rem; color: rgba(255,255,255,.76); font-size: 1.08rem; line-height: 1.7; }

/* 403(b) Basics page */
.basics-page { background: white; }
.basics-section { padding: clamp(5.5rem, 9vw, 8.5rem) 0; }
.basics-section h2 { max-width: 13ch; font-size: clamp(2.65rem, 4.8vw, 4.5rem); }
.basics-section-heading { max-width: 49rem; }
.basics-section-heading > p:not(.eyebrow) { max-width: 42rem; margin: 0; color: var(--color-text-muted); font-size: clamp(1.02rem, 1.5vw, 1.16rem); line-height: 1.75; }
.basics-hero { padding: clamp(4.5rem, 8vw, 7.5rem) 0; overflow: hidden; background: linear-gradient(120deg, #f8faf8 0%, #fff 68%); }
.basics-hero__grid { display: grid; grid-template-columns: minmax(22rem, .78fr) minmax(34rem, 1.22fr); align-items: center; gap: clamp(3rem, 6vw, 7rem); }
.basics-hero__copy { position: relative; z-index: 1; }
.basics-hero h1 { max-width: 9ch; margin: 1rem 0 1.5rem; color: var(--color-ink); font-family: var(--font-display); font-size: clamp(3.4rem, 5.8vw, 5.9rem); font-weight: 600; line-height: .98; letter-spacing: -.06em; text-wrap: balance; }
.basics-hero__copy > p:last-child { max-width: 33rem; margin: 0; font-size: clamp(1.08rem, 1.5vw, 1.28rem); line-height: 1.7; }
.basics-hero__visual { position: relative; width: calc(100% + max(0px, (100vw - var(--content-width)) / 2)); margin: 0; }
.basics-hero__visual::before { content: ''; position: absolute; left: -1.2rem; bottom: -1.2rem; z-index: 0; width: 42%; height: 55%; background: #dcece6; border-radius: 50% 50% 12% 50%; }
.basics-hero__visual img { position: relative; z-index: 1; width: 100%; height: clamp(27rem, 34vw, 34rem); object-fit: cover; object-position: 58% center; border-radius: 1.75rem 0 0 1.75rem; box-shadow: var(--shadow-lg); }
.basics-editorial-grid { display: grid; grid-template-columns: minmax(18rem, .72fr) minmax(0, 1.08fr); gap: clamp(3.5rem, 9vw, 9rem); align-items: start; }
.basics-prose { max-width: 45rem; }
.basics-prose > p { margin: 0 0 1.15rem; font-size: 1.05rem; line-height: 1.75; }
.basics-prose .basics-pull-statement { margin: 2.25rem 0 0; padding: .25rem 0 .25rem 1.5rem; color: var(--color-ink); border-left: 3px solid var(--color-accent); font-family: var(--font-display); font-size: clamp(1.45rem, 2.5vw, 2rem); font-weight: 600; line-height: 1.35; }
.basics-steps { background: #f6f4ef; }
.basics-step-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin: 4rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--color-line-strong); }
.basics-step-list li { min-width: 0; padding: 2rem clamp(1.4rem, 3vw, 2.6rem) 0 0; }
.basics-step-list li + li { padding-left: clamp(1.4rem, 3vw, 2.6rem); border-left: 1px solid var(--color-line-strong); }
.basics-step-list__number { display: block; margin-bottom: 2.8rem; color: #86aa9e; font-family: var(--font-display); font-size: 2.5rem; line-height: 1; }
.basics-step-list h3 { max-width: 16ch; margin: 0 0 .9rem; font-size: clamp(1.45rem, 2.2vw, 1.9rem); line-height: 1.15; }
.basics-step-list p { margin: 0; color: var(--color-text-muted); line-height: 1.7; }
.basics-why { background: #eaf3ef; }
.basics-why__grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(31rem, 1.05fr); gap: clamp(4rem, 8vw, 8rem); align-items: center; }
.basics-why__copy > p:not(.eyebrow) { max-width: 42rem; line-height: 1.72; }
.basics-why__copy .basics-lead { margin: 2rem 0 .75rem; color: var(--color-ink); font-family: var(--font-display); font-size: clamp(1.35rem, 2.2vw, 1.75rem); font-weight: 600; line-height: 1.35; }
.basics-gap-callout { margin: 2rem 0; padding: 1.3rem 1.4rem; color: var(--color-ink); background: rgba(255,255,255,.72); border-left: 3px solid var(--color-accent); font-weight: 750; }
.basics-note { margin-top: 2rem; color: var(--color-text-muted); font-size: .8rem; }
.basics-income-picture { padding: clamp(1.6rem, 3vw, 2.5rem); background: rgba(255,255,255,.72); border: 1px solid rgba(32,90,81,.16); border-radius: var(--radius-lg); }
.basics-income-picture ul { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 0; padding: 0; list-style: none; }
.basics-income-picture li { display: grid; min-height: 6.5rem; place-content: center; padding: 1.2rem; text-align: center; background: white; border: 1px solid var(--color-line); border-radius: .8rem; }
.basics-income-picture li strong { color: var(--color-ink); font-family: var(--font-display); font-size: 1.2rem; }
.basics-income-picture li span { margin-top: .25rem; color: var(--color-text-muted); font-size: .75rem; }
.basics-income-picture__arrow { display: block; margin: 1rem 0 .65rem; color: var(--color-accent-strong); text-align: center; font-size: 1.7rem; }
.basics-income-picture > p { margin: 0; padding: 1.4rem; color: white; background: var(--color-ink); border-radius: .8rem; font-family: var(--font-display); font-size: clamp(1.35rem, 2.3vw, 1.8rem); font-weight: 600; text-align: center; }
.basics-tax { background: white; }
.basics-tax__options { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 3.7rem; border-block: 1px solid var(--color-line-strong); }
.basics-tax__options section { padding: 2.5rem clamp(1.5rem, 4vw, 4rem) 2.5rem 0; }
.basics-tax__options section + section { padding-right: 0; padding-left: clamp(1.5rem, 4vw, 4rem); border-left: 1px solid var(--color-line-strong); }
.basics-tax__options h3 { margin: 0 0 .8rem; font-size: clamp(1.65rem, 2.5vw, 2.2rem); }
.basics-tax__options p { max-width: 33rem; margin: 0; color: var(--color-text-muted); line-height: 1.7; }
.basics-tax__closing { display: flex; max-width: 61rem; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 2rem; }
.basics-tax__closing > p { max-width: 41rem; margin: 0; line-height: 1.7; }
.basics-tax__closing .text-link { flex: 0 0 auto; }
.basics-hero, .basics-overview, .basics-steps, .basics-why, .basics-tax, .basics-limits, .basics-questions, .basics-closing { scroll-margin-top: var(--anchor-offset); }
.basics-limits { background: #f6f4ef; }
.basics-limits__layout { display: grid; grid-template-columns: minmax(20rem, .75fr) minmax(32rem, 1.25fr); gap: clamp(4rem, 9vw, 9rem); align-items: start; }
.basics-limits__panel { padding-top: .35rem; }
.basics-limits__panel > h3 { margin: 0 0 1.7rem; font-size: clamp(1.65rem, 2.5vw, 2.15rem); }
.basics-limits__grid { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border-top: 1px solid var(--color-line-strong); border-left: 1px solid var(--color-line-strong); }
.basics-limits__grid--three { grid-template-columns: repeat(3, 1fr); }
.basics-limits__grid > div { display: flex; min-height: 10rem; flex-direction: column; justify-content: space-between; padding: 1.5rem; background: rgba(255,255,255,.55); border-right: 1px solid var(--color-line-strong); border-bottom: 1px solid var(--color-line-strong); }
.basics-limits__grid dt { max-width: 20rem; color: var(--color-text-muted); font-size: .88rem; line-height: 1.5; }
.basics-limits__grid dd { margin: 1.4rem 0 0; color: var(--color-ink); font-family: var(--font-display); font-size: clamp(2.1rem, 4vw, 3.25rem); font-weight: 600; line-height: 1; }
.basics-limits__grid dd small { font-family: var(--font-sans); font-size: .75rem; font-weight: 750; letter-spacing: .02em; text-transform: uppercase; }
.basics-limits__grid > div > p { margin: 1.1rem 0 0; color: var(--color-text-muted); font-size: .8rem; line-height: 1.55; }
.basics-limits__grid sup { color: var(--color-accent-strong); }
.basics-limits__list { margin: 0; border-top: 1px solid var(--color-line-strong); }
.basics-limits__list > div { display: grid; grid-template-columns: minmax(10rem, 1fr) minmax(8rem, .8fr) minmax(14rem, 1.5fr); gap: 1.4rem; align-items: center; padding: 1.45rem 0; border-bottom: 1px solid var(--color-line-strong); }
.basics-limits__list dt { color: var(--color-ink); font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; line-height: 1.3; }
.basics-limits__list dd { margin: 0; color: var(--color-ink); font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.35rem); font-weight: 600; line-height: 1; }
.basics-limits__list dd small { font-family: var(--font-sans); font-size: .66rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.basics-limits__list p { margin: 0; color: var(--color-text-muted); font-size: .78rem; line-height: 1.55; }
.basics-limits__note { margin: 1.6rem 0 0; color: var(--color-text-muted); font-size: .82rem; line-height: 1.65; }
.basics-limits__note + .text-link { margin-top: .5rem; }
.basics-limits__footnote { margin: .55rem 0 0; color: var(--color-text-muted); font-size: .75rem; line-height: 1.5; }
.basics-limits__footnote span { margin-right: .2rem; color: var(--color-accent-strong); }
.basics-questions { background: white; }
.basics-question-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(3rem, 7vw, 7rem); margin: 4rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--color-line-strong); }
.basics-question-list li { display: grid; grid-template-columns: 2.25rem 1fr; gap: 1rem; padding: 2rem 0 2.25rem; border-bottom: 1px solid var(--color-line-strong); }
.basics-question-list li > span { padding-top: .25rem; color: var(--color-accent-strong); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.basics-question-list h3 { margin: 0 0 .65rem; font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.2; }
.basics-question-list p { margin: 0; color: var(--color-text-muted); line-height: 1.68; }
.basics-question-list .text-link { margin-top: .8rem; }
.basics-questions__link { margin-top: 2rem; }
.basics-closing { padding: clamp(5.5rem, 9vw, 8rem) 0; color: white; background: var(--color-accent-strong); }
.basics-closing__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, .82fr); gap: clamp(3rem, 9vw, 8rem); align-items: start; }
.basics-closing h2 { max-width: 14ch; margin: .8rem 0 0; color: white; }
.basics-closing__copy > p { margin: 0 0 1rem; color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.7; }
.basics-closing__copy > p strong { color: white; font-family: var(--font-display); font-size: 1.35rem; }
.basics-closing__copy .button { margin-top: 1.1rem; }

/* Common 403(b) Questions page */
.faq-page { background: white; }
.faq-hero { padding: clamp(4.5rem, 8vw, 7.5rem) 0; overflow: hidden; background: linear-gradient(120deg, #f8faf8 0%, #fff 68%); }
.faq-hero__grid { display: grid; grid-template-columns: minmax(23rem, .86fr) minmax(34rem, 1.14fr); align-items: center; gap: clamp(3rem, 6vw, 7rem); }
.faq-hero__copy { position: relative; z-index: 1; }
.faq-hero h1 { max-width: 10ch; margin: 1rem 0 1.5rem; color: var(--color-ink); font-family: var(--font-display); font-size: clamp(3.4rem, 5.8vw, 5.9rem); font-weight: 600; line-height: .98; letter-spacing: -.06em; text-wrap: balance; }
.faq-hero__lead { max-width: 36rem; margin: 0; font-size: clamp(1.08rem, 1.5vw, 1.28rem); line-height: 1.7; }
.faq-hero__secondary { max-width: 34rem; margin: 1rem 0 0; color: var(--color-text-muted); line-height: 1.7; }
.faq-hero__visual { position: relative; width: calc(100% + max(0px, (100vw - var(--content-width)) / 2)); margin: 0; }
.faq-hero__visual::before { content: ''; position: absolute; left: -1.2rem; bottom: -1.2rem; z-index: 0; width: 42%; height: 55%; background: #dcece6; border-radius: 50% 50% 12% 50%; }
.faq-hero__visual img { position: relative; z-index: 1; width: 100%; height: clamp(27rem, 34vw, 34rem); object-fit: cover; object-position: 58% center; border-radius: 1.75rem 0 0 1.75rem; box-shadow: var(--shadow-lg); }
.faq-intro { padding: clamp(5.25rem, 9vw, 8rem) 0; background: #f6f4ef; }
.faq-intro__grid { display: grid; grid-template-columns: minmax(18rem, .7fr) minmax(0, 1fr); gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.faq-intro h2 { max-width: 11ch; margin: 0; font-size: clamp(2.6rem, 4.7vw, 4.4rem); }
.faq-intro__copy { max-width: 44rem; }
.faq-intro__copy p { margin: 0 0 1.15rem; font-size: 1.06rem; line-height: 1.78; }
.faq-intro__copy p:last-child { margin-bottom: 0; color: var(--color-text-muted); }
.faq-list-section { padding: clamp(5.5rem, 9vw, 8.5rem) 0; background: white; }
.faq-list__container { max-width: 76rem; }
.faq-list__heading { max-width: 49rem; margin-bottom: 3.5rem; }
.faq-list__heading h2 { max-width: 12ch; font-size: clamp(2.65rem, 4.8vw, 4.5rem); }
.faq-list__heading > p:not(.eyebrow) { max-width: 42rem; margin: 0; color: var(--color-text-muted); font-size: clamp(1.02rem, 1.5vw, 1.16rem); line-height: 1.75; }
.faq-list { border-top: 1px solid var(--color-line-strong); }
.faq-item { scroll-margin-top: var(--anchor-offset); border-bottom: 1px solid var(--color-line-strong); }
.faq-item summary { display: grid; grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem; gap: 1.15rem; align-items: center; min-height: 6.25rem; padding: 1.2rem 0; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-item__number { align-self: start; padding-top: .38rem; color: var(--color-accent-strong); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.faq-item__question { max-width: 36ch; color: var(--color-ink); font-family: var(--font-display); font-size: clamp(1.4rem, 2.3vw, 2rem); font-weight: 600; line-height: 1.2; text-wrap: balance; }
.faq-item__indicator { position: relative; display: block; width: 2.65rem; height: 2.65rem; border: 1px solid var(--color-line-strong); border-radius: 50%; }
.faq-item__indicator::before, .faq-item__indicator::after { content: ''; position: absolute; left: 50%; top: 50%; width: .85rem; height: 1.5px; background: var(--color-accent-strong); transform: translate(-50%, -50%); }
.faq-item__indicator::after { transform: translate(-50%, -50%) rotate(90deg); transition: opacity .15s ease; }
.faq-item[open] .faq-item__indicator { background: var(--color-soft); border-color: #afc9bf; }
.faq-item[open] .faq-item__indicator::after { opacity: 0; }
.faq-item[open] summary { padding-bottom: .7rem; }
.faq-item__answer { max-width: 54rem; padding: 0 1rem 2.5rem calc(2.75rem + 1.15rem); }
.faq-item__answer > p { margin: 0 0 .95rem; line-height: 1.75; }
.faq-item__answer > p:last-child { margin-bottom: 0; }
.faq-item__answer ul { margin: .25rem 0 1.1rem; padding-left: 1.35rem; }
.faq-item__answer li { margin: .35rem 0; padding-left: .3rem; line-height: 1.6; }
.faq-item__answer .faq-item__closing { color: var(--color-ink); font-weight: 700; }
.faq-item__answer .faq-item__highlight { margin: 1.5rem 0 0; padding: .35rem 0 .35rem 1.3rem; color: var(--color-ink); border-left: 3px solid var(--color-accent); font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.45; }
.faq-item__answer .text-link { margin-top: .6rem; }
.faq-picture-break { margin: 3.25rem 0; padding: clamp(1.8rem, 4vw, 3rem); background: #eaf3ef; border-radius: var(--radius-md); }
.faq-picture-break > p { max-width: 27ch; margin: 0 0 1.75rem; color: var(--color-ink); font-family: var(--font-display); font-size: clamp(1.55rem, 3vw, 2.2rem); font-weight: 600; line-height: 1.25; }
.faq-picture-break__sources { display: flex; align-items: center; gap: .8rem; color: var(--color-accent-strong); }
.faq-picture-break__sources strong { padding: .6rem .85rem; background: rgba(255,255,255,.7); border-radius: .55rem; font-size: .82rem; }
.faq-picture-break__sources > span { color: #75998d; font-family: var(--font-display); font-size: 1.3rem; }
.faq-closing { padding: clamp(5.5rem, 9vw, 8rem) 0; color: white; background: var(--color-accent-strong); }
.faq-closing__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, .82fr); gap: clamp(3rem, 9vw, 8rem); align-items: start; }
.faq-closing h2 { max-width: 13ch; margin: .8rem 0 0; color: white; font-size: clamp(2.65rem, 4.8vw, 4.5rem); }
.faq-closing__copy > p { margin: 0 0 1rem; color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.7; }
.faq-closing__copy > p strong { color: white; font-family: var(--font-display); font-size: 1.35rem; }
.faq-closing__copy .button { margin-top: 1.1rem; }

/* 403(b) Annual Limits page */
.limits-page { background: white; }
.limits-hero { padding: clamp(5rem, 9vw, 8rem) 0; overflow: hidden; background: linear-gradient(120deg, #f8faf8 0%, #fff 68%); }
.limits-hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(24rem, .65fr); align-items: center; gap: clamp(4rem, 10vw, 10rem); }
.limits-hero h1 { max-width: 12ch; margin: 1rem 0 1.6rem; color: var(--color-ink); font-family: var(--font-display); font-size: clamp(3.5rem, 6vw, 6.1rem); font-weight: 600; line-height: .98; letter-spacing: -.06em; text-wrap: balance; }
.limits-hero__copy > p:last-child { max-width: 42rem; margin: 0; font-size: clamp(1.08rem, 1.5vw, 1.25rem); line-height: 1.72; }
.limits-hero__reference { position: relative; padding: clamp(2rem, 4vw, 3.5rem); overflow: hidden; color: white; background: var(--color-ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.limits-hero__reference::after { content: ''; position: absolute; right: -4rem; bottom: -4.5rem; width: 11rem; height: 11rem; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.limits-hero__reference > span { display: block; color: #b9ddcc; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.limits-hero__reference > strong { display: block; margin: .8rem 0 1rem; color: white; font-family: var(--font-display); font-size: clamp(4.5rem, 8vw, 7rem); font-weight: 600; letter-spacing: -.06em; line-height: .9; }
.limits-hero__reference > p { max-width: 19rem; margin: 0; color: rgba(255,255,255,.72); line-height: 1.65; }
.limits-summary, .limits-details { padding: clamp(5.5rem, 9vw, 8.5rem) 0; }
.limits-summary { background: #f6f4ef; }
.limits-section-heading { max-width: 52rem; }
.limits-section-heading h2 { max-width: 13ch; font-size: clamp(2.65rem, 4.8vw, 4.5rem); }
.limits-summary .limits-section-heading h2 { max-width: none; margin: 0; font-size: clamp(2.5rem, 4vw, 3.75rem); }
.limits-section-heading > p:not(.eyebrow) { max-width: 44rem; margin: 0; color: var(--color-text-muted); font-size: clamp(1.02rem, 1.5vw, 1.16rem); line-height: 1.75; }
.limits-summary__grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 4rem 0 0; border-top: 1px solid var(--color-line-strong); border-left: 1px solid var(--color-line-strong); }
.limits-summary__grid > div { min-width: 0; padding: clamp(1.5rem, 3vw, 2.25rem); background: rgba(255,255,255,.55); border-right: 1px solid var(--color-line-strong); border-bottom: 1px solid var(--color-line-strong); }
.limits-summary__grid dt { color: var(--color-accent-strong); font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.limits-summary__grid dd { margin: 2.4rem 0 1.4rem; color: var(--color-ink); font-family: var(--font-display); font-size: clamp(2.6rem, 4.5vw, 4rem); font-weight: 600; line-height: .95; letter-spacing: -.04em; }
.limits-summary__grid dd small { font-family: var(--font-sans); font-size: .7rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.limits-summary__grid p { margin: 0; color: var(--color-text-muted); font-size: .88rem; line-height: 1.65; }
.limits-summary__age-note { max-width: 51rem; margin: 1.5rem 0 0; color: var(--color-text-muted); font-size: .82rem; line-height: 1.65; }
.limits-details { padding-top: 0; background: white; }
.limits-table-wrap { margin-top: 4rem; }
.limits-table { width: 100%; border-collapse: collapse; border-spacing: 0; table-layout: fixed; }
.limits-table th, .limits-table td { vertical-align: top; text-align: left; }
.limits-table thead th { padding: 1.15rem 1.4rem; color: var(--color-ink); background: #dfece8; border-bottom: 2px solid #93b5a9; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.limits-table thead th + th { border-left: 1px solid rgba(32,90,81,.14); }
.limits-table thead th:nth-child(1) { width: 25%; }
.limits-table thead th:nth-child(2) { width: 30%; }
.limits-table thead th:nth-child(3) { width: 45%; }
.limits-table tbody th, .limits-table tbody td { padding: 1.8rem 1.4rem; background: rgba(255,255,255,.7); border-right: 1px solid var(--color-line-strong); border-bottom: 1px solid var(--color-line-strong); line-height: 1.65; }
.limits-table tbody th { border-left: 1px solid var(--color-line-strong); }
.limits-table tbody th { color: var(--color-ink); font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; line-height: 1.3; }
.limits-table tbody th small { color: var(--color-text-muted); font-family: var(--font-sans); font-size: .72rem; font-weight: 600; }
.limits-table tbody td { color: var(--color-text-muted); font-size: .9rem; }
.limits-table td strong { display: block; margin-bottom: .55rem; color: var(--color-ink); font-family: var(--font-display); font-size: 1.25rem; line-height: 1.35; }
.limits-table td p { margin: 0; }
.limits-table__special-heading th { padding: 2.8rem 1.4rem 1rem !important; color: var(--color-accent-strong); background: white !important; border-bottom: 1px solid var(--color-line-strong); font-family: var(--font-sans) !important; font-size: .72rem !important; font-weight: 800 !important; letter-spacing: .12em; text-transform: uppercase; }
.limits-table__special tr:not(.limits-table__special-heading) > * { background: #f8faf8; }
.limits-roth-callout { display: grid; grid-template-columns: minmax(18rem, .65fr) minmax(0, 1fr); gap: clamp(2.5rem, 8vw, 7rem); margin-top: 4.5rem; padding: clamp(2rem, 5vw, 4rem); background: #eaf3ef; border-radius: var(--radius-lg); }
.limits-roth-callout h3 { max-width: 15ch; margin: .7rem 0 0; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.15; }
.limits-roth-callout > div:last-child > p { max-width: 46rem; margin: 0 0 1rem; line-height: 1.72; }
.limits-roth-callout .text-link { margin-top: .5rem; }
.limits-annual-note { margin: 3.5rem 0 0; color: var(--color-text-muted); font-size: .82rem; }
.limits-closing { padding: clamp(5.5rem, 9vw, 8rem) 0; color: white; background: var(--color-accent-strong); }
.limits-closing__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, .82fr); gap: clamp(3rem, 9vw, 8rem); align-items: start; }
.limits-closing h2 { max-width: 14ch; margin: .8rem 0 0; color: white; font-size: clamp(2.65rem, 4.8vw, 4.5rem); }
.limits-closing__copy > p { margin: 0 0 1.5rem; color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.7; }

/* Traditional vs. Roth 403(b) page */
.roth-page { background: white; }
.roth-section { padding: clamp(5.5rem, 9vw, 8.5rem) 0; }
.roth-section-heading { max-width: 55rem; }
.roth-section-heading h2 { max-width: 16ch; margin: 0 0 1.4rem; font-size: clamp(2.65rem, 4.8vw, 4.5rem); }
.roth-section-heading > p { max-width: 46rem; margin: 0; color: var(--color-text-muted); font-size: clamp(1.02rem, 1.5vw, 1.16rem); line-height: 1.75; }
.roth-hero { padding: clamp(5rem, 9vw, 8rem) 0; overflow: hidden; background: linear-gradient(120deg, #f8faf8 0%, #fff 68%); }
.roth-hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(27rem, .8fr); align-items: center; gap: clamp(4rem, 9vw, 9rem); }
.roth-hero h1 { max-width: 11ch; margin: 1rem 0 1.5rem; color: var(--color-ink); font-family: var(--font-display); font-size: clamp(3.5rem, 6vw, 6.1rem); font-weight: 600; line-height: .98; letter-spacing: -.06em; text-wrap: balance; }
.roth-hero__lead { max-width: 44rem; margin: 0; font-size: clamp(1.08rem, 1.5vw, 1.25rem); line-height: 1.72; }
.roth-hero__secondary { max-width: 43rem; margin: 1rem 0 0; color: var(--color-text-muted); line-height: 1.7; }
.tax-timing { overflow: hidden; background: white; border: 1px solid var(--color-line-strong); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.tax-timing__option { padding: clamp(2rem, 4vw, 3.25rem); }
.tax-timing__option + .tax-timing__option { border-top: 1px solid var(--color-line-strong); }
.tax-timing__option--roth { background: var(--color-soft); }
.tax-timing__option > span { color: var(--color-accent-strong); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.tax-timing__option > strong { display: block; max-width: 22rem; margin: 1.2rem 0 .6rem; color: var(--color-ink); font-family: var(--font-display); font-size: clamp(1.65rem, 2.6vw, 2.35rem); line-height: 1.15; }
.tax-timing__option > strong span { display: block; }
.tax-timing__option > p { margin: 0; color: var(--color-text-muted); line-height: 1.6; }
.roth-difference { background: #eaf3ef; }
.roth-editorial-pair { display: grid; grid-template-columns: 1fr 1fr; margin-top: 4rem; border-block: 1px solid rgba(32,90,81,.25); }
.roth-editorial-pair article { display: flex; min-width: 0; flex-direction: column; padding: 2.75rem clamp(1.75rem, 4vw, 4rem) 2.75rem 0; }
.roth-editorial-pair article + article { padding-right: 0; padding-left: clamp(1.75rem, 4vw, 4rem); border-left: 1px solid rgba(32,90,81,.25); }
.roth-editorial-pair h3 { margin: 0 0 .8rem; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.roth-option-lead { max-width: 25rem; margin: 0 0 1.7rem; color: var(--color-accent-strong); font-weight: 800; line-height: 1.5; }
.roth-editorial-pair article > p:not(.roth-option-lead):not(.roth-option-highlight) { max-width: 37rem; margin: 0 0 1rem; line-height: 1.72; }
.roth-option-highlight { max-width: 31rem; margin: auto 0 0; padding: 1.1rem 1.25rem; color: var(--color-ink); background: rgba(255,255,255,.75); border-left: 3px solid var(--color-accent); font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; line-height: 1.4; }
.roth-comparison { background: white; }
.roth-comparison .roth-section-heading h2 { max-width: 15ch; }
.roth-table-wrap { margin-top: 3.75rem; }
.roth-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.roth-table th, .roth-table td { vertical-align: top; text-align: left; }
.roth-table thead th { padding: 1.15rem 1.35rem; color: var(--color-ink); background: #dfece8; border-bottom: 2px solid #93b5a9; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.roth-table thead th:first-child { width: 30%; }
.roth-table thead th + th { border-left: 1px solid rgba(32,90,81,.14); }
.roth-table tbody th, .roth-table tbody td { padding: 1.55rem 1.35rem; border-right: 1px solid var(--color-line-strong); border-bottom: 1px solid var(--color-line-strong); line-height: 1.62; }
.roth-table tbody th { color: var(--color-ink); border-left: 1px solid var(--color-line-strong); font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.roth-table tbody td { color: var(--color-text-muted); }
.roth-table tbody tr:last-child td { color: var(--color-ink); background: var(--color-soft); font-weight: 700; }
.roth-table-note { max-width: 57rem; margin: 1.6rem 0 0; color: var(--color-text-muted); font-size: .86rem; line-height: 1.68; }
.roth-fit { background: #f6f4ef; }
.roth-fit__options { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 7vw, 7rem); margin-top: 4rem; }
.roth-fit__options article { padding-top: 1.7rem; border-top: 1px solid var(--color-line-strong); }
.roth-fit__options article > p:last-child { max-width: 39rem; margin: 1.25rem 0 0; line-height: 1.75; }
.roth-fit__qualifier { max-width: 58rem; margin: 3.5rem 0 0; padding: 1.4rem 1.6rem; color: var(--color-ink); background: white; border-left: 3px solid var(--color-accent); font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.45; }
.roth-both { background: white; }
.roth-both__grid { display: grid; grid-template-columns: minmax(20rem, .8fr) minmax(32rem, 1.2fr); gap: clamp(4rem, 8vw, 8rem); align-items: center; }
.roth-both__copy h2 { max-width: 13ch; margin: 0 0 1.5rem; font-size: clamp(2.65rem, 4.8vw, 4.5rem); }
.roth-both__copy > p { max-width: 42rem; margin: 0 0 1rem; line-height: 1.72; }
.roth-both__copy .roth-both__answer { color: var(--color-accent-strong); font-family: var(--font-display); font-size: 1.65rem; font-weight: 600; }
.roth-both__copy .roth-both__limit { margin-top: 1.8rem; }
.roth-both__copy .text-link { margin-top: .45rem; }
.roth-equation { display: grid; grid-template-columns: 1fr auto 1fr; gap: .75rem; align-items: center; }
.roth-equation > strong { display: grid; min-height: 7.5rem; place-content: center; padding: 1.2rem; color: var(--color-ink); background: var(--color-soft); border: 1px solid #c7dcd4; border-radius: .85rem; text-align: center; font-family: var(--font-display); font-size: 1.35rem; line-height: 1.25; }
.roth-equation > span { color: var(--color-accent-strong); font-family: var(--font-display); font-size: 1.65rem; text-align: center; }
.roth-equation > strong:last-child { grid-column: 1 / -1; min-height: 6rem; color: white; background: var(--color-ink); border-color: var(--color-ink); }
.roth-equation > span:nth-of-type(2) { grid-column: 1 / -1; line-height: 1; }
.roth-callouts { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); margin-top: clamp(5rem, 9vw, 8rem); }
.roth-callout { padding: clamp(2rem, 4vw, 3.25rem); background: #f6f4ef; border-radius: var(--radius-md); }
.roth-callout--ira { background: #eaf3ef; }
.roth-callout h3 { max-width: 20ch; margin: 0 0 1.3rem; font-size: clamp(1.65rem, 2.8vw, 2.35rem); line-height: 1.18; }
.roth-callout > p { max-width: 39rem; margin: 0 0 1rem; line-height: 1.7; }
.roth-callout .roth-callout__note { color: var(--color-text-muted); font-size: .82rem; }
.roth-callout .text-link { margin-top: .45rem; }
.roth-questions { background: var(--color-soft); }
.roth-questions__grid { display: grid; grid-template-columns: minmax(17rem, .62fr) minmax(0, 1fr); gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.roth-questions h2 { max-width: 10ch; margin: 0; font-size: clamp(2.65rem, 4.8vw, 4.5rem); }
.roth-questions ol { margin: 0; padding: 0; list-style: none; counter-reset: roth-question; border-top: 1px solid var(--color-line-strong); }
.roth-questions li { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; padding: 1.7rem 0; color: var(--color-ink); border-bottom: 1px solid var(--color-line-strong); font-family: var(--font-display); font-size: clamp(1.3rem, 2.3vw, 1.8rem); line-height: 1.3; counter-increment: roth-question; }
.roth-questions li::before { content: '0' counter(roth-question); padding-top: .25rem; color: var(--color-accent-strong); font-family: var(--font-sans); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.roth-closing { padding: clamp(5.5rem, 9vw, 8rem) 0; color: white; background: var(--color-accent-strong); }
.roth-closing__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, .82fr); gap: clamp(3rem, 9vw, 8rem); align-items: start; }
.roth-closing h2 { max-width: 15ch; margin: .8rem 0 0; color: white; font-size: clamp(2.65rem, 4.8vw, 4.5rem); }
.roth-closing__copy > p { margin: 0 0 1rem; color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.7; }
.roth-closing__copy > p strong { color: white; font-family: var(--font-display); font-size: 1.35rem; }
.roth-closing__copy .button { margin-top: 1.1rem; }
.roth-hero, .roth-difference, .roth-comparison, .roth-fit, .roth-both, .roth-questions, .roth-closing { scroll-margin-top: var(--anchor-offset); }

.footer { padding: 4.25rem 0 1.75rem; color: rgba(255,255,255,.72); background: var(--color-ink); }
.footer__main { display: grid; grid-template-columns: minmax(16rem, 1.25fr) minmax(9rem, .62fr) minmax(13rem, .72fr) minmax(9rem, .62fr); gap: clamp(2rem, 5vw, 5rem); }
.footer__brand > a { text-decoration: none; }
.footer nav { display: grid; align-content: start; gap: .7rem; }
.footer nav h2 { margin: 0 0 .35rem; color: white; font-family: var(--font-sans); font-size: .72rem; font-weight: 800; letter-spacing: .12em; line-height: 1.35; text-transform: uppercase; }
.footer nav a { color: rgba(255,255,255,.72); font-size: .86rem; overflow-wrap: anywhere; text-decoration: none; }
.footer nav a:hover, .footer nav a:focus-visible { color: white; }
.footer__bottom { display: grid; gap: .55rem; margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); }
.footer__bottom p { margin: 0; font-size: .74rem; line-height: 1.5; }

@media (max-width: 900px) {
  .footer__main { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}

/* Master disclosures page */
.disclosures-page { background: white; }
.disclosures-reading-width { max-width: 64rem; }
.disclosures-hero { padding: clamp(4.75rem, 8vw, 7rem) 0; background: linear-gradient(120deg, #f2f7f4 0%, #fff 78%); }
.disclosures-hero h1 { max-width: 15ch; margin: .85rem 0 1.5rem; font-size: clamp(3.25rem, 6vw, 5.7rem); line-height: .98; letter-spacing: -.055em; }
.disclosures-hero__intro { max-width: 49rem; }
.disclosures-hero__intro p { margin: 0 0 1rem; color: var(--color-text); font-size: clamp(1rem, 1.4vw, 1.12rem); line-height: 1.75; }
.disclosures-content { background: white; }
.disclosures-section { padding: clamp(4.25rem, 7vw, 6.5rem) 0; }
.disclosures-section + .disclosures-section { border-top: 1px solid var(--color-line); }
.disclosures-section--soft { background: var(--color-soft); border-top: 0 !important; }
.disclosures-section--paired { background: #f7f5f0; border-top: 0 !important; }
.disclosures-section--important { border-top: 0 !important; }
.disclosures-section h2, .disclosures-questions h2 { max-width: 22ch; margin: 0 0 1.5rem; font-size: clamp(2.15rem, 4vw, 3.45rem); line-height: 1.06; letter-spacing: -.04em; }
.disclosures-section p { max-width: 48rem; margin: 0 0 1rem; font-size: 1.02rem; line-height: 1.78; }
.disclosures-section ul { max-width: 44rem; margin: 1.4rem 0 1.75rem; padding-left: 1.3rem; }
.disclosures-section li { margin: 0 0 .7rem; padding-left: .35rem; line-height: 1.65; }
.disclosures-statement { margin-top: 1.75rem !important; color: var(--color-ink); font-family: var(--font-display); font-size: clamp(1.25rem, 2.1vw, 1.55rem) !important; line-height: 1.48 !important; }
.disclosures-pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 7rem); }
.disclosures-pair > section + section { padding-left: clamp(2rem, 4vw, 4rem); border-left: 1px solid var(--color-line-strong); }
.disclosures-section--important .disclosures-reading-width { padding: clamp(2.25rem, 4vw, 3.25rem); background: #eef4f1; border-left: 3px solid var(--color-accent); border-radius: var(--radius-md); }
.disclosures-section--supplemental { background: var(--color-soft); }
.disclosures-questions { padding: clamp(4.75rem, 8vw, 7rem) 0; color: white; background: var(--color-accent-strong); }
.disclosures-questions__grid { display: grid; grid-template-columns: minmax(15rem, .7fr) minmax(20rem, 1fr); gap: clamp(2.5rem, 8vw, 7rem); align-items: start; }
.disclosures-questions h2 { color: white; }
.disclosures-questions p { max-width: 40rem; margin: 0 0 1.6rem; color: rgba(255,255,255,.84); font-size: 1.05rem; line-height: 1.75; }
.support-contact-email a, .support-secondary a { color: white; font-weight: 750; overflow-wrap: anywhere; text-underline-offset: .25rem; }
.disclosures-questions .support-contact-email, .terms-contact .support-contact-email { margin-top: -.65rem; font-family: var(--font-display); font-size: 1.25rem; }
.disclosures-questions .support-secondary, .terms-contact .support-secondary { margin: 1.4rem 0 0; font-size: .9rem; }

@media (max-width: 760px) {
  .disclosures-pair, .disclosures-questions__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .disclosures-pair > section + section { padding: 2.5rem 0 0; border-top: 1px solid var(--color-line-strong); border-left: 0; }
  .disclosures-section--important .disclosures-reading-width { width: calc(100% - 2rem); }
}

@media (max-width: 560px) {
  .disclosures-hero { padding: 4rem 0; }
  .disclosures-hero h1 { font-size: clamp(3rem, 14vw, 4rem); }
  .disclosures-section { padding: 3.8rem 0; }
  .disclosures-section h2, .disclosures-questions h2 { font-size: clamp(2.1rem, 10vw, 2.75rem); }
  .disclosures-questions { padding: 4rem 0; }
}

/* Master accessibility page */
.accessibility-page { background: white; }
.accessibility-reading-width { max-width: 68rem; }
.accessibility-hero { padding: clamp(4.75rem, 8vw, 7rem) 0; background: linear-gradient(120deg, #f2f7f4 0%, #fff 78%); }
.accessibility-hero h1 { max-width: 14ch; margin: .85rem 0 1.5rem; font-size: clamp(3.25rem, 6vw, 5.7rem); line-height: .98; letter-spacing: -.055em; }
.accessibility-hero__intro { max-width: 50rem; }
.accessibility-hero__intro p { margin: 0 0 1rem; color: var(--color-text); font-size: clamp(1rem, 1.4vw, 1.12rem); line-height: 1.75; }
.accessibility-content { background: white; }
.accessibility-section { padding: clamp(4.5rem, 8vw, 7rem) 0; }
.accessibility-section h2, .accessibility-help h2 { max-width: 14ch; margin: 0 0 1.5rem; font-size: clamp(2.15rem, 4vw, 3.45rem); line-height: 1.06; letter-spacing: -.04em; }
.accessibility-section p, .accessibility-help p { max-width: 45rem; margin: 0 0 1rem; font-size: 1.02rem; line-height: 1.78; }
.accessibility-standard__grid { display: grid; grid-template-columns: minmax(20rem, .9fr) minmax(24rem, 1.1fr); gap: clamp(3rem, 8vw, 7rem); align-items: start; }
.accessibility-feature-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--color-line-strong); }
.accessibility-feature-list li { position: relative; padding: 1rem .5rem 1rem 2rem; color: var(--color-ink); border-bottom: 1px solid var(--color-line-strong); line-height: 1.55; }
.accessibility-feature-list li::before { content: ''; position: absolute; left: .25rem; top: 1.45rem; width: .48rem; height: .48rem; background: var(--color-accent); border-radius: 50%; }
.accessibility-help { padding: clamp(4.5rem, 8vw, 7rem) 0; background: var(--color-soft); }
.accessibility-help__grid { display: grid; grid-template-columns: minmax(22rem, 1.08fr) minmax(20rem, .72fr); gap: clamp(3rem, 8vw, 7rem); align-items: start; }
.accessibility-contact { padding: clamp(2rem, 4vw, 3rem); background: white; border-left: 3px solid var(--color-accent); border-radius: var(--radius-md); }
.accessibility-contact h3 { margin: .7rem 0 1.4rem; font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1.08; letter-spacing: -.035em; }
.accessibility-contact address { color: var(--color-text); font-style: normal; font-size: 1rem; line-height: 1.75; }
.accessibility-contact address strong { color: var(--color-ink); }
.accessibility-contact__email { margin: 1.5rem 0 0 !important; }
.accessibility-contact__email span { display: block; margin-bottom: .35rem; color: var(--color-accent-strong); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.accessibility-contact__email a { color: var(--color-accent-strong); font-weight: 750; overflow-wrap: anywhere; text-underline-offset: .25rem; }
.accessibility-contact__action { margin-top: .25rem; }
.accessibility-contact .accessibility-contact__supporting { margin: 1.5rem 0 0; color: var(--color-text-muted); font-size: .88rem; line-height: 1.65; }
.accessibility-improvements { border-top: 1px solid var(--color-line); }
.accessibility-improvements p { max-width: 48rem; }

@media (max-width: 800px) {
  .accessibility-standard__grid, .accessibility-help__grid { grid-template-columns: 1fr; gap: 2.75rem; }
  .accessibility-feature-list, .accessibility-contact { max-width: 42rem; }
}

@media (max-width: 560px) {
  .accessibility-hero { padding: 4rem 0; }
  .accessibility-hero h1 { font-size: clamp(3rem, 14vw, 4rem); }
  .accessibility-section, .accessibility-help { padding: 3.8rem 0; }
  .accessibility-section h2, .accessibility-help h2 { font-size: clamp(2.1rem, 10vw, 2.75rem); }
  .accessibility-contact { padding: 1.6rem; }
}

/* Master Terms of Use page */
.terms-page { background: white; }
.terms-reading-width { max-width: 68rem; }
.terms-hero { padding: clamp(4.75rem, 8vw, 7rem) 0; background: linear-gradient(120deg, #f2f7f4 0%, #fff 78%); }
.terms-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(16rem, .38fr); gap: clamp(3rem, 8vw, 7rem); align-items: end; }
.terms-hero h1 { max-width: 10ch; margin: .85rem 0 1.5rem; font-size: clamp(3.25rem, 6vw, 5.7rem); line-height: .98; letter-spacing: -.055em; }
.terms-hero__intro { max-width: 49rem; }
.terms-hero__intro p { margin: 0 0 1rem; color: var(--color-text); font-size: clamp(1rem, 1.4vw, 1.12rem); line-height: 1.75; }
.terms-dates { margin: 0; padding: 1.6rem; background: white; border: 1px solid var(--color-line-strong); border-radius: var(--radius-md); }
.terms-dates > div + div { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--color-line); }
.terms-dates dt { color: var(--color-accent-strong); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.terms-dates dd { margin: .4rem 0 0; color: var(--color-ink); font-size: .84rem; line-height: 1.45; }
.terms-content { background: white; }
.terms-section { padding: clamp(4.25rem, 7vw, 6.25rem) 0; }
.terms-section + .terms-section { border-top: 1px solid var(--color-line); }
.terms-section h2, .terms-contact h2 { max-width: 17ch; margin: 0 0 1.5rem; font-size: clamp(2.05rem, 3.8vw, 3.35rem); line-height: 1.06; letter-spacing: -.04em; }
.terms-section p { max-width: 48rem; margin: 0 0 1rem; font-size: 1.01rem; line-height: 1.78; }
.terms-section p a { color: var(--color-accent-strong); font-weight: 700; text-underline-offset: .22rem; }
.terms-section--soft { background: var(--color-soft); border-top: 0 !important; }
.terms-section--neutral { background: #f7f5f0; border-top: 0 !important; }
.terms-section--privacy { background: #eef4f1; border-top: 0 !important; }
.terms-statement { margin-top: 1.6rem !important; color: var(--color-ink); font-family: var(--font-display); font-size: clamp(1.22rem, 2vw, 1.5rem) !important; line-height: 1.48 !important; }
.terms-pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 7rem); align-items: start; }
.terms-pair > section + section { padding-left: clamp(2rem, 4vw, 4rem); border-left: 1px solid var(--color-line-strong); }
.terms-section--privacy .text-link { margin-top: .5rem; }
.terms-section--supplemental { background: var(--color-soft); }
.terms-contact { padding: clamp(4.75rem, 8vw, 7rem) 0; color: white; background: var(--color-accent-strong); }
.terms-contact__grid { display: grid; grid-template-columns: minmax(18rem, .8fr) minmax(20rem, 1fr); gap: clamp(3rem, 9vw, 8rem); align-items: start; }
.terms-contact h2 { color: white; }
.terms-contact p { max-width: 40rem; margin: 0 0 1.5rem; color: rgba(255,255,255,.84); font-size: 1.03rem; line-height: 1.75; }
.terms-contact address { color: rgba(255,255,255,.84); font-style: normal; line-height: 1.75; }
.terms-contact address strong { color: white; }

@media (max-width: 800px) {
  .terms-hero__grid, .terms-pair, .terms-contact__grid { grid-template-columns: 1fr; gap: 2.75rem; }
  .terms-dates { max-width: 28rem; }
  .terms-pair > section + section { padding: 2.75rem 0 0; border-top: 1px solid var(--color-line-strong); border-left: 0; }
}

@media (max-width: 560px) {
  .terms-hero { padding: 4rem 0; }
  .terms-hero h1 { font-size: clamp(3rem, 14vw, 4rem); }
  .terms-section { padding: 3.8rem 0; }
  .terms-section h2, .terms-contact h2 { font-size: clamp(2.05rem, 10vw, 2.7rem); }
  .terms-contact { padding: 4rem 0; }
}

/* Global responsive adjustments for shared and educational page components */
@media (max-width: 1000px) {
  .picture__grid { grid-template-columns: 1fr; }
  .picture__copy h2 { max-width: 17ch; }
  .income-map { max-width: 48rem; }
  .basics-hero__grid { grid-template-columns: 1fr; }
  .basics-hero__copy { max-width: 44rem; }
  .basics-hero__visual { width: 100%; }
  .basics-hero__visual img { height: clamp(25rem, 55vw, 34rem); border-radius: 1.5rem; }
  .basics-why__grid, .basics-limits__layout { grid-template-columns: 1fr; }
  .basics-income-picture, .basics-limits__panel { max-width: 48rem; }
  .faq-hero__grid { grid-template-columns: 1fr; }
  .faq-hero__copy { max-width: 46rem; }
  .faq-hero__visual { width: 100%; }
  .faq-hero__visual img { height: clamp(25rem, 55vw, 34rem); border-radius: 1.5rem; }
  .limits-hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .limits-hero__copy { max-width: 50rem; }
  .limits-hero__reference { max-width: 38rem; }
  .roth-hero__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .roth-hero__copy { max-width: 52rem; }
  .tax-timing { display: grid; max-width: 55rem; grid-template-columns: 1fr 1fr; }
  .tax-timing__option + .tax-timing__option { border-top: 0; border-left: 1px solid var(--color-line-strong); }
  .roth-both__grid { grid-template-columns: 1fr; }
  .roth-equation { max-width: 48rem; }
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { max-width: 43rem; }
  .hero h1 { max-width: 13ch; }
  .hero__visual { width: 100%; min-height: 0; }
  .hero__visual img { height: clamp(23rem, 55vw, 35rem); border-radius: 1.5rem; }
  .hero figcaption { left: 1rem; }
}

@media (max-width: 880px) {
  .header__inner { min-height: 4.7rem; }
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .mobile-nav summary { width: 2.75rem; height: 2.75rem; display: grid; align-content: center; gap: .28rem; padding: .7rem; cursor: pointer; border: 1px solid var(--color-line-strong); border-radius: 50%; list-style: none; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav summary span { display: block; height: 2px; background: var(--color-ink); }
  .mobile-nav nav { position: absolute; left: 1rem; right: 1rem; top: calc(100% + .5rem); display: grid; padding: 1rem; background: white; border: 1px solid var(--color-line); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
  .mobile-nav nav a:not(.button) { padding: .85rem .7rem; color: var(--color-ink); font-weight: 650; text-decoration: none; border-bottom: 1px solid var(--color-line); }
  .mobile-nav nav a[aria-current='page'] { color: var(--color-accent-strong); background: var(--color-soft); }
  .mobile-nav .button { margin-top: .8rem; }
}

@media (max-width: 820px) {
  .guided__grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .guided__heading { position: static; }
  .resources__grid { grid-template-columns: 1fr; }
  .resource-card { min-height: 0; }
  .resource-card__link { align-items: center; margin-top: 1.4rem; padding-top: 0; }
  .basics-editorial-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .faq-intro__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .basics-step-list { grid-template-columns: 1fr; }
  .basics-step-list li, .basics-step-list li + li { padding: 1.8rem 0; border-left: 0; border-bottom: 1px solid var(--color-line-strong); }
  .basics-step-list__number { margin-bottom: 1.5rem; }
  .basics-tax__closing { align-items: flex-start; flex-direction: column; }
  .basics-question-list { grid-template-columns: 1fr; }
  .basics-limits__grid--three, .limits-summary__grid { grid-template-columns: 1fr; }
  .limits-summary__grid > div { min-height: 0; }
  .basics-limits__list > div { grid-template-columns: 1fr; gap: .6rem; align-items: start; }
  .basics-limits__list dd { margin-top: .2rem; }
  .limits-roth-callout { grid-template-columns: 1fr; gap: 2rem; }
  .roth-editorial-pair, .roth-fit__options, .roth-callouts, .roth-questions__grid { grid-template-columns: 1fr; }
  .roth-editorial-pair article, .roth-editorial-pair article + article { padding: 2.25rem 0; border-left: 0; }
  .roth-editorial-pair article + article { border-top: 1px solid rgba(32,90,81,.25); }
  .roth-option-highlight { margin-top: 2rem; }
  .roth-fit__options { gap: 2.5rem; }
  .roth-questions__grid { gap: 2.75rem; }
}

@media (max-width: 760px) {
  .human-cta__inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .basics-tax__options { grid-template-columns: 1fr; }
  .basics-tax__options section, .basics-tax__options section + section { padding: 2rem 0; border-left: 0; }
  .basics-tax__options section + section { border-top: 1px solid var(--color-line-strong); }
  .basics-closing__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .faq-closing__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .limits-closing__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .tax-timing { grid-template-columns: 1fr; }
  .tax-timing__option + .tax-timing__option { border-top: 1px solid var(--color-line-strong); border-left: 0; }
  .roth-closing__grid { grid-template-columns: 1fr; gap: 2.2rem; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 2rem), var(--content-width)); }
  .section-heading--row { align-items: flex-start; flex-direction: column; gap: .6rem; }
  .section-heading--row > p, .section-heading--row > a { margin-bottom: 0; }
  .footer { padding-top: 3.5rem; }
  .footer__main { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer nav a { display: flex; min-height: 2.25rem; align-items: center; }
  .footer__bottom { margin-top: 2.75rem; }
  .limits-table, .limits-table tbody, .limits-table tr, .limits-table th, .limits-table td { display: block; width: 100%; }
  .limits-table thead { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
  .limits-table tbody tr { padding: 1.8rem 0; border-bottom: 1px solid var(--color-line-strong); }
  .limits-table tbody th, .limits-table tbody td, .limits-table tbody th:first-child { padding: 0 0 1.35rem; border: 0; }
  .limits-table tbody td:last-child { padding-bottom: 0; }
  .limits-table tbody th::before, .limits-table tbody td::before { content: attr(data-label); display: block; margin-bottom: .5rem; color: var(--color-accent-strong); font-family: var(--font-sans); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .limits-table__special-heading { padding: 0 !important; border: 0 !important; }
  .limits-table__special-heading th { padding: 3rem 0 1rem !important; background: white !important; border-bottom: 1px solid var(--color-line-strong); }
  .limits-table__special-heading th::before { display: none; }
  .limits-table__special tr:not(.limits-table__special-heading) { padding: 1.8rem 1rem; background: #f8faf8; }
  .limits-table__special tr:not(.limits-table__special-heading) > * { background: transparent; }
  .roth-table, .roth-table tbody, .roth-table tr, .roth-table th, .roth-table td { display: block; width: 100%; }
  .roth-table thead { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
  .roth-table tbody tr { padding: 1.7rem 0; border-bottom: 1px solid var(--color-line-strong); }
  .roth-table tbody th, .roth-table tbody td { padding: 0 0 1.25rem; border: 0; }
  .roth-table tbody td:last-child { padding-bottom: 0; }
  .roth-table tbody th { margin-bottom: 1.2rem; font-size: 1.25rem; }
  .roth-table tbody td::before { content: attr(data-label); display: block; margin-bottom: .45rem; color: var(--color-accent-strong); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .roth-table tbody tr:last-child td { padding: 1.1rem; }
}

@media (max-width: 620px) {
  .section { padding: clamp(4.75rem, 18vw, 6rem) 0; }
  h2 { font-size: clamp(2.3rem, 11vw, 2.75rem); line-height: 1.04; }
  .hero { padding: 3.3rem 0 5.5rem; overflow: visible; }
  .hero__grid { gap: 2.5rem; }
  .hero h1 { font-size: clamp(2.65rem, 12vw, 3.2rem); line-height: 1.02; }
  .hero__actions { align-items: flex-start; flex-direction: column; }
  .hero__visual { display: grid; }
  .hero__visual img { height: auto; aspect-ratio: 4 / 5; object-position: 64% center; border-radius: 1.25rem 1.25rem 0 0; }
  .hero figcaption { position: static; left: auto; right: auto; bottom: auto; max-width: none; border-radius: 0 0 1.25rem 1.25rem; box-shadow: none; }
  .guided__heading { padding: 1.5rem; border-radius: var(--radius-md); }
  .guided__heading .guided__intro { margin-top: 1rem; font-size: 1rem; line-height: 1.6; }
  .pathway__copy span { font-size: .95rem; }
  .income-map { gap: .85rem; }
  .income-map__sources { grid-template-columns: 1fr; gap: .55rem; }
  .income-source { min-height: 5.25rem; }
  .income-map__operator { min-height: 1.1rem; line-height: .8; }
  .income-map__result { min-height: 6.5rem; }
  .picture::after { opacity: .5; }
  .resources__grid { gap: 1.25rem; margin-top: 2.5rem; }
  .resource-card { padding: 1.5rem; }
  .resource-card > p:first-of-type { margin-top: 1.55rem; }
  .human-cta { padding: 5rem 0; }
  .human-cta h2 { font-size: clamp(2.35rem, 11vw, 2.8rem); }
  .disclosure__inner { grid-template-columns: 1fr; gap: .65rem; }
  .basics-section { padding: clamp(4.75rem, 17vw, 6.25rem) 0; }
  .basics-hero { padding: 4rem 0 5rem; }
  .basics-hero__grid { gap: 2.6rem; }
  .basics-hero h1 { font-size: clamp(2.8rem, 13vw, 3.65rem); }
  .basics-hero__visual img { height: auto; aspect-ratio: 4 / 3; object-position: 61% center; border-radius: 1.25rem; }
  .basics-hero__visual::before { left: -.65rem; bottom: -.65rem; }
  .basics-section h2 { font-size: clamp(2.3rem, 11vw, 2.9rem); }
  .basics-income-picture ul, .basics-limits__grid { grid-template-columns: 1fr; }
  .basics-income-picture li { min-height: 5.25rem; }
  .basics-limits__grid > div { min-height: 8rem; }
  .basics-question-list { margin-top: 3rem; }
  .basics-question-list li { grid-template-columns: 1.75rem 1fr; gap: .65rem; }
  .faq-hero { padding: 4rem 0 5rem; }
  .faq-hero__grid { gap: 2.6rem; }
  .faq-hero h1 { font-size: clamp(2.8rem, 13vw, 3.65rem); }
  .faq-hero__visual img { height: auto; aspect-ratio: 4 / 3; object-position: 61% center; border-radius: 1.25rem; }
  .faq-hero__visual::before { left: -.65rem; bottom: -.65rem; }
  .faq-intro, .faq-list-section { padding: clamp(4.75rem, 17vw, 6.25rem) 0; }
  .faq-intro h2, .faq-list__heading h2, .faq-closing h2 { font-size: clamp(2.3rem, 11vw, 2.9rem); }
  .faq-list__heading { margin-bottom: 2.5rem; }
  .faq-item summary { grid-template-columns: 1.7rem minmax(0, 1fr) 2.55rem; gap: .65rem; min-height: 5.7rem; padding: 1.1rem 0; }
  .faq-item__question { font-size: clamp(1.3rem, 6.3vw, 1.6rem); text-wrap: pretty; }
  .faq-item__indicator { width: 2.5rem; height: 2.5rem; }
  .faq-item__answer { padding: 0 0 2.25rem calc(1.7rem + .65rem); }
  .faq-picture-break { margin: 2.5rem 0; }
  .faq-picture-break__sources { align-items: stretch; flex-direction: column; gap: .5rem; }
  .faq-picture-break__sources strong { width: 100%; padding: .7rem .8rem; }
  .faq-picture-break__sources > span { line-height: .8; text-align: center; }
  .limits-hero { padding: 4rem 0 5rem; }
  .limits-hero h1 { font-size: clamp(2.8rem, 13vw, 3.65rem); }
  .limits-hero__reference { padding: 2rem; }
  .limits-hero__reference > strong { font-size: 4.5rem; }
  .limits-summary, .limits-details { padding: clamp(4.75rem, 17vw, 6.25rem) 0; }
  .limits-details { padding-top: 0; }
  .limits-section-heading h2, .limits-closing h2 { font-size: clamp(2.3rem, 11vw, 2.9rem); }
  .limits-summary__grid { margin-top: 3rem; }
  .limits-summary__grid dd { margin-top: 1.8rem; }
  .limits-table-wrap { margin-top: 3rem; }
  .limits-roth-callout { margin-top: 3rem; padding: 1.5rem; }
  .roth-section { padding: clamp(4.75rem, 17vw, 6.25rem) 0; }
  .roth-hero { padding: 4rem 0 5rem; }
  .roth-hero h1 { font-size: clamp(2.8rem, 13vw, 3.65rem); }
  .tax-timing__option { padding: 1.6rem; }
  .roth-section-heading h2, .roth-both__copy h2, .roth-questions h2, .roth-closing h2 { font-size: clamp(2.3rem, 11vw, 2.9rem); }
  .roth-editorial-pair { margin-top: 3rem; }
  .roth-table-wrap { margin-top: 2.75rem; }
  .roth-equation { grid-template-columns: 1fr; gap: .55rem; }
  .roth-equation > strong { min-height: 5.5rem; }
  .roth-equation > strong:last-child, .roth-equation > span:nth-of-type(2) { grid-column: auto; }
  .roth-callouts { margin-top: 4.5rem; }
  .roth-callout { padding: 1.5rem; }
  .roth-questions li { grid-template-columns: 2rem 1fr; }
}

@media (max-width: 480px) {
  .pathway { grid-template-columns: 1.65rem minmax(0, 1fr) 2.2rem; gap: .65rem; padding: 1.35rem 0; }
  .pathway__copy strong { font-size: 1.25rem; line-height: 1.15; }
  .pathway__arrow { width: 2.2rem; height: 2.2rem; }
}

@media (max-width: 440px) {
  .header__brand .brand__logo { width: 12rem; }
  .header__brand .brand__tagline { display: none; }
}

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

/* Shared appointment scheduler */
.scheduler-page { background: #f7f6f2; }
.scheduler-hero { padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(3.5rem, 6vw, 5.5rem); background: linear-gradient(120deg, #f4f8f5 0%, #fff 72%); }
.scheduler-hero__copy { max-width: 65rem; }
.scheduler-hero h1 { max-width: 13ch; margin: 1rem 0 1.5rem; color: var(--color-ink); font-family: var(--font-display); font-size: clamp(3.25rem, 6vw, 5.8rem); font-weight: 600; line-height: .98; letter-spacing: -.058em; text-wrap: balance; }
.scheduler-hero__copy > p:last-child { max-width: 47rem; margin: 0; color: var(--color-text-muted); font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.72; }
.scheduler-workflow { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.scheduler { display: grid; grid-template-columns: minmax(0, 1fr) minmax(19rem, 23rem); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.scheduler[hidden], .scheduler-confirmation[hidden] { display: none !important; }
.scheduler__primary { min-width: 0; }
.scheduler-step { padding: 0 0 clamp(4.5rem, 8vw, 7rem); }
.scheduler-step + .scheduler-step { padding-top: clamp(4.5rem, 8vw, 7rem); border-top: 1px solid var(--color-line-strong); }
.scheduler-step__heading { display: grid; grid-template-columns: 2.5rem minmax(0, 1fr); gap: 1rem; align-items: start; margin-bottom: 2.5rem; }
.scheduler-step__heading > span { padding-top: .25rem; color: var(--color-accent-strong); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.scheduler-step__heading h2 { max-width: 15ch; margin: .55rem 0 0; font-size: clamp(2.25rem, 4vw, 3.6rem); }
.scheduler-step--progressive[hidden] { display: none; }

.calendar { max-width: 46rem; padding: clamp(1.25rem, 3vw, 2.25rem); background: white; border: 1px solid var(--color-line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.calendar__header { display: grid; grid-template-columns: 3rem 1fr 3rem; gap: 1rem; align-items: center; margin-bottom: 1.6rem; }
.calendar__header h3 { margin: 0; text-align: center; font-size: clamp(1.4rem, 2.5vw, 1.8rem); letter-spacing: -.025em; }
.calendar__nav { width: 3rem; height: 3rem; padding: 0; color: var(--color-ink); background: white; border: 1px solid var(--color-line-strong); border-radius: 50%; cursor: pointer; font-size: 1rem; }
.calendar__nav:hover:not(:disabled) { color: white; background: var(--color-accent-strong); border-color: var(--color-accent-strong); }
.calendar__nav:disabled { opacity: .32; cursor: not-allowed; }
.calendar__weekdays, .calendar__grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: .35rem; }
.calendar__weekdays { margin-bottom: .55rem; color: var(--color-text-muted); font-size: .68rem; font-weight: 750; text-align: center; text-transform: uppercase; }
.calendar__day { display: grid; width: 100%; aspect-ratio: 1; min-height: 2.8rem; place-items: center; padding: .25rem; color: var(--color-ink); background: transparent; border: 1px solid transparent; border-radius: 50%; cursor: pointer; font: inherit; font-weight: 700; }
.calendar__day:hover:not(:disabled) { background: var(--color-soft); border-color: #bad3ca; }
.calendar__day.is-today:not(.is-selected) { border-color: var(--color-accent); }
.calendar__day.is-selected { color: white; background: var(--color-accent-strong); border-color: var(--color-accent-strong); }
.calendar__day:disabled { color: #aab5b8; cursor: not-allowed; font-weight: 500; }
.calendar__day.is-outside-month { opacity: 0; }

.timezone-control { display: flex; max-width: 46rem; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.timezone-control label { color: var(--color-text-muted); font-size: .85rem; font-weight: 700; }
.timezone-control select { width: auto; min-width: 12rem; }
.time-slots { display: grid; max-width: 46rem; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .75rem; }
.time-slot { min-height: 3.2rem; padding: .75rem .5rem; color: var(--color-accent-strong); background: white; border: 1px solid #aac8bd; border-radius: .7rem; cursor: pointer; font: inherit; font-size: .88rem; font-weight: 750; }
.time-slot:hover, .time-slot.is-selected { color: white; background: var(--color-accent-strong); border-color: var(--color-accent-strong); }
.time-slots__empty { grid-column: 1 / -1; margin: 0; color: var(--color-text-muted); line-height: 1.65; }

.required-note { margin: -1.25rem 0 1.5rem 3.5rem; color: var(--color-text-muted); font-size: .78rem; }
.form-grid { display: grid; max-width: 46rem; grid-template-columns: 1fr 1fr; gap: 1.35rem 1.25rem; }
.form-field { min-width: 0; }
.form-field--wide { grid-column: 1 / -1; }
.form-field label { display: block; margin-bottom: .55rem; color: var(--color-ink); font-size: .86rem; font-weight: 750; }
.form-field input, .form-field select, .form-field textarea, .timezone-control select { width: 100%; min-height: 3.25rem; padding: .75rem .9rem; color: var(--color-text); background: white; border: 1px solid #bccac5; border-radius: .65rem; font: inherit; }
.form-field textarea { min-height: 7rem; resize: vertical; }
.form-field input:focus-visible, .form-field select:focus-visible, .form-field textarea:focus-visible, .timezone-control select:focus-visible { outline: 3px solid #f1a94e; outline-offset: 2px; border-color: var(--color-accent-strong); }
.form-field input[aria-invalid='true'], .form-field select[aria-invalid='true'] { border-color: #9e423f; }
.form-help { margin: .55rem 0 0; color: var(--color-text-muted); font-size: .76rem; line-height: 1.55; }
.scheduler-error { min-height: 1.1rem; margin: .45rem 0 0; color: #8b302e; font-size: .78rem; font-weight: 650; line-height: 1.4; }

.appointment-summary { position: sticky; top: calc(var(--anchor-offset) - .75rem); padding: clamp(1.7rem, 3vw, 2.3rem); background: var(--color-ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.appointment-summary .eyebrow { color: #b9ddcc; }
.appointment-summary h2 { margin: .7rem 0 1.5rem; color: white; font-size: clamp(2rem, 3vw, 2.6rem); letter-spacing: -.04em; }
.appointment-summary__type { margin: 0 0 1.5rem; color: white; font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; line-height: 1.35; }
.appointment-summary dl { margin: 0; }
.appointment-summary dl > div { display: grid; grid-template-columns: 5rem 1fr; gap: 1rem; padding: .85rem 0; border-top: 1px solid rgba(255,255,255,.13); }
.appointment-summary dt { color: rgba(255,255,255,.58); font-size: .72rem; font-weight: 750; text-transform: uppercase; }
.appointment-summary dd { margin: 0; color: white; font-size: .88rem; line-height: 1.45; }
.appointment-summary__confirm { width: 100%; margin-top: 1.6rem; color: var(--color-ink); background: white; border-color: white; }
.appointment-summary__confirm:disabled { color: rgba(255,255,255,.55); background: rgba(255,255,255,.12); border-color: transparent; cursor: not-allowed; transform: none; }
.appointment-summary__hint { margin: .8rem 0 0; color: rgba(255,255,255,.56); font-size: .72rem; line-height: 1.5; }
.appointment-summary__privacy { margin: 1.25rem 0 0; padding-top: 1.25rem; color: rgba(255,255,255,.7); border-top: 1px solid rgba(255,255,255,.13); font-size: .7rem; line-height: 1.58; }
.appointment-summary__privacy strong { color: white; }
.appointment-summary__privacy-link { display: inline-block; margin-top: .75rem; color: white; font-size: .74rem; font-weight: 750; text-underline-offset: .25rem; }

.scheduler-confirmation { max-width: 54rem; margin: 0 auto; padding: clamp(2.2rem, 6vw, 5rem); background: var(--color-soft); border-radius: var(--radius-lg); text-align: center; }
.scheduler-confirmation h2 { margin: .75rem 0 1.8rem; font-size: clamp(3rem, 6vw, 5rem); }
.scheduler-confirmation__date, .scheduler-confirmation__time { margin: .45rem 0; color: var(--color-ink); font-family: var(--font-display); font-size: clamp(1.45rem, 3vw, 2rem); font-weight: 600; line-height: 1.25; }
.scheduler-confirmation > p:not(.eyebrow):not(.scheduler-confirmation__date):not(.scheduler-confirmation__time) { max-width: 38rem; margin: 1.8rem auto 0; line-height: 1.7; }
.scheduler-confirmation .scheduler-confirmation__development { padding-top: 1.3rem; color: var(--color-text-muted); border-top: 1px solid var(--color-line-strong); font-size: .78rem; }
.scheduler-noscript { max-width: 48rem; margin: 2rem 0; padding: 1rem; color: var(--color-ink); background: #fff1cf; }

@media (max-width: 980px) {
  .scheduler { grid-template-columns: minmax(0, 1fr) minmax(17rem, 20rem); gap: 2.5rem; }
  .time-slots { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 880px) {
  .scheduler { grid-template-columns: 1fr; }
  .appointment-summary { position: static; }
}

@media (max-width: 520px) {
  .scheduler-hero { padding: 3.8rem 0 3.5rem; }
  .scheduler-hero h1 { font-size: clamp(2.75rem, 13vw, 3.45rem); }
  .scheduler-workflow { padding: 3.5rem 0 5rem; }
  .scheduler-step { padding-bottom: 4rem; }
  .scheduler-step + .scheduler-step { padding-top: 4rem; }
  .scheduler-step__heading { grid-template-columns: 1.8rem minmax(0, 1fr); gap: .65rem; margin-bottom: 2rem; }
  .scheduler-step__heading h2 { font-size: clamp(2.15rem, 11vw, 2.75rem); }
  .calendar { padding: 1rem .65rem 1.2rem; border-radius: 1rem; }
  .calendar__header { grid-template-columns: 2.75rem 1fr 2.75rem; gap: .5rem; }
  .calendar__nav { width: 2.75rem; height: 2.75rem; }
  .calendar__weekdays, .calendar__grid { gap: .12rem; }
  .calendar__day { min-height: 2.7rem; font-size: .86rem; }
  .timezone-control { align-items: stretch; flex-direction: column; }
  .timezone-control select { width: 100%; }
  .time-slots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--wide { grid-column: auto; }
  .required-note { margin-left: 2.45rem; }
  .appointment-summary { padding: 1.6rem; }
}

/* Reusable marketing-domain Privacy Policy */
.privacy-page { background: white; }
.privacy-hero { padding: clamp(4.75rem, 9vw, 8rem) 0; background: linear-gradient(120deg, #f2f7f4 0%, #fff 76%); }
.privacy-hero__inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(17rem, .55fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.privacy-hero__inner > .eyebrow, .privacy-hero h1 { grid-column: 1; }
.privacy-hero h1 { margin: .9rem 0 .8rem; color: var(--color-ink); font-family: var(--font-display); font-size: clamp(3.4rem, 6vw, 6rem); font-weight: 600; line-height: .98; letter-spacing: -.06em; }
.privacy-hero__intro { grid-column: 1; }
.privacy-hero__intro p { max-width: 50rem; margin: 0 0 1rem; color: var(--color-text); font-size: clamp(1rem, 1.35vw, 1.12rem); line-height: 1.75; }
.privacy-dates { grid-column: 2; grid-row: 2 / span 2; margin: 0; padding: 1.7rem; background: white; border: 1px solid var(--color-line-strong); border-radius: var(--radius-md); }
.privacy-dates > div + div { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--color-line); }
.privacy-dates dt { color: var(--color-accent-strong); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.privacy-dates dd { margin: .4rem 0 0; color: var(--color-ink); font-size: .88rem; line-height: 1.45; }

.privacy-layout { display: grid; grid-template-columns: minmax(15rem, 18rem) minmax(0, 1fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; padding-top: clamp(4.5rem, 8vw, 7rem); padding-bottom: clamp(5rem, 9vw, 8rem); }
.privacy-toc { padding: 1.6rem; background: var(--color-soft); border-radius: var(--radius-md); }
.privacy-toc h2 { margin: .65rem 0 1.2rem; font-size: 1.55rem; line-height: 1.15; letter-spacing: -.03em; }
.privacy-toc ol { margin: 0; padding: 0; list-style: none; counter-reset: privacy-toc; }
.privacy-toc li { counter-increment: privacy-toc; }
.privacy-toc a { display: grid; grid-template-columns: 1.5rem 1fr; gap: .45rem; padding: .47rem 0; color: var(--color-text); font-size: .78rem; line-height: 1.4; text-decoration: none; }
.privacy-toc a::before { content: counter(privacy-toc, decimal-leading-zero); color: var(--color-accent-strong); font-size: .62rem; font-weight: 800; letter-spacing: .06em; }
.privacy-toc a:hover { color: var(--color-accent-strong); text-decoration: underline; text-underline-offset: .2rem; }
.privacy-policy { min-width: 0; max-width: 66rem; }
.privacy-section { max-width: 52rem; padding: 4.25rem 0; border-top: 1px solid var(--color-line-strong); scroll-margin-top: var(--anchor-offset); }
.privacy-section:first-child { padding-top: 0; border-top: 0; }
.privacy-section h2 { max-width: 19ch; margin: 0 0 1.5rem; font-size: clamp(2.25rem, 4vw, 3.65rem); line-height: 1.04; }
.privacy-section h3 { margin: 2.5rem 0 .8rem; color: var(--color-ink); font-size: clamp(1.35rem, 2vw, 1.65rem); line-height: 1.25; }
.privacy-section > p { max-width: 48rem; margin: 0 0 1rem; font-size: 1.02rem; line-height: 1.78; }
.privacy-section ul { max-width: 48rem; margin: 1.4rem 0 1.8rem; padding-left: 1.3rem; }
.privacy-section li { margin: 0 0 .75rem; padding-left: .4rem; line-height: 1.65; }
.privacy-callout { margin: 2rem 0 !important; padding: 1.35rem 1.45rem; color: var(--color-ink); background: #f5f2e9; border-left: 3px solid var(--color-accent); }
.privacy-statement { color: var(--color-accent-strong); font-family: var(--font-display); font-size: clamp(1.35rem, 2.3vw, 1.75rem) !important; line-height: 1.45 !important; }
.privacy-section--emphasis { max-width: 56rem; margin: 1rem 0; padding: clamp(2rem, 5vw, 3.5rem); background: var(--color-soft); border: 0; border-radius: var(--radius-md); }
.privacy-contact-link { font-family: var(--font-display); font-size: clamp(1.25rem, 2.5vw, 1.7rem) !important; font-weight: 600; overflow-wrap: anywhere; }
.privacy-contact-link a, .privacy-address + p a { color: var(--color-accent-strong); }
.privacy-subject { color: var(--color-ink); font-family: var(--font-display); font-size: 1.3rem !important; }
.privacy-section--wide { max-width: 66rem; }
.privacy-table-wrap { margin: 2.5rem 0 2rem; }
.privacy-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.privacy-table th, .privacy-table td { vertical-align: top; text-align: left; }
.privacy-table thead th { padding: 1rem; color: var(--color-ink); background: #dfece8; border-bottom: 2px solid #93b5a9; font-size: .67rem; font-weight: 800; letter-spacing: .08em; line-height: 1.4; text-transform: uppercase; }
.privacy-table thead th:first-child { width: 19%; }
.privacy-table tbody th, .privacy-table tbody td { padding: 1.15rem 1rem; border-right: 1px solid var(--color-line-strong); border-bottom: 1px solid var(--color-line-strong); line-height: 1.55; }
.privacy-table tbody th { color: var(--color-ink); border-left: 1px solid var(--color-line-strong); font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
.privacy-table tbody td { color: var(--color-text-muted); font-size: .84rem; }
.privacy-section--notice { max-width: 56rem; margin: 1rem 0; padding: clamp(2rem, 5vw, 4rem); background: #f0f7f3; border: 1px solid #d4e5de; border-radius: var(--radius-lg); scroll-margin-top: var(--anchor-offset); }
.privacy-section--notice h2 { margin-top: .75rem; }
.privacy-section--notice .text-link { margin-top: .75rem; }
.privacy-address { margin: 1.5rem 0; color: var(--color-text); font-style: normal; font-size: 1.02rem; line-height: 1.75; }

@media (max-width: 1000px) {
  .privacy-layout { grid-template-columns: 1fr; gap: 4rem; }
  .privacy-toc { max-width: 50rem; }
  .privacy-toc ol { columns: 2; column-gap: 2rem; }
  .privacy-toc li { break-inside: avoid; }
}

@media (max-width: 760px) {
  .privacy-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .privacy-hero__inner > .eyebrow, .privacy-hero h1, .privacy-hero__intro, .privacy-dates { grid-column: 1; }
  .privacy-dates { grid-row: auto; max-width: 28rem; }
  .privacy-table, .privacy-table tbody, .privacy-table tr, .privacy-table th, .privacy-table td { display: block; width: 100%; }
  .privacy-table thead { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
  .privacy-table tbody tr { padding: 1.5rem 0; border-top: 1px solid var(--color-line-strong); }
  .privacy-table tbody th, .privacy-table tbody td { padding: 0 0 1rem; border: 0; }
  .privacy-table tbody td:last-child { padding-bottom: 0; }
  .privacy-table tbody th::before, .privacy-table tbody td::before { content: attr(data-label); display: block; margin-bottom: .4rem; color: var(--color-accent-strong); font-family: var(--font-sans); font-size: .63rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .privacy-table tbody th { font-size: 1.22rem; }
  .privacy-table tbody td { font-size: .92rem; }
}

@media (max-width: 520px) {
  .privacy-hero { padding: 4rem 0; }
  .privacy-hero h1 { font-size: clamp(3rem, 15vw, 4rem); }
  .privacy-layout { gap: 3.5rem; padding-top: 3.5rem; }
  .privacy-toc { padding: 1.35rem; }
  .privacy-toc ol { columns: 1; }
  .privacy-section { padding: 3.5rem 0; }
  .privacy-section h2 { font-size: clamp(2.15rem, 11vw, 2.75rem); }
  .privacy-section--emphasis, .privacy-section--notice { padding: 1.6rem; }
}

/* About page */
.about-page { background: white; }
.about-section { padding: clamp(5.25rem, 9vw, 8rem) 0; }
.about-hero { padding: clamp(4.25rem, 6.5vw, 5.75rem) 0; background: linear-gradient(120deg, #f5f8f5 0%, #fff 76%); }
.about-hero__inner { display: grid; grid-template-columns: minmax(0, .9fr) minmax(28rem, 1.1fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.about-hero__inner > .eyebrow, .about-hero h1 { grid-column: 1; }
.about-hero h1 { max-width: 13.5ch; margin: .9rem 0 0; color: var(--color-ink); font-family: var(--font-display); font-size: clamp(3.25rem, 4.6vw, 4.75rem); font-weight: 600; line-height: .99; letter-spacing: -.055em; text-wrap: balance; }
.about-hero__copy { grid-column: 2; grid-row: 1 / span 2; }
.about-hero__copy p { max-width: 46rem; margin: 0 0 1.1rem; font-size: clamp(1.02rem, 1.35vw, 1.14rem); line-height: 1.75; }
.about-hero__copy p:last-child { margin-bottom: 0; color: var(--color-text-muted); }
.about-editorial-grid { display: grid; grid-template-columns: minmax(19rem, .72fr) minmax(0, 1fr); gap: clamp(3.5rem, 9vw, 9rem); align-items: start; }
.about-editorial-grid h2 { max-width: 12ch; margin: 0; font-size: clamp(2.65rem, 4.8vw, 4.5rem); }
.about-prose { max-width: 45rem; }
.about-prose p { margin: 0 0 1.15rem; font-size: 1.06rem; line-height: 1.78; }
.about-prose p:last-child { margin-bottom: 0; }
.about-picture { background: var(--color-soft); }
.about-picture .about-prose p:first-child { color: var(--color-ink); font-family: var(--font-display); font-size: clamp(1.45rem, 2.4vw, 1.9rem); font-weight: 600; line-height: 1.38; }
.about-resources { background: white; }
.about-section-heading { max-width: 54rem; }
.about-section-heading h2 { max-width: 14ch; margin: 0 0 1.3rem; font-size: clamp(2.65rem, 4.8vw, 4.5rem); }
.about-section-heading > p { max-width: 43rem; margin: 0; color: var(--color-text-muted); font-size: clamp(1.02rem, 1.4vw, 1.14rem); line-height: 1.75; }
.about-resource-list { display: grid; grid-template-columns: 1fr 1fr; margin-top: 3.75rem; border-top: 1px solid var(--color-line-strong); }
.about-resource-list article { position: relative; display: grid; grid-template-columns: 2.4rem minmax(0, 1fr) 2.5rem; gap: 1rem; min-width: 0; padding: 2rem clamp(1rem, 3vw, 2.5rem) 2rem 0; border-bottom: 1px solid var(--color-line-strong); }
.about-resource-list article:nth-child(even) { padding-right: 0; padding-left: clamp(1rem, 3vw, 2.5rem); border-left: 1px solid var(--color-line-strong); }
.about-resource-list article > span:first-child { padding-top: .35rem; color: var(--color-accent-strong); font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.about-resource-list h3 { margin: 0 0 .65rem; font-size: clamp(1.45rem, 2.4vw, 1.9rem); line-height: 1.18; }
.about-resource-list h3 a { color: var(--color-ink); text-decoration: none; }
.about-resource-list h3 a::after { content: ''; position: absolute; inset: 0; }
.about-resource-list p { max-width: 34rem; margin: 0; color: var(--color-text-muted); line-height: 1.68; }
.about-resource-list__arrow { z-index: 1; display: grid; width: 2.5rem; height: 2.5rem; place-items: center; color: var(--color-accent-strong); border: 1px solid var(--color-line-strong); border-radius: 50%; }
.about-resource-list article:hover { background: #f8faf8; }
.about-resource-list article:hover .about-resource-list__arrow { color: white; background: var(--color-accent-strong); border-color: var(--color-accent-strong); }
.about-connection { background: #f6f4ef; }
.about-connection__grid { display: grid; grid-template-columns: minmax(20rem, .85fr) minmax(0, 1fr); gap: clamp(4rem, 9vw, 9rem); align-items: start; }
.about-connection h2 { max-width: 12ch; margin: 0 0 1.5rem; font-size: clamp(2.65rem, 4.8vw, 4.5rem); }
.about-connection__grid > div > p { max-width: 40rem; margin: 0 0 1rem; line-height: 1.75; }
.about-connection__invitation { padding: clamp(2rem, 4vw, 3.25rem); background: white; border-left: 3px solid var(--color-accent); }
.about-connection__invitation .about-emphasis { color: var(--color-ink); font-family: var(--font-display); font-size: clamp(1.45rem, 2.5vw, 2rem); line-height: 1.4; }
.about-connection__invitation .button { margin-top: 1rem; }
.about-confidence { background: white; }
.about-confidence .about-prose p:last-child { color: var(--color-text-muted); }
.about-goal { padding: clamp(5.25rem, 9vw, 7.5rem) 0; color: white; background: var(--color-accent-strong); }
.about-goal__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, .9fr); gap: clamp(3rem, 9vw, 8rem); align-items: start; }
.about-goal h2 { max-width: 9ch; margin: 0; color: white; font-size: clamp(2.65rem, 4.8vw, 4.5rem); }
.about-goal__copy > p { max-width: 43rem; margin: 0 0 1rem; color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.72; }
.about-goal__copy > p strong { color: white; font-family: var(--font-display); font-size: clamp(1.25rem, 2.2vw, 1.55rem); line-height: 1.45; }
.about-goal__copy .button { margin-top: 1rem; }

@media (max-width: 900px) {
  .about-hero__inner, .about-editorial-grid, .about-connection__grid, .about-goal__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-hero__inner > .eyebrow, .about-hero h1, .about-hero__copy { grid-column: 1; grid-row: auto; }
  .about-hero h1 { max-width: 13ch; }
  .about-editorial-grid h2, .about-connection h2 { max-width: 15ch; }
}

@media (max-width: 700px) {
  .about-resource-list { grid-template-columns: 1fr; margin-top: 3rem; }
  .about-resource-list article, .about-resource-list article:nth-child(even) { padding: 1.7rem 0; border-left: 0; }
}

@media (max-width: 520px) {
  .about-hero { padding: 4rem 0; }
  .about-hero h1 { font-size: clamp(2.75rem, 13vw, 3.5rem); }
  .about-section { padding: clamp(4.75rem, 17vw, 6.25rem) 0; }
  .about-editorial-grid h2, .about-section-heading h2, .about-connection h2, .about-goal h2 { font-size: clamp(2.3rem, 11vw, 2.9rem); }
  .about-resource-list article { grid-template-columns: 1.75rem minmax(0, 1fr) 2.35rem; gap: .65rem; }
  .about-resource-list__arrow { width: 2.35rem; height: 2.35rem; }
  .about-connection__invitation { padding: 1.5rem; }
}

/* Guided scheduler refinement */
.scheduler-hero { padding: clamp(2.75rem, 4vw, 3.5rem) 0 clamp(2.25rem, 3vw, 2.75rem); }
.scheduler-hero h1 { max-width: 18ch; margin-top: .75rem; margin-bottom: 1rem; }
.scheduler-workflow { padding: clamp(2.75rem, 5vw, 4.5rem) 0 clamp(4.5rem, 7vw, 6rem); }
.scheduler { grid-template-columns: minmax(0, 1fr) minmax(19rem, 22rem); gap: clamp(2.5rem, 6vw, 5rem); }
.scheduler__primary { min-height: 0; }
.scheduler-progress { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 42rem; margin: 0 0 1.5rem; padding: 0; list-style: none; border-bottom: 1px solid var(--color-line-strong); }
.scheduler-progress li { position: relative; display: flex; min-width: 0; align-items: center; gap: .55rem; padding: 0 .5rem .9rem; color: var(--color-text-muted); font-size: .78rem; font-weight: 700; white-space: nowrap; }
.scheduler-progress li:first-child { padding-left: 0; }
.scheduler-progress li::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: transparent; }
.scheduler-progress [data-progress-marker] { display: grid; width: 1.55rem; height: 1.55rem; flex: 0 0 auto; place-items: center; color: var(--color-text-muted); border: 1px solid var(--color-line-strong); border-radius: 50%; font-size: .68rem; line-height: 1; }
.scheduler-progress li[data-state='current'] { color: var(--color-ink); }
.scheduler-progress li[data-state='current']::after { background: var(--color-accent-strong); }
.scheduler-progress li[data-state='current'] [data-progress-marker] { color: white; background: var(--color-accent-strong); border-color: var(--color-accent-strong); }
.scheduler-progress li[data-state='complete'] { color: var(--color-accent-strong); }
.scheduler-progress li[data-state='complete'] [data-progress-marker] { color: var(--color-accent-strong); background: var(--color-soft); border-color: #a9c8bd; }
.scheduler-panels { display: grid; max-width: 42rem; }
.scheduler-panels .scheduler-panel { grid-area: 1 / 1; min-width: 0; padding: 0; border: 0; opacity: 1; transform: translateX(0); transition: opacity 250ms ease, transform 250ms ease; }
.scheduler-panels .scheduler-panel.is-entering { opacity: 0; transform: translateX(1rem); }
.scheduler-panels .scheduler-panel.is-entering-back { opacity: 0; transform: translateX(-1rem); }
.scheduler-panels .scheduler-panel.is-leaving { opacity: 0; transform: translateX(-1rem); }
.scheduler-panels .scheduler-panel.is-leaving-back { opacity: 0; transform: translateX(1rem); }
.scheduler-step__heading { margin-bottom: 1.4rem; }
.scheduler-step__heading h2 { margin: 0; font-size: clamp(2.25rem, 3.5vw, 3.35rem); }
.scheduler-step__heading h2:focus { outline: none; }
.calendar { max-width: 42rem; padding: clamp(1.1rem, 2vw, 1.6rem); }
.calendar__header { grid-template-columns: 2.75rem 1fr 2.75rem; margin-bottom: 1rem; }
.calendar__nav { width: 2.75rem; height: 2.75rem; }
.calendar__weekdays { margin-bottom: .3rem; }
.calendar__weekdays, .calendar__grid { gap: .2rem; }
.calendar__day { aspect-ratio: auto; min-height: 2.85rem; }
.timezone-control { max-width: 42rem; margin-bottom: 1.1rem; }
.time-slots { max-width: 42rem; gap: .6rem; }
.time-slot { min-height: 3rem; }
.required-note { margin-top: -.75rem; margin-bottom: 1.15rem; }
.form-grid { max-width: 42rem; gap: .95rem 1rem; }
.form-field input, .form-field select, .form-field textarea, .timezone-control select { min-height: 3rem; padding: .65rem .85rem; }
.form-field textarea { min-height: 6rem; }
.scheduler-error { min-height: .85rem; margin-top: .3rem; }
.appointment-summary { top: 1.25rem; padding: 1.75rem; }
.appointment-summary h2 { margin-bottom: 1.1rem; }
.appointment-summary__type { margin-bottom: 1.1rem; }
.appointment-summary dl > div { padding: .65rem 0; }
.appointment-summary dd { min-width: 0; }
.appointment-summary dd > span { display: block; }
.summary-change { min-height: 2rem; margin: .25rem 0 -.25rem; padding: 0; color: #b9ddcc; background: transparent; border: 0; cursor: pointer; font: inherit; font-size: .7rem; font-weight: 700; text-decoration: underline; text-underline-offset: .2rem; }
.summary-change:hover { color: white; }
.appointment-summary__confirm { margin-top: 1.2rem; }
.appointment-summary__hint { margin-top: .65rem; }
.appointment-summary__acknowledgement { margin: 1rem 0 0; padding-top: 1rem; color: rgba(255,255,255,.62); border-top: 1px solid rgba(255,255,255,.13); font-size: .68rem; line-height: 1.5; }
.appointment-summary__acknowledgement a { color: white; text-underline-offset: .2rem; }
.scheduler-privacy { max-width: 67rem; margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--color-line-strong); }
.scheduler-privacy h2 { margin: 0 0 .85rem; font-size: clamp(1.65rem, 2.7vw, 2.2rem); letter-spacing: -.035em; }
.scheduler-privacy p { max-width: 62rem; margin: 0; color: var(--color-text-muted); font-size: .82rem; line-height: 1.68; }
.scheduler-privacy p strong { color: var(--color-ink); }
.scheduler-privacy .text-link { margin-top: .55rem; }

@media (max-width: 980px) {
  .scheduler { grid-template-columns: minmax(0, 1fr) minmax(17rem, 19rem); gap: 2.25rem; }
}

@media (max-width: 880px) {
  .scheduler { grid-template-columns: 1fr; }
  .appointment-summary { position: static; max-width: 42rem; }
}

@media (max-width: 520px) {
  .scheduler-hero { padding: 3.25rem 0 2.75rem; }
  .scheduler-hero h1 { max-width: 13ch; }
  .scheduler-workflow { padding: 2.5rem 0 4.5rem; }
  .scheduler-progress { margin-bottom: 1.25rem; }
  .scheduler-progress li { gap: .35rem; padding-inline: .2rem; font-size: .7rem; }
  .scheduler-progress li:first-child { padding-left: 0; }
  .scheduler-progress [data-progress-marker] { width: 1.35rem; height: 1.35rem; font-size: .62rem; }
  .scheduler-step__heading { grid-template-columns: 1.6rem minmax(0, 1fr); gap: .55rem; margin-bottom: 1.25rem; }
  .scheduler-step__heading h2 { font-size: clamp(2.05rem, 10vw, 2.55rem); }
  .calendar { padding: 1rem .6rem 1.1rem; }
  .calendar__header { margin-bottom: .8rem; }
  .calendar__day { min-height: 2.7rem; }
  .time-slots { gap: .5rem; }
  .form-grid { gap: .8rem; }
  .form-field { grid-column: 1; }
  .appointment-summary { padding: 1.5rem; }
  .scheduler-privacy { margin-top: 2.5rem; padding-top: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .scheduler-panels .scheduler-panel { transition: opacity .01ms linear; }
  .scheduler-panels .scheduler-panel.is-entering,
  .scheduler-panels .scheduler-panel.is-entering-back,
  .scheduler-panels .scheduler-panel.is-leaving,
  .scheduler-panels .scheduler-panel.is-leaving-back { transform: none; }
}
