@font-face {
	font-family: 'Montserrat Custom';
	src: url('../fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'DM Sans Custom';
	src: url('../fonts/DM_Sans/DMSans-VariableFont_opsz,wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Have Heart Custom';
	src: url('../fonts/have-heart-script-font/have-heart-one.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--bg-soft: #f9f1ef;
	--paper: #fff8f5;
	--ink: #6f6790;
	--ink-strong: #6f62ab;
	--rose: #e1b3b4;
	--violet: #8b78c5;
	--blue-soft: #d9eef9;
	--taupe: #c8bab2;
	--shadow-soft: 0 14px 30px rgba(89, 66, 130, 0.14);
	--shadow-hover: 0 24px 44px rgba(84, 55, 125, 0.23);
}

body {
	margin: 0;
	font-family: 'Montserrat Custom', sans-serif;
	color: var(--ink);
	background-color: #f5e8e4;
}

.bg-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.bg-canvas img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}

.bg-canvas {
	display: none;
}

.homepage-page {
	min-height: 100vh;
	position: relative;
	background-image: url('../img/bg.svg');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: top left;
}

.homepage-page > *:not(.bg-canvas) {
	position: relative;
	z-index: 1;
}

.py-lg-6 {
	padding-top: clamp(0.75rem, 1.5vh, 2rem);
	padding-bottom: clamp(0.75rem, 1.5vh, 2rem);
}

.hero-section {
	height: 100dvh;
	display: flex;
	flex-direction: column;
	padding: clamp(2rem, 8vh, 3.4rem) 0;
	box-sizing: border-box;
	overflow: hidden;
}

.hero-section > .container-xl {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.hero-section .row {
	flex: 1;
	min-height: 0;
}

.hero-section .col-lg-9.d-flex {
	min-height: 0;
}

.hero-section .container-xl {
	max-width: 1055px;
}

.hero-left {
	padding: 1rem 0 0.45rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 100%;
}

.hero-logo-wrap {
	width: clamp(165px, 33vh, 220px);
	max-width: 100%;
	margin-bottom: clamp(1rem, 3vh, 1.45rem);
}

.hero-logo-rotate {
	width: 100%;
	display: block;
	animation: iwmiSpin 30s linear infinite;
}

.hero-title {
	font-size: clamp(1.55rem, 4.05vh, 2rem);
	line-height: 1.22;
	font-weight: 700;
	color: var(--ink-strong);
	max-width: 8.2ch;
	margin: 0 0 clamp(1.1rem, 4vh, 2rem);
}

.hero-cta {
	padding-top: 0;
}

.hero-cta-auth {
	justify-content: center;
	width: 100%;
}

.btn-hero {
	border-radius: 999px;
	padding: 0.5rem 1rem;
	font-weight: 700;
	font-size: clamp(0.78rem, 1.9vh, 0.95rem);
	letter-spacing: 0.01em;
	text-transform: uppercase;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-hero:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 14px rgba(95, 70, 140, 0.18);
}

.btn-hero-soft {
	color: #ffffff;
	background: #e4b2b4;
}

.btn-hero-bold {
	color: #ffffff;
	background: #7a67be;
}

.menu-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-rows: repeat(2, 1fr);
	gap: clamp(1rem, 2.8vh, 1.4rem);
	height: 100%;
}

.menu-card {
	text-decoration: none;
	color: inherit;
	border-radius: 14px;
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	transform-style: preserve-3d;
	animation: menuFloat 8.8s ease-in-out infinite;
	height: 100%;
}

.menu-card-inner {
	height: 100%;
	min-height: unset;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: clamp(1.1rem, 3vh, 1.55rem) 0.65rem clamp(0.9rem, 2.6vh, 1.35rem);
	text-align: center;
	transform: perspective(500px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
	transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.menu-plus {
	position: absolute;
	top: 16px;
	right: 18px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	display: grid;
	place-items: center;
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1;
    color: #826eb4;
}

.menu-icon {
	flex: 1;
	display: block;
	width: clamp(5.5rem, 17vh, 8.5rem);
	max-width: 78%;
	height: clamp(5.5rem, 17vh, 8.5rem);
	margin: auto;
	object-fit: contain;
	opacity: 0.9;
}

.menu-text {
	display: block;
	width: 100%;
	font-size: clamp(1.38rem, 4vh, 1.85rem);
	line-height: 1.2;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
	padding-bottom: 0;
}

.menu-card:hover {
	box-shadow: var(--shadow-hover);
}

.menu-card:hover .menu-card-inner {
	transform: perspective(500px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-5px) scale(1.02);
}

.menu-card-1 {
	background: #cbb0db;
	color: #f8f6db;
	animation-delay: 0s;
	--menu-hover-bg: #a84fe8;
}

.menu-card-2 {
	background: #cab0a6;
	color: #d7f0fb;
	animation-delay: -1.2s;
	--menu-hover-bg: #f06f3f;
}

.menu-card-3 {
	background: #dba6ab;
	color: #fdf4dd;
	animation-delay: -2.6s;
	--menu-hover-bg: #ff4f91;
}

.menu-card-4 {
	background: #b4aa9f;
	color: #d8effb;
	animation-delay: -3.4s;
	--menu-hover-bg: #12a6c8;
}

.menu-card-5 {
	background: #7c69b6;
	color: #c7afe0;
	animation-delay: -4.8s;
	--menu-hover-bg: #5c42e8;
}

.menu-card-6 {
	background: #d9c9c2;
	color: #7d6ab6;
	animation-delay: -6s;
	--menu-hover-bg: #f05a28;
}

.menu-card:hover {
	background: var(--menu-hover-bg);
	color: #ffffff;
}

.video-frame {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	border: 2px solid rgba(111, 98, 171, 0.45);
}

.video-frame video {
	width: 100%;
	display: block;
	aspect-ratio: 16 / 9;
	background: #111;
}

.connect-card {
	background: transparent;
	padding: 2rem 2.2rem;
}

.section-title {
	color: var(--ink-strong);
	font-weight: 700;
	font-size: clamp(1.65rem, 2.2vw, 2.3rem);
	margin-bottom: 1rem;
}

.contact-list li + li {
	margin-top: 0.85rem;
}

.contact-list a {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	color: #3a3050;
	text-decoration: none;
	font-family: 'DM Sans Custom', sans-serif;
	font-size: clamp(1.05rem, 1.5vw, 2rem);
	transition: color 0.2s ease;
}

.contact-list a:hover {
	color: var(--ink-strong);
}

.contact-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

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

.support-logos {
	min-height: 130px;
}

.support-logo {
	display: block;
}

.support-logo-sdg {
	max-height: 106px;
	width: auto;
}

.support-logo-unwomen {
	max-height: 90px;
	width: auto;
}

.site-footer {
	text-align: center;
}

.newsletter-footer {
	margin-bottom: 2rem;
	padding: clamp(2.4rem, 5vw, 4rem) 0;
	color: var(--ink);
	text-align: center;
}

.newsletter-footer .container-xl {
	border-top: 1px solid rgba(128, 102, 174, 0.25);
	margin-right: auto;
	margin-left: auto;
	padding-top: clamp(1.6rem, 3vw, 2.4rem);
	padding-left: clamp(1.5rem, 4vw, 2rem);
	padding-right: clamp(1.5rem, 4vw, 2rem);
}

.newsletter-eyebrow {
	margin: 0 0 1.2rem;
	color: #806dba;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.25em;
	text-transform: uppercase;
}

.newsletter-title {
	max-width: 980px;
	margin: 0 auto 1.65rem;
	color: var(--ink-strong);
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	line-height: 1.12;
}

.newsletter-copy {
	max-width: 44rem;
	margin: 0 auto 1.6rem;
	color: #6f6790;
	font-family: 'DM Sans Custom', sans-serif;
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	line-height: 1.55;
}

.newsletter-form {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	max-width: 620px;
	margin: 0 auto;
}

.newsletter-field {
	flex: 1 1 auto;
	min-width: 0;
}

.newsletter-input {
	width: 100%;
	height: 46px;
	border: 1px solid rgba(128, 109, 186, 0.34);
	border-radius: 999px;
	background: rgba(255, 248, 245, 0.72);
	color: #3a3050;
	font-family: 'DM Sans Custom', sans-serif;
	font-size: 1rem;
	outline: none;
	padding: 0 1.2rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.newsletter-input::placeholder {
	color: #9086ae;
	opacity: 1;
}

.newsletter-input:focus {
	background: #fff8f5;
	border-color: rgba(128, 109, 186, 0.62);
	box-shadow: 0 0 0 3px rgba(128, 109, 186, 0.18);
}

.newsletter-submit {
	flex: 0 0 auto;
	min-width: 94px;
	height: 46px;
	border: 0;
	border-radius: 999px;
	background: #e9a7a8;
	color: #3a3050;
	font-family: 'DM Sans Custom', sans-serif;
	font-size: 0.95rem;
	font-weight: 800;
	padding: 0 1.45rem;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-submit:hover {
	background: #806dba;
	color: #ffffff;
	box-shadow: 0 10px 18px rgba(89, 66, 130, 0.2);
	transform: translateY(-1px);
}

.newsletter-submit:focus-visible {
	outline: 3px solid rgba(128, 109, 186, 0.28);
	outline-offset: 3px;
}

.newsletter-submit:disabled {
	cursor: wait;
	opacity: 0.75;
	transform: none;
}

.newsletter-message {
	max-width: 620px;
	margin: 0.85rem auto 0;
	font-family: 'DM Sans Custom', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
}

.newsletter-message-success {
	color: #315f3e;
}

.newsletter-message-error {
	color: #7f1d1d;
}

.copyright-row {
	border-top: 1px solid rgba(128, 102, 174, 0.25);
	padding-top: 1.2rem;
	font-size: 0.95rem;
	color: #9086ae;
	font-family: 'DM Sans Custom', sans-serif;
}

.connect-modal .modal-dialog {
	max-width: min(680px, calc(100vw - 2rem));
}

.connect-modal-content {
	position: relative;
	border: 5px solid #8a6fc5;
	border-left-color: #0a61b5;
	border-radius: 16px;
	background: #c8abd1;
	box-shadow: 0 22px 50px rgba(64, 35, 104, 0.24);
}

.connect-modal-close {
	position: absolute;
	top: 22px;
	right: 22px;
	z-index: 2;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(66, 61, 68, 0.72);
	font-size: 1.65rem;
	line-height: 1;
	cursor: pointer;
	transition: color 0.2s ease, transform 0.2s ease;
}

.connect-modal-close:hover {
	color: #3f3a42;
	transform: scale(1.05);
}

.connect-modal-body {
	padding: 1rem clamp(1.35rem, 7vw, 4rem) 1.8rem;
}

.connect-modal-title {
	margin: 0 2.5rem 3rem;
	color: #fffbe4;
	font-size: clamp(1.8rem, 4.4vw, 2.05rem);
	font-weight: 800;
	line-height: 1.12;
	text-align: center;
	text-transform: uppercase;
}

.connect-modal-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.1rem;
}

.connect-modal-field {
	width: 100%;
}

.connect-modal-control {
	width: 100%;
	border: 0;
	border-radius: 14px;
	background: #e7c8cc;
	color: #38383d;
	font-family: 'Montserrat Custom', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	outline: none;
	box-shadow: none;
	transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.connect-modal-control::placeholder {
	color: #38383d;
	opacity: 1;
}

.connect-modal-control:focus {
	background: #efd2d5;
	box-shadow: 0 0 0 3px rgba(123, 94, 167, 0.24);
}

.connect-modal-control:not(.connect-modal-textarea) {
	height: 60px;
	padding: 0 1.25rem;
}

.connect-modal-textarea {
	min-height: 162px;
	padding: 4.35rem 1.25rem 1.25rem;
	resize: vertical;
}

.connect-modal-recaptcha {
	display: flex;
	justify-content: center;
	width: 100%;
	min-height: 78px;
}

.connect-modal-submit {
	min-width: 296px;
	min-height: 60px;
	margin-top: 0.35rem;
	border: 2px solid #333139;
	border-radius: 15px;
	background: #e6a9aa;
	color: #050505;
	font-family: 'Montserrat Custom', sans-serif;
	font-size: 1.1rem;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.connect-modal-submit:hover {
	background: #efb7b8;
	box-shadow: 0 8px 16px rgba(64, 35, 104, 0.18);
	transform: translateY(-1px);
}

.connect-modal-submit:focus {
	outline: 3px solid rgba(255, 251, 228, 0.72);
	outline-offset: 3px;
}

.login-modal .modal-dialog {
	max-width: min(560px, calc(100vw - 2rem));
}

.login-modal-body {
	padding-bottom: 1.4rem;
}

.login-modal-title {
	margin-bottom: 1.5rem;
	text-transform: none;
	font-size: clamp(2rem, 5.2vw, 2.45rem);
}

.login-modal-form {
	gap: 0.8rem;
}

.login-modal-links {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: 0.15rem 0 1rem;
	font-size: 0.95rem;
	font-family: 'DM Sans Custom', sans-serif;
}

.login-modal-links a {
	color: #2f2b34;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.login-modal-error {
	width: 100%;
	margin: 0;
	color: #7f1d1d;
	font-family: 'DM Sans Custom', sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	text-align: center;
}

.login-modal-success {
	width: 100%;
	margin: 0;
	color: #315f3e;
	font-family: 'DM Sans Custom', sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	text-align: center;
}

.login-modal-submit {
	min-width: 210px;
	min-height: 44px;
}

.forgot-password-links {
	justify-content: center;
	margin-bottom: 0.25rem;
}

.password-reset-section {
	min-height: 100vh;
	display: grid;
	align-items: center;
	padding: 4rem 0;
}

.password-reset-panel {
	width: min(640px, calc(100vw - 2rem));
	margin: 0 auto;
	padding: clamp(2rem, 6vw, 3rem);
	border: 5px solid #8a6fc5;
	border-left-color: #0a61b5;
	border-radius: 16px;
	background: #c8abd1;
	box-shadow: 0 22px 50px rgba(64, 35, 104, 0.24);
	text-align: center;
}

.password-reset-title {
	margin: 0 0 1.5rem;
	color: #fffbe4;
	font-size: clamp(2rem, 5vw, 2.65rem);
	font-weight: 800;
	line-height: 1.12;
}

.password-reset-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

.password-reset-field {
	width: 100%;
	text-align: left;
}

.password-reset-field label {
	display: block;
	margin: 0 0 0.4rem;
	color: #3a3050;
	font-family: 'DM Sans Custom', sans-serif;
	font-weight: 800;
}

.password-reset-field input {
	width: 100%;
	height: 58px;
	border: 0;
	border-radius: 14px;
	background: #e7c8cc;
	color: #38383d;
	font-family: 'Montserrat Custom', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	outline: none;
	padding: 0 1.15rem;
}

.password-reset-field input:focus {
	background: #efd2d5;
	box-shadow: 0 0 0 3px rgba(123, 94, 167, 0.24);
}

.password-reset-error {
	margin: 0.4rem 0 0;
	color: #7f1d1d;
	font-family: 'DM Sans Custom', sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
}

.password-reset-submit {
	margin-top: 0.4rem;
}

.password-reset-copy {
	margin: 0 auto 1.4rem;
	max-width: 34rem;
	color: #3a3050;
	font-family: 'DM Sans Custom', sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
}

.password-reset-home-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.member-dashboard-section {
	min-height: 100vh;
	display: grid;
	align-items: center;
	padding: 4rem 0;
}

.member-dashboard-panel {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
	padding: 3rem 1.5rem;
}

.member-dashboard-eyebrow {
	margin: 0 0 0.8rem;
	color: var(--ink-strong);
	font-weight: 800;
	text-transform: uppercase;
}

.member-dashboard-title {
	margin: 0;
	color: var(--ink-strong);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.1;
}

.member-dashboard-copy {
	margin: 1rem 0 1.6rem;
	color: #3a3050;
	font-family: 'DM Sans Custom', sans-serif;
	font-size: 1.2rem;
}

.member-dashboard-logout {
	min-width: 160px;
	min-height: 48px;
}



@keyframes iwmiSpin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes menuFloat {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-9px);
	}
}

@media (max-width: 1199px) {
	.menu-card-inner {
		min-height: 210px;
	}

	.connect-card {
		padding: 1.5rem;
	}
}

@media (max-width: 991px) {
	.hero-left {
		padding: 0.8rem 0.8rem 0.6rem;
	}

	.hero-title {
		max-width: 11ch;
	}

	.hero-cta {
		margin-top: 1.1rem;
		padding-top: 0;
	}

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

	.menu-card-inner {
		min-height: 200px;
	}
}

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

	.menu-card-inner {
		min-height: 185px;
	}

	.hero-logo-wrap {
		width: 170px;
	}

	.hero-cta {
		justify-content: center;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.contact-list a {
		font-size: 1.2rem;
	}

	.support-logo-unwomen {
		font-size: 1.8rem;
	}

	.connect-modal .modal-dialog {
		max-width: calc(100vw - 1rem);
		margin-right: 0.5rem;
		margin-left: 0.5rem;
	}

	.connect-modal-content {
		border-width: 3px;
		border-radius: 14px;
	}

	.connect-modal-close {
		top: 14px;
		right: 14px;
		font-size: 1.35rem;
	}

	.connect-modal-body {
		padding: 0.9rem 1.15rem 1.35rem;
	}

	.connect-modal-title {
		margin: 0 2rem 2rem;
		font-size: 1.5rem;
	}

	.connect-modal-control:not(.connect-modal-textarea) {
		height: 54px;
	}

	.connect-modal-textarea {
		min-height: 142px;
		padding-top: 3.75rem;
	}

	.connect-modal-recaptcha {
		overflow: hidden;
	}

	.connect-modal-recaptcha .g-recaptcha {
		transform: scale(0.88);
		transform-origin: center top;
	}

	.connect-modal-submit {
		width: 100%;
		min-width: 0;
		min-height: 56px;
	}

	.login-modal-links {
		flex-direction: column;
		gap: 0.35rem;
		font-size: 0.92rem;
	}

	.newsletter-form {
		align-items: stretch;
		flex-direction: column;
		max-width: 100%;
	}

	.newsletter-submit {
		width: 100%;
	}
}

/* ===============================================================
   SIDE NAVIGATION — subpages only
=============================================================== */
.side-nav {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 10px 8px;
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 14px 0 0 14px;
	box-shadow: -4px 0 24px rgba(89, 66, 130, 0.14);
}

.side-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 78px;
	padding: 10px 6px 8px;
	border-radius: 10px;
	text-decoration: none;
	text-align: center;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
	box-shadow: var(--shadow-soft);
	position: relative;
	overflow: hidden;
}

.side-tile:hover {
	transform: translateX(-5px) scale(1.05);
	box-shadow: var(--shadow-hover);
	text-decoration: none;
}

.side-tile-plus {
	position: absolute;
	top: 6px;
	right: 7px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.42);
	display: grid;
	place-items: center;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1;
	color: rgba(89, 66, 130, 0.8);
}

.side-tile-icon {
	width: 38px;
	height: 38px;
	object-fit: contain;
	display: block;
	margin: 0 auto 5px;
	opacity: 0.92;
}

.side-tile-bi {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	margin: 0 auto 5px;
	color: currentColor;
	font-size: 1.95rem;
	line-height: 1;
	opacity: 0.92;
}

.side-tile-text {
	font-size: 0.52rem;
	font-weight: 700;
	line-height: 1.25;
	display: block;
	letter-spacing: 0.01em;
}

.side-tile-home { background: #e5c3c9; color: #7d6ab6; --side-hover-bg: #806dba; }
.side-tile-1 { background: #cbb0db; color: #f8f6db; --side-hover-bg: #a84fe8; }
.side-tile-2 { background: #cab0a6; color: #d7f0fb; --side-hover-bg: #f06f3f; }
.side-tile-3 { background: #dba6ab; color: #fdf4dd; --side-hover-bg: #ff4f91; }
.side-tile-4 { background: #b4aa9f; color: #d8effb; --side-hover-bg: #12a6c8; }
.side-tile-5 { background: #7c69b6; color: #c7afe0; --side-hover-bg: #5c42e8; }
.side-tile-6 { background: #d9c9c2; color: #7d6ab6; --side-hover-bg: #f05a28; }
.side-tile-login { background: #c8abd1; color: #fffbe4; --side-hover-bg: #806dba; }

.side-tile:hover,
.side-tile.active {
	background: var(--side-hover-bg);
	color: #ffffff;
}

.side-tile.active {
	outline: 2px solid rgba(255, 255, 255, 0.7);
	outline-offset: -2px;
}

.side-nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(30, 15, 60, 0.28);
	z-index: 998;
	cursor: pointer;
}

.side-nav-toggle {
	display: none;
}

@media (max-width: 991.98px) {
	.side-nav {
		position: fixed;
		right: -110px;
		top: 0;
		bottom: 0;
		transform: none;
		height: 100dvh;
		border-radius: 14px 0 0 14px;
		justify-content: center;
		overflow-y: auto;
		transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: -6px 0 32px rgba(89, 66, 130, 0.2);
	}

	.side-nav.is-open {
		right: 0;
	}

	.side-nav-overlay.is-open {
		display: block;
	}

	.side-nav-toggle {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
		position: fixed;
		top: 1.4rem;
		right: 1.4rem;
		z-index: 1001;
		width: 50px;
		height: 50px;
		border-radius: 50%;
		background: #7c69b6;
		border: none;
		cursor: pointer;
		box-shadow: 0 4px 18px rgba(89, 66, 130, 0.35);
		transition: background 0.2s ease;
		padding: 0;
	}

	.side-nav-toggle:hover {
		background: #6a59a2;
	}

	.side-nav-toggle span {
		display: block;
		width: 22px;
		height: 2.5px;
		background: #fff;
		border-radius: 2px;
		transition: transform 0.25s ease, opacity 0.25s ease;
		transform-origin: center;
	}

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

	.side-nav-toggle.is-open span:nth-child(2) {
		opacity: 0;
		transform: scaleX(0);
	}

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

/* ===============================================================
   SHARED BUTTON HOVER
=============================================================== */
.btn-hero,
.som-cta,
.me-cta,
.connect-modal-submit,
.newsletter-submit,
.jogn-pill-button,
.jogn-search-button,
.jogn-contact-button {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	border: 2px solid var(--site-btn-border, rgba(128, 109, 186, 0.38));
	background: transparent;
	text-decoration: none;
	cursor: pointer;
	transform: translateY(0);
	transition: transform 0.26s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.26s ease, color 0.26s ease, border-color 0.26s ease;
}

.btn-hero::before,
.btn-hero::after,
.som-cta::before,
.som-cta::after,
.me-cta::before,
.me-cta::after,
.connect-modal-submit::before,
.connect-modal-submit::after,
.newsletter-submit::before,
.newsletter-submit::after,
.jogn-pill-button::before,
.jogn-pill-button::after,
.jogn-search-button::before,
.jogn-search-button::after,
.jogn-contact-button::before,
.jogn-contact-button::after {
	content: "";
	position: absolute;
	pointer-events: none;
	border-radius: inherit;
}

.btn-hero::before,
.som-cta::before,
.me-cta::before,
.connect-modal-submit::before,
.newsletter-submit::before,
.jogn-pill-button::before,
.jogn-search-button::before,
.jogn-contact-button::before {
	inset: 0;
	z-index: -2;
	background: var(--site-btn-bg, #806dba);
}

.btn-hero::after,
.som-cta::after,
.me-cta::after,
.connect-modal-submit::after,
.newsletter-submit::after,
.jogn-pill-button::after,
.jogn-search-button::after,
.jogn-contact-button::after {
	inset: -2px;
	z-index: -1;
	background: var(--site-btn-hover-bg, #e9a7a8);
	transform: translateX(-105%) skewX(-14deg);
	transform-origin: left center;
	transition: transform 0.42s cubic-bezier(0.76, 0, 0.24, 1);
}

.btn-hero:hover,
.som-cta:hover,
.me-cta:hover,
.connect-modal-submit:hover,
.newsletter-submit:hover,
.jogn-pill-button:hover,
.jogn-search-button:hover,
.jogn-contact-button:hover {
	border-color: transparent;
	color: #fff;
	text-decoration: none;
	transform: translateY(-3px);
	box-shadow: 0 13px 24px rgba(89, 66, 130, 0.24);
}

.btn-hero:hover::after,
.som-cta:hover::after,
.me-cta:hover::after,
.connect-modal-submit:hover::after,
.newsletter-submit:hover::after,
.jogn-pill-button:hover::after,
.jogn-search-button:hover::after,
.jogn-contact-button:hover::after {
	transform: translateX(0) skewX(0deg);
}

.btn-hero .bi,
.som-cta .bi,
.me-cta .bi,
.jogn-pill-button .bi,
.jogn-search-button .bi {
	position: relative;
	z-index: 1;
	display: inline-block;
	transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-hero:hover .bi,
.som-cta:hover .bi,
.me-cta:hover .bi,
.jogn-pill-button:hover .bi,
.jogn-search-button:hover .bi {
	transform: translateX(0.72rem);
}

.btn-hero:focus-visible,
.som-cta:focus-visible,
.me-cta:focus-visible,
.connect-modal-submit:focus-visible,
.newsletter-submit:focus-visible,
.jogn-pill-button:focus-visible,
.jogn-search-button:focus-visible,
.jogn-contact-button:focus-visible {
	outline: 3px solid rgba(128, 109, 186, 0.28);
	outline-offset: 3px;
}

.btn-hero-soft,
.connect-modal-submit,
.newsletter-submit,
.jogn-search-button {
	--site-btn-bg: #e9a7a8;
	--site-btn-hover-bg: #806dba;
	--site-btn-border: rgba(233, 167, 168, 0.45);
}

.btn-hero-bold,
.som-cta,
.me-cta-violet,
.jogn-pill-button,
.jogn-contact-button {
	--site-btn-bg: #806dba;
	--site-btn-hover-bg: #e9a7a8;
	--site-btn-border: rgba(128, 109, 186, 0.35);
}

.me-cta-rose {
	--site-btn-bg: #dfa4aa;
	--site-btn-hover-bg: #806dba;
	--site-btn-border: rgba(223, 164, 170, 0.45);
}

.jogn-affiliate-action .jogn-pill-button {
	transform: translateX(10px);
}

.jogn-affiliate-action .jogn-pill-button:hover {
	transform: translateX(10px) translateY(-3px);
}

.pagination {
	--bs-pagination-color: #806dba;
	--bs-pagination-bg: rgba(255, 248, 252, 0.88);
	--bs-pagination-border-color: rgba(128, 109, 186, 0.22);
	--bs-pagination-hover-color: #fff;
	--bs-pagination-hover-bg: #806dba;
	--bs-pagination-hover-border-color: #806dba;
	--bs-pagination-focus-color: #806dba;
	--bs-pagination-focus-bg: rgba(238, 224, 240, 0.96);
	--bs-pagination-focus-box-shadow: 0 0 0 0.2rem rgba(128, 109, 186, 0.18);
	--bs-pagination-active-color: #fff;
	--bs-pagination-active-bg: #806dba;
	--bs-pagination-active-border-color: #806dba;
	--bs-pagination-disabled-color: rgba(100, 82, 134, 0.58);
	--bs-pagination-disabled-bg: rgba(255, 248, 252, 0.68);
	--bs-pagination-disabled-border-color: rgba(128, 109, 186, 0.16);
}

.pagination .page-link {
	font-family: 'Montserrat Custom', sans-serif;
	font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
	.btn-hero,
	.som-cta,
	.me-cta,
	.connect-modal-submit,
	.newsletter-submit,
	.jogn-pill-button,
	.jogn-search-button,
	.jogn-contact-button,
	.btn-hero::after,
	.som-cta::after,
	.me-cta::after,
	.connect-modal-submit::after,
	.newsletter-submit::after,
	.jogn-pill-button::after,
	.jogn-search-button::after,
	.jogn-contact-button::after,
	.btn-hero .bi,
	.som-cta .bi,
	.me-cta .bi,
	.jogn-pill-button .bi,
	.jogn-search-button .bi {
		transition: none;
	}

	.btn-hero:hover,
	.som-cta:hover,
	.me-cta:hover,
	.connect-modal-submit:hover,
	.newsletter-submit:hover,
	.jogn-pill-button:hover,
	.jogn-search-button:hover,
	.jogn-contact-button:hover,
	.btn-hero:hover .bi,
	.som-cta:hover .bi,
	.me-cta:hover .bi,
	.jogn-pill-button:hover .bi,
	.jogn-search-button:hover .bi,
	.jogn-affiliate-action .jogn-pill-button,
	.jogn-affiliate-action .jogn-pill-button:hover {
		transform: none;
	}
}
