/* ==========================================================================
   351 Resource Center — base layer (tokens, layout, shared components)
   Reuses the theme's existing design tokens defined in style.css
   (--ink-900, --slate-*, --royal-*, --green-*, --red-*, --text-*, --space-*,
   --radius-*, --shadow-*, --action, --border-subtle, --surface-card, etc.)
   No parallel token system is introduced here — this page is the same
   product, same design system, per CLAUDE.md.
   Section-specific rules for each chapter live further down, one block per
   template-part, appended in template order (see CLAUDE.md convention of
   multiple scattered @media blocks rather than one consolidated block).
   ========================================================================== */

:root {
	/* Exact hex from the design mock — the theme has no amber token at all,
	   and its --red-* is a slightly different/older palette than the mock's,
	   so these are scoped overrides rather than edits to the global tokens
	   in style.css (which are shared sitewide). */
	--rc-amber-50: #FDF4E5;
	--rc-amber-500: #DB8B0B;
	--rc-amber-600: #B87309;
	--rc-amber-700: #8F5A08;
	--rc-red-50: #FCEEEE;
	--rc-red-500: #D8393C;
	--rc-red-600: #B92D30;
	--rc-red-700: #962528;
	--rc-shadow-xs: 0 1px 2px rgba(19, 28, 43, 0.06);

	/* AA-contrast replacement for --text-muted (--slate-500, 4.35:1 on white —
	   fails WCAG 4.5:1) on this page's small 12-13px labels/captions/footnotes.
	   --slate-600 keeps the same "muted" role at 6.9:1 on white / 6.5:1 on
	   #F6F8FB. Icon-only uses of --text-muted are left untouched (non-text,
	   no contrast requirement). */
	--rc-text-muted-aa: var(--slate-600);
}

#rc-body {
	display: flex;
	align-items: flex-start;
	gap: 0;
	max-width: 1480px;
	margin: 0 auto;
}

.rc-main {
	flex: 1 1 auto;
	min-width: 0;
}

.rc-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--space-6);
}

.rc-main > section {
	/* Site header is position:fixed at 88px (see header.css) — every page's
	   own top section is responsible for clearing it, same convention as
	   .pricing-hero. scroll-margin-top needs the same offset so in-page
	   anchor jumps (chapter rail, #fitcheck CTA) don't land under it. */
	scroll-margin-top: 104px;
	padding: 88px 0;
	border-top: 1px solid var(--border-subtle);
}

.rc-main > section:nth-of-type(odd) {
	background: var(--surface-page);
}

/* Recurring "eyebrow + H2 + body" section intro, used by every chapter */
.section-intro {
	max-width: 760px;
	margin-bottom: var(--space-8);
}

.section-intro .eyebrow {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--blue-600);
	margin-bottom: var(--space-2);
}

.section-intro h2 {
	font-size: var(--text-2xl);
	font-weight: 700;
	line-height: 1.3;
	color: var(--text-heading);
	margin-top: 8px;
	margin-bottom: var(--space-3);
}

.section-intro__body {
	color: var(--text-heading);
	font-size: 18px;
	line-height: 1.6;
	max-width: 53ch;
}

/* Generic card */
.rc-card {
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	box-shadow: var(--rc-shadow-xs);
	padding: var(--space-6);
}

/* Status-badged card (used by Accounts categories) */
.rc-card--status {
	border-top: 3px solid var(--border-default);
}
.rc-card--status-green { border-top-color: var(--green-500); }
.rc-card--status-amber { border-top-color: var(--rc-amber-500); }
.rc-card--status-gray { border-top-color: var(--slate-500); }

.rc-badge {
	display: inline-block;
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-weight: 600;
	padding: 2px 10px;
	border-radius: var(--radius-full);
	margin-bottom: var(--space-3);
}
.rc-badge--green { background: var(--green-50); color: var(--green-700); }
.rc-badge--amber { background: var(--rc-amber-50); color: var(--rc-amber-700); }
.rc-badge--gray { background: var(--slate-100, var(--slate-50)); color: var(--rc-text-muted-aa); }
.rc-badge--eligible { background: var(--green-50); color: var(--green-700); }
.rc-badge--conditional { background: var(--rc-amber-50); color: var(--rc-amber-700); }
.rc-badge--ineligible { background: var(--rc-red-50); color: var(--rc-red-700); }

/* Filter pill (holding-type status filters) */
.rc-pill {
	display: inline-flex;
	align-items: center;
	height: 32px;
	padding: 0 14px;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-default);
	background: var(--surface-card);
	color: var(--rc-text-muted-aa);
	font-size: var(--text-sm);
	cursor: pointer;
}
.rc-pill.is-active {
	background: var(--action);
	border-color: var(--action);
	color: #fff !important;
}

/* Search input, shared by FAQ search + holding type search */
.rc-search-field {
	position: relative;
	display: block;
	max-width: 420px;
}
.rc-search-field input[type="search"] {
	width: 100%;
	height: 44px;
	padding: 0 var(--space-4) 0 40px;
	border: 1px solid var(--border-default);
	border-radius: 32px;
	font-size: var(--text-base);
}
.rc-search-field svg {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	color: var(--rc-text-muted-aa);
	pointer-events: none;
}

/* Progress bar (fit check / advisor readiness) */
.rc-progress {
	height: 8px;
	border-radius: var(--radius-full);
	background: var(--slate-200);
	overflow: hidden;
}
.rc-progress__bar {
	height: 100%;
	background: var(--action);
	border-radius: var(--radius-full);
	transition: width 0.2s var(--ease-out, ease);
}

/* Media placeholder slot — reused by exchangifi_media_slot()/exchangifi_embed_slot() */
.media-slot {
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.media-slot img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-lg);
}
.media-slot__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	min-height: 220px;
	border: 1px dashed var(--border-default);
	border-radius: var(--radius-lg);
	background: var(--surface-page);
	color: var(--rc-text-muted-aa);
	font-size: var(--text-sm);
	text-align: center;
	padding: var(--space-6);
}
.media-slot__placeholder svg {
	width: 36px;
	height: 36px;
	color: var(--slate-500);
}

/* Chapter rail — exact values from the mock's railBox/navStyle() (found in
   a separate compressed design-system bundle, not the visible <style>
   blocks). top/height use 104px instead of the mock's 64px because our real
   site header is position:fixed at 88px and the mock's isn't (same
   deliberate deviation as the hero's padding-top). */
.chapter-rail {
	position: sticky;
	top: 104px;
	z-index: 55;
	width: 284px;
	flex: 0 0 284px;
	align-self: flex-start;
	height: calc(100vh - 104px);
	overflow-y: auto;
	background: var(--slate-0);
	border-right: 1px solid var(--border-subtle);
	padding: 22px 22px 28px;
}
.chapter-rail__heading {
	display: block;
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	/* a11y: --slate-400 measured 2.46:1 on white (needs 4.5:1) — swapped for the AA-safe muted token */
	color: var(--rc-text-muted-aa);
	padding: 0 12px 12px;
}
.chapter-rail__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.chapter-rail__link {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 32px;
	padding: 5px 12px;
	border-radius: 8px;
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--rc-text-muted-aa);
	text-decoration: none;
	transition: background 120ms var(--ease-out), color 120ms var(--ease-out);
}
.chapter-rail__link.is-active {
	background: var(--slate-100, var(--slate-50));
	color: var(--text-heading);
}
@media (max-width: 1200px) {
	.chapter-rail { display: none; }
}

/* Hero */
.rc-hero {
	background: var(--ink-900);
	color: #fff;
	border-top: none;
}
/* Hero is a full-width section rendered before #rc-body (outside the
   rail+main two-column layout — the rail/main split only starts at the
   chapter content). Top padding clears the fixed header (88px) plus
   breathing room — the mock itself uses 72px because its own header isn't
   fixed; our real site header is, so this is a deliberate, necessary
   deviation, same convention as .pricing-hero in pricing.css. */
.rc-hero {
	padding: 130px 0 80px;
}
.rc-hero .eyebrow {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--blue-300);
}
.rc-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: var(--space-12);
	align-items: center;
}
.rc-hero__title {
	font-size: 52px;
	line-height: 1.06;
	letter-spacing: var(--tracking-tight);
	margin: var(--space-3) 0 var(--space-4);
}
@media (max-width: 1140px) {
	.rc-hero__title { font-size: clamp(34px, 4.4vw, 52px); }
}
.rc-hero__lead {
	font-size: 18px;
	color: var(--text-inverse-muted);
	line-height: 1.6;
	margin-bottom: var(--space-6);
}
.rc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3);
	margin-bottom: var(--space-4);
}
.rc-hero__disclaimer {
	font-size: 13px;
	/* .45 measured 4.45:1 on --ink-900 (needs 4.5:1) — bumped to .5 (5.22:1) */
	color: rgba(255, 255, 255, 0.5);
}
.rc-hero__video {
	aspect-ratio: 16 / 9;
}
/* The pasted YouTube "Share → Embed" code hardcodes width="560" height="350"
   on the <iframe>, and WPConsent's own placeholder wrapper (position:relative;
   display:inline-block, sized to that iframe) inherits those fixed pixels —
   wider than this grid column, so overflow:hidden on .media-slot clipped the
   thumbnail/button. Force both to fill the 16:9 box instead. */
.rc-hero__video .wpconsent-iframe-placeholder,
.rc-hero__video iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}
.rc-hero__media .media-slot__placeholder {
	min-height: 280px;
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.16);
	color: var(--slate-300, var(--slate-200));
}

/* Stat band — light, NOT dark: a bright strip between the dark hero and
   "Basics", per the mock (#fff background, border-bottom not border-top).
   Values below are the exact `Stat` design-system component from the mock's
   bundle (components/display/Stat.jsx, class .xfi-stat*), not approximated
   via the page's generic type scale. */
.rc-stat-band {
	background: var(--slate-0);
	border-top: none;
	border-bottom: 1px solid var(--border-subtle);
	padding: 0;
}
.rc-stat-band .rc-container {
	padding: 28px 32px;
}
.rc-stat-band__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 28px;
}
.rc-stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.rc-stat__label {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--rc-text-muted-aa);
}
.rc-stat__value {
	font-family: var(--font-mono, 'IBM Plex Mono', monospace);
	font-size: 26px;
	font-weight: 600;
	line-height: 1.1;
	color: var(--text-heading);
}
.rc-stat__caption {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--rc-text-muted-aa);
}

@media (max-width: 1024px) {
	#rc-body { gap: 0; }
}

@media (max-width: 900px) {
	#rc-body { display: block; }
}

@media (max-width: 768px) {
	.rc-hero__grid { grid-template-columns: minmax(0, 1fr); }
	.rc-hero__title { font-size: var(--text-2xl); }
	.rc-stat-band__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.section-intro h2 { font-size: var(--text-xl); }
	.rc-main > section { padding: 48px 0; }
}

/* ==========================================================================
   Section-specific rules appended below, one block per chapter (see
   CLAUDE.md convention — do not consolidate into the blocks above).
   ========================================================================== */

/* Ch.05 — Assets (Holding Type Search) — exact values from the mock's
   inline styles (tools bar + table live in one bordered/rounded panel;
   column order is name/status/notes, not status-first; status uses a
   bordered 6px-radius chip, not the shared pill .rc-badge). */
.rc-main > section.rc-assets {
	background: var(--slate-0);
}
.rc-assets__panel {
	background: var(--slate-50);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.rc-assets__tools {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	padding: 18px 20px;
	border-bottom: 1px solid var(--border-subtle);
	background: var(--surface-card);
}

.rc-assets .rc-search-field {
	flex: 1 1 260px;
	min-width: 220px;
}
.rc-assets .rc-search-field input[type="search"] {
	height: 40px;
	border-radius: var(--radius-full);
}
.rc-assets .rc-search-field svg {
	left: 14px;
}

.rc-holding-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.rc-holding-filters .rc-pill {
	font-weight: 600;
	color: var(--text-body);
}
.rc-holding-count {
	margin-left: auto;
	font-size: 13px;
	font-weight: 400;
	color: var(--rc-text-muted-aa);
	white-space: nowrap;
}

.rc-holding-row {
	display: grid;
	grid-template-columns: minmax(150px, 1.1fr) 118px minmax(0, 1.6fr);
	gap: var(--space-4);
	align-items: center;
	padding: 14px 20px;
	background: var(--slate-0);
	border-bottom: 1px solid var(--border-subtle);
}
/* The author-origin `display: grid` above beats the browser's native
   [hidden]{display:none} UA rule, so JS setting row.hidden = true had no
   visual effect — the row search/filter looked broken even though the
   attribute was toggling correctly. */
.rc-holding-row[hidden] {
	display: none;
}
.rc-holding-row--head {
	padding: 12px 20px;
	background: var(--slate-100);
}
.rc-holding-col-head {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--rc-text-muted-aa);
}

.rc-status-pill {
	display: inline-flex;
	align-items: center;
	height: 24px;
	padding: 0 10px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	width: fit-content;
}
/* a11y: --green-600/--rc-amber-600 measured 4.19:1 / 3.5:1 on their pill backgrounds
   (needs 4.5:1 at 12px) — bumped to --green-700/--rc-amber-700 (5.9:1 / 5.3:1) */
.rc-status-pill--eligible { background: var(--green-50); color: var(--green-700); border: 1px solid var(--green-500); }
.rc-status-pill--conditional { background: var(--rc-amber-50); color: var(--rc-amber-700); border: 1px solid var(--rc-amber-500); }
.rc-status-pill--ineligible { background: var(--rc-red-50); color: var(--rc-red-600); border: 1px solid var(--rc-red-500); }

.holding-row__name {
	font-size: 15px;
	font-weight: 600;
	color: var(--text-heading);
}

.holding-row__note {
	color: var(--text-body);
	font-size: 14px;
	line-height: 1.5;
}

.rc-holding-table #assets-empty-state.rc-empty-state {
	text-align: center;
	padding: 40px 20px;
	background: var(--slate-0);
	border: none;
	border-radius: 0;
	margin-top: 0;
}
.rc-holding-table #assets-empty-state .rc-empty-state__title {
	font-size: 15px;
}
.rc-holding-table #assets-empty-state .rc-empty-state__body {
	font-size: 13px;
	margin-top: 6px;
}

.rc-footnote {
	font-size: 13px;
	color: var(--rc-text-muted-aa);
	margin-top: 12px;
	max-width: 80ch;
	line-height: 1.5;
}

/* Single bordered/tinted panel (slate-50, not individual cards) shared by
   the heading and all 6 items — exact values from the mock. */
.rc-assets__operational {
	background: var(--slate-50);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 26px;
	margin-top: 24px;
}

.rc-assets__operational-heading {
	font-size: var(--text-lg);
	font-weight: 600;
	line-height: 1.3;
	color: var(--text-heading);
	margin: 0;
}

.rc-assets__operational-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 22px;
	margin-top: 20px;
}

.rc-assets__operational-title {
	font-size: 15px;
	font-weight: 600;
	color: var(--text-heading);
}

.rc-assets__operational-caption {
	color: var(--rc-text-muted-aa);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 4px;
}

@media (max-width: 768px) {
	.rc-holding-row {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--space-2);
	}

	.rc-assets .rc-search-field {
		max-width: none;
		flex: 1 1 100%;
	}

	.rc-assets__operational-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Ch.06 — Accounts — exact values from the mock's inline styles: a tinted
   icon+label header block per card (not a pill badge) and a full-color
   border around the whole card (not a 3px top accent). Scoped to
   .rc-accounts__card, doesn't touch the shared .rc-card--status/.rc-badge
   (also used by Tests/Compare). */
.rc-main > section.rc-accounts {
	background: var(--slate-50);
}
.rc-accounts__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	margin-top: 32px;
	margin-bottom: var(--space-6);
}

.rc-accounts__card {
	background: var(--surface-card);
	border-radius: var(--radius-lg);
	box-shadow: var(--rc-shadow-xs);
	overflow: hidden;
}
.rc-accounts__card--green { border: 1px solid var(--green-500); }
.rc-accounts__card--amber { border: 1px solid var(--rc-amber-500); }
.rc-accounts__card--gray { border: 1px solid var(--border-default); }

.rc-accounts__card-header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 20px;
}
.rc-accounts__card--green .rc-accounts__card-header { background: var(--green-50); }
.rc-accounts__card--amber .rc-accounts__card-header { background: var(--rc-amber-50); }
.rc-accounts__card--gray .rc-accounts__card-header { background: var(--slate-100); }

.rc-accounts__card-icon { display: flex; }
.rc-accounts__card--green .rc-accounts__card-icon { color: var(--green-600); }
.rc-accounts__card--amber .rc-accounts__card-icon { color: var(--rc-amber-600); }
.rc-accounts__card--gray .rc-accounts__card-icon { color: var(--text-muted); }

.rc-accounts__card-label {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.rc-accounts__card--green .rc-accounts__card-label { color: var(--green-700); }
.rc-accounts__card--amber .rc-accounts__card-label { color: var(--rc-amber-700); }
.rc-accounts__card--gray .rc-accounts__card-label { color: var(--text-body); }

.rc-accounts__item-list {
	list-style: none;
	margin: 0;
	padding: 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.rc-accounts__item-list li {
	font-size: 15px;
	color: var(--text-heading);
	line-height: 1.5;
}

@media (max-width: 768px) {
	.rc-accounts__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Ch.03 — Process — exact values from the mock's inline styles */
.rc-main > section.rc-process {
	background: var(--slate-0);
}
.rc-process__steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 0;
	margin-top: var(--space-8);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--surface-card);
}
.rc-process__step {
	padding: 26px;
	border: none;
	border-right: 1px solid var(--border-subtle);
	box-shadow: none;
	border-radius: 0;
	background: transparent;
}
.rc-process__step:last-child { border-right: none; }
.rc-process__step-number {
	font-family: var(--font-mono, 'IBM Plex Mono', monospace);
	font-weight: 600;
	font-size: 26px;
	line-height: 1.1;
	/* --blue-300 on white measured 2.2:1 (needs 3:1 at this size) — --blue-500 clears it at 3.66:1 */
	color: var(--blue-500);
	margin-bottom: 0;
}
.rc-process__step-title {
	font-size: var(--text-lg);
	font-weight: 600;
	line-height: 1.3;
	color: var(--text-heading);
	margin: 10px 0 0;
}
.rc-process__step-body {
	font-size: 15px;
	color: var(--text-body);
	line-height: 1.5;
	margin-top: 8px;
}

.rc-process__flow-figure {
	margin: var(--space-6) 0 0;
}
.rc-process__flow {
	height: 360px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-subtle);
	background: var(--slate-50);
}
.rc-process__flow .media-slot__placeholder {
	min-height: 100%;
	height: 100%;
}
.rc-process__flow-caption {
	margin-top: 10px;
	font-size: 13px;
	color: var(--rc-text-muted-aa);
	text-align: left;
}

.rc-process__responsibilities {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	margin-top: var(--space-6);
}
.rc-process__responsibility {
	background: var(--slate-50);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: var(--space-6);
}
.rc-process__responsibility-heading {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--rc-text-muted-aa);
	margin-bottom: 0;
}
.rc-process__responsibility-list {
	list-style: none;
	margin: 14px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.rc-process__responsibility-list li {
	display: flex;
	gap: 10px;
	font-size: 15px;
	color: var(--text-body);
	line-height: 1.5;
}
.rc-process__responsibility-list li::before {
	content: '→';
	color: var(--blue-500);
	font-weight: 700;
}

@media (max-width: 1024px) {
	.rc-process__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.rc-process__step:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
	.rc-process__steps { grid-template-columns: minmax(0, 1fr); }
	.rc-process__step { border-right: none; border-bottom: 1px solid var(--border-subtle); }
	.rc-process__step:last-child { border-bottom: none; }
	.rc-process__responsibilities { grid-template-columns: minmax(0, 1fr); }
}

/* Ch.04 — Tests — exact values from the mock's inline styles. The
   investor-level block, stat grid, explainers and warning banner are ONE
   continuous card (.rc-tests__investor), not separate cards. */
.rc-main > section.rc-tests {
	background: var(--slate-50);
}
.rc-tests__investor {
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	box-shadow: var(--rc-shadow-xs);
	margin-top: var(--space-8);
	padding: 0;
	overflow: hidden;
}
.rc-tests__investor-header {
	background: var(--blue-50);
	border-bottom: 1px solid var(--blue-100);
	padding: 16px var(--space-6);
	display: flex;
	align-items: center;
	gap: var(--space-3);
	flex-wrap: wrap;
}
.rc-tests__investor-label {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--blue-700);
}
.rc-tests__investor-caption {
	font-size: 13px;
	color: var(--blue-700);
}

.rc-tests__stats {
	padding: var(--space-6);
	padding-bottom: 0;
	margin-bottom: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--space-6);
}
.rc-tests__stat-value {
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 40px;
	line-height: 1;
	color: var(--ink-900);
	margin-bottom: 0;
}
.rc-tests__stat-title {
	font-size: var(--text-lg);
	font-weight: 600;
	line-height: 1.3;
	color: var(--text-heading);
	margin: 10px 0 0;
}
.rc-tests__stat-progress {
	margin: 14px 0 0;
}
.rc-tests__stat-body {
	font-size: 15px;
	color: var(--text-body);
	line-height: 1.5;
	margin-top: 8px;
}
/* Bar colors alternate per stat, per the mock (not a single fixed color) */
.rc-tests__stat:nth-child(1) .rc-progress__bar { background: var(--blue-500); }
.rc-tests__stat:nth-child(2) .rc-progress__bar { background: var(--ink-700); }
.rc-tests__stat:nth-child(3) .rc-progress__bar { background: var(--blue-300); }

.rc-tests__explainers {
	grid-column: 1 / -1;
	border-top: 1px solid var(--border-subtle);
	background: var(--slate-25);
	padding: var(--space-6);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--space-6);
	margin: 0 calc(-1 * var(--space-6));
	width: calc(100% + var(--space-6) * 2);
}
.rc-tests__explainer h3 {
	font-size: var(--text-lg);
	font-weight: 600;
	line-height: 1.3;
	color: var(--text-heading);
	margin: 0;
}
.rc-tests__explainer p {
	font-size: 15px;
	color: var(--text-body);
	line-height: 1.5;
	margin-top: 8px;
}

.rc-tests__worked-example {
	margin-top: 14px;
	padding: 14px;
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	font-family: var(--font-mono, 'IBM Plex Mono', monospace);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--text-body);
}
.rc-tests__worked-example-label {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--rc-text-muted-aa);
	margin-bottom: 8px;
}
.rc-tests__worked-example-line--result {
	color: var(--blue-700);
	font-weight: 600;
	margin-top: 4px;
}
.rc-tests__worked-example-line--note {
	color: var(--rc-text-muted-aa);
	font-size: 12px;
	margin-top: 6px;
}

.rc-warning-banner {
	grid-column: 1 / -1;
	border-top: 1px solid var(--border-subtle);
	background: var(--rc-amber-50);
	padding: 16px var(--space-6);
	display: flex;
	gap: 10px;
	align-items: flex-start;
	border-radius: 0;
	margin: 0 calc(-1 * var(--space-6));
	width: calc(100% + var(--space-6) * 2);
}
.rc-warning-banner svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--rc-amber-600);
}
.rc-warning-banner p {
	font-size: 14px;
	color: var(--rc-amber-700);
	line-height: 1.5;
	margin: 0;
}

.rc-tests__level-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	margin-top: 20px;
}
.rc-tests__level-card {
	padding: 24px;
}
.rc-tests__level-card .rc-badge--amber {
	background: none;
	color: var(--rc-text-muted-aa);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0;
	padding: 0;
}
.rc-tests__level-card h3 {
	font-size: var(--text-lg);
	font-weight: 600;
	line-height: 1.3;
	color: var(--text-heading);
	margin: 10px 0 0;
}
.rc-tests__level-card p {
	font-size: 15px;
	color: var(--text-body);
	line-height: 1.5;
	margin-top: 8px;
}

@media (max-width: 1024px) {
	.rc-tests__stats { grid-template-columns: minmax(0, 1fr); gap: var(--space-4); }
	.rc-tests__explainers { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 768px) {
	.rc-tests__level-cards { grid-template-columns: minmax(0, 1fr); }
	.rc-tests__stat-value { font-size: var(--text-xl); }
}

/* Ch.01 — Basics. Exact values from the mock (decoded from the bundled
   template + its design-system bundle) — a 2-col grid (text 1.1fr / cards
   .9fr side by side), not a stacked layout. Background is white, overriding
   the page's odd/even alternating-section rule (Basics is the 1st section
   in .rc-main, which would otherwise get --surface-page). .rc-mint-* are page-scoped
   (theme has no mint token, same pattern as --rc-amber-* / --rc-red-*). */
:root {
	--rc-mint-50: #E7F6EE;
	--rc-mint-300: #9FD9BE;
}
.rc-main > section.rc-basics {
	background: var(--slate-0);
}
.rc-basics__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 48px;
	margin-top: 28px;
	align-items: start;
}
.rc-basics__key-points {
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 62ch;
}
.rc-basics__key-point {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-body);
}
.rc-basics__key-point-icon {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	margin-top: 1px;
	border-radius: var(--radius-full);
	border: 1.5px solid var(--green-500);
	color: var(--green-600);
	display: flex;
	align-items: center;
	justify-content: center;
}
.rc-basics__key-point strong {
	color: var(--text-heading);
}

.rc-basics__cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.rc-basics__card {
	padding: 22px;
}
.rc-basics__card-eyebrow {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.rc-basics__card-body {
	font-family: var(--font-sans);
	font-size: 15px;
	line-height: 1.5;
	color: var(--text-body);
	margin: 10px 0 0;
}
.rc-basics__card--short {
	background: var(--blue-50);
	border-color: var(--blue-100);
}
.rc-basics__card--short .rc-basics__card-eyebrow { color: var(--blue-700); }
.rc-basics__card--short .rc-basics__card-body {
	font-weight: 600;
	font-size: 17px;
	line-height: 1.5;
	color: var(--ink-900);
}
.rc-basics__card--client {
	background: var(--rc-mint-50);
	border-color: var(--rc-mint-300);
}
.rc-basics__card--client .rc-basics__card-eyebrow { color: var(--green-700); font-weight: 700; }
.rc-basics__card--why .rc-basics__card-eyebrow { color: var(--rc-text-muted-aa); }
/* Card 3's link is now part of the body copy itself (an <a> inline inside
   the paragraph, written directly in the card3_body ACF field) rather than
   a separate block-level element, so it reads as a continuation of the
   sentence, not a standalone CTA. */
.rc-basics__card-body a {
	color: var(--action);
	font-weight: 400;
	/* a11y: underline restored — inline link inside body copy can't rely on color alone */
	text-decoration: underline;
	text-underline-offset: 2px;
}
.rc-basics__card-body a:hover {
	color: var(--action-hover);
}

@media (max-width: 1024px) {
	.rc-basics__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 768px) {
	.rc-basics__key-point { font-size: var(--text-base); }
}

/* Ch.02 — Legal framework. Exact values from the mock. Body copy here is
   17px/var(--text-body) — NOT the same as .section-intro__body's 18px/
   text-heading used by Basics; the mock genuinely varies this per chapter. */
.rc-legal { background: var(--slate-50); }
.rc-legal .section-intro__body {
	font-size: 17px;
	font-weight: 400;
	color: var(--text-body);
	max-width: 70ch;
}
.rc-legal__provisions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	margin-top: 32px;
}
.rc-legal__provision-icon {
	width: 40px;
	height: 40px;
	border-radius: var(--radius-md);
	background: var(--blue-50);
	color: var(--blue-700);
	display: flex;
	align-items: center;
	justify-content: center;
}
.rc-legal__provision-code {
	font-family: var(--font-mono, 'IBM Plex Mono', monospace);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--blue-700);
	margin-top: 16px;
}
.rc-legal__provision-title {
	font-family: var(--font-sans);
	font-size: var(--text-lg);
	font-weight: 600;
	line-height: 1.3;
	color: var(--text-heading);
	margin: 6px 0 0;
}
.rc-legal__provision-body {
	font-family: var(--font-sans);
	font-size: 15px;
	line-height: 1.5;
	color: var(--text-body);
	margin: 8px 0 0;
}

.rc-legal__practices {
	padding: 26px;
	margin-top: 20px;
}
.rc-legal__practices-heading {
	font-family: var(--font-sans);
	font-size: var(--text-lg);
	font-weight: 600;
	line-height: 1.3;
	color: var(--text-heading);
	margin: 0;
}
.rc-legal__practices-body {
	font-family: var(--font-sans);
	font-size: 15px;
	line-height: 1.5;
	color: var(--text-body);
	max-width: 80ch;
	margin: 8px 0 0;
}
.rc-legal__practices-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	margin-top: 22px;
}
.rc-legal__practice {
	padding-top: 14px;
	border-top: 2px solid var(--blue-500);
}
.rc-legal__practice-title {
	font-family: var(--font-sans);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--text-heading);
	margin: 0;
}
.rc-legal__practice-body {
	font-family: var(--font-sans);
	font-size: 13px;
	line-height: 1.5;
	color: var(--rc-text-muted-aa);
	margin: 4px 0 0;
}

@media (max-width: 768px) {
}

/* Ch.14 — FAQ & Glossary */
.rc-faq__search {
	max-width: 520px;
	margin-bottom: var(--space-8);
}

.rc-faq__categories {
	display: flex;
	flex-direction: column;
	gap: var(--space-8);
}

.rc-faq-category h3 {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--rc-text-muted-aa);
	margin: 0 0 var(--space-2);
}

.rc-faq-category__list {
	margin-top: 12px;
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	box-shadow: var(--rc-shadow-xs);
	overflow: hidden;
}

/* Accordion — .rc- prefixed since faqs.css isn't enqueued on this template.
   Values match the mock's inline-styled accordion exactly: 18px/22px button
   padding, 16px question text, chevron SVG (not a CSS-drawn cross) that
   rotates 180deg open, 22px/20px answer padding, --text-body (not muted)
   answer color, 88ch max-width. */
.rc-faq-category .faq-item {
	border-bottom: 1px solid var(--border-subtle);
}
.rc-faq-category .faq-item:last-child {
	border-bottom: 0;
}
.rc-faq-category .faq-item h4 {
	margin: 0;
}
.rc-faq-category .faq-item h4 button {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	padding: 18px 22px;
	border: 0;
	background: transparent;
	color: var(--text-heading);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	text-align: left;
	cursor: pointer;
}
.rc-faq-category .faq-item h4 button:hover {
	background: var(--slate-50);
}
.rc-faq-item__icon {
	display: flex;
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border-radius: 999px;
	align-items: center;
	justify-content: center;
	background: var(--slate-100);
	color: var(--rc-text-muted-aa);
	transform: rotate(0deg);
	transition: transform 180ms var(--ease-out), background 180ms var(--ease-out);
}
.rc-faq-category .faq-item h4 svg {
	width: 14px;
	height: 14px;
}
.rc-faq-category .faq-item h4 button[aria-expanded="true"] .rc-faq-item__icon {
	background: var(--blue-50);
	color: var(--blue-700);
	transform: rotate(180deg);
}
.rc-faq-category .faq-answer {
	padding: 0 22px 20px;
}
.rc-faq-category .faq-answer[hidden] {
	display: none;
}
.rc-faq-category .faq-answer p {
	margin: 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--text-body);
	max-width: 88ch;
}

/* Scoped to .rc-faq: the generic .rc-empty-state (Ch.05 Assets/Holding
   search, defined earlier in this file) used the same bare class name —
   since both had equal specificity, whichever landed later in the file was
   silently winning for BOTH sections. Scoping here fixes that collision. */
.rc-faq .rc-empty-state {
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 40px;
	text-align: center;
}
.rc-faq .rc-empty-state__title {
	font-size: 15px;
	font-weight: 600;
	color: var(--text-heading);
	margin: 0;
}
.rc-faq .rc-empty-state__caption {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--rc-text-muted-aa);
	margin: 6px 0 0;
}
.rc-faq .rc-empty-state__caption a {
	color: var(--action);
	font-weight: 600;
}

.rc-glossary {
	margin-top: 48px;
}
.rc-glossary__heading {
	font-size: var(--text-xl);
	font-weight: 600;
	line-height: 1.3;
	color: var(--text-heading);
	margin: 0;
}
.rc-glossary__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 22px;
	margin: 20px 0 0;
}
.rc-glossary__item dt {
	font-size: 15px;
	font-weight: 600;
	color: var(--text-heading);
}
.rc-glossary__item dd {
	margin: 4px 0 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--text-body);
	line-height: 1.5;
}

@media (max-width: 768px) {
	.rc-faq-category .faq-item h4 button { font-size: var(--text-base); }
	.rc-glossary__heading { font-size: var(--text-lg); }
}

/* Closing + Get 351 Updates — exact mock values: the whole section is dark
   (ink-900), CTA text sits directly on it (no separate dark box), and the
   updates column is a translucent panel over that same dark background
   (not a light .rc-card). */
.rc-closing__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}

.rc-closing__cta h2 {
	font-weight: 700;
	font-size: 34px;
	line-height: 1.3;
	letter-spacing: var(--tracking-tight);
	color: #fff;
	margin: 0;
}
.rc-closing__cta p {
	font-size: 17px;
	font-weight: 400;
	color: var(--text-inverse-muted);
	line-height: 1.6;
	max-width: 58ch;
	margin: 14px 0 0;
}
.rc-closing__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}
.rc-closing__actions .btn--secondary {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.28);
	color: #fff;
}

.rc-closing__updates {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-lg);
	padding: 26px;
}
.rc-closing__updates h3 {
	font-size: 21px;
	font-weight: 600;
	line-height: 1.3;
	color: #fff;
	margin: 0;
}
.rc-closing__updates p {
	font-size: 14px;
	font-weight: 400;
	color: var(--text-inverse-muted);
	line-height: 1.5;
	margin: 8px 0 0;
}

.rc-updates-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	min-height: 120px;
	margin-top: 18px;
	border: 1px dashed rgba(255, 255, 255, 0.22);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-inverse-muted);
	font-size: var(--text-sm);
	text-align: center;
	padding: var(--space-6);
}
.rc-updates-placeholder svg {
	color: var(--slate-300, var(--slate-200));
}

@media (max-width: 1024px) {
	.rc-closing__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 768px) {
	.rc-closing__cta h2 { font-size: var(--text-xl); }
	.rc-closing__cta p { font-size: var(--text-base); }
	.rc-closing__actions .btn { width: 100%; justify-content: center; }
}

/* Disclosures — exact mock values: deliberately small H4-scale heading (not
   a big H2), and the 2 text blocks + "Source authorities" are 3 siblings in
   ONE 3-column grid, not 2 stacked blocks plus a separate list below. */
.rc-disclosures__heading {
	font-size: var(--text-lg);
	font-weight: 600;
	line-height: 1.3;
	color: var(--text-heading);
	margin: 0;
}

.rc-disclosures__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 28px;
	margin-top: 20px;
}
.rc-disclosures__block h3 {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--rc-text-muted-aa);
	margin: 0;
}
.rc-disclosures__block p {
	font-size: 13px;
	font-weight: 400;
	color: var(--rc-text-muted-aa);
	line-height: 1.5;
	margin: 8px 0 0;
}

.rc-disclosures__sources-list {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.rc-disclosures__sources-list li {
	font-size: 13px;
	color: var(--rc-text-muted-aa);
	line-height: 1.5;
}

.rc-disclosures__disclaimer {
	font-size: 13px;
	color: var(--rc-text-muted-aa);
	line-height: 1.5;
	max-width: 110ch;
	padding-top: 20px;
	margin: 24px 0 0;
	border-top: 1px solid var(--border-subtle);
}

/* Ch.11 — Adoption — exact mock values (not the generic .rc-card look: bg
   slate-50 not white, no shadow, 28px padding, sans-serif bold 56px value
   not mono 44px). */
.rc-adoption__stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	margin-top: 32px;
	margin-bottom: var(--space-6);
}
.rc-adoption__stat {
	background: var(--slate-50);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	box-shadow: none;
	padding: 28px;
	text-align: left;
}
.rc-adoption__stat-value {
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 56px;
	line-height: 1;
	letter-spacing: var(--tracking-tight);
	color: var(--ink-900);
	margin-bottom: 0;
}
.rc-adoption__stat-value.is-money {
	color: var(--green-500);
}
.rc-adoption__stat-label {
	font-weight: 600;
	font-size: 15px;
	line-height: 1.5;
	color: var(--text-heading);
	margin-top: 12px;
}
.rc-adoption__footnote {
	font-size: 13px;
	line-height: 1.5;
	color: var(--rc-text-muted-aa);
	max-width: 100%;
	margin-top: 16px;
}
.rc-adoption__footnote a {
	color: var(--action);
	/* a11y: underline restored — inline link inside footnote copy can't rely on color alone */
	text-decoration: underline;
	text-underline-offset: 2px;
}

@media (max-width: 1024px) {
	.rc-adoption__stats { grid-template-columns: minmax(0, 1fr); gap: var(--space-4); }
}

@media (max-width: 768px) {
	.rc-adoption__stat-value { font-size: var(--text-2xl); }
	.rc-adoption__stat-label { font-size: var(--text-base); }
}

/* Ch.12 — Checklist (Advisor Readiness) — section bg is slate-50 (light
   gray), not the alternating white/page default. Category header is a
   tinted strip (slate-100), not a plain <h3>. Checkbox visual matches the
   mock's exact `Checkbox` design-system component (18px box, 1.5px border,
   custom checkmark svg) — kept on a real <input type="checkbox"> for
   accessibility + the already-working JS, just restyled to match. */
.rc-main > section.rc-checklist {
	background: var(--slate-50);
}
.rc-checklist__progress {
	margin-top: 28px;
	display: flex;
	align-items: center;
	gap: 20px;
}
.rc-checklist__progress .rc-progress {
	flex: 1 1 auto;
	max-width: 340px;
}
.rc-checklist__categories {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	margin-top: 28px;
	margin-bottom: var(--space-6);
}
.rc-checklist__category {
	padding: 0;
	overflow: hidden;
}
.rc-checklist__category h3 {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--text-body, var(--slate-700));
	background: var(--slate-100);
	border-bottom: 1px solid var(--border-subtle);
	padding: 14px 20px;
	margin: 0;
}
.rc-checklist__items {
	padding: 8px 10px;
}
.rc-checklist__category .readiness-item:last-child {
	border-bottom: none;
}
.readiness-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 20px;
	font-size: 15px;
	color: var(--text-body, var(--slate-700));
	line-height: 1.5;
	cursor: pointer;
}
.readiness-item input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
.readiness-item__box {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	border-radius: var(--radius-sm);
	margin-top: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid var(--slate-400);
	background: var(--surface-card);
	color: #fff;
	transition: background 120ms var(--ease-out), border-color 120ms var(--ease-out);
}
.readiness-item__box svg {
	opacity: 0;
	transform: scale(0.6);
	transition: opacity 120ms ease, transform 120ms ease;
}
.readiness-item input:checked + .readiness-item__box {
	border-color: #0E9F6E;
	background: #0E9F6E;
	color: #fff;
}
.readiness-item input:checked + .readiness-item__box svg {
	opacity: 1;
	transform: scale(1);
}
.readiness-item:has(input:checked) {
	/* a11y: #6B7A91 measured 3.95:1 on #E9F7F1 (needs 4.5:1) — swapped for the AA-safe muted token */
	color: var(--rc-text-muted-aa);
	text-decoration: line-through;
	background: #E9F7F1;
}
.rc-checklist .rc-progress {
	max-width: 340px;
	height: 6px;
	margin-bottom: 0;
}
#readiness-progress-text {
	font-weight: 600;
	font-size: 15px;
	color: var(--text-heading);
	margin: 0;
	flex: 0 0 auto;
}

@media (max-width: 1024px) {
	.rc-checklist__categories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
	.rc-checklist__categories { grid-template-columns: minmax(0, 1fr); gap: var(--space-4); }
	.readiness-item { font-size: var(--text-base); }
}

/* Ch.13 — Library — exact mock values: deck is the wide left column
   (1.4fr), podcast (small horizontal card) + replays (own mini-card, 2x2
   grid inside) stack in the narrower right column (1fr) — NOT an even
   2-column grid with replays as a separate section-level block. */
.rc-library__media-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 24px;
	margin-top: 32px;
}
.rc-library__deck {
	margin: 0;
}
.rc-library__deck .media-slot,
.rc-library__deck .media-slot__placeholder {
	aspect-ratio: 16 / 9;
	min-height: 0;
	border: 1px solid var(--border-subtle);
	background: var(--slate-50);
}
.rc-library__deck-slot iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}
.rc-library__deck .media-slot__icon {
	width: 52px;
	height: 52px;
	border-radius: var(--radius-md);
	background: #fff;
	border: 1px solid var(--border-default);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--blue-600);
}
.rc-library__deck .media-slot__icon svg {
	width: 24px;
	height: 24px;
}
.rc-library__deck figcaption {
	margin-top: 10px;
	font-size: 13px;
	color: var(--rc-text-muted-aa);
}
.rc-library__deck-title,
.rc-library__podcast-title {
	font-weight: 600;
	font-size: 15px;
	color: var(--text-heading);
}
.rc-library__deck-subtitle,
.rc-library__podcast-subtitle {
	font-size: 13px;
	font-weight: 400;
	color: var(--rc-text-muted-aa);
	margin-top: 4px;
}

.rc-library__side {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Podcast — a small horizontal card, not a big square placeholder. */
.rc-library__podcast {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	background: var(--slate-50);
}
a.rc-library__podcast {
	color: inherit;
	text-decoration: none;
	transition: border-color 120ms var(--ease-out), background 120ms var(--ease-out);
}
a.rc-library__podcast:hover,
a.rc-library__podcast:focus-visible {
	border-color: var(--border-default);
	background: var(--slate-100, var(--slate-50));
}
.rc-library__podcast .media-slot,
.rc-library__podcast .media-slot__placeholder {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	min-height: 0;
	padding: 0;
	gap: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-full);
	background: var(--ink-900);
	color: #fff;
	font-size: 0;
}
.rc-library__podcast .media-slot__placeholder svg {
	width: 20px;
	height: 20px;
	color: #fff;
}
.rc-library__podcast .media-slot__placeholder > span:not(.media-slot__icon) {
	display: none;
}

/* Replays — their own mini-card with an internal heading, 2x2 grid. */
.rc-library__replays {
	padding: 18px;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	background: var(--slate-50);
}
.rc-library__replays-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--rc-text-muted-aa);
	margin: 0;
}
.rc-library__replays-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 12px;
}
.rc-library__replay .media-slot,
.rc-library__replay .media-slot__placeholder {
	min-height: 0;
	height: 86px;
	border-radius: var(--radius-md);
	background: var(--slate-0);
}
.rc-library__replay-link {
	display: block;
	border-radius: var(--radius-md);
}
.rc-library__replay-link:focus-visible {
	outline: 2px solid var(--blue-600);
	outline-offset: 2px;
}

.rc-library__resources {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 24px;
}
.rc-library__resource-card {
	display: block;
	text-decoration: none;
	padding: 22px;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.rc-library__resource-card:hover {
	box-shadow: var(--shadow-sm);
	border-color: var(--slate-400);
}
.rc-library__resource-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--radius-md);
	background: var(--blue-50);
	color: var(--blue-700);
}
.rc-library__resource-title {
	font-weight: 600;
	font-size: 15px;
	color: var(--text-heading);
	margin: 14px 0 0;
}
.rc-library__resource-description {
	font-size: 13px;
	color: var(--rc-text-muted-aa);
	line-height: 1.5;
	margin: 4px 0 0;
}

.rc-library__banner {
	background: var(--ink-900);
	color: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-top: 24px;
}
.rc-library__banner .eyebrow {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--blue-300);
	margin-bottom: var(--space-2);
}
.rc-library__banner-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	align-items: center;
}
.rc-library__banner-content {
	padding: 36px 40px;
}
.rc-library__banner-heading {
	font-weight: 600;
	font-size: 26px;
	line-height: 1.3;
	margin: 0 0 10px;
}
.rc-library__banner-body {
	font-size: 15px;
	font-weight: 400;
	color: var(--text-inverse-muted);
	line-height: 1.5;
	margin: 0 0 22px;
}
.rc-library__banner-media {
	padding: 28px 28px 28px 0;
	align-self: stretch;
}
.rc-library__banner-media .media-slot,
.rc-library__banner-media .media-slot__placeholder {
	min-height: 280px;
	height: 100%;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-md);
	color: var(--slate-300, var(--slate-200));
}

@media (max-width: 1024px) {
	.rc-library__resources { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
	.rc-library__media-grid { grid-template-columns: minmax(0, 1fr); gap: var(--space-6); }
	.rc-library__resources { grid-template-columns: minmax(0, 1fr); }
	.rc-library__banner-grid { grid-template-columns: minmax(0, 1fr); }
	.rc-library__banner-content { padding: var(--space-6); }
	.rc-library__banner-media { padding: 0 var(--space-6) var(--space-6); }
	.rc-library__banner-heading { font-size: var(--text-xl); }
}

/* Ch.07 — Fit check — values below are exact from the mock's own optStyle()/
   verdict()/vTint logic (decoded from its component bundle), not approximated:
   - Whole quiz is ONE card (bg slate-50), questions divided by a thin top
     border rather than each in its own boxed card.
   - Answer options are pill buttons (kept as native radios for accessibility
     — the mock uses custom buttons — styled to the same pill look via
     :has(input:checked) since a real radio can express the same state).
   - Result card "fail" is neutral gray in the mock, NOT red — pass/warn/fail/
     pending tint pairs: pending [slate-50,border-subtle], pass
     [green-50,green-500], warn [amber-50,amber-500], fail
     [slate-100,border-default]. The eyebrow color does NOT change per state
     (always --text-muted) — only the card background/border do. */
.rc-fitcheck__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(260px, 1fr);
	gap: 28px;
	align-items: start;
}

.rc-fitcheck__quiz-card {
	background: var(--slate-50);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 26px;
}

.rc-fitcheck__form {
	display: flex;
	flex-direction: column;
}

.rc-fitcheck__question {
	border: none;
	border-top: 1px solid var(--border-subtle);
	padding: 22px 0 0;
	margin: 24px 0 0;
}
.rc-fitcheck__question:first-child {
	border-top: none;
	padding-top: 0;
	margin-top: 0;
}

.rc-fitcheck__question legend {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--text-heading);
	padding: 0;
}

.rc-fitcheck__options {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.rc-fitcheck__option {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	min-height: 40px;
	padding: 9px 18px;
	border-radius: var(--radius-full);
	border: 1.5px solid var(--border-default);
	background: #fff;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-body, var(--slate-700));
	cursor: pointer;
	transition: background 120ms var(--ease-out), border-color 120ms var(--ease-out);
}
.rc-fitcheck__option:has(input:checked) {
	border-color: var(--action);
	background: var(--blue-50);
	color: var(--blue-800);
}

/* Radio dot hidden — the whole pill is the clickable/selectable surface,
   selection is shown via .rc-fitcheck__option:has(input:checked) instead.
   Kept focusable/in the a11y tree (not display:none) rather than removed. */
.rc-fitcheck__option input[type="radio"] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.rc-fitcheck__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 24px;
}
.rc-fitcheck__bar {
	flex: 1 1 120px;
	min-width: 100px;
	height: 6px;
}

.rc-fitcheck__progress {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--rc-text-muted-aa);
	margin: 0;
}

.rc-fitcheck__reset {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid var(--border-subtle);
}

#fitcheck-reset {
	color: var(--text-heading);
}

.rc-fitcheck__reset small {
	font-size: 13px;
	color: var(--rc-text-muted-aa);
}

.rc-fitcheck-result {
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	background: var(--slate-50);
	padding: 26px;
}

.rc-fitcheck-result .eyebrow {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--rc-text-muted-aa);
}

.rc-fitcheck-result h3 {
	font-size: 26px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--text-heading);
	margin: 10px 0 0;
}

.rc-fitcheck-result p {
	color: var(--text-body, var(--slate-700));
	font-size: 15px;
	line-height: 1.5;
	margin: 10px 0 0;
}

.rc-fitcheck-result__steps {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.rc-fitcheck-result__steps li {
	display: flex;
	gap: 10px;
	color: var(--text-body, var(--slate-700));
	font-size: 14px;
	line-height: 1.5;
}

.rc-fitcheck-result__steps li::before {
	content: '\2192';
	flex: 0 0 auto;
	color: var(--blue-500);
	font-weight: 700;
}

.rc-fitcheck-result--pending {
	background: var(--slate-50);
	border-color: var(--border-subtle);
}
.rc-fitcheck-result--pass {
	background: var(--green-50);
	border-color: var(--green-500);
}
.rc-fitcheck-result--warn {
	background: var(--rc-amber-50);
	border-color: var(--rc-amber-500);
}
.rc-fitcheck-result--fail {
	background: var(--slate-100);
	border-color: var(--border-default);
}

.rc-fitcheck__aside {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.rc-fitcheck__side {
	padding: 22px;
}

.rc-fitcheck__side h3 {
	font-size: 21px;
	font-weight: 600;
	color: var(--text-heading);
	margin: 0 0 var(--space-3);
}

.rc-fitcheck__side p {
	color: var(--text-body, var(--slate-700));
	font-size: 15px;
	line-height: 1.5;
	margin: 0 0 16px;
}

@media (max-width: 1024px) {
	.rc-fitcheck__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 768px) {
	.rc-fitcheck__quiz-card { padding: var(--space-4); }
	.rc-fitcheck__meta { flex-direction: column; align-items: flex-start; }
	/* flex-basis means height once the parent switches to column, so the
	   bar needs an explicit reset here or it renders tall/broken instead
	   of as a thin full-width bar. */
	.rc-fitcheck__bar { flex: 0 0 auto; width: 100%; height: 6px; min-width: 0; }
}

/* Ch.08 — Timeline — exact values from the mock: ONE bordered panel (not
   separate cards with gaps), vertical divider between steps, border-top
   color is a blue→green intensity progression tied to each step's meaning
   (pre-launch → post-launch), not an arbitrary alternating pattern. Step 4
   ("Seed & launch") is the sole exception with a bold/dark date. */
.rc-timeline__track {
	list-style: none;
	margin: 36px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0;
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.rc-timeline__step {
	padding: 24px 20px;
	border-right: 1px solid var(--border-subtle);
	border-top: 3px solid var(--blue-200);
}
.rc-timeline__step:last-child {
	border-right: none;
}

.rc-timeline__step:nth-child(1) { border-top-color: var(--blue-200); }
.rc-timeline__step:nth-child(2) { border-top-color: var(--blue-300); }
.rc-timeline__step:nth-child(3) { border-top-color: var(--blue-400); }
.rc-timeline__step:nth-child(4) { border-top-color: var(--blue-600); }
.rc-timeline__step:nth-child(5) { border-top-color: var(--green-500); }
.rc-timeline__step:nth-child(6) { border-top-color: var(--green-500); }

.rc-timeline__step:nth-child(1) .rc-timeline__step-label,
.rc-timeline__step:nth-child(2) .rc-timeline__step-label,
.rc-timeline__step:nth-child(3) .rc-timeline__step-label,
.rc-timeline__step:nth-child(4) .rc-timeline__step-label {
	color: var(--blue-700);
}
.rc-timeline__step:nth-child(5) .rc-timeline__step-label,
.rc-timeline__step:nth-child(6) .rc-timeline__step-label {
	color: var(--green-700);
}
/* "Launch day" is the one date rendered bold/dark instead of muted mono. */
.rc-timeline__step:nth-child(4) .rc-timeline__step-date {
	font-weight: 600;
	color: var(--text-heading);
}

.rc-timeline__step-date {
	font-family: var(--font-mono, 'IBM Plex Mono', monospace);
	font-size: 13px;
	font-weight: 500;
	color: var(--rc-text-muted-aa);
}

.rc-timeline__step-label {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 10px 0 0;
}

.rc-timeline__step-body {
	color: var(--text-body);
	font-size: 14px;
	line-height: 1.5;
	margin: 6px 0 0;
}

.rc-timeline__footnote {
	max-width: 75ch;
	color: var(--rc-text-muted-aa);
	font-size: 13px;
	line-height: 1.5;
	margin: 16px 0 0;
}

.rc-timeline__footnote strong {
	color: var(--text-heading);
}

@media (max-width: 768px) {
	.rc-timeline__track { grid-template-columns: minmax(0, 1fr); }
	.rc-timeline__step { border-right: none; border-bottom: 1px solid var(--border-subtle); }
	.rc-timeline__step:last-child { border-bottom: none; }
}

/* Ch.09 — Use cases — exact values from the mock's inline styles (not the
   page's generic type scale): cards grid gap 20px/auto-fit(240px), case
   number is --type-data-lg (600 26px/1.1 mono) in --blue-300, title is
   --type-h4 (600 21px/1.3), body is --type-body at 15px in --text-body. */
.rc-usecases__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	margin-top: 0;
}
.rc-usecases__case-number {
	font-family: var(--font-mono, 'IBM Plex Mono', monospace);
	font-size: 26px;
	font-weight: 600;
	line-height: 1.1;
	/* --blue-300 on white measured 2.2:1 (needs 3:1 at this size) — --blue-500 clears it at 3.66:1 */
	color: var(--blue-500);
}
.rc-usecases__case-title {
	font-size: 21px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--text-heading);
	margin: 10px 0 0;
}
.rc-usecases__case-body {
	color: var(--text-body);
	font-size: 15px;
	line-height: 1.5;
	margin: 8px 0 0;
}

/* Dark pull-quote — bold (not italic), left-aligned, narrow measure */
.rc-usecases__quote {
	background: var(--ink-900);
	border-radius: var(--radius-lg);
	padding: 36px 40px;
	margin: 28px 0 0;
}
.rc-usecases__quote p {
	max-width: 22ch;
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	line-height: 1.35;
	letter-spacing: var(--tracking-tight);
}

.rc-usecases__media {
	margin-top: 36px;
}
.rc-usecases__media-heading {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--text-heading);
	margin: 0;
}
.rc-usecases__media-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	margin-top: 20px;
}
.rc-usecases__example {
	margin: 0;
}
.rc-usecases__example .media-slot,
.rc-usecases__example .media-slot__placeholder {
	min-height: 230px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.rc-usecases__example .media-slot {
	border: 1px solid var(--border-subtle);
}
.rc-usecases__example figcaption {
	margin-top: 10px;
	color: var(--text-body);
	font-size: 14px;
	line-height: 1.5;
}
.rc-usecases__example figcaption strong {
	color: var(--text-heading);
}

/* Case study is its own bordered/boxed panel in the mock, not a top-border
   divider. */
.rc-usecases__case-study {
	background: var(--slate-50);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 28px;
	margin-top: 24px;
}
.rc-usecases__case-study-label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--rc-text-muted-aa);
	margin: 0;
}
.rc-usecases__stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 28px;
	margin-top: 18px;
}
.rc-usecases__stat-label {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--rc-text-muted-aa);
}
.rc-usecases__stat-value {
	font-family: var(--font-mono, 'IBM Plex Mono', monospace);
	font-size: 26px;
	font-weight: 600;
	line-height: 1.1;
	color: var(--text-heading);
	margin-top: 4px;
}
.rc-usecases__stat-value.is-delta {
	color: var(--text-heading);
}
.rc-usecases__stat-caption {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--rc-text-muted-aa);
	margin-top: 4px;
}
.rc-usecases__stat-delta {
	color: var(--green-500);
	margin-right: 4px;
}

@media (max-width: 1024px) {
	.rc-usecases__stat-value { font-size: 22px; }
}

@media (max-width: 768px) {
	.rc-usecases__case-title { font-size: var(--text-lg); }
	.rc-usecases__case-body { font-size: var(--text-base); }
	.rc-usecases__quote { padding: var(--space-8) var(--space-4); }
	.rc-usecases__quote p { font-size: var(--text-lg); }
	.rc-usecases__media-heading { font-size: var(--text-lg); }
	.rc-usecases__stat-value { font-size: var(--text-xl); }
}

@media (max-width: 350px) {
	.rc-usecases__quote p { font-size: var(--text-base); }
	.rc-usecases__stat-value { font-size: var(--text-lg); }
}

/* Ch.10 — Compare (container + copy + reserved placeholder only; no
   comparator logic — out of scope). Exact mock values: the wrapper itself
   has no card styling (no bg/border/shadow) — only the iframe/placeholder
   box does, in var(--ink-950) (one step darker than the hero's --ink-900). */
.rc-compare__interactive {
	margin-top: 32px;
}
.rc-compare__interactive-row {
	display: flex;
	align-items: baseline;
	gap: 14px;
	flex-wrap: wrap;
}
.rc-compare__interactive-heading {
	font-size: 21px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: var(--tracking-tight);
	color: var(--text-heading);
	margin: 0;
}
.rc-compare__interactive-caption {
	color: var(--rc-text-muted-aa);
	font-size: 13px;
	line-height: 1.5;
	margin: 0;
}

.rc-compare__construction {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-3);
	min-height: 320px;
	border: 1px dashed var(--rc-amber-500);
	border-radius: var(--radius-lg);
	background: var(--rc-amber-50);
	padding: var(--space-8);
	text-align: center;
	margin-top: 16px;
}
.rc-compare__construction-text {
	max-width: 480px;
	color: var(--rc-text-muted-aa);
	font-size: var(--text-base);
	margin: 0;
}

.rc-compare__placeholder {
	position: relative;
	margin-top: 16px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-default);
	box-shadow: var(--shadow-md);
	background: var(--ink-950);
}
.rc-compare__placeholder-inner {
	position: relative;
	z-index: 1;
	height: 100%;
	min-height: 0;
	color: rgba(255, 255, 255, 0.6);
	border: none;
	background: transparent;
	gap: var(--space-4);
	font-size: var(--text-lg);
	font-weight: 600;
}
.rc-compare__placeholder-inner svg {
	color: rgba(255, 255, 255, 0.4);
	width: 56px;
	height: 56px;
}

@media (max-width: 768px) {
	.rc-compare__placeholder-inner { font-size: var(--text-base); }
	.rc-compare__placeholder-inner svg { width: 40px; height: 40px; }
}
.rc-compare__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	opacity: 0;
	pointer-events: none;
}

.rc-compare .rc-footnote {
	margin-top: 12px;
}

@media (max-width: 768px) {
	.rc-compare__interactive-heading { font-size: var(--text-lg); }
	.rc-compare__construction { min-height: 220px; padding: var(--space-6); }
}

/* Section background alternation, per explicit spec (not the generic
   nth-of-type(odd) rule — this page's white/gray pattern doesn't follow
   strict odd/even once you count Basics/Process/Assets as forced-white
   exceptions earlier in the cascade). */
.rc-main > section.rc-fitcheck { background: var(--slate-0); }
.rc-main > section.rc-timeline { background: var(--slate-50); }
.rc-main > section.rc-usecases { background: var(--slate-0); }
.rc-main > section.rc-compare { background: var(--slate-50); }
.rc-main > section.rc-adoption { background: var(--slate-0); }
.rc-main > section.rc-library { background: var(--slate-0); }
.rc-main > section.rc-faq { background: var(--slate-50); }
.rc-main > section.rc-closing { background: var(--ink-900); color: #fff; }
.rc-main > section.rc-disclosures { background: var(--slate-0); }
