/*
Theme Name: My Trial My Future
Theme URI: https://mytrialmyfuture.eu
Author: My Trial My Future
Author URI: https://mytrialmyfuture.eu
Description: Custom theme for the My Trial My Future — Beyond Cancer initiative. More research. More options. More hope.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-trial-my-future
*/

:root {
	--navy: #0B1D3A;
	--blue: #1E4DB7;
	--light-blue: #6BA7FF;
	--purple: #7B3CFF;
	--accent-purple: #7c39f5;
	--gold: #FFC107;
	--gray-light: #E5E7EB;
	--gap-red: #C43C5A;
	--gradient-brand:
		linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%),
		linear-gradient(135deg, #5B3DF0 0%, #C0459C 50%, #F5A623 100%);

	--white: #FFFFFF;
	--text-body: #33394A;

	--font-heading: 'Oswald', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

	--container-width: 1160px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	max-width: 100%;
}

body {
	margin: 0;
	overflow-x: hidden;
	max-width: 100%;
	font-family: var(--font-body);
	color: var(--text-body);
	background: var(--white);
	line-height: 1.6;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--blue);
	text-decoration: none;
}

a:hover {
	color: var(--purple);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.15;
	margin: 0 0 0.5em;
	color: var(--navy);
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	overflow: hidden;
	position: absolute !important;
	word-wrap: normal !important;
}

/* Buttons */
.btn {
	display: inline-block;
	font-family: var(--font-heading);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.95rem;
	padding: 14px 32px;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn-gold {
	background-color: var(--gold);
	color: var(--navy);
}

.btn-gold:hover {
	background-color: #FFCF3D;
	color: var(--navy);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 193, 7, 0.35);
}

.btn-outline {
	background-color: transparent;
	border-color: var(--blue);
	color: var(--blue);
}

.btn-outline:hover {
	background-color: var(--accent-purple);
	border-color: var(--accent-purple);
	color: var(--white);
	transform: translateY(-2px);
}

/* Site header */
.site-header {
	background-color: var(--white);
	border-bottom: 1px solid var(--gray-light);
	position: relative;
	z-index: 10;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
}

.site-header__branding {
	display: flex;
	align-items: center;
	gap: 12px;
}

.site-header__branding img {
	max-height: 48px;
	width: auto;
}

.site-header__site-title {
	font-family: var(--font-heading);
	text-transform: uppercase;
	font-size: 1.1rem;
	color: var(--navy);
}

.primary-navigation ul {
	list-style: none;
	display: flex;
	gap: 28px;
	margin: 0;
	padding: 0;
}

.primary-navigation a {
	font-family: var(--font-heading);
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 0.03em;
	color: var(--navy);
}

.primary-navigation a:hover {
	color: var(--blue);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	flex: 0 0 auto;
}

.nav-toggle__bar {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--navy);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
	background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
	text-align: center;
	padding: 72px 24px 88px;
}

.hero__logo {
	max-width: 220px;
	margin: 0 auto 32px;
}

.hero__headline {
	font-size: clamp(2rem, 5vw, 3.4rem);
	margin: 0 0 0.25em;
}

.hero__headline .word-navy { color: var(--navy); }
.hero__headline .word-blue { color: var(--blue); }
.hero__headline .word-gold { color: var(--gold); }

.hero__subline {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(1.6rem, 3.6vw, 2.4rem);
	margin: 0 0 0.6em;
	background-image: linear-gradient(90deg, var(--navy) 0%, var(--blue) 30%, var(--gold) 55%, var(--navy) 80%, var(--navy) 100%);
	background-size: 250% 100%;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	opacity: 0;
	animation:
		hero-subline-fade-in 0.8s ease-out 0.1s forwards,
		hero-subline-shimmer 5s linear 0.9s infinite;
}

@keyframes hero-subline-fade-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes hero-subline-shimmer {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 200% 50%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__subline {
		animation: none;
		opacity: 1;
		transform: none;
		background-position: 0% 50%;
	}
}

.hero__hook {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(1.3rem, 2.8vw, 1.7rem);
	color: var(--navy);
	max-width: 620px;
	margin: 0 auto 18px;
}

.hero__tagline {
	font-family: var(--font-body);
	text-transform: none;
	font-size: 1.15rem;
	color: var(--text-body);
	max-width: 560px;
	margin: 0 auto 36px;
	letter-spacing: normal;
	font-weight: 400;
}

.hero__tagline-accent {
	color: var(--accent-purple);
	font-weight: 700;
}

/* Pillars */
.pillars {
	padding: 64px 24px;
	background-color: var(--white);
}

.pillars__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 32px;
	text-align: center;
}

.stat-highlight {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	padding: 48px 32px;
	text-align: center;
	max-width: 720px;
	margin: 48px auto 0;
	background: linear-gradient(120deg, #2B4CB1, #743DEC, #F6C444, #743DEC, #2B4CB1);
	background-size: 300% 300%;
	animation: mtmf-payoff-gradient-flow 8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
	.stat-highlight {
		animation: none;
		background-position: 0% 50%;
	}
}

.stat-highlight__figure {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(2.4rem, 6vw, 3.6rem);
	line-height: 1;
	color: var(--white);
	margin: 0 0 8px;
}

.stat-highlight__text {
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--white);
	max-width: 480px;
	margin: 0 auto;
}

.pillar__icon {
	width: 76px;
	height: 76px;
	margin: 0 auto 18px;
	border-radius: 50%;
	border: 1.5px solid var(--blue);
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--blue);
}

.pillar__title {
	font-size: 1rem;
	margin-bottom: 6px;
}

.pillar__text {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	font-size: 0.92rem;
	color: var(--text-body);
	letter-spacing: normal;
	margin: 0;
}

/* Mission */
.mission {
	background-color: var(--navy);
	color: var(--white);
	padding: 88px 24px;
	text-align: center;
}

.mission__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	margin: 0 auto 12px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 1.5px solid var(--gold);
	background-color: transparent;
}

.mission__icon svg {
	width: 28px;
	height: 28px;
}

.mission__eyebrow {
	color: var(--gold);
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.9rem;
	margin-bottom: 12px;
}

.mission__title {
	color: var(--white);
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}

.mission__title .highlight {
	color: var(--light-blue);
}

.mission__text {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	max-width: 680px;
	margin: 24px auto 0;
	font-size: 1.05rem;
	color: var(--gray-light);
}

/* Generic section eyebrow label */
.eyebrow {
	display: inline-block;
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.9rem;
	color: var(--blue);
	margin-bottom: 12px;
}

.eyebrow--on-dark {
	color: var(--gold);
}

/* Text color utilities */
.text-navy { color: var(--navy); }
.text-blue { color: var(--blue); }
.text-light-blue { color: var(--light-blue); }
.text-purple { color: var(--purple); }
.text-gold { color: var(--gold); }

/* Secondary page hero */
.page-hero {
	background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
	text-align: center;
	padding: 72px 24px 64px;
}

.page-hero__title {
	font-size: clamp(1.9rem, 4.2vw, 3rem);
	max-width: 820px;
	margin: 0 auto 0.4em;
}

.page-hero__title-accent {
	color: var(--accent-purple);
}

.page-hero__title .highlight {
	color: var(--blue);
}

.page-hero__intro {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 1.15rem;
	color: var(--text-body);
	max-width: 620px;
	margin: 0 auto 32px;
}

/* Generic content section wrapper, alternates with .section--tint for rhythm */
.section {
	padding: 64px 24px;
}

.section--light {
	background-color: var(--white);
}

.section--tint {
	background-color: var(--gray-light);
}

.section__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 40px;
}

.section__intro {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 1.05rem;
	color: var(--text-body);
	max-width: 680px;
	margin: 16px auto 0;
}

/* ECI explainer */
.eci__body {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.eci__text {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 1.05rem;
	color: var(--text-body);
}

.eci-timeline {
	margin-top: 40px;
}

/* Objectives */
.demands-intro-band {
	background: var(--gradient-brand);
	padding: 56px 24px 60px;
	text-align: center;
}

.demands-intro-band__eyebrow {
	display: block;
	font-family: var(--font-heading);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.85rem;
	color: var(--white);
	margin: 0 0 14px;
}

.demands-intro-band__headline {
	font-family: var(--font-heading);
	font-weight: 700;
	text-transform: none;
	letter-spacing: normal;
	font-size: clamp(1.5rem, 3.2vw, 2.1rem);
	line-height: 1.3;
	color: var(--white);
	text-wrap: balance;
	max-width: 720px;
	margin: 0 auto;
}

.section--demands-objective {
	position: relative;
	z-index: 2;
	padding-bottom: 0;
}

.demands-timeline {
	position: relative;
	max-width: 760px;
	margin: 0 auto;
	text-align: left;
}

.timeline-demand {
	display: grid;
	grid-template-columns: 44px 1fr;
	column-gap: 24px;
}

.timeline-demand__rail {
	position: relative;
}

.timeline-demand__marker {
	position: absolute;
	top: 0;
	left: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.1rem;
	background-color: var(--white);
	border: 3px solid var(--accent-purple);
	color: var(--accent-purple);
	z-index: 1;
	transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.timeline-demand__marker.is-active {
	background-color: var(--accent-purple);
	border-color: var(--accent-purple);
	color: var(--white);
}

.timeline-demand__connector {
	position: absolute;
	top: 44px;
	bottom: -32px;
	left: 20px;
	width: 3px;
	background-color: var(--accent-purple);
	transform-origin: top;
	overflow: hidden;
}

/* Card 4's connector reaches past the normal card-to-card gap, down to the
   trophy marker, which sits in line with the payoff banner's black bar
   rather than right at the section boundary. Stays gold (unlike the rest
   of the now-purple rail) since it leads into the gold trophy moment. */
.timeline-demand__connector--to-trophy {
	bottom: -182px;
	background-color: var(--gold);
}

/* Bridges the end of the ECI timeline a short way into the section's own
   bottom padding, gesturing at continuation into the gradient band rather
   than stopping dead — see .timeline-demand__lead-in for the matching
   gesture where the Our Demands timeline picks back up on the other side. */
.timeline-demand__connector--bridge {
	bottom: -68px;
}

.timeline-demand__marker--trophy {
	position: absolute;
	top: auto;
	bottom: -150px;
	left: 0;
	background-color: var(--gold);
	border-color: var(--gold);
	color: var(--navy);
}

.timeline-demand__chevron {
	position: absolute;
	top: 90px;
	left: 20px;
	transform: translateX(-50%);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: var(--white);
	color: var(--accent-purple);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

/* Short purple stub above the first Our Demands marker, echoing where the
   ECI timeline's own connector left off above — see
   .timeline-demand__connector--bridge. */
.timeline-demand__lead-in {
	position: absolute;
	top: -40px;
	bottom: 44px;
	left: 20px;
	width: 3px;
	background-color: var(--accent-purple);
}

.timeline-demand__firework-particle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
	pointer-events: none;
}

.timeline-demand__card {
	position: relative;
	overflow: hidden;
	background-color: var(--white);
	border-radius: 16px;
	padding: 28px 32px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	margin-bottom: 32px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-demand__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(11, 29, 58, 0.14);
}

.timeline-demand__card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 5px;
	background-color: var(--accent-purple);
	border-radius: 16px 0 0 16px;
}

/* Step 6 (Commission Response): the moment the Commission is legally
   forced to respond, highlighted the same way the "our ECI" card is
   highlighted on the Existing Policies page. */
.timeline-demand__card--payoff {
	background: var(--gradient-brand);
	box-shadow: 0 10px 28px rgba(91, 61, 240, 0.25);
}

.timeline-demand__card--payoff::before {
	content: none;
}

.timeline-demand__card--payoff .timeline-demand__headline,
.timeline-demand__card--payoff .timeline-demand__sentence {
	color: var(--white);
}

.timeline-demand__card--payoff .timeline-demand__tag {
	background-color: var(--white);
	color: var(--accent-purple);
}

.timeline-demand__headline {
	font-family: var(--font-heading);
	font-weight: 700;
	text-transform: none;
	letter-spacing: normal;
	font-size: 26px;
	line-height: 1.35;
	color: var(--navy);
	margin: 0 0 12px;
}

.timeline-demand__tag {
	display: inline-block;
	background-color: #EEE8FD;
	color: var(--accent-purple);
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 600;
	padding: 5px 14px;
	border-radius: 999px;
	margin: 0 0 14px;
}

.timeline-demand__sentence {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 16px;
	line-height: 1.5;
	color: #444444;
	margin: 0;
}

.timeline-demand__stat {
	font-family: var(--font-body);
	font-size: 0.85rem;
	line-height: 1.5;
	color: var(--text-body);
	opacity: 0.65;
	margin: 12px 0 0;
}

.timeline-demand__stat--red {
	color: var(--gap-red);
	opacity: 0.85;
}

.demand-card__stat {
	font-weight: 700;
	color: var(--accent-purple);
}

.timeline-demand__stat--red .demand-card__stat {
	color: var(--gap-red);
}

/* Payoff banner */
.payoff {
	position: relative;
	overflow: hidden;
	padding: 70px 24px;
	text-align: center;
	background: linear-gradient(120deg, #2B4CB1, #743DEC, #F6C444, #743DEC, #2B4CB1);
	background-size: 300% 300%;
	animation: mtmf-payoff-gradient-flow 8s ease-in-out infinite;
}

@keyframes mtmf-payoff-gradient-flow {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.payoff {
		animation: none;
		background-position: 0% 50%;
	}
}

.payoff__inner {
	position: relative;
	z-index: 1;
}

.payoff__bar {
	display: inline-block;
	background-color: var(--navy);
	padding: 20px 40px;
	border-radius: 8px;
	margin: 0 auto 20px;
}

.payoff__headline {
	font-family: var(--font-heading);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: 30px;
	line-height: 1.3;
	margin: 0;
}

.payoff__headline-white {
	color: var(--white);
}

.payoff__headline-gold {
	color: var(--gold);
}

.payoff__headline-purple {
	color: var(--accent-purple);
}

@keyframes mtmf-cta-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

.payoff__subtext {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 28px;
}

/* Full Plan PDF callout */
.pdf-callout {
	background-color: var(--navy);
	border-radius: 24px;
	padding: 48px 40px;
	display: flex;
	align-items: center;
	gap: 32px;
	max-width: 880px;
	margin: 0 auto;
}

.pdf-callout__icon {
	flex: 0 0 auto;
	width: 64px;
	height: 64px;
	color: var(--light-blue);
}

.pdf-callout__content {
	flex: 1 1 auto;
}

.pdf-callout__title {
	color: var(--white);
	margin-bottom: 8px;
}

.pdf-callout__text {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 1rem;
	color: var(--gray-light);
	margin: 0 0 24px;
}

.btn-gold-disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.btn-gold-disabled:hover {
	transform: none;
	box-shadow: none;
	background-color: var(--gold);
}

/* Posts grid (Stories page) */
/* Stories page — "Share Your Story" callout */
.story-cta {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	background-color: var(--navy);
	border-radius: 16px;
	padding: 28px 32px;
	margin: 0 0 40px;
}

.story-cta__icon {
	flex: 0 0 auto;
	color: var(--gold);
	margin-top: 2px;
}

.story-cta__title {
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 1.05rem;
	color: var(--white);
	margin: 0 0 8px;
}

.story-cta__text {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.98rem;
	line-height: 1.6;
	color: var(--gray-light);
	margin: 0;
}

.story-cta__text a {
	color: var(--light-blue);
	text-decoration: underline;
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 32px;
}

.post-card {
	background-color: var(--white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(11, 29, 58, 0.08);
	display: flex;
	flex-direction: column;
}

.post-card__image {
	display: block;
}

.post-card__image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

.post-card__body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1 1 auto;
}

.post-card__badge {
	align-self: flex-start;
	background-color: var(--gold);
	color: var(--navy);
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.72rem;
	padding: 4px 12px;
	border-radius: 999px;
}

.post-card__title {
	font-size: 1.2rem;
	margin: 0;
}

.post-card__title a {
	color: var(--navy);
}

.post-card__title a:hover {
	color: var(--blue);
}

.post-card__excerpt {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.95rem;
	color: var(--text-body);
	margin: 0;
}

.post-card__link {
	font-family: var(--font-heading);
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.03em;
	color: var(--blue);
	margin-top: auto;
	padding-top: 6px;
}

.post-card__link:hover {
	color: var(--purple);
}

/* Support page — ways to support */
.support-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.support-card {
	background-color: var(--white);
	border-radius: 16px;
	padding: 28px 24px;
	box-shadow: 0 4px 20px rgba(11, 29, 58, 0.08);
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
}

.support-card__icon {
	color: var(--blue);
	margin-bottom: 16px;
}

.support-card__title {
	font-size: 1.05rem;
	margin-bottom: 8px;
}

.support-card__text {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.92rem;
	color: var(--text-body);
	margin: 0 0 20px;
}

.support-card__cta {
	margin-top: auto;
	font-size: 0.82rem;
	padding: 12px 24px;
}

/* Support page — share block */
.share-icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.share-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--white);
	border: 1.5px solid var(--navy);
	color: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.1rem;
	transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.share-icon:hover {
	background-color: var(--blue);
	border-color: var(--blue);
	color: var(--white);
	transform: translateY(-2px);
}

/* Support page — supporters placeholder grid */
.supporters-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 24px;
}

.people-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 28px;
}

.people-card {
	background-color: var(--gray-light);
	border: 1px dashed rgba(11, 29, 58, 0.2);
	border-radius: 12px;
	padding: 28px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
}

.people-card__photo-wrap {
	position: relative;
	display: inline-block;
}

.people-card__photo {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background-color: var(--white);
	border: 1px dashed rgba(11, 29, 58, 0.35);
}

.people-card__photo--img {
	object-fit: cover;
	border: 1px solid rgba(11, 29, 58, 0.15);
}

.people-card__name {
	font-family: var(--font-body);
	text-transform: none;
	letter-spacing: normal;
	font-weight: 600;
	font-size: 0.9rem;
	line-height: 1.4;
	color: var(--navy);
	margin: 0;
}

.people-card__role {
	font-family: var(--font-body);
	text-transform: none;
	letter-spacing: normal;
	font-weight: 400;
	font-size: 0.8rem;
	line-height: 1.65;
	color: var(--text-body);
	opacity: 0.6;
	margin: 0;
}

/* First real confirmed supporter(s): solid brand-purple border and a light
   purple tint instead of the dashed "Coming Soon" placeholder treatment,
   so they read as arrived rather than still-empty — same size/padding as
   every other card in the grid. */
.people-card--confirmed {
	background-color: #F5F2FE;
	border: 1.5px solid var(--accent-purple);
}

.people-card--confirmed .people-card__role {
	opacity: 0.75;
}

/* Reusable small pill badge — same treatment as the "Proposed" badge on
   Data & Evidence's Regulatory Progress cards (regulatory-card__badge). */
.coming-soon-badge {
	display: inline-block;
	background-color: var(--gold);
	color: var(--navy);
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.6rem;
	padding: 3px 9px;
	border-radius: 999px;
	white-space: nowrap;
}

.people-card__badge {
	position: absolute;
	top: -6px;
	right: -10px;
}

.supporter-slot__badge {
	position: absolute;
	top: 8px;
	right: 8px;
}

.section__note {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	font-style: italic;
	letter-spacing: normal;
	font-size: 0.85rem;
	color: var(--text-body);
	opacity: 0.65;
	margin: 8px auto 0;
	max-width: 680px;
}

.supporter-slot {
	position: relative;
	background-color: var(--gray-light);
	border: 1px dashed rgba(11, 29, 58, 0.2);
	border-radius: 12px;
	height: 96px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.85rem;
	color: var(--text-body);
	opacity: 0.6;
}

/* Single post */
.single-post__hero-image img {
	width: 100%;
	max-height: 480px;
	object-fit: cover;
	display: block;
}

/* Dr Meunier's photo is a tight, full-frame headshot (face fills nearly the
   whole source image, unlike Eva's wider environmental shot) — at this
   banner's wide aspect ratio, the default center crop lands squarely on
   eyebrows-to-chin. Bias the crop window toward the top of the frame so
   hair/forehead/eyes stay in view instead. */
.single-post__hero-image--meunier img {
	object-position: center 42%;
}

.single-post__header {
	text-align: center;
	padding: 48px 24px 24px;
}

.single-post__title {
	max-width: 780px;
	margin: 12px auto 8px;
}

.single-post__meta {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.9rem;
	color: var(--text-body);
	margin: 0;
}

.single-post__content {
	padding: 8px 24px 24px;
}

.single-post__content .container {
	max-width: 760px;
}

.single-post__content p {
	font-family: var(--font-body);
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--text-body);
	margin: 0 0 24px;
}

.single-post__content a {
	text-decoration: underline;
}

.single-post__related {
	padding: 8px 24px 24px;
	border-top: 1px solid var(--gray-light);
}

.single-post__related .container {
	max-width: 760px;
	padding-top: 24px;
}

.single-post__related .eyebrow {
	margin-bottom: 16px;
}

.related-link-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.related-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: #EEE8FD;
	color: var(--accent-purple);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.92rem;
	text-decoration: none;
	padding: 14px 20px;
	border-radius: 999px;
	transition: background-color 0.15s ease;
}

.related-link:hover {
	background-color: #E0D6FB;
	color: var(--accent-purple);
}

.related-link__arrow {
	flex: 0 0 auto;
	transition: transform 0.15s ease;
}

.related-link:hover .related-link__arrow {
	transform: translateX(3px);
}

.single-post__content figure {
	margin: 32px 0;
}

.single-post__content figure img {
	width: 100%;
	border-radius: 16px;
	display: block;
}

.single-post__content figcaption {
	font-family: var(--font-body);
	font-size: 0.85rem;
	color: var(--text-body);
	opacity: 0.75;
	text-align: center;
	margin-top: 10px;
}

.single-post__back {
	padding: 24px 24px 64px;
	text-align: center;
}

/* Generic static page (Privacy Policy, Organizers & Contact, etc.) */
.static-page__inner {
	max-width: 760px;
	padding-top: 56px;
	padding-bottom: 64px;
}

.static-page__title {
	margin-bottom: 32px;
}

.static-page__content p {
	font-family: var(--font-body);
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--text-body);
	margin: 0 0 20px;
}

.static-page__content h2 {
	margin-top: 40px;
	margin-bottom: 16px;
	font-size: 1.4rem;
}

.static-page__content h2:first-child {
	margin-top: 0;
}

.static-page__content ul,
.static-page__content ol {
	font-family: var(--font-body);
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--text-body);
	margin: 0 0 20px;
	padding-left: 24px;
}

.static-page__content li {
	margin-bottom: 8px;
}

.static-page__content a {
	text-decoration: underline;
}

.placeholder-notice {
	background-color: #FFF8E1;
	border: 1px solid var(--gold);
	border-radius: 12px;
	padding: 16px 20px;
	margin: 0 0 32px;
	font-family: var(--font-body);
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--navy);
}

.placeholder-notice strong {
	color: var(--navy);
}

.committee-flag {
	font-size: 1.35em;
	margin-left: 4px;
	vertical-align: -0.1em;
	line-height: 1;
}

/* FAQ page */
.faq-list {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	background-color: var(--white);
	border: 1px solid var(--gray-light);
	border-radius: 16px;
	padding: 4px 24px;
}

.faq-item__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 0;
	cursor: pointer;
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--navy);
	font-size: 1.05rem;
	list-style: none;
}

.faq-item__question::-webkit-details-marker {
	display: none;
}

.faq-item__icon {
	flex: 0 0 auto;
	position: relative;
	width: 18px;
	height: 18px;
}

.faq-item__icon::before,
.faq-item__icon::after {
	content: '';
	position: absolute;
	background-color: var(--blue);
	transition: opacity 0.15s ease;
}

.faq-item__icon::before {
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	transform: translateY(-50%);
}

.faq-item__icon::after {
	left: 50%;
	top: 0;
	width: 2px;
	height: 100%;
	transform: translateX(-50%);
}

.faq-item[open] .faq-item__icon::after {
	opacity: 0;
}

.faq-item__answer {
	padding: 0 0 22px;
}

.faq-item__answer p {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-body);
	margin: 0;
}

.faq-item__answer a {
	text-decoration: underline;
}

.faq-cta {
	text-align: center;
}

.faq-cta__button {
	margin-top: 28px;
}

/* Data & Evidence page */
.evidence-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 32px;
}

.evidence-stat {
	background-color: var(--white);
	border: 1px solid var(--gray-light);
	border-radius: 16px;
	padding: 28px 24px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(11, 29, 58, 0.06);
}

.evidence-stat__icon {
	width: 46px;
	height: 46px;
	margin: 0 auto 16px;
	border-radius: 50%;
	border: 1.5px solid var(--blue);
	background-color: transparent;
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
}

.evidence-stat__figure {
	font-family: var(--font-heading);
	font-size: 1.9rem;
	color: var(--blue);
	margin: 0 0 8px;
}

.evidence-stat__label {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 500;
	letter-spacing: normal;
	font-size: 0.98rem;
	color: var(--navy);
	margin: 0 0 10px;
}

.evidence-stat__detail {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.85rem;
	color: var(--text-body);
	margin: 0;
}

.evidence-source-note {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.85rem;
	font-style: italic;
	color: var(--text-body);
	opacity: 0.75;
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
}

.access-gap-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
}

.access-gap-card {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	text-align: left;
	background-color: var(--white);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(11, 29, 58, 0.08);
}

.access-gap-card__icon {
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--blue), var(--accent-purple));
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
}

.access-gap-card__icon svg {
	width: 26px;
	height: 26px;
}

.access-gap-card__text {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-body);
	margin: 0;
	padding-top: 4px;
}

/* Funding Gap */
.funding-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-bottom: 24px;
}

.funding-stat {
	background-color: var(--white);
	border: 1px solid var(--gray-light);
	border-radius: 16px;
	padding: 28px 24px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(11, 29, 58, 0.06);
}

.funding-stat__icon {
	width: 46px;
	height: 46px;
	margin: 0 auto 14px;
	border-radius: 50%;
	border: 1.5px solid var(--blue);
	background-color: transparent;
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
}

.funding-stat__figure {
	font-family: var(--font-heading);
	font-size: 1.7rem;
	color: var(--blue);
	margin: 0 0 10px;
}

.funding-stat__detail {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--text-body);
	margin: 0;
}

.funding-callout {
	display: flex;
	align-items: center;
	gap: 20px;
	background-color: var(--navy);
	border-radius: 16px;
	padding: 28px 32px;
	max-width: 900px;
	margin: 0 auto 32px;
}

.funding-callout__icon {
	flex: 0 0 auto;
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
}

.funding-callout__text {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 500;
	letter-spacing: normal;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--white);
	margin: 0;
}

.evidence-closing-line {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 500;
	letter-spacing: normal;
	font-size: 1.05rem;
	color: var(--navy);
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.evidence-stat__source {
	display: block;
	font-family: var(--font-body);
	font-size: 0.72rem;
	color: var(--blue);
	text-decoration: underline;
	margin-top: 6px;
}

.evidence-stat__source--pending {
	color: var(--text-body);
	opacity: 0.55;
	text-decoration: none;
	font-style: italic;
}

/* Per-card expandable source (collapsed by default) */
.evidence-source {
	margin-top: 10px;
}

.evidence-source__summary {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	list-style: none;
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--text-body);
	opacity: 0.65;
}

.evidence-source__summary::-webkit-details-marker {
	display: none;
}

.evidence-source[open] .evidence-source__summary {
	opacity: 1;
}

.evidence-source__chevron {
	display: inline-flex;
	color: var(--accent-purple);
	transition: transform 0.2s ease;
}

.evidence-source[open] .evidence-source__chevron {
	transform: rotate(180deg);
}

/* Per-card always-visible source tags (Data & Evidence page cards) */
.evidence-source--tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
}

.evidence-source__label {
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--text-body);
	opacity: 0.55;
	margin-right: 2px;
}

.evidence-source__tag {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background-color: #F3EFFD;
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 4px 10px;
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--accent-purple);
	text-decoration: none;
	transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.evidence-source__tag:hover,
.evidence-source__tag:focus-visible {
	transform: translateY(-2px) scale(1.03);
	background-color: #E4D9FC;
	border-color: var(--accent-purple);
	color: var(--navy);
}

.evidence-source__tag-icon {
	flex: 0 0 auto;
}

.evidence-source__tag--pending {
	background-color: var(--gray-light);
	color: var(--text-body);
	opacity: 0.7;
	font-style: italic;
	font-weight: 500;
	cursor: default;
}

@media (prefers-reduced-motion: reduce) {
	.evidence-source__tag {
		transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
	}

	.evidence-source__tag:hover,
	.evidence-source__tag:focus-visible {
		transform: none;
	}
}

/* Cancer Burden — region comparison card (non-numeric, sits inside .evidence-stats) */
.region-split {
	display: flex;
	align-items: stretch;
	gap: 16px;
	margin: 4px 0 12px;
}

.region-split__half {
	flex: 1 1 0;
}

.region-split__label {
	font-family: var(--font-body);
	text-transform: none;
	letter-spacing: normal;
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--navy);
	margin: 0 0 4px;
}

.region-split__detail {
	font-family: var(--font-body);
	text-transform: none;
	letter-spacing: normal;
	font-weight: 400;
	font-size: 0.8rem;
	color: var(--text-body);
	opacity: 0.8;
	margin: 0;
}

.region-split__divider {
	width: 1px;
	background-color: var(--gray-light);
}

.region-split__summary {
	margin-top: 8px;
}

/* Regulatory Progress — secondary, lighter-weight styling */
.section--secondary {
	padding-top: 48px;
	padding-bottom: 48px;
}

.regulatory-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 24px;
}

.regulatory-card {
	background-color: var(--white);
	border: 1px solid var(--gray-light);
	border-radius: 12px;
	padding: 20px 16px;
	text-align: center;
}

.regulatory-card__badge,
.stat-badge {
	display: inline-block;
	background-color: var(--gold);
	color: var(--navy);
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.65rem;
	padding: 3px 10px;
	border-radius: 999px;
	margin-top: -8px;
	margin-bottom: 10px;
}

.regulatory-card__figure {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	color: var(--blue);
	margin: 0 0 8px;
}

.regulatory-card__label {
	font-family: var(--font-body);
	text-transform: none;
	letter-spacing: normal;
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--navy);
	margin: 0 0 8px;
	line-height: 1.4;
}

.regulatory-card__detail {
	font-family: var(--font-body);
	text-transform: none;
	letter-spacing: normal;
	font-weight: 400;
	font-size: 0.8rem;
	color: var(--text-body);
	opacity: 0.85;
	margin: 0 0 10px;
	line-height: 1.5;
}

.regulatory-card__source {
	font-family: var(--font-body);
	font-size: 0.72rem;
	color: var(--blue);
	text-decoration: underline;
}

.regulatory-card__source--pending {
	color: var(--text-body);
	opacity: 0.6;
	text-decoration: none;
	font-style: italic;
}

.regulatory-callout {
	margin-top: 8px;
}

@media (max-width: 782px) {
	.regulatory-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 680px) {
	.region-split {
		flex-direction: column;
	}

	.region-split__divider {
		display: none;
	}
}

/* Sources */
.sources-list {
	max-width: 640px;
	margin: 0 auto 20px;
	padding-left: 20px;
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.88rem;
	line-height: 1.8;
	color: var(--text-body);
}

/* Footer */
.site-footer {
	background-color: var(--navy);
	color: var(--gray-light);
	padding: 48px 24px 32px;
}

.site-footer a {
	color: var(--light-blue);
}

.site-footer__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.site-footer__social {
	display: flex;
	gap: 12px;
}

.site-footer__social .share-icon {
	width: 36px;
	height: 36px;
	font-size: 0.85rem;
}

.site-footer__social .share-icon svg {
	width: 16px;
	height: 16px;
}

.site-footer__nav ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.site-footer__nav a {
	font-size: 0.9rem;
}

.site-footer__copy {
	font-size: 0.85rem;
	color: rgba(229, 231, 235, 0.7);
	width: 100%;
	margin-top: 24px;
}

@media (max-width: 782px) {
	.objectives__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.evidence-stats {
		grid-template-columns: 1fr;
	}

	.access-gap-grid {
		grid-template-columns: 1fr;
	}

	.funding-stats {
		grid-template-columns: 1fr;
	}

	.funding-callout {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 560px) {
	.objectives__grid {
		grid-template-columns: 1fr;
	}

	.pdf-callout {
		flex-direction: column;
		text-align: center;
		padding: 36px 24px;
	}
}

@media (max-width: 640px) {
	.nav-toggle {
		display: flex;
	}

	.primary-navigation {
		display: none;
		width: 100%;
		order: 3;
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-navigation ul {
		flex-direction: column;
		align-items: center;
		gap: 18px;
		padding: 20px 0 8px;
	}

	.site-header__inner {
		flex-wrap: wrap;
	}
}

/* Cookie consent banner */
.cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 90;
	background-color: var(--navy);
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.cookie-banner.is-visible {
	transform: translateY(0);
}

.cookie-banner__inner {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.cookie-banner__text {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.9rem;
	color: var(--white);
	margin: 0;
	flex: 1 1 320px;
}

.cookie-banner__text a {
	color: var(--gold);
	text-decoration: underline;
}

.cookie-banner__accept {
	flex: 0 0 auto;
	padding: 10px 28px;
	font-size: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
	.cookie-banner {
		transition: none;
	}
}

/* Sign the Initiative — coming soon modal */
.mtmf-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background-color: rgba(11, 29, 58, 0.6);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease;
}

.mtmf-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.mtmf-modal__dialog {
	background-color: var(--white);
	border-radius: 20px;
	max-width: 440px;
	width: 100%;
	padding: 40px 32px;
	position: relative;
	text-align: center;
	transform: translateY(16px) scale(0.98);
	transition: transform 0.25s ease;
	box-shadow: 0 20px 60px rgba(11, 29, 58, 0.35);
}

.mtmf-modal.is-open .mtmf-modal__dialog {
	transform: translateY(0) scale(1);
}

.mtmf-modal__dialog--prelaunch {
	background-color: var(--gray-light);
}

.mtmf-modal__dialog--prelaunch .mtmf-modal__text {
	color: var(--navy);
}

.mtmf-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	border: none;
	background: transparent;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--navy);
	cursor: pointer;
}

.mtmf-modal__title {
	margin-bottom: 12px;
}

.mtmf-modal__text {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	color: var(--text-body);
	margin: 0 0 24px;
}

.mtmf-modal__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mtmf-modal__input {
	font-family: var(--font-body);
	font-size: 1rem;
	padding: 12px 16px;
	border: 1px solid var(--gray-light);
	border-radius: 999px;
	text-align: center;
}

.mtmf-modal__input:focus {
	outline: 2px solid var(--blue);
	outline-offset: 2px;
}

.mtmf-modal__select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	color: var(--navy);
	background-color: var(--white);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E4DB7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 14px;
	padding-right: 40px;
	cursor: pointer;
}

.mtmf-modal__select:invalid {
	color: var(--text-body);
	opacity: 0.7;
}

.mtmf-modal__consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	text-align: left;
	padding: 2px 4px;
}

.mtmf-modal__checkbox {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--blue);
	cursor: pointer;
}

.mtmf-modal__consent-label {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--text-body);
	cursor: pointer;
}

.mtmf-modal__consent-label a {
	color: var(--blue);
	text-decoration: underline;
}

.mtmf-modal__submit {
	width: 100%;
}

.mtmf-modal__input:disabled,
.mtmf-modal__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.mtmf-modal__error {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 500;
	letter-spacing: normal;
	font-size: 0.88rem;
	color: #C0392B;
	margin: 4px 0 0;
	text-align: center;
}

.mtmf-modal__state {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 500;
	letter-spacing: normal;
	color: var(--navy);
	margin: 0;
}

body.mtmf-modal-open {
	overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
	.mtmf-modal,
	.mtmf-modal__dialog {
		transition: none;
	}
}

/* ==========================================================================
   Progress page
   ========================================================================== */

.progress-disclaimer {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	background-color: #FFF8E1;
	background-image: repeating-linear-gradient(
		135deg,
		rgba(255, 193, 7, 0.07),
		rgba(255, 193, 7, 0.07) 10px,
		transparent 10px,
		transparent 20px
	);
	border: 2px solid var(--gold);
	border-radius: 16px;
	padding: 28px 32px;
	max-width: 880px;
	margin: 0 auto;
}

.progress-disclaimer__icon {
	flex: 0 0 auto;
	color: var(--navy);
	margin-top: 2px;
}

.progress-disclaimer__label {
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.85rem;
	color: var(--navy);
	margin: 0 0 8px;
}

.progress-disclaimer__text {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.98rem;
	line-height: 1.6;
	color: var(--text-body);
	margin: 0;
}

.progress-counter {
	text-align: center;
	max-width: 780px;
	margin: 32px auto 0;
}

.progress-counter__figure {
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--white);
	margin: 0 0 14px;
}

.progress-counter__unavailable {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 500;
	letter-spacing: normal;
	font-size: 0.85rem;
	color: var(--white);
	opacity: 0.85;
	margin: 0 0 14px;
}

.progress-milestone {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--gray-light);
}

.progress-milestone__figure {
	font-family: var(--font-heading);
	text-transform: none;
	font-weight: 500;
	letter-spacing: normal;
	font-size: 0.95rem;
	color: var(--text-body);
	margin: 0;
}

.progress-milestone__dots {
	display: flex;
	gap: 6px;
}

.progress-milestone__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--gray-light);
	border: 1.5px solid #C7CCD6;
}

.progress-milestone__dot.is-filled {
	background-color: var(--gold);
	border-color: var(--gold);
}

.progress-milestone__info {
	position: relative;
}

.progress-milestone__info summary {
	list-style: none;
	cursor: pointer;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1.5px solid var(--blue);
	color: var(--blue);
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.progress-milestone__info summary::-webkit-details-marker {
	display: none;
}

.progress-milestone__info[open] summary {
	background-color: var(--blue);
	color: var(--white);
}

.progress-milestone__info p {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 10;
	width: 260px;
	background-color: var(--navy);
	color: var(--white);
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.82rem;
	line-height: 1.5;
	padding: 12px 14px;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(11, 29, 58, 0.25);
	margin: 0;
}

.progress-map__note {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.95rem;
	color: var(--text-body);
	opacity: 0.85;
	max-width: 720px;
	margin: 8px 0 0;
}

.progress-layout {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 32px;
}

.progress-layout__map {
	flex: 1 1 520px;
	min-width: 0;
}

.progress-layout__table {
	flex: 1 1 420px;
	min-width: 0;
}

.progress-map {
	position: relative;
	background-color: var(--white);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(11, 29, 58, 0.08);
}

.progress-map__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 16px;
}

.progress-map__legend-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-body);
	font-size: 0.82rem;
	color: var(--text-body);
}

.progress-map__swatch {
	display: inline-block;
	width: 14px;
	height: 14px;
	border-radius: 4px;
}

.progress-map__swatch--zero {
	background-color: #E8E6F0;
	border: 1px solid #D6D2E6;
}

.progress-map__swatch--progress {
	background: linear-gradient(90deg, #E8E6F0 0%, #D9CDF2 15%, #B993EC 45%, var(--accent-purple) 100%);
}

.progress-map__swatch--met {
	background-color: var(--gold);
}

.progress-map__svg {
	width: 100%;
}

.progress-map__svg svg {
	width: 100%;
	height: auto;
	display: block;
}

.progress-map__svg .eu-context {
	fill: #F6F6F8;
	stroke: #FFFFFF;
	stroke-width: 0.5;
}

.progress-map__svg .eu-country {
	fill: #E8E6F0;
	stroke: #FFFFFF;
	stroke-width: 0.6;
	cursor: pointer;
	transition: fill 0.2s ease-out;
}

.progress-map__svg .eu-country.is-zero {
	fill: #E8E6F0;
	stroke: #FFFFFF;
	stroke-width: 0.6;
}

.progress-map__svg .eu-country.is-met {
	fill: var(--gold);
}

.progress-map__svg .eu-country:hover,
.progress-map__svg .eu-country:focus {
	stroke: var(--navy);
	stroke-width: 1.4;
	outline: none;
}

.progress-map__badge {
	pointer-events: none;
}

.progress-map__badge-circle {
	fill: var(--navy);
	stroke: var(--white);
	stroke-width: 0.8;
}

.progress-map__badge-check {
	fill: none;
	stroke: var(--gold);
	stroke-width: 1.1;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.progress-map__tooltip {
	position: absolute;
	z-index: 10;
	background-color: var(--navy);
	color: var(--white);
	font-family: var(--font-body);
	font-size: 0.82rem;
	line-height: 1.5;
	padding: 10px 14px;
	border-radius: 10px;
	pointer-events: none;
	max-width: 220px;
	box-shadow: 0 8px 24px rgba(11, 29, 58, 0.25);
}

.progress-map__tooltip strong {
	font-family: var(--font-heading);
	font-size: 0.88rem;
}

.progress-map__tooltip-check {
	color: var(--gold);
}

.progress-map__credit {
	font-family: var(--font-body);
	font-size: 0.72rem;
	color: var(--text-body);
	opacity: 0.7;
	margin-top: 12px;
}

.progress-map__credit a {
	color: var(--blue);
}

.progress-table__scroll {
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.progress-table {
	width: 100%;
	min-width: 480px;
	border-collapse: collapse;
	font-family: var(--font-body);
	font-size: 0.9rem;
}

.progress-table th,
.progress-table td {
	text-align: left;
	padding: 10px 12px;
	border-bottom: 1px solid var(--gray-light);
}

.progress-table th:first-child,
.progress-table td:first-child {
	min-width: 8.5rem;
	white-space: nowrap;
}

.progress-table thead button {
	background: none;
	border: none;
	padding: 0;
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.78rem;
	color: var(--navy);
	cursor: pointer;
}

.progress-table thead button[aria-sort="ascending"]::after {
	content: " \25B2";
}

.progress-table thead button[aria-sort="descending"]::after {
	content: " \25BC";
}

.progress-table__check {
	color: var(--gold);
	font-weight: 700;
}

.progress-table__loading {
	font-family: var(--font-body);
	font-size: 0.82rem;
	color: var(--text-body);
	opacity: 0.7;
	margin-top: 8px;
}

.progress-footer-cta {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.progress-footer-cta__text {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.98rem;
	color: var(--text-body);
	margin: 0 0 24px;
}

@media (max-width: 900px) {
	.progress-layout {
		flex-direction: column-reverse;
	}
}

@media (max-width: 560px) {
	.progress-disclaimer {
		flex-direction: column;
		padding: 24px;
	}
}

/* ==========================================================================
   Data & Evidence — tabbed layout (sticky tabs + 3 reusable components)
   ========================================================================== */

.section-divider {
	background-color: var(--white);
}

.section-divider__inner {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 40px 0;
}

.section-divider__label {
	flex: 0 0 auto;
	font-family: var(--font-heading);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.78rem;
	color: var(--text-body);
	opacity: 0.55;
	white-space: nowrap;
}

.section-divider__bar {
	flex: 1 1 auto;
	height: 5px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--accent-purple), var(--gap-red), #FF7A45);
}

@media (max-width: 480px) {
	.section-divider__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		padding: 32px 0;
	}

	.section-divider__bar {
		width: 100%;
	}
}

.data-tabs {
	position: sticky;
	top: 0;
	z-index: 5;
	background-color: var(--white);
	border-bottom: 1px solid var(--gray-light);
}

.data-tabs__inner {
	display: flex;
	gap: 4px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.data-tabs__tab {
	flex: 0 0 auto;
	font-family: var(--font-heading);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.85rem;
	color: var(--text-body);
	background: none;
	border: none;
	border-bottom: 3px solid transparent;
	padding: 18px 16px;
	cursor: pointer;
	white-space: nowrap;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.data-tabs__tab:hover {
	color: var(--navy);
}

.data-tabs__tab.is-active {
	color: var(--navy);
	border-bottom-color: var(--accent-purple);
}

.data-category {
	scroll-margin-top: 64px;
}

/* EU vs World: interactive sub-tab group with Chart.js charts. Brand
   colors here are scoped custom properties rather than overrides of the
   site-wide --navy/--gold tokens, since the exact hex values requested
   for this component (#12206b, #e8a020) differ slightly from the site's
   existing --navy/--gold and shouldn't shift unrelated elements. */
.world-tabs {
	--world-navy: #12206b;
	--world-purple: #7c39f5;
	--world-gold: #e8a020;
	--world-coral: #ff5a3c;
}

.world-tabs__nav {
	display: flex;
	gap: 4px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-bottom: 2px solid var(--gray-light);
	margin-bottom: 24px;
}

.world-tabs__tab {
	flex: 0 0 auto;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--text-body);
	opacity: 0.65;
	background: none;
	border: none;
	border-bottom: 3px solid transparent;
	padding: 14px 18px;
	cursor: pointer;
	white-space: nowrap;
	transition: color 0.15s ease, opacity 0.15s ease, border-color 0.15s ease;
}

.world-tabs__tab:hover {
	opacity: 1;
	color: var(--navy);
}

.world-tabs__tab.is-active {
	opacity: 1;
	color: var(--navy);
	border-bottom-color: var(--world-gold);
}

.world-tabs__tab:focus-visible {
	outline: 2px solid var(--accent-purple);
	outline-offset: 2px;
}

.world-tabs__panel[hidden] {
	display: none;
}

.world-tabs__card {
	text-align: left;
}

.animated-stat__figure.world-tabs__headline {
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	color: var(--navy);
	margin: 0 0 12px;
}

.world-tabs__stat-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin: 16px 0;
}

.world-tabs__stat {
	flex: 1 1 200px;
	background-color: #f7f5ff;
	border-radius: 12px;
	padding: 18px;
}

.world-tabs__stat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba(124, 57, 245, 0.12);
	color: var(--world-purple);
	margin-bottom: 10px;
}

.world-tabs__stat--accent .world-tabs__stat-icon {
	background-color: rgba(255, 90, 60, 0.12);
	color: var(--world-coral);
}

.world-tabs__stat-num {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--navy);
	margin: 0;
}

.world-tabs__stat--accent .world-tabs__stat-num {
	color: var(--world-coral);
}

.world-tabs__stat-label {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--text-body);
	opacity: 0.7;
	margin: 4px 0 0;
}

.world-tabs__callout {
	margin-top: 24px;
}

@media (max-width: 480px) {
	.world-tabs__tab {
		padding: 12px 14px;
		font-size: 0.78rem;
	}

	.world-tabs__stat {
		flex: 1 1 100%;
	}
}

.data-category__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	align-items: start;
}

.data-category__subhead {
	font-size: 1.05rem;
	margin: 40px 0 20px;
}

.data-category__subhead--gap {
	color: var(--gap-red);
}

.gap-accent {
	color: var(--gap-red);
}

.data-category__subhead-note {
	font-family: var(--font-body);
	font-size: 0.85rem;
	color: var(--text-body);
	opacity: 0.65;
	margin: -12px 0 20px;
}

/* Animated stat */
.animated-stat {
	background-color: var(--white);
	border-radius: 16px;
	padding: 28px 24px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(11, 29, 58, 0.08);
}

.animated-stat__figure {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(1.6rem, 4vw, 2.2rem);
	line-height: 1.15;
	color: var(--accent-purple);
	margin: 0 0 8px;
}

.animated-stat__period {
	font-family: var(--font-body);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.7rem;
	color: var(--text-body);
	opacity: 0.55;
	margin: -4px 0 10px;
}

.animated-stat--phrase {
	position: relative;
	overflow: hidden;
	text-align: left;
	padding-left: 30px;
}

.animated-stat--phrase::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 4px;
	background: var(--gradient-brand);
}

.animated-stat--phrase .animated-stat__figure {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: var(--navy);
	font-size: clamp(1rem, 2.6vw, 1.4rem);
	margin: 0 0 4px;
}

.animated-stat__icon {
	flex: 0 0 auto;
	display: inline-flex;
	margin-top: 0.2em;
	color: var(--accent-purple);
}

.animated-stat--phrase .evidence-source {
	margin-top: 6px;
}

.animated-stat--phrase .evidence-stat__source {
	line-height: 1.4;
}

.animated-stat--wide {
	grid-column: 1 / -1;
}

.animated-stat--wide .animated-stat__figure {
	white-space: nowrap;
	font-size: clamp(1.4rem, 5vw, 2.4rem);
}

.animated-stat--wide .animated-stat__text {
	max-width: 640px;
	margin: 0 auto;
}

.animated-stat--wide.animated-stat--phrase .animated-stat__figure {
	white-space: normal;
	font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.animated-stat--wide.animated-stat--phrase .animated-stat__text {
	max-width: none;
	margin: 0;
}

.animated-stat__text {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.92rem;
	line-height: 1.5;
	color: var(--text-body);
	margin: 0;
}

/* Comparison bar */
.comparison-bar {
	background-color: var(--white);
	border-radius: 16px;
	padding: 28px 24px;
	box-shadow: 0 4px 20px rgba(11, 29, 58, 0.08);
	text-align: left;
	grid-column: 1 / -1;
	max-width: 640px;
	margin: 0 auto;
}

.comparison-bar__row {
	margin-bottom: 16px;
}

.comparison-bar__row:last-of-type {
	margin-bottom: 0;
}

.comparison-bar__row-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 6px;
}

.comparison-bar__value {
	color: var(--accent-purple);
}

.comparison-bar__track {
	background-color: var(--gray-light);
	border-radius: 999px;
	height: 14px;
	overflow: hidden;
}

.comparison-bar__fill {
	height: 100%;
	width: 0;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--blue), var(--accent-purple));
	transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.comparison-bar__subtext {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.9rem;
	color: var(--text-body);
	margin: 16px 0 0;
}

.comparison-bar__caveat {
	font-family: var(--font-body);
	font-style: italic;
	font-size: 0.78rem;
	color: var(--text-body);
	opacity: 0.6;
	margin: 8px 0 0;
}

/* Expandable row */
.expandable-row {
	grid-column: 1 / -1;
	background-color: var(--white);
	border: 1px solid var(--gray-light);
	border-radius: 12px;
	padding: 4px 20px;
}

.expandable-row + .expandable-row {
	margin-top: 10px;
}

.expandable-row__summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 0;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.98rem;
	color: var(--navy);
}

.expandable-row__summary::-webkit-details-marker {
	display: none;
}

.expandable-row__toggle {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1.5px solid var(--accent-purple);
	color: var(--accent-purple);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	line-height: 1;
	transition: transform 0.2s ease;
}

.expandable-row[open] .expandable-row__toggle {
	transform: rotate(45deg);
}

.expandable-row__detail {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--text-body);
	margin: 0 0 16px;
}

/* Gradient callout */
.data-callout {
	grid-column: 1 / -1;
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	padding: 32px;
	margin-top: 8px;
	background: linear-gradient(120deg, #2B4CB1, #743DEC, #F6C444, #743DEC, #2B4CB1);
	background-size: 300% 300%;
	animation: mtmf-payoff-gradient-flow 8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
	.data-callout {
		animation: none;
		background-position: 0% 50%;
	}
}

.data-callout__text {
	font-family: var(--font-body);
	text-transform: none;
	font-weight: 500;
	letter-spacing: normal;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--white);
	margin: 0;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

/* References accordion — reuses expandable-row, styled as a plain link list */
.expandable-row--references {
	margin-top: 24px;
}

.references-list {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

.references-list li + li {
	margin-top: 10px;
}

.references-list a {
	font-family: var(--font-body);
	font-size: 0.9rem;
	color: var(--blue);
	text-decoration: underline;
}

/* This page's own evidence-stat__source is reused as-is inside all three
   new components for citation text, so no separate source style is defined
   here — see .evidence-stat__source / --pending earlier in this file. */

/* Press & Media — Quick Facts list */
.press-quick-facts {
	max-width: 720px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.press-quick-facts li {
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--text-body);
	padding: 14px 0;
	border-bottom: 1px solid var(--gray-light);
}

.press-quick-facts li:first-child {
	border-top: 1px solid var(--gray-light);
}

@media (max-width: 640px) {
	.data-tabs__inner {
		justify-content: flex-start;
	}
}

/* Existing Policies — infographic-style cards */
.policy-card-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.policy-card {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	gap: 22px;
	background-color: var(--white);
	border-radius: 16px;
	padding: 28px 28px 28px 32px;
	box-shadow: 0 4px 20px rgba(11, 29, 58, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.policy-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(11, 29, 58, 0.14);
}

.policy-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 5px;
	background-color: var(--accent-purple);
	border-radius: 16px 0 0 16px;
}

.policy-card__badge {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background-color: var(--accent-purple);
	color: var(--white);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.7rem;
}

.policy-card__body {
	flex: 1 1 auto;
	min-width: 0;
}

.policy-card__title {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--navy);
	margin: 0 0 10px;
}

.policy-card__tag {
	display: inline-block;
	background-color: #EEE8FD;
	color: var(--accent-purple);
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 600;
	padding: 5px 14px;
	border-radius: 999px;
	margin: 0 0 14px;
}

.policy-card__gap-statement {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--gap-red);
	margin: 0 0 10px;
}

.policy-card__text {
	font-family: var(--font-body);
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--text-body);
	margin: 0;
}

.policy-card .evidence-source {
	margin-top: 14px;
}

@media (max-width: 600px) {
	.policy-card {
		flex-direction: column;
		gap: 14px;
		padding: 24px 20px;
	}

	.policy-card__badge {
		width: 56px;
		height: 56px;
		font-size: 1.3rem;
	}
}

/* Transition divider between the gaps list and the closing callout */
.policy-divider {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 48px 0 28px;
}

.policy-divider::before,
.policy-divider::after {
	content: '';
	flex: 1 1 auto;
	height: 1px;
	background-color: var(--gray-light);
}

.policy-divider__label {
	flex: 0 0 auto;
	font-family: var(--font-heading);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.85rem;
	color: var(--gap-red);
	white-space: nowrap;
}

@media (max-width: 480px) {
	.policy-divider__label {
		font-size: 0.7rem;
		white-space: normal;
		text-align: center;
	}
}

/* Closing gradient callout card */
.policy-callout-card {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	padding: 40px 36px;
	background: linear-gradient(135deg, var(--accent-purple), var(--gap-red), #FF7A45);
	background-size: 300% 300%;
	animation: mtmf-payoff-gradient-flow 10s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
	.policy-callout-card {
		animation: none;
		background-position: 0% 50%;
	}
}

.policy-callout-card__badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: var(--white);
	color: var(--accent-purple);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.5rem;
	margin-bottom: 18px;
}

.policy-callout-card__tag {
	display: inline-block;
	background-color: var(--white);
	color: var(--accent-purple);
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 600;
	padding: 6px 16px;
	border-radius: 999px;
	margin: 0 0 18px;
}

.policy-callout-card__text {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 1.15rem;
	line-height: 1.6;
	color: var(--white);
	margin: 0;
	max-width: 720px;
}

@media (max-width: 600px) {
	.policy-callout-card {
		padding: 30px 22px;
	}

	.policy-callout-card__text {
		font-size: 1.05rem;
	}
}
