/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Child theme for the Astra WordPress theme.
Author: MumbaiMeet
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

/* Add your custom CSS below this line. */

:root {
	--mm-pink: #ef4fa3;
	--mm-light-blue: #dff5ff;
	--mm-blue: #1d9bf0;
	--mm-dark-blue: #102a5c;
	--mm-white: #ffffff;
}

/* Hide any remaining Astra default header pieces, including mobile header wrappers. */
.ast-primary-header-bar,
.ast-mobile-header-wrap,
.ast-above-header-wrap,
.ast-below-header-wrap {
	display: none;
}

.mm-custom-header {
	position: relative;
	z-index: 50;
	background:
		linear-gradient(135deg, rgba(223, 245, 255, 0.96), rgba(255, 255, 255, 0.98) 48%, rgba(239, 79, 163, 0.1)),
		var(--mm-white);
	border-bottom: 3px solid var(--mm-pink);
	box-shadow: 0 8px 24px rgba(16, 42, 92, 0.1);
}

.mm-custom-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
	width: min(1400px, calc(100% - 32px));
	min-height: 86px;
	margin: 0 auto;
}

.mm-custom-header__logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.mm-custom-header__logo img {
	display: block;
	width: auto;
	max-width: 220px;
	max-height: 78px;
	object-fit: contain;
}

.mm-custom-header__nav {
	display: flex;
	justify-content: center;
}

.mm-custom-header__menu,
.mm-custom-header__menu ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mm-custom-header__menu a {
	display: inline-flex;
	align-items: center;
	padding: 12px 15px;
	border-radius: 999px;
	color: var(--mm-dark-blue);
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.mm-custom-header__menu a:hover,
.mm-custom-header__menu .current-menu-item > a,
.mm-custom-header__menu .current_page_item > a {
	color: var(--mm-white);
	background: linear-gradient(135deg, var(--mm-blue), var(--mm-pink));
	transform: translateY(-1px);
}

.mm-custom-header__menu li {
	position: relative;
}

.mm-custom-header__menu .sub-menu,
.mm-custom-header__menu .children {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	display: none;
	min-width: 210px;
	padding: 10px;
	background: var(--mm-white);
	border: 1px solid rgba(29, 155, 240, 0.18);
	border-radius: 16px;
	box-shadow: 0 18px 38px rgba(16, 42, 92, 0.16);
	transform: translateX(-50%);
}

.mm-custom-header__menu li:hover > .sub-menu,
.mm-custom-header__menu li:focus-within > .sub-menu,
.mm-custom-header__menu li:hover > .children,
.mm-custom-header__menu li:focus-within > .children {
	display: grid;
	gap: 4px;
}

.mm-custom-header__menu .sub-menu a,
.mm-custom-header__menu .children a {
	width: 100%;
	justify-content: flex-start;
	white-space: nowrap;
}

.mm-custom-header__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 11px 18px;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 999px;
	color: var(--mm-white);
	background: linear-gradient(135deg, var(--mm-pink), var(--mm-blue));
	box-shadow: 0 12px 26px rgba(239, 79, 163, 0.28);
	font-weight: 800;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.mm-custom-header__button i {
	font-size: 17px;
	line-height: 1;
}

.mm-custom-header__button:hover,
.mm-custom-header__button:focus {
	color: var(--mm-white);
	transform: scale(1.07);
	box-shadow: 0 16px 34px rgba(29, 155, 240, 0.34);
	filter: saturate(1.1);
}

.mm-custom-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-left: auto;
	border: 0;
	border-radius: 14px;
	color: var(--mm-dark-blue);
	background: rgba(29, 155, 240, 0.08);
	box-shadow: inset 0 0 0 1px rgba(29, 155, 240, 0.08);
	cursor: pointer;
}

.mm-custom-header__toggle i {
	font-size: 18px;
}

.mm-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 999;
	pointer-events: none;
	opacity: 0;
	transition: opacity 180ms ease;
}

.mm-mobile-menu.is-open {
	pointer-events: auto;
	opacity: 1;
}

.mm-mobile-menu__overlay {
	position: absolute;
	inset: 0;
	background: rgba(8, 13, 24, 0.54);
}

.mm-mobile-menu__panel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
	width: min(88vw, 340px);
	height: 100%;
	padding: 18px;
	background: #ffffff;
	box-shadow: -30px 0 60px rgba(0, 0, 0, 0.22);
	transform: translateX(100%);
	transition: transform 220ms ease;
}

.mm-mobile-menu.is-open .mm-mobile-menu__panel {
	transform: translateX(0);
}

.mm-mobile-menu__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(16, 42, 92, 0.08);
}

.mm-mobile-menu__top strong {
	color: var(--mm-dark-blue);
	font-size: 18px;
}

.mm-mobile-menu__close {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 12px;
	color: var(--mm-dark-blue);
	background: rgba(16, 42, 92, 0.06);
	cursor: pointer;
}

.mm-mobile-menu__nav {
	flex: 1;
	overflow-y: auto;
}

.mm-mobile-menu__menu {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mm-mobile-menu__menu a {
	display: block;
	padding: 13px 14px;
	border-radius: 14px;
	color: var(--mm-dark-blue);
	font-weight: 800;
	text-decoration: none;
	background: rgba(223, 245, 255, 0.42);
}

.mm-mobile-menu__menu a:hover,
.mm-mobile-menu__menu .current-menu-item > a,
.mm-mobile-menu__menu .current_page_item > a {
	color: var(--mm-white);
	background: linear-gradient(135deg, var(--mm-blue), var(--mm-pink));
}

.mm-mobile-menu__menu .sub-menu,
.mm-mobile-menu__menu .children {
	display: grid;
	gap: 8px;
	margin: 8px 0 0;
	padding-left: 12px;
}

.mm-mobile-menu__menu .sub-menu a,
.mm-mobile-menu__menu .children a {
	background: rgba(223, 245, 255, 0.22);
}

.mm-mobile-menu__book {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 16px;
	border-radius: 999px;
	color: var(--mm-white);
	background: linear-gradient(135deg, var(--mm-pink), var(--mm-blue));
	font-weight: 800;
	text-decoration: none;
}

@media (max-width: 921px) {
	.mm-custom-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas: "logo toggle";
		gap: 8px 10px;
		width: min(100% - 20px, 1400px);
		padding: 10px 0;
	}

	.mm-custom-header__logo,
	.mm-custom-header__toggle {
		align-self: center;
	}

	.mm-custom-header__logo {
		grid-area: logo;
	}

	.mm-custom-header__logo img {
		max-width: 160px;
		max-height: 58px;
	}

	.mm-custom-header__button {
		display: none;
	}

	.mm-custom-header__toggle {
		display: inline-flex;
		grid-area: toggle;
	}

	.mm-custom-header__nav {
		display: none;
	}

	.mm-mobile-menu__menu .sub-menu,
	.mm-mobile-menu__menu .children {
		position: static;
		display: grid;
		margin-top: 8px;
		padding-left: 12px;
		transform: none;
		box-shadow: none;
	}

	body.mm-menu-open {
		overflow: hidden;
	}
}

.mm-custom-footer {
	color: var(--mm-white);
	background:
		radial-gradient(circle at top left, rgba(239, 79, 163, 0.34), transparent 34%),
		linear-gradient(135deg, var(--mm-dark-blue), #071631 58%, #061126);
}

.mm-custom-footer__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 36px;
	width: min(1400px, calc(100% - 32px));
	margin: 0 auto;
	padding: 58px 0 42px;
}

.mm-custom-footer__logo {
	display: inline-flex;
	margin-bottom: 18px;
}

.mm-custom-footer__logo img {
	display: block;
	width: auto;
	max-width: 180px;
	max-height: 70px;
	object-fit: contain;
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
}

.mm-custom-footer h2 {
	margin: 0 0 18px;
	color: var(--mm-light-blue);
	font-size: 22px;
	font-weight: 800;
}

.mm-custom-footer p {
	max-width: 420px;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.75;
}

.mm-custom-footer__menu,
.mm-custom-footer__menu ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mm-custom-footer__menu a {
	display: inline-flex;
	width: fit-content;
	color: rgba(255, 255, 255, 0.82);
	font-weight: 700;
	text-decoration: none;
	transition: color 180ms ease, transform 180ms ease;
}

.mm-custom-footer__menu a:hover,
.mm-custom-footer__menu .current-menu-item > a,
.mm-custom-footer__menu .current_page_item > a {
	color: var(--mm-pink);
	transform: translateX(4px);
}

.mm-custom-footer__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
	padding: 13px 22px;
	border-radius: 999px;
	color: var(--mm-white);
	background: linear-gradient(135deg, var(--mm-pink), var(--mm-blue));
	box-shadow: 0 14px 30px rgba(29, 155, 240, 0.28);
	font-weight: 800;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.mm-custom-footer__button:hover,
.mm-custom-footer__button:focus {
	color: var(--mm-white);
	transform: scale(1.06);
	box-shadow: 0 18px 38px rgba(239, 79, 163, 0.32);
}

.mm-custom-footer__bottom {
	border-top: 1px solid rgba(223, 245, 255, 0.16);
	background: rgba(0, 0, 0, 0.16);
}

.mm-custom-footer__bottom p {
	width: min(1400px, calc(100% - 32px));
	max-width: none;
	margin: 0 auto;
	padding: 18px 0;
	text-align: center;
	font-size: 14px;
}

@media (max-width: 921px) {
	.mm-custom-footer__inner {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 42px 0 34px;
		text-align: center;
	}

	.mm-custom-footer p,
	.mm-custom-footer__menu a {
		margin-right: auto;
		margin-left: auto;
	}
}

/* Meetup landing page template. */
.mm-meetup-page {
	--meetup-bg: #140f22;
	--meetup-ink: #1d1730;
	--meetup-muted: #736a83;
	--meetup-soft: #fff6fb;
	--meetup-card: #ffffff;
	background: var(--mm-white);
	color: var(--meetup-ink);
}

.mm-meetup-shell {
	width: min(1400px, calc(100% - 32px));
	margin-inline: auto;
}

/* Template-wide container width. Overrides Tailwind max-w-7xl from the meetup template. */
.max-w-7xl {
	max-width: 1400px !important;
}

/* Clean proportional layout for the Tailwind-based meetup template. */
.font-display {
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: -0.035em;
}

.bg-ink {
	background-color: #130f20;
}

.glass {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
	border: 1px solid rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(18px);
}

.shadow-soft {
	box-shadow: 0 18px 55px rgba(16, 24, 40, 0.08);
}

.shadow-glow {
	box-shadow: 0 16px 38px rgba(236, 72, 153, 0.32);
}

.noise {
	background-image:
		radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.16) 1px, transparent 0);
	background-size: 18px 18px;
}

.track {
	transition: transform 450ms ease;
}

.card-lift {
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card-lift:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
}

.gradient-move {
	background-size: 160% 160%;
}

.image-zoom img {
	transition: transform 260ms ease;
}

.image-zoom:hover img {
	transform: scale(1.04);
}

body.page-template-tamplate_meetup .site-content > .ast-container {
	display: block;
	width: 100%;
	max-width: none;
	padding: 0;
}

body.page-template-tamplate_meetup main > section > .max-w-7xl,
body.page-template-tamplate_meetup main > section > div.max-w-7xl,
body.page-template-tamplate_meetup .max-w-7xl {
	width: min(1400px, calc(100% - 48px)) !important;
	max-width: 1400px !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

body.page-template-tamplate_meetup .hero-grid {
	min-height: auto;
	padding-top: 0;
}

body.page-template-tamplate_meetup .hero-grid > .relative.mx-auto.grid {
	min-height: 640px;
	padding-top: 72px;
	padding-bottom: 72px;
	grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
	gap: clamp(48px, 5vw, 88px);
}

body.page-template-tamplate_meetup .hero-grid h1 {
	max-width: 660px;
	font-size: clamp(48px, 5vw, 78px);
	line-height: 0.98;
	color: #ffffff;
	text-shadow: 0 12px 42px rgba(236, 72, 153, 0.18);
}

body.page-template-tamplate_meetup .hero-grid h1::first-line {
	color: #fdf2f8;
}

body.page-template-tamplate_meetup .hero-title-main {
	display: inline-block;
	color: #ffffff;
	background: linear-gradient(135deg, #ffffff 0%, #ffe4f3 48%, #dff5ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	text-shadow: none;
}

body.page-template-tamplate_meetup .hero-grid p {
	max-width: 590px;
}

body.page-template-tamplate_meetup .hero-grid .max-w-2xl {
	max-width: 680px;
}

body.page-template-tamplate_meetup .hero-grid .glass {
	border-radius: 34px;
}

body.page-template-tamplate_meetup #track img {
	height: clamp(400px, 32vw, 500px);
}

body.page-template-tamplate_meetup section.py-24 {
	padding-top: 70px;
	padding-bottom: 70px;
}

body.page-template-tamplate_meetup #how,
body.page-template-tamplate_meetup #plans {
	padding-top: 72px;
	padding-bottom: 72px;
}

body.page-template-tamplate_meetup .mt-14 {
	margin-top: 2.5rem !important;
}

body.page-template-tamplate_meetup .mt-12 {
	margin-top: 2.25rem !important;
}

body.page-template-tamplate_meetup .mt-10 {
	margin-top: 2rem !important;
}

body.page-template-tamplate_meetup .mt-9 {
	margin-top: 1.75rem !important;
}

body.page-template-tamplate_meetup .mt-8 {
	margin-top: 1.5rem !important;
}

body.page-template-tamplate_meetup .mt-7 {
	margin-top: 1.25rem !important;
}

body.page-template-tamplate_meetup .rounded-3xl {
	border-radius: 24px;
}

body.page-template-tamplate_meetup article {
	height: 100%;
}

body.page-template-tamplate_meetup h2 {
	line-height: 1.08;
}

body.page-template-tamplate_meetup #features img,
body.page-template-tamplate_meetup #stories img {
	height: 280px;
}

body.page-template-tamplate_meetup #stories h2 {
	color: #ffffff !important;
}

body.page-template-tamplate_meetup #plans .grid.gap-6.sm\:grid-cols-2.lg\:grid-cols-4 {
	align-items: stretch;
}

body.page-template-tamplate_meetup #plans article {
	display: flex;
	flex-direction: column;
}

body.page-template-tamplate_meetup #plans article button {
	margin-top: auto;
}

body.page-template-tamplate_meetup .faq-card {
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body.page-template-tamplate_meetup .faq-card:hover,
body.page-template-tamplate_meetup .faq-card[open] {
	border-color: rgba(236, 72, 153, 0.35);
	box-shadow: 0 22px 65px rgba(16, 24, 40, 0.1);
}

body.page-template-tamplate_meetup .faq-card summary::-webkit-details-marker {
	display: none;
}

body.page-template-tamplate_meetup .faq-icon {
	display: grid;
	flex: 0 0 42px;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	font-size: 17px;
}

body.page-template-tamplate_meetup .faq-card summary .fa-chevron-down {
	transition: transform 180ms ease;
}

body.page-template-tamplate_meetup .faq-card[open] summary .fa-chevron-down {
	transform: rotate(180deg);
}

body.page-template-tamplate_meetup main > section:last-of-type > .max-w-7xl {
	width: min(1400px, calc(100% - 48px)) !important;
}

body.page-template-tamplate_meetup button,
body.page-template-tamplate_meetup a {
	transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, border-color 180ms ease;
}

body.page-template-tamplate_meetup button:hover,
body.page-template-tamplate_meetup a:hover {
	transform: translateY(-1px);
}

@media (max-width: 1024px) {
	body.page-template-tamplate_meetup main > section > .max-w-7xl,
	body.page-template-tamplate_meetup main > section > div.max-w-7xl,
	body.page-template-tamplate_meetup .max-w-7xl {
		width: min(100% - 32px, 1400px) !important;
	}

	body.page-template-tamplate_meetup .hero-grid > .relative.mx-auto.grid {
		min-height: auto;
		grid-template-columns: 1fr;
		padding-top: 58px;
		padding-bottom: 58px;
	}

	body.page-template-tamplate_meetup .hero-grid h1 {
		font-size: clamp(44px, 8vw, 68px);
	}
}

@media (max-width: 640px) {
	body.page-template-tamplate_meetup .hero-grid > .relative.mx-auto.grid {
		padding-top: 52px;
		padding-bottom: 56px;
	}

	body.page-template-tamplate_meetup #track img {
		height: 360px;
	}

	body.page-template-tamplate_meetup section.py-24,
	body.page-template-tamplate_meetup #how,
	body.page-template-tamplate_meetup #plans {
		padding-top: 52px;
		padding-bottom: 52px;
	}
}

.mm-meetup-hero {
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 22%, rgba(239, 79, 163, 0.35), transparent 30%),
		radial-gradient(circle at 88% 25%, rgba(29, 155, 240, 0.22), transparent 34%),
		linear-gradient(135deg, #160f25, #101626 65%, #111a2d);
	color: var(--mm-white);
}

.mm-meetup-hero__grid {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	align-items: center;
	gap: 70px;
	min-height: 640px;
	padding: 86px 0;
}

.mm-meetup-pill,
.mm-meetup-kicker,
.mm-meetup-heading p {
	display: inline-flex;
	margin: 0 0 20px;
	color: var(--mm-pink);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.mm-meetup-pill {
	padding: 9px 16px;
	border: 1px solid rgba(239, 79, 163, 0.26);
	border-radius: 999px;
	background: rgba(239, 79, 163, 0.13);
	letter-spacing: 0;
	text-transform: none;
}

.mm-meetup-hero h1 {
	max-width: 560px;
	margin: 0;
	color: var(--mm-white);
	font-size: clamp(48px, 7vw, 86px);
	font-weight: 900;
	line-height: 0.94;
	letter-spacing: -0.06em;
}

.mm-meetup-hero h1 span {
	color: var(--mm-pink);
}

.mm-meetup-lead {
	max-width: 520px;
	margin: 26px 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 18px;
	line-height: 1.75;
}

.mm-meetup-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.mm-meetup-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 24px;
	border-radius: 999px;
	font-weight: 900;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.mm-meetup-btn:hover {
	transform: translateY(-2px) scale(1.03);
}

.mm-meetup-btn--primary {
	color: var(--mm-white);
	background: linear-gradient(135deg, var(--mm-pink), #b921c0);
	box-shadow: 0 16px 34px rgba(239, 79, 163, 0.34);
}

.mm-meetup-btn--ghost {
	color: var(--mm-white);
	border: 1px solid rgba(223, 245, 255, 0.28);
	background: rgba(255, 255, 255, 0.05);
}

.mm-meetup-rating {
	margin: 22px 0 0;
	color: #ffd44d;
	font-weight: 800;
}

.mm-meetup-rating strong {
	color: var(--mm-white);
}

.mm-meetup-browser-card {
	overflow: hidden;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 26px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.mm-meetup-browser-card img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 18px;
}

.mm-meetup-browser-card__bar {
	display: flex;
	justify-content: center;
	gap: 14px;
	padding: 16px 10px 2px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	font-weight: 800;
}

.mm-meetup-section-menu {
	position: sticky;
	top: 0;
	z-index: 40;
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(16px);
	box-shadow: 0 10px 26px rgba(16, 42, 92, 0.08);
}

.mm-meetup-section-menu a {
	padding: 9px 14px;
	border-radius: 999px;
	color: var(--mm-dark-blue);
	font-weight: 800;
	text-decoration: none;
}

.mm-meetup-section-menu a:hover {
	color: var(--mm-white);
	background: linear-gradient(135deg, var(--mm-blue), var(--mm-pink));
}

.mm-meetup-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: #f1f5fb;
}

.mm-meetup-stats div {
	padding: 28px 16px;
	background: var(--mm-white);
	text-align: center;
}

.mm-meetup-stats strong {
	display: block;
	color: var(--mm-pink);
	font-size: 25px;
	font-weight: 900;
}

.mm-meetup-stats span {
	color: var(--meetup-muted);
	font-size: 13px;
	font-weight: 700;
}

.mm-meetup-section {
	padding: 96px 0;
}

.mm-meetup-section--soft {
	background:
		radial-gradient(circle at 22% 15%, rgba(239, 79, 163, 0.08), transparent 30%),
		var(--meetup-soft);
}

.mm-meetup-section--dark {
	background:
		radial-gradient(circle at 20% 20%, rgba(239, 79, 163, 0.14), transparent 34%),
		linear-gradient(135deg, #120d1f, #0d1120);
	color: var(--mm-white);
}

.mm-meetup-heading {
	max-width: 680px;
	margin: 0 auto 54px;
	text-align: center;
}

.mm-meetup-heading h2,
.mm-meetup-section h2,
.mm-meetup-final-cta h2 {
	margin: 0;
	color: var(--meetup-ink);
	font-size: clamp(34px, 4vw, 56px);
	font-weight: 900;
	line-height: 1.02;
	letter-spacing: -0.045em;
}

.mm-meetup-section--dark h2 {
	color: var(--mm-white);
}

.mm-meetup-heading span,
.mm-meetup-copy {
	display: block;
	margin-top: 14px;
	color: var(--meetup-muted);
	font-size: 17px;
	line-height: 1.75;
}

.mm-meetup-card-grid {
	display: grid;
	gap: 24px;
}

.mm-meetup-card-grid--three {
	grid-template-columns: repeat(3, 1fr);
}

.mm-meetup-card,
.mm-meetup-price,
.mm-meetup-story,
.mm-meetup-faq details {
	border: 1px solid rgba(29, 155, 240, 0.08);
	border-radius: 22px;
	background: var(--meetup-card);
	box-shadow: 0 22px 60px rgba(16, 42, 92, 0.08);
}

.mm-meetup-card {
	padding: 34px;
}

.mm-meetup-icon {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-bottom: 36px;
	border-radius: 14px;
	color: var(--mm-pink);
	background: rgba(239, 79, 163, 0.12);
	font-weight: 900;
}

.mm-meetup-card h3,
.mm-meetup-price h3 {
	margin: 0 0 12px;
	color: var(--meetup-ink);
	font-size: 22px;
	font-weight: 900;
}

.mm-meetup-card p {
	margin: 0;
	color: var(--meetup-muted);
	line-height: 1.7;
}

.mm-meetup-split {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	align-items: center;
	gap: 70px;
}

.mm-meetup-photo-stack {
	overflow: hidden;
	max-height: 360px;
	border-radius: 28px;
	box-shadow: 0 28px 70px rgba(16, 42, 92, 0.16);
}

.mm-meetup-photo-stack img {
	display: block;
	width: 100%;
	transform: translateY(-8%);
}

.mm-meetup-checklist {
	display: grid;
	gap: 18px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.mm-meetup-checklist li {
	display: grid;
	gap: 4px;
	padding-left: 34px;
	position: relative;
}

.mm-meetup-checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	color: var(--mm-white);
	background: linear-gradient(135deg, var(--mm-pink), var(--mm-blue));
	font-size: 13px;
	font-weight: 900;
}

.mm-meetup-checklist strong {
	color: var(--meetup-ink);
}

.mm-meetup-checklist span {
	color: var(--meetup-muted);
}

.mm-meetup-story {
	overflow: hidden;
	padding: 0 0 28px;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.08);
	color: var(--mm-white);
}

.mm-meetup-story img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.mm-meetup-story p,
.mm-meetup-story blockquote,
.mm-meetup-story strong {
	margin-inline: 24px;
}

.mm-meetup-story p {
	margin-top: 22px;
	margin-bottom: 12px;
	color: #ffd44d;
}

.mm-meetup-story blockquote {
	margin-top: 0;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.7;
}

.mm-meetup-pricing {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.mm-meetup-price {
	padding: 30px 26px;
}

.mm-meetup-price small {
	color: var(--mm-pink);
	font-weight: 900;
	text-transform: uppercase;
}

.mm-meetup-price strong {
	display: block;
	margin: 12px 0;
	color: var(--meetup-ink);
	font-size: 34px;
	font-weight: 900;
}

.mm-meetup-price ul {
	display: grid;
	gap: 10px;
	margin: 22px 0;
	padding: 0;
	list-style: none;
	color: var(--meetup-muted);
}

.mm-meetup-price li::before {
	content: "✓ ";
	color: var(--mm-blue);
	font-weight: 900;
}

.mm-meetup-price a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border: 1px solid rgba(16, 42, 92, 0.12);
	border-radius: 999px;
	color: var(--meetup-ink);
	font-weight: 900;
	text-decoration: none;
}

.mm-meetup-price--featured {
	color: var(--mm-white);
	background: linear-gradient(160deg, var(--mm-pink), #c11bc5);
	transform: translateY(-12px);
	box-shadow: 0 28px 72px rgba(239, 79, 163, 0.32);
}

.mm-meetup-price--featured h3,
.mm-meetup-price--featured strong,
.mm-meetup-price--featured small,
.mm-meetup-price--featured ul {
	color: var(--mm-white);
}

.mm-meetup-price--featured a {
	color: var(--mm-pink);
	background: var(--mm-white);
}

.mm-meetup-faq {
	max-width: 760px;
}

.mm-meetup-faq details {
	margin-top: 14px;
	padding: 20px 24px;
}

.mm-meetup-faq summary {
	cursor: pointer;
	color: var(--meetup-ink);
	font-weight: 900;
}

.mm-meetup-faq p {
	margin: 12px 0 0;
	color: var(--meetup-muted);
}

.mm-meetup-final-cta {
	padding: 86px 0;
	background: var(--mm-white);
}

.mm-meetup-final-cta .mm-meetup-shell {
	padding: 70px 28px;
	border-radius: 32px;
	color: var(--mm-white);
	text-align: center;
	background:
		linear-gradient(90deg, rgba(29, 155, 240, 0.14) 1px, transparent 1px),
		linear-gradient(135deg, var(--mm-pink), #b51bd1 55%, var(--mm-blue));
	background-size: 16px 100%, auto;
	box-shadow: 0 28px 70px rgba(239, 79, 163, 0.24);
}

.mm-meetup-final-cta span {
	display: block;
	margin-bottom: 14px;
	font-size: 32px;
}

.mm-meetup-final-cta h2 {
	color: var(--mm-white);
}

.mm-meetup-final-cta p {
	margin: 14px 0 28px;
	color: rgba(255, 255, 255, 0.82);
}

.mm-meetup-final-cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 26px;
	border-radius: 999px;
	color: var(--mm-pink);
	background: var(--mm-white);
	font-weight: 900;
	text-decoration: none;
	transition: transform 180ms ease;
}

.mm-meetup-final-cta a:hover {
	transform: scale(1.06);
}

@media (max-width: 1024px) {
	.mm-meetup-hero__grid,
	.mm-meetup-split {
		grid-template-columns: 1fr;
		gap: 44px;
	}

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

@media (max-width: 767px) {
	.mm-meetup-hero__grid {
		min-height: auto;
		padding: 64px 0;
	}

	.mm-meetup-section-menu {
		overflow-x: auto;
		justify-content: flex-start;
	}

	.mm-meetup-stats,
	.mm-meetup-card-grid--three,
	.mm-meetup-pricing {
		grid-template-columns: 1fr;
	}

	.mm-meetup-section {
		padding: 68px 0;
	}

	.mm-meetup-price--featured {
		transform: none;
	}
}
