:root {
	--teal: #00b2ac;
	--teal-dk: #008a85;
	--teal-lt: #e0f5f4;
	--teal-mid: #b3e8e6;
	--purple: #63406b;
	--purple-dk: #4a2e52;
	--purple-lt: #f5f0f8;
	--purple-mid: #d8c8e0;
	--lavender: #cc75b6;
	--mango: #e89a41;
	--mango-lt: #fef3e2;
	--mango-dk: #b5721e;
	--blue: #0091b3;
	--blue-dk: #006e8a;
	--blue-lt: #e5f4f8;
	--cream: #faf9f7;
	--near-white: #f4f2f0;
	--beige: #f5f1eb;
	--beige-dk: #e8e2d8;
	--white: #ffffff;
	--text: #1a1a1a;
	--text-mid: #4a4a4a;
	--text-lt: #7a7a7a;
	--border: #e2dede;
	--border-lt: #ede9e9;
	--radius-lg: 28px;
	--radius-md: 20px;
	--radius-sm: 12px;
	--shadow: 0 20px 60px rgba(99, 64, 107, 0.10);
	--shadow-lg: 0 32px 80px rgba(99, 64, 107, 0.14);
	--container: min(1180px, calc(100vw - 48px));
}

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

html {
	scroll-behavior: smooth;
}

.homepage :target {
	scroll-margin-block: 30px;
}

.referral :target {
	scroll-margin-block: 6ex;
}

.files :target {
	scroll-margin-block: 186px;
}

body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	background: var(--cream);
	color: var(--text);
	font-size: 15px;
	line-height: 1.72;
}

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

.cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 1rem;
}

a {
	color: inherit;
	text-decoration: none;
}

p {
	margin: 0;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50;
	width: var(--scroll-progress, 0%);
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--lavender), var(--purple));
	box-shadow: 0 0 18px rgba(0, 178, 172, 0.4);
}

.container {
	width: var(--container);
	margin: 0 auto;
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--teal);
}

.eyebrow::before {
	content: "";
	width: 34px;
	height: 1px;
	background: linear-gradient(90deg, var(--teal), transparent);
}

.eyebrow.light {
	color: var(--teal-mid);
}

.eyebrow.light::before {
	background: linear-gradient(90deg, var(--teal-mid), transparent);
}

/* ─── NAV ─── */
.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(245, 241, 235, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--beige-dk);
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 0;
}

.brand-lockup {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.nav-logo {
	height: autp;
	width: 244px;
	display: block;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 4px;
}

.site-nav a {
	font-size: 12px;
	font-weight: 600;
	color: var(--text-mid);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 8px 13px;
	border-radius: 8px;
	transition: color 150ms, background 150ms;
}

.site-nav a:hover {
	color: var(--purple);
	background: var(--beige-dk);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-referral {
	font-size: 12px;
	font-weight: 700;
	font-family: inherit;
	color: var(--purple);
	background: transparent;
	border: 2px solid var(--purple);
	padding: 8px 20px;
	border-radius: 999px;
	cursor: pointer;
	transition: background 150ms, color 150ms;
}

.nav-referral:hover {
	background: var(--purple);
	color: white;
}

.nav-donate {
	font-size: 12px;
	font-weight: 700;
	font-family: inherit;
	color: white;
	background: linear-gradient(135deg, var(--teal), var(--blue));
	border: none;
	padding: 10px 22px;
	border-radius: 999px;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(0, 178, 172, 0.28);
	transition: opacity 150ms, transform 150ms;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.nav-donate:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.nav-files {
	font-size: 12px;
	font-weight: 600;
	font-family: inherit;
	color: var(--text-mid);
	background: transparent;
	border: 2px solid var(--border);
	padding: 9px 18px;
	border-radius: 999px;
	cursor: pointer;
	transition: background 150ms, color 150ms, border-color 150ms;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.nav-files:hover {
	background: var(--near-white);
	color: var(--text);
	border-color: rgba(0, 0, 0, 0.15);
}

.nav-files svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 14px;
	width: 78px;
	border: 2px solid var(--beige-dk);
	border-radius: 999px;
	background: transparent;
	color: var(--purple);
	font: inherit;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.nav-toggle:hover {
	border-color: rgba(0, 0, 0, 0.15);
}

.mobile-nav {
	display: none;
	flex-direction: column;
	gap: 12px;
	padding: 0 24px 18px;
	border-top: 1px solid var(--border-lt);
}

.mobile-nav.is-open {
	display: flex;
}

.mobile-nav a {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-mid);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* ─── HERO ─── */
.hero {
	background: linear-gradient(135deg, #5a3363 0%, #7a5485 35%, #63406b 65%, #4a2e52 100%);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 55% at 12% 20%, rgba(0, 178, 172, 0.18), transparent 55%),
		radial-gradient(ellipse 40% 40% at 88% 80%, rgba(204, 117, 182, 0.18), transparent 50%),
		radial-gradient(ellipse 30% 30% at 75% 10%, rgba(232, 154, 65, 0.12), transparent 45%);
	pointer-events: none;
}

.hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent 5%, rgba(0, 178, 172, 0.7) 35%, rgba(204, 117, 182, 0.5) 65%, transparent 95%);
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 40px;
	align-items: center;
	padding: 80px 0 70px;
	min-height: 520px;
}

.hero-copy {
	position: relative;
	z-index: 1;
}

.hero-eyebrow-badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: rgba(255, 255, 255, 0.92);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 999px;
	margin-bottom: 26px;
}

.hero-eyebrow-dot {
	width: 6px;
	height: 6px;
	background: var(--teal);
	border-radius: 50%;
	flex-shrink: 0;
}

.hero-copy h1 {
	font-size: clamp(2.8rem, 5vw, 4.8rem);
	line-height: 1.04;
	color: white;
	margin-bottom: 6px;
}

.hero-copy h1 em {
	font-style: italic;
	color: var(--teal-mid);
}

.hero-kicker {
	font-size: 1.08rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.78);
	margin-bottom: 20px;
	letter-spacing: 0.01em;
}

.hero-sub {
	font-size: 0.97rem;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.78;
	max-width: 500px;
	border-left: 3px solid var(--teal);
	padding-left: 18px;
	margin-bottom: 34px;
}

.hero-ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn-hero-primary {
	background: white;
	color: var(--purple);
	border: none;
	padding: 13px 28px;
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: transform 150ms, box-shadow 150ms;
}

.btn-hero-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.btn-hero-ghost {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.48);
	padding: 13px 28px;
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: border-color 150ms, background 150ms;
}

.btn-hero-ghost:hover {
	border-color: white;
	background: rgba(255, 255, 255, 0.08);
}

.hero-credentials {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 22px;
	flex-wrap: wrap;
}

.cred-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 10.5px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.75);
	letter-spacing: 0.03em;
}

.cred-badge svg {
	flex-shrink: 0;
}

.cred-sep {
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, 0.22);
}

/* ─── HERO PHOTO PLACEHOLDER ─── */
.hero-photo {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-md);
	min-height: 420px;
	align-self: stretch;
}

.hero-photo-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg,
			#b3d9e0 0%,
			#8abec8 25%,
			#5f9fad 50%,
			#3d7e8c 75%,
			#2a6070 100%);
}

.hero-photo-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 200px;
	background: linear-gradient(180deg, transparent 0%, rgba(30, 60, 40, 0.28) 50%, rgba(30, 60, 40, 0.55) 100%);
}

.hero-photo-label {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(255, 255, 255, 0.15);
	border: 1.5px dashed rgba(255, 255, 255, 0.55);
	border-radius: 10px;
	padding: 20px 28px;
	text-align: center;
	color: white;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	white-space: nowrap;
	backdrop-filter: blur(4px);
}

.hero-photo-label span {
	display: block;
	font-size: 10px;
	font-weight: 400;
	opacity: 0.78;
	margin-top: 5px;
	letter-spacing: 0.03em;
	white-space: normal;
	max-width: 200px;
}

/* ─── STATS STRIP ─── */
.hero-stats-strip {
	background:
		radial-gradient(ellipse 90% 70% at 50% -5%, rgba(255, 255, 255, 0.14), transparent 62%),
		radial-gradient(ellipse 40% 50% at 10% 110%, rgba(0, 178, 172, 0.12), transparent 55%),
		radial-gradient(ellipse 40% 50% at 90% 110%, rgba(204, 117, 182, 0.1), transparent 55%),
		linear-gradient(180deg, #8a6295 0%, #7a5485 60%, #6e4a78 100%);
	padding: 28px 0;
}

.hero-stats-strip .container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.hstat {
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: var(--radius-sm);
	padding: 22px 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
	backdrop-filter: blur(12px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.32),
		inset 0 -1px 0 rgba(0, 0, 0, 0.08),
		0 8px 24px rgba(0, 0, 0, 0.14);
	transition: background 220ms, border-color 220ms, transform 220ms, box-shadow 220ms;
}

.hstat:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(0, 178, 172, 0.45);
	transform: translateY(-4px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.4),
		inset 0 -1px 0 rgba(0, 0, 0, 0.06),
		0 14px 36px rgba(0, 0, 0, 0.18),
		0 0 22px rgba(0, 178, 172, 0.12);
}

.hstat-num {
	font-size: 38px;
	font-weight: 800;
	color: white;
	line-height: 1;
	white-space: nowrap;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.18);
}

.hstat-accent {
	color: var(--teal);
}

.hstat-label {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.45;
	font-weight: 500;
	/* max-width: 160px; */
}

/* ─── GATEWAY ─── */
.gateway {
	background: var(--cream);
}

.gateway-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	max-width: var(--container);
	margin: 0 auto;
}

.gw-card {
	padding: 50px 36px;
	border-right: 1px solid var(--border);
	transition: background 200ms;
	cursor: pointer;
}

.gw-card:last-child {
	border-right: none;
}

.gw-card:hover {
	background: var(--purple-lt);
}

.gw-icon-wrap {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.gw-icon-wrap svg {
	width: 24px;
	height: 24px;
}

.gw-icon-teal {
	background: var(--teal-lt);
}

.gw-icon-teal svg {
	stroke: var(--teal-dk);
}

.gw-icon-purple {
	background: var(--purple-lt);
}

.gw-icon-purple svg {
	stroke: var(--purple);
}

.gw-icon-mango {
	background: var(--mango-lt);
}

.gw-icon-mango svg {
	stroke: var(--mango-dk);
}

.gw-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--purple);
	margin-bottom: 10px;
	line-height: 1.3;
}

.gw-card p {
	font-size: 13px;
	color: var(--text-mid);
	line-height: 1.78;
	margin-bottom: 16px;
}

.gw-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--teal);
	font-size: 13px;
	font-weight: 700;
}

.gw-arrow {
	transition: transform 150ms;
}

.gw-card:hover .gw-arrow {
	transform: translateX(4px);
}

/* ─── SECTION ─── */
.section {
	padding: 100px 0;
}

.section.cream {
	background: var(--cream);
}

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

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

.section.purple {
	background: var(--purple);
}

/* ─── SECTION HEADINGS ─── */
.section-heading h2 {
	margin-top: 16px;
	font-size: clamp(1.9rem, 3.2vw, 3rem);
	line-height: 1.06;
	color: var(--purple);
}

.section-heading.light h2 {
	color: white;
}

.section-heading p:not(.eyebrow) {
	margin-top: 14px;
	color: var(--text-mid);
	font-size: 1rem;
	line-height: 1.75;
	max-width: 56ch;
}

.section-heading.light p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.72);
}

.section-heading.center {
	text-align: center;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}

.section-heading.center .eyebrow {
	justify-content: center;
}

.section-heading.center p {
	margin-left: auto;
	margin-right: auto;
}

.two-col-heading {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: end;
	margin-bottom: 56px;
}

/* ─── CLINICAL WHY ─── */
.clinical-why {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1px;
	background: var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	margin-bottom: 30px;
}

.cw-block {
	background: var(--white);
	padding: 28px 26px;
}

.cw-block.accent {
	background: var(--purple);
}

.cw-num {
	font-size: 40px;
	font-weight: 800;
	color: var(--teal);
	line-height: 1;
	margin-bottom: 6px;
}

.cw-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--purple);
	margin-bottom: 5px;
}

.cw-block.accent .cw-title {
	color: white;
}

.cw-desc {
	font-size: 14px;
	color: var(--text-mid);
	line-height: 1.6;
}

.cw-block.accent .cw-desc {
	color: rgba(255, 255, 255, 0.65);
}

/* ─── CLINICAL MODEL ─── */
.clinical-model-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 30px;
	align-items: start;
	margin-bottom: 44px;
}

.model-spine {
	background: var(--purple);
	border-radius: var(--radius-md);
	padding: 30px 24px;
}

@media (min-width: 1060px) {
	.model-spine {
		position: sticky;
		top: 90px;
	}
}

.model-spine-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--teal-mid);
	margin-bottom: 18px;
}

.pillar-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 13px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-item:last-child {
	border-bottom: none;
}

.pillar-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 5px;
}

.pillar-dot.teal {
	background: var(--teal);
}

.pillar-dot.lavender {
	background: var(--lavender);
}

.pillar-dot.mango {
	background: var(--mango);
}

.pillar-dot.white {
	background: rgba(255, 255, 255, 0.5);
}

.pillar-text strong {
	display: block;
	font-size: 12.5px;
	font-weight: 700;
	color: white;
	margin-bottom: 2px;
}

.pillar-text span {
	font-size: 10.5px;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.45;
}

.therapy-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.therapy-card {
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 22px 20px;
	transition: border-color 200ms, background 200ms, transform 200ms, box-shadow 200ms;
}

.therapy-card:hover {
	border-color: var(--teal);
	background: #fafefe;
	transform: translateY(-4px);
	box-shadow: 0 14px 40px rgba(0, 178, 172, 0.1);
}

.tc-top {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 10px;
}

.tc-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.tc-icon svg {
	width: 20px;
	height: 20px;
}

.tc-icon.teal-bg {
	background: var(--teal-lt);
}

.tc-icon.teal-bg svg {
	stroke: var(--teal-dk);
}

.tc-icon.purple-bg {
	background: var(--purple-lt);
}

.tc-icon.purple-bg svg {
	stroke: var(--purple);
}

.tc-icon.mango-bg {
	background: var(--mango-lt);
}

.tc-icon.mango-bg svg {
	stroke: var(--mango-dk);
}

.tc-icon.blue-bg {
	background: var(--blue-lt);
}

.tc-icon.blue-bg svg {
	stroke: var(--blue-dk);
}

.tc-meta {
	flex: 1;
}

.tc-badge {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 3px 9px;
	border-radius: 999px;
	display: inline-block;
	margin-bottom: 5px;
}

.tc-badge.clinical {
	background: var(--blue-lt);
	color: #005a73;
}

.tc-badge.evidence {
	background: var(--teal-lt);
	color: #005a58;
}

.tc-badge.integrative {
	background: var(--purple-lt);
	color: var(--purple);
}

.tc-title {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--purple);
	line-height: 1.25;
}

.tc-desc {
	font-size: 12px;
	color: var(--text-mid);
	line-height: 1.7;
}

/* ─── OUTCOMES ─── */
.outcomes-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.oc {
	background: var(--teal-lt);
	border: 1px solid rgba(0, 178, 172, 0.16);
	border-radius: var(--radius-sm);
	padding: 22px 16px;
	text-align: center;
}

.oc-num {
	font-size: 32px;
	font-weight: 800;
	color: var(--teal-dk);
	line-height: 1;
}

.oc-label {
	font-size: 11px;
	color: var(--text-mid);
	margin-top: 7px;
	line-height: 1.45;
	font-weight: 500;
}

/* ─── VIDEO ─── */
.video-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 52px;
	align-items: center;
}

.video-frame {
	border-radius: var(--radius-md);
	overflow: clip;
	min-height: 390px;
}

.video-frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	min-height: 390px;
	border: 0;
}

.video-placeholder {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	aspect-ratio: 16/9;
	background: linear-gradient(135deg, #2a1a30 0%, #3d2a47 50%, #1a3a4a 100%);
	cursor: pointer;
}

.vp-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: rgba(0, 0, 0, 0.22);
}

.vp-play {
	width: 62px;
	height: 62px;
	background: rgba(255, 255, 255, 0.92);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 200ms, background 200ms;
}

.vp-play:hover {
	background: white;
	transform: scale(1.08);
}

.vp-play svg {
	width: 20px;
	height: 20px;
	margin-left: 3px;
}

.vp-label {
	color: white;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-align: center;
}

.vp-duration {
	position: absolute;
	bottom: 14px;
	right: 14px;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 9px;
	border-radius: 6px;
}

.video-copy h2 {
	margin-top: 14px;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	color: var(--purple);
	line-height: 1.08;
}

.video-copy > p {
	margin-top: 16px;
	color: var(--text-mid);
	font-size: 0.97rem;
	line-height: 1.78;
}

.video-ctas {
	display: flex;
	gap: 12px;
	margin-top: 26px;
	flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 26px;
	border-radius: 999px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	border: none;
	text-decoration: none;
	transition: transform 150ms, box-shadow 150ms, opacity 150ms;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-teal {
	background: var(--teal);
	color: white;
	box-shadow: 0 8px 24px rgba(0, 178, 172, 0.28);
}

.btn-teal:hover {
	background: var(--teal-dk);
}

.btn-purple {
	background: var(--purple);
	color: white;
	box-shadow: 0 8px 24px rgba(99, 64, 107, 0.22);
}

.btn-purple:hover {
	background: var(--purple-dk);
}

.btn-outline-purple {
	background: transparent;
	color: var(--purple);
	border: 2px solid var(--purple);
	padding: 10px 24px;
}

.btn-outline-purple:hover {
	background: var(--purple);
	color: white;
}

.btn-outline-white {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.45);
}

.btn-outline-white:hover {
	border-color: white;
	background: rgba(255, 255, 255, 0.1);
}

.btn-white {
	background: white;
	color: var(--purple);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.btn-blue {
	background: var(--blue);
	color: white;
	box-shadow: 0 8px 24px rgba(0, 145, 179, 0.28);
}

.btn-blue:hover {
	background: var(--blue-dk);
}

.btn-lg {
	padding: 14px 32px;
	font-size: 14.5px;
}

.btn-full {
	width: 100%;
	justify-content: center;
}

/* ─── METHODS GRID ─── */
.methods-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
}

.method-card {
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 28px 24px;
	background: var(--white);
	transition: transform 200ms, box-shadow 200ms, border-color 200ms;
	display: flex;
	flex-direction: column;
}

.method-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
	border-color: rgba(99, 64, 107, 0.2);
}

.method-badge {
	display: inline-block;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 11px;
	border-radius: 999px;
	margin-bottom: 14px;
	width: fit-content;
}

.method-badge.evidence {
	background: var(--teal-lt);
	color: var(--teal-dk);
}

.method-badge.daily {
	background: var(--purple-lt);
	color: var(--purple);
}

.method-badge.co-occur {
	background: var(--mango-lt);
	color: var(--mango-dk);
}

.method-badge.systems {
	background: var(--blue-lt);
	color: var(--blue-dk);
}

.method-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--purple);
	line-height: 1.25;
	margin-bottom: 10px;
}

.method-card p {
	font-size: 12.5px;
	color: var(--text-mid);
	line-height: 1.72;
	flex-grow: 1;
}

.method-quote {
	margin-top: 14px;
	border-left: 2px solid var(--teal);
	padding: 10px 14px;
	background: var(--teal-lt);
	border-radius: 0 8px 8px 0;
	font-size: 11px;
	font-style: italic;
	color: var(--text-mid);
	line-height: 1.65;
}

.method-quote cite {
	display: block;
	margin-top: 6px;
	font-style: normal;
	font-size: 10px;
	color: var(--text-lt);
	font-weight: 600;
	letter-spacing: 0.04em;
}

/* ─── EXP CARDS (dark) ─── */
.section.purple .section-heading h2 {
	color: white;
}

.section.purple .section-heading p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.7);
}

.exp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 48px;
}

.exp-card {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-md);
	padding: 28px 22px;
	transition: background 200ms, transform 200ms;
}

.exp-card:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-4px);
}

.exp-icon {
	width: 52px;
	height: 52px;
	border-radius: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.exp-icon svg {
	width: 26px;
	height: 26px;
	stroke: white;
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.exp-icon.teal {
	background: var(--teal);
}

.exp-icon.lavender {
	background: var(--lavender);
}

.exp-icon.mango {
	background: var(--mango);
}

.exp-icon.blue {
	background: var(--blue);
}

.exp-icon.purple-lt {
	background: rgba(255, 255, 255, 0.2);
}

.exp-card h3 {
	font-size: 14.5px;
	font-weight: 700;
	color: white;
	margin-bottom: 8px;
	line-height: 1.3;
}

.exp-card p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.7;
}

.exp-tag {
	display: inline-block;
	margin-top: 12px;
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--teal-mid);
}

/* ─── EXP DEEP DIVE ─── */
.exp-deep-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 48px;
}

.exp-deep-card {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: 0 18px 50px rgba(12, 17, 26, 0.06);
	transition: transform 200ms, box-shadow 200ms;
}

.exp-deep-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.exp-deep-header {
	padding: 28px 28px 22px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.exp-deep-header.teal-bg {
	background: var(--teal);
}

.exp-deep-header.purple-bg {
	background: var(--purple);
}

.exp-deep-header.mango-bg {
	background: var(--mango);
}

.exp-deep-header.lavender-bg {
	background: var(--lavender);
}

.exp-deep-header svg {
	width: 32px;
	height: 32px;
	stroke: white;
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex-shrink: 0;
	margin-top: 3px;
}

.exp-deep-tag {
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 6px;
}

.exp-deep-header h3 {
	font-size: 18px;
	font-weight: 700;
	color: white;
	line-height: 1.25;
}

.exp-deep-body {
	background: white;
	padding: 24px 28px;
}

.exp-deep-body p {
	font-size: 12.5px;
	color: var(--text-mid);
	line-height: 1.75;
}

.exp-deep-quote {
	margin-top: 16px;
	border-left: 3px solid var(--teal);
	padding: 12px 16px;
	background: var(--cream);
	border-radius: 0 10px 10px 0;
	font-size: 12px;
	font-style: italic;
	color: var(--text-mid);
	line-height: 1.65;
}

.exp-deep-quote cite {
	display: block;
	margin-top: 6px;
	font-style: normal;
	font-size: 10px;
	color: var(--text-lt);
	font-weight: 600;
	letter-spacing: 0.04em;
}

/* ─── EVIDENCE ─── */
.proof-layout {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 40px;
	align-items: end;
	margin-top: 48px;
}

.report-cover {
	display: block;
	border-radius: var(--radius-lg);
	border: 0.5px solid #ededed;
	overflow: clip;
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.report-cover:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 36px rgba(12, 17, 26, 0.1);
}

.evidence-cards {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ev-card {
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 24px 26px;
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 18px;
	align-items: start;
	background: var(--white);
	transition: transform 200ms, box-shadow 200ms;
}

.ev-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.ev-num {
	font-size: 46px;
	font-weight: 800;
	color: var(--purple);
	line-height: 1;
	letter-spacing: -0.04em;
}

.ev-num span {
	font-size: 20px;
	color: var(--teal);
	font-weight: 700;
}

.ev-label {
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 4px;
}

.ev-source {
	font-size: 11.5px;
	color: var(--text-lt);
}

.voice-panel {
	background: var(--purple);
	border-radius: var(--radius-md);
	padding: 32px 28px;
}

.voice-title {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--teal-mid);
	margin-bottom: 20px;
}

.voice-quote {
	border-left: 3px solid var(--teal);
	padding: 12px 16px;
	margin-bottom: 12px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 0 10px 10px 0;
}

.voice-quote p {
	font-size: 14.5px;
	font-style: italic;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.65;
}

.voice-quote cite {
	display: block;
	margin-top: 7px;
	font-size: 10.5px;
	color: rgba(255, 255, 255, 0.42);
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.accred-row {
	margin-top: 22px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.accred-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 10px;
	padding: 11px 14px;
}

.accred-badge svg {
	width: 16px;
	height: 16px;
	stroke: var(--teal-mid);
	fill: none;
	stroke-width: 2;
	flex-shrink: 0;
}

.accred-badge span {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.75);
	font-weight: 500;
}

/* ─── PATHWAY CARDS ─── */
.pathways-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.pathway-card {
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: 0 14px 40px rgba(12, 17, 26, 0.06);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.pathway-header {
	padding: 32px 32px 24px;
}

.pathway-header.teal-bg {
	background: var(--teal);
}

.pathway-header.blue-bg {
	background: var(--blue);
}

.pathway-audience {
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 8px;
}

.pathway-header h3 {
	font-size: 20px;
	font-weight: 700;
	color: white;
	line-height: 1.25;
}

.pathway-header p {
	margin-top: 10px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.7;
}

.pathway-body {
	background: white;
	padding: 28px 32px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.pathway-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	flex-grow: 1;
}

.pathway-steps li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 13px 0;
	border-bottom: 1px solid var(--border-lt);
	font-size: 13px;
	color: var(--text-mid);
}

.pathway-steps li:last-child {
	border-bottom: none;
	flex-grow: 1;
}

.spacer {
	flex: 1;
}

.step-num {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	color: white;
	margin-top: 1px;
}

.step-num.t {
	background: var(--teal);
}

.step-num.b {
	background: var(--blue);
}

.step-body strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 3px;
}

.pathway-cta {
	margin-top: 20px;
	text-wrap: balance;
	text-align: center;
}

/* ─── DONOR ─── */
.donor-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 48px;
}

.donor-card {
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: transform 200ms, box-shadow 200ms;
	display: flex;
	flex-direction: column;
}

.donor-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.donor-card.featured {
	border: 2px solid var(--teal);
}

.donor-card-top {
	padding: 24px 22px 18px;
	background: var(--near-white);
}

.donor-card.featured .donor-card-top {
	background: var(--teal-lt);
}

.donor-tier-name {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-lt);
	margin-bottom: 6px;
}

.donor-card.featured .donor-tier-name {
	color: var(--teal-dk);
}

.donor-icon-wrap {
	width: 36px;
	height: 36px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.donor-icon-wrap svg {
	width: 30px;
	height: 30px;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

.donor-card-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--purple);
}

.donor-card-body {
	padding: 18px 22px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.donor-impact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	flex-grow: 1;
}

.donor-impact-list li {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 12px;
	color: var(--text-mid);
	padding: 5px 0;
}

.donor-check {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--teal-lt);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.donor-check svg {
	width: 10px;
	height: 10px;
	stroke: var(--teal-dk);
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.donor-cta {
	margin-top: 16px;
}

.impact-totals {
	background: var(--purple-lt);
	border-radius: var(--radius-md);
	padding: 28px 32px;
	margin-top: 32px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	text-align: center;
}

.it-num {
	font-size: 20px;
	font-weight: 800;
	color: var(--purple);
}

.it-label {
	font-size: 10.5px;
	color: var(--text-lt);
	margin-top: 3px;
	font-weight: 500;
}

/* ─── FINAL CTA ─── */
.final-panel {
	padding: 80px 0;
	text-align: center;
	background: linear-gradient(135deg, #004d4a, var(--blue-dk), #004060);
	position: relative;
	overflow: hidden;
}

.final-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 50% 60% at 20% 30%, rgba(0, 178, 172, 0.22), transparent 55%), radial-gradient(ellipse 40% 50% at 85% 70%, rgba(99, 64, 107, 0.3), transparent 50%);
	pointer-events: none;
}

.final-panel .container {
	position: relative;
}

.final-panel h2 {
	font-size: clamp(2rem, 4vw, 3.8rem);
	color: white;
	line-height: 1.08;
	margin: 18px auto 16px;
}

.final-panel-p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.72;
	max-width: 44ch;
	margin: 0 auto 36px;
}

.final-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.site-footer {
	background: var(--beige);
	border-top: 1px solid var(--beige-dk);
	padding: 64px 0 32px;
	color: var(--text);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 52px;
	margin-bottom: 48px;
}

.footer-logo-img {
	height: 64px;
	width: auto;
	margin-bottom: 20px;
}

.footer-brand-desc {
	font-size: 13px;
	color: var(--text-mid);
	line-height: 1.75;
	max-width: 320px;
	font-style: italic;
}

.footer-col-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 16px;
	letter-spacing: -0.01em;
}

.footer-address p {
	font-size: 13.5px;
	color: var(--text-mid);
	line-height: 1.7;
}

.footer-connect {
	margin-top: 32px;
}

.footer-connect-link {
	display: block;
	font-size: 13.5px;
	color: var(--teal);
	font-weight: 500;
	line-height: 1.9;
	transition: color 150ms;
}

.footer-connect-link:hover {
	color: var(--teal-dk);
}

.footer-partner-list {
	font-size: 13.5px;
	color: var(--text-mid);
	line-height: 1.9;
}

.footer-donate-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 28px;
	background: var(--teal);
	color: white;
	border: none;
	padding: 13px 40px;
	border-radius: 8px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background 150ms;
}

.footer-donate-btn:hover {
	background: var(--teal-dk);
}

.footer-bottom {
	border-top: 1px solid var(--beige-dk);
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.footer-bottom p {
	font-size: 11.5px;
	color: var(--text-lt);
}

/* ==========================================================================
   Referral Page
   ========================================================================== */

/* ─── PAGE HERO ─── */
.page-hero {
	background: linear-gradient(135deg, #5a3363 0%, #7a5485 35%, #63406b 65%, #4a2e52 100%);
	position: relative;
	overflow: hidden;
	padding: 80px 0 72px;
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 55% at 12% 20%, rgba(0, 178, 172, 0.18), transparent 55%), radial-gradient(ellipse 40% 40% at 88% 80%, rgba(204, 117, 182, 0.18), transparent 50%);
	pointer-events: none;
}

.page-hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent 5%, rgba(0, 178, 172, 0.7) 35%, rgba(204, 117, 182, 0.5) 65%, transparent 95%);
}

.page-hero .container {
	position: relative;
}

.page-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: rgba(255, 255, 255, 0.92);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 999px;
	margin-bottom: 24px;
}

.page-hero-dot {
	width: 6px;
	height: 6px;
	background: var(--teal);
	border-radius: 50%;
	flex-shrink: 0;
}

.page-hero h1 {
	font-size: clamp(2.4rem, 4.5vw, 4rem);
	line-height: 1.06;
	color: white;
	margin-bottom: 18px;
}

.page-hero h1 em {
	font-style: italic;
	color: var(--teal-mid);
}

.page-hero p {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.78;
	max-width: 620px;
	border-left: 3px solid var(--teal);
	padding-left: 18px;
}

/* ─── CONTACT STRIP ─── */
.contact-strip {
	background: linear-gradient(180deg, #8a6295 0%, #7a5485 60%, #6e4a78 100%);
	padding: 24px 0;
}

.contact-strip .container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.cs-card {
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: var(--radius-sm);
	padding: 20px 22px;
	backdrop-filter: blur(12px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 8px 24px rgba(0, 0, 0, 0.14);
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.cs-icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.cs-icon svg {
	width: 18px;
	height: 18px;
	stroke: white;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cs-label {
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--teal-mid);
	margin-bottom: 4px;
}

.cs-value {
	font-size: 14px;
	font-weight: 600;
	color: white;
	line-height: 1.4;
}

.cs-value a {
	color: white;
	transition: opacity 150ms;
}

.cs-value a:hover {
	opacity: 0.8;
}

/* ─── SECTION ─── */
.section {
	padding: 96px 0;
}

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

.section.cream {
	background: var(--cream);
}

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

.section.purple {
	background: var(--purple);
}

/* ─── SECTION HEADING ─── */
.section-heading h2 {
	margin-top: 16px;
	font-size: clamp(1.9rem, 3.2vw, 3rem);
	line-height: 1.06;
	color: var(--purple);
}

.section-heading.light h2 {
	color: white;
}

.section-heading p:not(.eyebrow) {
	margin-top: 14px;
	color: var(--text-mid);
	font-size: 1rem;
	line-height: 1.75;
	max-width: 56ch;
}

.section-heading.light p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.72);
}

.section-heading.center {
	text-align: center;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}

/* ─── BUTTONS ─── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 26px;
	border-radius: 999px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	border: none;
	text-decoration: none;
	transition: transform 150ms, box-shadow 150ms, opacity 150ms;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-teal {
	background: var(--teal);
	color: white;
	box-shadow: 0 8px 24px rgba(0, 178, 172, 0.28);
}

.btn-teal:hover {
	background: var(--teal-dk);
}

.btn-blue {
	background: var(--blue);
	color: white;
	box-shadow: 0 8px 24px rgba(0, 145, 179, 0.28);
}

.btn-blue:hover {
	background: var(--blue-dk);
}

.btn-purple {
	background: var(--purple);
	color: white;
	box-shadow: 0 8px 24px rgba(99, 64, 107, 0.22);
}

.btn-purple:hover {
	background: var(--purple-dk);
}

.btn-outline-purple {
	background: transparent;
	color: var(--purple);
	border: 2px solid var(--purple);
	padding: 10px 24px;
}

.btn-outline-purple:hover {
	background: var(--purple);
	color: white;
}

.btn-outline-white {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.45);
}

.btn-outline-white:hover {
	border-color: white;
	background: rgba(255, 255, 255, 0.1);
}

.btn-white {
	background: white;
	color: var(--purple);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-lg {
	padding: 14px 32px;
	font-size: 14.5px;
}

.btn-full {
	width: 100%;
	justify-content: center;
}

.btn svg {
	width: 16px;
	height: 16px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex-shrink: 0;
}

/* ─── PROCESS SECTION ─── */
.process-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
	margin-top: 48px;
}

.process-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.process-step {
	display: flex;
	gap: 20px;
	padding: 24px 0;
	border-bottom: 1px solid var(--border-lt);
}

.process-step:last-child {
	border-bottom: none;
}

.ps-number {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--purple);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 800;
	flex-shrink: 0;
	margin-top: 2px;
}

.ps-content h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--purple);
	margin-bottom: 6px;
}

.ps-content p {
	font-size: 13px;
	color: var(--text-mid);
	line-height: 1.7;
}

.process-sidebar {
	background: var(--purple);
	border-radius: var(--radius-md);
	padding: 34px 30px;
}

@media (min-width: 780px) {
	.process-sidebar {
		position: sticky;
		top: 90px;
	}
}

.ps-sidebar-title {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--teal-mid);
	margin-bottom: 20px;
}

.ps-info-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ps-info-item:last-child {
	border-bottom: none;
}

.ps-info-icon {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ps-info-icon svg {
	width: 16px;
	height: 16px;
	stroke: var(--teal-mid);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ps-info-label {
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 3px;
}

.ps-info-value {
	font-size: 13px;
	font-weight: 600;
	color: white;
	line-height: 1.45;
}

.ps-info-value a {
	color: var(--teal-mid);
}

/* ─── RESOURCES ─── */
.resources-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
}

.resource-card {
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	background: white;
	transition: transform 200ms, box-shadow 200ms;
	display: flex;
	flex-direction: column;
}

.resource-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.resource-card-top {
	padding: 24px 24px 18px;
	background: var(--near-white);
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.resource-type-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
	margin-bottom: 10px;
	flex-shrink: 0;
}

.resource-type-badge.pdf {
	background: #fde8e8;
	color: #b91c1c;
}

.resource-type-badge.guide {
	background: var(--blue-lt);
	color: var(--blue-dk);
}

.resource-type-badge.brochure {
	background: var(--teal-lt);
	color: var(--teal-dk);
}

.resource-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.resource-icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.resource-icon.teal-bg {
	background: var(--teal-lt);
}

.resource-icon.teal-bg svg {
	stroke: var(--teal-dk);
}

.resource-icon.blue-bg {
	background: var(--blue-lt);
}

.resource-icon.blue-bg svg {
	stroke: var(--blue-dk);
}

.resource-icon.purple-bg {
	background: var(--purple-lt);
}

.resource-icon.purple-bg svg {
	stroke: var(--purple);
}

.resource-meta {
	flex: 1;
}

.resource-card-body {
	padding: 16px 24px 22px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.resource-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--purple);
	margin-bottom: 8px;
	line-height: 1.3;
}

.resource-desc {
	font-size: 12.5px;
	color: var(--text-mid);
	line-height: 1.7;
	margin-bottom: 16px;
	flex-grow: 1;
}

.resource-card-footer {
	padding: 0 24px 20px;
}

/* ─── DISCLAIMER ─── */
.disclaimer-box {
	background: var(--mango-lt);
	border: 1px solid rgba(232, 154, 65, 0.3);
	/* border-left: 4px solid var(--mango); */
	box-shadow: inset 100px 0 0 -95px var(--mango);
	border-radius: var(--radius-sm);
	padding: 28px 30px;
	margin-top: 48px;
}

.disclaimer-label {
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--mango-dk);
	margin-bottom: 10px;
}

.disclaimer-box p {
	font-size: 13px;
	color: var(--text-mid);
	line-height: 1.78;
	font-style: italic;
}

/* ─── ELIGIBILITY ─── */
.eligibility-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 48px;
}

.elig-card {
	background: white;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 26px 22px;
	transition: transform 200ms, box-shadow 200ms, border-color 200ms;
}

.elig-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-color: var(--teal);
}

.elig-card-label {
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 10px;
}

.elig-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--purple);
	margin-bottom: 10px;
	line-height: 1.3;
}

.elig-card p {
	font-size: 12.5px;
	color: var(--text-mid);
	line-height: 1.72;
}

/* ==========================================================================
   Files Page
   ========================================================================== */

/* ─── SEARCH / FILTER BAR ─── */
.filter-bar {
	background: white;
	border-bottom: 1px solid var(--border-lt);
	padding: 20px 0;
	position: sticky;
	top: 82px;
	z-index: 20;
}

.filter-bar .container {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.filter-search {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
	min-width: 200px;
	background: var(--near-white);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 9px 16px;
}

.filter-search svg {
	width: 15px;
	height: 15px;
	stroke: var(--text-lt);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex-shrink: 0;
}

.filter-search input {
	border: none;
	background: transparent;
	font: inherit;
	font-size: 13px;
	color: var(--text);
	outline: none;
	width: 100%;
}

.filter-search input::placeholder {
	color: var(--text-lt);
}

.filter-chips {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.filter-chip {
	font-size: 11.5px;
	font-weight: 600;
	font-family: inherit;
	padding: 7px 15px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--text-mid);
	cursor: pointer;
	transition: background 150ms, color 150ms, border-color 150ms;
	letter-spacing: 0.02em;
}

.filter-chip:hover {
	background: var(--beige);
	border-color: var(--beige-dk);
	color: var(--text);
}

.filter-chip.active {
	background: var(--purple);
	color: white;
	border-color: var(--purple);
}

/* ─── MAIN LAYOUT ─── */
.repo-body {
	padding: 64px 0 96px;
}

.repo-body .container {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 48px;
	align-items: start;
}

/* ─── SIDEBAR ─── */
.repo-sidebar {
	position: sticky;
	top: 180px;
}

.sidebar-nav-title {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--text-lt);
	margin-bottom: 14px;
}

.sidebar-links {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.sidebar-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-mid);
	padding: 9px 14px;
	border-radius: 8px;
	transition: color 150ms, background 150ms;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	text-decoration: none;
}

.sidebar-link:hover {
	color: var(--purple);
	background: var(--beige);
}

.sidebar-link.active {
	color: var(--purple);
	background: var(--purple-lt);
}

.sidebar-link svg {
	width: 15px;
	height: 15px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex-shrink: 0;
}

.sidebar-link .count {
	margin-left: auto;
	font-size: 11px;
	font-weight: 600;
	background: var(--beige-dk);
	color: var(--text-lt);
	border-radius: 999px;
	padding: 1px 8px;
}

.sidebar-link.active .count {
	background: var(--purple-mid);
	color: var(--purple-dk);
}

.sidebar-divider {
	height: 1px;
	background: var(--border-lt);
	margin: 14px 0;
}

.sidebar-upload {
	margin-top: 20px;
}

.sidebar-upload-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	font-family: inherit;
	color: var(--teal);
	background: var(--teal-lt);
	border: 1.5px dashed var(--teal);
	border-radius: 10px;
	padding: 12px 16px;
	cursor: pointer;
	transition: background 150ms;
}

.sidebar-upload-btn:hover {
	background: #c5eeec;
}

.sidebar-upload-btn svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* ─── FILE SECTIONS ─── */
.repo-main {
	display: flex;
	flex-direction: column;
	gap: 52px;
}

.file-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border-lt);
}

.file-section-heading {
	display: flex;
	align-items: center;
	gap: 12px;
}

.file-section-icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.file-section-icon svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.file-section-icon.purple {
	background: var(--purple-lt);
	color: var(--purple);
}

.file-section-icon.teal {
	background: var(--teal-lt);
	color: var(--teal);
}

.file-section-icon.mango {
	background: var(--mango-lt);
	color: var(--mango-dk);
}

.file-section-icon.blue {
	background: var(--blue-lt);
	color: var(--blue);
}

.file-section-icon.lavender {
	background: #fce8f8;
	color: #9a3d8a;
}

.file-section-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text);
}

.file-section-count {
	font-size: 12px;
	color: var(--text-lt);
	font-weight: 500;
}

.file-section-action {
	font-size: 12px;
	font-weight: 600;
	color: var(--teal);
	border: 1.5px solid var(--teal-mid);
	background: var(--teal-lt);
	padding: 7px 16px;
	border-radius: 999px;
	cursor: pointer;
	transition: background 150ms;
	font-family: inherit;
}

.file-section-action:hover {
	background: #c5eeec;
}

/* ─── FILE GRID ─── */
.file-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.file-card {
	background: white;
	border: 1px solid var(--border-lt);
	border-radius: var(--radius-sm);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: border-color 180ms, box-shadow 180ms, transform 180ms;
	cursor: pointer;
}

.file-card:hover {
	border-color: var(--purple-mid);
	box-shadow: 0 8px 24px rgba(99, 64, 107, 0.08);
	transform: translateY(-2px);
}

.file-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.file-thumb {
	width: 44px;
	height: 56px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
}

.file-thumb svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.file-thumb.pdf {
	background: #fff0f0;
	color: #c0392b;
}

.file-thumb.doc {
	background: var(--blue-lt);
	color: var(--blue);
}

.file-thumb.xls {
	background: #edf7f0;
	color: #27ae60;
}

.file-thumb.placeholder {
	background: var(--near-white);
	color: var(--text-lt);
	border: 1.5px dashed var(--border);
}

.file-type-badge {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 2px 7px;
	border-radius: 4px;
}

.file-type-badge.pdf {
	background: #fff0f0;
	color: #c0392b;
}

.file-type-badge.doc {
	background: var(--blue-lt);
	color: var(--blue);
}

.file-type-badge.xls {
	background: #edf7f0;
	color: #27ae60;
}

.file-type-badge.placeholder {
	background: var(--near-white);
	color: var(--text-lt);
}

.file-card-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.file-card-name {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--text);
	line-height: 1.4;
}

.file-card-meta {
	font-size: 11.5px;
	color: var(--text-lt);
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.file-card-desc {
	font-size: 12.5px;
	color: var(--text-mid);
	line-height: 1.6;
}

.file-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.file-card-dl {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	color: var(--teal);
	padding: 7px 14px;
	border-radius: 8px;
	background: var(--teal-lt);
	border: none;
	cursor: pointer;
	font-family: inherit;
	transition: background 150ms;
}

.file-card-dl:hover {
	background: #c5eeec;
}

.file-card-dl svg {
	width: 12px;
	height: 12px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.file-card-dl.disabled {
	opacity: 0.45;
	cursor: not-allowed;
	pointer-events: none;
}

.file-placeholder-note {
	font-size: 11px;
	color: var(--text-lt);
	font-style: italic;
}

/* placeholder empty state within a section */
.file-empty {
	background: var(--near-white);
	border: 1.5px dashed var(--border);
	border-radius: var(--radius-sm);
	padding: 40px 24px;
	text-align: center;
}

.file-empty svg {
	width: 36px;
	height: 36px;
	stroke: var(--border);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	margin: 0 auto 12px;
}

.file-empty p {
	font-size: 13px;
	color: var(--text-lt);
}

/* ─── UPLOAD CTA ─── */
.upload-cta {
	background: linear-gradient(135deg, #5a3363 0%, #7a5485 35%, #63406b 65%, #4a2e52 100%);
	border-radius: var(--radius-md);
	padding: 52px 56px;
	position: relative;
	overflow: hidden;
	text-align: center;
	margin-top: 16px;
}

.upload-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 55% 55% at 15% 25%, rgba(0, 178, 172, 0.18), transparent 55%), radial-gradient(ellipse 40% 40% at 85% 75%, rgba(204, 117, 182, 0.18), transparent 50%);
	pointer-events: none;
}

.upload-cta .container {
	position: relative;
}

.upload-cta h2 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	color: white;
	margin-bottom: 12px;
}

.upload-cta p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.72;
	max-width: 48ch;
	margin: 0 auto 32px;
}

.upload-cta-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-cta-primary {
	background: white;
	color: var(--purple);
	border: none;
	padding: 13px 32px;
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: transform 150ms, box-shadow 150ms;
}

.btn-cta-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.btn-cta-primary svg {
	width: 15px;
	height: 15px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.btn-cta-ghost {
	background: rgba(255, 255, 255, 0.12);
	color: white;
	border: 1.5px solid rgba(255, 255, 255, 0.28);
	padding: 12px 28px;
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: background 150ms;
}

.btn-cta-ghost:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */

/* ─── RESPONSIVE ─── */
@media (max-width: 1060px) {
	.site-nav {
		display: none;
	}

	.hero-grid,
	.two-col-heading,
	.video-layout,
	.proof-layout,
	.clinical-model-layout {
		grid-template-columns: 1fr;
	}

	.hero-stats-strip .container {
		grid-template-columns: repeat(2, 1fr);
	}

	.exp-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.donor-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.impact-totals {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.methods-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 960px) {

	.two-col-heading,
	.process-grid,
	.pathways-grid {
		grid-template-columns: 1fr;
	}

	.contact-strip .container {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.resources-grid {
		grid-template-columns: 1fr 1fr;
	}

	.eligibility-grid {
		grid-template-columns: 1fr 1fr;
	}

	.repo-body .container {
		grid-template-columns: 1fr;
	}

	.repo-sidebar {
		position: static;
		display: none;
	}

	.file-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 780px) {
	.nav-actions .nav-referral {
		display: none;
	}

	.nav-actions .nav-files {
		display: none;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.gateway-inner {
		grid-template-columns: 1fr;
	}

	.clinical-why {
		grid-template-columns: 1fr;
	}

	.gw-card {
		border-right: none;
		border-bottom: 1px solid var(--border);
	}

	.therapy-grid,
	.exp-grid,
	.exp-deep-grid,
	.pathways-grid {
		grid-template-columns: 1fr;
	}

	.donor-grid {
		grid-template-columns: 1fr 1fr;
	}

	.outcomes-strip {
		grid-template-columns: repeat(2, 1fr);
	}

	.methods-grid {
		grid-template-columns: 1fr;
	}

	.impact-totals {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {

	.resources-grid,
	.eligibility-grid {
		grid-template-columns: 1fr;
	}

	.file-grid {
		grid-template-columns: 1fr;
	}

	.filter-bar .container {
		gap: 8px;
	}

	.upload-cta {
		padding: 40px 24px;
	}

	.upload-cta-btns {
		flex-direction: column;
		align-items: center;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

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

	.hero-stats-strip .container {
		grid-template-columns: 1fr;
	}

	.final-btns {
		flex-direction: column;
		align-items: center;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.section {
		padding: 72px 0;
	}

	.filter-bar {
		top: 72px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}